
    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_a071310e2e2d426b18471309.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9ef91abb3ac12c2e04371886.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_670569a505deb55a7ab29bcb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_ab85799307cbd2e921a21f63.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7691728578499b4d87242473.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_58985701b4c755d552b4c977.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_d4be177cef31366f3d23379f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_210e7643ae2cb908d4264f91.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.lsa{letter-spacing:-1.320000px;}
.ls6{letter-spacing:-1.200000px;}
.ls10{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.588000px;}
.ls13{letter-spacing:-0.582000px;}
.ls7{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.420000px;}
.lsd{letter-spacing:-0.120000px;}
.ls14{letter-spacing:-0.024000px;}
.ls12{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.120000px;}
.lse{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls9{letter-spacing:1.200000px;}
.lsb{letter-spacing:4.200000px;}
.ls15{letter-spacing:21.720000px;}
.ls2{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;}
}
.ws4{word-spacing:-60.000000px;}
.ws8{word-spacing:-16.200000px;}
.wsc{word-spacing:-15.540000px;}
.wsd{word-spacing:-15.420000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.wsb{word-spacing:-14.880000px;}
.ws3{word-spacing:-14.460000px;}
.ws13{word-spacing:-14.100000px;}
.wse{word-spacing:-13.920000px;}
.ws2{word-spacing:-13.800000px;}
.ws9{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.ws14{word-spacing:-13.476000px;}
.ws12{word-spacing:-12.918000px;}
.ws10{word-spacing:-12.912000px;}
.ws7{word-spacing:-12.900000px;}
.ws5{word-spacing:-9.900000px;}
.ws6{word-spacing:-9.000000px;}
.wsa{word-spacing:0.000000px;}
._40{margin-left:-8.640000px;}
._21{margin-left:-2.910000px;}
._0{margin-left:-1.740000px;}
._1{width:1.020000px;}
._2{width:2.370000px;}
._10{width:4.080000px;}
._3{width:5.760000px;}
._9{width:7.200000px;}
._f{width:8.460000px;}
._e{width:9.900000px;}
._d{width:11.160000px;}
._c{width:12.300000px;}
._11{width:13.380000px;}
._12{width:16.440000px;}
._19{width:17.700000px;}
._8{width:19.380000px;}
._18{width:20.700000px;}
._13{width:21.840000px;}
._17{width:23.400000px;}
._16{width:24.630000px;}
._33{width:26.400000px;}
._36{width:27.450000px;}
._7{width:28.470000px;}
._6{width:29.760000px;}
._39{width:30.780000px;}
._15{width:32.130000px;}
._20{width:33.360000px;}
._28{width:34.500000px;}
._1c{width:35.640000px;}
._1a{width:37.140000px;}
._1b{width:38.400000px;}
._2f{width:39.570000px;}
._2e{width:40.800000px;}
._1e{width:42.660000px;}
._1d{width:43.740000px;}
._30{width:45.540000px;}
._5{width:46.800000px;}
._4{width:48.180000px;}
._22{width:49.710000px;}
._34{width:51.690000px;}
._29{width:53.160000px;}
._2a{width:55.200000px;}
._35{width:56.490000px;}
._27{width:58.140000px;}
._1f{width:59.610000px;}
._b{width:62.340000px;}
._a{width:63.720000px;}
._2b{width:65.580000px;}
._2d{width:67.440000px;}
._2c{width:68.640000px;}
._31{width:70.800000px;}
._32{width:72.180000px;}
._3b{width:76.380000px;}
._3d{width:97.320000px;}
._26{width:105.240000px;}
._25{width:106.770000px;}
._3c{width:109.200000px;}
._3a{width:113.022000px;}
._37{width:115.500000px;}
._3e{width:117.600000px;}
._38{width:129.900000px;}
._3f{width:130.950000px;}
._24{width:195.360000px;}
._23{width:196.800000px;}
._14{width:201.000000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:39.600000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:5.400000px;}
.yeb{bottom:6.000000px;}
.y97{bottom:6.300000px;}
.y99{bottom:6.315000px;}
.y128{bottom:6.345000px;}
.yb5{bottom:6.600000px;}
.ye4{bottom:12.000000px;}
.yf7{bottom:12.300000px;}
.yf0{bottom:12.330000px;}
.y107{bottom:17.385000px;}
.y101{bottom:17.400000px;}
.y105{bottom:17.700000px;}
.y9f{bottom:19.800000px;}
.ya5{bottom:19.815000px;}
.y9d{bottom:19.830000px;}
.ydf{bottom:23.400000px;}
.yea{bottom:23.685000px;}
.yee{bottom:23.700000px;}
.y115{bottom:25.800000px;}
.y125{bottom:25.815000px;}
.y96{bottom:26.085000px;}
.yb8{bottom:26.100000px;}
.yac{bottom:26.115000px;}
.yba{bottom:26.130000px;}
.yae{bottom:26.145000px;}
.y119{bottom:26.385000px;}
.yb4{bottom:26.400000px;}
.ybd{bottom:26.415000px;}
.yf6{bottom:30.000000px;}
.ye3{bottom:30.045000px;}
.yca{bottom:34.185000px;}
.y4{bottom:35.737500px;}
.yde{bottom:41.100000px;}
.ye9{bottom:41.685000px;}
.yed{bottom:41.700000px;}
.ycc{bottom:42.885000px;}
.y95{bottom:45.885000px;}
.yc8{bottom:45.900000px;}
.yc1{bottom:45.930000px;}
.y118{bottom:46.185000px;}
.ybc{bottom:46.215000px;}
.ye6{bottom:47.730000px;}
.ye2{bottom:47.745000px;}
.yf5{bottom:48.000000px;}
.yef{bottom:48.030000px;}
.y3{bottom:53.137500px;}
.ya2{bottom:53.730000px;}
.ydd{bottom:59.100000px;}
.ye8{bottom:59.385000px;}
.yf3{bottom:59.400000px;}
.yc7{bottom:65.715000px;}
.ydc{bottom:76.800000px;}
.yf2{bottom:77.400000px;}
.y123{bottom:80.137500px;}
.yfc{bottom:80.437500px;}
.y35{bottom:81.037500px;}
.y14f{bottom:81.637500px;}
.y92{bottom:83.437500px;}
.yc6{bottom:85.515000px;}
.yc2{bottom:86.137500px;}
.y78{bottom:87.037500px;}
.ydb{bottom:94.800000px;}
.y44{bottom:97.237500px;}
.y122{bottom:100.237500px;}
.yfb{bottom:100.537500px;}
.y34{bottom:100.837500px;}
.y14e{bottom:101.737500px;}
.y91{bottom:103.237500px;}
.yc5{bottom:105.300000px;}
.y77{bottom:106.837500px;}
.y43{bottom:117.637500px;}
.yc3{bottom:120.037500px;}
.yfa{bottom:120.337500px;}
.y33{bottom:120.637500px;}
.y14d{bottom:121.537500px;}
.y9b{bottom:121.830000px;}
.y90{bottom:123.037500px;}
.yc4{bottom:125.385000px;}
.y76{bottom:126.637500px;}
.y42{bottom:137.437500px;}
.y121{bottom:139.837500px;}
.yf9{bottom:140.137500px;}
.y32{bottom:140.437500px;}
.y14c{bottom:141.337500px;}
.y8f{bottom:143.437500px;}
.y75{bottom:146.437500px;}
.ya8{bottom:148.830000px;}
.yb9{bottom:154.245000px;}
.y41{bottom:158.130000px;}
.y120{bottom:159.630000px;}
.yf8{bottom:159.930000px;}
.y31{bottom:160.545000px;}
.y14b{bottom:161.130000px;}
.yb1{bottom:161.745000px;}
.y8e{bottom:163.245000px;}
.y74{bottom:166.245000px;}
.ya7{bottom:168.645000px;}
.yf4{bottom:174.075000px;}
.y40{bottom:178.275000px;}
.y11f{bottom:179.475000px;}
.y30{bottom:180.375000px;}
.y14a{bottom:180.975000px;}
.yb0{bottom:181.545000px;}
.y8d{bottom:183.975000px;}
.y73{bottom:186.375000px;}
.y3f{bottom:198.975000px;}
.y11e{bottom:199.275000px;}
.y2f{bottom:200.175000px;}
.y149{bottom:200.775000px;}
.y8c{bottom:203.775000px;}
.y72{bottom:206.175000px;}
.yc0{bottom:214.275000px;}
.y3e{bottom:219.075000px;}
.y2e{bottom:219.975000px;}
.y148{bottom:220.275000px;}
.y8b{bottom:223.875000px;}
.y71{bottom:225.975000px;}
.yf1{bottom:234.675000px;}
.y11d{bottom:239.175000px;}
.y3d{bottom:239.475000px;}
.y2d{bottom:239.775000px;}
.y147{bottom:240.075000px;}
.y8a{bottom:244.575000px;}
.y70{bottom:245.775000px;}
.y11c{bottom:253.275000px;}
.ybf{bottom:254.775000px;}
.y3c{bottom:259.275000px;}
.y2c{bottom:259.575000px;}
.y146{bottom:259.875000px;}
.y89{bottom:264.375000px;}
.y6f{bottom:265.575000px;}
.y3b{bottom:279.075000px;}
.y2b{bottom:279.375000px;}
.y145{bottom:280.275000px;}
.y88{bottom:284.475000px;}
.y7d{bottom:285.075000px;}
.y6e{bottom:285.375000px;}
.ybe{bottom:295.275000px;}
.y2a{bottom:299.175000px;}
.y144{bottom:300.075000px;}
.y87{bottom:304.875000px;}
.y6d{bottom:305.175000px;}
.y11b{bottom:313.575000px;}
.y29{bottom:319.275000px;}
.y143{bottom:319.875000px;}
.y86{bottom:324.675000px;}
.y6c{bottom:324.975000px;}
.ybb{bottom:329.205000px;}
.y28{bottom:339.120000px;}
.y142{bottom:339.705000px;}
.y85{bottom:344.505000px;}
.y6b{bottom:344.820000px;}
.y11a{bottom:354.120000px;}
.y27{bottom:358.920000px;}
.y141{bottom:359.505000px;}
.y6a{bottom:364.920000px;}
.y26{bottom:378.705000px;}
.y140{bottom:379.320000px;}
.y7c{bottom:384.405000px;}
.y69{bottom:384.705000px;}
.yec{bottom:385.305000px;}
.ye7{bottom:385.320000px;}
.yaf{bottom:389.505000px;}
.y117{bottom:394.320000px;}
.y25{bottom:398.205000px;}
.y3a{bottom:398.505000px;}
.y13f{bottom:399.120000px;}
.y7b{bottom:404.205000px;}
.y68{bottom:404.505000px;}
.y24{bottom:418.005000px;}
.y39{bottom:418.320000px;}
.y13e{bottom:418.920000px;}
.y67{bottom:424.320000px;}
.yb7{bottom:430.005000px;}
.y23{bottom:438.120000px;}
.y13d{bottom:439.005000px;}
.y66{bottom:444.105000px;}
.y116{bottom:454.605000px;}
.ye1{bottom:457.605000px;}
.ye5{bottom:457.620000px;}
.y22{bottom:457.905000px;}
.y13c{bottom:458.820000px;}
.y65{bottom:463.905000px;}
.yb6{bottom:470.505000px;}
.y21{bottom:477.720000px;}
.y13b{bottom:478.620000px;}
.y64{bottom:483.720000px;}
.y114{bottom:495.150000px;}
.y20{bottom:497.850000px;}
.y13a{bottom:498.450000px;}
.y63{bottom:503.550000px;}
.yb3{bottom:510.750000px;}
.y1f{bottom:517.650000px;}
.yda{bottom:518.250000px;}
.y62{bottom:523.650000px;}
.y1e{bottom:537.450000px;}
.y139{bottom:538.050000px;}
.y113{bottom:541.650000px;}
.y61{bottom:543.450000px;}
.yb2{bottom:551.250000px;}
.y1d{bottom:557.250000px;}
.y138{bottom:557.850000px;}
.y112{bottom:561.450000px;}
.y84{bottom:562.950000px;}
.y60{bottom:563.250000px;}
.y1c{bottom:577.050000px;}
.y137{bottom:577.650000px;}
.y111{bottom:581.550000px;}
.y83{bottom:582.750000px;}
.y5f{bottom:583.050000px;}
.ya6{bottom:585.450000px;}
.y38{bottom:596.550000px;}
.y1b{bottom:596.850000px;}
.y136{bottom:597.750000px;}
.y110{bottom:601.350000px;}
.y5e{bottom:602.850000px;}
.y37{bottom:616.350000px;}
.y1a{bottom:616.650000px;}
.y135{bottom:617.550000px;}
.yad{bottom:619.350000px;}
.y10f{bottom:621.150000px;}
.y5d{bottom:622.650000px;}
.yd9{bottom:632.250000px;}
.y36{bottom:636.150000px;}
.y19{bottom:636.450000px;}
.y134{bottom:637.050000px;}
.y10e{bottom:640.950000px;}
.y5c{bottom:642.495000px;}
.yd8{bottom:652.080000px;}
.y18{bottom:656.595000px;}
.y133{bottom:656.880000px;}
.yab{bottom:659.880000px;}
.y10d{bottom:661.095000px;}
.y5b{bottom:662.295000px;}
.yd7{bottom:671.880000px;}
.y17{bottom:676.395000px;}
.y132{bottom:676.980000px;}
.y10c{bottom:680.880000px;}
.y5a{bottom:682.095000px;}
.yd6{bottom:691.995000px;}
.y16{bottom:696.195000px;}
.y131{bottom:696.780000px;}
.yaa{bottom:700.380000px;}
.y10b{bottom:700.695000px;}
.y59{bottom:701.880000px;}
.y7a{bottom:702.195000px;}
.yd5{bottom:711.780000px;}
.y15{bottom:715.980000px;}
.y130{bottom:716.595000px;}
.y10a{bottom:720.495000px;}
.y58{bottom:721.995000px;}
.yd4{bottom:731.580000px;}
.ya9{bottom:734.280000px;}
.y14{bottom:735.780000px;}
.y12f{bottom:736.380000px;}
.y109{bottom:740.295000px;}
.y57{bottom:741.795000px;}
.yd3{bottom:751.380000px;}
.y13{bottom:755.595000px;}
.y12e{bottom:756.195000px;}
.y108{bottom:760.095000px;}
.y56{bottom:761.595000px;}
.ya4{bottom:768.480000px;}
.ya1{bottom:768.495000px;}
.yd2{bottom:771.195000px;}
.y106{bottom:774.495000px;}
.y12{bottom:775.380000px;}
.y12d{bottom:776.295000px;}
.y55{bottom:781.395000px;}
.yd1{bottom:791.295000px;}
.y11{bottom:795.195000px;}
.y12c{bottom:796.080000px;}
.y54{bottom:801.225000px;}
.ya3{bottom:802.425000px;}
.y104{bottom:806.025000px;}
.yd0{bottom:811.125000px;}
.y10{bottom:815.025000px;}
.y12b{bottom:815.925000px;}
.y53{bottom:821.025000px;}
.y12a{bottom:830.025000px;}
.ycf{bottom:830.925000px;}
.yf{bottom:835.125000px;}
.y9a{bottom:836.625000px;}
.y103{bottom:837.825000px;}
.y82{bottom:840.525000px;}
.y52{bottom:840.825000px;}
.yce{bottom:850.725000px;}
.ye{bottom:854.925000px;}
.y81{bottom:860.625000px;}
.y51{bottom:860.925000px;}
.y102{bottom:869.625000px;}
.ya0{bottom:870.525000px;}
.yd{bottom:874.725000px;}
.y50{bottom:880.725000px;}
.ycd{bottom:890.325000px;}
.yc{bottom:898.425000px;}
.y4f{bottom:900.525000px;}
.y100{bottom:901.425000px;}
.y9e{bottom:904.725000px;}
.y129{bottom:911.025000px;}
.yb{bottom:916.425000px;}
.y4e{bottom:920.325000px;}
.yff{bottom:932.925000px;}
.ya{bottom:934.125000px;}
.y9c{bottom:938.625000px;}
.y4d{bottom:940.125000px;}
.y9{bottom:947.625000px;}
.y127{bottom:951.525000px;}
.y4c{bottom:959.955000px;}
.y8{bottom:967.755000px;}
.y98{bottom:972.855000px;}
.y94{bottom:972.870000px;}
.yfe{bottom:979.455000px;}
.y4b{bottom:979.755000px;}
.y126{bottom:991.770000px;}
.y7{bottom:994.455000px;}
.yfd{bottom:999.255000px;}
.y4a{bottom:999.570000px;}
.y80{bottom:1019.370000px;}
.y49{bottom:1019.670000px;}
.ycb{bottom:1029.870000px;}
.y124{bottom:1032.255000px;}
.y6{bottom:1038.255000px;}
.y7f{bottom:1039.170000px;}
.y48{bottom:1039.455000px;}
.y93{bottom:1058.955000px;}
.y47{bottom:1059.255000px;}
.yc9{bottom:1064.070000px;}
.y7e{bottom:1078.755000px;}
.y46{bottom:1079.070000px;}
.y5{bottom:1081.755000px;}
.y45{bottom:1098.570000px;}
.y79{bottom:1098.870000px;}
.y2{bottom:1125.000000px;}
.y1{bottom:1141.800000px;}
.h26{height:30.900000px;}
.h28{height:30.922500px;}
.h27{height:31.200000px;}
.hd{height:33.300000px;}
.hc{height:33.337500px;}
.h5{height:35.332031px;}
.h2a{height:39.585000px;}
.h10{height:39.600000px;}
.h11{height:39.637500px;}
.h13{height:39.900000px;}
.h25{height:39.937500px;}
.h8{height:41.894531px;}
.h19{height:47.700000px;}
.h1f{height:52.998047px;}
.h1d{height:54.421875px;}
.h1a{height:56.385000px;}
.h6{height:58.857422px;}
.h2{height:58.886719px;}
.h9{height:59.385000px;}
.ha{height:59.400000px;}
.h16{height:59.422500px;}
.h29{height:59.685000px;}
.h15{height:59.700000px;}
.h1e{height:59.737500px;}
.h24{height:60.000000px;}
.h22{height:60.037500px;}
.h1{height:60.468750px;}
.h4{height:61.509375px;}
.h7{height:61.670545px;}
.h17{height:67.200000px;}
.he{height:67.222500px;}
.h1b{height:67.237500px;}
.h20{height:71.385000px;}
.h21{height:71.400000px;}
.h23{height:89.400000px;}
.h1c{height:107.100000px;}
.h3{height:133.031250px;}
.hb{height:135.337500px;}
.h18{height:138.900000px;}
.hf{height:182.145000px;}
.h12{height:195.030000px;}
.h14{height:234.660000px;}
.h0{height:1188.000000px;}
.wd{width:46.537500px;}
.wc{width:53.400000px;}
.wb{width:58.537500px;}
.wa{width:59.400000px;}
.w9{width:59.437500px;}
.w8{width:85.500000px;}
.w3{width:90.000000px;}
.w6{width:90.037500px;}
.w2{width:92.137500px;}
.w5{width:93.300000px;}
.w1{width:93.337500px;}
.w4{width:102.037500px;}
.w7{width:102.337500px;}
.wf{width:106.837500px;}
.w12{width:107.137500px;}
.w14{width:120.637500px;}
.w15{width:120.937500px;}
.w10{width:123.337500px;}
.w13{width:123.637500px;}
.w11{width:125.137500px;}
.we{width:142.537500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:8.100000px;}
.x2b{left:9.300000px;}
.x23{left:61.837500px;}
.x1{left:70.237500px;}
.x33{left:72.037500px;}
.x1d{left:76.537500px;}
.x3{left:85.837500px;}
.x14{left:97.237500px;}
.x21{left:106.537500px;}
.x2{left:111.637500px;}
.x13{left:124.237500px;}
.x24{left:147.937500px;}
.x11{left:152.145000px;}
.x34{left:165.645000px;}
.x1e{left:170.745000px;}
.x37{left:193.275000px;}
.x35{left:198.975000px;}
.xa{left:200.175000px;}
.x25{left:207.975000px;}
.x22{left:211.275000px;}
.x1f{left:263.475000px;}
.x26{left:267.975000px;}
.x8{left:276.375000px;}
.x9{left:292.875000px;}
.x4{left:318.720000px;}
.x36{left:320.220000px;}
.x7{left:323.220000px;}
.x27{left:327.120000px;}
.x20{left:354.420000px;}
.x6{left:361.905000px;}
.x28{left:381.120000px;}
.x5{left:459.150000px;}
.xb{left:469.950000px;}
.x16{left:471.450000px;}
.x18{left:476.250000px;}
.x30{left:480.450000px;}
.x2e{left:486.150000px;}
.x10{left:496.950000px;}
.x29{left:498.450000px;}
.x2a{left:513.750000px;}
.x15{left:520.650000px;}
.xe{left:523.950000px;}
.x12{left:544.080000px;}
.xf{left:545.880000px;}
.xc{left:550.095000px;}
.x2f{left:556.995000px;}
.x1a{left:570.495000px;}
.x17{left:603.495000px;}
.x31{left:606.195000px;}
.x2c{left:615.195000px;}
.xd{left:659.025000px;}
.x1b{left:663.225000px;}
.x32{left:713.925000px;}
.x2d{left:722.625000px;}
.x1c{left:754.125000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.lsa{letter-spacing:-1.173333pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.522667pt;}
.ls13{letter-spacing:-0.517333pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.373333pt;}
.lsd{letter-spacing:-0.106667pt;}
.ls14{letter-spacing:-0.021333pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls9{letter-spacing:1.066667pt;}
.lsb{letter-spacing:3.733333pt;}
.ls15{letter-spacing:19.306667pt;}
.ls2{letter-spacing:56.640000pt;}
.ws4{word-spacing:-53.333333pt;}
.ws8{word-spacing:-14.400000pt;}
.wsc{word-spacing:-13.813333pt;}
.wsd{word-spacing:-13.706667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.wsb{word-spacing:-13.226667pt;}
.ws3{word-spacing:-12.853333pt;}
.ws13{word-spacing:-12.533333pt;}
.wse{word-spacing:-12.373333pt;}
.ws2{word-spacing:-12.266667pt;}
.ws9{word-spacing:-12.160000pt;}
.wsf{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.ws14{word-spacing:-11.978667pt;}
.ws12{word-spacing:-11.482667pt;}
.ws10{word-spacing:-11.477333pt;}
.ws7{word-spacing:-11.466667pt;}
.ws5{word-spacing:-8.800000pt;}
.ws6{word-spacing:-8.000000pt;}
.wsa{word-spacing:0.000000pt;}
._40{margin-left:-7.680000pt;}
._21{margin-left:-2.586667pt;}
._0{margin-left:-1.546667pt;}
._1{width:0.906667pt;}
._2{width:2.106667pt;}
._10{width:3.626667pt;}
._3{width:5.120000pt;}
._9{width:6.400000pt;}
._f{width:7.520000pt;}
._e{width:8.800000pt;}
._d{width:9.920000pt;}
._c{width:10.933333pt;}
._11{width:11.893333pt;}
._12{width:14.613333pt;}
._19{width:15.733333pt;}
._8{width:17.226667pt;}
._18{width:18.400000pt;}
._13{width:19.413333pt;}
._17{width:20.800000pt;}
._16{width:21.893333pt;}
._33{width:23.466667pt;}
._36{width:24.400000pt;}
._7{width:25.306667pt;}
._6{width:26.453333pt;}
._39{width:27.360000pt;}
._15{width:28.560000pt;}
._20{width:29.653333pt;}
._28{width:30.666667pt;}
._1c{width:31.680000pt;}
._1a{width:33.013333pt;}
._1b{width:34.133333pt;}
._2f{width:35.173333pt;}
._2e{width:36.266667pt;}
._1e{width:37.920000pt;}
._1d{width:38.880000pt;}
._30{width:40.480000pt;}
._5{width:41.600000pt;}
._4{width:42.826667pt;}
._22{width:44.186667pt;}
._34{width:45.946667pt;}
._29{width:47.253333pt;}
._2a{width:49.066667pt;}
._35{width:50.213333pt;}
._27{width:51.680000pt;}
._1f{width:52.986667pt;}
._b{width:55.413333pt;}
._a{width:56.640000pt;}
._2b{width:58.293333pt;}
._2d{width:59.946667pt;}
._2c{width:61.013333pt;}
._31{width:62.933333pt;}
._32{width:64.160000pt;}
._3b{width:67.893333pt;}
._3d{width:86.506667pt;}
._26{width:93.546667pt;}
._25{width:94.906667pt;}
._3c{width:97.066667pt;}
._3a{width:100.464000pt;}
._37{width:102.666667pt;}
._3e{width:104.533333pt;}
._38{width:115.466667pt;}
._3f{width:116.400000pt;}
._24{width:173.653333pt;}
._23{width:174.933333pt;}
._14{width:178.666667pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:35.200000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:4.800000pt;}
.yeb{bottom:5.333333pt;}
.y97{bottom:5.600000pt;}
.y99{bottom:5.613333pt;}
.y128{bottom:5.640000pt;}
.yb5{bottom:5.866667pt;}
.ye4{bottom:10.666667pt;}
.yf7{bottom:10.933333pt;}
.yf0{bottom:10.960000pt;}
.y107{bottom:15.453333pt;}
.y101{bottom:15.466667pt;}
.y105{bottom:15.733333pt;}
.y9f{bottom:17.600000pt;}
.ya5{bottom:17.613333pt;}
.y9d{bottom:17.626667pt;}
.ydf{bottom:20.800000pt;}
.yea{bottom:21.053333pt;}
.yee{bottom:21.066667pt;}
.y115{bottom:22.933333pt;}
.y125{bottom:22.946667pt;}
.y96{bottom:23.186667pt;}
.yb8{bottom:23.200000pt;}
.yac{bottom:23.213333pt;}
.yba{bottom:23.226667pt;}
.yae{bottom:23.240000pt;}
.y119{bottom:23.453333pt;}
.yb4{bottom:23.466667pt;}
.ybd{bottom:23.480000pt;}
.yf6{bottom:26.666667pt;}
.ye3{bottom:26.706667pt;}
.yca{bottom:30.386667pt;}
.y4{bottom:31.766667pt;}
.yde{bottom:36.533333pt;}
.ye9{bottom:37.053333pt;}
.yed{bottom:37.066667pt;}
.ycc{bottom:38.120000pt;}
.y95{bottom:40.786667pt;}
.yc8{bottom:40.800000pt;}
.yc1{bottom:40.826667pt;}
.y118{bottom:41.053333pt;}
.ybc{bottom:41.080000pt;}
.ye6{bottom:42.426667pt;}
.ye2{bottom:42.440000pt;}
.yf5{bottom:42.666667pt;}
.yef{bottom:42.693333pt;}
.y3{bottom:47.233333pt;}
.ya2{bottom:47.760000pt;}
.ydd{bottom:52.533333pt;}
.ye8{bottom:52.786667pt;}
.yf3{bottom:52.800000pt;}
.yc7{bottom:58.413333pt;}
.ydc{bottom:68.266667pt;}
.yf2{bottom:68.800000pt;}
.y123{bottom:71.233333pt;}
.yfc{bottom:71.500000pt;}
.y35{bottom:72.033333pt;}
.y14f{bottom:72.566667pt;}
.y92{bottom:74.166667pt;}
.yc6{bottom:76.013333pt;}
.yc2{bottom:76.566667pt;}
.y78{bottom:77.366667pt;}
.ydb{bottom:84.266667pt;}
.y44{bottom:86.433333pt;}
.y122{bottom:89.100000pt;}
.yfb{bottom:89.366667pt;}
.y34{bottom:89.633333pt;}
.y14e{bottom:90.433333pt;}
.y91{bottom:91.766667pt;}
.yc5{bottom:93.600000pt;}
.y77{bottom:94.966667pt;}
.y43{bottom:104.566667pt;}
.yc3{bottom:106.700000pt;}
.yfa{bottom:106.966667pt;}
.y33{bottom:107.233333pt;}
.y14d{bottom:108.033333pt;}
.y9b{bottom:108.293333pt;}
.y90{bottom:109.366667pt;}
.yc4{bottom:111.453333pt;}
.y76{bottom:112.566667pt;}
.y42{bottom:122.166667pt;}
.y121{bottom:124.300000pt;}
.yf9{bottom:124.566667pt;}
.y32{bottom:124.833333pt;}
.y14c{bottom:125.633333pt;}
.y8f{bottom:127.500000pt;}
.y75{bottom:130.166667pt;}
.ya8{bottom:132.293333pt;}
.yb9{bottom:137.106667pt;}
.y41{bottom:140.560000pt;}
.y120{bottom:141.893333pt;}
.yf8{bottom:142.160000pt;}
.y31{bottom:142.706667pt;}
.y14b{bottom:143.226667pt;}
.yb1{bottom:143.773333pt;}
.y8e{bottom:145.106667pt;}
.y74{bottom:147.773333pt;}
.ya7{bottom:149.906667pt;}
.yf4{bottom:154.733333pt;}
.y40{bottom:158.466667pt;}
.y11f{bottom:159.533333pt;}
.y30{bottom:160.333333pt;}
.y14a{bottom:160.866667pt;}
.yb0{bottom:161.373333pt;}
.y8d{bottom:163.533333pt;}
.y73{bottom:165.666667pt;}
.y3f{bottom:176.866667pt;}
.y11e{bottom:177.133333pt;}
.y2f{bottom:177.933333pt;}
.y149{bottom:178.466667pt;}
.y8c{bottom:181.133333pt;}
.y72{bottom:183.266667pt;}
.yc0{bottom:190.466667pt;}
.y3e{bottom:194.733333pt;}
.y2e{bottom:195.533333pt;}
.y148{bottom:195.800000pt;}
.y8b{bottom:199.000000pt;}
.y71{bottom:200.866667pt;}
.yf1{bottom:208.600000pt;}
.y11d{bottom:212.600000pt;}
.y3d{bottom:212.866667pt;}
.y2d{bottom:213.133333pt;}
.y147{bottom:213.400000pt;}
.y8a{bottom:217.400000pt;}
.y70{bottom:218.466667pt;}
.y11c{bottom:225.133333pt;}
.ybf{bottom:226.466667pt;}
.y3c{bottom:230.466667pt;}
.y2c{bottom:230.733333pt;}
.y146{bottom:231.000000pt;}
.y89{bottom:235.000000pt;}
.y6f{bottom:236.066667pt;}
.y3b{bottom:248.066667pt;}
.y2b{bottom:248.333333pt;}
.y145{bottom:249.133333pt;}
.y88{bottom:252.866667pt;}
.y7d{bottom:253.400000pt;}
.y6e{bottom:253.666667pt;}
.ybe{bottom:262.466667pt;}
.y2a{bottom:265.933333pt;}
.y144{bottom:266.733333pt;}
.y87{bottom:271.000000pt;}
.y6d{bottom:271.266667pt;}
.y11b{bottom:278.733333pt;}
.y29{bottom:283.800000pt;}
.y143{bottom:284.333333pt;}
.y86{bottom:288.600000pt;}
.y6c{bottom:288.866667pt;}
.ybb{bottom:292.626667pt;}
.y28{bottom:301.440000pt;}
.y142{bottom:301.960000pt;}
.y85{bottom:306.226667pt;}
.y6b{bottom:306.506667pt;}
.y11a{bottom:314.773333pt;}
.y27{bottom:319.040000pt;}
.y141{bottom:319.560000pt;}
.y6a{bottom:324.373333pt;}
.y26{bottom:336.626667pt;}
.y140{bottom:337.173333pt;}
.y7c{bottom:341.693333pt;}
.y69{bottom:341.960000pt;}
.yec{bottom:342.493333pt;}
.ye7{bottom:342.506667pt;}
.yaf{bottom:346.226667pt;}
.y117{bottom:350.506667pt;}
.y25{bottom:353.960000pt;}
.y3a{bottom:354.226667pt;}
.y13f{bottom:354.773333pt;}
.y7b{bottom:359.293333pt;}
.y68{bottom:359.560000pt;}
.y24{bottom:371.560000pt;}
.y39{bottom:371.840000pt;}
.y13e{bottom:372.373333pt;}
.y67{bottom:377.173333pt;}
.yb7{bottom:382.226667pt;}
.y23{bottom:389.440000pt;}
.y13d{bottom:390.226667pt;}
.y66{bottom:394.760000pt;}
.y116{bottom:404.093333pt;}
.ye1{bottom:406.760000pt;}
.ye5{bottom:406.773333pt;}
.y22{bottom:407.026667pt;}
.y13c{bottom:407.840000pt;}
.y65{bottom:412.360000pt;}
.yb6{bottom:418.226667pt;}
.y21{bottom:424.640000pt;}
.y13b{bottom:425.440000pt;}
.y64{bottom:429.973333pt;}
.y114{bottom:440.133333pt;}
.y20{bottom:442.533333pt;}
.y13a{bottom:443.066667pt;}
.y63{bottom:447.600000pt;}
.yb3{bottom:454.000000pt;}
.y1f{bottom:460.133333pt;}
.yda{bottom:460.666667pt;}
.y62{bottom:465.466667pt;}
.y1e{bottom:477.733333pt;}
.y139{bottom:478.266667pt;}
.y113{bottom:481.466667pt;}
.y61{bottom:483.066667pt;}
.yb2{bottom:490.000000pt;}
.y1d{bottom:495.333333pt;}
.y138{bottom:495.866667pt;}
.y112{bottom:499.066667pt;}
.y84{bottom:500.400000pt;}
.y60{bottom:500.666667pt;}
.y1c{bottom:512.933333pt;}
.y137{bottom:513.466667pt;}
.y111{bottom:516.933333pt;}
.y83{bottom:518.000000pt;}
.y5f{bottom:518.266667pt;}
.ya6{bottom:520.400000pt;}
.y38{bottom:530.266667pt;}
.y1b{bottom:530.533333pt;}
.y136{bottom:531.333333pt;}
.y110{bottom:534.533333pt;}
.y5e{bottom:535.866667pt;}
.y37{bottom:547.866667pt;}
.y1a{bottom:548.133333pt;}
.y135{bottom:548.933333pt;}
.yad{bottom:550.533333pt;}
.y10f{bottom:552.133333pt;}
.y5d{bottom:553.466667pt;}
.yd9{bottom:562.000000pt;}
.y36{bottom:565.466667pt;}
.y19{bottom:565.733333pt;}
.y134{bottom:566.266667pt;}
.y10e{bottom:569.733333pt;}
.y5c{bottom:571.106667pt;}
.yd8{bottom:579.626667pt;}
.y18{bottom:583.640000pt;}
.y133{bottom:583.893333pt;}
.yab{bottom:586.560000pt;}
.y10d{bottom:587.640000pt;}
.y5b{bottom:588.706667pt;}
.yd7{bottom:597.226667pt;}
.y17{bottom:601.240000pt;}
.y132{bottom:601.760000pt;}
.y10c{bottom:605.226667pt;}
.y5a{bottom:606.306667pt;}
.yd6{bottom:615.106667pt;}
.y16{bottom:618.840000pt;}
.y131{bottom:619.360000pt;}
.yaa{bottom:622.560000pt;}
.y10b{bottom:622.840000pt;}
.y59{bottom:623.893333pt;}
.y7a{bottom:624.173333pt;}
.yd5{bottom:632.693333pt;}
.y15{bottom:636.426667pt;}
.y130{bottom:636.973333pt;}
.y10a{bottom:640.440000pt;}
.y58{bottom:641.773333pt;}
.yd4{bottom:650.293333pt;}
.ya9{bottom:652.693333pt;}
.y14{bottom:654.026667pt;}
.y12f{bottom:654.560000pt;}
.y109{bottom:658.040000pt;}
.y57{bottom:659.373333pt;}
.yd3{bottom:667.893333pt;}
.y13{bottom:671.640000pt;}
.y12e{bottom:672.173333pt;}
.y108{bottom:675.640000pt;}
.y56{bottom:676.973333pt;}
.ya4{bottom:683.093333pt;}
.ya1{bottom:683.106667pt;}
.yd2{bottom:685.506667pt;}
.y106{bottom:688.440000pt;}
.y12{bottom:689.226667pt;}
.y12d{bottom:690.040000pt;}
.y55{bottom:694.573333pt;}
.yd1{bottom:703.373333pt;}
.y11{bottom:706.840000pt;}
.y12c{bottom:707.626667pt;}
.y54{bottom:712.200000pt;}
.ya3{bottom:713.266667pt;}
.y104{bottom:716.466667pt;}
.yd0{bottom:721.000000pt;}
.y10{bottom:724.466667pt;}
.y12b{bottom:725.266667pt;}
.y53{bottom:729.800000pt;}
.y12a{bottom:737.800000pt;}
.ycf{bottom:738.600000pt;}
.yf{bottom:742.333333pt;}
.y9a{bottom:743.666667pt;}
.y103{bottom:744.733333pt;}
.y82{bottom:747.133333pt;}
.y52{bottom:747.400000pt;}
.yce{bottom:756.200000pt;}
.ye{bottom:759.933333pt;}
.y81{bottom:765.000000pt;}
.y51{bottom:765.266667pt;}
.y102{bottom:773.000000pt;}
.ya0{bottom:773.800000pt;}
.yd{bottom:777.533333pt;}
.y50{bottom:782.866667pt;}
.ycd{bottom:791.400000pt;}
.yc{bottom:798.600000pt;}
.y4f{bottom:800.466667pt;}
.y100{bottom:801.266667pt;}
.y9e{bottom:804.200000pt;}
.y129{bottom:809.800000pt;}
.yb{bottom:814.600000pt;}
.y4e{bottom:818.066667pt;}
.yff{bottom:829.266667pt;}
.ya{bottom:830.333333pt;}
.y9c{bottom:834.333333pt;}
.y4d{bottom:835.666667pt;}
.y9{bottom:842.333333pt;}
.y127{bottom:845.800000pt;}
.y4c{bottom:853.293333pt;}
.y8{bottom:860.226667pt;}
.y98{bottom:864.760000pt;}
.y94{bottom:864.773333pt;}
.yfe{bottom:870.626667pt;}
.y4b{bottom:870.893333pt;}
.y126{bottom:881.573333pt;}
.y7{bottom:883.960000pt;}
.yfd{bottom:888.226667pt;}
.y4a{bottom:888.506667pt;}
.y80{bottom:906.106667pt;}
.y49{bottom:906.373333pt;}
.ycb{bottom:915.440000pt;}
.y124{bottom:917.560000pt;}
.y6{bottom:922.893333pt;}
.y7f{bottom:923.706667pt;}
.y48{bottom:923.960000pt;}
.y93{bottom:941.293333pt;}
.y47{bottom:941.560000pt;}
.yc9{bottom:945.840000pt;}
.y7e{bottom:958.893333pt;}
.y46{bottom:959.173333pt;}
.y5{bottom:961.560000pt;}
.y45{bottom:976.506667pt;}
.y79{bottom:976.773333pt;}
.y2{bottom:1000.000000pt;}
.y1{bottom:1014.933333pt;}
.h26{height:27.466667pt;}
.h28{height:27.486667pt;}
.h27{height:27.733333pt;}
.hd{height:29.600000pt;}
.hc{height:29.633333pt;}
.h5{height:31.406250pt;}
.h2a{height:35.186667pt;}
.h10{height:35.200000pt;}
.h11{height:35.233333pt;}
.h13{height:35.466667pt;}
.h25{height:35.500000pt;}
.h8{height:37.239583pt;}
.h19{height:42.400000pt;}
.h1f{height:47.109375pt;}
.h1d{height:48.375000pt;}
.h1a{height:50.120000pt;}
.h6{height:52.317708pt;}
.h2{height:52.343750pt;}
.h9{height:52.786667pt;}
.ha{height:52.800000pt;}
.h16{height:52.820000pt;}
.h29{height:53.053333pt;}
.h15{height:53.066667pt;}
.h1e{height:53.100000pt;}
.h24{height:53.333333pt;}
.h22{height:53.366667pt;}
.h1{height:53.750000pt;}
.h4{height:54.675000pt;}
.h7{height:54.818262pt;}
.h17{height:59.733333pt;}
.he{height:59.753333pt;}
.h1b{height:59.766667pt;}
.h20{height:63.453333pt;}
.h21{height:63.466667pt;}
.h23{height:79.466667pt;}
.h1c{height:95.200000pt;}
.h3{height:118.250000pt;}
.hb{height:120.300000pt;}
.h18{height:123.466667pt;}
.hf{height:161.906667pt;}
.h12{height:173.360000pt;}
.h14{height:208.586667pt;}
.h0{height:1056.000000pt;}
.wd{width:41.366667pt;}
.wc{width:47.466667pt;}
.wb{width:52.033333pt;}
.wa{width:52.800000pt;}
.w9{width:52.833333pt;}
.w8{width:76.000000pt;}
.w3{width:80.000000pt;}
.w6{width:80.033333pt;}
.w2{width:81.900000pt;}
.w5{width:82.933333pt;}
.w1{width:82.966667pt;}
.w4{width:90.700000pt;}
.w7{width:90.966667pt;}
.wf{width:94.966667pt;}
.w12{width:95.233333pt;}
.w14{width:107.233333pt;}
.w15{width:107.500000pt;}
.w10{width:109.633333pt;}
.w13{width:109.900000pt;}
.w11{width:111.233333pt;}
.we{width:126.700000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.200000pt;}
.x2b{left:8.266667pt;}
.x23{left:54.966667pt;}
.x1{left:62.433333pt;}
.x33{left:64.033333pt;}
.x1d{left:68.033333pt;}
.x3{left:76.300000pt;}
.x14{left:86.433333pt;}
.x21{left:94.700000pt;}
.x2{left:99.233333pt;}
.x13{left:110.433333pt;}
.x24{left:131.500000pt;}
.x11{left:135.240000pt;}
.x34{left:147.240000pt;}
.x1e{left:151.773333pt;}
.x37{left:171.800000pt;}
.x35{left:176.866667pt;}
.xa{left:177.933333pt;}
.x25{left:184.866667pt;}
.x22{left:187.800000pt;}
.x1f{left:234.200000pt;}
.x26{left:238.200000pt;}
.x8{left:245.666667pt;}
.x9{left:260.333333pt;}
.x4{left:283.306667pt;}
.x36{left:284.640000pt;}
.x7{left:287.306667pt;}
.x27{left:290.773333pt;}
.x20{left:315.040000pt;}
.x6{left:321.693333pt;}
.x28{left:338.773333pt;}
.x5{left:408.133333pt;}
.xb{left:417.733333pt;}
.x16{left:419.066667pt;}
.x18{left:423.333333pt;}
.x30{left:427.066667pt;}
.x2e{left:432.133333pt;}
.x10{left:441.733333pt;}
.x29{left:443.066667pt;}
.x2a{left:456.666667pt;}
.x15{left:462.800000pt;}
.xe{left:465.733333pt;}
.x12{left:483.626667pt;}
.xf{left:485.226667pt;}
.xc{left:488.973333pt;}
.x2f{left:495.106667pt;}
.x1a{left:507.106667pt;}
.x17{left:536.440000pt;}
.x31{left:538.840000pt;}
.x2c{left:546.840000pt;}
.xd{left:585.800000pt;}
.x1b{left:589.533333pt;}
.x32{left:634.600000pt;}
.x2d{left:642.333333pt;}
.x1c{left:670.333333pt;}
}




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