
    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_3a52a6f812d2295075eb2640.woff')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_884079c55ce9960109d514d6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_0e23033509aa0d16dbe935db.woff')format("woff");}.ff3{font-family:ff3;line-height:1.049000;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_b4c055d12d7b7b8efdab6edf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.042000;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_00d04b81be3ce365f08e25d5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.042000;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_4aea908c4161eb12066811dc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.042000;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_83106fd5f3cab05d011dfb0b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.062000;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_00767006f870a262f456a72b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.049000;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ffa{font-family:ffa;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);}
.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls35{letter-spacing:-6.420000px;}
.ls34{letter-spacing:-1.542000px;}
.ls2d{letter-spacing:-0.648000px;}
.ls36{letter-spacing:-0.582000px;}
.ls38{letter-spacing:-0.490800px;}
.ls32{letter-spacing:-0.348600px;}
.ls11{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.234600px;}
.ls10{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.198600px;}
.ls21{letter-spacing:-0.144000px;}
.ls37{letter-spacing:-0.103800px;}
.ls5{letter-spacing:-0.052560px;}
.ls3{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000001px;}
.ls1f{letter-spacing:0.000003px;}
.ls13{letter-spacing:0.010080px;}
.lsf{letter-spacing:0.040320px;}
.ls23{letter-spacing:0.066960px;}
.ls12{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.123000px;}
.ls8{letter-spacing:0.129600px;}
.ls2a{letter-spacing:0.138240px;}
.ls20{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.228960px;}
.ls2c{letter-spacing:0.229200px;}
.lse{letter-spacing:0.244800px;}
.ls18{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.296400px;}
.ls25{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.371520px;}
.ls2{letter-spacing:0.424800px;}
.ls19{letter-spacing:0.485280px;}
.ls39{letter-spacing:0.485400px;}
.ls22{letter-spacing:0.576000px;}
.ls2e{letter-spacing:0.948000px;}
.ls24{letter-spacing:1.440000px;}
.ls31{letter-spacing:2.388000px;}
.ls17{letter-spacing:7.200000px;}
.ls26{letter-spacing:8.640000px;}
.ls27{letter-spacing:9.360000px;}
.ls1d{letter-spacing:13.680000px;}
.ls14{letter-spacing:14.184000px;}
.lsd{letter-spacing:15.300000px;}
.ls1e{letter-spacing:16.560000px;}
.lsa{letter-spacing:19.620000px;}
.lsc{letter-spacing:28.080000px;}
.ls1c{letter-spacing:31.824000px;}
.ls1b{letter-spacing:32.544000px;}
.ls1a{letter-spacing:38.304000px;}
.ls16{letter-spacing:38.880000px;}
.ls28{letter-spacing:50.400000px;}
.ls9{letter-spacing:54.000000px;}
.ls0{letter-spacing:520.020000px;}
.ls30{letter-spacing:844.164000px;}
.ls2b{letter-spacing:844.284000px;}
.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;}
}
.wsc{word-spacing:-15.408000px;}
.wse{word-spacing:-15.264000px;}
.wsb{word-spacing:-15.192000px;}
.wsd{word-spacing:-15.120003px;}
.ws10{word-spacing:-15.120001px;}
.ws1{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.976000px;}
.ws14{word-spacing:-14.937600px;}
.wsa{word-spacing:-14.832000px;}
.ws0{word-spacing:-14.616000px;}
.ws12{word-spacing:-13.497600px;}
.ws1d{word-spacing:-13.035000px;}
.ws11{word-spacing:-12.778800px;}
.ws15{word-spacing:-12.679200px;}
.ws17{word-spacing:-12.559680px;}
.ws2{word-spacing:-12.549600px;}
.ws3{word-spacing:-12.497040px;}
.ws18{word-spacing:-12.315000px;}
.ws16{word-spacing:-12.201000px;}
.ws5{word-spacing:-12.131280px;}
.ws4{word-spacing:-12.071520px;}
.ws1c{word-spacing:-12.058800px;}
.ws1b{word-spacing:-11.967600px;}
.ws19{word-spacing:-11.007600px;}
.ws7{word-spacing:-9.014400px;}
.ws9{word-spacing:-8.809920px;}
.ws8{word-spacing:-8.769600px;}
.ws13{word-spacing:-8.571000px;}
.ws1a{word-spacing:-6.129600px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-11.520000px;}
._42{margin-left:-10.338720px;}
._40{margin-left:-7.728240px;}
._6{margin-left:-6.612000px;}
._9{margin-left:-4.684800px;}
._b{margin-left:-3.680640px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.536000px;}
._a{width:1.088640px;}
._5{width:2.208000px;}
._18{width:3.216000px;}
._11{width:4.239360px;}
._12{width:6.240000px;}
._e{width:7.704000px;}
._24{width:8.784000px;}
._17{width:9.936000px;}
._1a{width:11.016000px;}
._19{width:12.096000px;}
._26{width:13.098720px;}
._36{width:14.112000px;}
._41{width:15.311520px;}
._13{width:16.839360px;}
._35{width:18.432000px;}
._23{width:19.728000px;}
._1e{width:20.952000px;}
._1f{width:22.320000px;}
._31{width:23.352000px;}
._10{width:24.696000px;}
._f{width:26.352000px;}
._20{width:27.432000px;}
._21{width:29.100000px;}
._27{width:30.238080px;}
._2c{width:31.776000px;}
._2b{width:32.832000px;}
._30{width:34.488000px;}
._2e{width:36.432000px;}
._2d{width:37.440000px;}
._34{width:38.832000px;}
._22{width:39.864000px;}
._1b{width:41.040000px;}
._2f{width:42.255360px;}
._33{width:43.259520px;}
._39{width:44.277120px;}
._3e{width:45.447360px;}
._29{width:47.232000px;}
._28{width:48.312000px;}
._3a{width:49.872000px;}
._32{width:50.904000px;}
._25{width:52.464000px;}
._16{width:53.640000px;}
._38{width:55.176000px;}
._d{width:56.424000px;}
._1c{width:57.648000px;}
._2a{width:67.320000px;}
._15{width:70.416000px;}
._14{width:71.784000px;}
._1d{width:77.328000px;}
._43{width:97.477920px;}
._44{width:99.038400px;}
._2{width:475.164000px;}
._7{width:543.997680px;}
._3{width:1295.580000px;}
._3b{width:1456.836480px;}
._3d{width:1458.276480px;}
._3f{width:1460.436480px;}
._3c{width:1464.036480px;}
._37{width:1484.916480px;}
._c{width:1486.356480px;}
._8{width:1491.110400px;}
.fc2{color:rgb(70,120,134);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs3{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y37{bottom:4.500000px;}
.y13{bottom:5.760000px;}
.y36{bottom:22.500000px;}
.y12{bottom:27.900000px;}
.y35{bottom:40.494000px;}
.y11{bottom:46.800000px;}
.y5{bottom:57.600000px;}
.y34{bottom:58.494000px;}
.y10{bottom:68.445000px;}
.y33{bottom:76.494000px;}
.y4{bottom:79.056000px;}
.yf{bottom:90.405000px;}
.y32{bottom:95.394000px;}
.yb{bottom:102.240000px;}
.ye{bottom:113.805000px;}
.yd{bottom:115.245000px;}
.ya2{bottom:116.856000px;}
.y31{bottom:116.994000px;}
.ydb{bottom:117.036000px;}
.ya{bottom:121.140000px;}
.y14{bottom:126.756000px;}
.y66{bottom:130.536000px;}
.y95{bottom:132.336000px;}
.yda{bottom:135.036000px;}
.ya1{bottom:138.456000px;}
.y30{bottom:138.594000px;}
.y112{bottom:138.636000px;}
.y9{bottom:142.740000px;}
.y65{bottom:152.130000px;}
.yd9{bottom:153.030000px;}
.y94{bottom:153.930000px;}
.y111{bottom:156.630000px;}
.ya3{bottom:159.870000px;}
.ya0{bottom:160.050000px;}
.y2f{bottom:160.194000px;}
.y8{bottom:164.700000px;}
.yd8{bottom:171.030000px;}
.y64{bottom:173.730000px;}
.y110{bottom:174.630000px;}
.y93{bottom:175.530000px;}
.y9f{bottom:181.650000px;}
.y2e{bottom:181.794000px;}
.yd7{bottom:189.030000px;}
.y10f{bottom:192.630000px;}
.y63{bottom:195.330000px;}
.y92{bottom:197.130000px;}
.y9e{bottom:203.250000px;}
.y2d{bottom:203.394000px;}
.yd6{bottom:207.030000px;}
.y10e{bottom:210.630000px;}
.y62{bottom:216.930000px;}
.y91{bottom:218.730000px;}
.y9d{bottom:224.850000px;}
.yd5{bottom:225.030000px;}
.y2c{bottom:225.039000px;}
.y10d{bottom:228.630000px;}
.y61{bottom:238.530000px;}
.y90{bottom:240.330000px;}
.yd4{bottom:243.030000px;}
.y9c{bottom:246.450000px;}
.y10c{bottom:246.630000px;}
.y2b{bottom:246.639000px;}
.y60{bottom:260.130000px;}
.yd3{bottom:261.030000px;}
.y8f{bottom:261.930000px;}
.y10b{bottom:264.630000px;}
.y9b{bottom:268.050000px;}
.y2a{bottom:268.239000px;}
.yd2{bottom:279.030000px;}
.y5f{bottom:281.730000px;}
.y10a{bottom:282.630000px;}
.y8e{bottom:283.530000px;}
.y9a{bottom:289.650000px;}
.y29{bottom:289.839000px;}
.yd1{bottom:297.030000px;}
.y109{bottom:300.630000px;}
.y5e{bottom:303.330000px;}
.y8d{bottom:305.130000px;}
.y99{bottom:311.250000px;}
.y28{bottom:311.439000px;}
.yd0{bottom:315.030000px;}
.y108{bottom:318.630000px;}
.y5d{bottom:324.930000px;}
.y8c{bottom:326.730000px;}
.y98{bottom:332.850000px;}
.ycf{bottom:333.030000px;}
.y27{bottom:333.039000px;}
.y107{bottom:336.675000px;}
.y5c{bottom:346.575000px;}
.y8b{bottom:348.375000px;}
.yce{bottom:351.075000px;}
.y97{bottom:354.495000px;}
.y26{bottom:354.639000px;}
.y106{bottom:354.675000px;}
.y5b{bottom:368.175000px;}
.ycd{bottom:369.075000px;}
.y8a{bottom:369.975000px;}
.y105{bottom:372.675000px;}
.y96{bottom:376.095000px;}
.y25{bottom:376.239000px;}
.ycc{bottom:387.075000px;}
.y5a{bottom:389.775000px;}
.y104{bottom:390.675000px;}
.y89{bottom:391.575000px;}
.y24{bottom:397.839000px;}
.ycb{bottom:405.075000px;}
.y103{bottom:408.675000px;}
.y59{bottom:411.375000px;}
.y88{bottom:413.175000px;}
.y23{bottom:419.439000px;}
.yca{bottom:423.075000px;}
.y102{bottom:426.675000px;}
.y58{bottom:432.975000px;}
.y87{bottom:434.775000px;}
.y22{bottom:441.039000px;}
.yc9{bottom:441.075000px;}
.y101{bottom:444.675000px;}
.y57{bottom:454.575000px;}
.y86{bottom:456.375000px;}
.yc8{bottom:459.075000px;}
.y21{bottom:461.739000px;}
.y100{bottom:462.675000px;}
.y56{bottom:476.175000px;}
.yc7{bottom:477.075000px;}
.y85{bottom:477.975000px;}
.y20{bottom:479.769000px;}
.yff{bottom:480.675000px;}
.yc6{bottom:495.075000px;}
.y1f{bottom:497.769000px;}
.y55{bottom:497.775000px;}
.yfe{bottom:498.675000px;}
.y84{bottom:499.575000px;}
.yc5{bottom:513.075000px;}
.y1e{bottom:515.769000px;}
.yfd{bottom:516.675000px;}
.y54{bottom:519.375000px;}
.y83{bottom:521.175000px;}
.yc4{bottom:531.075000px;}
.y1d{bottom:533.769000px;}
.yfc{bottom:534.675000px;}
.y53{bottom:540.975000px;}
.y82{bottom:542.775000px;}
.yc3{bottom:549.075000px;}
.y1c{bottom:551.769000px;}
.yfb{bottom:552.675000px;}
.y52{bottom:562.575000px;}
.y81{bottom:564.375000px;}
.yc2{bottom:567.075000px;}
.y1b{bottom:569.769000px;}
.yfa{bottom:570.675000px;}
.y51{bottom:584.175000px;}
.yc1{bottom:585.075000px;}
.y80{bottom:585.975000px;}
.y1a{bottom:587.769000px;}
.yf9{bottom:588.675000px;}
.yc0{bottom:603.075000px;}
.y50{bottom:605.805000px;}
.y19{bottom:606.669000px;}
.yf8{bottom:606.705000px;}
.y7f{bottom:607.605000px;}
.ybf{bottom:621.105000px;}
.yf7{bottom:624.705000px;}
.y18{bottom:627.369000px;}
.y4f{bottom:627.405000px;}
.y7e{bottom:629.205000px;}
.ybe{bottom:639.105000px;}
.yf6{bottom:642.705000px;}
.y17{bottom:645.369000px;}
.y4e{bottom:649.005000px;}
.y7d{bottom:650.805000px;}
.ybd{bottom:657.105000px;}
.yf5{bottom:660.705000px;}
.y16{bottom:664.629000px;}
.y15{bottom:666.069000px;}
.y4d{bottom:670.605000px;}
.y7c{bottom:672.405000px;}
.ybc{bottom:675.105000px;}
.yf4{bottom:678.705000px;}
.y4c{bottom:692.205000px;}
.ybb{bottom:693.105000px;}
.y7b{bottom:694.005000px;}
.yf3{bottom:696.705000px;}
.yba{bottom:711.105000px;}
.y4b{bottom:713.805000px;}
.yf2{bottom:714.705000px;}
.y7a{bottom:715.605000px;}
.yb9{bottom:729.105000px;}
.yf1{bottom:732.705000px;}
.y4a{bottom:735.405000px;}
.y79{bottom:737.205000px;}
.yb8{bottom:747.105000px;}
.yf0{bottom:750.705000px;}
.y49{bottom:757.005000px;}
.y78{bottom:758.805000px;}
.yb7{bottom:765.105000px;}
.yef{bottom:768.705000px;}
.y48{bottom:778.605000px;}
.y77{bottom:780.405000px;}
.yb6{bottom:783.105000px;}
.yee{bottom:786.705000px;}
.y47{bottom:800.205000px;}
.yb5{bottom:801.105000px;}
.y76{bottom:802.005000px;}
.yed{bottom:804.705000px;}
.yc{bottom:809.745000px;}
.yb4{bottom:819.105000px;}
.y46{bottom:821.805000px;}
.yec{bottom:822.705000px;}
.y75{bottom:823.605000px;}
.yb3{bottom:837.105000px;}
.yeb{bottom:840.705000px;}
.y45{bottom:843.405000px;}
.y74{bottom:845.205000px;}
.yb2{bottom:855.105000px;}
.yea{bottom:858.705000px;}
.y44{bottom:865.005000px;}
.y73{bottom:866.805000px;}
.yb1{bottom:873.150000px;}
.ye9{bottom:876.750000px;}
.y43{bottom:886.650000px;}
.y72{bottom:888.450000px;}
.yb0{bottom:891.150000px;}
.ye8{bottom:894.750000px;}
.y42{bottom:908.250000px;}
.yaf{bottom:909.150000px;}
.y71{bottom:910.050000px;}
.ye7{bottom:912.750000px;}
.yae{bottom:927.150000px;}
.y41{bottom:929.850000px;}
.ye6{bottom:930.750000px;}
.y70{bottom:931.650000px;}
.y7{bottom:941.910000px;}
.yad{bottom:945.150000px;}
.ye5{bottom:948.750000px;}
.y40{bottom:951.450000px;}
.y6f{bottom:953.250000px;}
.yac{bottom:963.150000px;}
.ye4{bottom:966.750000px;}
.y3f{bottom:973.050000px;}
.y6e{bottom:974.850000px;}
.yab{bottom:981.150000px;}
.ye3{bottom:984.750000px;}
.y3e{bottom:994.650000px;}
.y6d{bottom:996.450000px;}
.yaa{bottom:999.150000px;}
.ye2{bottom:1002.750000px;}
.y3d{bottom:1016.250000px;}
.ya9{bottom:1017.150000px;}
.y6c{bottom:1018.050000px;}
.ye1{bottom:1020.750000px;}
.ya8{bottom:1035.150000px;}
.y3c{bottom:1037.850000px;}
.ye0{bottom:1038.750000px;}
.y6b{bottom:1039.650000px;}
.ya7{bottom:1053.150000px;}
.ydf{bottom:1056.750000px;}
.y3b{bottom:1059.450000px;}
.y6a{bottom:1061.250000px;}
.ya6{bottom:1071.150000px;}
.yde{bottom:1074.750000px;}
.y3a{bottom:1081.050000px;}
.y69{bottom:1082.850000px;}
.ya5{bottom:1089.150000px;}
.ydd{bottom:1092.750000px;}
.y39{bottom:1102.650000px;}
.y68{bottom:1104.450000px;}
.ya4{bottom:1107.150000px;}
.ydc{bottom:1110.750000px;}
.y38{bottom:1124.610000px;}
.y67{bottom:1126.050000px;}
.y6{bottom:1128.750000px;}
.y3{bottom:1147.680000px;}
.y2{bottom:1169.280000px;}
.y1{bottom:1193.580000px;}
.hc{height:37.080000px;}
.h5{height:50.497200px;}
.ha{height:51.632640px;}
.hb{height:51.692400px;}
.h4{height:60.840000px;}
.h3{height:62.208000px;}
.h2{height:62.280000px;}
.h7{height:67.262400px;}
.h8{height:131.436000px;}
.h6{height:182.340000px;}
.h9{height:682.275000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:202.215000px;}
.w4{width:531.615000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:84.959987px;}
.x8{left:106.235987px;}
.x5{left:111.995987px;}
.x6{left:138.995987px;}
.x7{left:165.089987px;}
.x2{left:190.290000px;}
.x3{left:287.175000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls35{letter-spacing:-5.706667pt;}
.ls34{letter-spacing:-1.370667pt;}
.ls2d{letter-spacing:-0.576000pt;}
.ls36{letter-spacing:-0.517333pt;}
.ls38{letter-spacing:-0.436267pt;}
.ls32{letter-spacing:-0.309867pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.208533pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.176533pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls37{letter-spacing:-0.092267pt;}
.ls5{letter-spacing:-0.046720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000001pt;}
.ls1f{letter-spacing:0.000003pt;}
.ls13{letter-spacing:0.008960pt;}
.lsf{letter-spacing:0.035840pt;}
.ls23{letter-spacing:0.059520pt;}
.ls12{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.109333pt;}
.ls8{letter-spacing:0.115200pt;}
.ls2a{letter-spacing:0.122880pt;}
.ls20{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.203520pt;}
.ls2c{letter-spacing:0.203733pt;}
.lse{letter-spacing:0.217600pt;}
.ls18{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.263467pt;}
.ls25{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.330240pt;}
.ls2{letter-spacing:0.377600pt;}
.ls19{letter-spacing:0.431360pt;}
.ls39{letter-spacing:0.431467pt;}
.ls22{letter-spacing:0.512000pt;}
.ls2e{letter-spacing:0.842667pt;}
.ls24{letter-spacing:1.280000pt;}
.ls31{letter-spacing:2.122667pt;}
.ls17{letter-spacing:6.400000pt;}
.ls26{letter-spacing:7.680000pt;}
.ls27{letter-spacing:8.320000pt;}
.ls1d{letter-spacing:12.160000pt;}
.ls14{letter-spacing:12.608000pt;}
.lsd{letter-spacing:13.600000pt;}
.ls1e{letter-spacing:14.720000pt;}
.lsa{letter-spacing:17.440000pt;}
.lsc{letter-spacing:24.960000pt;}
.ls1c{letter-spacing:28.288000pt;}
.ls1b{letter-spacing:28.928000pt;}
.ls1a{letter-spacing:34.048000pt;}
.ls16{letter-spacing:34.560000pt;}
.ls28{letter-spacing:44.800000pt;}
.ls9{letter-spacing:48.000000pt;}
.ls0{letter-spacing:462.240000pt;}
.ls30{letter-spacing:750.368000pt;}
.ls2b{letter-spacing:750.474667pt;}
.wsc{word-spacing:-13.696000pt;}
.wse{word-spacing:-13.568000pt;}
.wsb{word-spacing:-13.504000pt;}
.wsd{word-spacing:-13.440003pt;}
.ws10{word-spacing:-13.440001pt;}
.ws1{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.312000pt;}
.ws14{word-spacing:-13.277867pt;}
.wsa{word-spacing:-13.184000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws12{word-spacing:-11.997867pt;}
.ws1d{word-spacing:-11.586667pt;}
.ws11{word-spacing:-11.358933pt;}
.ws15{word-spacing:-11.270400pt;}
.ws17{word-spacing:-11.164160pt;}
.ws2{word-spacing:-11.155200pt;}
.ws3{word-spacing:-11.108480pt;}
.ws18{word-spacing:-10.946667pt;}
.ws16{word-spacing:-10.845333pt;}
.ws5{word-spacing:-10.783360pt;}
.ws4{word-spacing:-10.730240pt;}
.ws1c{word-spacing:-10.718933pt;}
.ws1b{word-spacing:-10.637867pt;}
.ws19{word-spacing:-9.784533pt;}
.ws7{word-spacing:-8.012800pt;}
.ws9{word-spacing:-7.831040pt;}
.ws8{word-spacing:-7.795200pt;}
.ws13{word-spacing:-7.618667pt;}
.ws1a{word-spacing:-5.448533pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-10.240000pt;}
._42{margin-left:-9.189973pt;}
._40{margin-left:-6.869547pt;}
._6{margin-left:-5.877333pt;}
._9{margin-left:-4.164267pt;}
._b{margin-left:-3.271680pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.365333pt;}
._a{width:0.967680pt;}
._5{width:1.962667pt;}
._18{width:2.858667pt;}
._11{width:3.768320pt;}
._12{width:5.546667pt;}
._e{width:6.848000pt;}
._24{width:7.808000pt;}
._17{width:8.832000pt;}
._1a{width:9.792000pt;}
._19{width:10.752000pt;}
._26{width:11.643307pt;}
._36{width:12.544000pt;}
._41{width:13.610240pt;}
._13{width:14.968320pt;}
._35{width:16.384000pt;}
._23{width:17.536000pt;}
._1e{width:18.624000pt;}
._1f{width:19.840000pt;}
._31{width:20.757333pt;}
._10{width:21.952000pt;}
._f{width:23.424000pt;}
._20{width:24.384000pt;}
._21{width:25.866667pt;}
._27{width:26.878293pt;}
._2c{width:28.245333pt;}
._2b{width:29.184000pt;}
._30{width:30.656000pt;}
._2e{width:32.384000pt;}
._2d{width:33.280000pt;}
._34{width:34.517333pt;}
._22{width:35.434667pt;}
._1b{width:36.480000pt;}
._2f{width:37.560320pt;}
._33{width:38.452907pt;}
._39{width:39.357440pt;}
._3e{width:40.397653pt;}
._29{width:41.984000pt;}
._28{width:42.944000pt;}
._3a{width:44.330667pt;}
._32{width:45.248000pt;}
._25{width:46.634667pt;}
._16{width:47.680000pt;}
._38{width:49.045333pt;}
._d{width:50.154667pt;}
._1c{width:51.242667pt;}
._2a{width:59.840000pt;}
._15{width:62.592000pt;}
._14{width:63.808000pt;}
._1d{width:68.736000pt;}
._43{width:86.647040pt;}
._44{width:88.034133pt;}
._2{width:422.368000pt;}
._7{width:483.553493pt;}
._3{width:1151.626667pt;}
._3b{width:1294.965760pt;}
._3d{width:1296.245760pt;}
._3f{width:1298.165760pt;}
._3c{width:1301.365760pt;}
._37{width:1319.925760pt;}
._c{width:1321.205760pt;}
._8{width:1325.431467pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:4.000000pt;}
.y13{bottom:5.120000pt;}
.y36{bottom:20.000000pt;}
.y12{bottom:24.800000pt;}
.y35{bottom:35.994667pt;}
.y11{bottom:41.600000pt;}
.y5{bottom:51.200000pt;}
.y34{bottom:51.994667pt;}
.y10{bottom:60.840000pt;}
.y33{bottom:67.994667pt;}
.y4{bottom:70.272000pt;}
.yf{bottom:80.360000pt;}
.y32{bottom:84.794667pt;}
.yb{bottom:90.880000pt;}
.ye{bottom:101.160000pt;}
.yd{bottom:102.440000pt;}
.ya2{bottom:103.872000pt;}
.y31{bottom:103.994667pt;}
.ydb{bottom:104.032000pt;}
.ya{bottom:107.680000pt;}
.y14{bottom:112.672000pt;}
.y66{bottom:116.032000pt;}
.y95{bottom:117.632000pt;}
.yda{bottom:120.032000pt;}
.ya1{bottom:123.072000pt;}
.y30{bottom:123.194667pt;}
.y112{bottom:123.232000pt;}
.y9{bottom:126.880000pt;}
.y65{bottom:135.226667pt;}
.yd9{bottom:136.026667pt;}
.y94{bottom:136.826667pt;}
.y111{bottom:139.226667pt;}
.ya3{bottom:142.106667pt;}
.ya0{bottom:142.266667pt;}
.y2f{bottom:142.394667pt;}
.y8{bottom:146.400000pt;}
.yd8{bottom:152.026667pt;}
.y64{bottom:154.426667pt;}
.y110{bottom:155.226667pt;}
.y93{bottom:156.026667pt;}
.y9f{bottom:161.466667pt;}
.y2e{bottom:161.594667pt;}
.yd7{bottom:168.026667pt;}
.y10f{bottom:171.226667pt;}
.y63{bottom:173.626667pt;}
.y92{bottom:175.226667pt;}
.y9e{bottom:180.666667pt;}
.y2d{bottom:180.794667pt;}
.yd6{bottom:184.026667pt;}
.y10e{bottom:187.226667pt;}
.y62{bottom:192.826667pt;}
.y91{bottom:194.426667pt;}
.y9d{bottom:199.866667pt;}
.yd5{bottom:200.026667pt;}
.y2c{bottom:200.034667pt;}
.y10d{bottom:203.226667pt;}
.y61{bottom:212.026667pt;}
.y90{bottom:213.626667pt;}
.yd4{bottom:216.026667pt;}
.y9c{bottom:219.066667pt;}
.y10c{bottom:219.226667pt;}
.y2b{bottom:219.234667pt;}
.y60{bottom:231.226667pt;}
.yd3{bottom:232.026667pt;}
.y8f{bottom:232.826667pt;}
.y10b{bottom:235.226667pt;}
.y9b{bottom:238.266667pt;}
.y2a{bottom:238.434667pt;}
.yd2{bottom:248.026667pt;}
.y5f{bottom:250.426667pt;}
.y10a{bottom:251.226667pt;}
.y8e{bottom:252.026667pt;}
.y9a{bottom:257.466667pt;}
.y29{bottom:257.634667pt;}
.yd1{bottom:264.026667pt;}
.y109{bottom:267.226667pt;}
.y5e{bottom:269.626667pt;}
.y8d{bottom:271.226667pt;}
.y99{bottom:276.666667pt;}
.y28{bottom:276.834667pt;}
.yd0{bottom:280.026667pt;}
.y108{bottom:283.226667pt;}
.y5d{bottom:288.826667pt;}
.y8c{bottom:290.426667pt;}
.y98{bottom:295.866667pt;}
.ycf{bottom:296.026667pt;}
.y27{bottom:296.034667pt;}
.y107{bottom:299.266667pt;}
.y5c{bottom:308.066667pt;}
.y8b{bottom:309.666667pt;}
.yce{bottom:312.066667pt;}
.y97{bottom:315.106667pt;}
.y26{bottom:315.234667pt;}
.y106{bottom:315.266667pt;}
.y5b{bottom:327.266667pt;}
.ycd{bottom:328.066667pt;}
.y8a{bottom:328.866667pt;}
.y105{bottom:331.266667pt;}
.y96{bottom:334.306667pt;}
.y25{bottom:334.434667pt;}
.ycc{bottom:344.066667pt;}
.y5a{bottom:346.466667pt;}
.y104{bottom:347.266667pt;}
.y89{bottom:348.066667pt;}
.y24{bottom:353.634667pt;}
.ycb{bottom:360.066667pt;}
.y103{bottom:363.266667pt;}
.y59{bottom:365.666667pt;}
.y88{bottom:367.266667pt;}
.y23{bottom:372.834667pt;}
.yca{bottom:376.066667pt;}
.y102{bottom:379.266667pt;}
.y58{bottom:384.866667pt;}
.y87{bottom:386.466667pt;}
.y22{bottom:392.034667pt;}
.yc9{bottom:392.066667pt;}
.y101{bottom:395.266667pt;}
.y57{bottom:404.066667pt;}
.y86{bottom:405.666667pt;}
.yc8{bottom:408.066667pt;}
.y21{bottom:410.434667pt;}
.y100{bottom:411.266667pt;}
.y56{bottom:423.266667pt;}
.yc7{bottom:424.066667pt;}
.y85{bottom:424.866667pt;}
.y20{bottom:426.461333pt;}
.yff{bottom:427.266667pt;}
.yc6{bottom:440.066667pt;}
.y1f{bottom:442.461333pt;}
.y55{bottom:442.466667pt;}
.yfe{bottom:443.266667pt;}
.y84{bottom:444.066667pt;}
.yc5{bottom:456.066667pt;}
.y1e{bottom:458.461333pt;}
.yfd{bottom:459.266667pt;}
.y54{bottom:461.666667pt;}
.y83{bottom:463.266667pt;}
.yc4{bottom:472.066667pt;}
.y1d{bottom:474.461333pt;}
.yfc{bottom:475.266667pt;}
.y53{bottom:480.866667pt;}
.y82{bottom:482.466667pt;}
.yc3{bottom:488.066667pt;}
.y1c{bottom:490.461333pt;}
.yfb{bottom:491.266667pt;}
.y52{bottom:500.066667pt;}
.y81{bottom:501.666667pt;}
.yc2{bottom:504.066667pt;}
.y1b{bottom:506.461333pt;}
.yfa{bottom:507.266667pt;}
.y51{bottom:519.266667pt;}
.yc1{bottom:520.066667pt;}
.y80{bottom:520.866667pt;}
.y1a{bottom:522.461333pt;}
.yf9{bottom:523.266667pt;}
.yc0{bottom:536.066667pt;}
.y50{bottom:538.493333pt;}
.y19{bottom:539.261333pt;}
.yf8{bottom:539.293333pt;}
.y7f{bottom:540.093333pt;}
.ybf{bottom:552.093333pt;}
.yf7{bottom:555.293333pt;}
.y18{bottom:557.661333pt;}
.y4f{bottom:557.693333pt;}
.y7e{bottom:559.293333pt;}
.ybe{bottom:568.093333pt;}
.yf6{bottom:571.293333pt;}
.y17{bottom:573.661333pt;}
.y4e{bottom:576.893333pt;}
.y7d{bottom:578.493333pt;}
.ybd{bottom:584.093333pt;}
.yf5{bottom:587.293333pt;}
.y16{bottom:590.781333pt;}
.y15{bottom:592.061333pt;}
.y4d{bottom:596.093333pt;}
.y7c{bottom:597.693333pt;}
.ybc{bottom:600.093333pt;}
.yf4{bottom:603.293333pt;}
.y4c{bottom:615.293333pt;}
.ybb{bottom:616.093333pt;}
.y7b{bottom:616.893333pt;}
.yf3{bottom:619.293333pt;}
.yba{bottom:632.093333pt;}
.y4b{bottom:634.493333pt;}
.yf2{bottom:635.293333pt;}
.y7a{bottom:636.093333pt;}
.yb9{bottom:648.093333pt;}
.yf1{bottom:651.293333pt;}
.y4a{bottom:653.693333pt;}
.y79{bottom:655.293333pt;}
.yb8{bottom:664.093333pt;}
.yf0{bottom:667.293333pt;}
.y49{bottom:672.893333pt;}
.y78{bottom:674.493333pt;}
.yb7{bottom:680.093333pt;}
.yef{bottom:683.293333pt;}
.y48{bottom:692.093333pt;}
.y77{bottom:693.693333pt;}
.yb6{bottom:696.093333pt;}
.yee{bottom:699.293333pt;}
.y47{bottom:711.293333pt;}
.yb5{bottom:712.093333pt;}
.y76{bottom:712.893333pt;}
.yed{bottom:715.293333pt;}
.yc{bottom:719.773333pt;}
.yb4{bottom:728.093333pt;}
.y46{bottom:730.493333pt;}
.yec{bottom:731.293333pt;}
.y75{bottom:732.093333pt;}
.yb3{bottom:744.093333pt;}
.yeb{bottom:747.293333pt;}
.y45{bottom:749.693333pt;}
.y74{bottom:751.293333pt;}
.yb2{bottom:760.093333pt;}
.yea{bottom:763.293333pt;}
.y44{bottom:768.893333pt;}
.y73{bottom:770.493333pt;}
.yb1{bottom:776.133333pt;}
.ye9{bottom:779.333333pt;}
.y43{bottom:788.133333pt;}
.y72{bottom:789.733333pt;}
.yb0{bottom:792.133333pt;}
.ye8{bottom:795.333333pt;}
.y42{bottom:807.333333pt;}
.yaf{bottom:808.133333pt;}
.y71{bottom:808.933333pt;}
.ye7{bottom:811.333333pt;}
.yae{bottom:824.133333pt;}
.y41{bottom:826.533333pt;}
.ye6{bottom:827.333333pt;}
.y70{bottom:828.133333pt;}
.y7{bottom:837.253333pt;}
.yad{bottom:840.133333pt;}
.ye5{bottom:843.333333pt;}
.y40{bottom:845.733333pt;}
.y6f{bottom:847.333333pt;}
.yac{bottom:856.133333pt;}
.ye4{bottom:859.333333pt;}
.y3f{bottom:864.933333pt;}
.y6e{bottom:866.533333pt;}
.yab{bottom:872.133333pt;}
.ye3{bottom:875.333333pt;}
.y3e{bottom:884.133333pt;}
.y6d{bottom:885.733333pt;}
.yaa{bottom:888.133333pt;}
.ye2{bottom:891.333333pt;}
.y3d{bottom:903.333333pt;}
.ya9{bottom:904.133333pt;}
.y6c{bottom:904.933333pt;}
.ye1{bottom:907.333333pt;}
.ya8{bottom:920.133333pt;}
.y3c{bottom:922.533333pt;}
.ye0{bottom:923.333333pt;}
.y6b{bottom:924.133333pt;}
.ya7{bottom:936.133333pt;}
.ydf{bottom:939.333333pt;}
.y3b{bottom:941.733333pt;}
.y6a{bottom:943.333333pt;}
.ya6{bottom:952.133333pt;}
.yde{bottom:955.333333pt;}
.y3a{bottom:960.933333pt;}
.y69{bottom:962.533333pt;}
.ya5{bottom:968.133333pt;}
.ydd{bottom:971.333333pt;}
.y39{bottom:980.133333pt;}
.y68{bottom:981.733333pt;}
.ya4{bottom:984.133333pt;}
.ydc{bottom:987.333333pt;}
.y38{bottom:999.653333pt;}
.y67{bottom:1000.933333pt;}
.y6{bottom:1003.333333pt;}
.y3{bottom:1020.160000pt;}
.y2{bottom:1039.360000pt;}
.y1{bottom:1060.960000pt;}
.hc{height:32.960000pt;}
.h5{height:44.886400pt;}
.ha{height:45.895680pt;}
.hb{height:45.948800pt;}
.h4{height:54.080000pt;}
.h3{height:55.296000pt;}
.h2{height:55.360000pt;}
.h7{height:59.788800pt;}
.h8{height:116.832000pt;}
.h6{height:162.080000pt;}
.h9{height:606.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:179.746667pt;}
.w4{width:472.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:75.519988pt;}
.x8{left:94.431988pt;}
.x5{left:99.551988pt;}
.x6{left:123.551988pt;}
.x7{left:146.746655pt;}
.x2{left:169.146667pt;}
.x3{left:255.266667pt;}
}




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