
    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_7d83014716fcdb92a83479b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_78ed1bebff88e55af9ac776a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ea02c9e287fd866708c13e39.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bd6e81e784cb1a9622bdf32e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_9bd9fa7b19d3b575bef62005.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_d57dd0da6ffdbe6f59076460.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_39fa0b914a5af1743e584793.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982910;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_7b5998ece57b5463b8b70d50.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982910;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_5fe8adb5bc314c7bc55be662.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c08fa5a961354018f4b880ca.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v3{vertical-align:-72.144000px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.760000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:27.360000px;}
.ls14{letter-spacing:-2.880000px;}
.ls1c{letter-spacing:-0.828000px;}
.ls29{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.108000px;}
.ls4{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.053280px;}
.ls1a{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.306600px;}
.ls12{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.936000px;}
.ls20{letter-spacing:1.440000px;}
.ls13{letter-spacing:3.600000px;}
.ls23{letter-spacing:4.320000px;}
.ls24{letter-spacing:5.040000px;}
.ls21{letter-spacing:5.760000px;}
.lsc{letter-spacing:6.480000px;}
.ls17{letter-spacing:7.200000px;}
.lse{letter-spacing:7.920000px;}
.ls28{letter-spacing:9.360000px;}
.ls27{letter-spacing:10.080000px;}
.ls6{letter-spacing:10.800000px;}
.ls1{letter-spacing:10.980000px;}
.ls8{letter-spacing:12.960000px;}
.lsb{letter-spacing:13.680000px;}
.lsf{letter-spacing:15.120000px;}
.lsd{letter-spacing:16.560000px;}
.ls10{letter-spacing:19.440000px;}
.ls11{letter-spacing:20.880000px;}
.ls1f{letter-spacing:21.600000px;}
.ls26{letter-spacing:22.320000px;}
.ls7{letter-spacing:36.720000px;}
.ls9{letter-spacing:43.920000px;}
.ls18{letter-spacing:138.360000px;}
.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;}
}
.ws9{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws14{word-spacing:-17.496000px;}
.wsb{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.246600px;}
.ws13{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsf{word-spacing:-13.716000px;}
.ws6{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.ws10{word-spacing:-13.392000px;}
.wse{word-spacing:-12.672000px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws12{word-spacing:-12.060000px;}
.ws2{word-spacing:-9.720000px;}
.wsc{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
._26{margin-left:-5.248320px;}
._b{margin-left:-4.016400px;}
._9{margin-left:-2.419680px;}
._0{margin-left:-1.152000px;}
._1{width:1.128000px;}
._3{width:3.114000px;}
._6{width:4.183200px;}
._a{width:6.084960px;}
._f{width:7.267680px;}
._8{width:9.007440px;}
._4{width:10.474320px;}
._5{width:11.737440px;}
._7{width:12.967920px;}
._1d{width:14.256000px;}
._11{width:15.600000px;}
._10{width:16.776000px;}
._1e{width:19.296000px;}
._18{width:20.736000px;}
._e{width:22.176000px;}
._17{width:23.343360px;}
._13{width:24.763680px;}
._12{width:26.136000px;}
._14{width:27.192960px;}
._22{width:28.846080px;}
._28{width:31.392000px;}
._16{width:33.120000px;}
._15{width:34.128000px;}
._1a{width:36.072000px;}
._19{width:37.363680px;}
._1f{width:43.416000px;}
._20{width:44.892000px;}
._1b{width:49.824000px;}
._1c{width:51.288000px;}
._2{width:58.530720px;}
._21{width:77.832000px;}
._25{width:540.120000px;}
._23{width:566.760000px;}
._24{width:594.180000px;}
._c{width:846.156000px;}
._27{width:847.596000px;}
._d{width:1294.860000px;}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye8{bottom:2.160000px;}
.yb0{bottom:2.880000px;}
.yb2{bottom:3.060000px;}
.y18{bottom:3.240000px;}
.ye{bottom:3.960000px;}
.y9{bottom:4.140000px;}
.yfc{bottom:4.500000px;}
.y28{bottom:5.040000px;}
.yf9{bottom:6.480000px;}
.yf1{bottom:7.020000px;}
.y13{bottom:8.460000px;}
.yd3{bottom:9.000000px;}
.ycc{bottom:9.540000px;}
.y104{bottom:9.720000px;}
.yef{bottom:10.620000px;}
.y39{bottom:12.060000px;}
.y16{bottom:12.240000px;}
.y2c{bottom:12.960000px;}
.ya9{bottom:14.940000px;}
.y24{bottom:16.020000px;}
.y41{bottom:16.380000px;}
.ya3{bottom:18.900000px;}
.y7{bottom:20.520000px;}
.yca{bottom:21.240000px;}
.yf8{bottom:22.320000px;}
.yd{bottom:24.660000px;}
.y10b{bottom:25.020000px;}
.y12{bottom:25.740000px;}
.yd2{bottom:26.280000px;}
.yee{bottom:27.900000px;}
.y38{bottom:29.340000px;}
.y102{bottom:30.240000px;}
.y23{bottom:33.300000px;}
.y40{bottom:33.480000px;}
.y15{bottom:34.785000px;}
.y26{bottom:37.800000px;}
.yc9{bottom:38.520000px;}
.yf7{bottom:39.465000px;}
.y6{bottom:41.220000px;}
.y10a{bottom:42.120000px;}
.y11{bottom:43.020000px;}
.yd1{bottom:43.560000px;}
.yed{bottom:45.180000px;}
.yc{bottom:45.360000px;}
.y37{bottom:46.620000px;}
.y101{bottom:47.340000px;}
.y22{bottom:50.400000px;}
.ya2{bottom:50.580000px;}
.y3f{bottom:50.760000px;}
.y10{bottom:55.080000px;}
.yc8{bottom:55.800000px;}
.y3{bottom:56.700000px;}
.yf6{bottom:56.745000px;}
.y109{bottom:59.400000px;}
.yd0{bottom:60.840000px;}
.y5{bottom:61.920000px;}
.yec{bottom:62.460000px;}
.y36{bottom:63.900000px;}
.y100{bottom:64.620000px;}
.yb{bottom:66.060000px;}
.y21{bottom:67.680000px;}
.y3e{bottom:68.040000px;}
.y2a{bottom:72.360000px;}
.yc7{bottom:73.080000px;}
.yf5{bottom:74.025000px;}
.y44{bottom:75.096000px;}
.y2{bottom:75.636000px;}
.y108{bottom:76.680000px;}
.ycf{bottom:77.940000px;}
.yeb{bottom:79.740000px;}
.y35{bottom:81.180000px;}
.yff{bottom:81.900000px;}
.y20{bottom:84.960000px;}
.y3d{bottom:85.320000px;}
.y29{bottom:89.460000px;}
.yc6{bottom:90.180000px;}
.yf4{bottom:91.305000px;}
.y107{bottom:93.960000px;}
.yce{bottom:95.265000px;}
.yea{bottom:96.840000px;}
.y34{bottom:98.460000px;}
.yfe{bottom:99.180000px;}
.y1f{bottom:102.240000px;}
.y3c{bottom:102.600000px;}
.yc5{bottom:107.460000px;}
.yf3{bottom:108.585000px;}
.y106{bottom:111.240000px;}
.ycd{bottom:112.545000px;}
.ye9{bottom:114.120000px;}
.y33{bottom:115.740000px;}
.yfd{bottom:116.460000px;}
.y1e{bottom:119.520000px;}
.yf2{bottom:125.865000px;}
.y74{bottom:128.196000px;}
.y105{bottom:128.550000px;}
.y32{bottom:132.840000px;}
.ye5{bottom:135.036000px;}
.y1d{bottom:136.800000px;}
.y73{bottom:148.896000px;}
.y31{bottom:150.120000px;}
.y97{bottom:151.590000px;}
.y1c{bottom:153.900000px;}
.ye4{bottom:155.730000px;}
.y30{bottom:167.400000px;}
.y72{bottom:169.590000px;}
.y1b{bottom:171.180000px;}
.y96{bottom:172.290000px;}
.yb1{bottom:175.350000px;}
.ye3{bottom:176.430000px;}
.y2f{bottom:184.680000px;}
.y1a{bottom:188.460000px;}
.y71{bottom:190.290000px;}
.yaf{bottom:191.730000px;}
.y95{bottom:192.990000px;}
.ye2{bottom:197.130000px;}
.y70{bottom:210.990000px;}
.ye1{bottom:217.830000px;}
.yae{bottom:220.530000px;}
.y94{bottom:222.690000px;}
.y6f{bottom:231.690000px;}
.yc2{bottom:236.010000px;}
.ye0{bottom:238.530000px;}
.yad{bottom:248.970000px;}
.ycb{bottom:252.210000px;}
.y6e{bottom:252.390000px;}
.ydf{bottom:268.230000px;}
.yac{bottom:269.670000px;}
.y6d{bottom:273.090000px;}
.y121{bottom:280.290000px;}
.yde{bottom:288.930000px;}
.y6c{bottom:293.790000px;}
.yab{bottom:299.370000px;}
.ydd{bottom:309.630000px;}
.y120{bottom:309.810000px;}
.y6b{bottom:314.490000px;}
.ydc{bottom:330.330000px;}
.y11f{bottom:330.510000px;}
.y6a{bottom:335.190000px;}
.y42{bottom:344.775000px;}
.yaa{bottom:346.575000px;}
.y69{bottom:355.935000px;}
.ydb{bottom:360.075000px;}
.y11e{bottom:360.255000px;}
.ya8{bottom:371.055000px;}
.y2e{bottom:371.415000px;}
.y68{bottom:376.635000px;}
.yc4{bottom:379.515000px;}
.yda{bottom:389.775000px;}
.y11d{bottom:389.955000px;}
.y67{bottom:397.335000px;}
.yd9{bottom:410.475000px;}
.y11c{bottom:410.655000px;}
.y66{bottom:418.035000px;}
.yd8{bottom:431.175000px;}
.y65{bottom:438.555000px;}
.y11b{bottom:440.355000px;}
.y64{bottom:459.255000px;}
.yd7{bottom:460.875000px;}
.y11a{bottom:461.055000px;}
.y63{bottom:479.955000px;}
.y119{bottom:481.755000px;}
.y103{bottom:487.335000px;}
.y93{bottom:488.955000px;}
.y3b{bottom:490.215000px;}
.y62{bottom:500.655000px;}
.yc3{bottom:501.735000px;}
.y3a{bottom:509.655000px;}
.y118{bottom:511.455000px;}
.y92{bottom:518.655000px;}
.y61{bottom:521.355000px;}
.ya7{bottom:529.635000px;}
.y117{bottom:532.155000px;}
.yc1{bottom:533.595000px;}
.y91{bottom:539.355000px;}
.y60{bottom:542.055000px;}
.ya6{bottom:550.335000px;}
.y2d{bottom:552.855000px;}
.y90{bottom:560.055000px;}
.yc0{bottom:561.675000px;}
.y116{bottom:561.855000px;}
.y5f{bottom:562.755000px;}
.ya5{bottom:571.035000px;}
.y8f{bottom:580.755000px;}
.y115{bottom:582.555000px;}
.y5e{bottom:583.455000px;}
.y2b{bottom:585.435000px;}
.ybf{bottom:590.115000px;}
.ya4{bottom:591.735000px;}
.y8e{bottom:601.455000px;}
.y114{bottom:603.255000px;}
.y5d{bottom:604.185000px;}
.ybe{bottom:610.845000px;}
.ya1{bottom:617.505000px;}
.y8d{bottom:622.185000px;}
.y19{bottom:624.885000px;}
.yfb{bottom:630.645000px;}
.ybd{bottom:631.545000px;}
.y113{bottom:632.985000px;}
.y8c{bottom:642.885000px;}
.y5c{bottom:645.585000px;}
.ybc{bottom:652.245000px;}
.y112{bottom:653.685000px;}
.y8b{bottom:663.585000px;}
.y5b{bottom:666.285000px;}
.ybb{bottom:672.945000px;}
.y111{bottom:674.385000px;}
.y8a{bottom:684.285000px;}
.y5a{bottom:686.985000px;}
.yba{bottom:693.645000px;}
.y110{bottom:704.085000px;}
.y89{bottom:704.985000px;}
.y59{bottom:707.685000px;}
.yb9{bottom:714.165000px;}
.y10f{bottom:724.785000px;}
.y88{bottom:725.685000px;}
.y58{bottom:728.385000px;}
.y27{bottom:730.725000px;}
.yb8{bottom:734.865000px;}
.y87{bottom:746.385000px;}
.y57{bottom:749.085000px;}
.y25{bottom:751.965000px;}
.y10e{bottom:754.485000px;}
.yb7{bottom:755.565000px;}
.yfa{bottom:761.865000px;}
.y86{bottom:767.085000px;}
.y56{bottom:769.785000px;}
.yb6{bottom:776.265000px;}
.y10d{bottom:784.185000px;}
.y85{bottom:787.785000px;}
.yd6{bottom:793.725000px;}
.y55{bottom:799.485000px;}
.yb5{bottom:802.005000px;}
.y10c{bottom:804.885000px;}
.y84{bottom:808.485000px;}
.y17{bottom:810.105000px;}
.ya0{bottom:813.885000px;}
.y54{bottom:820.185000px;}
.yd5{bottom:822.165000px;}
.y83{bottom:829.185000px;}
.y9f{bottom:834.585000px;}
.yf0{bottom:839.625000px;}
.y53{bottom:840.885000px;}
.y14{bottom:843.405000px;}
.y82{bottom:849.885000px;}
.y9e{bottom:855.285000px;}
.y52{bottom:861.585000px;}
.y81{bottom:870.630000px;}
.y51{bottom:882.330000px;}
.y9d{bottom:885.030000px;}
.yf{bottom:887.010000px;}
.y80{bottom:891.330000px;}
.y50{bottom:903.030000px;}
.y7f{bottom:912.030000px;}
.y9c{bottom:914.730000px;}
.y4f{bottom:923.730000px;}
.y7e{bottom:932.730000px;}
.y9b{bottom:935.430000px;}
.y4e{bottom:944.430000px;}
.y7d{bottom:953.430000px;}
.y9a{bottom:956.130000px;}
.ya{bottom:956.490000px;}
.y4d{bottom:965.130000px;}
.y7c{bottom:974.130000px;}
.y99{bottom:976.830000px;}
.ye7{bottom:980.250000px;}
.y4c{bottom:985.830000px;}
.y7b{bottom:994.830000px;}
.y98{bottom:997.530000px;}
.y4b{bottom:1006.530000px;}
.y7a{bottom:1015.530000px;}
.y4a{bottom:1027.230000px;}
.y79{bottom:1036.230000px;}
.y8{bottom:1040.010000px;}
.y49{bottom:1047.930000px;}
.y78{bottom:1056.930000px;}
.y4{bottom:1061.250000px;}
.yb4{bottom:1062.690000px;}
.y48{bottom:1068.630000px;}
.y77{bottom:1077.630000px;}
.y47{bottom:1089.330000px;}
.yb3{bottom:1090.590000px;}
.y76{bottom:1098.330000px;}
.ye6{bottom:1109.130000px;}
.y46{bottom:1110.030000px;}
.y75{bottom:1119.030000px;}
.y45{bottom:1139.760000px;}
.yd4{bottom:1141.020000px;}
.y43{bottom:1195.380000px;}
.y1{bottom:1196.820000px;}
.h22{height:15.480000px;}
.h24{height:15.660000px;}
.h18{height:17.280000px;}
.h25{height:18.180000px;}
.h13{height:19.080000px;}
.h7{height:21.240000px;}
.hf{height:26.280000px;}
.h17{height:34.560000px;}
.hd{height:38.158594px;}
.h15{height:38.736000px;}
.hb{height:39.183750px;}
.hc{height:43.596000px;}
.h1b{height:48.088125px;}
.h11{height:49.868086px;}
.h12{height:51.840000px;}
.h23{height:52.998047px;}
.h2{height:55.291992px;}
.he{height:58.651172px;}
.h1c{height:60.082031px;}
.ha{height:60.226875px;}
.h3{height:65.010937px;}
.h20{height:66.757500px;}
.h9{height:69.480000px;}
.h1a{height:70.628906px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.h1d{height:74.704922px;}
.h21{height:74.953125px;}
.h8{height:82.800000px;}
.h4{height:95.256000px;}
.h14{height:103.500000px;}
.h19{height:116.640000px;}
.h26{height:121.500000px;}
.h27{height:126.576000px;}
.h28{height:128.160000px;}
.h2a{height:130.500000px;}
.h29{height:139.716000px;}
.h2b{height:142.416000px;}
.h1f{height:145.620000px;}
.h1e{height:183.420000px;}
.h16{height:207.720000px;}
.h10{height:211.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:62.640000px;}
.w13{width:63.900000px;}
.w10{width:64.260000px;}
.w12{width:65.520000px;}
.w11{width:67.176000px;}
.w14{width:68.256000px;}
.w15{width:68.760000px;}
.wf{width:69.840000px;}
.we{width:69.876000px;}
.wd{width:71.640000px;}
.w1b{width:158.400000px;}
.w21{width:158.790000px;}
.w19{width:158.970000px;}
.w8{width:159.480000px;}
.w1d{width:161.670000px;}
.w1e{width:168.150000px;}
.w17{width:169.020000px;}
.w18{width:169.050000px;}
.w20{width:169.230000px;}
.w1a{width:169.410000px;}
.w1c{width:178.410000px;}
.w1f{width:179.130000px;}
.w5{width:179.850000px;}
.w4{width:185.790000px;}
.w6{width:314.670000px;}
.wb{width:530.565000px;}
.w9{width:531.645000px;}
.w16{width:668.805000px;}
.wa{width:669.525000px;}
.w3{width:680.325000px;}
.w7{width:691.125000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:6.300000px;}
.xc{left:8.100000px;}
.xa{left:14.940000px;}
.x8{left:32.760000px;}
.x22{left:57.954000px;}
.x12{left:80.994000px;}
.x7{left:82.254000px;}
.xd{left:95.796000px;}
.xf{left:100.974000px;}
.x4{left:106.416000px;}
.x6{left:109.434000px;}
.x25{left:111.105000px;}
.x2a{left:115.785000px;}
.x23{left:138.234000px;}
.x28{left:145.794000px;}
.x14{left:148.895987px;}
.x2c{left:151.950000px;}
.x2e{left:153.930000px;}
.x3{left:159.509987px;}
.x31{left:161.130000px;}
.x16{left:170.850000px;}
.x15{left:178.239000px;}
.x19{left:243.030000px;}
.x18{left:250.409987px;}
.x10{left:255.270000px;}
.x29{left:266.250000px;}
.x2f{left:267.330000px;}
.x17{left:268.605000px;}
.x24{left:276.870000px;}
.x9{left:292.215000px;}
.x5{left:311.079000px;}
.x1a{left:313.635000px;}
.xe{left:345.459000px;}
.x13{left:355.754987px;}
.x1{left:372.494987px;}
.x1b{left:384.375000px;}
.x2{left:434.054987px;}
.x2b{left:445.395000px;}
.x26{left:446.835000px;}
.x1c{left:449.535000px;}
.xb{left:472.065000px;}
.x1d{left:517.605000px;}
.x1e{left:583.845000px;}
.x27{left:606.525000px;}
.x2d{left:607.785000px;}
.x30{left:617.145000px;}
.x1f{left:648.465000px;}
.x20{left:717.450000px;}
.x21{left:782.069987px;}
@media print{
.v3{vertical-align:-64.128000pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.120000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:24.320000pt;}
.ls14{letter-spacing:-2.560000pt;}
.ls1c{letter-spacing:-0.736000pt;}
.ls29{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.047360pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.272533pt;}
.ls12{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.832000pt;}
.ls20{letter-spacing:1.280000pt;}
.ls13{letter-spacing:3.200000pt;}
.ls23{letter-spacing:3.840000pt;}
.ls24{letter-spacing:4.480000pt;}
.ls21{letter-spacing:5.120000pt;}
.lsc{letter-spacing:5.760000pt;}
.ls17{letter-spacing:6.400000pt;}
.lse{letter-spacing:7.040000pt;}
.ls28{letter-spacing:8.320000pt;}
.ls27{letter-spacing:8.960000pt;}
.ls6{letter-spacing:9.600000pt;}
.ls1{letter-spacing:9.760000pt;}
.ls8{letter-spacing:11.520000pt;}
.lsb{letter-spacing:12.160000pt;}
.lsf{letter-spacing:13.440000pt;}
.lsd{letter-spacing:14.720000pt;}
.ls10{letter-spacing:17.280000pt;}
.ls11{letter-spacing:18.560000pt;}
.ls1f{letter-spacing:19.200000pt;}
.ls26{letter-spacing:19.840000pt;}
.ls7{letter-spacing:32.640000pt;}
.ls9{letter-spacing:39.040000pt;}
.ls18{letter-spacing:122.986667pt;}
.ws9{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws14{word-spacing:-15.552000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.552533pt;}
.ws13{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsf{word-spacing:-12.192000pt;}
.ws6{word-spacing:-12.005120pt;}
.wsd{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.ws10{word-spacing:-11.904000pt;}
.wse{word-spacing:-11.264000pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws12{word-spacing:-10.720000pt;}
.ws2{word-spacing:-8.640000pt;}
.wsc{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
._26{margin-left:-4.665173pt;}
._b{margin-left:-3.570133pt;}
._9{margin-left:-2.150827pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.002667pt;}
._3{width:2.768000pt;}
._6{width:3.718400pt;}
._a{width:5.408853pt;}
._f{width:6.460160pt;}
._8{width:8.006613pt;}
._4{width:9.310507pt;}
._5{width:10.433280pt;}
._7{width:11.527040pt;}
._1d{width:12.672000pt;}
._11{width:13.866667pt;}
._10{width:14.912000pt;}
._1e{width:17.152000pt;}
._18{width:18.432000pt;}
._e{width:19.712000pt;}
._17{width:20.749653pt;}
._13{width:22.012160pt;}
._12{width:23.232000pt;}
._14{width:24.171520pt;}
._22{width:25.640960pt;}
._28{width:27.904000pt;}
._16{width:29.440000pt;}
._15{width:30.336000pt;}
._1a{width:32.064000pt;}
._19{width:33.212160pt;}
._1f{width:38.592000pt;}
._20{width:39.904000pt;}
._1b{width:44.288000pt;}
._1c{width:45.589333pt;}
._2{width:52.027307pt;}
._21{width:69.184000pt;}
._25{width:480.106667pt;}
._23{width:503.786667pt;}
._24{width:528.160000pt;}
._c{width:752.138667pt;}
._27{width:753.418667pt;}
._d{width:1150.986667pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:1.920000pt;}
.yb0{bottom:2.560000pt;}
.yb2{bottom:2.720000pt;}
.y18{bottom:2.880000pt;}
.ye{bottom:3.520000pt;}
.y9{bottom:3.680000pt;}
.yfc{bottom:4.000000pt;}
.y28{bottom:4.480000pt;}
.yf9{bottom:5.760000pt;}
.yf1{bottom:6.240000pt;}
.y13{bottom:7.520000pt;}
.yd3{bottom:8.000000pt;}
.ycc{bottom:8.480000pt;}
.y104{bottom:8.640000pt;}
.yef{bottom:9.440000pt;}
.y39{bottom:10.720000pt;}
.y16{bottom:10.880000pt;}
.y2c{bottom:11.520000pt;}
.ya9{bottom:13.280000pt;}
.y24{bottom:14.240000pt;}
.y41{bottom:14.560000pt;}
.ya3{bottom:16.800000pt;}
.y7{bottom:18.240000pt;}
.yca{bottom:18.880000pt;}
.yf8{bottom:19.840000pt;}
.yd{bottom:21.920000pt;}
.y10b{bottom:22.240000pt;}
.y12{bottom:22.880000pt;}
.yd2{bottom:23.360000pt;}
.yee{bottom:24.800000pt;}
.y38{bottom:26.080000pt;}
.y102{bottom:26.880000pt;}
.y23{bottom:29.600000pt;}
.y40{bottom:29.760000pt;}
.y15{bottom:30.920000pt;}
.y26{bottom:33.600000pt;}
.yc9{bottom:34.240000pt;}
.yf7{bottom:35.080000pt;}
.y6{bottom:36.640000pt;}
.y10a{bottom:37.440000pt;}
.y11{bottom:38.240000pt;}
.yd1{bottom:38.720000pt;}
.yed{bottom:40.160000pt;}
.yc{bottom:40.320000pt;}
.y37{bottom:41.440000pt;}
.y101{bottom:42.080000pt;}
.y22{bottom:44.800000pt;}
.ya2{bottom:44.960000pt;}
.y3f{bottom:45.120000pt;}
.y10{bottom:48.960000pt;}
.yc8{bottom:49.600000pt;}
.y3{bottom:50.400000pt;}
.yf6{bottom:50.440000pt;}
.y109{bottom:52.800000pt;}
.yd0{bottom:54.080000pt;}
.y5{bottom:55.040000pt;}
.yec{bottom:55.520000pt;}
.y36{bottom:56.800000pt;}
.y100{bottom:57.440000pt;}
.yb{bottom:58.720000pt;}
.y21{bottom:60.160000pt;}
.y3e{bottom:60.480000pt;}
.y2a{bottom:64.320000pt;}
.yc7{bottom:64.960000pt;}
.yf5{bottom:65.800000pt;}
.y44{bottom:66.752000pt;}
.y2{bottom:67.232000pt;}
.y108{bottom:68.160000pt;}
.ycf{bottom:69.280000pt;}
.yeb{bottom:70.880000pt;}
.y35{bottom:72.160000pt;}
.yff{bottom:72.800000pt;}
.y20{bottom:75.520000pt;}
.y3d{bottom:75.840000pt;}
.y29{bottom:79.520000pt;}
.yc6{bottom:80.160000pt;}
.yf4{bottom:81.160000pt;}
.y107{bottom:83.520000pt;}
.yce{bottom:84.680000pt;}
.yea{bottom:86.080000pt;}
.y34{bottom:87.520000pt;}
.yfe{bottom:88.160000pt;}
.y1f{bottom:90.880000pt;}
.y3c{bottom:91.200000pt;}
.yc5{bottom:95.520000pt;}
.yf3{bottom:96.520000pt;}
.y106{bottom:98.880000pt;}
.ycd{bottom:100.040000pt;}
.ye9{bottom:101.440000pt;}
.y33{bottom:102.880000pt;}
.yfd{bottom:103.520000pt;}
.y1e{bottom:106.240000pt;}
.yf2{bottom:111.880000pt;}
.y74{bottom:113.952000pt;}
.y105{bottom:114.266667pt;}
.y32{bottom:118.080000pt;}
.ye5{bottom:120.032000pt;}
.y1d{bottom:121.600000pt;}
.y73{bottom:132.352000pt;}
.y31{bottom:133.440000pt;}
.y97{bottom:134.746667pt;}
.y1c{bottom:136.800000pt;}
.ye4{bottom:138.426667pt;}
.y30{bottom:148.800000pt;}
.y72{bottom:150.746667pt;}
.y1b{bottom:152.160000pt;}
.y96{bottom:153.146667pt;}
.yb1{bottom:155.866667pt;}
.ye3{bottom:156.826667pt;}
.y2f{bottom:164.160000pt;}
.y1a{bottom:167.520000pt;}
.y71{bottom:169.146667pt;}
.yaf{bottom:170.426667pt;}
.y95{bottom:171.546667pt;}
.ye2{bottom:175.226667pt;}
.y70{bottom:187.546667pt;}
.ye1{bottom:193.626667pt;}
.yae{bottom:196.026667pt;}
.y94{bottom:197.946667pt;}
.y6f{bottom:205.946667pt;}
.yc2{bottom:209.786667pt;}
.ye0{bottom:212.026667pt;}
.yad{bottom:221.306667pt;}
.ycb{bottom:224.186667pt;}
.y6e{bottom:224.346667pt;}
.ydf{bottom:238.426667pt;}
.yac{bottom:239.706667pt;}
.y6d{bottom:242.746667pt;}
.y121{bottom:249.146667pt;}
.yde{bottom:256.826667pt;}
.y6c{bottom:261.146667pt;}
.yab{bottom:266.106667pt;}
.ydd{bottom:275.226667pt;}
.y120{bottom:275.386667pt;}
.y6b{bottom:279.546667pt;}
.ydc{bottom:293.626667pt;}
.y11f{bottom:293.786667pt;}
.y6a{bottom:297.946667pt;}
.y42{bottom:306.466667pt;}
.yaa{bottom:308.066667pt;}
.y69{bottom:316.386667pt;}
.ydb{bottom:320.066667pt;}
.y11e{bottom:320.226667pt;}
.ya8{bottom:329.826667pt;}
.y2e{bottom:330.146667pt;}
.y68{bottom:334.786667pt;}
.yc4{bottom:337.346667pt;}
.yda{bottom:346.466667pt;}
.y11d{bottom:346.626667pt;}
.y67{bottom:353.186667pt;}
.yd9{bottom:364.866667pt;}
.y11c{bottom:365.026667pt;}
.y66{bottom:371.586667pt;}
.yd8{bottom:383.266667pt;}
.y65{bottom:389.826667pt;}
.y11b{bottom:391.426667pt;}
.y64{bottom:408.226667pt;}
.yd7{bottom:409.666667pt;}
.y11a{bottom:409.826667pt;}
.y63{bottom:426.626667pt;}
.y119{bottom:428.226667pt;}
.y103{bottom:433.186667pt;}
.y93{bottom:434.626667pt;}
.y3b{bottom:435.746667pt;}
.y62{bottom:445.026667pt;}
.yc3{bottom:445.986667pt;}
.y3a{bottom:453.026667pt;}
.y118{bottom:454.626667pt;}
.y92{bottom:461.026667pt;}
.y61{bottom:463.426667pt;}
.ya7{bottom:470.786667pt;}
.y117{bottom:473.026667pt;}
.yc1{bottom:474.306667pt;}
.y91{bottom:479.426667pt;}
.y60{bottom:481.826667pt;}
.ya6{bottom:489.186667pt;}
.y2d{bottom:491.426667pt;}
.y90{bottom:497.826667pt;}
.yc0{bottom:499.266667pt;}
.y116{bottom:499.426667pt;}
.y5f{bottom:500.226667pt;}
.ya5{bottom:507.586667pt;}
.y8f{bottom:516.226667pt;}
.y115{bottom:517.826667pt;}
.y5e{bottom:518.626667pt;}
.y2b{bottom:520.386667pt;}
.ybf{bottom:524.546667pt;}
.ya4{bottom:525.986667pt;}
.y8e{bottom:534.626667pt;}
.y114{bottom:536.226667pt;}
.y5d{bottom:537.053333pt;}
.ybe{bottom:542.973333pt;}
.ya1{bottom:548.893333pt;}
.y8d{bottom:553.053333pt;}
.y19{bottom:555.453333pt;}
.yfb{bottom:560.573333pt;}
.ybd{bottom:561.373333pt;}
.y113{bottom:562.653333pt;}
.y8c{bottom:571.453333pt;}
.y5c{bottom:573.853333pt;}
.ybc{bottom:579.773333pt;}
.y112{bottom:581.053333pt;}
.y8b{bottom:589.853333pt;}
.y5b{bottom:592.253333pt;}
.ybb{bottom:598.173333pt;}
.y111{bottom:599.453333pt;}
.y8a{bottom:608.253333pt;}
.y5a{bottom:610.653333pt;}
.yba{bottom:616.573333pt;}
.y110{bottom:625.853333pt;}
.y89{bottom:626.653333pt;}
.y59{bottom:629.053333pt;}
.yb9{bottom:634.813333pt;}
.y10f{bottom:644.253333pt;}
.y88{bottom:645.053333pt;}
.y58{bottom:647.453333pt;}
.y27{bottom:649.533333pt;}
.yb8{bottom:653.213333pt;}
.y87{bottom:663.453333pt;}
.y57{bottom:665.853333pt;}
.y25{bottom:668.413333pt;}
.y10e{bottom:670.653333pt;}
.yb7{bottom:671.613333pt;}
.yfa{bottom:677.213333pt;}
.y86{bottom:681.853333pt;}
.y56{bottom:684.253333pt;}
.yb6{bottom:690.013333pt;}
.y10d{bottom:697.053333pt;}
.y85{bottom:700.253333pt;}
.yd6{bottom:705.533333pt;}
.y55{bottom:710.653333pt;}
.yb5{bottom:712.893333pt;}
.y10c{bottom:715.453333pt;}
.y84{bottom:718.653333pt;}
.y17{bottom:720.093333pt;}
.ya0{bottom:723.453333pt;}
.y54{bottom:729.053333pt;}
.yd5{bottom:730.813333pt;}
.y83{bottom:737.053333pt;}
.y9f{bottom:741.853333pt;}
.yf0{bottom:746.333333pt;}
.y53{bottom:747.453333pt;}
.y14{bottom:749.693333pt;}
.y82{bottom:755.453333pt;}
.y9e{bottom:760.253333pt;}
.y52{bottom:765.853333pt;}
.y81{bottom:773.893333pt;}
.y51{bottom:784.293333pt;}
.y9d{bottom:786.693333pt;}
.yf{bottom:788.453333pt;}
.y80{bottom:792.293333pt;}
.y50{bottom:802.693333pt;}
.y7f{bottom:810.693333pt;}
.y9c{bottom:813.093333pt;}
.y4f{bottom:821.093333pt;}
.y7e{bottom:829.093333pt;}
.y9b{bottom:831.493333pt;}
.y4e{bottom:839.493333pt;}
.y7d{bottom:847.493333pt;}
.y9a{bottom:849.893333pt;}
.ya{bottom:850.213333pt;}
.y4d{bottom:857.893333pt;}
.y7c{bottom:865.893333pt;}
.y99{bottom:868.293333pt;}
.ye7{bottom:871.333333pt;}
.y4c{bottom:876.293333pt;}
.y7b{bottom:884.293333pt;}
.y98{bottom:886.693333pt;}
.y4b{bottom:894.693333pt;}
.y7a{bottom:902.693333pt;}
.y4a{bottom:913.093333pt;}
.y79{bottom:921.093333pt;}
.y8{bottom:924.453333pt;}
.y49{bottom:931.493333pt;}
.y78{bottom:939.493333pt;}
.y4{bottom:943.333333pt;}
.yb4{bottom:944.613333pt;}
.y48{bottom:949.893333pt;}
.y77{bottom:957.893333pt;}
.y47{bottom:968.293333pt;}
.yb3{bottom:969.413333pt;}
.y76{bottom:976.293333pt;}
.ye6{bottom:985.893333pt;}
.y46{bottom:986.693333pt;}
.y75{bottom:994.693333pt;}
.y45{bottom:1013.120000pt;}
.yd4{bottom:1014.240000pt;}
.y43{bottom:1062.560000pt;}
.y1{bottom:1063.840000pt;}
.h22{height:13.760000pt;}
.h24{height:13.920000pt;}
.h18{height:15.360000pt;}
.h25{height:16.160000pt;}
.h13{height:16.960000pt;}
.h7{height:18.880000pt;}
.hf{height:23.360000pt;}
.h17{height:30.720000pt;}
.hd{height:33.918750pt;}
.h15{height:34.432000pt;}
.hb{height:34.830000pt;}
.hc{height:38.752000pt;}
.h1b{height:42.745000pt;}
.h11{height:44.327188pt;}
.h12{height:46.080000pt;}
.h23{height:47.109375pt;}
.h2{height:49.148438pt;}
.he{height:52.134375pt;}
.h1c{height:53.406250pt;}
.ha{height:53.535000pt;}
.h3{height:57.787500pt;}
.h20{height:59.340000pt;}
.h9{height:61.760000pt;}
.h1a{height:62.781250pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.h1d{height:66.404375pt;}
.h21{height:66.625000pt;}
.h8{height:73.600000pt;}
.h4{height:84.672000pt;}
.h14{height:92.000000pt;}
.h19{height:103.680000pt;}
.h26{height:108.000000pt;}
.h27{height:112.512000pt;}
.h28{height:113.920000pt;}
.h2a{height:116.000000pt;}
.h29{height:124.192000pt;}
.h2b{height:126.592000pt;}
.h1f{height:129.440000pt;}
.h1e{height:163.040000pt;}
.h16{height:184.640000pt;}
.h10{height:188.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:55.680000pt;}
.w13{width:56.800000pt;}
.w10{width:57.120000pt;}
.w12{width:58.240000pt;}
.w11{width:59.712000pt;}
.w14{width:60.672000pt;}
.w15{width:61.120000pt;}
.wf{width:62.080000pt;}
.we{width:62.112000pt;}
.wd{width:63.680000pt;}
.w1b{width:140.800000pt;}
.w21{width:141.146667pt;}
.w19{width:141.306667pt;}
.w8{width:141.760000pt;}
.w1d{width:143.706667pt;}
.w1e{width:149.466667pt;}
.w17{width:150.240000pt;}
.w18{width:150.266667pt;}
.w20{width:150.426667pt;}
.w1a{width:150.586667pt;}
.w1c{width:158.586667pt;}
.w1f{width:159.226667pt;}
.w5{width:159.866667pt;}
.w4{width:165.146667pt;}
.w6{width:279.706667pt;}
.wb{width:471.613333pt;}
.w9{width:472.573333pt;}
.w16{width:594.493333pt;}
.wa{width:595.133333pt;}
.w3{width:604.733333pt;}
.w7{width:614.333333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.600000pt;}
.xc{left:7.200000pt;}
.xa{left:13.280000pt;}
.x8{left:29.120000pt;}
.x22{left:51.514667pt;}
.x12{left:71.994667pt;}
.x7{left:73.114667pt;}
.xd{left:85.152000pt;}
.xf{left:89.754667pt;}
.x4{left:94.592000pt;}
.x6{left:97.274667pt;}
.x25{left:98.760000pt;}
.x2a{left:102.920000pt;}
.x23{left:122.874667pt;}
.x28{left:129.594667pt;}
.x14{left:132.351988pt;}
.x2c{left:135.066667pt;}
.x2e{left:136.826667pt;}
.x3{left:141.786655pt;}
.x31{left:143.226667pt;}
.x16{left:151.866667pt;}
.x15{left:158.434667pt;}
.x19{left:216.026667pt;}
.x18{left:222.586655pt;}
.x10{left:226.906667pt;}
.x29{left:236.666667pt;}
.x2f{left:237.626667pt;}
.x17{left:238.760000pt;}
.x24{left:246.106667pt;}
.x9{left:259.746667pt;}
.x5{left:276.514667pt;}
.x1a{left:278.786667pt;}
.xe{left:307.074667pt;}
.x13{left:316.226655pt;}
.x1{left:331.106655pt;}
.x1b{left:341.666667pt;}
.x2{left:385.826655pt;}
.x2b{left:395.906667pt;}
.x26{left:397.186667pt;}
.x1c{left:399.586667pt;}
.xb{left:419.613333pt;}
.x1d{left:460.093333pt;}
.x1e{left:518.973333pt;}
.x27{left:539.133333pt;}
.x2d{left:540.253333pt;}
.x30{left:548.573333pt;}
.x1f{left:576.413333pt;}
.x20{left:637.733333pt;}
.x21{left:695.173322pt;}
}




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