
    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_bac9b41c65208082a7281f0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_6833dfc1965ed6ff4846d9f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_47a194edf9231948a1d358a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050781;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_d9d0821ace94ba09014e67a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_f2db34efc51c91f32241aab4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.988281;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_db9d24bf9f1f0ca50853f65a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.196289;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_3baa08f97630fae45f13945b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.196289;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_2c3580b55084a5bbacf2bcb0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988281;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_3798d648905f4abf2ce43825.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.877930;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_e541ba70ac7e4767e4a85a27.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.988281;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:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cd497abd6215d3e4724bb76a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6168ae449a1417e03d4d080a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.988281;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:ffe;src:url('chunks/assets/font_440ebd234126521b8553b7b3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708008;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:fff;src:url('chunks/assets/font_bd965d922c5cd2775ad986ea.woff2')format("woff");}.fff{font-family:fff;line-height:1.052734;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:ff10;src:url('chunks/assets/font_6652bdde7cbc7a730c76889e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.988281;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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.149760px;}
.ls17{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.576000px;}
.lsf{letter-spacing:1.008000px;}
.ls13{letter-spacing:1.152000px;}
.ls16{letter-spacing:8.496000px;}
.lse{letter-spacing:11.304000px;}
.ls10{letter-spacing:11.808000px;}
.lsd{letter-spacing:12.024000px;}
.ls0{letter-spacing:15.269760px;}
.ls12{letter-spacing:49.968000px;}
.ls15{letter-spacing:52.128000px;}
.ls7{letter-spacing:54.840000px;}
.lsc{letter-spacing:127.560000px;}
.ls11{letter-spacing:350.928000px;}
.ls2{letter-spacing:841.404000px;}
.ls14{letter-spacing:860.148000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(13,13,13),0 0.015em rgb(13,13,13),0.015em 0 rgb(13,13,13),0 -0.015em  rgb(13,13,13);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(13,13,13);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-72.000000px;}
.ws7{word-spacing:-24.048000px;}
.ws3{word-spacing:-23.904000px;}
.ws6{word-spacing:-23.832000px;}
.ws8{word-spacing:-23.328000px;}
.ws1{word-spacing:-22.752000px;}
.ws4{word-spacing:-22.608000px;}
.ws0{word-spacing:-14.970240px;}
.ws2{word-spacing:0.000000px;}
._32{margin-left:-19.872000px;}
._22{margin-left:-5.976000px;}
._21{margin-left:-4.896000px;}
._3{margin-left:-3.706560px;}
._0{margin-left:-2.592000px;}
._2{margin-left:-1.313280px;}
._1{width:1.728000px;}
._4{width:3.168000px;}
._5{width:4.176000px;}
._c{width:5.256000px;}
._1a{width:6.696000px;}
._6{width:8.424000px;}
._24{width:9.432000px;}
._16{width:10.728000px;}
._17{width:11.736000px;}
._e{width:13.409280px;}
._d{width:14.616000px;}
._12{width:15.624000px;}
._13{width:16.805280px;}
._20{width:17.813280px;}
._18{width:19.008000px;}
._19{width:20.177280px;}
._27{width:21.528000px;}
._1f{width:24.048000px;}
._1d{width:25.776000px;}
._23{width:27.432000px;}
._b{width:28.872000px;}
._2d{width:30.312000px;}
._37{width:31.536000px;}
._f{width:32.688000px;}
._25{width:33.840000px;}
._a{width:35.369280px;}
._9{width:36.432000px;}
._2c{width:37.440000px;}
._26{width:38.664000px;}
._30{width:39.888000px;}
._2a{width:40.901280px;}
._31{width:42.601440px;}
._29{width:44.297280px;}
._28{width:45.360000px;}
._39{width:46.385280px;}
._38{width:47.664000px;}
._34{width:49.608000px;}
._8{width:50.633280px;}
._7{width:51.696000px;}
._2b{width:53.074560px;}
._1c{width:54.720000px;}
._1b{width:55.728000px;}
._3a{width:57.329280px;}
._3e{width:59.741280px;}
._3d{width:60.840000px;}
._11{width:63.576000px;}
._10{width:64.872000px;}
._15{width:66.456000px;}
._14{width:67.680000px;}
._35{width:69.048000px;}
._36{width:70.493280px;}
._40{width:78.336000px;}
._2e{width:102.144000px;}
._1e{width:176.832000px;}
._2f{width:183.384000px;}
._33{width:201.384000px;}
._3b{width:350.424000px;}
._3c{width:351.948000px;}
._3f{width:859.824000px;}
.fc8{color:rgb(238,0,0);}
.fc7{color:rgb(5,99,193);}
.fc6{color:transparent;}
.fc5{color:rgb(68,114,196);}
.fc3{color:rgb(169,209,142);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:120.240000px;}
.fs3{font-size:120.384000px;}
.fs2{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:3.765000px;}
.y28{bottom:3.795000px;}
.yb2{bottom:3.945000px;}
.yab{bottom:3.960000px;}
.y68{bottom:3.975000px;}
.yeb{bottom:4.125000px;}
.yac{bottom:4.140000px;}
.yba{bottom:4.155000px;}
.yc1{bottom:4.320000px;}
.yc0{bottom:4.680000px;}
.yc6{bottom:4.860000px;}
.yda{bottom:5.760000px;}
.ydd{bottom:5.940000px;}
.yd9{bottom:7.740000px;}
.ydc{bottom:8.100000px;}
.yd5{bottom:8.640000px;}
.ybb{bottom:10.635000px;}
.yd{bottom:12.750000px;}
.yb0{bottom:14.385000px;}
.yc4{bottom:14.400000px;}
.yee{bottom:14.565000px;}
.ybe{bottom:14.580000px;}
.ye8{bottom:14.610000px;}
.y6a{bottom:14.775000px;}
.ye9{bottom:14.790000px;}
.y9{bottom:18.171000px;}
.y30{bottom:18.531000px;}
.yd2{bottom:18.900000px;}
.yd3{bottom:19.080000px;}
.yef{bottom:25.005000px;}
.yc3{bottom:25.020000px;}
.yae{bottom:25.050000px;}
.y27{bottom:25.065000px;}
.yed{bottom:25.185000px;}
.ybd{bottom:25.200000px;}
.y67{bottom:25.215000px;}
.yea{bottom:25.230000px;}
.yd7{bottom:29.010000px;}
.yd4{bottom:29.700000px;}
.y34{bottom:37.635000px;}
.y2d{bottom:37.905000px;}
.y8{bottom:38.331000px;}
.y7{bottom:40.005000px;}
.y26{bottom:46.305000px;}
.yec{bottom:46.425000px;}
.yc{bottom:49.680000px;}
.y2f{bottom:54.171000px;}
.y6{bottom:58.536000px;}
.y33{bottom:64.635000px;}
.y25{bottom:67.545000px;}
.y2c{bottom:76.605000px;}
.y2e{bottom:76.725000px;}
.y5{bottom:78.696000px;}
.y24{bottom:88.785000px;}
.y32{bottom:91.275000px;}
.yb{bottom:96.120000px;}
.y23{bottom:109.845000px;}
.y66{bottom:110.025000px;}
.yf2{bottom:113.076000px;}
.y2b{bottom:115.305000px;}
.y116{bottom:118.656000px;}
.yb8{bottom:123.156000px;}
.ya8{bottom:123.696000px;}
.y117{bottom:125.316000px;}
.y22{bottom:131.085000px;}
.y65{bottom:131.265000px;}
.yf1{bottom:134.316000px;}
.y5c{bottom:138.816000px;}
.y115{bottom:139.896000px;}
.yb7{bottom:144.576000px;}
.ya7{bottom:144.756000px;}
.y92{bottom:146.556000px;}
.y21{bottom:152.325000px;}
.y2a{bottom:154.005000px;}
.yf0{bottom:155.550000px;}
.y5b{bottom:159.870000px;}
.y114{bottom:160.950000px;}
.yb6{bottom:165.450000px;}
.ya6{bottom:165.990000px;}
.y91{bottom:167.790000px;}
.y20{bottom:173.565000px;}
.y5a{bottom:181.110000px;}
.y113{bottom:182.190000px;}
.yb5{bottom:186.690000px;}
.ya5{bottom:187.230000px;}
.y90{bottom:189.030000px;}
.y1f{bottom:194.625000px;}
.y64{bottom:194.805000px;}
.y59{bottom:202.350000px;}
.y112{bottom:203.430000px;}
.yb4{bottom:207.930000px;}
.ya4{bottom:208.470000px;}
.y8f{bottom:210.090000px;}
.y1e{bottom:215.865000px;}
.y63{bottom:216.045000px;}
.y58{bottom:223.590000px;}
.y111{bottom:224.670000px;}
.yb3{bottom:229.170000px;}
.ya3{bottom:229.530000px;}
.y8e{bottom:231.330000px;}
.y1d{bottom:237.105000px;}
.y57{bottom:244.650000px;}
.y110{bottom:245.910000px;}
.yb1{bottom:247.185000px;}
.ya2{bottom:250.770000px;}
.y8d{bottom:252.570000px;}
.y1c{bottom:258.345000px;}
.y56{bottom:265.890000px;}
.y10f{bottom:266.970000px;}
.yad{bottom:268.425000px;}
.ya1{bottom:272.010000px;}
.y8c{bottom:273.810000px;}
.y1b{bottom:279.450000px;}
.y62{bottom:279.585000px;}
.ye7{bottom:280.305000px;}
.y55{bottom:287.130000px;}
.y10e{bottom:288.255000px;}
.ya0{bottom:293.295000px;}
.y8b{bottom:295.095000px;}
.y1a{bottom:300.690000px;}
.y61{bottom:300.870000px;}
.y54{bottom:308.415000px;}
.y10d{bottom:309.495000px;}
.yaa{bottom:311.475000px;}
.y9f{bottom:314.535000px;}
.y8a{bottom:316.155000px;}
.y19{bottom:321.930000px;}
.y60{bottom:322.110000px;}
.y118{bottom:325.335000px;}
.ye6{bottom:327.495000px;}
.y53{bottom:329.655000px;}
.y10c{bottom:330.735000px;}
.y9e{bottom:335.595000px;}
.y89{bottom:337.395000px;}
.y18{bottom:343.170000px;}
.ye5{bottom:348.555000px;}
.y52{bottom:350.715000px;}
.y10b{bottom:351.795000px;}
.y9d{bottom:356.835000px;}
.y88{bottom:358.635000px;}
.ya9{bottom:358.815000px;}
.y17{bottom:364.410000px;}
.ye4{bottom:369.795000px;}
.y51{bottom:371.955000px;}
.y10a{bottom:373.035000px;}
.y9c{bottom:378.075000px;}
.y87{bottom:379.875000px;}
.y16{bottom:385.470000px;}
.y5e{bottom:385.635000px;}
.ye3{bottom:391.035000px;}
.y50{bottom:393.195000px;}
.y9b{bottom:399.315000px;}
.y86{bottom:400.935000px;}
.y15{bottom:406.710000px;}
.ye2{bottom:412.095000px;}
.y109{bottom:412.995000px;}
.y4f{bottom:414.435000px;}
.y9a{bottom:420.375000px;}
.y85{bottom:422.175000px;}
.y14{bottom:427.950000px;}
.ye1{bottom:433.335000px;}
.y4e{bottom:435.495000px;}
.y108{bottom:439.095000px;}
.y99{bottom:441.615000px;}
.y84{bottom:443.415000px;}
.y12{bottom:449.175000px;}
.ye0{bottom:454.575000px;}
.y4d{bottom:456.735000px;}
.y107{bottom:460.335000px;}
.y98{bottom:462.675000px;}
.y83{bottom:464.655000px;}
.ydf{bottom:475.815000px;}
.y4c{bottom:477.975000px;}
.y106{bottom:481.395000px;}
.y97{bottom:484.635000px;}
.y82{bottom:485.895000px;}
.yde{bottom:497.055000px;}
.y4b{bottom:499.215000px;}
.y105{bottom:502.455000px;}
.y96{bottom:505.695000px;}
.y81{bottom:506.955000px;}
.ydb{bottom:515.055000px;}
.y5f{bottom:515.580000px;}
.y5d{bottom:515.595000px;}
.y4a{bottom:520.455000px;}
.y104{bottom:523.695000px;}
.y95{bottom:527.655000px;}
.y80{bottom:528.195000px;}
.yd6{bottom:540.435000px;}
.y49{bottom:541.515000px;}
.y13{bottom:541.860000px;}
.y11{bottom:541.875000px;}
.y103{bottom:544.935000px;}
.y94{bottom:548.925000px;}
.y7f{bottom:549.465000px;}
.yd8{bottom:561.705000px;}
.y48{bottom:562.785000px;}
.y102{bottom:566.205000px;}
.y93{bottom:569.985000px;}
.y7e{bottom:570.705000px;}
.y29{bottom:574.740000px;}
.y47{bottom:584.025000px;}
.y101{bottom:587.265000px;}
.yd1{bottom:587.445000px;}
.y7d{bottom:591.765000px;}
.y46{bottom:605.265000px;}
.y100{bottom:608.505000px;}
.y7c{bottom:613.005000px;}
.y45{bottom:626.325000px;}
.yff{bottom:626.505000px;}
.y7b{bottom:634.245000px;}
.yd0{bottom:643.605000px;}
.y44{bottom:647.565000px;}
.yfe{bottom:648.465000px;}
.y7a{bottom:655.485000px;}
.ycf{bottom:664.665000px;}
.y43{bottom:668.805000px;}
.yfd{bottom:674.565000px;}
.y79{bottom:676.545000px;}
.yce{bottom:685.905000px;}
.y42{bottom:690.045000px;}
.yfc{bottom:695.805000px;}
.y78{bottom:697.785000px;}
.ycd{bottom:706.965000px;}
.y41{bottom:711.105000px;}
.yfb{bottom:716.865000px;}
.y77{bottom:719.025000px;}
.ycc{bottom:728.205000px;}
.y40{bottom:732.345000px;}
.yfa{bottom:737.925000px;}
.y76{bottom:740.265000px;}
.ycb{bottom:749.445000px;}
.y3f{bottom:753.585000px;}
.yf9{bottom:759.165000px;}
.y75{bottom:761.505000px;}
.yca{bottom:770.685000px;}
.y3e{bottom:774.825000px;}
.yf8{bottom:780.405000px;}
.y74{bottom:782.565000px;}
.yc9{bottom:791.745000px;}
.y3d{bottom:796.065000px;}
.yf7{bottom:801.645000px;}
.y73{bottom:803.805000px;}
.yc8{bottom:813.030000px;}
.y3c{bottom:817.170000px;}
.yf6{bottom:819.690000px;}
.y72{bottom:825.090000px;}
.yc7{bottom:834.270000px;}
.y3b{bottom:838.410000px;}
.y31{bottom:839.475000px;}
.yf5{bottom:841.650000px;}
.y71{bottom:846.330000px;}
.yc5{bottom:852.270000px;}
.y3a{bottom:859.650000px;}
.y70{bottom:867.390000px;}
.yf4{bottom:867.570000px;}
.yc2{bottom:875.130000px;}
.y39{bottom:880.890000px;}
.y6f{bottom:888.630000px;}
.yf3{bottom:888.810000px;}
.y69{bottom:890.415000px;}
.y38{bottom:901.950000px;}
.y6e{bottom:909.870000px;}
.ybf{bottom:918.330000px;}
.y10{bottom:924.990000px;}
.y6d{bottom:931.110000px;}
.y37{bottom:936.870000px;}
.ybc{bottom:940.290000px;}
.y6c{bottom:952.350000px;}
.yf{bottom:959.730000px;}
.y36{bottom:971.790000px;}
.y6b{bottom:973.410000px;}
.yb9{bottom:983.475000px;}
.y35{bottom:994.470000px;}
.ye{bottom:994.650000px;}
.ya{bottom:1033.560000px;}
.y4{bottom:1058.010000px;}
.y3{bottom:1078.200000px;}
.y2{bottom:1098.360000px;}
.y1{bottom:1118.520000px;}
.h14{height:21.225000px;}
.h21{height:21.240000px;}
.h1e{height:21.270000px;}
.h18{height:21.945000px;}
.h1a{height:22.125000px;}
.h1d{height:25.020000px;}
.h1f{height:25.365000px;}
.h16{height:27.720000px;}
.h11{height:36.360000px;}
.h19{height:42.285000px;}
.h15{height:42.321000px;}
.h17{height:42.465000px;}
.h1c{height:46.290000px;}
.h1b{height:51.300000px;}
.h2{height:53.820000px;}
.h7{height:56.390625px;}
.h22{height:60.679688px;}
.h20{height:63.705000px;}
.h1{height:65.884219px;}
.hb{height:65.977031px;}
.h12{height:72.064687px;}
.h13{height:74.004654px;}
.hc{height:74.880000px;}
.hd{height:86.255508px;}
.h6{height:90.180000px;}
.h5{height:90.288000px;}
.he{height:131.040000px;}
.h3{height:141.840000px;}
.h4{height:162.000000px;}
.ha{height:193.860000px;}
.hf{height:402.900000px;}
.h10{height:402.915000px;}
.h8{height:466.440000px;}
.h9{height:466.455000px;}
.h0{height:1188.000000px;}
.w25{width:0.524985px;}
.w1{width:25.200000px;}
.w1b{width:34.185000px;}
.w18{width:34.200000px;}
.w1a{width:39.945000px;}
.w4{width:40.485000px;}
.w22{width:51.105000px;}
.w19{width:51.156000px;}
.w1d{width:51.285000px;}
.w23{width:51.321000px;}
.w21{width:51.336000px;}
.w1c{width:64.245000px;}
.w20{width:68.940000px;}
.w24{width:78.825000px;}
.w17{width:81.180000px;}
.w1e{width:95.421000px;}
.w14{width:103.485000px;}
.wf{width:103.500000px;}
.w13{width:103.536000px;}
.w10{width:103.545000px;}
.wc{width:122.616000px;}
.wb{width:122.760000px;}
.w29{width:138.621000px;}
.w15{width:151.755000px;}
.w11{width:151.770000px;}
.wd{width:180.735000px;}
.w27{width:183.615000px;}
.w28{width:185.970000px;}
.w26{width:193.851000px;}
.w3{width:196.575000px;}
.w9{width:207.570000px;}
.w12{width:239.781000px;}
.we{width:239.790000px;}
.w16{width:250.401000px;}
.wa{width:275.961000px;}
.w1f{width:280.281000px;}
.w7{width:324.195000px;}
.w8{width:324.210000px;}
.w2{width:449.640000px;}
.w5{width:487.080000px;}
.w6{width:560.640000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:7.725000px;}
.x9{left:9.165000px;}
.xa{left:10.245000px;}
.x4{left:28.110000px;}
.xb{left:30.225000px;}
.x10{left:35.820000px;}
.xe{left:45.000000px;}
.x11{left:49.500000px;}
.x17{left:53.985000px;}
.xd{left:71.640000px;}
.x5{left:100.515000px;}
.x6{left:103.935000px;}
.x1{left:108.036000px;}
.x13{left:119.736000px;}
.x19{left:135.036000px;}
.x18{left:162.030000px;}
.x12{left:172.110000px;}
.x3{left:230.580000px;}
.x32{left:301.905000px;}
.x14{left:306.975000px;}
.x1d{left:347.835000px;}
.x21{left:358.455000px;}
.x1a{left:384.015000px;}
.x29{left:388.335000px;}
.x22{left:439.635000px;}
.x2{left:446.475000px;}
.x1e{left:451.335000px;}
.x2a{left:457.275000px;}
.x15{left:459.075000px;}
.xf{left:461.595000px;}
.x23{left:473.835000px;}
.x33{left:485.535000px;}
.x2b{left:491.475000px;}
.x1b{left:506.775000px;}
.x16{left:512.940000px;}
.x24{left:525.000000px;}
.x2c{left:542.820000px;}
.x1f{left:554.880000px;}
.x25{left:564.960000px;}
.x2d{left:594.120000px;}
.x26{left:599.160000px;}
.x7{left:625.800000px;}
.x2e{left:628.320000px;}
.x1c{left:629.400000px;}
.x20{left:658.380000px;}
.x27{left:663.420000px;}
.x34{left:671.520000px;}
.x2f{left:679.440000px;}
.x28{left:714.720000px;}
.x30{left:730.770000px;}
.x31{left:809.610000px;}
.xc{left:822.390000px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133120pt;}
.ls17{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.896000pt;}
.ls13{letter-spacing:1.024000pt;}
.ls16{letter-spacing:7.552000pt;}
.lse{letter-spacing:10.048000pt;}
.ls10{letter-spacing:10.496000pt;}
.lsd{letter-spacing:10.688000pt;}
.ls0{letter-spacing:13.573120pt;}
.ls12{letter-spacing:44.416000pt;}
.ls15{letter-spacing:46.336000pt;}
.ls7{letter-spacing:48.746667pt;}
.lsc{letter-spacing:113.386667pt;}
.ls11{letter-spacing:311.936000pt;}
.ls2{letter-spacing:747.914667pt;}
.ls14{letter-spacing:764.576000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws7{word-spacing:-21.376000pt;}
.ws3{word-spacing:-21.248000pt;}
.ws6{word-spacing:-21.184000pt;}
.ws8{word-spacing:-20.736000pt;}
.ws1{word-spacing:-20.224000pt;}
.ws4{word-spacing:-20.096000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws2{word-spacing:0.000000pt;}
._32{margin-left:-17.664000pt;}
._22{margin-left:-5.312000pt;}
._21{margin-left:-4.352000pt;}
._3{margin-left:-3.294720pt;}
._0{margin-left:-2.304000pt;}
._2{margin-left:-1.167360pt;}
._1{width:1.536000pt;}
._4{width:2.816000pt;}
._5{width:3.712000pt;}
._c{width:4.672000pt;}
._1a{width:5.952000pt;}
._6{width:7.488000pt;}
._24{width:8.384000pt;}
._16{width:9.536000pt;}
._17{width:10.432000pt;}
._e{width:11.919360pt;}
._d{width:12.992000pt;}
._12{width:13.888000pt;}
._13{width:14.938027pt;}
._20{width:15.834027pt;}
._18{width:16.896000pt;}
._19{width:17.935360pt;}
._27{width:19.136000pt;}
._1f{width:21.376000pt;}
._1d{width:22.912000pt;}
._23{width:24.384000pt;}
._b{width:25.664000pt;}
._2d{width:26.944000pt;}
._37{width:28.032000pt;}
._f{width:29.056000pt;}
._25{width:30.080000pt;}
._a{width:31.439360pt;}
._9{width:32.384000pt;}
._2c{width:33.280000pt;}
._26{width:34.368000pt;}
._30{width:35.456000pt;}
._2a{width:36.356693pt;}
._31{width:37.867947pt;}
._29{width:39.375360pt;}
._28{width:40.320000pt;}
._39{width:41.231360pt;}
._38{width:42.368000pt;}
._34{width:44.096000pt;}
._8{width:45.007360pt;}
._7{width:45.952000pt;}
._2b{width:47.177387pt;}
._1c{width:48.640000pt;}
._1b{width:49.536000pt;}
._3a{width:50.959360pt;}
._3e{width:53.103360pt;}
._3d{width:54.080000pt;}
._11{width:56.512000pt;}
._10{width:57.664000pt;}
._15{width:59.072000pt;}
._14{width:60.160000pt;}
._35{width:61.376000pt;}
._36{width:62.660693pt;}
._40{width:69.632000pt;}
._2e{width:90.794667pt;}
._1e{width:157.184000pt;}
._2f{width:163.008000pt;}
._33{width:179.008000pt;}
._3b{width:311.488000pt;}
._3c{width:312.842667pt;}
._3f{width:764.288000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:106.880000pt;}
.fs3{font-size:107.008000pt;}
.fs2{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:3.346667pt;}
.y28{bottom:3.373333pt;}
.yb2{bottom:3.506667pt;}
.yab{bottom:3.520000pt;}
.y68{bottom:3.533333pt;}
.yeb{bottom:3.666667pt;}
.yac{bottom:3.680000pt;}
.yba{bottom:3.693333pt;}
.yc1{bottom:3.840000pt;}
.yc0{bottom:4.160000pt;}
.yc6{bottom:4.320000pt;}
.yda{bottom:5.120000pt;}
.ydd{bottom:5.280000pt;}
.yd9{bottom:6.880000pt;}
.ydc{bottom:7.200000pt;}
.yd5{bottom:7.680000pt;}
.ybb{bottom:9.453333pt;}
.yd{bottom:11.333333pt;}
.yb0{bottom:12.786667pt;}
.yc4{bottom:12.800000pt;}
.yee{bottom:12.946667pt;}
.ybe{bottom:12.960000pt;}
.ye8{bottom:12.986667pt;}
.y6a{bottom:13.133333pt;}
.ye9{bottom:13.146667pt;}
.y9{bottom:16.152000pt;}
.y30{bottom:16.472000pt;}
.yd2{bottom:16.800000pt;}
.yd3{bottom:16.960000pt;}
.yef{bottom:22.226667pt;}
.yc3{bottom:22.240000pt;}
.yae{bottom:22.266667pt;}
.y27{bottom:22.280000pt;}
.yed{bottom:22.386667pt;}
.ybd{bottom:22.400000pt;}
.y67{bottom:22.413333pt;}
.yea{bottom:22.426667pt;}
.yd7{bottom:25.786667pt;}
.yd4{bottom:26.400000pt;}
.y34{bottom:33.453333pt;}
.y2d{bottom:33.693333pt;}
.y8{bottom:34.072000pt;}
.y7{bottom:35.560000pt;}
.y26{bottom:41.160000pt;}
.yec{bottom:41.266667pt;}
.yc{bottom:44.160000pt;}
.y2f{bottom:48.152000pt;}
.y6{bottom:52.032000pt;}
.y33{bottom:57.453333pt;}
.y25{bottom:60.040000pt;}
.y2c{bottom:68.093333pt;}
.y2e{bottom:68.200000pt;}
.y5{bottom:69.952000pt;}
.y24{bottom:78.920000pt;}
.y32{bottom:81.133333pt;}
.yb{bottom:85.440000pt;}
.y23{bottom:97.640000pt;}
.y66{bottom:97.800000pt;}
.yf2{bottom:100.512000pt;}
.y2b{bottom:102.493333pt;}
.y116{bottom:105.472000pt;}
.yb8{bottom:109.472000pt;}
.ya8{bottom:109.952000pt;}
.y117{bottom:111.392000pt;}
.y22{bottom:116.520000pt;}
.y65{bottom:116.680000pt;}
.yf1{bottom:119.392000pt;}
.y5c{bottom:123.392000pt;}
.y115{bottom:124.352000pt;}
.yb7{bottom:128.512000pt;}
.ya7{bottom:128.672000pt;}
.y92{bottom:130.272000pt;}
.y21{bottom:135.400000pt;}
.y2a{bottom:136.893333pt;}
.yf0{bottom:138.266667pt;}
.y5b{bottom:142.106667pt;}
.y114{bottom:143.066667pt;}
.yb6{bottom:147.066667pt;}
.ya6{bottom:147.546667pt;}
.y91{bottom:149.146667pt;}
.y20{bottom:154.280000pt;}
.y5a{bottom:160.986667pt;}
.y113{bottom:161.946667pt;}
.yb5{bottom:165.946667pt;}
.ya5{bottom:166.426667pt;}
.y90{bottom:168.026667pt;}
.y1f{bottom:173.000000pt;}
.y64{bottom:173.160000pt;}
.y59{bottom:179.866667pt;}
.y112{bottom:180.826667pt;}
.yb4{bottom:184.826667pt;}
.ya4{bottom:185.306667pt;}
.y8f{bottom:186.746667pt;}
.y1e{bottom:191.880000pt;}
.y63{bottom:192.040000pt;}
.y58{bottom:198.746667pt;}
.y111{bottom:199.706667pt;}
.yb3{bottom:203.706667pt;}
.ya3{bottom:204.026667pt;}
.y8e{bottom:205.626667pt;}
.y1d{bottom:210.760000pt;}
.y57{bottom:217.466667pt;}
.y110{bottom:218.586667pt;}
.yb1{bottom:219.720000pt;}
.ya2{bottom:222.906667pt;}
.y8d{bottom:224.506667pt;}
.y1c{bottom:229.640000pt;}
.y56{bottom:236.346667pt;}
.y10f{bottom:237.306667pt;}
.yad{bottom:238.600000pt;}
.ya1{bottom:241.786667pt;}
.y8c{bottom:243.386667pt;}
.y1b{bottom:248.400000pt;}
.y62{bottom:248.520000pt;}
.ye7{bottom:249.160000pt;}
.y55{bottom:255.226667pt;}
.y10e{bottom:256.226667pt;}
.ya0{bottom:260.706667pt;}
.y8b{bottom:262.306667pt;}
.y1a{bottom:267.280000pt;}
.y61{bottom:267.440000pt;}
.y54{bottom:274.146667pt;}
.y10d{bottom:275.106667pt;}
.yaa{bottom:276.866667pt;}
.y9f{bottom:279.586667pt;}
.y8a{bottom:281.026667pt;}
.y19{bottom:286.160000pt;}
.y60{bottom:286.320000pt;}
.y118{bottom:289.186667pt;}
.ye6{bottom:291.106667pt;}
.y53{bottom:293.026667pt;}
.y10c{bottom:293.986667pt;}
.y9e{bottom:298.306667pt;}
.y89{bottom:299.906667pt;}
.y18{bottom:305.040000pt;}
.ye5{bottom:309.826667pt;}
.y52{bottom:311.746667pt;}
.y10b{bottom:312.706667pt;}
.y9d{bottom:317.186667pt;}
.y88{bottom:318.786667pt;}
.ya9{bottom:318.946667pt;}
.y17{bottom:323.920000pt;}
.ye4{bottom:328.706667pt;}
.y51{bottom:330.626667pt;}
.y10a{bottom:331.586667pt;}
.y9c{bottom:336.066667pt;}
.y87{bottom:337.666667pt;}
.y16{bottom:342.640000pt;}
.y5e{bottom:342.786667pt;}
.ye3{bottom:347.586667pt;}
.y50{bottom:349.506667pt;}
.y9b{bottom:354.946667pt;}
.y86{bottom:356.386667pt;}
.y15{bottom:361.520000pt;}
.ye2{bottom:366.306667pt;}
.y109{bottom:367.106667pt;}
.y4f{bottom:368.386667pt;}
.y9a{bottom:373.666667pt;}
.y85{bottom:375.266667pt;}
.y14{bottom:380.400000pt;}
.ye1{bottom:385.186667pt;}
.y4e{bottom:387.106667pt;}
.y108{bottom:390.306667pt;}
.y99{bottom:392.546667pt;}
.y84{bottom:394.146667pt;}
.y12{bottom:399.266667pt;}
.ye0{bottom:404.066667pt;}
.y4d{bottom:405.986667pt;}
.y107{bottom:409.186667pt;}
.y98{bottom:411.266667pt;}
.y83{bottom:413.026667pt;}
.ydf{bottom:422.946667pt;}
.y4c{bottom:424.866667pt;}
.y106{bottom:427.906667pt;}
.y97{bottom:430.786667pt;}
.y82{bottom:431.906667pt;}
.yde{bottom:441.826667pt;}
.y4b{bottom:443.746667pt;}
.y105{bottom:446.626667pt;}
.y96{bottom:449.506667pt;}
.y81{bottom:450.626667pt;}
.ydb{bottom:457.826667pt;}
.y5f{bottom:458.293333pt;}
.y5d{bottom:458.306667pt;}
.y4a{bottom:462.626667pt;}
.y104{bottom:465.506667pt;}
.y95{bottom:469.026667pt;}
.y80{bottom:469.506667pt;}
.yd6{bottom:480.386667pt;}
.y49{bottom:481.346667pt;}
.y13{bottom:481.653333pt;}
.y11{bottom:481.666667pt;}
.y103{bottom:484.386667pt;}
.y94{bottom:487.933333pt;}
.y7f{bottom:488.413333pt;}
.yd8{bottom:499.293333pt;}
.y48{bottom:500.253333pt;}
.y102{bottom:503.293333pt;}
.y93{bottom:506.653333pt;}
.y7e{bottom:507.293333pt;}
.y29{bottom:510.880000pt;}
.y47{bottom:519.133333pt;}
.y101{bottom:522.013333pt;}
.yd1{bottom:522.173333pt;}
.y7d{bottom:526.013333pt;}
.y46{bottom:538.013333pt;}
.y100{bottom:540.893333pt;}
.y7c{bottom:544.893333pt;}
.y45{bottom:556.733333pt;}
.yff{bottom:556.893333pt;}
.y7b{bottom:563.773333pt;}
.yd0{bottom:572.093333pt;}
.y44{bottom:575.613333pt;}
.yfe{bottom:576.413333pt;}
.y7a{bottom:582.653333pt;}
.ycf{bottom:590.813333pt;}
.y43{bottom:594.493333pt;}
.yfd{bottom:599.613333pt;}
.y79{bottom:601.373333pt;}
.yce{bottom:609.693333pt;}
.y42{bottom:613.373333pt;}
.yfc{bottom:618.493333pt;}
.y78{bottom:620.253333pt;}
.ycd{bottom:628.413333pt;}
.y41{bottom:632.093333pt;}
.yfb{bottom:637.213333pt;}
.y77{bottom:639.133333pt;}
.ycc{bottom:647.293333pt;}
.y40{bottom:650.973333pt;}
.yfa{bottom:655.933333pt;}
.y76{bottom:658.013333pt;}
.ycb{bottom:666.173333pt;}
.y3f{bottom:669.853333pt;}
.yf9{bottom:674.813333pt;}
.y75{bottom:676.893333pt;}
.yca{bottom:685.053333pt;}
.y3e{bottom:688.733333pt;}
.yf8{bottom:693.693333pt;}
.y74{bottom:695.613333pt;}
.yc9{bottom:703.773333pt;}
.y3d{bottom:707.613333pt;}
.yf7{bottom:712.573333pt;}
.y73{bottom:714.493333pt;}
.yc8{bottom:722.693333pt;}
.y3c{bottom:726.373333pt;}
.yf6{bottom:728.613333pt;}
.y72{bottom:733.413333pt;}
.yc7{bottom:741.573333pt;}
.y3b{bottom:745.253333pt;}
.y31{bottom:746.200000pt;}
.yf5{bottom:748.133333pt;}
.y71{bottom:752.293333pt;}
.yc5{bottom:757.573333pt;}
.y3a{bottom:764.133333pt;}
.y70{bottom:771.013333pt;}
.yf4{bottom:771.173333pt;}
.yc2{bottom:777.893333pt;}
.y39{bottom:783.013333pt;}
.y6f{bottom:789.893333pt;}
.yf3{bottom:790.053333pt;}
.y69{bottom:791.480000pt;}
.y38{bottom:801.733333pt;}
.y6e{bottom:808.773333pt;}
.ybf{bottom:816.293333pt;}
.y10{bottom:822.213333pt;}
.y6d{bottom:827.653333pt;}
.y37{bottom:832.773333pt;}
.ybc{bottom:835.813333pt;}
.y6c{bottom:846.533333pt;}
.yf{bottom:853.093333pt;}
.y36{bottom:863.813333pt;}
.y6b{bottom:865.253333pt;}
.yb9{bottom:874.200000pt;}
.y35{bottom:883.973333pt;}
.ye{bottom:884.133333pt;}
.ya{bottom:918.720000pt;}
.y4{bottom:940.453333pt;}
.y3{bottom:958.400000pt;}
.y2{bottom:976.320000pt;}
.y1{bottom:994.240000pt;}
.h14{height:18.866667pt;}
.h21{height:18.880000pt;}
.h1e{height:18.906667pt;}
.h18{height:19.506667pt;}
.h1a{height:19.666667pt;}
.h1d{height:22.240000pt;}
.h1f{height:22.546667pt;}
.h16{height:24.640000pt;}
.h11{height:32.320000pt;}
.h19{height:37.586667pt;}
.h15{height:37.618667pt;}
.h17{height:37.746667pt;}
.h1c{height:41.146667pt;}
.h1b{height:45.600000pt;}
.h2{height:47.840000pt;}
.h7{height:50.125000pt;}
.h22{height:53.937500pt;}
.h20{height:56.626667pt;}
.h1{height:58.563750pt;}
.hb{height:58.646250pt;}
.h12{height:64.057500pt;}
.h13{height:65.781915pt;}
.hc{height:66.560000pt;}
.hd{height:76.671562pt;}
.h6{height:80.160000pt;}
.h5{height:80.256000pt;}
.he{height:116.480000pt;}
.h3{height:126.080000pt;}
.h4{height:144.000000pt;}
.ha{height:172.320000pt;}
.hf{height:358.133333pt;}
.h10{height:358.146667pt;}
.h8{height:414.613333pt;}
.h9{height:414.626667pt;}
.h0{height:1056.000000pt;}
.w25{width:0.466653pt;}
.w1{width:22.400000pt;}
.w1b{width:30.386667pt;}
.w18{width:30.400000pt;}
.w1a{width:35.506667pt;}
.w4{width:35.986667pt;}
.w22{width:45.426667pt;}
.w19{width:45.472000pt;}
.w1d{width:45.586667pt;}
.w23{width:45.618667pt;}
.w21{width:45.632000pt;}
.w1c{width:57.106667pt;}
.w20{width:61.280000pt;}
.w24{width:70.066667pt;}
.w17{width:72.160000pt;}
.w1e{width:84.818667pt;}
.w14{width:91.986667pt;}
.wf{width:92.000000pt;}
.w13{width:92.032000pt;}
.w10{width:92.040000pt;}
.wc{width:108.992000pt;}
.wb{width:109.120000pt;}
.w29{width:123.218667pt;}
.w15{width:134.893333pt;}
.w11{width:134.906667pt;}
.wd{width:160.653333pt;}
.w27{width:163.213333pt;}
.w28{width:165.306667pt;}
.w26{width:172.312000pt;}
.w3{width:174.733333pt;}
.w9{width:184.506667pt;}
.w12{width:213.138667pt;}
.we{width:213.146667pt;}
.w16{width:222.578667pt;}
.wa{width:245.298667pt;}
.w1f{width:249.138667pt;}
.w7{width:288.173333pt;}
.w8{width:288.186667pt;}
.w2{width:399.680000pt;}
.w5{width:432.960000pt;}
.w6{width:498.346667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.866667pt;}
.x9{left:8.146667pt;}
.xa{left:9.106667pt;}
.x4{left:24.986667pt;}
.xb{left:26.866667pt;}
.x10{left:31.840000pt;}
.xe{left:40.000000pt;}
.x11{left:44.000000pt;}
.x17{left:47.986667pt;}
.xd{left:63.680000pt;}
.x5{left:89.346667pt;}
.x6{left:92.386667pt;}
.x1{left:96.032000pt;}
.x13{left:106.432000pt;}
.x19{left:120.032000pt;}
.x18{left:144.026667pt;}
.x12{left:152.986667pt;}
.x3{left:204.960000pt;}
.x32{left:268.360000pt;}
.x14{left:272.866667pt;}
.x1d{left:309.186667pt;}
.x21{left:318.626667pt;}
.x1a{left:341.346667pt;}
.x29{left:345.186667pt;}
.x22{left:390.786667pt;}
.x2{left:396.866667pt;}
.x1e{left:401.186667pt;}
.x2a{left:406.466667pt;}
.x15{left:408.066667pt;}
.xf{left:410.306667pt;}
.x23{left:421.186667pt;}
.x33{left:431.586667pt;}
.x2b{left:436.866667pt;}
.x1b{left:450.466667pt;}
.x16{left:455.946667pt;}
.x24{left:466.666667pt;}
.x2c{left:482.506667pt;}
.x1f{left:493.226667pt;}
.x25{left:502.186667pt;}
.x2d{left:528.106667pt;}
.x26{left:532.586667pt;}
.x7{left:556.266667pt;}
.x2e{left:558.506667pt;}
.x1c{left:559.466667pt;}
.x20{left:585.226667pt;}
.x27{left:589.706667pt;}
.x34{left:596.906667pt;}
.x2f{left:603.946667pt;}
.x28{left:635.306667pt;}
.x30{left:649.573333pt;}
.x31{left:719.653333pt;}
.xc{left:731.013333pt;}
}




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