
    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_07a605ed54d5262c2131f681.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_f76587bd2fde42f5725a526f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_5d585a4a37724ac8caea296d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_3fdd9ba01483c7cbead6d9d1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_71f147d5ed4b0d13989b37ec.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_ddc035845c5fddc1867b26ca.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_ecce4c7181efda3af2917c80.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:38.903040px;}
.ls38{letter-spacing:-1.013760px;}
.ls39{letter-spacing:-0.950400px;}
.ls28{letter-spacing:-0.887040px;}
.ls23{letter-spacing:-0.702000px;}
.ls12{letter-spacing:-0.696960px;}
.ls13{letter-spacing:-0.570240px;}
.ls22{letter-spacing:-0.486000px;}
.ls33{letter-spacing:-0.432000px;}
.ls31{letter-spacing:-0.380160px;}
.lsf{letter-spacing:-0.324000px;}
.lsc{letter-spacing:-0.316800px;}
.ls1a{letter-spacing:-0.190080px;}
.ls19{letter-spacing:-0.132480px;}
.lse{letter-spacing:-0.119520px;}
.ls18{letter-spacing:-0.084240px;}
.lsb{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.051840px;}
.ls7{letter-spacing:0.063360px;}
.ls27{letter-spacing:0.102600px;}
.ls25{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.120240px;}
.ls32{letter-spacing:0.124200px;}
.ls11{letter-spacing:0.190080px;}
.ls24{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.316800px;}
.ls10{letter-spacing:0.324000px;}
.ls1c{letter-spacing:0.336960px;}
.ls1d{letter-spacing:0.421200px;}
.ls2a{letter-spacing:1.077120px;}
.ls1f{letter-spacing:2.477376px;}
.ls2c{letter-spacing:2.521728px;}
.ls2b{letter-spacing:2.534400px;}
.ls1e{letter-spacing:3.294720px;}
.ls26{letter-spacing:4.517568px;}
.ls37{letter-spacing:5.955840px;}
.ls30{letter-spacing:6.152256px;}
.ls35{letter-spacing:7.603200px;}
.ls2e{letter-spacing:9.757440px;}
.ls2d{letter-spacing:10.891584px;}
.ls29{letter-spacing:12.576960px;}
.ls36{letter-spacing:21.288960px;}
.ls34{letter-spacing:29.608128px;}
.ls21{letter-spacing:37.825920px;}
.ls2f{letter-spacing:52.208640px;}
.ls20{letter-spacing:55.411200px;}
.ls8{letter-spacing:135.717120px;}
.ls14{letter-spacing:205.513920px;}
.ls15{letter-spacing:311.356800px;}
.ls6{letter-spacing:541.837440px;}
.ls16{letter-spacing:570.576960px;}
.ls4{letter-spacing:583.591680px;}
.ls2{letter-spacing:667.797120px;}
.lsa{letter-spacing:846.362880px;}
.ls1{letter-spacing:867.254400px;}
.ls3{letter-spacing:888.163200px;}
.ls5{letter-spacing:1024.974720px;}
.ls9{letter-spacing:1468.494720px;}
.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;}
}
.ws37{word-spacing:-63.360000px;}
.ws21{word-spacing:-59.760000px;}
.ws1{word-spacing:-33.546960px;}
.ws2{word-spacing:-29.700000px;}
.ws1f{word-spacing:-23.755680px;}
.ws4e{word-spacing:-23.334480px;}
.ws0{word-spacing:-20.304000px;}
.ws45{word-spacing:-19.584000px;}
.ws12{word-spacing:-18.282240px;}
.ws4{word-spacing:-17.804160px;}
.ws3{word-spacing:-17.677440px;}
.ws20{word-spacing:-17.614080px;}
.ws22{word-spacing:-17.424000px;}
.ws13{word-spacing:-17.297280px;}
.ws6{word-spacing:-17.043840px;}
.ws5{word-spacing:-16.917120px;}
.ws33{word-spacing:-16.727040px;}
.ws4f{word-spacing:-16.663680px;}
.ws30{word-spacing:-15.228000px;}
.ws2f{word-spacing:-14.310000px;}
.ws14{word-spacing:-11.609280px;}
.ws43{word-spacing:-4.688640px;}
.ws28{word-spacing:-3.991680px;}
.ws3f{word-spacing:-3.294720px;}
.ws24{word-spacing:-2.534400px;}
.ws27{word-spacing:-1.837440px;}
.ws11{word-spacing:-1.203840px;}
.wsf{word-spacing:-1.077120px;}
.ws38{word-spacing:-0.864000px;}
.ws32{word-spacing:-0.810000px;}
.ws1d{word-spacing:-0.758160px;}
.ws44{word-spacing:-0.633600px;}
.ws35{word-spacing:-0.506880px;}
.wsd{word-spacing:-0.380160px;}
.ws18{word-spacing:-0.316800px;}
.ws4c{word-spacing:-0.288000px;}
.ws3c{word-spacing:-0.252720px;}
.ws4d{word-spacing:-0.216000px;}
.ws34{word-spacing:-0.190080px;}
.ws23{word-spacing:-0.144000px;}
.ws17{word-spacing:-0.126720px;}
.wsc{word-spacing:-0.108000px;}
.ws8{word-spacing:-0.063360px;}
.ws7{word-spacing:0.000000px;}
.wsa{word-spacing:0.059760px;}
.ws9{word-spacing:0.316800px;}
.ws1e{word-spacing:0.380160px;}
.ws15{word-spacing:0.421200px;}
.ws16{word-spacing:0.463680px;}
.wsb{word-spacing:0.540000px;}
.ws31{word-spacing:0.594000px;}
.ws3d{word-spacing:0.696960px;}
.ws50{word-spacing:1.013760px;}
.ws2a{word-spacing:1.077120px;}
.ws40{word-spacing:1.774080px;}
.ws41{word-spacing:1.837440px;}
.ws2c{word-spacing:2.471040px;}
.ws3b{word-spacing:2.534400px;}
.ws26{word-spacing:3.231360px;}
.ws3a{word-spacing:3.928320px;}
.ws2d{word-spacing:4.625280px;}
.ws1a{word-spacing:5.385600px;}
.ws1b{word-spacing:6.082560px;}
.ws46{word-spacing:6.145920px;}
.ws1c{word-spacing:6.842880px;}
.ws25{word-spacing:7.539840px;}
.ws51{word-spacing:8.236800px;}
.ws52{word-spacing:8.997120px;}
.ws53{word-spacing:9.060480px;}
.ws42{word-spacing:9.694080px;}
.ws49{word-spacing:10.391040px;}
.ws29{word-spacing:11.151360px;}
.ws55{word-spacing:12.545280px;}
.ws39{word-spacing:13.305600px;}
.ws19{word-spacing:15.459840px;}
.wse{word-spacing:16.156800px;}
.ws4a{word-spacing:16.917120px;}
.ws48{word-spacing:17.614080px;}
.ws54{word-spacing:18.311040px;}
.ws36{word-spacing:19.071360px;}
.ws56{word-spacing:20.465280px;}
.ws3e{word-spacing:21.225600px;}
.ws2e{word-spacing:21.922560px;}
.ws47{word-spacing:21.985920px;}
.ws4b{word-spacing:29.842560px;}
.ws10{word-spacing:32.757120px;}
.ws2b{word-spacing:33.454080px;}
._4{margin-left:-15.016320px;}
._a{margin-left:-13.449600px;}
._9{margin-left:-12.257280px;}
._3{margin-left:-9.169920px;}
._5{margin-left:-7.741440px;}
._7{margin-left:-5.961600px;}
._8{margin-left:-4.654080px;}
._6{margin-left:-3.020256px;}
._0{margin-left:-1.221120px;}
._1{width:1.541808px;}
._c{width:4.533120px;}
._b{width:9.711360px;}
._d{width:15.534720px;}
._e{width:21.957120px;}
._2{width:845.844480px;}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(51,90,147);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.420000px;}
.y33{bottom:21.600000px;}
.y21{bottom:25.920000px;}
.y1a{bottom:26.100000px;}
.y2f{bottom:39.600000px;}
.y6{bottom:56.527200px;}
.y5{bottom:75.064320px;}
.y2b{bottom:112.864320px;}
.y85{bottom:114.480000px;}
.y117{bottom:116.820000px;}
.yc8{bottom:127.461600px;}
.y105{bottom:128.201760px;}
.y84{bottom:130.140000px;}
.y2a{bottom:132.664320px;}
.y58{bottom:133.401600px;}
.y116{bottom:138.780000px;}
.yc7{bottom:147.435840px;}
.y29{bottom:152.638560px;}
.y104{bottom:155.747520px;}
.y57{bottom:165.255840px;}
.y83{bottom:166.871520px;}
.yc6{bottom:167.235840px;}
.y28{bottom:179.994240px;}
.ya0{bottom:182.520000px;}
.y103{bottom:183.103200px;}
.yc5{bottom:187.210080px;}
.ye3{bottom:192.617280px;}
.y56{bottom:197.110080px;}
.y9f{bottom:200.160000px;}
.y102{bottom:203.077440px;}
.yc4{bottom:207.184320px;}
.y27{bottom:207.540000px;}
.ye2{bottom:212.591520px;}
.y9e{bottom:218.880000px;}
.y7a{bottom:220.688640px;}
.y55{bottom:229.154400px;}
.y101{bottom:230.433120px;}
.y26{bottom:230.754240px;}
.ye1{bottom:232.391520px;}
.yc3{bottom:234.540000px;}
.y9d{bottom:237.780000px;}
.y79{bottom:241.565760px;}
.ye0{bottom:252.365760px;}
.y25{bottom:253.437120px;}
.yc2{bottom:255.060000px;}
.y9c{bottom:256.680000px;}
.y100{bottom:257.788800px;}
.y54{bottom:261.008640px;}
.y78{bottom:262.268640px;}
.ydf{bottom:272.340000px;}
.y9b{bottom:275.580000px;}
.y24{bottom:276.120000px;}
.y77{bottom:283.145760px;}
.yff{bottom:285.334560px;}
.yde{bottom:292.680000px;}
.y53{bottom:292.862880px;}
.yc1{bottom:293.400000px;}
.y9a{bottom:294.480000px;}
.y20{bottom:296.100000px;}
.y22{bottom:303.840000px;}
.yfe{bottom:312.690240px;}
.y99{bottom:313.200000px;}
.yc0{bottom:318.955680px;}
.y23{bottom:322.020000px;}
.y76{bottom:324.900000px;}
.y52{bottom:324.907200px;}
.y98{bottom:332.100000px;}
.ydd{bottom:333.000000px;}
.ybf{bottom:337.140000px;}
.yfd{bottom:340.045920px;}
.ydc{bottom:348.480000px;}
.y1f{bottom:349.920000px;}
.y97{bottom:351.000000px;}
.y51{bottom:356.761440px;}
.ybe{bottom:362.695680px;}
.y75{bottom:366.660000px;}
.ydb{bottom:367.380000px;}
.yfc{bottom:367.591680px;}
.y1e{bottom:377.820000px;}
.ybd{bottom:380.880000px;}
.yda{bottom:386.280000px;}
.y96{bottom:387.540000px;}
.y50{bottom:388.615680px;}
.yfb{bottom:394.947360px;}
.yd9{bottom:405.000000px;}
.y1d{bottom:405.540000px;}
.ybc{bottom:406.440000px;}
.y74{bottom:410.582880px;}
.y95{bottom:413.111520px;}
.y4f{bottom:420.660000px;}
.yfa{bottom:422.303040px;}
.yd8{bottom:423.900000px;}
.y73{bottom:431.460000px;}
.ybb{bottom:432.175680px;}
.y94{bottom:432.911520px;}
.y1c{bottom:433.440000px;}
.yd7{bottom:442.800000px;}
.y4e{bottom:449.640000px;}
.yf9{bottom:449.848800px;}
.yba{bottom:450.360000px;}
.y72{bottom:452.162880px;}
.y93{bottom:452.885760px;}
.y19{bottom:453.420000px;}
.y1b{bottom:461.340000px;}
.y92{bottom:472.860000px;}
.y71{bottom:473.040000px;}
.yb9{bottom:475.740000px;}
.yf8{bottom:477.204480px;}
.yd6{bottom:479.340000px;}
.y18{bottom:479.520000px;}
.y91{bottom:492.660000px;}
.y4d{bottom:492.664320px;}
.y12e{bottom:493.220160px;}
.y70{bottom:493.922880px;}
.yb8{bottom:501.481440px;}
.yf7{bottom:504.560160px;}
.yd5{bottom:504.911520px;}
.y17{bottom:507.240000px;}
.y90{bottom:513.180000px;}
.y6f{bottom:514.800000px;}
.yb7{bottom:519.665760px;}
.y4c{bottom:520.020000px;}
.y12d{bottom:520.765920px;}
.yd4{bottom:524.711520px;}
.yf6{bottom:532.105920px;}
.y82{bottom:534.248640px;}
.y6e{bottom:535.502880px;}
.y16{bottom:536.580000px;}
.yb6{bottom:537.660000px;}
.y12c{bottom:540.565920px;}
.yd3{bottom:544.685760px;}
.y4b{bottom:547.380000px;}
.y8f{bottom:550.975500px;}
.y115{bottom:551.160000px;}
.y81{bottom:554.951520px;}
.y6d{bottom:556.380000px;}
.yb5{bottom:558.180000px;}
.yf5{bottom:559.461600px;}
.y12b{bottom:560.540160px;}
.yd2{bottom:564.660000px;}
.y8e{bottom:566.635500px;}
.y15{bottom:568.620000px;}
.y4a{bottom:574.920000px;}
.y80{bottom:575.828640px;}
.y114{bottom:576.555840px;}
.y6c{bottom:577.257120px;}
.y8d{bottom:582.120000px;}
.yd1{bottom:585.180000px;}
.yf4{bottom:586.817280px;}
.y12a{bottom:588.085920px;}
.y113{bottom:596.530080px;}
.y7f{bottom:596.705760px;}
.y6b{bottom:597.960000px;}
.yb4{bottom:598.337280px;}
.y14{bottom:599.571000px;}
.y49{bottom:602.280000px;}
.y129{bottom:607.885920px;}
.yf3{bottom:614.363040px;}
.y112{bottom:616.504320px;}
.y7e{bottom:617.582880px;}
.yb3{bottom:618.311520px;}
.y6a{bottom:618.842880px;}
.y8c{bottom:618.848640px;}
.yd0{bottom:622.804500px;}
.y128{bottom:627.860160px;}
.y48{bottom:629.640000px;}
.y111{bottom:636.304320px;}
.yb2{bottom:638.111520px;}
.y7d{bottom:638.460000px;}
.ycf{bottom:638.640000px;}
.y69{bottom:639.720000px;}
.y13{bottom:641.340000px;}
.yf2{bottom:652.157280px;}
.y127{bottom:655.215840px;}
.y47{bottom:657.180000px;}
.yb1{bottom:658.085760px;}
.yce{bottom:658.620000px;}
.y110{bottom:663.850080px;}
.y126{bottom:675.190080px;}
.y7c{bottom:676.800000px;}
.yb0{bottom:678.060000px;}
.y68{bottom:680.591520px;}
.y12{bottom:682.920000px;}
.y46{bottom:684.540000px;}
.yf1{bottom:690.141600px;}
.y10f{bottom:691.205760px;}
.y125{bottom:695.164320px;}
.yaf{bottom:698.034240px;}
.y67{bottom:700.565760px;}
.y45{bottom:711.900000px;}
.y7b{bottom:713.700000px;}
.yae{bottom:717.834240px;}
.y10e{bottom:718.561440px;}
.y66{bottom:720.540000px;}
.y124{bottom:722.520000px;}
.y11{bottom:724.500000px;}
.yf0{bottom:728.125920px;}
.y44{bottom:739.440000px;}
.y65{bottom:740.340000px;}
.yad{bottom:745.380000px;}
.y10d{bottom:746.107200px;}
.yef{bottom:747.925920px;}
.y123{bottom:751.500000px;}
.y39{bottom:752.051520px;}
.y64{bottom:760.860000px;}
.y10{bottom:762.664320px;}
.yac{bottom:765.720000px;}
.y43{bottom:766.800000px;}
.yee{bottom:767.900160px;}
.y38{bottom:772.025760px;}
.y10c{bottom:773.462880px;}
.yed{bottom:787.874400px;}
.yf{bottom:790.020000px;}
.y37{bottom:792.000000px;}
.y42{bottom:794.340000px;}
.y122{bottom:794.560320px;}
.y10b{bottom:800.818560px;}
.y63{bottom:801.034560px;}
.yab{bottom:807.660000px;}
.yec{bottom:807.848640px;}
.y121{bottom:814.534560px;}
.ye{bottom:817.200000px;}
.y36{bottom:820.980000px;}
.y62{bottom:821.008800px;}
.y41{bottom:821.700000px;}
.yeb{bottom:827.648640px;}
.y10a{bottom:828.364320px;}
.y120{bottom:834.334560px;}
.y61{bottom:840.983040px;}
.yea{bottom:847.622880px;}
.y40{bottom:849.060000px;}
.yaa{bottom:850.521600px;}
.y11f{bottom:854.308800px;}
.yd{bottom:855.522000px;}
.y109{bottom:855.720000px;}
.y60{bottom:860.783040px;}
.y35{bottom:864.004320px;}
.y11e{bottom:874.283040px;}
.y3f{bottom:876.600000px;}
.ya9{bottom:878.067360px;}
.y5f{bottom:880.757280px;}
.y108{bottom:883.075680px;}
.ye9{bottom:885.607200px;}
.yc{bottom:890.091000px;}
.y34{bottom:891.360000px;}
.y11d{bottom:894.083040px;}
.ya8{bottom:897.867360px;}
.y5e{bottom:900.731520px;}
.y3e{bottom:903.960000px;}
.ye8{bottom:905.407200px;}
.y32{bottom:906.840000px;}
.y107{bottom:910.621440px;}
.y11c{bottom:914.057280px;}
.ya7{bottom:917.841600px;}
.y5d{bottom:920.531520px;}
.y8b{bottom:922.691520px;}
.yb{bottom:924.660000px;}
.y3d{bottom:931.320000px;}
.y11b{bottom:934.031520px;}
.y106{bottom:937.977120px;}
.y5c{bottom:940.505760px;}
.ye7{bottom:943.391520px;}
.y8a{bottom:943.568640px;}
.y2e{bottom:943.920000px;}
.ya6{bottom:945.197280px;}
.ycd{bottom:948.083040px;}
.y11a{bottom:953.831520px;}
.y3c{bottom:958.860000px;}
.y5b{bottom:960.480000px;}
.ye6{bottom:963.365760px;}
.y89{bottom:964.445760px;}
.ya5{bottom:965.171520px;}
.ya{bottom:965.332800px;}
.y30{bottom:965.340000px;}
.ycc{bottom:968.057280px;}
.y119{bottom:973.805760px;}
.y5a{bottom:980.280000px;}
.ye5{bottom:983.165760px;}
.ya4{bottom:985.145760px;}
.y88{bottom:985.148640px;}
.y3b{bottom:986.220000px;}
.ycb{bottom:987.857280px;}
.y9{bottom:992.878560px;}
.y118{bottom:993.780000px;}
.y59{bottom:1000.800000px;}
.ye4{bottom:1003.140000px;}
.ya3{bottom:1004.945760px;}
.y87{bottom:1006.025760px;}
.yca{bottom:1007.831520px;}
.y2d{bottom:1008.360000px;}
.y3a{bottom:1013.580000px;}
.y8{bottom:1020.234240px;}
.ya2{bottom:1024.920000px;}
.y86{bottom:1026.902880px;}
.yc9{bottom:1027.805760px;}
.y2c{bottom:1042.740000px;}
.ya1{bottom:1045.620000px;}
.y7{bottom:1047.780000px;}
.y4{bottom:1065.967200px;}
.y3{bottom:1083.961440px;}
.y2{bottom:1102.145760px;}
.y1{bottom:1120.140000px;}
.h15{height:18.000000px;}
.h17{height:18.001500px;}
.h16{height:18.180000px;}
.hf{height:36.180000px;}
.h13{height:39.313477px;}
.h14{height:39.339844px;}
.h5{height:43.536094px;}
.h9{height:45.180000px;}
.h8{height:45.360000px;}
.h7{height:46.127812px;}
.h1{height:46.158750px;}
.h11{height:47.988281px;}
.hc{height:48.224531px;}
.he{height:51.302812px;}
.h2{height:52.400689px;}
.h12{height:52.453125px;}
.hd{height:54.180000px;}
.h10{height:61.329023px;}
.hb{height:61.370156px;}
.h6{height:78.626953px;}
.ha{height:85.061790px;}
.h4{height:87.538008px;}
.h3{height:87.596719px;}
.h0{height:1188.000000px;}
.w4{width:78.840000px;}
.wc{width:169.380000px;}
.w9{width:169.741500px;}
.w3{width:175.140000px;}
.w5{width:211.861500px;}
.wb{width:214.200000px;}
.w8{width:214.920000px;}
.w6{width:233.820000px;}
.wa{width:251.821500px;}
.w7{width:252.180000px;}
.w2{width:297.000000px;}
.wd{width:384.300000px;}
.w1{width:403.561500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x1e{left:19.980000px;}
.x17{left:23.220000px;}
.x19{left:25.740000px;}
.x33{left:32.220000px;}
.x2f{left:34.740000px;}
.x1f{left:37.080000px;}
.x1d{left:48.240000px;}
.x15{left:50.940000px;}
.x31{left:56.700000px;}
.x20{left:70.740000px;}
.x1a{left:73.440000px;}
.x32{left:82.080000px;}
.x1c{left:88.920000px;}
.x2d{left:97.920000px;}
.x4{left:108.002880px;}
.x8{left:111.240000px;}
.xd{left:116.100000px;}
.x35{left:121.320000px;}
.x21{left:124.560000px;}
.x2a{left:128.340000px;}
.xc{left:133.371000px;}
.x22{left:135.000000px;}
.x27{left:137.340000px;}
.x2c{left:140.580000px;}
.xf{left:147.780000px;}
.x37{left:150.120000px;}
.x14{left:154.440000px;}
.xb{left:159.480000px;}
.x23{left:162.000000px;}
.xa{left:165.609000px;}
.x34{left:192.060000px;}
.x25{left:193.320000px;}
.x28{left:198.900000px;}
.x6{left:218.517120px;}
.x12{left:219.957120px;}
.x13{left:275.032800px;}
.x16{left:283.860000px;}
.x39{left:315.180000px;}
.x36{left:321.120000px;}
.x7{left:339.661800px;}
.x9{left:357.660000px;}
.x18{left:363.600000px;}
.x2e{left:392.760000px;}
.xe{left:405.720000px;}
.x10{left:413.460000px;}
.x2b{left:423.720000px;}
.x5{left:459.000000px;}
.x1b{left:576.180000px;}
.x30{left:607.680000px;}
.x1{left:696.420000px;}
.x38{left:706.858560px;}
.x3{left:716.932800px;}
.x26{left:757.274400px;}
.x24{left:763.200000px;}
.x2{left:809.992800px;}
.x29{left:864.036000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:34.580480pt;}
.ls38{letter-spacing:-0.901120pt;}
.ls39{letter-spacing:-0.844800pt;}
.ls28{letter-spacing:-0.788480pt;}
.ls23{letter-spacing:-0.624000pt;}
.ls12{letter-spacing:-0.619520pt;}
.ls13{letter-spacing:-0.506880pt;}
.ls22{letter-spacing:-0.432000pt;}
.ls33{letter-spacing:-0.384000pt;}
.ls31{letter-spacing:-0.337920pt;}
.lsf{letter-spacing:-0.288000pt;}
.lsc{letter-spacing:-0.281600pt;}
.ls1a{letter-spacing:-0.168960pt;}
.ls19{letter-spacing:-0.117760pt;}
.lse{letter-spacing:-0.106240pt;}
.ls18{letter-spacing:-0.074880pt;}
.lsb{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.046080pt;}
.ls7{letter-spacing:0.056320pt;}
.ls27{letter-spacing:0.091200pt;}
.ls25{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.106880pt;}
.ls32{letter-spacing:0.110400pt;}
.ls11{letter-spacing:0.168960pt;}
.ls24{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.281600pt;}
.ls10{letter-spacing:0.288000pt;}
.ls1c{letter-spacing:0.299520pt;}
.ls1d{letter-spacing:0.374400pt;}
.ls2a{letter-spacing:0.957440pt;}
.ls1f{letter-spacing:2.202112pt;}
.ls2c{letter-spacing:2.241536pt;}
.ls2b{letter-spacing:2.252800pt;}
.ls1e{letter-spacing:2.928640pt;}
.ls26{letter-spacing:4.015616pt;}
.ls37{letter-spacing:5.294080pt;}
.ls30{letter-spacing:5.468672pt;}
.ls35{letter-spacing:6.758400pt;}
.ls2e{letter-spacing:8.673280pt;}
.ls2d{letter-spacing:9.681408pt;}
.ls29{letter-spacing:11.179520pt;}
.ls36{letter-spacing:18.923520pt;}
.ls34{letter-spacing:26.318336pt;}
.ls21{letter-spacing:33.623040pt;}
.ls2f{letter-spacing:46.407680pt;}
.ls20{letter-spacing:49.254400pt;}
.ls8{letter-spacing:120.637440pt;}
.ls14{letter-spacing:182.679040pt;}
.ls15{letter-spacing:276.761600pt;}
.ls6{letter-spacing:481.633280pt;}
.ls16{letter-spacing:507.179520pt;}
.ls4{letter-spacing:518.748160pt;}
.ls2{letter-spacing:593.597440pt;}
.lsa{letter-spacing:752.322560pt;}
.ls1{letter-spacing:770.892800pt;}
.ls3{letter-spacing:789.478400pt;}
.ls5{letter-spacing:911.088640pt;}
.ls9{letter-spacing:1305.328640pt;}
.ws37{word-spacing:-56.320000pt;}
.ws21{word-spacing:-53.120000pt;}
.ws1{word-spacing:-29.819520pt;}
.ws2{word-spacing:-26.400000pt;}
.ws1f{word-spacing:-21.116160pt;}
.ws4e{word-spacing:-20.741760pt;}
.ws0{word-spacing:-18.048000pt;}
.ws45{word-spacing:-17.408000pt;}
.ws12{word-spacing:-16.250880pt;}
.ws4{word-spacing:-15.825920pt;}
.ws3{word-spacing:-15.713280pt;}
.ws20{word-spacing:-15.656960pt;}
.ws22{word-spacing:-15.488000pt;}
.ws13{word-spacing:-15.375360pt;}
.ws6{word-spacing:-15.150080pt;}
.ws5{word-spacing:-15.037440pt;}
.ws33{word-spacing:-14.868480pt;}
.ws4f{word-spacing:-14.812160pt;}
.ws30{word-spacing:-13.536000pt;}
.ws2f{word-spacing:-12.720000pt;}
.ws14{word-spacing:-10.319360pt;}
.ws43{word-spacing:-4.167680pt;}
.ws28{word-spacing:-3.548160pt;}
.ws3f{word-spacing:-2.928640pt;}
.ws24{word-spacing:-2.252800pt;}
.ws27{word-spacing:-1.633280pt;}
.ws11{word-spacing:-1.070080pt;}
.wsf{word-spacing:-0.957440pt;}
.ws38{word-spacing:-0.768000pt;}
.ws32{word-spacing:-0.720000pt;}
.ws1d{word-spacing:-0.673920pt;}
.ws44{word-spacing:-0.563200pt;}
.ws35{word-spacing:-0.450560pt;}
.wsd{word-spacing:-0.337920pt;}
.ws18{word-spacing:-0.281600pt;}
.ws4c{word-spacing:-0.256000pt;}
.ws3c{word-spacing:-0.224640pt;}
.ws4d{word-spacing:-0.192000pt;}
.ws34{word-spacing:-0.168960pt;}
.ws23{word-spacing:-0.128000pt;}
.ws17{word-spacing:-0.112640pt;}
.wsc{word-spacing:-0.096000pt;}
.ws8{word-spacing:-0.056320pt;}
.ws7{word-spacing:0.000000pt;}
.wsa{word-spacing:0.053120pt;}
.ws9{word-spacing:0.281600pt;}
.ws1e{word-spacing:0.337920pt;}
.ws15{word-spacing:0.374400pt;}
.ws16{word-spacing:0.412160pt;}
.wsb{word-spacing:0.480000pt;}
.ws31{word-spacing:0.528000pt;}
.ws3d{word-spacing:0.619520pt;}
.ws50{word-spacing:0.901120pt;}
.ws2a{word-spacing:0.957440pt;}
.ws40{word-spacing:1.576960pt;}
.ws41{word-spacing:1.633280pt;}
.ws2c{word-spacing:2.196480pt;}
.ws3b{word-spacing:2.252800pt;}
.ws26{word-spacing:2.872320pt;}
.ws3a{word-spacing:3.491840pt;}
.ws2d{word-spacing:4.111360pt;}
.ws1a{word-spacing:4.787200pt;}
.ws1b{word-spacing:5.406720pt;}
.ws46{word-spacing:5.463040pt;}
.ws1c{word-spacing:6.082560pt;}
.ws25{word-spacing:6.702080pt;}
.ws51{word-spacing:7.321600pt;}
.ws52{word-spacing:7.997440pt;}
.ws53{word-spacing:8.053760pt;}
.ws42{word-spacing:8.616960pt;}
.ws49{word-spacing:9.236480pt;}
.ws29{word-spacing:9.912320pt;}
.ws55{word-spacing:11.151360pt;}
.ws39{word-spacing:11.827200pt;}
.ws19{word-spacing:13.742080pt;}
.wse{word-spacing:14.361600pt;}
.ws4a{word-spacing:15.037440pt;}
.ws48{word-spacing:15.656960pt;}
.ws54{word-spacing:16.276480pt;}
.ws36{word-spacing:16.952320pt;}
.ws56{word-spacing:18.191360pt;}
.ws3e{word-spacing:18.867200pt;}
.ws2e{word-spacing:19.486720pt;}
.ws47{word-spacing:19.543040pt;}
.ws4b{word-spacing:26.526720pt;}
.ws10{word-spacing:29.117440pt;}
.ws2b{word-spacing:29.736960pt;}
._4{margin-left:-13.347840pt;}
._a{margin-left:-11.955200pt;}
._9{margin-left:-10.895360pt;}
._3{margin-left:-8.151040pt;}
._5{margin-left:-6.881280pt;}
._7{margin-left:-5.299200pt;}
._8{margin-left:-4.136960pt;}
._6{margin-left:-2.684672pt;}
._0{margin-left:-1.085440pt;}
._1{width:1.370496pt;}
._c{width:4.029440pt;}
._b{width:8.632320pt;}
._d{width:13.808640pt;}
._e{width:19.517440pt;}
._2{width:751.861760pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:3.040000pt;}
.y33{bottom:19.200000pt;}
.y21{bottom:23.040000pt;}
.y1a{bottom:23.200000pt;}
.y2f{bottom:35.200000pt;}
.y6{bottom:50.246400pt;}
.y5{bottom:66.723840pt;}
.y2b{bottom:100.323840pt;}
.y85{bottom:101.760000pt;}
.y117{bottom:103.840000pt;}
.yc8{bottom:113.299200pt;}
.y105{bottom:113.957120pt;}
.y84{bottom:115.680000pt;}
.y2a{bottom:117.923840pt;}
.y58{bottom:118.579200pt;}
.y116{bottom:123.360000pt;}
.yc7{bottom:131.054080pt;}
.y29{bottom:135.678720pt;}
.y104{bottom:138.442240pt;}
.y57{bottom:146.894080pt;}
.y83{bottom:148.330240pt;}
.yc6{bottom:148.654080pt;}
.y28{bottom:159.994880pt;}
.ya0{bottom:162.240000pt;}
.y103{bottom:162.758400pt;}
.yc5{bottom:166.408960pt;}
.ye3{bottom:171.215360pt;}
.y56{bottom:175.208960pt;}
.y9f{bottom:177.920000pt;}
.y102{bottom:180.513280pt;}
.yc4{bottom:184.163840pt;}
.y27{bottom:184.480000pt;}
.ye2{bottom:188.970240pt;}
.y9e{bottom:194.560000pt;}
.y7a{bottom:196.167680pt;}
.y55{bottom:203.692800pt;}
.y101{bottom:204.829440pt;}
.y26{bottom:205.114880pt;}
.ye1{bottom:206.570240pt;}
.yc3{bottom:208.480000pt;}
.y9d{bottom:211.360000pt;}
.y79{bottom:214.725120pt;}
.ye0{bottom:224.325120pt;}
.y25{bottom:225.277440pt;}
.yc2{bottom:226.720000pt;}
.y9c{bottom:228.160000pt;}
.y100{bottom:229.145600pt;}
.y54{bottom:232.007680pt;}
.y78{bottom:233.127680pt;}
.ydf{bottom:242.080000pt;}
.y9b{bottom:244.960000pt;}
.y24{bottom:245.440000pt;}
.y77{bottom:251.685120pt;}
.yff{bottom:253.630720pt;}
.yde{bottom:260.160000pt;}
.y53{bottom:260.322560pt;}
.yc1{bottom:260.800000pt;}
.y9a{bottom:261.760000pt;}
.y20{bottom:263.200000pt;}
.y22{bottom:270.080000pt;}
.yfe{bottom:277.946880pt;}
.y99{bottom:278.400000pt;}
.yc0{bottom:283.516160pt;}
.y23{bottom:286.240000pt;}
.y76{bottom:288.800000pt;}
.y52{bottom:288.806400pt;}
.y98{bottom:295.200000pt;}
.ydd{bottom:296.000000pt;}
.ybf{bottom:299.680000pt;}
.yfd{bottom:302.263040pt;}
.ydc{bottom:309.760000pt;}
.y1f{bottom:311.040000pt;}
.y97{bottom:312.000000pt;}
.y51{bottom:317.121280pt;}
.ybe{bottom:322.396160pt;}
.y75{bottom:325.920000pt;}
.ydb{bottom:326.560000pt;}
.yfc{bottom:326.748160pt;}
.y1e{bottom:335.840000pt;}
.ybd{bottom:338.560000pt;}
.yda{bottom:343.360000pt;}
.y96{bottom:344.480000pt;}
.y50{bottom:345.436160pt;}
.yfb{bottom:351.064320pt;}
.yd9{bottom:360.000000pt;}
.y1d{bottom:360.480000pt;}
.ybc{bottom:361.280000pt;}
.y74{bottom:364.962560pt;}
.y95{bottom:367.210240pt;}
.y4f{bottom:373.920000pt;}
.yfa{bottom:375.380480pt;}
.yd8{bottom:376.800000pt;}
.y73{bottom:383.520000pt;}
.ybb{bottom:384.156160pt;}
.y94{bottom:384.810240pt;}
.y1c{bottom:385.280000pt;}
.yd7{bottom:393.600000pt;}
.y4e{bottom:399.680000pt;}
.yf9{bottom:399.865600pt;}
.yba{bottom:400.320000pt;}
.y72{bottom:401.922560pt;}
.y93{bottom:402.565120pt;}
.y19{bottom:403.040000pt;}
.y1b{bottom:410.080000pt;}
.y92{bottom:420.320000pt;}
.y71{bottom:420.480000pt;}
.yb9{bottom:422.880000pt;}
.yf8{bottom:424.181760pt;}
.yd6{bottom:426.080000pt;}
.y18{bottom:426.240000pt;}
.y91{bottom:437.920000pt;}
.y4d{bottom:437.923840pt;}
.y12e{bottom:438.417920pt;}
.y70{bottom:439.042560pt;}
.yb8{bottom:445.761280pt;}
.yf7{bottom:448.497920pt;}
.yd5{bottom:448.810240pt;}
.y17{bottom:450.880000pt;}
.y90{bottom:456.160000pt;}
.y6f{bottom:457.600000pt;}
.yb7{bottom:461.925120pt;}
.y4c{bottom:462.240000pt;}
.y12d{bottom:462.903040pt;}
.yd4{bottom:466.410240pt;}
.yf6{bottom:472.983040pt;}
.y82{bottom:474.887680pt;}
.y6e{bottom:476.002560pt;}
.y16{bottom:476.960000pt;}
.yb6{bottom:477.920000pt;}
.y12c{bottom:480.503040pt;}
.yd3{bottom:484.165120pt;}
.y4b{bottom:486.560000pt;}
.y8f{bottom:489.756000pt;}
.y115{bottom:489.920000pt;}
.y81{bottom:493.290240pt;}
.y6d{bottom:494.560000pt;}
.yb5{bottom:496.160000pt;}
.yf5{bottom:497.299200pt;}
.y12b{bottom:498.257920pt;}
.yd2{bottom:501.920000pt;}
.y8e{bottom:503.676000pt;}
.y15{bottom:505.440000pt;}
.y4a{bottom:511.040000pt;}
.y80{bottom:511.847680pt;}
.y114{bottom:512.494080pt;}
.y6c{bottom:513.117440pt;}
.y8d{bottom:517.440000pt;}
.yd1{bottom:520.160000pt;}
.yf4{bottom:521.615360pt;}
.y12a{bottom:522.743040pt;}
.y113{bottom:530.248960pt;}
.y7f{bottom:530.405120pt;}
.y6b{bottom:531.520000pt;}
.yb4{bottom:531.855360pt;}
.y14{bottom:532.952000pt;}
.y49{bottom:535.360000pt;}
.y129{bottom:540.343040pt;}
.yf3{bottom:546.100480pt;}
.y112{bottom:548.003840pt;}
.y7e{bottom:548.962560pt;}
.yb3{bottom:549.610240pt;}
.y6a{bottom:550.082560pt;}
.y8c{bottom:550.087680pt;}
.yd0{bottom:553.604000pt;}
.y128{bottom:558.097920pt;}
.y48{bottom:559.680000pt;}
.y111{bottom:565.603840pt;}
.yb2{bottom:567.210240pt;}
.y7d{bottom:567.520000pt;}
.ycf{bottom:567.680000pt;}
.y69{bottom:568.640000pt;}
.y13{bottom:570.080000pt;}
.yf2{bottom:579.695360pt;}
.y127{bottom:582.414080pt;}
.y47{bottom:584.160000pt;}
.yb1{bottom:584.965120pt;}
.yce{bottom:585.440000pt;}
.y110{bottom:590.088960pt;}
.y126{bottom:600.168960pt;}
.y7c{bottom:601.600000pt;}
.yb0{bottom:602.720000pt;}
.y68{bottom:604.970240pt;}
.y12{bottom:607.040000pt;}
.y46{bottom:608.480000pt;}
.yf1{bottom:613.459200pt;}
.y10f{bottom:614.405120pt;}
.y125{bottom:617.923840pt;}
.yaf{bottom:620.474880pt;}
.y67{bottom:622.725120pt;}
.y45{bottom:632.800000pt;}
.y7b{bottom:634.400000pt;}
.yae{bottom:638.074880pt;}
.y10e{bottom:638.721280pt;}
.y66{bottom:640.480000pt;}
.y124{bottom:642.240000pt;}
.y11{bottom:644.000000pt;}
.yf0{bottom:647.223040pt;}
.y44{bottom:657.280000pt;}
.y65{bottom:658.080000pt;}
.yad{bottom:662.560000pt;}
.y10d{bottom:663.206400pt;}
.yef{bottom:664.823040pt;}
.y123{bottom:668.000000pt;}
.y39{bottom:668.490240pt;}
.y64{bottom:676.320000pt;}
.y10{bottom:677.923840pt;}
.yac{bottom:680.640000pt;}
.y43{bottom:681.600000pt;}
.yee{bottom:682.577920pt;}
.y38{bottom:686.245120pt;}
.y10c{bottom:687.522560pt;}
.yed{bottom:700.332800pt;}
.yf{bottom:702.240000pt;}
.y37{bottom:704.000000pt;}
.y42{bottom:706.080000pt;}
.y122{bottom:706.275840pt;}
.y10b{bottom:711.838720pt;}
.y63{bottom:712.030720pt;}
.yab{bottom:717.920000pt;}
.yec{bottom:718.087680pt;}
.y121{bottom:724.030720pt;}
.ye{bottom:726.400000pt;}
.y36{bottom:729.760000pt;}
.y62{bottom:729.785600pt;}
.y41{bottom:730.400000pt;}
.yeb{bottom:735.687680pt;}
.y10a{bottom:736.323840pt;}
.y120{bottom:741.630720pt;}
.y61{bottom:747.540480pt;}
.yea{bottom:753.442560pt;}
.y40{bottom:754.720000pt;}
.yaa{bottom:756.019200pt;}
.y11f{bottom:759.385600pt;}
.yd{bottom:760.464000pt;}
.y109{bottom:760.640000pt;}
.y60{bottom:765.140480pt;}
.y35{bottom:768.003840pt;}
.y11e{bottom:777.140480pt;}
.y3f{bottom:779.200000pt;}
.ya9{bottom:780.504320pt;}
.y5f{bottom:782.895360pt;}
.y108{bottom:784.956160pt;}
.ye9{bottom:787.206400pt;}
.yc{bottom:791.192000pt;}
.y34{bottom:792.320000pt;}
.y11d{bottom:794.740480pt;}
.ya8{bottom:798.104320pt;}
.y5e{bottom:800.650240pt;}
.y3e{bottom:803.520000pt;}
.ye8{bottom:804.806400pt;}
.y32{bottom:806.080000pt;}
.y107{bottom:809.441280pt;}
.y11c{bottom:812.495360pt;}
.ya7{bottom:815.859200pt;}
.y5d{bottom:818.250240pt;}
.y8b{bottom:820.170240pt;}
.yb{bottom:821.920000pt;}
.y3d{bottom:827.840000pt;}
.y11b{bottom:830.250240pt;}
.y106{bottom:833.757440pt;}
.y5c{bottom:836.005120pt;}
.ye7{bottom:838.570240pt;}
.y8a{bottom:838.727680pt;}
.y2e{bottom:839.040000pt;}
.ya6{bottom:840.175360pt;}
.ycd{bottom:842.740480pt;}
.y11a{bottom:847.850240pt;}
.y3c{bottom:852.320000pt;}
.y5b{bottom:853.760000pt;}
.ye6{bottom:856.325120pt;}
.y89{bottom:857.285120pt;}
.ya5{bottom:857.930240pt;}
.ya{bottom:858.073600pt;}
.y30{bottom:858.080000pt;}
.ycc{bottom:860.495360pt;}
.y119{bottom:865.605120pt;}
.y5a{bottom:871.360000pt;}
.ye5{bottom:873.925120pt;}
.ya4{bottom:875.685120pt;}
.y88{bottom:875.687680pt;}
.y3b{bottom:876.640000pt;}
.ycb{bottom:878.095360pt;}
.y9{bottom:882.558720pt;}
.y118{bottom:883.360000pt;}
.y59{bottom:889.600000pt;}
.ye4{bottom:891.680000pt;}
.ya3{bottom:893.285120pt;}
.y87{bottom:894.245120pt;}
.yca{bottom:895.850240pt;}
.y2d{bottom:896.320000pt;}
.y3a{bottom:900.960000pt;}
.y8{bottom:906.874880pt;}
.ya2{bottom:911.040000pt;}
.y86{bottom:912.802560pt;}
.yc9{bottom:913.605120pt;}
.y2c{bottom:926.880000pt;}
.ya1{bottom:929.440000pt;}
.y7{bottom:931.360000pt;}
.y4{bottom:947.526400pt;}
.y3{bottom:963.521280pt;}
.y2{bottom:979.685120pt;}
.y1{bottom:995.680000pt;}
.h15{height:16.000000pt;}
.h17{height:16.001333pt;}
.h16{height:16.160000pt;}
.hf{height:32.160000pt;}
.h13{height:34.945312pt;}
.h14{height:34.968750pt;}
.h5{height:38.698750pt;}
.h9{height:40.160000pt;}
.h8{height:40.320000pt;}
.h7{height:41.002500pt;}
.h1{height:41.030000pt;}
.h11{height:42.656250pt;}
.hc{height:42.866250pt;}
.he{height:45.602500pt;}
.h2{height:46.578390pt;}
.h12{height:46.625000pt;}
.hd{height:48.160000pt;}
.h10{height:54.514687pt;}
.hb{height:54.551250pt;}
.h6{height:69.890625pt;}
.ha{height:75.610480pt;}
.h4{height:77.811562pt;}
.h3{height:77.863750pt;}
.h0{height:1056.000000pt;}
.w4{width:70.080000pt;}
.wc{width:150.560000pt;}
.w9{width:150.881333pt;}
.w3{width:155.680000pt;}
.w5{width:188.321333pt;}
.wb{width:190.400000pt;}
.w8{width:191.040000pt;}
.w6{width:207.840000pt;}
.wa{width:223.841333pt;}
.w7{width:224.160000pt;}
.w2{width:264.000000pt;}
.wd{width:341.600000pt;}
.w1{width:358.721333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x1e{left:17.760000pt;}
.x17{left:20.640000pt;}
.x19{left:22.880000pt;}
.x33{left:28.640000pt;}
.x2f{left:30.880000pt;}
.x1f{left:32.960000pt;}
.x1d{left:42.880000pt;}
.x15{left:45.280000pt;}
.x31{left:50.400000pt;}
.x20{left:62.880000pt;}
.x1a{left:65.280000pt;}
.x32{left:72.960000pt;}
.x1c{left:79.040000pt;}
.x2d{left:87.040000pt;}
.x4{left:96.002560pt;}
.x8{left:98.880000pt;}
.xd{left:103.200000pt;}
.x35{left:107.840000pt;}
.x21{left:110.720000pt;}
.x2a{left:114.080000pt;}
.xc{left:118.552000pt;}
.x22{left:120.000000pt;}
.x27{left:122.080000pt;}
.x2c{left:124.960000pt;}
.xf{left:131.360000pt;}
.x37{left:133.440000pt;}
.x14{left:137.280000pt;}
.xb{left:141.760000pt;}
.x23{left:144.000000pt;}
.xa{left:147.208000pt;}
.x34{left:170.720000pt;}
.x25{left:171.840000pt;}
.x28{left:176.800000pt;}
.x6{left:194.237440pt;}
.x12{left:195.517440pt;}
.x13{left:244.473600pt;}
.x16{left:252.320000pt;}
.x39{left:280.160000pt;}
.x36{left:285.440000pt;}
.x7{left:301.921600pt;}
.x9{left:317.920000pt;}
.x18{left:323.200000pt;}
.x2e{left:349.120000pt;}
.xe{left:360.640000pt;}
.x10{left:367.520000pt;}
.x2b{left:376.640000pt;}
.x5{left:408.000000pt;}
.x1b{left:512.160000pt;}
.x30{left:540.160000pt;}
.x1{left:619.040000pt;}
.x38{left:628.318720pt;}
.x3{left:637.273600pt;}
.x26{left:673.132800pt;}
.x24{left:678.400000pt;}
.x2{left:719.993600pt;}
.x29{left:768.032000pt;}
}




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