
    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_f9f2ecb841619b09b59fde1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.244629;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_3eeb007261c373f68a5af534.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.244629;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_7d7565db0de94437a4766633.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136230;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_54aa386460e9965020dc2624.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969727;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_563dc46a69317f871eb4a274.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969727;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_937f4b91bdcf5eb63771861c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963000;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_0e23faab081124a08b97660c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.111133;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_db82c1a907167201af2bed4c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.125533;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_ba8534c2d62d26180248ec94.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.125533;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_c41b71a8d69b69cd5b884118.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.111133;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_4aa7d8eeaae03876ae5152a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.963000;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_75836a0cd6bc72ca2e81d63d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.046000;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_0ca7b26c6e61d9b574fa6e2f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.046000;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.314400px;}
.ls17{letter-spacing:-0.242400px;}
.ls27{letter-spacing:-0.217200px;}
.ls21{letter-spacing:-0.172200px;}
.ls20{letter-spacing:-0.067200px;}
.lsf{letter-spacing:-0.049680px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.028080px;}
.ls1a{letter-spacing:0.056160px;}
.ls29{letter-spacing:0.061200px;}
.ls1b{letter-spacing:0.069600px;}
.ls25{letter-spacing:0.072600px;}
.ls15{letter-spacing:0.075600px;}
.ls0{letter-spacing:0.115200px;}
.ls14{letter-spacing:0.147000px;}
.ls23{letter-spacing:0.148800px;}
.ls9{letter-spacing:0.154800px;}
.ls2a{letter-spacing:0.193200px;}
.ls16{letter-spacing:0.322560px;}
.ls11{letter-spacing:0.373800px;}
.lsa{letter-spacing:0.405600px;}
.ls19{letter-spacing:0.459360px;}
.ls24{letter-spacing:0.522000px;}
.ls1f{letter-spacing:0.598320px;}
.ls26{letter-spacing:0.660000px;}
.ls1e{letter-spacing:0.750240px;}
.ls28{letter-spacing:0.792000px;}
.ls1{letter-spacing:2.038320px;}
.ls2{letter-spacing:4.918320px;}
.ls5{letter-spacing:6.358320px;}
.lsd{letter-spacing:7.078320px;}
.ls4{letter-spacing:7.798320px;}
.ls6{letter-spacing:9.238320px;}
.ls7{letter-spacing:9.958320px;}
.ls3{letter-spacing:10.678320px;}
.ls12{letter-spacing:12.838320px;}
.ls1c{letter-spacing:15.718320px;}
.ls13{letter-spacing:27.418320px;}
.ls22{letter-spacing:30.186720px;}
.lsb{letter-spacing:33.718320px;}
.lsc{letter-spacing:37.318320px;}
.ls18{letter-spacing:38.758320px;}
.ls1d{letter-spacing:61.866720px;}
.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;}
}
.ws18{word-spacing:-21.188400px;}
.ws4{word-spacing:-17.884800px;}
.wsd{word-spacing:-16.210800px;}
.ws5{word-spacing:-16.135200px;}
.ws15{word-spacing:-15.313680px;}
.ws12{word-spacing:-15.181680px;}
.wsa{word-spacing:-14.895480px;}
.ws14{word-spacing:-14.670480px;}
.wsc{word-spacing:-14.668680px;}
.ws17{word-spacing:-14.594280px;}
.ws10{word-spacing:-14.591280px;}
.ws16{word-spacing:-14.582880px;}
.wse{word-spacing:-14.577840px;}
.ws9{word-spacing:-14.549760px;}
.ws3{word-spacing:-14.521680px;}
.ws8{word-spacing:-14.472000px;}
.wsf{word-spacing:-14.454480px;}
.ws11{word-spacing:-14.349480px;}
.ws13{word-spacing:-14.304480px;}
.wsb{word-spacing:-14.279280px;}
.ws2{word-spacing:-13.528320px;}
.ws1{word-spacing:-12.716160px;}
.ws0{word-spacing:-12.465360px;}
.ws7{word-spacing:-11.996160px;}
.ws6{word-spacing:0.000000px;}
._13{margin-left:-4.061520px;}
._12{margin-left:-2.600640px;}
._6{margin-left:-1.463040px;}
._0{width:1.015920px;}
._5{width:2.250480px;}
._7{width:4.183200px;}
._a{width:5.318640px;}
._8{width:6.334560px;}
._d{width:7.433520px;}
._b{width:8.519520px;}
._9{width:10.159200px;}
._1c{width:11.593440px;}
._c{width:12.788640px;}
._1d{width:15.716880px;}
._1b{width:16.732800px;}
._3{width:17.919360px;}
._4{width:19.105200px;}
._18{width:20.139120px;}
._27{width:21.633120px;}
._26{width:23.127120px;}
._e{width:24.621120px;}
._f{width:26.652960px;}
._1e{width:27.788400px;}
._1a{width:29.401920px;}
._15{width:31.075200px;}
._21{width:32.569200px;}
._16{width:33.704640px;}
._17{width:35.707440px;}
._2a{width:36.752400px;}
._19{width:38.186640px;}
._2b{width:39.381840px;}
._2d{width:40.512240px;}
._2e{width:41.951520px;}
._2c{width:43.385760px;}
._23{width:44.461440px;}
._2f{width:46.134720px;}
._29{width:48.047040px;}
._22{width:49.899600px;}
._25{width:52.409520px;}
._36{width:54.501120px;}
._1f{width:56.592720px;}
._10{width:60.955200px;}
._24{width:64.421280px;}
._28{width:71.233920px;}
._14{width:74.520720px;}
._31{width:82.843200px;}
._34{width:89.879040px;}
._35{width:102.354240px;}
._37{width:250.095600px;}
._32{width:318.222000px;}
._30{width:368.360640px;}
._1{width:441.134400px;}
._2{width:463.009440px;}
._33{width:464.449440px;}
._20{width:466.609440px;}
._11{width:468.769440px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:4.320000px;}
.y95{bottom:4.500000px;}
.ya{bottom:10.260000px;}
.y89{bottom:14.220000px;}
.yac{bottom:14.250000px;}
.y8f{bottom:14.400000px;}
.ya8{bottom:24.120000px;}
.yad{bottom:24.150000px;}
.y8a{bottom:24.300000px;}
.ya1{bottom:24.345000px;}
.y8d{bottom:34.200000px;}
.y91{bottom:44.100000px;}
.y97{bottom:44.280000px;}
.y8e{bottom:54.000000px;}
.ya9{bottom:54.036000px;}
.y93{bottom:54.180000px;}
.y2{bottom:57.420000px;}
.yaf{bottom:63.900000px;}
.yaa{bottom:63.930000px;}
.y90{bottom:64.080000px;}
.y94{bottom:64.125000px;}
.ya4{bottom:73.980000px;}
.ya6{bottom:83.880000px;}
.yb1{bottom:84.060000px;}
.ya7{bottom:88.740000px;}
.ya5{bottom:103.860000px;}
.yda{bottom:106.020000px;}
.y84{bottom:109.980000px;}
.y9c{bottom:117.540000px;}
.yd9{bottom:125.820000px;}
.y32{bottom:127.440000px;}
.y83{bottom:130.680000px;}
.y9b{bottom:138.276000px;}
.yd8{bottom:145.836000px;}
.y31{bottom:148.356000px;}
.y82{bottom:151.590000px;}
.y9a{bottom:159.150000px;}
.yd7{bottom:165.630000px;}
.ya3{bottom:168.870000px;}
.y30{bottom:169.050000px;}
.y81{bottom:172.470000px;}
.y99{bottom:179.310000px;}
.yd6{bottom:185.430000px;}
.y2f{bottom:189.930000px;}
.y80{bottom:193.350000px;}
.y98{bottom:195.510000px;}
.y5f{bottom:202.170000px;}
.yd5{bottom:205.410000px;}
.y2e{bottom:210.810000px;}
.y7f{bottom:214.230000px;}
.y10a{bottom:216.390000px;}
.y5e{bottom:223.050000px;}
.yd4{bottom:225.210000px;}
.y2d{bottom:231.690000px;}
.y7e{bottom:235.110000px;}
.y109{bottom:236.190000px;}
.y5d{bottom:243.930000px;}
.yd3{bottom:245.190000px;}
.y2c{bottom:252.570000px;}
.y96{bottom:255.810000px;}
.y7d{bottom:255.990000px;}
.y108{bottom:256.170000px;}
.y5c{bottom:264.810000px;}
.yd2{bottom:264.990000px;}
.y2b{bottom:273.450000px;}
.y107{bottom:275.970000px;}
.y7c{bottom:276.870000px;}
.yd1{bottom:284.970000px;}
.y5b{bottom:285.690000px;}
.ya2{bottom:288.930000px;}
.y2a{bottom:294.330000px;}
.y106{bottom:295.770000px;}
.y7b{bottom:297.750000px;}
.yd0{bottom:304.770000px;}
.y5a{bottom:306.570000px;}
.y29{bottom:315.210000px;}
.y105{bottom:315.750000px;}
.y7a{bottom:318.630000px;}
.ycf{bottom:324.570000px;}
.y59{bottom:327.450000px;}
.y104{bottom:335.550000px;}
.y28{bottom:336.090000px;}
.y79{bottom:339.510000px;}
.yce{bottom:344.550000px;}
.y58{bottom:348.330000px;}
.y103{bottom:355.530000px;}
.y27{bottom:356.970000px;}
.y78{bottom:360.390000px;}
.ycd{bottom:364.350000px;}
.y57{bottom:369.210000px;}
.y102{bottom:375.330000px;}
.y26{bottom:376.950000px;}
.y77{bottom:381.270000px;}
.ycc{bottom:384.330000px;}
.y56{bottom:390.135000px;}
.y101{bottom:395.175000px;}
.y25{bottom:396.975000px;}
.y76{bottom:402.195000px;}
.ycb{bottom:404.175000px;}
.y55{bottom:411.015000px;}
.ya0{bottom:414.075000px;}
.y100{bottom:415.155000px;}
.y92{bottom:416.415000px;}
.y24{bottom:416.775000px;}
.y75{bottom:423.075000px;}
.yca{bottom:423.975000px;}
.y54{bottom:431.895000px;}
.y9f{bottom:434.055000px;}
.yff{bottom:434.955000px;}
.y23{bottom:436.755000px;}
.y74{bottom:443.955000px;}
.y53{bottom:452.775000px;}
.y9e{bottom:453.855000px;}
.yfe{bottom:454.935000px;}
.y22{bottom:456.555000px;}
.yc9{bottom:463.755000px;}
.y73{bottom:464.655000px;}
.y52{bottom:473.655000px;}
.y9d{bottom:473.835000px;}
.yfd{bottom:474.735000px;}
.y21{bottom:476.355000px;}
.yc8{bottom:483.735000px;}
.y72{bottom:485.535000px;}
.y51{bottom:494.355000px;}
.yfc{bottom:494.715000px;}
.y20{bottom:496.335000px;}
.y8c{bottom:496.695000px;}
.yc7{bottom:503.535000px;}
.y71{bottom:506.415000px;}
.yfb{bottom:514.515000px;}
.y50{bottom:515.235000px;}
.y1f{bottom:516.135000px;}
.yc6{bottom:523.515000px;}
.y70{bottom:527.295000px;}
.yfa{bottom:534.315000px;}
.y1e{bottom:536.115000px;}
.yc5{bottom:543.315000px;}
.y6f{bottom:548.175000px;}
.yf9{bottom:554.295000px;}
.y1d{bottom:555.915000px;}
.y4f{bottom:556.995000px;}
.yc4{bottom:563.115000px;}
.y6e{bottom:569.055000px;}
.yf8{bottom:574.095000px;}
.y1c{bottom:575.895000px;}
.y88{bottom:576.975000px;}
.y4e{bottom:577.875000px;}
.yc3{bottom:583.095000px;}
.y6d{bottom:589.935000px;}
.yf7{bottom:595.155000px;}
.y1b{bottom:595.695000px;}
.y4d{bottom:598.755000px;}
.yc2{bottom:602.895000px;}
.y6c{bottom:610.815000px;}
.y1a{bottom:615.495000px;}
.y4c{bottom:619.635000px;}
.yf6{bottom:620.175000px;}
.y87{bottom:621.795000px;}
.yc1{bottom:622.875000px;}
.y6b{bottom:631.695000px;}
.y19{bottom:635.475000px;}
.y4b{bottom:640.545000px;}
.y86{bottom:641.805000px;}
.yf5{bottom:642.165000px;}
.yc0{bottom:642.705000px;}
.y6a{bottom:652.605000px;}
.y18{bottom:655.305000px;}
.y4a{bottom:661.425000px;}
.y85{bottom:661.605000px;}
.ybf{bottom:662.505000px;}
.yf4{bottom:663.945000px;}
.y69{bottom:673.485000px;}
.y17{bottom:675.285000px;}
.y49{bottom:682.305000px;}
.ybe{bottom:682.485000px;}
.yf3{bottom:685.545000px;}
.y68{bottom:694.365000px;}
.y16{bottom:695.085000px;}
.ybd{bottom:702.285000px;}
.y48{bottom:703.185000px;}
.yf2{bottom:705.345000px;}
.y15{bottom:714.885000px;}
.y67{bottom:715.245000px;}
.ybc{bottom:722.265000px;}
.y47{bottom:724.065000px;}
.yf1{bottom:725.145000px;}
.y14{bottom:734.865000px;}
.y66{bottom:736.125000px;}
.ybb{bottom:742.065000px;}
.y46{bottom:744.945000px;}
.yf0{bottom:745.125000px;}
.y13{bottom:754.665000px;}
.y65{bottom:757.005000px;}
.yba{bottom:762.045000px;}
.yef{bottom:764.925000px;}
.y45{bottom:765.825000px;}
.y12{bottom:774.645000px;}
.y64{bottom:777.885000px;}
.yb9{bottom:781.845000px;}
.yee{bottom:784.905000px;}
.y44{bottom:786.705000px;}
.y11{bottom:794.445000px;}
.y63{bottom:798.765000px;}
.yb8{bottom:801.645000px;}
.yed{bottom:804.705000px;}
.y43{bottom:807.585000px;}
.y10{bottom:815.505000px;}
.y62{bottom:818.745000px;}
.yb7{bottom:821.625000px;}
.yec{bottom:824.505000px;}
.y42{bottom:828.285000px;}
.y61{bottom:838.545000px;}
.yf{bottom:841.425000px;}
.yeb{bottom:844.485000px;}
.y41{bottom:849.165000px;}
.y60{bottom:854.205000px;}
.yb6{bottom:861.405000px;}
.yea{bottom:864.285000px;}
.ye{bottom:866.445000px;}
.y40{bottom:870.045000px;}
.yb5{bottom:881.205000px;}
.ye9{bottom:884.265000px;}
.yd{bottom:888.225000px;}
.y3f{bottom:890.925000px;}
.yb4{bottom:901.050000px;}
.ye8{bottom:904.110000px;}
.yc{bottom:910.230000px;}
.y3e{bottom:911.850000px;}
.yb3{bottom:921.030000px;}
.ye7{bottom:924.090000px;}
.yb{bottom:932.010000px;}
.y3d{bottom:932.730000px;}
.yb2{bottom:940.830000px;}
.ye6{bottom:943.890000px;}
.y9{bottom:953.610000px;}
.yb0{bottom:957.030000px;}
.ye5{bottom:963.690000px;}
.y3c{bottom:974.490000px;}
.ye4{bottom:983.670000px;}
.y8{bottom:989.970000px;}
.y3b{bottom:995.370000px;}
.ye3{bottom:1003.470000px;}
.y7{bottom:1011.930000px;}
.y3a{bottom:1016.250000px;}
.ye2{bottom:1023.450000px;}
.y6{bottom:1029.030000px;}
.y39{bottom:1037.130000px;}
.ye1{bottom:1043.250000px;}
.yae{bottom:1057.290000px;}
.y38{bottom:1058.010000px;}
.ye0{bottom:1063.050000px;}
.y5{bottom:1071.150000px;}
.y37{bottom:1078.890000px;}
.ydf{bottom:1083.030000px;}
.y36{bottom:1099.770000px;}
.yde{bottom:1102.830000px;}
.y4{bottom:1116.150000px;}
.y35{bottom:1120.650000px;}
.ydd{bottom:1122.810000px;}
.yab{bottom:1137.570000px;}
.y34{bottom:1141.530000px;}
.ydc{bottom:1142.610000px;}
.y3{bottom:1157.220000px;}
.y33{bottom:1162.440000px;}
.ydb{bottom:1162.620000px;}
.y1{bottom:1194.120000px;}
.h8{height:31.680000px;}
.h15{height:39.636000px;}
.he{height:39.780000px;}
.h12{height:39.816000px;}
.hc{height:49.839840px;}
.hd{height:52.656528px;}
.hb{height:53.517072px;}
.h7{height:58.366272px;}
.h6{height:58.631040px;}
.h4{height:59.079375px;}
.h9{height:59.320128px;}
.h2{height:59.439023px;}
.h11{height:59.580000px;}
.h3{height:65.884219px;}
.ha{height:69.636672px;}
.h16{height:79.380000px;}
.h14{height:79.416000px;}
.hf{height:79.560000px;}
.h10{height:79.596000px;}
.h17{height:99.540000px;}
.h5{height:100.106719px;}
.h13{height:119.340000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:50.400000px;}
.wb{width:154.830000px;}
.wa{width:160.920000px;}
.w4{width:190.290000px;}
.w8{width:196.095000px;}
.w9{width:207.390000px;}
.w6{width:239.970000px;}
.w5{width:240.015000px;}
.w7{width:240.150000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x35{left:9.360000px;}
.x1d{left:10.440000px;}
.x36{left:11.520000px;}
.x1b{left:12.960000px;}
.x31{left:14.085000px;}
.x20{left:15.120000px;}
.x21{left:16.380000px;}
.x1a{left:18.180000px;}
.x15{left:20.196000px;}
.x1e{left:21.240000px;}
.x3a{left:23.265000px;}
.x27{left:25.920000px;}
.x25{left:27.900000px;}
.x2f{left:32.400000px;}
.x2d{left:34.200000px;}
.x32{left:35.280000px;}
.x16{left:36.900000px;}
.x26{left:40.860000px;}
.x6{left:42.120000px;}
.x37{left:46.125000px;}
.x24{left:48.420000px;}
.x22{left:49.680000px;}
.x39{left:54.225000px;}
.x33{left:57.420000px;}
.x19{left:59.580000px;}
.x34{left:63.180000px;}
.x1f{left:67.140000px;}
.x28{left:68.940000px;}
.x2b{left:71.490000px;}
.x38{left:76.500000px;}
.x17{left:82.440000px;}
.x1{left:84.959987px;}
.x1c{left:87.480000px;}
.x23{left:101.520000px;}
.xd{left:106.235987px;}
.x13{left:145.655987px;}
.x29{left:175.889987px;}
.xb{left:190.469987px;}
.x2a{left:208.469987px;}
.x14{left:210.989987px;}
.x3{left:213.689987px;}
.x3f{left:224.489987px;}
.x11{left:261.749987px;}
.xa{left:263.909987px;}
.xc{left:272.009987px;}
.x2c{left:282.675000px;}
.x3e{left:294.914987px;}
.x9{left:318.314987px;}
.x5{left:326.235000px;}
.x3d{left:361.874987px;}
.x7{left:376.635000px;}
.x2{left:446.474987px;}
.xe{left:473.144987px;}
.x2e{left:490.965000px;}
.xf{left:494.384987px;}
.x18{left:567.285000px;}
.x3c{left:596.624987px;}
.x3b{left:640.544987px;}
.x30{left:652.605000px;}
.x10{left:717.449987px;}
.x12{left:737.249987px;}
.x4{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.279467pt;}
.ls17{letter-spacing:-0.215467pt;}
.ls27{letter-spacing:-0.193067pt;}
.ls21{letter-spacing:-0.153067pt;}
.ls20{letter-spacing:-0.059733pt;}
.lsf{letter-spacing:-0.044160pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.024960pt;}
.ls1a{letter-spacing:0.049920pt;}
.ls29{letter-spacing:0.054400pt;}
.ls1b{letter-spacing:0.061867pt;}
.ls25{letter-spacing:0.064533pt;}
.ls15{letter-spacing:0.067200pt;}
.ls0{letter-spacing:0.102400pt;}
.ls14{letter-spacing:0.130667pt;}
.ls23{letter-spacing:0.132267pt;}
.ls9{letter-spacing:0.137600pt;}
.ls2a{letter-spacing:0.171733pt;}
.ls16{letter-spacing:0.286720pt;}
.ls11{letter-spacing:0.332267pt;}
.lsa{letter-spacing:0.360533pt;}
.ls19{letter-spacing:0.408320pt;}
.ls24{letter-spacing:0.464000pt;}
.ls1f{letter-spacing:0.531840pt;}
.ls26{letter-spacing:0.586667pt;}
.ls1e{letter-spacing:0.666880pt;}
.ls28{letter-spacing:0.704000pt;}
.ls1{letter-spacing:1.811840pt;}
.ls2{letter-spacing:4.371840pt;}
.ls5{letter-spacing:5.651840pt;}
.lsd{letter-spacing:6.291840pt;}
.ls4{letter-spacing:6.931840pt;}
.ls6{letter-spacing:8.211840pt;}
.ls7{letter-spacing:8.851840pt;}
.ls3{letter-spacing:9.491840pt;}
.ls12{letter-spacing:11.411840pt;}
.ls1c{letter-spacing:13.971840pt;}
.ls13{letter-spacing:24.371840pt;}
.ls22{letter-spacing:26.832640pt;}
.lsb{letter-spacing:29.971840pt;}
.lsc{letter-spacing:33.171840pt;}
.ls18{letter-spacing:34.451840pt;}
.ls1d{letter-spacing:54.992640pt;}
.ws18{word-spacing:-18.834133pt;}
.ws4{word-spacing:-15.897600pt;}
.wsd{word-spacing:-14.409600pt;}
.ws5{word-spacing:-14.342400pt;}
.ws15{word-spacing:-13.612160pt;}
.ws12{word-spacing:-13.494827pt;}
.wsa{word-spacing:-13.240427pt;}
.ws14{word-spacing:-13.040427pt;}
.wsc{word-spacing:-13.038827pt;}
.ws17{word-spacing:-12.972693pt;}
.ws10{word-spacing:-12.970027pt;}
.ws16{word-spacing:-12.962560pt;}
.wse{word-spacing:-12.958080pt;}
.ws9{word-spacing:-12.933120pt;}
.ws3{word-spacing:-12.908160pt;}
.ws8{word-spacing:-12.864000pt;}
.wsf{word-spacing:-12.848427pt;}
.ws11{word-spacing:-12.755093pt;}
.ws13{word-spacing:-12.715093pt;}
.wsb{word-spacing:-12.692693pt;}
.ws2{word-spacing:-12.025173pt;}
.ws1{word-spacing:-11.303253pt;}
.ws0{word-spacing:-11.080320pt;}
.ws7{word-spacing:-10.663253pt;}
.ws6{word-spacing:0.000000pt;}
._13{margin-left:-3.610240pt;}
._12{margin-left:-2.311680pt;}
._6{margin-left:-1.300480pt;}
._0{width:0.903040pt;}
._5{width:2.000427pt;}
._7{width:3.718400pt;}
._a{width:4.727680pt;}
._8{width:5.630720pt;}
._d{width:6.607573pt;}
._b{width:7.572907pt;}
._9{width:9.030400pt;}
._1c{width:10.305280pt;}
._c{width:11.367680pt;}
._1d{width:13.970560pt;}
._1b{width:14.873600pt;}
._3{width:15.928320pt;}
._4{width:16.982400pt;}
._18{width:17.901440pt;}
._27{width:19.229440pt;}
._26{width:20.557440pt;}
._e{width:21.885440pt;}
._f{width:23.691520pt;}
._1e{width:24.700800pt;}
._1a{width:26.135040pt;}
._15{width:27.622400pt;}
._21{width:28.950400pt;}
._16{width:29.959680pt;}
._17{width:31.739947pt;}
._2a{width:32.668800pt;}
._19{width:33.943680pt;}
._2b{width:35.006080pt;}
._2d{width:36.010880pt;}
._2e{width:37.290240pt;}
._2c{width:38.565120pt;}
._23{width:39.521280pt;}
._2f{width:41.008640pt;}
._29{width:42.708480pt;}
._22{width:44.355200pt;}
._25{width:46.586240pt;}
._36{width:48.445440pt;}
._1f{width:50.304640pt;}
._10{width:54.182400pt;}
._24{width:57.263360pt;}
._28{width:63.319040pt;}
._14{width:66.240640pt;}
._31{width:73.638400pt;}
._34{width:79.892480pt;}
._35{width:90.981547pt;}
._37{width:222.307200pt;}
._32{width:282.864000pt;}
._30{width:327.431680pt;}
._1{width:392.119467pt;}
._2{width:411.563947pt;}
._33{width:412.843947pt;}
._20{width:414.763947pt;}
._11{width:416.683947pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:3.840000pt;}
.y95{bottom:4.000000pt;}
.ya{bottom:9.120000pt;}
.y89{bottom:12.640000pt;}
.yac{bottom:12.666667pt;}
.y8f{bottom:12.800000pt;}
.ya8{bottom:21.440000pt;}
.yad{bottom:21.466667pt;}
.y8a{bottom:21.600000pt;}
.ya1{bottom:21.640000pt;}
.y8d{bottom:30.400000pt;}
.y91{bottom:39.200000pt;}
.y97{bottom:39.360000pt;}
.y8e{bottom:48.000000pt;}
.ya9{bottom:48.032000pt;}
.y93{bottom:48.160000pt;}
.y2{bottom:51.040000pt;}
.yaf{bottom:56.800000pt;}
.yaa{bottom:56.826667pt;}
.y90{bottom:56.960000pt;}
.y94{bottom:57.000000pt;}
.ya4{bottom:65.760000pt;}
.ya6{bottom:74.560000pt;}
.yb1{bottom:74.720000pt;}
.ya7{bottom:78.880000pt;}
.ya5{bottom:92.320000pt;}
.yda{bottom:94.240000pt;}
.y84{bottom:97.760000pt;}
.y9c{bottom:104.480000pt;}
.yd9{bottom:111.840000pt;}
.y32{bottom:113.280000pt;}
.y83{bottom:116.160000pt;}
.y9b{bottom:122.912000pt;}
.yd8{bottom:129.632000pt;}
.y31{bottom:131.872000pt;}
.y82{bottom:134.746667pt;}
.y9a{bottom:141.466667pt;}
.yd7{bottom:147.226667pt;}
.ya3{bottom:150.106667pt;}
.y30{bottom:150.266667pt;}
.y81{bottom:153.306667pt;}
.y99{bottom:159.386667pt;}
.yd6{bottom:164.826667pt;}
.y2f{bottom:168.826667pt;}
.y80{bottom:171.866667pt;}
.y98{bottom:173.786667pt;}
.y5f{bottom:179.706667pt;}
.yd5{bottom:182.586667pt;}
.y2e{bottom:187.386667pt;}
.y7f{bottom:190.426667pt;}
.y10a{bottom:192.346667pt;}
.y5e{bottom:198.266667pt;}
.yd4{bottom:200.186667pt;}
.y2d{bottom:205.946667pt;}
.y7e{bottom:208.986667pt;}
.y109{bottom:209.946667pt;}
.y5d{bottom:216.826667pt;}
.yd3{bottom:217.946667pt;}
.y2c{bottom:224.506667pt;}
.y96{bottom:227.386667pt;}
.y7d{bottom:227.546667pt;}
.y108{bottom:227.706667pt;}
.y5c{bottom:235.386667pt;}
.yd2{bottom:235.546667pt;}
.y2b{bottom:243.066667pt;}
.y107{bottom:245.306667pt;}
.y7c{bottom:246.106667pt;}
.yd1{bottom:253.306667pt;}
.y5b{bottom:253.946667pt;}
.ya2{bottom:256.826667pt;}
.y2a{bottom:261.626667pt;}
.y106{bottom:262.906667pt;}
.y7b{bottom:264.666667pt;}
.yd0{bottom:270.906667pt;}
.y5a{bottom:272.506667pt;}
.y29{bottom:280.186667pt;}
.y105{bottom:280.666667pt;}
.y7a{bottom:283.226667pt;}
.ycf{bottom:288.506667pt;}
.y59{bottom:291.066667pt;}
.y104{bottom:298.266667pt;}
.y28{bottom:298.746667pt;}
.y79{bottom:301.786667pt;}
.yce{bottom:306.266667pt;}
.y58{bottom:309.626667pt;}
.y103{bottom:316.026667pt;}
.y27{bottom:317.306667pt;}
.y78{bottom:320.346667pt;}
.ycd{bottom:323.866667pt;}
.y57{bottom:328.186667pt;}
.y102{bottom:333.626667pt;}
.y26{bottom:335.066667pt;}
.y77{bottom:338.906667pt;}
.ycc{bottom:341.626667pt;}
.y56{bottom:346.786667pt;}
.y101{bottom:351.266667pt;}
.y25{bottom:352.866667pt;}
.y76{bottom:357.506667pt;}
.ycb{bottom:359.266667pt;}
.y55{bottom:365.346667pt;}
.ya0{bottom:368.066667pt;}
.y100{bottom:369.026667pt;}
.y92{bottom:370.146667pt;}
.y24{bottom:370.466667pt;}
.y75{bottom:376.066667pt;}
.yca{bottom:376.866667pt;}
.y54{bottom:383.906667pt;}
.y9f{bottom:385.826667pt;}
.yff{bottom:386.626667pt;}
.y23{bottom:388.226667pt;}
.y74{bottom:394.626667pt;}
.y53{bottom:402.466667pt;}
.y9e{bottom:403.426667pt;}
.yfe{bottom:404.386667pt;}
.y22{bottom:405.826667pt;}
.yc9{bottom:412.226667pt;}
.y73{bottom:413.026667pt;}
.y52{bottom:421.026667pt;}
.y9d{bottom:421.186667pt;}
.yfd{bottom:421.986667pt;}
.y21{bottom:423.426667pt;}
.yc8{bottom:429.986667pt;}
.y72{bottom:431.586667pt;}
.y51{bottom:439.426667pt;}
.yfc{bottom:439.746667pt;}
.y20{bottom:441.186667pt;}
.y8c{bottom:441.506667pt;}
.yc7{bottom:447.586667pt;}
.y71{bottom:450.146667pt;}
.yfb{bottom:457.346667pt;}
.y50{bottom:457.986667pt;}
.y1f{bottom:458.786667pt;}
.yc6{bottom:465.346667pt;}
.y70{bottom:468.706667pt;}
.yfa{bottom:474.946667pt;}
.y1e{bottom:476.546667pt;}
.yc5{bottom:482.946667pt;}
.y6f{bottom:487.266667pt;}
.yf9{bottom:492.706667pt;}
.y1d{bottom:494.146667pt;}
.y4f{bottom:495.106667pt;}
.yc4{bottom:500.546667pt;}
.y6e{bottom:505.826667pt;}
.yf8{bottom:510.306667pt;}
.y1c{bottom:511.906667pt;}
.y88{bottom:512.866667pt;}
.y4e{bottom:513.666667pt;}
.yc3{bottom:518.306667pt;}
.y6d{bottom:524.386667pt;}
.yf7{bottom:529.026667pt;}
.y1b{bottom:529.506667pt;}
.y4d{bottom:532.226667pt;}
.yc2{bottom:535.906667pt;}
.y6c{bottom:542.946667pt;}
.y1a{bottom:547.106667pt;}
.y4c{bottom:550.786667pt;}
.yf6{bottom:551.266667pt;}
.y87{bottom:552.706667pt;}
.yc1{bottom:553.666667pt;}
.y6b{bottom:561.506667pt;}
.y19{bottom:564.866667pt;}
.y4b{bottom:569.373333pt;}
.y86{bottom:570.493333pt;}
.yf5{bottom:570.813333pt;}
.yc0{bottom:571.293333pt;}
.y6a{bottom:580.093333pt;}
.y18{bottom:582.493333pt;}
.y4a{bottom:587.933333pt;}
.y85{bottom:588.093333pt;}
.ybf{bottom:588.893333pt;}
.yf4{bottom:590.173333pt;}
.y69{bottom:598.653333pt;}
.y17{bottom:600.253333pt;}
.y49{bottom:606.493333pt;}
.ybe{bottom:606.653333pt;}
.yf3{bottom:609.373333pt;}
.y68{bottom:617.213333pt;}
.y16{bottom:617.853333pt;}
.ybd{bottom:624.253333pt;}
.y48{bottom:625.053333pt;}
.yf2{bottom:626.973333pt;}
.y15{bottom:635.453333pt;}
.y67{bottom:635.773333pt;}
.ybc{bottom:642.013333pt;}
.y47{bottom:643.613333pt;}
.yf1{bottom:644.573333pt;}
.y14{bottom:653.213333pt;}
.y66{bottom:654.333333pt;}
.ybb{bottom:659.613333pt;}
.y46{bottom:662.173333pt;}
.yf0{bottom:662.333333pt;}
.y13{bottom:670.813333pt;}
.y65{bottom:672.893333pt;}
.yba{bottom:677.373333pt;}
.yef{bottom:679.933333pt;}
.y45{bottom:680.733333pt;}
.y12{bottom:688.573333pt;}
.y64{bottom:691.453333pt;}
.yb9{bottom:694.973333pt;}
.yee{bottom:697.693333pt;}
.y44{bottom:699.293333pt;}
.y11{bottom:706.173333pt;}
.y63{bottom:710.013333pt;}
.yb8{bottom:712.573333pt;}
.yed{bottom:715.293333pt;}
.y43{bottom:717.853333pt;}
.y10{bottom:724.893333pt;}
.y62{bottom:727.773333pt;}
.yb7{bottom:730.333333pt;}
.yec{bottom:732.893333pt;}
.y42{bottom:736.253333pt;}
.y61{bottom:745.373333pt;}
.yf{bottom:747.933333pt;}
.yeb{bottom:750.653333pt;}
.y41{bottom:754.813333pt;}
.y60{bottom:759.293333pt;}
.yb6{bottom:765.693333pt;}
.yea{bottom:768.253333pt;}
.ye{bottom:770.173333pt;}
.y40{bottom:773.373333pt;}
.yb5{bottom:783.293333pt;}
.ye9{bottom:786.013333pt;}
.yd{bottom:789.533333pt;}
.y3f{bottom:791.933333pt;}
.yb4{bottom:800.933333pt;}
.ye8{bottom:803.653333pt;}
.yc{bottom:809.093333pt;}
.y3e{bottom:810.533333pt;}
.yb3{bottom:818.693333pt;}
.ye7{bottom:821.413333pt;}
.yb{bottom:828.453333pt;}
.y3d{bottom:829.093333pt;}
.yb2{bottom:836.293333pt;}
.ye6{bottom:839.013333pt;}
.y9{bottom:847.653333pt;}
.yb0{bottom:850.693333pt;}
.ye5{bottom:856.613333pt;}
.y3c{bottom:866.213333pt;}
.ye4{bottom:874.373333pt;}
.y8{bottom:879.973333pt;}
.y3b{bottom:884.773333pt;}
.ye3{bottom:891.973333pt;}
.y7{bottom:899.493333pt;}
.y3a{bottom:903.333333pt;}
.ye2{bottom:909.733333pt;}
.y6{bottom:914.693333pt;}
.y39{bottom:921.893333pt;}
.ye1{bottom:927.333333pt;}
.yae{bottom:939.813333pt;}
.y38{bottom:940.453333pt;}
.ye0{bottom:944.933333pt;}
.y5{bottom:952.133333pt;}
.y37{bottom:959.013333pt;}
.ydf{bottom:962.693333pt;}
.y36{bottom:977.573333pt;}
.yde{bottom:980.293333pt;}
.y4{bottom:992.133333pt;}
.y35{bottom:996.133333pt;}
.ydd{bottom:998.053333pt;}
.yab{bottom:1011.173333pt;}
.y34{bottom:1014.693333pt;}
.ydc{bottom:1015.653333pt;}
.y3{bottom:1028.640000pt;}
.y33{bottom:1033.280000pt;}
.ydb{bottom:1033.440000pt;}
.y1{bottom:1061.440000pt;}
.h8{height:28.160000pt;}
.h15{height:35.232000pt;}
.he{height:35.360000pt;}
.h12{height:35.392000pt;}
.hc{height:44.302080pt;}
.hd{height:46.805803pt;}
.hb{height:47.570731pt;}
.h7{height:51.881131pt;}
.h6{height:52.116480pt;}
.h4{height:52.515000pt;}
.h9{height:52.729003pt;}
.h2{height:52.834688pt;}
.h11{height:52.960000pt;}
.h3{height:58.563750pt;}
.ha{height:61.899264pt;}
.h16{height:70.560000pt;}
.h14{height:70.592000pt;}
.hf{height:70.720000pt;}
.h10{height:70.752000pt;}
.h17{height:88.480000pt;}
.h5{height:88.983750pt;}
.h13{height:106.080000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:44.800000pt;}
.wb{width:137.626667pt;}
.wa{width:143.040000pt;}
.w4{width:169.146667pt;}
.w8{width:174.306667pt;}
.w9{width:184.346667pt;}
.w6{width:213.306667pt;}
.w5{width:213.346667pt;}
.w7{width:213.466667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x35{left:8.320000pt;}
.x1d{left:9.280000pt;}
.x36{left:10.240000pt;}
.x1b{left:11.520000pt;}
.x31{left:12.520000pt;}
.x20{left:13.440000pt;}
.x21{left:14.560000pt;}
.x1a{left:16.160000pt;}
.x15{left:17.952000pt;}
.x1e{left:18.880000pt;}
.x3a{left:20.680000pt;}
.x27{left:23.040000pt;}
.x25{left:24.800000pt;}
.x2f{left:28.800000pt;}
.x2d{left:30.400000pt;}
.x32{left:31.360000pt;}
.x16{left:32.800000pt;}
.x26{left:36.320000pt;}
.x6{left:37.440000pt;}
.x37{left:41.000000pt;}
.x24{left:43.040000pt;}
.x22{left:44.160000pt;}
.x39{left:48.200000pt;}
.x33{left:51.040000pt;}
.x19{left:52.960000pt;}
.x34{left:56.160000pt;}
.x1f{left:59.680000pt;}
.x28{left:61.280000pt;}
.x2b{left:63.546667pt;}
.x38{left:68.000000pt;}
.x17{left:73.280000pt;}
.x1{left:75.519988pt;}
.x1c{left:77.760000pt;}
.x23{left:90.240000pt;}
.xd{left:94.431988pt;}
.x13{left:129.471988pt;}
.x29{left:156.346655pt;}
.xb{left:169.306655pt;}
.x2a{left:185.306655pt;}
.x14{left:187.546655pt;}
.x3{left:189.946655pt;}
.x3f{left:199.546655pt;}
.x11{left:232.666655pt;}
.xa{left:234.586655pt;}
.xc{left:241.786655pt;}
.x2c{left:251.266667pt;}
.x3e{left:262.146655pt;}
.x9{left:282.946655pt;}
.x5{left:289.986667pt;}
.x3d{left:321.666655pt;}
.x7{left:334.786667pt;}
.x2{left:396.866655pt;}
.xe{left:420.573322pt;}
.x2e{left:436.413333pt;}
.xf{left:439.453322pt;}
.x18{left:504.253333pt;}
.x3c{left:530.333322pt;}
.x3b{left:569.373322pt;}
.x30{left:580.093333pt;}
.x10{left:637.733322pt;}
.x12{left:655.333322pt;}
.x4{left:718.213322pt;}
}




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