
    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_ef93c45325b81b1524f5b557.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4642ee5babb86cc6209a9644.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_81aee5c653baa5b93427b2df.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cbca6552a612cdb8b79c5345.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e396465762b66790e9727194.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922363;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_b8f838f21db1fdb56bd46732.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_f9d245fb95acdfb7b9eda172.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1c93b8a87a55cbc61a6b5abe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_4892ee859a8e690435883bfb.woff2')format("woff");}.ff9{font-family:ff9;line-height:3.667480;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_27225873c845891aa19ff303.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v8{vertical-align:-96.000000px;}
.va{vertical-align:-42.600000px;}
.v9{vertical-align:-28.200000px;}
.vb{vertical-align:-26.400000px;}
.v5{vertical-align:-16.800000px;}
.v1{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.vd{vertical-align:26.400000px;}
.v3{vertical-align:40.800000px;}
.v6{vertical-align:45.600000px;}
.v7{vertical-align:72.600000px;}
.vc{vertical-align:92.580000px;}
.v4{vertical-align:105.600000px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls13{letter-spacing:-0.264000px;}
.ls2d{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.192000px;}
.ls12{letter-spacing:-0.168000px;}
.ls14{letter-spacing:-0.024000px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls2b{letter-spacing:0.048000px;}
.ls0{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.150000px;}
.lsd{letter-spacing:0.168000px;}
.ls2a{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls2e{letter-spacing:0.384000px;}
.ls18{letter-spacing:2.400000px;}
.ls1a{letter-spacing:3.885000px;}
.ls1e{letter-spacing:4.005000px;}
.lsf{letter-spacing:4.200000px;}
.ls1b{letter-spacing:4.485000px;}
.ls1d{letter-spacing:4.545000px;}
.ls17{letter-spacing:4.605000px;}
.lsc{letter-spacing:4.614000px;}
.ls21{letter-spacing:4.686000px;}
.ls1c{letter-spacing:4.968000px;}
.ls23{letter-spacing:5.028000px;}
.lsb{letter-spacing:5.034000px;}
.ls25{letter-spacing:5.145000px;}
.ls27{letter-spacing:11.988000px;}
.ls28{letter-spacing:16.356000px;}
.ls10{letter-spacing:19.200000px;}
.ls26{letter-spacing:19.956000px;}
.ls19{letter-spacing:20.145000px;}
.ls1f{letter-spacing:20.286000px;}
.ls29{letter-spacing:20.439000px;}
.ls24{letter-spacing:20.745000px;}
.ls22{letter-spacing:20.886000px;}
.ls15{letter-spacing:24.345000px;}
.ls20{letter-spacing:24.495000px;}
.lse{letter-spacing:24.600000px;}
.ls16{letter-spacing:24.945000px;}
.ls2f{letter-spacing:30.984000px;}
.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;}
}
.ws16{word-spacing:-72.024000px;}
.wse{word-spacing:-72.000000px;}
.ws14{word-spacing:-71.760000px;}
.ws10{word-spacing:-71.736000px;}
.wsf{word-spacing:-51.000000px;}
.ws12{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.024000px;}
.wsb{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.976000px;}
.wsd{word-spacing:-17.832000px;}
.ws13{word-spacing:-17.808000px;}
.wsc{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
.ws15{word-spacing:55.011000px;}
._3f{margin-left:-32.346000px;}
._43{margin-left:-31.251000px;}
._3e{margin-left:-24.597000px;}
._42{margin-left:-23.373000px;}
._40{margin-left:-19.530000px;}
._3d{margin-left:-9.717000px;}
._3c{margin-left:-8.040000px;}
._41{margin-left:-5.856000px;}
._33{margin-left:-4.752000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._22{width:2.160000px;}
._19{width:3.312000px;}
._1b{width:4.320000px;}
._1a{width:5.688000px;}
._39{width:6.960000px;}
._28{width:7.992000px;}
._5{width:9.480000px;}
._4{width:10.806000px;}
._e{width:12.810000px;}
._c{width:14.184000px;}
._f{width:15.984000px;}
._3a{width:16.992000px;}
._7{width:19.068000px;}
._6{width:20.088000px;}
._8{width:21.216000px;}
._11{width:22.260000px;}
._10{width:23.832000px;}
._17{width:25.128000px;}
._2d{width:26.640000px;}
._2e{width:27.720000px;}
._12{width:29.520000px;}
._37{width:30.816000px;}
._d{width:32.472000px;}
._9{width:34.416000px;}
._a{width:35.496000px;}
._1c{width:36.708000px;}
._48{width:38.592000px;}
._23{width:39.672000px;}
._47{width:40.680000px;}
._2c{width:41.688000px;}
._5a{width:42.840000px;}
._3b{width:44.208000px;}
._15{width:46.152000px;}
._16{width:47.190000px;}
._20{width:49.104000px;}
._21{width:50.226000px;}
._4b{width:51.624000px;}
._4c{width:52.920000px;}
._57{width:54.072000px;}
._13{width:55.080000px;}
._14{width:56.304000px;}
._46{width:58.032000px;}
._26{width:60.192000px;}
._27{width:61.272000px;}
._2b{width:63.288000px;}
._4f{width:64.368000px;}
._29{width:65.376000px;}
._2a{width:66.672000px;}
._24{width:70.056000px;}
._25{width:71.382000px;}
._36{width:72.444000px;}
._18{width:75.084000px;}
._52{width:77.256000px;}
._2f{width:79.416000px;}
._44{width:81.576000px;}
._45{width:82.614000px;}
._54{width:87.384000px;}
._50{width:90.060000px;}
._38{width:91.944000px;}
._56{width:93.240000px;}
._31{width:95.184000px;}
._35{width:100.008000px;}
._53{width:101.088000px;}
._55{width:102.240000px;}
._49{width:106.128000px;}
._32{width:108.648000px;}
._4a{width:110.016000px;}
._58{width:113.088000px;}
._5c{width:115.320000px;}
._4e{width:116.364000px;}
._4d{width:117.492000px;}
._34{width:123.408000px;}
._59{width:127.728000px;}
._1f{width:132.408000px;}
._b{width:147.528000px;}
._1d{width:155.160000px;}
._1e{width:156.600000px;}
._30{width:163.512000px;}
._51{width:245.520000px;}
._5b{width:519.696000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y5a{bottom:3.885000px;}
.y1f{bottom:3.900000px;}
.y51{bottom:3.945000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y49{bottom:14.250000px;}
.y4e{bottom:14.295000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y63{bottom:24.592500px;}
.y1e{bottom:24.600000px;}
.y23{bottom:24.645000px;}
.y9{bottom:33.900000px;}
.y5e{bottom:34.942500px;}
.y55{bottom:34.950000px;}
.y4d{bottom:34.995000px;}
.y5{bottom:36.000000px;}
.y1d{bottom:45.300000px;}
.y62{bottom:45.307500px;}
.y22{bottom:45.345000px;}
.y54{bottom:55.650000px;}
.y5c{bottom:55.657500px;}
.y4c{bottom:55.695000px;}
.y3{bottom:57.637500px;}
.y1c{bottom:66.000000px;}
.y61{bottom:66.007500px;}
.y50{bottom:66.045000px;}
.y53{bottom:76.350000px;}
.y5d{bottom:76.357500px;}
.y4b{bottom:76.395000px;}
.y2{bottom:81.637500px;}
.y1b{bottom:86.700000px;}
.y60{bottom:86.707500px;}
.y4f{bottom:86.745000px;}
.y1a{bottom:107.400000px;}
.y5f{bottom:107.407500px;}
.yce{bottom:120.937500px;}
.y3c{bottom:125.137500px;}
.ybe{bottom:126.637500px;}
.y19{bottom:128.100000px;}
.y59{bottom:128.130000px;}
.y5b{bottom:130.987500px;}
.ycd{bottom:144.637500px;}
.ya9{bottom:147.337500px;}
.y3b{bottom:148.987500px;}
.ybd{bottom:150.495000px;}
.ycc{bottom:168.495000px;}
.y7f{bottom:169.995000px;}
.ya8{bottom:171.180000px;}
.y3a{bottom:172.680000px;}
.ybc{bottom:174.345000px;}
.ycb{bottom:192.330000px;}
.y7e{bottom:193.845000px;}
.ya7{bottom:194.895000px;}
.y39{bottom:196.545000px;}
.ybb{bottom:198.195000px;}
.yca{bottom:216.045000px;}
.y7d{bottom:217.545000px;}
.ya6{bottom:218.745000px;}
.y38{bottom:220.395000px;}
.yba{bottom:221.895000px;}
.yc9{bottom:239.880000px;}
.y7c{bottom:241.395000px;}
.ya5{bottom:242.595000px;}
.y37{bottom:244.095000px;}
.yb9{bottom:245.745000px;}
.y58{bottom:255.945000px;}
.yc8{bottom:263.745000px;}
.y7b{bottom:265.245000px;}
.ya4{bottom:266.295000px;}
.y36{bottom:267.945000px;}
.yb8{bottom:269.595000px;}
.yc7{bottom:287.445000px;}
.y7a{bottom:289.095000px;}
.ya3{bottom:290.130000px;}
.y35{bottom:291.795000px;}
.yb7{bottom:293.295000px;}
.yc6{bottom:311.295000px;}
.y79{bottom:312.795000px;}
.ya2{bottom:313.995000px;}
.y34{bottom:315.495000px;}
.yb6{bottom:317.130000px;}
.yc5{bottom:335.145000px;}
.y78{bottom:336.645000px;}
.ya1{bottom:337.695000px;}
.y33{bottom:339.345000px;}
.yb5{bottom:340.995000px;}
.ya0{bottom:357.630000px;}
.yc4{bottom:358.995000px;}
.y77{bottom:360.495000px;}
.y32{bottom:363.195000px;}
.yb4{bottom:364.695000px;}
.y9e{bottom:380.775000px;}
.yc3{bottom:382.725000px;}
.y76{bottom:386.625000px;}
.y31{bottom:387.075000px;}
.yb3{bottom:388.575000px;}
.y57{bottom:401.625000px;}
.yc2{bottom:406.575000px;}
.y9f{bottom:407.475000px;}
.y75{bottom:410.625000px;}
.y30{bottom:410.775000px;}
.yb2{bottom:412.425000px;}
.y9d{bottom:423.675000px;}
.yc1{bottom:430.425000px;}
.y74{bottom:434.475000px;}
.y2f{bottom:434.625000px;}
.yb1{bottom:436.125000px;}
.y9c{bottom:447.375000px;}
.yc0{bottom:454.125000px;}
.y73{bottom:458.325000px;}
.y2e{bottom:458.475000px;}
.yb0{bottom:459.975000px;}
.y9b{bottom:471.225000px;}
.ybf{bottom:474.075000px;}
.y72{bottom:482.025000px;}
.y2d{bottom:482.175000px;}
.yaf{bottom:483.825000px;}
.y9a{bottom:495.075000px;}
.y71{bottom:505.875000px;}
.y2c{bottom:506.025000px;}
.yae{bottom:507.525000px;}
.y99{bottom:518.775000px;}
.y56{bottom:526.575000px;}
.y70{bottom:529.725000px;}
.y2b{bottom:529.875000px;}
.yad{bottom:531.375000px;}
.y98{bottom:542.625000px;}
.y2a{bottom:553.575000px;}
.yac{bottom:555.225000px;}
.y97{bottom:566.475000px;}
.y6f{bottom:577.275000px;}
.y29{bottom:577.425000px;}
.yab{bottom:579.075000px;}
.y96{bottom:590.175000px;}
.y28{bottom:601.275000px;}
.yaa{bottom:602.775000px;}
.y95{bottom:614.025000px;}
.y27{bottom:624.975000px;}
.y6e{bottom:626.625000px;}
.y52{bottom:630.825000px;}
.y94{bottom:638.925000px;}
.y26{bottom:648.825000px;}
.y6d{bottom:650.475000px;}
.y93{bottom:664.125000px;}
.y25{bottom:672.675000px;}
.y6c{bottom:674.175000px;}
.y92{bottom:689.325000px;}
.y6b{bottom:698.025000px;}
.y24{bottom:705.375000px;}
.y91{bottom:714.075000px;}
.y6a{bottom:721.875000px;}
.y21{bottom:722.175000px;}
.y4a{bottom:735.075000px;}
.y90{bottom:737.820000px;}
.y69{bottom:745.620000px;}
.y8f{bottom:762.870000px;}
.y68{bottom:769.470000px;}
.y20{bottom:784.320000px;}
.y67{bottom:793.320000px;}
.y18{bottom:805.020000px;}
.y8e{bottom:812.670000px;}
.y66{bottom:817.020000px;}
.y8d{bottom:836.520000px;}
.y48{bottom:839.370000px;}
.y65{bottom:840.870000px;}
.y8c{bottom:860.370000px;}
.y64{bottom:864.720000px;}
.y8b{bottom:884.070000px;}
.y47{bottom:888.420000px;}
.y8a{bottom:907.920000px;}
.y46{bottom:912.270000px;}
.y89{bottom:931.770000px;}
.y45{bottom:936.120000px;}
.y17{bottom:953.520000px;}
.y88{bottom:955.470000px;}
.y44{bottom:959.970000px;}
.y16{bottom:972.720000px;}
.y87{bottom:979.320000px;}
.y43{bottom:983.670000px;}
.y15{bottom:993.420000px;}
.y86{bottom:1003.170000px;}
.y42{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.y85{bottom:1027.020000px;}
.y41{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y84{bottom:1051.170000px;}
.y40{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y83{bottom:1075.020000px;}
.y11{bottom:1076.220000px;}
.y3f{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y82{bottom:1099.200000px;}
.y3e{bottom:1102.800000px;}
.yf{bottom:1117.650000px;}
.y80{bottom:1124.550000px;}
.y81{bottom:1125.150000px;}
.y3d{bottom:1126.500000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h12{height:41.400000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h13{height:50.800781px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h10{height:62.137500px;}
.he{height:63.035156px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h11{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h1e{height:74.004654px;}
.h2{height:82.441406px;}
.h15{height:103.500000px;}
.h14{height:103.537500px;}
.h1c{height:108.076172px;}
.h16{height:124.200000px;}
.hd{height:144.900000px;}
.h17{height:144.937500px;}
.h18{height:152.578125px;}
.h1b{height:153.178125px;}
.h1d{height:245.158125px;}
.h1a{height:253.978125px;}
.h19{height:258.178125px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w9{width:23.700000px;}
.wa{width:114.937500px;}
.wc{width:122.287500px;}
.wb{width:128.700000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1b{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x1f{left:67.800000px;}
.x2d{left:69.449987px;}
.x1c{left:95.699987px;}
.x1a{left:100.200000px;}
.x19{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.x10{left:123.337487px;}
.xa{left:128.130000px;}
.x27{left:132.487487px;}
.x29{left:141.637487px;}
.x28{left:147.037487px;}
.x20{left:183.495000px;}
.x2b{left:188.894987px;}
.x24{left:190.094987px;}
.x2a{left:193.694987px;}
.x25{left:238.544987px;}
.x26{left:242.279987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x21{left:312.945000px;}
.x2c{left:429.674987px;}
.x1e{left:457.274987px;}
.x2e{left:484.124987px;}
.x22{left:506.474987px;}
.x1d{left:510.374987px;}
.x23{left:525.974987px;}
.x18{left:543.074987px;}
.x16{left:548.174987px;}
.x13{left:557.174987px;}
.x11{left:575.174987px;}
.x15{left:586.574987px;}
.x12{left:602.174987px;}
.xc{left:625.425000px;}
.x17{left:695.654987px;}
.xf{left:713.655000px;}
.x2{left:819.119987px;}
.x14{left:850.619987px;}
@media print{
.v8{vertical-align:-85.333333pt;}
.va{vertical-align:-37.866667pt;}
.v9{vertical-align:-25.066667pt;}
.vb{vertical-align:-23.466667pt;}
.v5{vertical-align:-14.933333pt;}
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.vd{vertical-align:23.466667pt;}
.v3{vertical-align:36.266667pt;}
.v6{vertical-align:40.533333pt;}
.v7{vertical-align:64.533333pt;}
.vc{vertical-align:82.293333pt;}
.v4{vertical-align:93.866667pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls13{letter-spacing:-0.234667pt;}
.ls2d{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.170667pt;}
.ls12{letter-spacing:-0.149333pt;}
.ls14{letter-spacing:-0.021333pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls2b{letter-spacing:0.042667pt;}
.ls0{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.133333pt;}
.lsd{letter-spacing:0.149333pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls2e{letter-spacing:0.341333pt;}
.ls18{letter-spacing:2.133333pt;}
.ls1a{letter-spacing:3.453333pt;}
.ls1e{letter-spacing:3.560000pt;}
.lsf{letter-spacing:3.733333pt;}
.ls1b{letter-spacing:3.986667pt;}
.ls1d{letter-spacing:4.040000pt;}
.ls17{letter-spacing:4.093333pt;}
.lsc{letter-spacing:4.101333pt;}
.ls21{letter-spacing:4.165333pt;}
.ls1c{letter-spacing:4.416000pt;}
.ls23{letter-spacing:4.469333pt;}
.lsb{letter-spacing:4.474667pt;}
.ls25{letter-spacing:4.573333pt;}
.ls27{letter-spacing:10.656000pt;}
.ls28{letter-spacing:14.538667pt;}
.ls10{letter-spacing:17.066667pt;}
.ls26{letter-spacing:17.738667pt;}
.ls19{letter-spacing:17.906667pt;}
.ls1f{letter-spacing:18.032000pt;}
.ls29{letter-spacing:18.168000pt;}
.ls24{letter-spacing:18.440000pt;}
.ls22{letter-spacing:18.565333pt;}
.ls15{letter-spacing:21.640000pt;}
.ls20{letter-spacing:21.773333pt;}
.lse{letter-spacing:21.866667pt;}
.ls16{letter-spacing:22.173333pt;}
.ls2f{letter-spacing:27.541333pt;}
.ws16{word-spacing:-64.021333pt;}
.wse{word-spacing:-64.000000pt;}
.ws14{word-spacing:-63.786667pt;}
.ws10{word-spacing:-63.765333pt;}
.wsf{word-spacing:-45.333333pt;}
.ws12{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.021333pt;}
.wsb{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.978667pt;}
.wsd{word-spacing:-15.850667pt;}
.ws13{word-spacing:-15.829333pt;}
.wsc{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
.ws15{word-spacing:48.898667pt;}
._3f{margin-left:-28.752000pt;}
._43{margin-left:-27.778667pt;}
._3e{margin-left:-21.864000pt;}
._42{margin-left:-20.776000pt;}
._40{margin-left:-17.360000pt;}
._3d{margin-left:-8.637333pt;}
._3c{margin-left:-7.146667pt;}
._41{margin-left:-5.205333pt;}
._33{margin-left:-4.224000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._22{width:1.920000pt;}
._19{width:2.944000pt;}
._1b{width:3.840000pt;}
._1a{width:5.056000pt;}
._39{width:6.186667pt;}
._28{width:7.104000pt;}
._5{width:8.426667pt;}
._4{width:9.605333pt;}
._e{width:11.386667pt;}
._c{width:12.608000pt;}
._f{width:14.208000pt;}
._3a{width:15.104000pt;}
._7{width:16.949333pt;}
._6{width:17.856000pt;}
._8{width:18.858667pt;}
._11{width:19.786667pt;}
._10{width:21.184000pt;}
._17{width:22.336000pt;}
._2d{width:23.680000pt;}
._2e{width:24.640000pt;}
._12{width:26.240000pt;}
._37{width:27.392000pt;}
._d{width:28.864000pt;}
._9{width:30.592000pt;}
._a{width:31.552000pt;}
._1c{width:32.629333pt;}
._48{width:34.304000pt;}
._23{width:35.264000pt;}
._47{width:36.160000pt;}
._2c{width:37.056000pt;}
._5a{width:38.080000pt;}
._3b{width:39.296000pt;}
._15{width:41.024000pt;}
._16{width:41.946667pt;}
._20{width:43.648000pt;}
._21{width:44.645333pt;}
._4b{width:45.888000pt;}
._4c{width:47.040000pt;}
._57{width:48.064000pt;}
._13{width:48.960000pt;}
._14{width:50.048000pt;}
._46{width:51.584000pt;}
._26{width:53.504000pt;}
._27{width:54.464000pt;}
._2b{width:56.256000pt;}
._4f{width:57.216000pt;}
._29{width:58.112000pt;}
._2a{width:59.264000pt;}
._24{width:62.272000pt;}
._25{width:63.450667pt;}
._36{width:64.394667pt;}
._18{width:66.741333pt;}
._52{width:68.672000pt;}
._2f{width:70.592000pt;}
._44{width:72.512000pt;}
._45{width:73.434667pt;}
._54{width:77.674667pt;}
._50{width:80.053333pt;}
._38{width:81.728000pt;}
._56{width:82.880000pt;}
._31{width:84.608000pt;}
._35{width:88.896000pt;}
._53{width:89.856000pt;}
._55{width:90.880000pt;}
._49{width:94.336000pt;}
._32{width:96.576000pt;}
._4a{width:97.792000pt;}
._58{width:100.522667pt;}
._5c{width:102.506667pt;}
._4e{width:103.434667pt;}
._4d{width:104.437333pt;}
._34{width:109.696000pt;}
._59{width:113.536000pt;}
._1f{width:117.696000pt;}
._b{width:131.136000pt;}
._1d{width:137.920000pt;}
._1e{width:139.200000pt;}
._30{width:145.344000pt;}
._51{width:218.240000pt;}
._5b{width:461.952000pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y5a{bottom:3.453333pt;}
.y1f{bottom:3.466667pt;}
.y51{bottom:3.506667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y49{bottom:12.666667pt;}
.y4e{bottom:12.706667pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y63{bottom:21.860000pt;}
.y1e{bottom:21.866667pt;}
.y23{bottom:21.906667pt;}
.y9{bottom:30.133333pt;}
.y5e{bottom:31.060000pt;}
.y55{bottom:31.066667pt;}
.y4d{bottom:31.106667pt;}
.y5{bottom:32.000000pt;}
.y1d{bottom:40.266667pt;}
.y62{bottom:40.273333pt;}
.y22{bottom:40.306667pt;}
.y54{bottom:49.466667pt;}
.y5c{bottom:49.473333pt;}
.y4c{bottom:49.506667pt;}
.y3{bottom:51.233333pt;}
.y1c{bottom:58.666667pt;}
.y61{bottom:58.673333pt;}
.y50{bottom:58.706667pt;}
.y53{bottom:67.866667pt;}
.y5d{bottom:67.873333pt;}
.y4b{bottom:67.906667pt;}
.y2{bottom:72.566667pt;}
.y1b{bottom:77.066667pt;}
.y60{bottom:77.073333pt;}
.y4f{bottom:77.106667pt;}
.y1a{bottom:95.466667pt;}
.y5f{bottom:95.473333pt;}
.yce{bottom:107.500000pt;}
.y3c{bottom:111.233333pt;}
.ybe{bottom:112.566667pt;}
.y19{bottom:113.866667pt;}
.y59{bottom:113.893333pt;}
.y5b{bottom:116.433333pt;}
.ycd{bottom:128.566667pt;}
.ya9{bottom:130.966667pt;}
.y3b{bottom:132.433333pt;}
.ybd{bottom:133.773333pt;}
.ycc{bottom:149.773333pt;}
.y7f{bottom:151.106667pt;}
.ya8{bottom:152.160000pt;}
.y3a{bottom:153.493333pt;}
.ybc{bottom:154.973333pt;}
.ycb{bottom:170.960000pt;}
.y7e{bottom:172.306667pt;}
.ya7{bottom:173.240000pt;}
.y39{bottom:174.706667pt;}
.ybb{bottom:176.173333pt;}
.yca{bottom:192.040000pt;}
.y7d{bottom:193.373333pt;}
.ya6{bottom:194.440000pt;}
.y38{bottom:195.906667pt;}
.yba{bottom:197.240000pt;}
.yc9{bottom:213.226667pt;}
.y7c{bottom:214.573333pt;}
.ya5{bottom:215.640000pt;}
.y37{bottom:216.973333pt;}
.yb9{bottom:218.440000pt;}
.y58{bottom:227.506667pt;}
.yc8{bottom:234.440000pt;}
.y7b{bottom:235.773333pt;}
.ya4{bottom:236.706667pt;}
.y36{bottom:238.173333pt;}
.yb8{bottom:239.640000pt;}
.yc7{bottom:255.506667pt;}
.y7a{bottom:256.973333pt;}
.ya3{bottom:257.893333pt;}
.y35{bottom:259.373333pt;}
.yb7{bottom:260.706667pt;}
.yc6{bottom:276.706667pt;}
.y79{bottom:278.040000pt;}
.ya2{bottom:279.106667pt;}
.y34{bottom:280.440000pt;}
.yb6{bottom:281.893333pt;}
.yc5{bottom:297.906667pt;}
.y78{bottom:299.240000pt;}
.ya1{bottom:300.173333pt;}
.y33{bottom:301.640000pt;}
.yb5{bottom:303.106667pt;}
.ya0{bottom:317.893333pt;}
.yc4{bottom:319.106667pt;}
.y77{bottom:320.440000pt;}
.y32{bottom:322.840000pt;}
.yb4{bottom:324.173333pt;}
.y9e{bottom:338.466667pt;}
.yc3{bottom:340.200000pt;}
.y76{bottom:343.666667pt;}
.y31{bottom:344.066667pt;}
.yb3{bottom:345.400000pt;}
.y57{bottom:357.000000pt;}
.yc2{bottom:361.400000pt;}
.y9f{bottom:362.200000pt;}
.y75{bottom:365.000000pt;}
.y30{bottom:365.133333pt;}
.yb2{bottom:366.600000pt;}
.y9d{bottom:376.600000pt;}
.yc1{bottom:382.600000pt;}
.y74{bottom:386.200000pt;}
.y2f{bottom:386.333333pt;}
.yb1{bottom:387.666667pt;}
.y9c{bottom:397.666667pt;}
.yc0{bottom:403.666667pt;}
.y73{bottom:407.400000pt;}
.y2e{bottom:407.533333pt;}
.yb0{bottom:408.866667pt;}
.y9b{bottom:418.866667pt;}
.ybf{bottom:421.400000pt;}
.y72{bottom:428.466667pt;}
.y2d{bottom:428.600000pt;}
.yaf{bottom:430.066667pt;}
.y9a{bottom:440.066667pt;}
.y71{bottom:449.666667pt;}
.y2c{bottom:449.800000pt;}
.yae{bottom:451.133333pt;}
.y99{bottom:461.133333pt;}
.y56{bottom:468.066667pt;}
.y70{bottom:470.866667pt;}
.y2b{bottom:471.000000pt;}
.yad{bottom:472.333333pt;}
.y98{bottom:482.333333pt;}
.y2a{bottom:492.066667pt;}
.yac{bottom:493.533333pt;}
.y97{bottom:503.533333pt;}
.y6f{bottom:513.133333pt;}
.y29{bottom:513.266667pt;}
.yab{bottom:514.733333pt;}
.y96{bottom:524.600000pt;}
.y28{bottom:534.466667pt;}
.yaa{bottom:535.800000pt;}
.y95{bottom:545.800000pt;}
.y27{bottom:555.533333pt;}
.y6e{bottom:557.000000pt;}
.y52{bottom:560.733333pt;}
.y94{bottom:567.933333pt;}
.y26{bottom:576.733333pt;}
.y6d{bottom:578.200000pt;}
.y93{bottom:590.333333pt;}
.y25{bottom:597.933333pt;}
.y6c{bottom:599.266667pt;}
.y92{bottom:612.733333pt;}
.y6b{bottom:620.466667pt;}
.y24{bottom:627.000000pt;}
.y91{bottom:634.733333pt;}
.y6a{bottom:641.666667pt;}
.y21{bottom:641.933333pt;}
.y4a{bottom:653.400000pt;}
.y90{bottom:655.840000pt;}
.y69{bottom:662.773333pt;}
.y8f{bottom:678.106667pt;}
.y68{bottom:683.973333pt;}
.y20{bottom:697.173333pt;}
.y67{bottom:705.173333pt;}
.y18{bottom:715.573333pt;}
.y8e{bottom:722.373333pt;}
.y66{bottom:726.240000pt;}
.y8d{bottom:743.573333pt;}
.y48{bottom:746.106667pt;}
.y65{bottom:747.440000pt;}
.y8c{bottom:764.773333pt;}
.y64{bottom:768.640000pt;}
.y8b{bottom:785.840000pt;}
.y47{bottom:789.706667pt;}
.y8a{bottom:807.040000pt;}
.y46{bottom:810.906667pt;}
.y89{bottom:828.240000pt;}
.y45{bottom:832.106667pt;}
.y17{bottom:847.573333pt;}
.y88{bottom:849.306667pt;}
.y44{bottom:853.306667pt;}
.y16{bottom:864.640000pt;}
.y87{bottom:870.506667pt;}
.y43{bottom:874.373333pt;}
.y15{bottom:883.040000pt;}
.y86{bottom:891.706667pt;}
.y42{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.y85{bottom:912.906667pt;}
.y41{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y84{bottom:934.373333pt;}
.y40{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y83{bottom:955.573333pt;}
.y11{bottom:956.640000pt;}
.y3f{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y82{bottom:977.066667pt;}
.y3e{bottom:980.266667pt;}
.yf{bottom:993.466667pt;}
.y80{bottom:999.600000pt;}
.y81{bottom:1000.133333pt;}
.y3d{bottom:1001.333333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h12{height:36.800000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h13{height:45.156250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h10{height:55.233333pt;}
.he{height:56.031250pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h11{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h1e{height:65.781915pt;}
.h2{height:73.281250pt;}
.h15{height:92.000000pt;}
.h14{height:92.033333pt;}
.h1c{height:96.067708pt;}
.h16{height:110.400000pt;}
.hd{height:128.800000pt;}
.h17{height:128.833333pt;}
.h18{height:135.625000pt;}
.h1b{height:136.158333pt;}
.h1d{height:217.918333pt;}
.h1a{height:225.758333pt;}
.h19{height:229.491667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w9{width:21.066667pt;}
.wa{width:102.166667pt;}
.wc{width:108.700000pt;}
.wb{width:114.400000pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1b{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x1f{left:60.266667pt;}
.x2d{left:61.733322pt;}
.x1c{left:85.066655pt;}
.x1a{left:89.066667pt;}
.x19{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.x10{left:109.633322pt;}
.xa{left:113.893333pt;}
.x27{left:117.766655pt;}
.x29{left:125.899988pt;}
.x28{left:130.699988pt;}
.x20{left:163.106667pt;}
.x2b{left:167.906655pt;}
.x24{left:168.973322pt;}
.x2a{left:172.173322pt;}
.x25{left:212.039988pt;}
.x26{left:215.359988pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x21{left:278.173333pt;}
.x2c{left:381.933322pt;}
.x1e{left:406.466655pt;}
.x2e{left:430.333322pt;}
.x22{left:450.199988pt;}
.x1d{left:453.666655pt;}
.x23{left:467.533322pt;}
.x18{left:482.733322pt;}
.x16{left:487.266655pt;}
.x13{left:495.266655pt;}
.x11{left:511.266655pt;}
.x15{left:521.399988pt;}
.x12{left:535.266655pt;}
.xc{left:555.933333pt;}
.x17{left:618.359988pt;}
.xf{left:634.360000pt;}
.x2{left:728.106655pt;}
.x14{left:756.106655pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  