
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_72e4256bc2dd7f0b1c96b28d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_573fc9eec6843ec0cdded5ca.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e74d6956655369457a5f61da.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_5128b6ff691ff2870bc439f3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c300d894ad5dd49592f07a75.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_08334dbf2a5bb5cbe390f6cc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_02195c93b9884f2badd76b33.woff')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls12{letter-spacing:-0.444600px;}
.ls18{letter-spacing:-0.232800px;}
.lse{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.014760px;}
.ls19{letter-spacing:-0.011160px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.115800px;}
.ls17{letter-spacing:0.143400px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.181200px;}
.lsf{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-60.120000px;}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.425600px;}
.wsc{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.369800px;}
.wsf{word-spacing:-13.342200px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.215240px;}
.wse{word-spacing:-13.211640px;}
.wsd{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.993600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._7{margin-left:-3.461640px;}
._6{margin-left:-2.404800px;}
._0{margin-left:-1.194000px;}
._2{width:1.164240px;}
._b{width:2.220598px;}
._8{width:4.148400px;}
._10{width:6.012000px;}
._e{width:7.086000px;}
._9{width:8.176200px;}
._4{width:9.979199px;}
._3{width:11.002200px;}
._5{width:12.084601px;}
._22{width:14.428800px;}
._d{width:15.923400px;}
._c{width:17.554800px;}
._a{width:19.178400px;}
._11{width:20.200200px;}
._23{width:21.619440px;}
._12{width:22.740840px;}
._f{width:24.649200px;}
._21{width:25.671240px;}
._3e{width:26.993880px;}
._45{width:29.398680px;}
._3c{width:30.781440px;}
._14{width:34.088040px;}
._1d{width:35.290440px;}
._26{width:36.372600px;}
._36{width:38.356560px;}
._2e{width:41.242320px;}
._1{width:42.570360px;}
._57{width:46.906680px;}
._15{width:48.216240px;}
._31{width:50.200200px;}
._1b{width:54.468720px;}
._3a{width:55.851480px;}
._47{width:58.015800px;}
._29{width:59.699160px;}
._51{width:64.148040px;}
._53{width:65.651040px;}
._25{width:66.733200px;}
._1c{width:67.875480px;}
._27{width:70.580880px;}
._4c{width:71.663040px;}
._17{width:76.232160px;}
._4f{width:78.095880px;}
._49{width:79.178040px;}
._4e{width:80.500680px;}
._1f{width:84.528720px;}
._35{width:87.053760px;}
._16{width:88.256160px;}
._43{width:89.578800px;}
._34{width:92.248200px;}
._2a{width:93.847320px;}
._24{width:95.831280px;}
._19{width:99.198000px;}
._40{width:105.931440px;}
._39{width:107.314200px;}
._44{width:113.446440px;}
._1a{width:114.468480px;}
._46{width:118.195920px;}
._38{width:120.540600px;}
._3f{width:121.803120px;}
._50{width:123.198840px;}
._52{width:133.286040px;}
._4a{width:135.510480px;}
._3b{width:138.456360px;}
._13{width:142.304040px;}
._41{width:146.572560px;}
._4d{width:148.676760px;}
._18{width:153.426240px;}
._30{width:163.578120px;}
._4b{width:164.785320px;}
._32{width:174.588480px;}
._1e{width:189.822960px;}
._33{width:195.931080px;}
._3d{width:202.303800px;}
._37{width:211.502160px;}
._54{width:213.305760px;}
._48{width:245.289600px;}
._2d{width:249.678360px;}
._42{width:252.564120px;}
._2c{width:266.812560px;}
._2b{width:281.000880px;}
._20{width:294.708240px;}
._28{width:302.764320px;}
._2f{width:371.301120px;}
._55{width:711.399960px;}
._56{width:1103.442480px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y39{bottom:7.830000px;}
.y3e{bottom:7.920000px;}
.y3b{bottom:25.380000px;}
.y38{bottom:25.470000px;}
.y37{bottom:43.020000px;}
.y118{bottom:43.110000px;}
.y8a{bottom:60.570000px;}
.ye2{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y89{bottom:78.210000px;}
.y11d{bottom:78.240000px;}
.y88{bottom:95.760000px;}
.y1{bottom:101.640000px;}
.ya2{bottom:113.250000px;}
.yde{bottom:113.340000px;}
.ye1{bottom:113.400000px;}
.ybf{bottom:117.390000px;}
.y55{bottom:124.410000px;}
.y123{bottom:126.300000px;}
.y111{bottom:126.390000px;}
.ya1{bottom:130.800000px;}
.ye0{bottom:130.950000px;}
.ydd{bottom:130.980000px;}
.ybe{bottom:134.940000px;}
.yf9{bottom:135.750000px;}
.y27{bottom:140.250000px;}
.y54{bottom:141.960000px;}
.y122{bottom:143.850000px;}
.y110{bottom:143.940000px;}
.ya0{bottom:148.350000px;}
.y83{bottom:152.580000px;}
.yf8{bottom:153.390000px;}
.y26{bottom:157.800000px;}
.yda{bottom:161.130000px;}
.y121{bottom:161.490000px;}
.y10f{bottom:161.580000px;}
.y9f{bottom:165.990000px;}
.y82{bottom:170.130000px;}
.yf7{bottom:170.940000px;}
.y25{bottom:175.350000px;}
.y53{bottom:177.600000px;}
.y146{bottom:178.860000px;}
.y120{bottom:179.040000px;}
.y9e{bottom:183.540000px;}
.y81{bottom:187.680000px;}
.ybd{bottom:188.130000px;}
.yf6{bottom:188.580000px;}
.y52{bottom:195.150000px;}
.y145{bottom:196.500000px;}
.yd9{bottom:196.680000px;}
.y10e{bottom:197.130000px;}
.y9d{bottom:201.180000px;}
.y80{bottom:205.320000px;}
.ybc{bottom:205.680000px;}
.yf5{bottom:206.130000px;}
.y24{bottom:210.990000px;}
.y51{bottom:212.700000px;}
.y144{bottom:214.050000px;}
.y10d{bottom:214.680000px;}
.y7f{bottom:222.870000px;}
.ybb{bottom:223.320000px;}
.yf4{bottom:223.680000px;}
.y23{bottom:228.540000px;}
.y11f{bottom:229.620000px;}
.y50{bottom:230.340000px;}
.yd8{bottom:232.320000px;}
.y9c{bottom:236.730000px;}
.y7e{bottom:240.510000px;}
.y143{bottom:240.600000px;}
.yba{bottom:240.870000px;}
.yf3{bottom:241.320000px;}
.y22{bottom:246.090000px;}
.y4f{bottom:247.890000px;}
.y10c{bottom:249.870000px;}
.y9b{bottom:254.280000px;}
.y7d{bottom:258.060000px;}
.y142{bottom:258.240000px;}
.yb9{bottom:258.510000px;}
.yf2{bottom:258.870000px;}
.y21{bottom:263.730000px;}
.y4e{bottom:265.440000px;}
.y10b{bottom:267.510000px;}
.yd7{bottom:267.870000px;}
.y9a{bottom:271.920000px;}
.y7c{bottom:275.610000px;}
.y141{bottom:275.790000px;}
.yb8{bottom:276.060000px;}
.yf1{bottom:276.510000px;}
.y20{bottom:281.280000px;}
.y4d{bottom:283.080000px;}
.y10a{bottom:285.060000px;}
.yd6{bottom:285.510000px;}
.y99{bottom:289.470000px;}
.yb7{bottom:293.610000px;}
.y4c{bottom:300.630000px;}
.y140{bottom:302.430000px;}
.y109{bottom:302.610000px;}
.yd5{bottom:303.060000px;}
.y98{bottom:307.110000px;}
.y7b{bottom:311.250000px;}
.yf0{bottom:312.060000px;}
.y1f{bottom:316.920000px;}
.y13f{bottom:319.980000px;}
.y108{bottom:320.250000px;}
.yd4{bottom:320.610000px;}
.y97{bottom:324.660000px;}
.y11e{bottom:327.270000px;}
.y7a{bottom:328.800000px;}
.yef{bottom:329.610000px;}
.y1e{bottom:334.470000px;}
.y4b{bottom:336.270000px;}
.y13e{bottom:337.530000px;}
.y107{bottom:337.800000px;}
.yd3{bottom:338.250000px;}
.y96{bottom:342.210000px;}
.y79{bottom:346.440000px;}
.yee{bottom:347.250000px;}
.y1d{bottom:352.020000px;}
.y4a{bottom:353.820000px;}
.yb6{bottom:355.440000px;}
.yd2{bottom:355.800000px;}
.y95{bottom:359.850000px;}
.y78{bottom:363.990000px;}
.y13d{bottom:364.170000px;}
.yed{bottom:364.800000px;}
.y1c{bottom:369.660000px;}
.y49{bottom:371.370000px;}
.y106{bottom:372.990000px;}
.yd1{bottom:373.440000px;}
.y94{bottom:377.400000px;}
.y77{bottom:381.540000px;}
.y13c{bottom:381.720000px;}
.yec{bottom:382.440000px;}
.y48{bottom:389.010000px;}
.yb5{bottom:390.990000px;}
.y93{bottom:395.040000px;}
.y1b{bottom:396.570000px;}
.y76{bottom:399.180000px;}
.yeb{bottom:399.990000px;}
.y47{bottom:406.560000px;}
.y11c{bottom:407.370000px;}
.y13b{bottom:408.360000px;}
.yb4{bottom:408.540000px;}
.y75{bottom:416.730000px;}
.yea{bottom:417.540000px;}
.y92{bottom:421.590000px;}
.y46{bottom:424.200000px;}
.y13a{bottom:425.910000px;}
.yb3{bottom:426.180000px;}
.y74{bottom:434.370000px;}
.ye9{bottom:435.180000px;}
.y45{bottom:441.750000px;}
.yb2{bottom:443.730000px;}
.y1a{bottom:444.810000px;}
.y139{bottom:452.460000px;}
.ye8{bottom:452.730000px;}
.y91{bottom:457.500000px;}
.y44{bottom:459.300000px;}
.yb1{bottom:461.370000px;}
.y19{bottom:462.720000px;}
.y73{bottom:469.950000px;}
.yb0{bottom:478.950000px;}
.y138{bottom:479.130000px;}
.yd0{bottom:479.400000px;}
.y43{bottom:485.970000px;}
.y72{bottom:487.500000px;}
.yaf{bottom:496.500000px;}
.y137{bottom:496.680000px;}
.ycf{bottom:496.950000px;}
.y18{bottom:499.830000px;}
.y90{bottom:503.160000px;}
.y11b{bottom:505.050000px;}
.y71{bottom:505.140000px;}
.yae{bottom:514.140000px;}
.yce{bottom:514.500000px;}
.ye7{bottom:514.950000px;}
.y17{bottom:517.380000px;}
.y42{bottom:521.520000px;}
.y70{bottom:522.690000px;}
.y136{bottom:523.230000px;}
.yad{bottom:531.690000px;}
.ycd{bottom:532.140000px;}
.y11a{bottom:532.410000px;}
.ye6{bottom:532.500000px;}
.y16{bottom:534.930000px;}
.y41{bottom:539.160000px;}
.y6f{bottom:540.330000px;}
.y135{bottom:540.870000px;}
.y8f{bottom:548.070000px;}
.yac{bottom:549.330000px;}
.ycc{bottom:549.690000px;}
.ye5{bottom:550.140000px;}
.y15{bottom:552.570000px;}
.y6e{bottom:557.880000px;}
.y134{bottom:558.420000px;}
.y40{bottom:566.070000px;}
.y105{bottom:566.880000px;}
.ycb{bottom:567.330000px;}
.y14{bottom:570.120000px;}
.ye4{bottom:577.050000px;}
.y6d{bottom:584.430000px;}
.yab{bottom:584.880000px;}
.y133{bottom:585.060000px;}
.y13{bottom:587.670000px;}
.y8e{bottom:592.980000px;}
.yaa{bottom:602.430000px;}
.y132{bottom:602.610000px;}
.y12{bottom:605.310000px;}
.y3f{bottom:611.700000px;}
.y119{bottom:612.510000px;}
.y6c{bottom:620.070000px;}
.ye3{bottom:622.680000px;}
.y11{bottom:622.860000px;}
.y131{bottom:629.520000px;}
.y6b{bottom:637.620000px;}
.y8d{bottom:637.980000px;}
.y10{bottom:640.500000px;}
.y6a{bottom:655.260000px;}
.yca{bottom:655.620000px;}
.yf{bottom:658.050000px;}
.y104{bottom:664.260000px;}
.y69{bottom:672.810000px;}
.yc9{bottom:673.260000px;}
.y3d{bottom:674.160000px;}
.ye{bottom:675.600000px;}
.y130{bottom:677.760000px;}
.y8c{bottom:682.890000px;}
.y68{bottom:690.360000px;}
.yc8{bottom:690.810000px;}
.yd{bottom:693.240000px;}
.y12f{bottom:695.400000px;}
.y103{bottom:699.810000px;}
.y67{bottom:708.000000px;}
.yc7{bottom:708.360000px;}
.y117{bottom:710.160000px;}
.yc{bottom:710.790000px;}
.y12e{bottom:712.950000px;}
.y102{bottom:717.360000px;}
.y3c{bottom:719.160000px;}
.y66{bottom:725.550000px;}
.yc6{bottom:726.000000px;}
.y8b{bottom:727.800000px;}
.yb{bottom:728.430000px;}
.y12d{bottom:730.590000px;}
.y101{bottom:735.000000px;}
.y65{bottom:743.190000px;}
.ya9{bottom:743.550000px;}
.y12c{bottom:748.140000px;}
.y100{bottom:752.550000px;}
.ya{bottom:755.340000px;}
.ydf{bottom:755.520000px;}
.ya8{bottom:761.190000px;}
.y3a{bottom:764.070000px;}
.y12b{bottom:765.690000px;}
.yff{bottom:770.190000px;}
.y87{bottom:772.710000px;}
.y64{bottom:778.740000px;}
.y12a{bottom:783.330000px;}
.yfe{bottom:787.740000px;}
.y116{bottom:790.260000px;}
.y63{bottom:796.290000px;}
.y129{bottom:800.880000px;}
.y9{bottom:803.580000px;}
.yfd{bottom:805.290000px;}
.y36{bottom:808.980000px;}
.y62{bottom:813.930000px;}
.y128{bottom:818.520000px;}
.yc5{bottom:822.930000px;}
.y61{bottom:831.480000px;}
.y127{bottom:836.070000px;}
.y8{bottom:839.130000px;}
.yfc{bottom:840.480000px;}
.y60{bottom:849.030000px;}
.y126{bottom:853.620000px;}
.yfb{bottom:858.030000px;}
.yc4{bottom:858.480000px;}
.y5f{bottom:866.670000px;}
.y115{bottom:870.360000px;}
.y125{bottom:871.260000px;}
.y7{bottom:874.950000px;}
.yc3{bottom:876.030000px;}
.y5e{bottom:884.220000px;}
.y86{bottom:888.000000px;}
.y35{bottom:892.860000px;}
.yc2{bottom:893.670000px;}
.y114{bottom:897.720000px;}
.y124{bottom:898.170000px;}
.ydc{bottom:906.000000px;}
.ya7{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.yc1{bottom:911.220000px;}
.y5d{bottom:919.860000px;}
.y34{bottom:928.410000px;}
.yc0{bottom:928.860000px;}
.y5c{bottom:937.410000px;}
.y33{bottom:945.960000px;}
.ya6{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y85{bottom:950.460000px;}
.y5b{bottom:954.960000px;}
.y32{bottom:963.600000px;}
.ya5{bottom:963.960000px;}
.y5a{bottom:972.600000px;}
.y31{bottom:981.150000px;}
.ya4{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y59{bottom:990.150000px;}
.ya3{bottom:999.150000px;}
.y58{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y30{bottom:1016.820000px;}
.y113{bottom:1017.180000px;}
.y2f{bottom:1034.370000px;}
.y112{bottom:1034.820000px;}
.y2e{bottom:1051.920000px;}
.y84{bottom:1052.370000px;}
.ydb{bottom:1056.420000px;}
.y2d{bottom:1069.560000px;}
.y57{bottom:1069.920000px;}
.yfa{bottom:1087.110000px;}
.y56{bottom:1087.560000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h13{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hb{height:44.100000px;}
.hc{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.ha{height:61.740000px;}
.h9{height:61.793886px;}
.he{height:62.585859px;}
.hd{height:68.582109px;}
.h4{height:71.019492px;}
.h14{height:79.380000px;}
.h15{height:96.930000px;}
.h16{height:96.960000px;}
.hf{height:114.480000px;}
.h12{height:132.120000px;}
.h11{height:149.670000px;}
.h10{height:149.700000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w17{width:66.870000px;}
.w16{width:85.950000px;}
.wc{width:92.250000px;}
.w3{width:110.370000px;}
.wd{width:118.200000px;}
.w8{width:123.240000px;}
.w10{width:126.180000px;}
.w15{width:129.600000px;}
.we{width:132.750000px;}
.wf{width:140.610000px;}
.w11{width:141.930000px;}
.w7{width:148.140000px;}
.w14{width:148.710000px;}
.w13{width:148.950000px;}
.w6{width:156.420000px;}
.w5{width:161.670000px;}
.w12{width:171.840000px;}
.w4{width:176.130000px;}
.w9{width:198.180000px;}
.wa{width:203.430000px;}
.wb{width:228.600000px;}
.w18{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x1{left:68.040000px;}
.x15{left:111.239987px;}
.xc{left:161.820000px;}
.x5{left:179.850000px;}
.x9{left:192.720000px;}
.x2{left:202.799987px;}
.x11{left:241.410000px;}
.xd{left:280.740000px;}
.x6{left:356.700000px;}
.xa{left:391.710000px;}
.xe{left:414.300000px;}
.x7{left:519.180000px;}
.x12{left:540.510000px;}
.xf{left:555.630000px;}
.xb{left:595.860000px;}
.x13{left:670.830000px;}
.x8{left:676.320000px;}
.x10{left:682.530000px;}
.x14{left:757.590000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls12{letter-spacing:-0.395200pt;}
.ls18{letter-spacing:-0.206933pt;}
.lse{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.013120pt;}
.ls19{letter-spacing:-0.009920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.102933pt;}
.ls17{letter-spacing:0.127467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.161067pt;}
.lsf{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:71.863680pt;}
.ws3{word-spacing:-53.440000pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.933867pt;}
.wsc{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.884267pt;}
.wsf{word-spacing:-11.859733pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.746880pt;}
.wse{word-spacing:-11.743680pt;}
.wsd{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.549867pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._7{margin-left:-3.077013pt;}
._6{margin-left:-2.137600pt;}
._0{margin-left:-1.061333pt;}
._2{width:1.034880pt;}
._b{width:1.973865pt;}
._8{width:3.687467pt;}
._10{width:5.344000pt;}
._e{width:6.298667pt;}
._9{width:7.267733pt;}
._4{width:8.870399pt;}
._3{width:9.779734pt;}
._5{width:10.741868pt;}
._22{width:12.825600pt;}
._d{width:14.154133pt;}
._c{width:15.604266pt;}
._a{width:17.047467pt;}
._11{width:17.955733pt;}
._23{width:19.217280pt;}
._12{width:20.214080pt;}
._f{width:21.910400pt;}
._21{width:22.818880pt;}
._3e{width:23.994560pt;}
._45{width:26.132160pt;}
._3c{width:27.361280pt;}
._14{width:30.300480pt;}
._1d{width:31.369280pt;}
._26{width:32.331200pt;}
._36{width:34.094720pt;}
._2e{width:36.659840pt;}
._1{width:37.840320pt;}
._57{width:41.694827pt;}
._15{width:42.858880pt;}
._31{width:44.622400pt;}
._1b{width:48.416640pt;}
._3a{width:49.645760pt;}
._47{width:51.569600pt;}
._29{width:53.065920pt;}
._51{width:57.020480pt;}
._53{width:58.356480pt;}
._25{width:59.318400pt;}
._1c{width:60.333760pt;}
._27{width:62.738560pt;}
._4c{width:63.700480pt;}
._17{width:67.761920pt;}
._4f{width:69.418560pt;}
._49{width:70.380480pt;}
._4e{width:71.556160pt;}
._1f{width:75.136640pt;}
._35{width:77.381120pt;}
._16{width:78.449920pt;}
._43{width:79.625600pt;}
._34{width:81.998400pt;}
._2a{width:83.419840pt;}
._24{width:85.183360pt;}
._19{width:88.176000pt;}
._40{width:94.161280pt;}
._39{width:95.390400pt;}
._44{width:100.841280pt;}
._1a{width:101.749760pt;}
._46{width:105.063040pt;}
._38{width:107.147200pt;}
._3f{width:108.269440pt;}
._50{width:109.510080pt;}
._52{width:118.476480pt;}
._4a{width:120.453760pt;}
._3b{width:123.072320pt;}
._13{width:126.492480pt;}
._41{width:130.286720pt;}
._4d{width:132.157120pt;}
._18{width:136.378880pt;}
._30{width:145.402773pt;}
._4b{width:146.475840pt;}
._32{width:155.189760pt;}
._1e{width:168.731520pt;}
._33{width:174.160960pt;}
._3d{width:179.825600pt;}
._37{width:188.001920pt;}
._54{width:189.605120pt;}
._48{width:218.035200pt;}
._2d{width:221.936320pt;}
._42{width:224.501440pt;}
._2c{width:237.166720pt;}
._2b{width:249.778560pt;}
._20{width:261.962880pt;}
._28{width:269.123840pt;}
._2f{width:330.045440pt;}
._55{width:632.355520pt;}
._56{width:980.837760pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:6.960000pt;}
.y3e{bottom:7.040000pt;}
.y3b{bottom:22.560000pt;}
.y38{bottom:22.640000pt;}
.y37{bottom:38.240000pt;}
.y118{bottom:38.320000pt;}
.y8a{bottom:53.840000pt;}
.ye2{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y89{bottom:69.520000pt;}
.y11d{bottom:69.546667pt;}
.y88{bottom:85.120000pt;}
.y1{bottom:90.346667pt;}
.ya2{bottom:100.666667pt;}
.yde{bottom:100.746667pt;}
.ye1{bottom:100.800000pt;}
.ybf{bottom:104.346667pt;}
.y55{bottom:110.586667pt;}
.y123{bottom:112.266667pt;}
.y111{bottom:112.346667pt;}
.ya1{bottom:116.266667pt;}
.ye0{bottom:116.400000pt;}
.ydd{bottom:116.426667pt;}
.ybe{bottom:119.946667pt;}
.yf9{bottom:120.666667pt;}
.y27{bottom:124.666667pt;}
.y54{bottom:126.186667pt;}
.y122{bottom:127.866667pt;}
.y110{bottom:127.946667pt;}
.ya0{bottom:131.866667pt;}
.y83{bottom:135.626667pt;}
.yf8{bottom:136.346667pt;}
.y26{bottom:140.266667pt;}
.yda{bottom:143.226667pt;}
.y121{bottom:143.546667pt;}
.y10f{bottom:143.626667pt;}
.y9f{bottom:147.546667pt;}
.y82{bottom:151.226667pt;}
.yf7{bottom:151.946667pt;}
.y25{bottom:155.866667pt;}
.y53{bottom:157.866667pt;}
.y146{bottom:158.986667pt;}
.y120{bottom:159.146667pt;}
.y9e{bottom:163.146667pt;}
.y81{bottom:166.826667pt;}
.ybd{bottom:167.226667pt;}
.yf6{bottom:167.626667pt;}
.y52{bottom:173.466667pt;}
.y145{bottom:174.666667pt;}
.yd9{bottom:174.826667pt;}
.y10e{bottom:175.226667pt;}
.y9d{bottom:178.826667pt;}
.y80{bottom:182.506667pt;}
.ybc{bottom:182.826667pt;}
.yf5{bottom:183.226667pt;}
.y24{bottom:187.546667pt;}
.y51{bottom:189.066667pt;}
.y144{bottom:190.266667pt;}
.y10d{bottom:190.826667pt;}
.y7f{bottom:198.106667pt;}
.ybb{bottom:198.506667pt;}
.yf4{bottom:198.826667pt;}
.y23{bottom:203.146667pt;}
.y11f{bottom:204.106667pt;}
.y50{bottom:204.746667pt;}
.yd8{bottom:206.506667pt;}
.y9c{bottom:210.426667pt;}
.y7e{bottom:213.786667pt;}
.y143{bottom:213.866667pt;}
.yba{bottom:214.106667pt;}
.yf3{bottom:214.506667pt;}
.y22{bottom:218.746667pt;}
.y4f{bottom:220.346667pt;}
.y10c{bottom:222.106667pt;}
.y9b{bottom:226.026667pt;}
.y7d{bottom:229.386667pt;}
.y142{bottom:229.546667pt;}
.yb9{bottom:229.786667pt;}
.yf2{bottom:230.106667pt;}
.y21{bottom:234.426667pt;}
.y4e{bottom:235.946667pt;}
.y10b{bottom:237.786667pt;}
.yd7{bottom:238.106667pt;}
.y9a{bottom:241.706667pt;}
.y7c{bottom:244.986667pt;}
.y141{bottom:245.146667pt;}
.yb8{bottom:245.386667pt;}
.yf1{bottom:245.786667pt;}
.y20{bottom:250.026667pt;}
.y4d{bottom:251.626667pt;}
.y10a{bottom:253.386667pt;}
.yd6{bottom:253.786667pt;}
.y99{bottom:257.306667pt;}
.yb7{bottom:260.986667pt;}
.y4c{bottom:267.226667pt;}
.y140{bottom:268.826667pt;}
.y109{bottom:268.986667pt;}
.yd5{bottom:269.386667pt;}
.y98{bottom:272.986667pt;}
.y7b{bottom:276.666667pt;}
.yf0{bottom:277.386667pt;}
.y1f{bottom:281.706667pt;}
.y13f{bottom:284.426667pt;}
.y108{bottom:284.666667pt;}
.yd4{bottom:284.986667pt;}
.y97{bottom:288.586667pt;}
.y11e{bottom:290.906667pt;}
.y7a{bottom:292.266667pt;}
.yef{bottom:292.986667pt;}
.y1e{bottom:297.306667pt;}
.y4b{bottom:298.906667pt;}
.y13e{bottom:300.026667pt;}
.y107{bottom:300.266667pt;}
.yd3{bottom:300.666667pt;}
.y96{bottom:304.186667pt;}
.y79{bottom:307.946667pt;}
.yee{bottom:308.666667pt;}
.y1d{bottom:312.906667pt;}
.y4a{bottom:314.506667pt;}
.yb6{bottom:315.946667pt;}
.yd2{bottom:316.266667pt;}
.y95{bottom:319.866667pt;}
.y78{bottom:323.546667pt;}
.y13d{bottom:323.706667pt;}
.yed{bottom:324.266667pt;}
.y1c{bottom:328.586667pt;}
.y49{bottom:330.106667pt;}
.y106{bottom:331.546667pt;}
.yd1{bottom:331.946667pt;}
.y94{bottom:335.466667pt;}
.y77{bottom:339.146667pt;}
.y13c{bottom:339.306667pt;}
.yec{bottom:339.946667pt;}
.y48{bottom:345.786667pt;}
.yb5{bottom:347.546667pt;}
.y93{bottom:351.146667pt;}
.y1b{bottom:352.506667pt;}
.y76{bottom:354.826667pt;}
.yeb{bottom:355.546667pt;}
.y47{bottom:361.386667pt;}
.y11c{bottom:362.106667pt;}
.y13b{bottom:362.986667pt;}
.yb4{bottom:363.146667pt;}
.y75{bottom:370.426667pt;}
.yea{bottom:371.146667pt;}
.y92{bottom:374.746667pt;}
.y46{bottom:377.066667pt;}
.y13a{bottom:378.586667pt;}
.yb3{bottom:378.826667pt;}
.y74{bottom:386.106667pt;}
.ye9{bottom:386.826667pt;}
.y45{bottom:392.666667pt;}
.yb2{bottom:394.426667pt;}
.y1a{bottom:395.386667pt;}
.y139{bottom:402.186667pt;}
.ye8{bottom:402.426667pt;}
.y91{bottom:406.666667pt;}
.y44{bottom:408.266667pt;}
.yb1{bottom:410.106667pt;}
.y19{bottom:411.306667pt;}
.y73{bottom:417.733333pt;}
.yb0{bottom:425.733333pt;}
.y138{bottom:425.893333pt;}
.yd0{bottom:426.133333pt;}
.y43{bottom:431.973333pt;}
.y72{bottom:433.333333pt;}
.yaf{bottom:441.333333pt;}
.y137{bottom:441.493333pt;}
.ycf{bottom:441.733333pt;}
.y18{bottom:444.293333pt;}
.y90{bottom:447.253333pt;}
.y11b{bottom:448.933333pt;}
.y71{bottom:449.013333pt;}
.yae{bottom:457.013333pt;}
.yce{bottom:457.333333pt;}
.ye7{bottom:457.733333pt;}
.y17{bottom:459.893333pt;}
.y42{bottom:463.573333pt;}
.y70{bottom:464.613333pt;}
.y136{bottom:465.093333pt;}
.yad{bottom:472.613333pt;}
.ycd{bottom:473.013333pt;}
.y11a{bottom:473.253333pt;}
.ye6{bottom:473.333333pt;}
.y16{bottom:475.493333pt;}
.y41{bottom:479.253333pt;}
.y6f{bottom:480.293333pt;}
.y135{bottom:480.773333pt;}
.y8f{bottom:487.173333pt;}
.yac{bottom:488.293333pt;}
.ycc{bottom:488.613333pt;}
.ye5{bottom:489.013333pt;}
.y15{bottom:491.173333pt;}
.y6e{bottom:495.893333pt;}
.y134{bottom:496.373333pt;}
.y40{bottom:503.173333pt;}
.y105{bottom:503.893333pt;}
.ycb{bottom:504.293333pt;}
.y14{bottom:506.773333pt;}
.ye4{bottom:512.933333pt;}
.y6d{bottom:519.493333pt;}
.yab{bottom:519.893333pt;}
.y133{bottom:520.053333pt;}
.y13{bottom:522.373333pt;}
.y8e{bottom:527.093333pt;}
.yaa{bottom:535.493333pt;}
.y132{bottom:535.653333pt;}
.y12{bottom:538.053333pt;}
.y3f{bottom:543.733333pt;}
.y119{bottom:544.453333pt;}
.y6c{bottom:551.173333pt;}
.ye3{bottom:553.493333pt;}
.y11{bottom:553.653333pt;}
.y131{bottom:559.573333pt;}
.y6b{bottom:566.773333pt;}
.y8d{bottom:567.093333pt;}
.y10{bottom:569.333333pt;}
.y6a{bottom:582.453333pt;}
.yca{bottom:582.773333pt;}
.yf{bottom:584.933333pt;}
.y104{bottom:590.453333pt;}
.y69{bottom:598.053333pt;}
.yc9{bottom:598.453333pt;}
.y3d{bottom:599.253333pt;}
.ye{bottom:600.533333pt;}
.y130{bottom:602.453333pt;}
.y8c{bottom:607.013333pt;}
.y68{bottom:613.653333pt;}
.yc8{bottom:614.053333pt;}
.yd{bottom:616.213333pt;}
.y12f{bottom:618.133333pt;}
.y103{bottom:622.053333pt;}
.y67{bottom:629.333333pt;}
.yc7{bottom:629.653333pt;}
.y117{bottom:631.253333pt;}
.yc{bottom:631.813333pt;}
.y12e{bottom:633.733333pt;}
.y102{bottom:637.653333pt;}
.y3c{bottom:639.253333pt;}
.y66{bottom:644.933333pt;}
.yc6{bottom:645.333333pt;}
.y8b{bottom:646.933333pt;}
.yb{bottom:647.493333pt;}
.y12d{bottom:649.413333pt;}
.y101{bottom:653.333333pt;}
.y65{bottom:660.613333pt;}
.ya9{bottom:660.933333pt;}
.y12c{bottom:665.013333pt;}
.y100{bottom:668.933333pt;}
.ya{bottom:671.413333pt;}
.ydf{bottom:671.573333pt;}
.ya8{bottom:676.613333pt;}
.y3a{bottom:679.173333pt;}
.y12b{bottom:680.613333pt;}
.yff{bottom:684.613333pt;}
.y87{bottom:686.853333pt;}
.y64{bottom:692.213333pt;}
.y12a{bottom:696.293333pt;}
.yfe{bottom:700.213333pt;}
.y116{bottom:702.453333pt;}
.y63{bottom:707.813333pt;}
.y129{bottom:711.893333pt;}
.y9{bottom:714.293333pt;}
.yfd{bottom:715.813333pt;}
.y36{bottom:719.093333pt;}
.y62{bottom:723.493333pt;}
.y128{bottom:727.573333pt;}
.yc5{bottom:731.493333pt;}
.y61{bottom:739.093333pt;}
.y127{bottom:743.173333pt;}
.y8{bottom:745.893333pt;}
.yfc{bottom:747.093333pt;}
.y60{bottom:754.693333pt;}
.y126{bottom:758.773333pt;}
.yfb{bottom:762.693333pt;}
.yc4{bottom:763.093333pt;}
.y5f{bottom:770.373333pt;}
.y115{bottom:773.653333pt;}
.y125{bottom:774.453333pt;}
.y7{bottom:777.733333pt;}
.yc3{bottom:778.693333pt;}
.y5e{bottom:785.973333pt;}
.y86{bottom:789.333333pt;}
.y35{bottom:793.653333pt;}
.yc2{bottom:794.373333pt;}
.y114{bottom:797.973333pt;}
.y124{bottom:798.373333pt;}
.ydc{bottom:805.333333pt;}
.ya7{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.yc1{bottom:809.973333pt;}
.y5d{bottom:817.653333pt;}
.y34{bottom:825.253333pt;}
.yc0{bottom:825.653333pt;}
.y5c{bottom:833.253333pt;}
.y33{bottom:840.853333pt;}
.ya6{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y85{bottom:844.853333pt;}
.y5b{bottom:848.853333pt;}
.y32{bottom:856.533333pt;}
.ya5{bottom:856.853333pt;}
.y5a{bottom:864.533333pt;}
.y31{bottom:872.133333pt;}
.ya4{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y59{bottom:880.133333pt;}
.ya3{bottom:888.133333pt;}
.y58{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y30{bottom:903.840000pt;}
.y113{bottom:904.160000pt;}
.y2f{bottom:919.440000pt;}
.y112{bottom:919.840000pt;}
.y2e{bottom:935.040000pt;}
.y84{bottom:935.440000pt;}
.ydb{bottom:939.040000pt;}
.y2d{bottom:950.720000pt;}
.y57{bottom:951.040000pt;}
.yfa{bottom:966.320000pt;}
.y56{bottom:966.720000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h13{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hb{height:39.200000pt;}
.hc{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.ha{height:54.880000pt;}
.h9{height:54.927899pt;}
.he{height:55.631875pt;}
.hd{height:60.961875pt;}
.h4{height:63.128437pt;}
.h14{height:70.560000pt;}
.h15{height:86.160000pt;}
.h16{height:86.186667pt;}
.hf{height:101.760000pt;}
.h12{height:117.440000pt;}
.h11{height:133.040000pt;}
.h10{height:133.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w17{width:59.440000pt;}
.w16{width:76.400000pt;}
.wc{width:82.000000pt;}
.w3{width:98.106667pt;}
.wd{width:105.066667pt;}
.w8{width:109.546667pt;}
.w10{width:112.160000pt;}
.w15{width:115.200000pt;}
.we{width:118.000000pt;}
.wf{width:124.986667pt;}
.w11{width:126.160000pt;}
.w7{width:131.680000pt;}
.w14{width:132.186667pt;}
.w13{width:132.400000pt;}
.w6{width:139.040000pt;}
.w5{width:143.706667pt;}
.w12{width:152.746667pt;}
.w4{width:156.560000pt;}
.w9{width:176.160000pt;}
.wa{width:180.826667pt;}
.wb{width:203.200000pt;}
.w18{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x1{left:60.480000pt;}
.x15{left:98.879988pt;}
.xc{left:143.840000pt;}
.x5{left:159.866667pt;}
.x9{left:171.306667pt;}
.x2{left:180.266655pt;}
.x11{left:214.586667pt;}
.xd{left:249.546667pt;}
.x6{left:317.066667pt;}
.xa{left:348.186667pt;}
.xe{left:368.266667pt;}
.x7{left:461.493333pt;}
.x12{left:480.453333pt;}
.xf{left:493.893333pt;}
.xb{left:529.653333pt;}
.x13{left:596.293333pt;}
.x8{left:601.173333pt;}
.x10{left:606.693333pt;}
.x14{left:673.413333pt;}
.x3{left:704.053322pt;}
}




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