
    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_821635f15d90a15ba0559e78.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4a829603b13605fb8cd48539.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_24b4e78d5ba64ef51c583271.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_984043afe557fc86467d8932.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_e62a92f507a861f5615b4e17.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_20e957ed9e3171c7fd4f2b0b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_067f555a2026dd6ecfccbfe5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_501d71d731069fd9a91c5fe6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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);}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.v1{vertical-align:24.000000px;}
.lsa{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.376800px;}
.ls3{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.078000px;}
.lse{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.384000px;}
.lsd{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls11{letter-spacing:14.520000px;}
.ls13{letter-spacing:15.720000px;}
.ls8{letter-spacing:31.320000px;}
.ls10{letter-spacing:44.520000px;}
.ls12{letter-spacing:45.720000px;}
.ls1{letter-spacing:63.720000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-60.000000px;}
.ws1{word-spacing:-18.384000px;}
.ws7{word-spacing:-17.400000px;}
.ws0{word-spacing:-15.204000px;}
.ws2{word-spacing:-15.000000px;}
.ws5{word-spacing:-12.900000px;}
.ws6{word-spacing:-10.500000px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-2.124000px;}
._0{margin-left:-1.056000px;}
._1{width:1.104000px;}
._c{width:2.130000px;}
._9{width:3.360000px;}
._8{width:4.620000px;}
._12{width:5.832000px;}
._a{width:6.840000px;}
._b{width:8.640000px;}
._f{width:10.500000px;}
._10{width:11.580000px;}
._e{width:12.636000px;}
._d{width:13.656000px;}
._19{width:15.574800px;}
._7{width:16.956000px;}
._6{width:18.120000px;}
._11{width:19.500000px;}
._13{width:20.772000px;}
._18{width:21.876000px;}
._17{width:23.124000px;}
._16{width:29.100000px;}
._14{width:30.276000px;}
._4{width:336.180000px;}
._2{width:559.950000px;}
._3{width:642.780000px;}
._5{width:1180.080000px;}
._1a{width:2007.150000px;}
.fc4{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc3{color:rgb(31,73,125);}
.fc1{color:rgb(238,0,0);}
.fc5{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.000000px;}
.fs4{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fsb{font-size:39.600000px;}
.fsa{font-size:45.600000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.150000px;}
.fs0{font-size:66.000000px;}
.fs9{font-size:69.600000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y122{bottom:0.750000px;}
.y120{bottom:1.350000px;}
.y124{bottom:2.820000px;}
.y9a{bottom:3.285000px;}
.y89{bottom:3.300000px;}
.y97{bottom:3.315000px;}
.y104{bottom:3.345000px;}
.y9e{bottom:3.585000px;}
.y93{bottom:3.600000px;}
.yfa{bottom:3.615000px;}
.yf{bottom:3.915000px;}
.y129{bottom:3.975000px;}
.y11e{bottom:4.005000px;}
.y40{bottom:5.100000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y126{bottom:10.320000px;}
.y98{bottom:12.000000px;}
.y94{bottom:12.300000px;}
.y107{bottom:12.315000px;}
.yfe{bottom:12.330000px;}
.y5{bottom:12.337500px;}
.yf8{bottom:12.615000px;}
.ybb{bottom:13.215000px;}
.y86{bottom:13.245000px;}
.y83{bottom:19.830000px;}
.y84{bottom:20.445000px;}
.y92{bottom:20.685000px;}
.ya3{bottom:20.700000px;}
.y96{bottom:20.715000px;}
.ya0{bottom:20.730000px;}
.yfc{bottom:20.745000px;}
.y87{bottom:21.045000px;}
.yf6{bottom:21.300000px;}
.y82{bottom:21.945000px;}
.ybc{bottom:22.515000px;}
.y128{bottom:22.875000px;}
.y11d{bottom:22.920000px;}
.y3f{bottom:23.085000px;}
.y85{bottom:24.945000px;}
.ycf{bottom:29.385000px;}
.ye7{bottom:29.400000px;}
.yfd{bottom:29.445000px;}
.yf7{bottom:29.715000px;}
.ye3{bottom:37.200000px;}
.ycc{bottom:37.530000px;}
.ye1{bottom:37.800000px;}
.ye6{bottom:37.815000px;}
.yca{bottom:38.100000px;}
.yd2{bottom:38.130000px;}
.yd8{bottom:38.145000px;}
.y3e{bottom:43.185000px;}
.ydd{bottom:46.500000px;}
.y4{bottom:46.800000px;}
.yce{bottom:46.830000px;}
.y81{bottom:49.830000px;}
.yc9{bottom:55.200000px;}
.ye5{bottom:55.215000px;}
.yd1{bottom:55.230000px;}
.yd7{bottom:55.245000px;}
.y1{bottom:57.337500px;}
.y3d{bottom:60.585000px;}
.ydb{bottom:63.300000px;}
.yc2{bottom:63.900000px;}
.ycd{bottom:63.930000px;}
.yd4{bottom:72.045000px;}
.ye0{bottom:72.300000px;}
.ye4{bottom:72.315000px;}
.yc8{bottom:72.600000px;}
.yd0{bottom:72.630000px;}
.y42{bottom:74.137500px;}
.y3c{bottom:77.685000px;}
.ybe{bottom:80.400000px;}
.ydc{bottom:81.000000px;}
.yc1{bottom:81.300000px;}
.y3{bottom:81.337500px;}
.yc7{bottom:89.700000px;}
.yd6{bottom:89.730000px;}
.y3b{bottom:95.100000px;}
.yc0{bottom:98.400000px;}
.ydf{bottom:106.800000px;}
.yc6{bottom:107.100000px;}
.yd5{bottom:107.145000px;}
.y11b{bottom:111.337500px;}
.y3a{bottom:112.185000px;}
.yf4{bottom:113.137500px;}
.ybf{bottom:115.800000px;}
.y11a{bottom:116.737500px;}
.y36{bottom:117.037500px;}
.y7d{bottom:117.637500px;}
.y15e{bottom:122.137500px;}
.yde{bottom:124.200000px;}
.yc5{bottom:124.230000px;}
.yd9{bottom:124.245000px;}
.y39{bottom:129.600000px;}
.y119{bottom:129.637500px;}
.y35{bottom:134.137500px;}
.y7c{bottom:135.037500px;}
.yc4{bottom:141.645000px;}
.y15d{bottom:142.237500px;}
.yf3{bottom:144.937500px;}
.y38{bottom:147.330000px;}
.yb9{bottom:149.737500px;}
.y7b{bottom:152.130000px;}
.y34{bottom:152.730000px;}
.yc3{bottom:158.730000px;}
.y118{bottom:159.645000px;}
.yb8{bottom:169.230000px;}
.y7a{bottom:169.545000px;}
.y33{bottom:169.845000px;}
.yf2{bottom:171.630000px;}
.y15c{bottom:176.745000px;}
.y117{bottom:177.345000px;}
.y79{bottom:186.675000px;}
.y32{bottom:188.175000px;}
.yf1{bottom:189.375000px;}
.y15b{bottom:194.175000px;}
.y116{bottom:194.475000px;}
.yb7{bottom:203.775000px;}
.y78{bottom:204.075000px;}
.yf0{bottom:206.475000px;}
.y31{bottom:206.775000px;}
.y15a{bottom:211.275000px;}
.y114{bottom:219.075000px;}
.y77{bottom:221.175000px;}
.y30{bottom:223.875000px;}
.y115{bottom:224.475000px;}
.y159{bottom:228.675000px;}
.yb6{bottom:232.875000px;}
.y113{bottom:236.475000px;}
.y76{bottom:239.475000px;}
.y2f{bottom:240.375000px;}
.yef{bottom:240.975000px;}
.y158{bottom:245.775000px;}
.yb5{bottom:250.275000px;}
.y2e{bottom:255.075000px;}
.y75{bottom:256.875000px;}
.yee{bottom:258.375000px;}
.y112{bottom:262.275000px;}
.y157{bottom:263.175000px;}
.yb4{bottom:267.675000px;}
.y2d{bottom:272.175000px;}
.y127{bottom:273.900000px;}
.y74{bottom:273.975000px;}
.y156{bottom:280.275000px;}
.yb3{bottom:284.775000px;}
.y12a{bottom:287.775000px;}
.yed{bottom:290.175000px;}
.y73{bottom:291.375000px;}
.y155{bottom:297.675000px;}
.y2c{bottom:301.275000px;}
.yb2{bottom:302.175000px;}
.yec{bottom:307.875000px;}
.y72{bottom:308.475000px;}
.y154{bottom:314.775000px;}
.y2b{bottom:318.675000px;}
.yeb{bottom:324.975000px;}
.y71{bottom:326.775000px;}
.y153{bottom:332.175000px;}
.yb1{bottom:333.075000px;}
.y2a{bottom:336.075000px;}
.y70{bottom:344.175000px;}
.y125{bottom:346.800000px;}
.y152{bottom:349.320000px;}
.yb0{bottom:350.505000px;}
.y29{bottom:353.205000px;}
.yea{bottom:357.120000px;}
.y6f{bottom:361.320000px;}
.y151{bottom:366.705000px;}
.yaf{bottom:367.620000px;}
.y28{bottom:370.620000px;}
.ye9{bottom:374.505000px;}
.y6e{bottom:378.705000px;}
.y150{bottom:383.820000px;}
.yae{bottom:384.705000px;}
.y27{bottom:388.320000px;}
.ye8{bottom:391.905000px;}
.y6d{bottom:395.820000px;}
.y14f{bottom:401.205000px;}
.yad{bottom:403.320000px;}
.y123{bottom:403.500000px;}
.y26{bottom:407.820000px;}
.y6c{bottom:413.205000px;}
.y14e{bottom:418.320000px;}
.yac{bottom:420.420000px;}
.y25{bottom:422.205000px;}
.ye2{bottom:430.005000px;}
.y6b{bottom:430.320000px;}
.y14d{bottom:435.705000px;}
.yab{bottom:437.820000px;}
.y24{bottom:439.620000px;}
.y6a{bottom:447.705000px;}
.y14c{bottom:452.820000px;}
.yaa{bottom:454.920000px;}
.y11c{bottom:455.700000px;}
.y23{bottom:456.720000px;}
.y69{bottom:464.820000px;}
.y14b{bottom:470.220000px;}
.ya9{bottom:472.005000px;}
.y22{bottom:474.120000px;}
.y68{bottom:482.205000px;}
.y14a{bottom:487.320000px;}
.ya8{bottom:490.620000px;}
.y21{bottom:491.205000px;}
.y67{bottom:499.320000px;}
.y149{bottom:504.720000px;}
.ya7{bottom:507.705000px;}
.y20{bottom:508.620000px;}
.y66{bottom:516.750000px;}
.yda{bottom:517.050000px;}
.y121{bottom:520.200000px;}
.y148{bottom:521.850000px;}
.y1f{bottom:525.150000px;}
.y65{bottom:533.850000px;}
.y147{bottom:539.250000px;}
.y1e{bottom:539.550000px;}
.ya6{bottom:542.250000px;}
.y64{bottom:551.250000px;}
.y146{bottom:556.350000px;}
.y1d{bottom:556.950000px;}
.y11f{bottom:562.500000px;}
.ya5{bottom:566.850000px;}
.y63{bottom:568.350000px;}
.y1c{bottom:574.050000px;}
.ya4{bottom:577.050000px;}
.y62{bottom:585.750000px;}
.y1b{bottom:591.450000px;}
.y145{bottom:593.550000px;}
.y111{bottom:601.650000px;}
.y61{bottom:602.850000px;}
.y144{bottom:608.250000px;}
.y1a{bottom:608.550000px;}
.ya2{bottom:612.150000px;}
.y110{bottom:619.050000px;}
.y60{bottom:620.250000px;}
.y143{bottom:625.350000px;}
.y19{bottom:625.950000px;}
.y10f{bottom:636.450000px;}
.y5f{bottom:637.350000px;}
.y142{bottom:642.750000px;}
.y18{bottom:643.650000px;}
.ya1{bottom:647.550000px;}
.y5e{bottom:654.750000px;}
.yd3{bottom:655.650000px;}
.y141{bottom:659.850000px;}
.y10e{bottom:665.250000px;}
.y9f{bottom:665.550000px;}
.y5d{bottom:671.850000px;}
.y10d{bottom:682.980000px;}
.y140{bottom:684.480000px;}
.y5c{bottom:689.280000px;}
.y10c{bottom:700.080000px;}
.y9d{bottom:700.695000px;}
.y13f{bottom:703.095000px;}
.y37{bottom:705.195000px;}
.y5b{bottom:706.380000px;}
.y10b{bottom:717.495000px;}
.y13e{bottom:720.195000px;}
.y5a{bottom:723.795000px;}
.y9c{bottom:736.095000px;}
.y13d{bottom:738.480000px;}
.y10a{bottom:739.380000px;}
.y59{bottom:740.895000px;}
.y9b{bottom:754.095000px;}
.y13c{bottom:757.095000px;}
.y109{bottom:757.395000px;}
.y58{bottom:758.280000px;}
.y99{bottom:772.095000px;}
.y13b{bottom:774.195000px;}
.y57{bottom:775.380000px;}
.y108{bottom:775.395000px;}
.y95{bottom:790.080000px;}
.y13a{bottom:792.480000px;}
.y56{bottom:793.080000px;}
.y106{bottom:793.380000px;}
.y139{bottom:809.580000px;}
.ycb{bottom:811.695000px;}
.y55{bottom:813.495000px;}
.y91{bottom:825.195000px;}
.y138{bottom:828.195000px;}
.y105{bottom:828.795000px;}
.y54{bottom:830.580000px;}
.y137{bottom:845.295000px;}
.y103{bottom:846.780000px;}
.y53{bottom:847.995000px;}
.y90{bottom:860.625000px;}
.y136{bottom:863.625000px;}
.y102{bottom:864.825000px;}
.y52{bottom:865.125000px;}
.y8f{bottom:878.625000px;}
.y135{bottom:880.725000px;}
.y51{bottom:882.825000px;}
.y8e{bottom:896.625000px;}
.ybd{bottom:898.725000px;}
.y134{bottom:899.325000px;}
.y17{bottom:900.225000px;}
.y50{bottom:903.225000px;}
.y8d{bottom:914.625000px;}
.y133{bottom:916.425000px;}
.y101{bottom:917.925000px;}
.y4f{bottom:920.325000px;}
.y16{bottom:927.525000px;}
.y8c{bottom:932.625000px;}
.y132{bottom:933.525000px;}
.y100{bottom:935.925000px;}
.y4e{bottom:937.725000px;}
.y15{bottom:949.125000px;}
.y8b{bottom:950.625000px;}
.y131{bottom:952.125000px;}
.y4d{bottom:954.825000px;}
.y14{bottom:965.925000px;}
.y8a{bottom:968.625000px;}
.y130{bottom:969.225000px;}
.yff{bottom:971.325000px;}
.y4c{bottom:972.225000px;}
.y13{bottom:980.625000px;}
.y88{bottom:986.625000px;}
.y12f{bottom:987.825000px;}
.y4b{bottom:989.325000px;}
.y12{bottom:998.625000px;}
.y80{bottom:1004.625000px;}
.y12e{bottom:1004.925000px;}
.yfb{bottom:1006.425000px;}
.y4a{bottom:1006.725000px;}
.y11{bottom:1019.955000px;}
.y12d{bottom:1022.370000px;}
.y49{bottom:1023.870000px;}
.y10{bottom:1038.255000px;}
.y12c{bottom:1040.070000px;}
.yd{bottom:1040.955000px;}
.y48{bottom:1041.255000px;}
.y47{bottom:1057.755000px;}
.yf5{bottom:1058.955000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y12b{bottom:1071.870000px;}
.y46{bottom:1072.170000px;}
.yba{bottom:1073.655000px;}
.ya{bottom:1083.570000px;}
.y45{bottom:1089.570000px;}
.yf9{bottom:1094.355000px;}
.y9{bottom:1097.955000px;}
.y44{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y7f{bottom:1118.955000px;}
.y43{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y7e{bottom:1138.755000px;}
.y6{bottom:1141.170000px;}
.y41{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h31{height:15.000000px;}
.h30{height:15.600000px;}
.h1d{height:17.085000px;}
.h19{height:17.100000px;}
.h2b{height:17.137500px;}
.h2a{height:17.400000px;}
.hf{height:20.947266px;}
.ha{height:21.000000px;}
.h2d{height:27.650391px;}
.h2c{height:27.940430px;}
.h33{height:30.600000px;}
.h1f{height:31.839844px;}
.hd{height:33.515625px;}
.h7{height:33.867188px;}
.h1c{height:34.500000px;}
.h1b{height:34.537500px;}
.h3{height:36.000000px;}
.h2e{height:37.200000px;}
.h8{height:37.705078px;}
.h21{height:37.800000px;}
.he{height:38.100586px;}
.h15{height:39.471680px;}
.hc{height:41.894531px;}
.h32{height:41.999268px;}
.h4{height:42.333984px;}
.h14{height:43.330078px;}
.h11{height:43.681641px;}
.h10{height:43.857422px;}
.h22{height:46.567383px;}
.h16{height:49.107422px;}
.h1a{height:49.250391px;}
.h1e{height:49.310391px;}
.h2f{height:50.273438px;}
.h6{height:50.800781px;}
.h29{height:51.937500px;}
.h13{height:51.996094px;}
.h28{height:52.500000px;}
.hb{height:53.340820px;}
.h17{height:55.839844px;}
.h20{height:56.173828px;}
.h1{height:65.645508px;}
.h27{height:86.137500px;}
.h24{height:86.437500px;}
.h2{height:97.200000px;}
.h18{height:109.837500px;}
.h26{height:138.000000px;}
.h25{height:155.430000px;}
.h12{height:164.115000px;}
.h23{height:172.530000px;}
.h0{height:1263.000000px;}
.w12{width:30.600000px;}
.wb{width:33.600000px;}
.wd{width:33.900000px;}
.wc{width:33.937500px;}
.w9{width:34.500000px;}
.wa{width:34.537500px;}
.w4{width:72.300000px;}
.w15{width:95.700000px;}
.wf{width:99.937500px;}
.w3{width:108.000000px;}
.w18{width:122.100000px;}
.w1a{width:122.400000px;}
.w1e{width:128.700000px;}
.w19{width:172.800000px;}
.w6{width:253.275000px;}
.w11{width:259.275000px;}
.w1c{width:276.000000px;}
.w13{width:303.720000px;}
.w16{width:306.720000px;}
.w10{width:378.105000px;}
.w14{width:403.020000px;}
.w1d{width:436.800000px;}
.w1b{width:438.000000px;}
.w5{width:483.450000px;}
.w8{width:523.650000px;}
.w7{width:730.125000px;}
.we{width:733.125000px;}
.w17{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:7.800000px;}
.x2{left:10.799998px;}
.x33{left:12.675000px;}
.x16{left:16.200000px;}
.x21{left:20.100000px;}
.x3{left:22.200000px;}
.x1a{left:26.400000px;}
.x4{left:27.600000px;}
.x30{left:28.980000px;}
.x34{left:34.320000px;}
.x2f{left:35.520000px;}
.x18{left:41.100000px;}
.x2d{left:44.775000px;}
.x35{left:54.150000px;}
.x32{left:64.920000px;}
.xb{left:78.337500px;}
.x1{left:81.037487px;}
.x15{left:83.137500px;}
.x2b{left:86.137487px;}
.x24{left:102.030000px;}
.x14{left:108.037487px;}
.xf{left:109.237487px;}
.x25{left:112.837500px;}
.xe{left:116.745000px;}
.x23{left:117.945000px;}
.x9{left:153.629987px;}
.x22{left:182.175000px;}
.x2c{left:220.200000px;}
.xc{left:241.567500px;}
.x31{left:246.900000px;}
.x13{left:268.874987px;}
.x2a{left:297.119987px;}
.x10{left:327.704987px;}
.x11{left:348.704987px;}
.x2e{left:379.200000px;}
.x6{left:405.119987px;}
.x26{left:417.150000px;}
.x28{left:418.949973px;}
.x29{left:424.049987px;}
.x12{left:446.549987px;}
.x27{left:513.450000px;}
.xd{left:561.780000px;}
.x17{left:588.494987px;}
.x19{left:605.595000px;}
.x36{left:607.379987px;}
.x8{left:614.879987px;}
.x1b{left:640.695000px;}
.x7{left:648.194987px;}
.x1c{left:676.125000px;}
.x5{left:698.624987px;}
.x1d{left:710.325000px;}
.x1e{left:745.425000px;}
.x1f{left:779.970000px;}
.xa{left:812.369987px;}
@media print{
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.v1{vertical-align:21.333333pt;}
.lsa{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.334933pt;}
.ls3{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.069333pt;}
.lse{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.341333pt;}
.lsd{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls11{letter-spacing:12.906667pt;}
.ls13{letter-spacing:13.973333pt;}
.ls8{letter-spacing:27.840000pt;}
.ls10{letter-spacing:39.573333pt;}
.ls12{letter-spacing:40.640000pt;}
.ls1{letter-spacing:56.640000pt;}
.ws3{word-spacing:-53.333333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws7{word-spacing:-15.466667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws5{word-spacing:-11.466667pt;}
.ws6{word-spacing:-9.333333pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-1.888000pt;}
._0{margin-left:-0.938667pt;}
._1{width:0.981333pt;}
._c{width:1.893333pt;}
._9{width:2.986667pt;}
._8{width:4.106667pt;}
._12{width:5.184000pt;}
._a{width:6.080000pt;}
._b{width:7.680000pt;}
._f{width:9.333333pt;}
._10{width:10.293333pt;}
._e{width:11.232000pt;}
._d{width:12.138667pt;}
._19{width:13.844267pt;}
._7{width:15.072000pt;}
._6{width:16.106667pt;}
._11{width:17.333333pt;}
._13{width:18.464000pt;}
._18{width:19.445333pt;}
._17{width:20.554667pt;}
._16{width:25.866667pt;}
._14{width:26.912000pt;}
._4{width:298.826667pt;}
._2{width:497.733333pt;}
._3{width:571.360000pt;}
._5{width:1048.960000pt;}
._1a{width:1784.133333pt;}
.fs6{font-size:10.666667pt;}
.fs4{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fsb{font-size:35.200000pt;}
.fsa{font-size:40.533333pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:53.466667pt;}
.fs0{font-size:58.666667pt;}
.fs9{font-size:61.866667pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y122{bottom:0.666667pt;}
.y120{bottom:1.200000pt;}
.y124{bottom:2.506667pt;}
.y9a{bottom:2.920000pt;}
.y89{bottom:2.933333pt;}
.y97{bottom:2.946667pt;}
.y104{bottom:2.973333pt;}
.y9e{bottom:3.186667pt;}
.y93{bottom:3.200000pt;}
.yfa{bottom:3.213333pt;}
.yf{bottom:3.480000pt;}
.y129{bottom:3.533333pt;}
.y11e{bottom:3.560000pt;}
.y40{bottom:4.533333pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y126{bottom:9.173333pt;}
.y98{bottom:10.666667pt;}
.y94{bottom:10.933333pt;}
.y107{bottom:10.946667pt;}
.yfe{bottom:10.960000pt;}
.y5{bottom:10.966667pt;}
.yf8{bottom:11.213333pt;}
.ybb{bottom:11.746667pt;}
.y86{bottom:11.773333pt;}
.y83{bottom:17.626667pt;}
.y84{bottom:18.173333pt;}
.y92{bottom:18.386667pt;}
.ya3{bottom:18.400000pt;}
.y96{bottom:18.413333pt;}
.ya0{bottom:18.426667pt;}
.yfc{bottom:18.440000pt;}
.y87{bottom:18.706667pt;}
.yf6{bottom:18.933333pt;}
.y82{bottom:19.506667pt;}
.ybc{bottom:20.013333pt;}
.y128{bottom:20.333333pt;}
.y11d{bottom:20.373333pt;}
.y3f{bottom:20.520000pt;}
.y85{bottom:22.173333pt;}
.ycf{bottom:26.120000pt;}
.ye7{bottom:26.133333pt;}
.yfd{bottom:26.173333pt;}
.yf7{bottom:26.413333pt;}
.ye3{bottom:33.066667pt;}
.ycc{bottom:33.360000pt;}
.ye1{bottom:33.600000pt;}
.ye6{bottom:33.613333pt;}
.yca{bottom:33.866667pt;}
.yd2{bottom:33.893333pt;}
.yd8{bottom:33.906667pt;}
.y3e{bottom:38.386667pt;}
.ydd{bottom:41.333333pt;}
.y4{bottom:41.600000pt;}
.yce{bottom:41.626667pt;}
.y81{bottom:44.293333pt;}
.yc9{bottom:49.066667pt;}
.ye5{bottom:49.080000pt;}
.yd1{bottom:49.093333pt;}
.yd7{bottom:49.106667pt;}
.y1{bottom:50.966667pt;}
.y3d{bottom:53.853333pt;}
.ydb{bottom:56.266667pt;}
.yc2{bottom:56.800000pt;}
.ycd{bottom:56.826667pt;}
.yd4{bottom:64.040000pt;}
.ye0{bottom:64.266667pt;}
.ye4{bottom:64.280000pt;}
.yc8{bottom:64.533333pt;}
.yd0{bottom:64.560000pt;}
.y42{bottom:65.900000pt;}
.y3c{bottom:69.053333pt;}
.ybe{bottom:71.466667pt;}
.ydc{bottom:72.000000pt;}
.yc1{bottom:72.266667pt;}
.y3{bottom:72.300000pt;}
.yc7{bottom:79.733333pt;}
.yd6{bottom:79.760000pt;}
.y3b{bottom:84.533333pt;}
.yc0{bottom:87.466667pt;}
.ydf{bottom:94.933333pt;}
.yc6{bottom:95.200000pt;}
.yd5{bottom:95.240000pt;}
.y11b{bottom:98.966667pt;}
.y3a{bottom:99.720000pt;}
.yf4{bottom:100.566667pt;}
.ybf{bottom:102.933333pt;}
.y11a{bottom:103.766667pt;}
.y36{bottom:104.033333pt;}
.y7d{bottom:104.566667pt;}
.y15e{bottom:108.566667pt;}
.yde{bottom:110.400000pt;}
.yc5{bottom:110.426667pt;}
.yd9{bottom:110.440000pt;}
.y39{bottom:115.200000pt;}
.y119{bottom:115.233333pt;}
.y35{bottom:119.233333pt;}
.y7c{bottom:120.033333pt;}
.yc4{bottom:125.906667pt;}
.y15d{bottom:126.433333pt;}
.yf3{bottom:128.833333pt;}
.y38{bottom:130.960000pt;}
.yb9{bottom:133.100000pt;}
.y7b{bottom:135.226667pt;}
.y34{bottom:135.760000pt;}
.yc3{bottom:141.093333pt;}
.y118{bottom:141.906667pt;}
.yb8{bottom:150.426667pt;}
.y7a{bottom:150.706667pt;}
.y33{bottom:150.973333pt;}
.yf2{bottom:152.560000pt;}
.y15c{bottom:157.106667pt;}
.y117{bottom:157.640000pt;}
.y79{bottom:165.933333pt;}
.y32{bottom:167.266667pt;}
.yf1{bottom:168.333333pt;}
.y15b{bottom:172.600000pt;}
.y116{bottom:172.866667pt;}
.yb7{bottom:181.133333pt;}
.y78{bottom:181.400000pt;}
.yf0{bottom:183.533333pt;}
.y31{bottom:183.800000pt;}
.y15a{bottom:187.800000pt;}
.y114{bottom:194.733333pt;}
.y77{bottom:196.600000pt;}
.y30{bottom:199.000000pt;}
.y115{bottom:199.533333pt;}
.y159{bottom:203.266667pt;}
.yb6{bottom:207.000000pt;}
.y113{bottom:210.200000pt;}
.y76{bottom:212.866667pt;}
.y2f{bottom:213.666667pt;}
.yef{bottom:214.200000pt;}
.y158{bottom:218.466667pt;}
.yb5{bottom:222.466667pt;}
.y2e{bottom:226.733333pt;}
.y75{bottom:228.333333pt;}
.yee{bottom:229.666667pt;}
.y112{bottom:233.133333pt;}
.y157{bottom:233.933333pt;}
.yb4{bottom:237.933333pt;}
.y2d{bottom:241.933333pt;}
.y127{bottom:243.466667pt;}
.y74{bottom:243.533333pt;}
.y156{bottom:249.133333pt;}
.yb3{bottom:253.133333pt;}
.y12a{bottom:255.800000pt;}
.yed{bottom:257.933333pt;}
.y73{bottom:259.000000pt;}
.y155{bottom:264.600000pt;}
.y2c{bottom:267.800000pt;}
.yb2{bottom:268.600000pt;}
.yec{bottom:273.666667pt;}
.y72{bottom:274.200000pt;}
.y154{bottom:279.800000pt;}
.y2b{bottom:283.266667pt;}
.yeb{bottom:288.866667pt;}
.y71{bottom:290.466667pt;}
.y153{bottom:295.266667pt;}
.yb1{bottom:296.066667pt;}
.y2a{bottom:298.733333pt;}
.y70{bottom:305.933333pt;}
.y125{bottom:308.266667pt;}
.y152{bottom:310.506667pt;}
.yb0{bottom:311.560000pt;}
.y29{bottom:313.960000pt;}
.yea{bottom:317.440000pt;}
.y6f{bottom:321.173333pt;}
.y151{bottom:325.960000pt;}
.yaf{bottom:326.773333pt;}
.y28{bottom:329.440000pt;}
.ye9{bottom:332.893333pt;}
.y6e{bottom:336.626667pt;}
.y150{bottom:341.173333pt;}
.yae{bottom:341.960000pt;}
.y27{bottom:345.173333pt;}
.ye8{bottom:348.360000pt;}
.y6d{bottom:351.840000pt;}
.y14f{bottom:356.626667pt;}
.yad{bottom:358.506667pt;}
.y123{bottom:358.666667pt;}
.y26{bottom:362.506667pt;}
.y6c{bottom:367.293333pt;}
.y14e{bottom:371.840000pt;}
.yac{bottom:373.706667pt;}
.y25{bottom:375.293333pt;}
.ye2{bottom:382.226667pt;}
.y6b{bottom:382.506667pt;}
.y14d{bottom:387.293333pt;}
.yab{bottom:389.173333pt;}
.y24{bottom:390.773333pt;}
.y6a{bottom:397.960000pt;}
.y14c{bottom:402.506667pt;}
.yaa{bottom:404.373333pt;}
.y11c{bottom:405.066667pt;}
.y23{bottom:405.973333pt;}
.y69{bottom:413.173333pt;}
.y14b{bottom:417.973333pt;}
.ya9{bottom:419.560000pt;}
.y22{bottom:421.440000pt;}
.y68{bottom:428.626667pt;}
.y14a{bottom:433.173333pt;}
.ya8{bottom:436.106667pt;}
.y21{bottom:436.626667pt;}
.y67{bottom:443.840000pt;}
.y149{bottom:448.640000pt;}
.ya7{bottom:451.293333pt;}
.y20{bottom:452.106667pt;}
.y66{bottom:459.333333pt;}
.yda{bottom:459.600000pt;}
.y121{bottom:462.400000pt;}
.y148{bottom:463.866667pt;}
.y1f{bottom:466.800000pt;}
.y65{bottom:474.533333pt;}
.y147{bottom:479.333333pt;}
.y1e{bottom:479.600000pt;}
.ya6{bottom:482.000000pt;}
.y64{bottom:490.000000pt;}
.y146{bottom:494.533333pt;}
.y1d{bottom:495.066667pt;}
.y11f{bottom:500.000000pt;}
.ya5{bottom:503.866667pt;}
.y63{bottom:505.200000pt;}
.y1c{bottom:510.266667pt;}
.ya4{bottom:512.933333pt;}
.y62{bottom:520.666667pt;}
.y1b{bottom:525.733333pt;}
.y145{bottom:527.600000pt;}
.y111{bottom:534.800000pt;}
.y61{bottom:535.866667pt;}
.y144{bottom:540.666667pt;}
.y1a{bottom:540.933333pt;}
.ya2{bottom:544.133333pt;}
.y110{bottom:550.266667pt;}
.y60{bottom:551.333333pt;}
.y143{bottom:555.866667pt;}
.y19{bottom:556.400000pt;}
.y10f{bottom:565.733333pt;}
.y5f{bottom:566.533333pt;}
.y142{bottom:571.333333pt;}
.y18{bottom:572.133333pt;}
.ya1{bottom:575.600000pt;}
.y5e{bottom:582.000000pt;}
.yd3{bottom:582.800000pt;}
.y141{bottom:586.533333pt;}
.y10e{bottom:591.333333pt;}
.y9f{bottom:591.600000pt;}
.y5d{bottom:597.200000pt;}
.y10d{bottom:607.093333pt;}
.y140{bottom:608.426667pt;}
.y5c{bottom:612.693333pt;}
.y10c{bottom:622.293333pt;}
.y9d{bottom:622.840000pt;}
.y13f{bottom:624.973333pt;}
.y37{bottom:626.840000pt;}
.y5b{bottom:627.893333pt;}
.y10b{bottom:637.773333pt;}
.y13e{bottom:640.173333pt;}
.y5a{bottom:643.373333pt;}
.y9c{bottom:654.306667pt;}
.y13d{bottom:656.426667pt;}
.y10a{bottom:657.226667pt;}
.y59{bottom:658.573333pt;}
.y9b{bottom:670.306667pt;}
.y13c{bottom:672.973333pt;}
.y109{bottom:673.240000pt;}
.y58{bottom:674.026667pt;}
.y99{bottom:686.306667pt;}
.y13b{bottom:688.173333pt;}
.y57{bottom:689.226667pt;}
.y108{bottom:689.240000pt;}
.y95{bottom:702.293333pt;}
.y13a{bottom:704.426667pt;}
.y56{bottom:704.960000pt;}
.y106{bottom:705.226667pt;}
.y139{bottom:719.626667pt;}
.ycb{bottom:721.506667pt;}
.y55{bottom:723.106667pt;}
.y91{bottom:733.506667pt;}
.y138{bottom:736.173333pt;}
.y105{bottom:736.706667pt;}
.y54{bottom:738.293333pt;}
.y137{bottom:751.373333pt;}
.y103{bottom:752.693333pt;}
.y53{bottom:753.773333pt;}
.y90{bottom:765.000000pt;}
.y136{bottom:767.666667pt;}
.y102{bottom:768.733333pt;}
.y52{bottom:769.000000pt;}
.y8f{bottom:781.000000pt;}
.y135{bottom:782.866667pt;}
.y51{bottom:784.733333pt;}
.y8e{bottom:797.000000pt;}
.ybd{bottom:798.866667pt;}
.y134{bottom:799.400000pt;}
.y17{bottom:800.200000pt;}
.y50{bottom:802.866667pt;}
.y8d{bottom:813.000000pt;}
.y133{bottom:814.600000pt;}
.y101{bottom:815.933333pt;}
.y4f{bottom:818.066667pt;}
.y16{bottom:824.466667pt;}
.y8c{bottom:829.000000pt;}
.y132{bottom:829.800000pt;}
.y100{bottom:831.933333pt;}
.y4e{bottom:833.533333pt;}
.y15{bottom:843.666667pt;}
.y8b{bottom:845.000000pt;}
.y131{bottom:846.333333pt;}
.y4d{bottom:848.733333pt;}
.y14{bottom:858.600000pt;}
.y8a{bottom:861.000000pt;}
.y130{bottom:861.533333pt;}
.yff{bottom:863.400000pt;}
.y4c{bottom:864.200000pt;}
.y13{bottom:871.666667pt;}
.y88{bottom:877.000000pt;}
.y12f{bottom:878.066667pt;}
.y4b{bottom:879.400000pt;}
.y12{bottom:887.666667pt;}
.y80{bottom:893.000000pt;}
.y12e{bottom:893.266667pt;}
.yfb{bottom:894.600000pt;}
.y4a{bottom:894.866667pt;}
.y11{bottom:906.626667pt;}
.y12d{bottom:908.773333pt;}
.y49{bottom:910.106667pt;}
.y10{bottom:922.893333pt;}
.y12c{bottom:924.506667pt;}
.yd{bottom:925.293333pt;}
.y48{bottom:925.560000pt;}
.y47{bottom:940.226667pt;}
.yf5{bottom:941.293333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y12b{bottom:952.773333pt;}
.y46{bottom:953.040000pt;}
.yba{bottom:954.360000pt;}
.ya{bottom:963.173333pt;}
.y45{bottom:968.506667pt;}
.yf9{bottom:972.760000pt;}
.y9{bottom:975.960000pt;}
.y44{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y7f{bottom:994.626667pt;}
.y43{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y7e{bottom:1012.226667pt;}
.y6{bottom:1014.373333pt;}
.y41{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h31{height:13.333333pt;}
.h30{height:13.866667pt;}
.h1d{height:15.186667pt;}
.h19{height:15.200000pt;}
.h2b{height:15.233333pt;}
.h2a{height:15.466667pt;}
.hf{height:18.619792pt;}
.ha{height:18.666667pt;}
.h2d{height:24.578125pt;}
.h2c{height:24.835937pt;}
.h33{height:27.200000pt;}
.h1f{height:28.302083pt;}
.hd{height:29.791667pt;}
.h7{height:30.104167pt;}
.h1c{height:30.666667pt;}
.h1b{height:30.700000pt;}
.h3{height:32.000000pt;}
.h2e{height:33.066667pt;}
.h8{height:33.515625pt;}
.h21{height:33.600000pt;}
.he{height:33.867188pt;}
.h15{height:35.085938pt;}
.hc{height:37.239583pt;}
.h32{height:37.332682pt;}
.h4{height:37.630208pt;}
.h14{height:38.515625pt;}
.h11{height:38.828125pt;}
.h10{height:38.984375pt;}
.h22{height:41.393229pt;}
.h16{height:43.651042pt;}
.h1a{height:43.778125pt;}
.h1e{height:43.831458pt;}
.h2f{height:44.687500pt;}
.h6{height:45.156250pt;}
.h29{height:46.166667pt;}
.h13{height:46.218750pt;}
.h28{height:46.666667pt;}
.hb{height:47.414062pt;}
.h17{height:49.635417pt;}
.h20{height:49.932292pt;}
.h1{height:58.351562pt;}
.h27{height:76.566667pt;}
.h24{height:76.833333pt;}
.h2{height:86.400000pt;}
.h18{height:97.633333pt;}
.h26{height:122.666667pt;}
.h25{height:138.160000pt;}
.h12{height:145.880000pt;}
.h23{height:153.360000pt;}
.h0{height:1122.666667pt;}
.w12{width:27.200000pt;}
.wb{width:29.866667pt;}
.wd{width:30.133333pt;}
.wc{width:30.166667pt;}
.w9{width:30.666667pt;}
.wa{width:30.700000pt;}
.w4{width:64.266667pt;}
.w15{width:85.066667pt;}
.wf{width:88.833333pt;}
.w3{width:96.000000pt;}
.w18{width:108.533333pt;}
.w1a{width:108.800000pt;}
.w1e{width:114.400000pt;}
.w19{width:153.600000pt;}
.w6{width:225.133333pt;}
.w11{width:230.466667pt;}
.w1c{width:245.333333pt;}
.w13{width:269.973333pt;}
.w16{width:272.640000pt;}
.w10{width:336.093333pt;}
.w14{width:358.240000pt;}
.w1d{width:388.266667pt;}
.w1b{width:389.333333pt;}
.w5{width:429.733333pt;}
.w8{width:465.466667pt;}
.w7{width:649.000000pt;}
.we{width:651.666667pt;}
.w17{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.933333pt;}
.x2{left:9.599999pt;}
.x33{left:11.266667pt;}
.x16{left:14.400000pt;}
.x21{left:17.866667pt;}
.x3{left:19.733333pt;}
.x1a{left:23.466667pt;}
.x4{left:24.533333pt;}
.x30{left:25.760000pt;}
.x34{left:30.506667pt;}
.x2f{left:31.573333pt;}
.x18{left:36.533333pt;}
.x2d{left:39.800000pt;}
.x35{left:48.133333pt;}
.x32{left:57.706667pt;}
.xb{left:69.633333pt;}
.x1{left:72.033322pt;}
.x15{left:73.900000pt;}
.x2b{left:76.566655pt;}
.x24{left:90.693333pt;}
.x14{left:96.033322pt;}
.xf{left:97.099988pt;}
.x25{left:100.300000pt;}
.xe{left:103.773333pt;}
.x23{left:104.840000pt;}
.x9{left:136.559988pt;}
.x22{left:161.933333pt;}
.x2c{left:195.733333pt;}
.xc{left:214.726667pt;}
.x31{left:219.466667pt;}
.x13{left:238.999988pt;}
.x2a{left:264.106655pt;}
.x10{left:291.293322pt;}
.x11{left:309.959988pt;}
.x2e{left:337.066667pt;}
.x6{left:360.106655pt;}
.x26{left:370.800000pt;}
.x28{left:372.399976pt;}
.x29{left:376.933322pt;}
.x12{left:396.933322pt;}
.x27{left:456.400000pt;}
.xd{left:499.360000pt;}
.x17{left:523.106655pt;}
.x19{left:538.306667pt;}
.x36{left:539.893322pt;}
.x8{left:546.559988pt;}
.x1b{left:569.506667pt;}
.x7{left:576.173322pt;}
.x1c{left:601.000000pt;}
.x5{left:620.999988pt;}
.x1d{left:631.400000pt;}
.x1e{left:662.600000pt;}
.x1f{left:693.306667pt;}
.xa{left:722.106655pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  