
    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_9453b77518c7f80c56412b61.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_385f21b4ef3427bb90080faf.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_eba5f80ed233cb4a57425fcf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_058d5c0bb786ea19864f2039.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_625a5b5fc23a9b0ec93cb4f5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ff9a50d4e3fd1de65c6e33d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_229dfcf0b6817a09e42abe89.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1228452f2bfec674d03b0c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_cf5b54b838ee9f69dcdff9c4.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;}
.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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls10{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.048000px;}
.lsc{letter-spacing:-0.024000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.ls7{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.384000px;}
.ls2{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.lse{letter-spacing:15.720000px;}
.lsb{letter-spacing:45.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws9{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.054000px;}
.ws7{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.100000px;}
.wsa{word-spacing:-13.800000px;}
.ws5{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.476000px;}
.ws6{word-spacing:-12.900000px;}
.ws2{word-spacing:-9.900000px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-2.118000px;}
._1{margin-left:-1.008000px;}
._0{width:1.056000px;}
._b{width:2.076000px;}
._11{width:3.090000px;}
._d{width:4.242000px;}
._c{width:5.340000px;}
._10{width:6.360000px;}
._12{width:8.220000px;}
._9{width:9.642000px;}
._8{width:11.280000px;}
._e{width:12.312000px;}
._6{width:14.112000px;}
._7{width:15.702000px;}
._f{width:16.836000px;}
._16{width:18.210000px;}
._14{width:21.360000px;}
._13{width:23.118000px;}
._15{width:24.204000px;}
._18{width:26.298000px;}
._17{width:27.300000px;}
._2{width:43.800000px;}
._4{width:336.180000px;}
._3{width:1162.530000px;}
._5{width:1184.820000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fsa{font-size:6.000000px;}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:57.600000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yee{bottom:3.300000px;}
.ye2{bottom:3.345000px;}
.ye9{bottom:3.600000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y109{bottom:6.600000px;}
.ycc{bottom:7.200000px;}
.y12b{bottom:7.800000px;}
.yd3{bottom:8.100000px;}
.y126{bottom:9.000000px;}
.y143{bottom:9.945000px;}
.yc7{bottom:10.500000px;}
.y104{bottom:11.715000px;}
.y3f{bottom:12.015000px;}
.y5{bottom:12.337500px;}
.y14a{bottom:13.200000px;}
.y110{bottom:14.100000px;}
.y13d{bottom:14.730000px;}
.y131{bottom:15.885000px;}
.y116{bottom:20.685000px;}
.ye8{bottom:20.700000px;}
.yed{bottom:20.715000px;}
.ye1{bottom:20.745000px;}
.ydb{bottom:22.215000px;}
.yf5{bottom:22.815000px;}
.y12a{bottom:23.100000px;}
.y108{bottom:23.700000px;}
.ycb{bottom:24.300000px;}
.yd2{bottom:25.200000px;}
.yd8{bottom:25.215000px;}
.y14f{bottom:25.800000px;}
.y142{bottom:27.330000px;}
.y136{bottom:28.500000px;}
.y149{bottom:29.700000px;}
.y13c{bottom:30.945000px;}
.y10f{bottom:31.200000px;}
.y3e{bottom:31.500000px;}
.y130{bottom:32.100000px;}
.yec{bottom:37.800000px;}
.ye0{bottom:37.845000px;}
.ye7{bottom:38.100000px;}
.y129{bottom:38.700000px;}
.yda{bottom:39.300000px;}
.yf4{bottom:39.915000px;}
.y107{bottom:41.130000px;}
.yca{bottom:41.685000px;}
.yd1{bottom:42.600000px;}
.yd7{bottom:42.645000px;}
.y14e{bottom:42.900000px;}
.y141{bottom:44.445000px;}
.y135{bottom:45.600000px;}
.y148{bottom:45.900000px;}
.y3d{bottom:46.215000px;}
.y4{bottom:46.800000px;}
.y13b{bottom:47.430000px;}
.y10e{bottom:48.600000px;}
.y128{bottom:54.300000px;}
.y115{bottom:55.185000px;}
.ye6{bottom:55.200000px;}
.y118{bottom:55.230000px;}
.ydf{bottom:55.245000px;}
.y1{bottom:57.037500px;}
.yf3{bottom:57.315000px;}
.y106{bottom:58.230000px;}
.yc9{bottom:58.800000px;}
.yd0{bottom:59.700000px;}
.yd6{bottom:59.745000px;}
.y14d{bottom:60.300000px;}
.y140{bottom:61.845000px;}
.y147{bottom:62.400000px;}
.y134{bottom:63.030000px;}
.y3c{bottom:63.300000px;}
.y13a{bottom:63.945000px;}
.y12f{bottom:65.130000px;}
.y10d{bottom:65.700000px;}
.y114{bottom:72.300000px;}
.y117{bottom:72.330000px;}
.yde{bottom:72.345000px;}
.ye5{bottom:72.600000px;}
.y41{bottom:74.137500px;}
.yf2{bottom:74.415000px;}
.ycf{bottom:77.100000px;}
.yd5{bottom:77.145000px;}
.y14c{bottom:77.400000px;}
.y146{bottom:78.900000px;}
.y13f{bottom:78.945000px;}
.y133{bottom:80.130000px;}
.y139{bottom:80.145000px;}
.y3b{bottom:80.715000px;}
.y12e{bottom:81.330000px;}
.y3{bottom:81.337500px;}
.y10c{bottom:83.100000px;}
.ydd{bottom:89.430000px;}
.y113{bottom:89.685000px;}
.ye4{bottom:89.700000px;}
.yeb{bottom:89.745000px;}
.yf1{bottom:91.815000px;}
.yce{bottom:94.245000px;}
.y14b{bottom:94.800000px;}
.y145{bottom:95.100000px;}
.y13e{bottom:96.330000px;}
.y138{bottom:96.645000px;}
.y132{bottom:97.530000px;}
.y3a{bottom:97.815000px;}
.y12d{bottom:97.830000px;}
.y10b{bottom:100.200000px;}
.y112{bottom:106.800000px;}
.yf0{bottom:108.915000px;}
.y161{bottom:112.837500px;}
.y39{bottom:115.215000px;}
.y194{bottom:116.437500px;}
.yb0{bottom:117.037500px;}
.y26{bottom:120.337500px;}
.yaf{bottom:123.037500px;}
.y7b{bottom:123.637500px;}
.y160{bottom:129.937500px;}
.y38{bottom:132.300000px;}
.y193{bottom:133.537500px;}
.y25{bottom:135.037500px;}
.yae{bottom:140.437500px;}
.y7a{bottom:144.337500px;}
.y15f{bottom:147.337500px;}
.y37{bottom:149.715000px;}
.y192{bottom:150.930000px;}
.yd4{bottom:151.830000px;}
.y24{bottom:152.130000px;}
.y120{bottom:154.545000px;}
.yad{bottom:157.545000px;}
.y79{bottom:163.845000px;}
.y15e{bottom:164.430000px;}
.y36{bottom:166.845000px;}
.y191{bottom:168.045000px;}
.y23{bottom:169.545000px;}
.y11f{bottom:171.930000px;}
.yac{bottom:174.930000px;}
.y78{bottom:178.575000px;}
.y15d{bottom:181.875000px;}
.y35{bottom:184.245000px;}
.y190{bottom:185.475000px;}
.y22{bottom:186.675000px;}
.y11e{bottom:189.375000px;}
.yab{bottom:192.375000px;}
.y77{bottom:195.675000px;}
.y15c{bottom:198.975000px;}
.y34{bottom:201.345000px;}
.y18f{bottom:202.575000px;}
.y21{bottom:204.075000px;}
.y11d{bottom:206.475000px;}
.yaa{bottom:211.275000px;}
.y76{bottom:213.075000px;}
.y15b{bottom:216.375000px;}
.y33{bottom:218.745000px;}
.y18e{bottom:219.975000px;}
.y20{bottom:221.175000px;}
.y11c{bottom:223.875000px;}
.ya9{bottom:230.475000px;}
.y75{bottom:230.775000px;}
.y15a{bottom:234.075000px;}
.y32{bottom:235.845000px;}
.y18d{bottom:237.075000px;}
.y1f{bottom:238.875000px;}
.y11b{bottom:248.775000px;}
.ya8{bottom:250.875000px;}
.y74{bottom:251.475000px;}
.y31{bottom:253.245000px;}
.y159{bottom:253.575000px;}
.y18c{bottom:254.475000px;}
.y1e{bottom:257.175000px;}
.ycd{bottom:259.875000px;}
.y11a{bottom:267.675000px;}
.ya7{bottom:267.975000px;}
.y30{bottom:270.345000px;}
.y73{bottom:270.975000px;}
.y18b{bottom:271.575000px;}
.y72{bottom:285.375000px;}
.y119{bottom:286.575000px;}
.y2f{bottom:287.745000px;}
.y18a{bottom:288.975000px;}
.ya6{bottom:302.475000px;}
.y71{bottom:302.775000px;}
.y2e{bottom:304.845000px;}
.y189{bottom:306.075000px;}
.y70{bottom:319.875000px;}
.y2d{bottom:322.245000px;}
.y188{bottom:323.475000px;}
.y6f{bottom:336.375000px;}
.y158{bottom:336.975000px;}
.y2c{bottom:339.375000px;}
.y187{bottom:340.575000px;}
.y27{bottom:346.905000px;}
.ya5{bottom:350.820000px;}
.y6e{bottom:351.105000px;}
.y157{bottom:354.405000px;}
.y2b{bottom:356.790000px;}
.y186{bottom:358.005000px;}
.y6d{bottom:368.205000px;}
.yc8{bottom:368.820000px;}
.y156{bottom:370.905000px;}
.y2a{bottom:373.890000px;}
.y185{bottom:375.105000px;}
.ya4{bottom:385.320000px;}
.y6c{bottom:385.605000px;}
.y29{bottom:391.290000px;}
.y184{bottom:392.520000px;}
.y6b{bottom:402.720000px;}
.ya3{bottom:403.005000px;}
.y111{bottom:406.320000px;}
.y28{bottom:408.975000px;}
.y183{bottom:409.620000px;}
.y155{bottom:419.820000px;}
.y6a{bottom:420.120000px;}
.y182{bottom:427.005000px;}
.y69{bottom:437.205000px;}
.ya2{bottom:438.120000px;}
.yc6{bottom:442.320000px;}
.y181{bottom:444.120000px;}
.y154{bottom:454.320000px;}
.y68{bottom:454.620000px;}
.ya1{bottom:455.505000px;}
.y180{bottom:461.505000px;}
.yc5{bottom:468.120000px;}
.y67{bottom:471.720000px;}
.yc4{bottom:474.420000px;}
.y17f{bottom:478.620000px;}
.ya0{bottom:480.120000px;}
.y66{bottom:489.120000px;}
.yc3{bottom:493.320000px;}
.y17e{bottom:496.005000px;}
.y153{bottom:496.620000px;}
.y9f{bottom:497.505000px;}
.y65{bottom:506.205000px;}
.yc2{bottom:512.220000px;}
.y17d{bottom:513.120000px;}
.y9e{bottom:514.050000px;}
.y152{bottom:515.550000px;}
.y64{bottom:523.650000px;}
.y10a{bottom:526.950000px;}
.y9d{bottom:528.750000px;}
.yc1{bottom:529.350000px;}
.y17c{bottom:530.550000px;}
.y151{bottom:534.450000px;}
.y63{bottom:540.750000px;}
.y9c{bottom:545.850000px;}
.yc0{bottom:546.750000px;}
.y17b{bottom:548.250000px;}
.y62{bottom:558.150000px;}
.y9b{bottom:562.350000px;}
.ybf{bottom:563.850000px;}
.y150{bottom:565.050000px;}
.y144{bottom:567.450000px;}
.y17a{bottom:568.350000px;}
.y61{bottom:575.250000px;}
.y9a{bottom:577.050000px;}
.ybe{bottom:581.250000px;}
.y179{bottom:585.750000px;}
.y60{bottom:592.650000px;}
.y99{bottom:594.150000px;}
.ybd{bottom:596.550000px;}
.y178{bottom:602.850000px;}
.y197{bottom:606.450000px;}
.ybc{bottom:607.050000px;}
.y5f{bottom:609.750000px;}
.y98{bottom:618.750000px;}
.y177{bottom:620.250000px;}
.y196{bottom:623.550000px;}
.ybb{bottom:624.150000px;}
.y5e{bottom:627.150000px;}
.y176{bottom:637.950000px;}
.y195{bottom:640.950000px;}
.yba{bottom:641.550000px;}
.y105{bottom:641.850000px;}
.y97{bottom:643.350000px;}
.y5d{bottom:644.250000px;}
.y175{bottom:658.050000px;}
.yb9{bottom:658.650000px;}
.y5c{bottom:661.650000px;}
.y96{bottom:668.250000px;}
.y174{bottom:675.450000px;}
.y137{bottom:676.050000px;}
.yb8{bottom:676.350000px;}
.y5b{bottom:678.750000px;}
.y95{bottom:685.695000px;}
.y173{bottom:692.595000px;}
.yb7{bottom:695.295000px;}
.y5a{bottom:696.195000px;}
.y94{bottom:703.380000px;}
.y172{bottom:709.980000px;}
.y59{bottom:713.280000px;}
.yb6{bottom:713.895000px;}
.y103{bottom:714.780000px;}
.y93{bottom:722.880000px;}
.y171{bottom:727.080000px;}
.y58{bottom:730.695000px;}
.yb5{bottom:731.280000px;}
.y92{bottom:737.595000px;}
.y170{bottom:744.495000px;}
.y57{bottom:747.795000px;}
.yb4{bottom:748.380000px;}
.y102{bottom:752.280000px;}
.y91{bottom:754.695000px;}
.y16f{bottom:761.595000px;}
.y56{bottom:765.195000px;}
.yb3{bottom:765.780000px;}
.y101{bottom:771.195000px;}
.y90{bottom:772.080000px;}
.y16e{bottom:778.980000px;}
.yb2{bottom:781.080000px;}
.y55{bottom:782.295000px;}
.y12c{bottom:786.195000px;}
.y8f{bottom:789.195000px;}
.yb1{bottom:791.580000px;}
.y16d{bottom:796.080000px;}
.y54{bottom:799.695000px;}
.y1d{bottom:804.195000px;}
.y100{bottom:804.795000px;}
.yea{bottom:806.280000px;}
.y8e{bottom:806.580000px;}
.y16c{bottom:813.495000px;}
.y53{bottom:816.795000px;}
.y1c{bottom:821.295000px;}
.yff{bottom:822.195000px;}
.y8d{bottom:823.695000px;}
.y16b{bottom:830.580000px;}
.y52{bottom:834.195000px;}
.yfe{bottom:839.580000px;}
.y1b{bottom:841.080000px;}
.y16a{bottom:847.995000px;}
.y51{bottom:851.325000px;}
.yfd{bottom:856.725000px;}
.y8c{bottom:858.225000px;}
.y1a{bottom:859.725000px;}
.y169{bottom:865.125000px;}
.y50{bottom:868.725000px;}
.yfc{bottom:874.125000px;}
.y8b{bottom:875.625000px;}
.y168{bottom:882.525000px;}
.y19{bottom:883.725000px;}
.y4f{bottom:885.825000px;}
.y8a{bottom:893.325000px;}
.y127{bottom:898.125000px;}
.y167{bottom:899.625000px;}
.y18{bottom:901.425000px;}
.yfb{bottom:902.925000px;}
.y4e{bottom:903.225000px;}
.ye3{bottom:910.425000px;}
.y89{bottom:912.825000px;}
.y166{bottom:917.025000px;}
.y17{bottom:918.525000px;}
.y4d{bottom:920.325000px;}
.yfa{bottom:920.625000px;}
.y88{bottom:927.225000px;}
.y165{bottom:934.125000px;}
.y16{bottom:935.925000px;}
.y4c{bottom:937.725000px;}
.y87{bottom:944.625000px;}
.y164{bottom:951.525000px;}
.y15{bottom:953.025000px;}
.y4b{bottom:954.825000px;}
.yf9{bottom:955.125000px;}
.y86{bottom:961.725000px;}
.y14{bottom:965.025000px;}
.y125{bottom:965.625000px;}
.y163{bottom:968.625000px;}
.y4a{bottom:972.225000px;}
.y85{bottom:979.125000px;}
.yf8{bottom:980.025000px;}
.y13{bottom:982.125000px;}
.y162{bottom:986.025000px;}
.y49{bottom:988.725000px;}
.y84{bottom:996.225000px;}
.yf7{bottom:998.925000px;}
.y12{bottom:999.825000px;}
.y124{bottom:1000.425000px;}
.y48{bottom:1003.125000px;}
.y83{bottom:1013.625000px;}
.ydc{bottom:1014.825000px;}
.yf6{bottom:1017.570000px;}
.y123{bottom:1019.370000px;}
.y11{bottom:1020.570000px;}
.y82{bottom:1030.755000px;}
.yef{bottom:1032.255000px;}
.y47{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.y122{bottom:1038.570000px;}
.yd{bottom:1040.955000px;}
.y81{bottom:1048.170000px;}
.y46{bottom:1055.070000px;}
.yc{bottom:1062.570000px;}
.y80{bottom:1065.870000px;}
.yb{bottom:1068.255000px;}
.y121{bottom:1071.870000px;}
.y45{bottom:1072.170000px;}
.ya{bottom:1083.570000px;}
.y7f{bottom:1085.955000px;}
.y44{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y7e{bottom:1103.370000px;}
.y43{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.yd9{bottom:1118.955000px;}
.y7d{bottom:1120.455000px;}
.y42{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y7c{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y40{bottom:1196.400000px;}
.h2e{height:4.233398px;}
.h1a{height:8.466797px;}
.h9{height:8.677734px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.hf{height:21.694336px;}
.h27{height:22.800000px;}
.h1b{height:24.300000px;}
.h23{height:25.500000px;}
.hc{height:28.636523px;}
.h7{height:33.867188px;}
.h15{height:34.664062px;}
.h11{height:34.710938px;}
.h3{height:36.000000px;}
.hd{height:38.100586px;}
.h8{height:39.049805px;}
.h2a{height:40.640625px;}
.h2b{height:41.653125px;}
.h4{height:42.333984px;}
.h10{height:43.388672px;}
.h17{height:43.681641px;}
.h16{height:44.507812px;}
.h18{height:46.567383px;}
.h19{height:47.727539px;}
.h14{height:49.453125px;}
.hb{height:50.236523px;}
.h6{height:50.800781px;}
.h13{height:51.996094px;}
.he{height:52.066406px;}
.h1e{height:53.100000px;}
.h1{height:65.645508px;}
.h28{height:66.900000px;}
.h24{height:72.037500px;}
.h1c{height:72.600000px;}
.h2{height:97.200000px;}
.h1f{height:103.237500px;}
.h20{height:103.500000px;}
.h21{height:103.537500px;}
.h1d{height:108.037500px;}
.h2d{height:108.600000px;}
.h2c{height:110.137500px;}
.h29{height:111.337500px;}
.h25{height:114.000000px;}
.h26{height:120.637500px;}
.h22{height:122.700000px;}
.h12{height:425.775000px;}
.h0{height:1263.000000px;}
.w36{width:46.800000px;}
.w39{width:46.837500px;}
.w41{width:47.137500px;}
.w3e{width:47.400000px;}
.w35{width:51.037500px;}
.w3d{width:51.937500px;}
.w38{width:52.800000px;}
.w40{width:54.000000px;}
.w20{width:55.800000px;}
.w1d{width:56.137500px;}
.w27{width:57.600000px;}
.wd{width:57.637500px;}
.w21{width:57.937500px;}
.w1e{width:58.200000px;}
.w15{width:58.237500px;}
.w29{width:58.500000px;}
.w26{width:58.537500px;}
.w10{width:59.100000px;}
.w2d{width:59.137500px;}
.w19{width:60.000000px;}
.we{width:60.300000px;}
.w16{width:61.200000px;}
.w30{width:66.900000px;}
.w3a{width:67.200000px;}
.w11{width:70.837500px;}
.w1a{width:71.137500px;}
.w8{width:71.400000px;}
.w12{width:71.700000px;}
.w4{width:72.300000px;}
.w1c{width:75.300000px;}
.w25{width:77.100000px;}
.w28{width:77.137500px;}
.w1f{width:77.437500px;}
.w2c{width:77.700000px;}
.w2f{width:77.737500px;}
.wf{width:80.137500px;}
.wc{width:80.437500px;}
.w14{width:81.037500px;}
.w18{width:81.337500px;}
.w22{width:93.600000px;}
.w2a{width:93.900000px;}
.w1b{width:107.137500px;}
.w3{width:108.000000px;}
.w33{width:116.437500px;}
.w37{width:116.737500px;}
.w3b{width:117.037500px;}
.w3f{width:117.337500px;}
.w34{width:118.537500px;}
.w3c{width:119.437500px;}
.wb{width:126.337500px;}
.w17{width:126.937500px;}
.w13{width:127.222500px;}
.w2e{width:127.237500px;}
.w2b{width:127.275000px;}
.w6{width:247.875000px;}
.w23{width:321.675000px;}
.w24{width:322.020000px;}
.w9{width:326.820000px;}
.w31{width:335.220000px;}
.w32{width:335.520000px;}
.wa{width:339.120000px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.800000px;}
.x18{left:9.600000px;}
.x2{left:10.799998px;}
.x1f{left:12.900000px;}
.x1b{left:15.045000px;}
.xf{left:16.200000px;}
.x30{left:17.700000px;}
.x1c{left:19.245000px;}
.x34{left:20.400000px;}
.x3{left:22.200000px;}
.x4{left:23.400000px;}
.x22{left:24.600000px;}
.x29{left:25.800000px;}
.x28{left:27.345000px;}
.x24{left:29.430000px;}
.x37{left:30.600000px;}
.x42{left:31.800000px;}
.x19{left:33.930000px;}
.x13{left:35.700000px;}
.x35{left:37.500000px;}
.x36{left:38.730000px;}
.x27{left:40.545000px;}
.xd{left:41.700000px;}
.x33{left:44.100000px;}
.x4e{left:45.337500px;}
.x38{left:46.800000px;}
.x26{left:50.130000px;}
.x4d{left:58.537500px;}
.x25{left:63.330000px;}
.x1{left:81.037487px;}
.xe{left:83.137500px;}
.x3b{left:89.130000px;}
.x46{left:95.730000px;}
.x16{left:97.545000px;}
.x14{left:100.830000px;}
.x44{left:105.337500px;}
.x11{left:108.037487px;}
.x12{left:135.037487px;}
.x43{left:148.837500px;}
.x9{left:153.629987px;}
.x39{left:175.875000px;}
.x2a{left:189.375000px;}
.xb{left:241.582500px;}
.x47{left:265.875000px;}
.x1a{left:280.575000px;}
.x3c{left:302.820000px;}
.x2b{left:316.320000px;}
.x1d{left:361.620000px;}
.x3d{left:380.520000px;}
.x48{left:385.320000px;}
.x2c{left:392.220000px;}
.x1e{left:419.850000px;}
.x49{left:437.250000px;}
.x3e{left:439.950000px;}
.x6{left:446.249987px;}
.x2d{left:448.950000px;}
.x15{left:481.050000px;}
.x45{left:484.650000px;}
.x3a{left:498.150000px;}
.x2e{left:507.750000px;}
.xc{left:564.495000px;}
.x10{left:579.479987px;}
.x4a{left:601.995000px;}
.x20{left:608.280000px;}
.x8{left:616.379987px;}
.x3f{left:625.395000px;}
.x2f{left:634.995000px;}
.x7{left:648.194987px;}
.x21{left:689.325000px;}
.x5{left:697.124987px;}
.x40{left:703.125000px;}
.x31{left:713.325000px;}
.x4b{left:719.625000px;}
.x23{left:749.325000px;}
.x41{left:762.225000px;}
.x32{left:770.025000px;}
.x4c{left:773.325000px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls10{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.042667pt;}
.lsc{letter-spacing:-0.021333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ls7{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.341333pt;}
.ls2{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.lse{letter-spacing:13.973333pt;}
.lsb{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws9{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.381333pt;}
.ws7{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.533333pt;}
.wsa{word-spacing:-12.266667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.978667pt;}
.ws6{word-spacing:-11.466667pt;}
.ws2{word-spacing:-8.800000pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-1.882667pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.938667pt;}
._b{width:1.845333pt;}
._11{width:2.746667pt;}
._d{width:3.770667pt;}
._c{width:4.746667pt;}
._10{width:5.653333pt;}
._12{width:7.306667pt;}
._9{width:8.570667pt;}
._8{width:10.026667pt;}
._e{width:10.944000pt;}
._6{width:12.544000pt;}
._7{width:13.957333pt;}
._f{width:14.965333pt;}
._16{width:16.186667pt;}
._14{width:18.986667pt;}
._13{width:20.549333pt;}
._15{width:21.514667pt;}
._18{width:23.376000pt;}
._17{width:24.266667pt;}
._2{width:38.933333pt;}
._4{width:298.826667pt;}
._3{width:1033.360000pt;}
._5{width:1053.173333pt;}
.fsa{font-size:5.333333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:51.200000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:2.933333pt;}
.ye2{bottom:2.973333pt;}
.ye9{bottom:3.200000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y109{bottom:5.866667pt;}
.ycc{bottom:6.400000pt;}
.y12b{bottom:6.933333pt;}
.yd3{bottom:7.200000pt;}
.y126{bottom:8.000000pt;}
.y143{bottom:8.840000pt;}
.yc7{bottom:9.333333pt;}
.y104{bottom:10.413333pt;}
.y3f{bottom:10.680000pt;}
.y5{bottom:10.966667pt;}
.y14a{bottom:11.733333pt;}
.y110{bottom:12.533333pt;}
.y13d{bottom:13.093333pt;}
.y131{bottom:14.120000pt;}
.y116{bottom:18.386667pt;}
.ye8{bottom:18.400000pt;}
.yed{bottom:18.413333pt;}
.ye1{bottom:18.440000pt;}
.ydb{bottom:19.746667pt;}
.yf5{bottom:20.280000pt;}
.y12a{bottom:20.533333pt;}
.y108{bottom:21.066667pt;}
.ycb{bottom:21.600000pt;}
.yd2{bottom:22.400000pt;}
.yd8{bottom:22.413333pt;}
.y14f{bottom:22.933333pt;}
.y142{bottom:24.293333pt;}
.y136{bottom:25.333333pt;}
.y149{bottom:26.400000pt;}
.y13c{bottom:27.506667pt;}
.y10f{bottom:27.733333pt;}
.y3e{bottom:28.000000pt;}
.y130{bottom:28.533333pt;}
.yec{bottom:33.600000pt;}
.ye0{bottom:33.640000pt;}
.ye7{bottom:33.866667pt;}
.y129{bottom:34.400000pt;}
.yda{bottom:34.933333pt;}
.yf4{bottom:35.480000pt;}
.y107{bottom:36.560000pt;}
.yca{bottom:37.053333pt;}
.yd1{bottom:37.866667pt;}
.yd7{bottom:37.906667pt;}
.y14e{bottom:38.133333pt;}
.y141{bottom:39.506667pt;}
.y135{bottom:40.533333pt;}
.y148{bottom:40.800000pt;}
.y3d{bottom:41.080000pt;}
.y4{bottom:41.600000pt;}
.y13b{bottom:42.160000pt;}
.y10e{bottom:43.200000pt;}
.y128{bottom:48.266667pt;}
.y115{bottom:49.053333pt;}
.ye6{bottom:49.066667pt;}
.y118{bottom:49.093333pt;}
.ydf{bottom:49.106667pt;}
.y1{bottom:50.700000pt;}
.yf3{bottom:50.946667pt;}
.y106{bottom:51.760000pt;}
.yc9{bottom:52.266667pt;}
.yd0{bottom:53.066667pt;}
.yd6{bottom:53.106667pt;}
.y14d{bottom:53.600000pt;}
.y140{bottom:54.973333pt;}
.y147{bottom:55.466667pt;}
.y134{bottom:56.026667pt;}
.y3c{bottom:56.266667pt;}
.y13a{bottom:56.840000pt;}
.y12f{bottom:57.893333pt;}
.y10d{bottom:58.400000pt;}
.y114{bottom:64.266667pt;}
.y117{bottom:64.293333pt;}
.yde{bottom:64.306667pt;}
.ye5{bottom:64.533333pt;}
.y41{bottom:65.900000pt;}
.yf2{bottom:66.146667pt;}
.ycf{bottom:68.533333pt;}
.yd5{bottom:68.573333pt;}
.y14c{bottom:68.800000pt;}
.y146{bottom:70.133333pt;}
.y13f{bottom:70.173333pt;}
.y133{bottom:71.226667pt;}
.y139{bottom:71.240000pt;}
.y3b{bottom:71.746667pt;}
.y12e{bottom:72.293333pt;}
.y3{bottom:72.300000pt;}
.y10c{bottom:73.866667pt;}
.ydd{bottom:79.493333pt;}
.y113{bottom:79.720000pt;}
.ye4{bottom:79.733333pt;}
.yeb{bottom:79.773333pt;}
.yf1{bottom:81.613333pt;}
.yce{bottom:83.773333pt;}
.y14b{bottom:84.266667pt;}
.y145{bottom:84.533333pt;}
.y13e{bottom:85.626667pt;}
.y138{bottom:85.906667pt;}
.y132{bottom:86.693333pt;}
.y3a{bottom:86.946667pt;}
.y12d{bottom:86.960000pt;}
.y10b{bottom:89.066667pt;}
.y112{bottom:94.933333pt;}
.yf0{bottom:96.813333pt;}
.y161{bottom:100.300000pt;}
.y39{bottom:102.413333pt;}
.y194{bottom:103.500000pt;}
.yb0{bottom:104.033333pt;}
.y26{bottom:106.966667pt;}
.yaf{bottom:109.366667pt;}
.y7b{bottom:109.900000pt;}
.y160{bottom:115.500000pt;}
.y38{bottom:117.600000pt;}
.y193{bottom:118.700000pt;}
.y25{bottom:120.033333pt;}
.yae{bottom:124.833333pt;}
.y7a{bottom:128.300000pt;}
.y15f{bottom:130.966667pt;}
.y37{bottom:133.080000pt;}
.y192{bottom:134.160000pt;}
.yd4{bottom:134.960000pt;}
.y24{bottom:135.226667pt;}
.y120{bottom:137.373333pt;}
.yad{bottom:140.040000pt;}
.y79{bottom:145.640000pt;}
.y15e{bottom:146.160000pt;}
.y36{bottom:148.306667pt;}
.y191{bottom:149.373333pt;}
.y23{bottom:150.706667pt;}
.y11f{bottom:152.826667pt;}
.yac{bottom:155.493333pt;}
.y78{bottom:158.733333pt;}
.y15d{bottom:161.666667pt;}
.y35{bottom:163.773333pt;}
.y190{bottom:164.866667pt;}
.y22{bottom:165.933333pt;}
.y11e{bottom:168.333333pt;}
.yab{bottom:171.000000pt;}
.y77{bottom:173.933333pt;}
.y15c{bottom:176.866667pt;}
.y34{bottom:178.973333pt;}
.y18f{bottom:180.066667pt;}
.y21{bottom:181.400000pt;}
.y11d{bottom:183.533333pt;}
.yaa{bottom:187.800000pt;}
.y76{bottom:189.400000pt;}
.y15b{bottom:192.333333pt;}
.y33{bottom:194.440000pt;}
.y18e{bottom:195.533333pt;}
.y20{bottom:196.600000pt;}
.y11c{bottom:199.000000pt;}
.ya9{bottom:204.866667pt;}
.y75{bottom:205.133333pt;}
.y15a{bottom:208.066667pt;}
.y32{bottom:209.640000pt;}
.y18d{bottom:210.733333pt;}
.y1f{bottom:212.333333pt;}
.y11b{bottom:221.133333pt;}
.ya8{bottom:223.000000pt;}
.y74{bottom:223.533333pt;}
.y31{bottom:225.106667pt;}
.y159{bottom:225.400000pt;}
.y18c{bottom:226.200000pt;}
.y1e{bottom:228.600000pt;}
.ycd{bottom:231.000000pt;}
.y11a{bottom:237.933333pt;}
.ya7{bottom:238.200000pt;}
.y30{bottom:240.306667pt;}
.y73{bottom:240.866667pt;}
.y18b{bottom:241.400000pt;}
.y72{bottom:253.666667pt;}
.y119{bottom:254.733333pt;}
.y2f{bottom:255.773333pt;}
.y18a{bottom:256.866667pt;}
.ya6{bottom:268.866667pt;}
.y71{bottom:269.133333pt;}
.y2e{bottom:270.973333pt;}
.y189{bottom:272.066667pt;}
.y70{bottom:284.333333pt;}
.y2d{bottom:286.440000pt;}
.y188{bottom:287.533333pt;}
.y6f{bottom:299.000000pt;}
.y158{bottom:299.533333pt;}
.y2c{bottom:301.666667pt;}
.y187{bottom:302.733333pt;}
.y27{bottom:308.360000pt;}
.ya5{bottom:311.840000pt;}
.y6e{bottom:312.093333pt;}
.y157{bottom:315.026667pt;}
.y2b{bottom:317.146667pt;}
.y186{bottom:318.226667pt;}
.y6d{bottom:327.293333pt;}
.yc8{bottom:327.840000pt;}
.y156{bottom:329.693333pt;}
.y2a{bottom:332.346667pt;}
.y185{bottom:333.426667pt;}
.ya4{bottom:342.506667pt;}
.y6c{bottom:342.760000pt;}
.y29{bottom:347.813333pt;}
.y184{bottom:348.906667pt;}
.y6b{bottom:357.973333pt;}
.ya3{bottom:358.226667pt;}
.y111{bottom:361.173333pt;}
.y28{bottom:363.533333pt;}
.y183{bottom:364.106667pt;}
.y155{bottom:373.173333pt;}
.y6a{bottom:373.440000pt;}
.y182{bottom:379.560000pt;}
.y69{bottom:388.626667pt;}
.ya2{bottom:389.440000pt;}
.yc6{bottom:393.173333pt;}
.y181{bottom:394.773333pt;}
.y154{bottom:403.840000pt;}
.y68{bottom:404.106667pt;}
.ya1{bottom:404.893333pt;}
.y180{bottom:410.226667pt;}
.yc5{bottom:416.106667pt;}
.y67{bottom:419.306667pt;}
.yc4{bottom:421.706667pt;}
.y17f{bottom:425.440000pt;}
.ya0{bottom:426.773333pt;}
.y66{bottom:434.773333pt;}
.yc3{bottom:438.506667pt;}
.y17e{bottom:440.893333pt;}
.y153{bottom:441.440000pt;}
.y9f{bottom:442.226667pt;}
.y65{bottom:449.960000pt;}
.yc2{bottom:455.306667pt;}
.y17d{bottom:456.106667pt;}
.y9e{bottom:456.933333pt;}
.y152{bottom:458.266667pt;}
.y64{bottom:465.466667pt;}
.y10a{bottom:468.400000pt;}
.y9d{bottom:470.000000pt;}
.yc1{bottom:470.533333pt;}
.y17c{bottom:471.600000pt;}
.y151{bottom:475.066667pt;}
.y63{bottom:480.666667pt;}
.y9c{bottom:485.200000pt;}
.yc0{bottom:486.000000pt;}
.y17b{bottom:487.333333pt;}
.y62{bottom:496.133333pt;}
.y9b{bottom:499.866667pt;}
.ybf{bottom:501.200000pt;}
.y150{bottom:502.266667pt;}
.y144{bottom:504.400000pt;}
.y17a{bottom:505.200000pt;}
.y61{bottom:511.333333pt;}
.y9a{bottom:512.933333pt;}
.ybe{bottom:516.666667pt;}
.y179{bottom:520.666667pt;}
.y60{bottom:526.800000pt;}
.y99{bottom:528.133333pt;}
.ybd{bottom:530.266667pt;}
.y178{bottom:535.866667pt;}
.y197{bottom:539.066667pt;}
.ybc{bottom:539.600000pt;}
.y5f{bottom:542.000000pt;}
.y98{bottom:550.000000pt;}
.y177{bottom:551.333333pt;}
.y196{bottom:554.266667pt;}
.ybb{bottom:554.800000pt;}
.y5e{bottom:557.466667pt;}
.y176{bottom:567.066667pt;}
.y195{bottom:569.733333pt;}
.yba{bottom:570.266667pt;}
.y105{bottom:570.533333pt;}
.y97{bottom:571.866667pt;}
.y5d{bottom:572.666667pt;}
.y175{bottom:584.933333pt;}
.yb9{bottom:585.466667pt;}
.y5c{bottom:588.133333pt;}
.y96{bottom:594.000000pt;}
.y174{bottom:600.400000pt;}
.y137{bottom:600.933333pt;}
.yb8{bottom:601.200000pt;}
.y5b{bottom:603.333333pt;}
.y95{bottom:609.506667pt;}
.y173{bottom:615.640000pt;}
.yb7{bottom:618.040000pt;}
.y5a{bottom:618.840000pt;}
.y94{bottom:625.226667pt;}
.y172{bottom:631.093333pt;}
.y59{bottom:634.026667pt;}
.yb6{bottom:634.573333pt;}
.y103{bottom:635.360000pt;}
.y93{bottom:642.560000pt;}
.y171{bottom:646.293333pt;}
.y58{bottom:649.506667pt;}
.yb5{bottom:650.026667pt;}
.y92{bottom:655.640000pt;}
.y170{bottom:661.773333pt;}
.y57{bottom:664.706667pt;}
.yb4{bottom:665.226667pt;}
.y102{bottom:668.693333pt;}
.y91{bottom:670.840000pt;}
.y16f{bottom:676.973333pt;}
.y56{bottom:680.173333pt;}
.yb3{bottom:680.693333pt;}
.y101{bottom:685.506667pt;}
.y90{bottom:686.293333pt;}
.y16e{bottom:692.426667pt;}
.yb2{bottom:694.293333pt;}
.y55{bottom:695.373333pt;}
.y12c{bottom:698.840000pt;}
.y8f{bottom:701.506667pt;}
.yb1{bottom:703.626667pt;}
.y16d{bottom:707.626667pt;}
.y54{bottom:710.840000pt;}
.y1d{bottom:714.840000pt;}
.y100{bottom:715.373333pt;}
.yea{bottom:716.693333pt;}
.y8e{bottom:716.960000pt;}
.y16c{bottom:723.106667pt;}
.y53{bottom:726.040000pt;}
.y1c{bottom:730.040000pt;}
.yff{bottom:730.840000pt;}
.y8d{bottom:732.173333pt;}
.y16b{bottom:738.293333pt;}
.y52{bottom:741.506667pt;}
.yfe{bottom:746.293333pt;}
.y1b{bottom:747.626667pt;}
.y16a{bottom:753.773333pt;}
.y51{bottom:756.733333pt;}
.yfd{bottom:761.533333pt;}
.y8c{bottom:762.866667pt;}
.y1a{bottom:764.200000pt;}
.y169{bottom:769.000000pt;}
.y50{bottom:772.200000pt;}
.yfc{bottom:777.000000pt;}
.y8b{bottom:778.333333pt;}
.y168{bottom:784.466667pt;}
.y19{bottom:785.533333pt;}
.y4f{bottom:787.400000pt;}
.y8a{bottom:794.066667pt;}
.y127{bottom:798.333333pt;}
.y167{bottom:799.666667pt;}
.y18{bottom:801.266667pt;}
.yfb{bottom:802.600000pt;}
.y4e{bottom:802.866667pt;}
.ye3{bottom:809.266667pt;}
.y89{bottom:811.400000pt;}
.y166{bottom:815.133333pt;}
.y17{bottom:816.466667pt;}
.y4d{bottom:818.066667pt;}
.yfa{bottom:818.333333pt;}
.y88{bottom:824.200000pt;}
.y165{bottom:830.333333pt;}
.y16{bottom:831.933333pt;}
.y4c{bottom:833.533333pt;}
.y87{bottom:839.666667pt;}
.y164{bottom:845.800000pt;}
.y15{bottom:847.133333pt;}
.y4b{bottom:848.733333pt;}
.yf9{bottom:849.000000pt;}
.y86{bottom:854.866667pt;}
.y14{bottom:857.800000pt;}
.y125{bottom:858.333333pt;}
.y163{bottom:861.000000pt;}
.y4a{bottom:864.200000pt;}
.y85{bottom:870.333333pt;}
.yf8{bottom:871.133333pt;}
.y13{bottom:873.000000pt;}
.y162{bottom:876.466667pt;}
.y49{bottom:878.866667pt;}
.y84{bottom:885.533333pt;}
.yf7{bottom:887.933333pt;}
.y12{bottom:888.733333pt;}
.y124{bottom:889.266667pt;}
.y48{bottom:891.666667pt;}
.y83{bottom:901.000000pt;}
.ydc{bottom:902.066667pt;}
.yf6{bottom:904.506667pt;}
.y123{bottom:906.106667pt;}
.y11{bottom:907.173333pt;}
.y82{bottom:916.226667pt;}
.yef{bottom:917.560000pt;}
.y47{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.y122{bottom:923.173333pt;}
.yd{bottom:925.293333pt;}
.y81{bottom:931.706667pt;}
.y46{bottom:937.840000pt;}
.yc{bottom:944.506667pt;}
.y80{bottom:947.440000pt;}
.yb{bottom:949.560000pt;}
.y121{bottom:952.773333pt;}
.y45{bottom:953.040000pt;}
.ya{bottom:963.173333pt;}
.y7f{bottom:965.293333pt;}
.y44{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y7e{bottom:980.773333pt;}
.y43{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.yd9{bottom:994.626667pt;}
.y7d{bottom:995.960000pt;}
.y42{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y7c{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y40{bottom:1063.466667pt;}
.h2e{height:3.763021pt;}
.h1a{height:7.526042pt;}
.h9{height:7.713542pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.hf{height:19.283854pt;}
.h27{height:20.266667pt;}
.h1b{height:21.600000pt;}
.h23{height:22.666667pt;}
.hc{height:25.454687pt;}
.h7{height:30.104167pt;}
.h15{height:30.812500pt;}
.h11{height:30.854167pt;}
.h3{height:32.000000pt;}
.hd{height:33.867188pt;}
.h8{height:34.710938pt;}
.h2a{height:36.125000pt;}
.h2b{height:37.025000pt;}
.h4{height:37.630208pt;}
.h10{height:38.567708pt;}
.h17{height:38.828125pt;}
.h16{height:39.562500pt;}
.h18{height:41.393229pt;}
.h19{height:42.424479pt;}
.h14{height:43.958333pt;}
.hb{height:44.654687pt;}
.h6{height:45.156250pt;}
.h13{height:46.218750pt;}
.he{height:46.281250pt;}
.h1e{height:47.200000pt;}
.h1{height:58.351562pt;}
.h28{height:59.466667pt;}
.h24{height:64.033333pt;}
.h1c{height:64.533333pt;}
.h2{height:86.400000pt;}
.h1f{height:91.766667pt;}
.h20{height:92.000000pt;}
.h21{height:92.033333pt;}
.h1d{height:96.033333pt;}
.h2d{height:96.533333pt;}
.h2c{height:97.900000pt;}
.h29{height:98.966667pt;}
.h25{height:101.333333pt;}
.h26{height:107.233333pt;}
.h22{height:109.066667pt;}
.h12{height:378.466667pt;}
.h0{height:1122.666667pt;}
.w36{width:41.600000pt;}
.w39{width:41.633333pt;}
.w41{width:41.900000pt;}
.w3e{width:42.133333pt;}
.w35{width:45.366667pt;}
.w3d{width:46.166667pt;}
.w38{width:46.933333pt;}
.w40{width:48.000000pt;}
.w20{width:49.600000pt;}
.w1d{width:49.900000pt;}
.w27{width:51.200000pt;}
.wd{width:51.233333pt;}
.w21{width:51.500000pt;}
.w1e{width:51.733333pt;}
.w15{width:51.766667pt;}
.w29{width:52.000000pt;}
.w26{width:52.033333pt;}
.w10{width:52.533333pt;}
.w2d{width:52.566667pt;}
.w19{width:53.333333pt;}
.we{width:53.600000pt;}
.w16{width:54.400000pt;}
.w30{width:59.466667pt;}
.w3a{width:59.733333pt;}
.w11{width:62.966667pt;}
.w1a{width:63.233333pt;}
.w8{width:63.466667pt;}
.w12{width:63.733333pt;}
.w4{width:64.266667pt;}
.w1c{width:66.933333pt;}
.w25{width:68.533333pt;}
.w28{width:68.566667pt;}
.w1f{width:68.833333pt;}
.w2c{width:69.066667pt;}
.w2f{width:69.100000pt;}
.wf{width:71.233333pt;}
.wc{width:71.500000pt;}
.w14{width:72.033333pt;}
.w18{width:72.300000pt;}
.w22{width:83.200000pt;}
.w2a{width:83.466667pt;}
.w1b{width:95.233333pt;}
.w3{width:96.000000pt;}
.w33{width:103.500000pt;}
.w37{width:103.766667pt;}
.w3b{width:104.033333pt;}
.w3f{width:104.300000pt;}
.w34{width:105.366667pt;}
.w3c{width:106.166667pt;}
.wb{width:112.300000pt;}
.w17{width:112.833333pt;}
.w13{width:113.086667pt;}
.w2e{width:113.100000pt;}
.w2b{width:113.133333pt;}
.w6{width:220.333333pt;}
.w23{width:285.933333pt;}
.w24{width:286.240000pt;}
.w9{width:290.506667pt;}
.w31{width:297.973333pt;}
.w32{width:298.240000pt;}
.wa{width:301.440000pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.933333pt;}
.x18{left:8.533333pt;}
.x2{left:9.599999pt;}
.x1f{left:11.466667pt;}
.x1b{left:13.373333pt;}
.xf{left:14.400000pt;}
.x30{left:15.733333pt;}
.x1c{left:17.106667pt;}
.x34{left:18.133333pt;}
.x3{left:19.733333pt;}
.x4{left:20.800000pt;}
.x22{left:21.866667pt;}
.x29{left:22.933333pt;}
.x28{left:24.306667pt;}
.x24{left:26.160000pt;}
.x37{left:27.200000pt;}
.x42{left:28.266667pt;}
.x19{left:30.160000pt;}
.x13{left:31.733333pt;}
.x35{left:33.333333pt;}
.x36{left:34.426667pt;}
.x27{left:36.040000pt;}
.xd{left:37.066667pt;}
.x33{left:39.200000pt;}
.x4e{left:40.300000pt;}
.x38{left:41.600000pt;}
.x26{left:44.560000pt;}
.x4d{left:52.033333pt;}
.x25{left:56.293333pt;}
.x1{left:72.033322pt;}
.xe{left:73.900000pt;}
.x3b{left:79.226667pt;}
.x46{left:85.093333pt;}
.x16{left:86.706667pt;}
.x14{left:89.626667pt;}
.x44{left:93.633333pt;}
.x11{left:96.033322pt;}
.x12{left:120.033322pt;}
.x43{left:132.300000pt;}
.x9{left:136.559988pt;}
.x39{left:156.333333pt;}
.x2a{left:168.333333pt;}
.xb{left:214.740000pt;}
.x47{left:236.333333pt;}
.x1a{left:249.400000pt;}
.x3c{left:269.173333pt;}
.x2b{left:281.173333pt;}
.x1d{left:321.440000pt;}
.x3d{left:338.240000pt;}
.x48{left:342.506667pt;}
.x2c{left:348.640000pt;}
.x1e{left:373.200000pt;}
.x49{left:388.666667pt;}
.x3e{left:391.066667pt;}
.x6{left:396.666655pt;}
.x2d{left:399.066667pt;}
.x15{left:427.600000pt;}
.x45{left:430.800000pt;}
.x3a{left:442.800000pt;}
.x2e{left:451.333333pt;}
.xc{left:501.773333pt;}
.x10{left:515.093322pt;}
.x4a{left:535.106667pt;}
.x20{left:540.693333pt;}
.x8{left:547.893322pt;}
.x3f{left:555.906667pt;}
.x2f{left:564.440000pt;}
.x7{left:576.173322pt;}
.x21{left:612.733333pt;}
.x5{left:619.666655pt;}
.x40{left:625.000000pt;}
.x31{left:634.066667pt;}
.x4b{left:639.666667pt;}
.x23{left:666.066667pt;}
.x41{left:677.533333pt;}
.x32{left:684.466667pt;}
.x4c{left:687.400000pt;}
.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; }
  