
    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_dfb6a5d317bd356bf309f0d6.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_71305692434a2810bdb3427e.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_0d81a4f967d7e6957432c7f5.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_25ec682f64c7d1d550afcb3c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.043083;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_c9b1a53fbdf297b6a57f2b9c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.043083;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_04cc3766dde1762704eed450.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_162cda20370dfa66f27e0e04.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_9a733cc4b78d9ba5f64d8509.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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls34{letter-spacing:-6.420000px;}
.ls36{letter-spacing:-4.254000px;}
.ls19{letter-spacing:-3.600000px;}
.ls33{letter-spacing:-1.542000px;}
.ls35{letter-spacing:-0.582000px;}
.ls31{letter-spacing:-0.348600px;}
.ls22{letter-spacing:-0.288000px;}
.ls32{letter-spacing:-0.234600px;}
.lsc{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.100800px;}
.ls5{letter-spacing:-0.052560px;}
.ls2{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000003px;}
.ls10{letter-spacing:0.010080px;}
.ls18{letter-spacing:0.066960px;}
.ls7{letter-spacing:0.123000px;}
.ls8{letter-spacing:0.129600px;}
.ls1a{letter-spacing:0.138240px;}
.lsd{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.228960px;}
.ls20{letter-spacing:0.229200px;}
.ls15{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.296400px;}
.ls16{letter-spacing:0.360000px;}
.lse{letter-spacing:0.371520px;}
.ls12{letter-spacing:0.485280px;}
.ls30{letter-spacing:0.485400px;}
.ls9{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.948000px;}
.ls2d{letter-spacing:1.850400px;}
.ls2f{letter-spacing:2.388000px;}
.lsb{letter-spacing:3.600000px;}
.ls14{letter-spacing:5.040000px;}
.ls2e{letter-spacing:6.170400px;}
.ls1e{letter-spacing:10.260000px;}
.ls13{letter-spacing:10.800000px;}
.lsa{letter-spacing:12.960000px;}
.ls1c{letter-spacing:16.560000px;}
.ls1d{letter-spacing:17.280000px;}
.lsf{letter-spacing:21.600000px;}
.ls2c{letter-spacing:24.170400px;}
.ls29{letter-spacing:25.610400px;}
.ls28{letter-spacing:26.330400px;}
.ls2a{letter-spacing:27.050400px;}
.ls27{letter-spacing:28.490400px;}
.ls11{letter-spacing:32.400000px;}
.ls2b{letter-spacing:33.530400px;}
.ls1b{letter-spacing:54.864000px;}
.ls24{letter-spacing:141.840000px;}
.ls17{letter-spacing:175.680000px;}
.ls0{letter-spacing:520.020000px;}
.ls26{letter-spacing:844.104000px;}
.ls1f{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:-72.000000px;}
.ws2{word-spacing:-15.785280px;}
.wsf{word-spacing:-15.480000px;}
.wsb{word-spacing:-15.408000px;}
.wse{word-spacing:-15.336000px;}
.wsa{word-spacing:-15.264000px;}
.ws12{word-spacing:-15.120003px;}
.ws1{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.976000px;}
.ws13{word-spacing:-14.937600px;}
.ws11{word-spacing:-14.832000px;}
.ws0{word-spacing:-14.616000px;}
.ws10{word-spacing:-13.497600px;}
.ws14{word-spacing:-13.035000px;}
.wsd{word-spacing:-12.778800px;}
.ws15{word-spacing:-12.679200px;}
.ws17{word-spacing:-12.559680px;}
.ws4{word-spacing:-12.549600px;}
.ws5{word-spacing:-12.497040px;}
.ws3{word-spacing:-12.448800px;}
.ws18{word-spacing:-12.315000px;}
.ws16{word-spacing:-12.201000px;}
.ws7{word-spacing:-12.131280px;}
.ws6{word-spacing:-12.071520px;}
.ws1b{word-spacing:-11.967600px;}
.ws19{word-spacing:-11.007600px;}
.ws1c{word-spacing:-8.295600px;}
.ws1a{word-spacing:-6.129600px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-11.520000px;}
._c{margin-left:-8.916480px;}
._44{margin-left:-7.628880px;}
._6{margin-left:-6.612000px;}
._9{margin-left:-5.460480px;}
._a{margin-left:-4.408320px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.536000px;}
._b{width:1.176000px;}
._5{width:2.208000px;}
._1f{width:3.456000px;}
._22{width:5.412000px;}
._f{width:6.828000px;}
._e{width:8.064000px;}
._2b{width:9.432000px;}
._28{width:10.440000px;}
._13{width:11.664000px;}
._14{width:12.840000px;}
._17{width:14.112000px;}
._20{width:16.704000px;}
._25{width:18.576000px;}
._26{width:19.608000px;}
._12{width:21.528000px;}
._1e{width:22.896000px;}
._1d{width:23.904000px;}
._21{width:25.008000px;}
._23{width:26.496000px;}
._27{width:28.440000px;}
._32{width:29.976000px;}
._1b{width:31.536000px;}
._1a{width:32.976000px;}
._29{width:33.984000px;}
._2e{width:35.424000px;}
._24{width:36.540000px;}
._16{width:37.656000px;}
._15{width:38.664000px;}
._2f{width:40.176000px;}
._2a{width:41.352000px;}
._1c{width:42.696000px;}
._2d{width:44.496000px;}
._38{width:45.780000px;}
._33{width:47.808000px;}
._11{width:49.344000px;}
._10{width:50.832000px;}
._35{width:55.368000px;}
._45{width:56.531040px;}
._30{width:60.408000px;}
._37{width:62.352000px;}
._2c{width:63.792000px;}
._36{width:69.120000px;}
._19{width:71.568000px;}
._18{width:72.624000px;}
._41{width:91.224000px;}
._39{width:94.536000px;}
._31{width:99.936000px;}
._3f{width:141.839994px;}
._42{width:143.424000px;}
._3e{width:147.432000px;}
._40{width:149.160000px;}
._3d{width:175.680000px;}
._46{width:379.762800px;}
._2{width:475.164000px;}
._7{width:542.802480px;}
._3{width:1295.580000px;}
._3a{width:1456.574400px;}
._3c{width:1458.014400px;}
._43{width:1460.174400px;}
._3b{width:1463.774400px;}
._34{width:1484.654400px;}
._d{width:1486.094400px;}
._8{width:1491.110400px;}
.fc4{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y39{bottom:4.494000px;}
.y8b{bottom:5.400000px;}
.y8f{bottom:5.445000px;}
.y17{bottom:5.760000px;}
.y38{bottom:22.494000px;}
.y16{bottom:27.900000px;}
.ye{bottom:37.440000px;}
.y37{bottom:40.494000px;}
.y15{bottom:46.800000px;}
.yd{bottom:55.440000px;}
.y5{bottom:57.600000px;}
.y36{bottom:58.494000px;}
.y14{bottom:68.400000px;}
.yc{bottom:74.340000px;}
.y35{bottom:76.494000px;}
.y4{bottom:79.056000px;}
.y13{bottom:90.405000px;}
.y34{bottom:95.394000px;}
.yb{bottom:95.940000px;}
.y12{bottom:113.805000px;}
.y33{bottom:116.994000px;}
.y99{bottom:117.036000px;}
.ya{bottom:117.900000px;}
.y68{bottom:128.736000px;}
.yef{bottom:128.916000px;}
.ya7{bottom:132.336000px;}
.y125{bottom:135.036000px;}
.yde{bottom:136.656000px;}
.y11{bottom:137.205000px;}
.y32{bottom:138.594000px;}
.y98{bottom:138.636000px;}
.y10{bottom:138.645000px;}
.y9{bottom:141.300000px;}
.y18{bottom:146.556000px;}
.y67{bottom:150.330000px;}
.yee{bottom:150.510000px;}
.y124{bottom:153.030000px;}
.ya6{bottom:153.930000px;}
.ydd{bottom:158.250000px;}
.y31{bottom:160.194000px;}
.y97{bottom:160.230000px;}
.y8{bottom:164.700000px;}
.y123{bottom:171.030000px;}
.y66{bottom:171.930000px;}
.yed{bottom:172.110000px;}
.ya5{bottom:175.530000px;}
.ydc{bottom:179.850000px;}
.y30{bottom:181.794000px;}
.y96{bottom:181.830000px;}
.y122{bottom:189.030000px;}
.y65{bottom:193.530000px;}
.yec{bottom:193.710000px;}
.ya4{bottom:197.130000px;}
.ydb{bottom:201.450000px;}
.y95{bottom:203.430000px;}
.y2f{bottom:203.439000px;}
.y121{bottom:207.030000px;}
.y64{bottom:215.130000px;}
.yeb{bottom:215.310000px;}
.ya3{bottom:218.730000px;}
.yda{bottom:223.050000px;}
.y94{bottom:225.030000px;}
.y2e{bottom:225.039000px;}
.y63{bottom:236.730000px;}
.yea{bottom:236.910000px;}
.ya2{bottom:240.330000px;}
.y120{bottom:243.030000px;}
.yd9{bottom:244.650000px;}
.y93{bottom:246.630000px;}
.y2d{bottom:246.639000px;}
.y62{bottom:258.330000px;}
.ye9{bottom:258.510000px;}
.y11f{bottom:261.030000px;}
.ya1{bottom:261.930000px;}
.yd8{bottom:266.250000px;}
.y92{bottom:268.230000px;}
.y2c{bottom:268.239000px;}
.y11e{bottom:279.030000px;}
.y61{bottom:279.930000px;}
.ye8{bottom:280.110000px;}
.ya0{bottom:283.530000px;}
.yd7{bottom:287.850000px;}
.y91{bottom:289.830000px;}
.y2b{bottom:289.839000px;}
.y11d{bottom:297.030000px;}
.y60{bottom:301.530000px;}
.ye7{bottom:301.710000px;}
.y9f{bottom:305.130000px;}
.y90{bottom:307.470000px;}
.yd6{bottom:309.450000px;}
.y2a{bottom:311.439000px;}
.y11c{bottom:315.030000px;}
.y5f{bottom:323.130000px;}
.ye6{bottom:323.310000px;}
.y9e{bottom:326.730000px;}
.yd5{bottom:331.050000px;}
.y8e{bottom:332.490000px;}
.y11b{bottom:333.030000px;}
.y29{bottom:333.039000px;}
.y5e{bottom:344.775000px;}
.ye5{bottom:344.955000px;}
.y9d{bottom:348.375000px;}
.y11a{bottom:351.075000px;}
.yd4{bottom:352.695000px;}
.y28{bottom:354.639000px;}
.y8c{bottom:356.655000px;}
.yc7{bottom:362.415000px;}
.y5d{bottom:366.375000px;}
.ye4{bottom:366.555000px;}
.y119{bottom:369.075000px;}
.y9c{bottom:369.975000px;}
.yd3{bottom:374.295000px;}
.y27{bottom:376.239000px;}
.y8d{bottom:381.675000px;}
.yc6{bottom:384.015000px;}
.ye3{bottom:384.195000px;}
.y118{bottom:387.075000px;}
.y5c{bottom:387.975000px;}
.y9b{bottom:391.575000px;}
.yd2{bottom:395.895000px;}
.y26{bottom:397.839000px;}
.y117{bottom:405.075000px;}
.yc5{bottom:405.615000px;}
.y8a{bottom:405.795000px;}
.y5b{bottom:409.575000px;}
.y9a{bottom:413.175000px;}
.ye2{bottom:414.255000px;}
.yd1{bottom:417.495000px;}
.y25{bottom:418.539000px;}
.y116{bottom:423.075000px;}
.yc4{bottom:427.215000px;}
.y5a{bottom:431.175000px;}
.y89{bottom:434.775000px;}
.y24{bottom:436.539000px;}
.yd0{bottom:439.095000px;}
.y115{bottom:441.075000px;}
.ye0{bottom:442.875000px;}
.yc3{bottom:448.815000px;}
.y59{bottom:452.775000px;}
.y23{bottom:454.539000px;}
.y88{bottom:456.375000px;}
.y114{bottom:459.075000px;}
.ycf{bottom:460.695000px;}
.yc2{bottom:470.415000px;}
.y22{bottom:472.569000px;}
.ye1{bottom:472.935000px;}
.y58{bottom:474.375000px;}
.y113{bottom:477.075000px;}
.y87{bottom:477.975000px;}
.yce{bottom:482.295000px;}
.y21{bottom:490.569000px;}
.yc1{bottom:492.015000px;}
.y112{bottom:495.075000px;}
.y57{bottom:495.975000px;}
.y86{bottom:499.575000px;}
.ydf{bottom:501.735000px;}
.ycd{bottom:503.895000px;}
.y20{bottom:508.569000px;}
.y111{bottom:513.075000px;}
.yc0{bottom:513.615000px;}
.y56{bottom:517.575000px;}
.y85{bottom:521.175000px;}
.ycc{bottom:525.495000px;}
.y1f{bottom:526.569000px;}
.y110{bottom:531.075000px;}
.ybf{bottom:535.215000px;}
.y55{bottom:539.175000px;}
.y84{bottom:542.775000px;}
.y1e{bottom:544.569000px;}
.ycb{bottom:547.095000px;}
.y10f{bottom:549.075000px;}
.ybe{bottom:556.815000px;}
.y54{bottom:560.775000px;}
.y1d{bottom:563.469000px;}
.y83{bottom:564.375000px;}
.y10e{bottom:567.075000px;}
.yca{bottom:568.695000px;}
.ybd{bottom:578.415000px;}
.y53{bottom:582.375000px;}
.y1c{bottom:584.169000px;}
.y10d{bottom:585.075000px;}
.y82{bottom:585.975000px;}
.yc9{bottom:590.295000px;}
.ybc{bottom:600.015000px;}
.y1b{bottom:602.169000px;}
.y10c{bottom:603.075000px;}
.y52{bottom:604.005000px;}
.y81{bottom:607.605000px;}
.yc8{bottom:611.925000px;}
.y10b{bottom:621.105000px;}
.y1a{bottom:621.429000px;}
.ybb{bottom:621.645000px;}
.y19{bottom:622.869000px;}
.y51{bottom:625.605000px;}
.y80{bottom:629.205000px;}
.y10a{bottom:639.105000px;}
.yba{bottom:643.245000px;}
.y50{bottom:647.205000px;}
.y7f{bottom:650.805000px;}
.y109{bottom:657.105000px;}
.yb9{bottom:664.845000px;}
.y4f{bottom:668.805000px;}
.y7e{bottom:672.405000px;}
.y108{bottom:675.105000px;}
.yb8{bottom:686.445000px;}
.y4e{bottom:690.405000px;}
.y107{bottom:693.105000px;}
.y7d{bottom:694.005000px;}
.yb7{bottom:708.045000px;}
.y106{bottom:711.105000px;}
.y4d{bottom:712.005000px;}
.y7c{bottom:715.605000px;}
.y105{bottom:729.105000px;}
.yb6{bottom:729.645000px;}
.y4c{bottom:733.605000px;}
.y7b{bottom:737.205000px;}
.y104{bottom:747.105000px;}
.yb5{bottom:751.245000px;}
.y4b{bottom:755.205000px;}
.y7a{bottom:758.805000px;}
.y103{bottom:765.105000px;}
.yb4{bottom:772.845000px;}
.y4a{bottom:776.805000px;}
.y79{bottom:780.405000px;}
.y102{bottom:783.105000px;}
.yf{bottom:786.345000px;}
.yb3{bottom:794.445000px;}
.y49{bottom:798.405000px;}
.y101{bottom:801.105000px;}
.y78{bottom:802.005000px;}
.yb2{bottom:816.045000px;}
.y100{bottom:819.105000px;}
.y48{bottom:820.005000px;}
.y77{bottom:823.605000px;}
.yff{bottom:837.105000px;}
.yb1{bottom:839.445000px;}
.y47{bottom:841.605000px;}
.y76{bottom:845.205000px;}
.yfe{bottom:855.105000px;}
.y134{bottom:858.705000px;}
.yb0{bottom:861.045000px;}
.y46{bottom:863.205000px;}
.y75{bottom:866.805000px;}
.yfd{bottom:873.150000px;}
.y133{bottom:876.750000px;}
.yaf{bottom:882.690000px;}
.y45{bottom:884.850000px;}
.y74{bottom:888.450000px;}
.yfc{bottom:891.150000px;}
.y132{bottom:894.750000px;}
.yae{bottom:904.290000px;}
.y44{bottom:906.450000px;}
.yfb{bottom:909.150000px;}
.y73{bottom:910.050000px;}
.y131{bottom:912.750000px;}
.yad{bottom:925.890000px;}
.yfa{bottom:927.150000px;}
.y43{bottom:928.050000px;}
.y130{bottom:930.750000px;}
.y72{bottom:931.650000px;}
.y7{bottom:941.910000px;}
.yf9{bottom:945.150000px;}
.y12f{bottom:948.750000px;}
.yac{bottom:949.470000px;}
.y42{bottom:949.650000px;}
.y71{bottom:953.250000px;}
.yf8{bottom:963.150000px;}
.y12e{bottom:966.750000px;}
.y41{bottom:971.250000px;}
.yab{bottom:972.870000px;}
.y70{bottom:974.850000px;}
.yf7{bottom:981.150000px;}
.y12d{bottom:984.750000px;}
.y40{bottom:992.850000px;}
.yaa{bottom:994.470000px;}
.y6f{bottom:996.450000px;}
.yf6{bottom:999.150000px;}
.y12c{bottom:1002.750000px;}
.y3f{bottom:1014.450000px;}
.ya9{bottom:1016.070000px;}
.yf5{bottom:1017.150000px;}
.y6e{bottom:1018.050000px;}
.y12b{bottom:1020.750000px;}
.yf4{bottom:1035.150000px;}
.y3e{bottom:1036.050000px;}
.ya8{bottom:1037.670000px;}
.y12a{bottom:1038.750000px;}
.y6d{bottom:1039.650000px;}
.yf3{bottom:1053.150000px;}
.y129{bottom:1056.750000px;}
.y3d{bottom:1057.650000px;}
.y6c{bottom:1061.250000px;}
.yf2{bottom:1071.150000px;}
.y128{bottom:1074.750000px;}
.y3c{bottom:1079.250000px;}
.y6b{bottom:1082.850000px;}
.yf1{bottom:1089.150000px;}
.y127{bottom:1092.750000px;}
.y3b{bottom:1101.210000px;}
.y6a{bottom:1104.450000px;}
.yf0{bottom:1107.150000px;}
.y126{bottom:1110.750000px;}
.y3a{bottom:1124.610000px;}
.y69{bottom:1126.050000px;}
.y6{bottom:1128.750000px;}
.y3{bottom:1147.680000px;}
.y2{bottom:1169.280000px;}
.y1{bottom:1193.580000px;}
.he{height:22.500000px;}
.hf{height:22.536000px;}
.hc{height:23.580000px;}
.h12{height:27.180000px;}
.h13{height:28.620000px;}
.h10{height:35.640000px;}
.hd{height:47.520000px;}
.h5{height:50.497200px;}
.ha{height:51.632640px;}
.hb{height:51.692400px;}
.h11{height:57.240000px;}
.h4{height:60.840000px;}
.h3{height:62.208000px;}
.h2{height:62.280000px;}
.h7{height:67.262400px;}
.h8{height:154.830000px;}
.h6{height:182.340000px;}
.h9{height:639.075000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:63.396000px;}
.wf{width:71.280000px;}
.w10{width:71.316000px;}
.w8{width:71.676000px;}
.w6{width:72.000000px;}
.w7{width:72.036000px;}
.wc{width:74.160000px;}
.we{width:74.880000px;}
.w19{width:79.956000px;}
.w1b{width:89.676000px;}
.w1c{width:89.820000px;}
.w1d{width:89.856000px;}
.w12{width:90.396000px;}
.w13{width:90.540000px;}
.w14{width:90.576000px;}
.w18{width:93.600000px;}
.w1a{width:94.500000px;}
.w9{width:138.276000px;}
.wb{width:143.316000px;}
.wa{width:146.880000px;}
.w15{width:174.270000px;}
.w17{width:180.210000px;}
.w16{width:184.890000px;}
.w3{width:202.215000px;}
.w5{width:288.075000px;}
.w11{width:362.235000px;}
.w4{width:531.615000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:5.436000px;}
.x4{left:8.100000px;}
.x1{left:84.959987px;}
.x16{left:106.235987px;}
.xd{left:111.995987px;}
.xc{left:138.095987px;}
.x9{left:158.430000px;}
.xe{left:165.089987px;}
.x12{left:176.970000px;}
.x2{left:190.290000px;}
.x15{left:191.369987px;}
.xb{left:233.310000px;}
.x14{left:271.290000px;}
.x3{left:287.175000px;}
.xa{left:297.435000px;}
.x13{left:351.975000px;}
.x6{left:373.035000px;}
.x7{left:445.035000px;}
.xf{left:447.195000px;}
.x8{left:517.065000px;}
.x10{left:537.585000px;}
.x11{left:628.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls34{letter-spacing:-5.706667pt;}
.ls36{letter-spacing:-3.781333pt;}
.ls19{letter-spacing:-3.200000pt;}
.ls33{letter-spacing:-1.370667pt;}
.ls35{letter-spacing:-0.517333pt;}
.ls31{letter-spacing:-0.309867pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls32{letter-spacing:-0.208533pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.089600pt;}
.ls5{letter-spacing:-0.046720pt;}
.ls2{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000003pt;}
.ls10{letter-spacing:0.008960pt;}
.ls18{letter-spacing:0.059520pt;}
.ls7{letter-spacing:0.109333pt;}
.ls8{letter-spacing:0.115200pt;}
.ls1a{letter-spacing:0.122880pt;}
.lsd{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.203520pt;}
.ls20{letter-spacing:0.203733pt;}
.ls15{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.263467pt;}
.ls16{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.330240pt;}
.ls12{letter-spacing:0.431360pt;}
.ls30{letter-spacing:0.431467pt;}
.ls9{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.842667pt;}
.ls2d{letter-spacing:1.644800pt;}
.ls2f{letter-spacing:2.122667pt;}
.lsb{letter-spacing:3.200000pt;}
.ls14{letter-spacing:4.480000pt;}
.ls2e{letter-spacing:5.484800pt;}
.ls1e{letter-spacing:9.120000pt;}
.ls13{letter-spacing:9.600000pt;}
.lsa{letter-spacing:11.520000pt;}
.ls1c{letter-spacing:14.720000pt;}
.ls1d{letter-spacing:15.360000pt;}
.lsf{letter-spacing:19.200000pt;}
.ls2c{letter-spacing:21.484800pt;}
.ls29{letter-spacing:22.764800pt;}
.ls28{letter-spacing:23.404800pt;}
.ls2a{letter-spacing:24.044800pt;}
.ls27{letter-spacing:25.324800pt;}
.ls11{letter-spacing:28.800000pt;}
.ls2b{letter-spacing:29.804800pt;}
.ls1b{letter-spacing:48.768000pt;}
.ls24{letter-spacing:126.080000pt;}
.ls17{letter-spacing:156.160000pt;}
.ls0{letter-spacing:462.240000pt;}
.ls26{letter-spacing:750.314667pt;}
.ls1f{letter-spacing:750.474667pt;}
.wsc{word-spacing:-64.000000pt;}
.ws2{word-spacing:-14.031360pt;}
.wsf{word-spacing:-13.760000pt;}
.wsb{word-spacing:-13.696000pt;}
.wse{word-spacing:-13.632000pt;}
.wsa{word-spacing:-13.568000pt;}
.ws12{word-spacing:-13.440003pt;}
.ws1{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.312000pt;}
.ws13{word-spacing:-13.277867pt;}
.ws11{word-spacing:-13.184000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws10{word-spacing:-11.997867pt;}
.ws14{word-spacing:-11.586667pt;}
.wsd{word-spacing:-11.358933pt;}
.ws15{word-spacing:-11.270400pt;}
.ws17{word-spacing:-11.164160pt;}
.ws4{word-spacing:-11.155200pt;}
.ws5{word-spacing:-11.108480pt;}
.ws3{word-spacing:-11.065600pt;}
.ws18{word-spacing:-10.946667pt;}
.ws16{word-spacing:-10.845333pt;}
.ws7{word-spacing:-10.783360pt;}
.ws6{word-spacing:-10.730240pt;}
.ws1b{word-spacing:-10.637867pt;}
.ws19{word-spacing:-9.784533pt;}
.ws1c{word-spacing:-7.373867pt;}
.ws1a{word-spacing:-5.448533pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-10.240000pt;}
._c{margin-left:-7.925760pt;}
._44{margin-left:-6.781227pt;}
._6{margin-left:-5.877333pt;}
._9{margin-left:-4.853760pt;}
._a{margin-left:-3.918507pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.365333pt;}
._b{width:1.045333pt;}
._5{width:1.962667pt;}
._1f{width:3.072000pt;}
._22{width:4.810667pt;}
._f{width:6.069333pt;}
._e{width:7.168000pt;}
._2b{width:8.384000pt;}
._28{width:9.280000pt;}
._13{width:10.368000pt;}
._14{width:11.413333pt;}
._17{width:12.544000pt;}
._20{width:14.848000pt;}
._25{width:16.512000pt;}
._26{width:17.429333pt;}
._12{width:19.136000pt;}
._1e{width:20.352000pt;}
._1d{width:21.248000pt;}
._21{width:22.229333pt;}
._23{width:23.552000pt;}
._27{width:25.280000pt;}
._32{width:26.645333pt;}
._1b{width:28.032000pt;}
._1a{width:29.312000pt;}
._29{width:30.208000pt;}
._2e{width:31.488000pt;}
._24{width:32.480000pt;}
._16{width:33.472000pt;}
._15{width:34.368000pt;}
._2f{width:35.712000pt;}
._2a{width:36.757333pt;}
._1c{width:37.952000pt;}
._2d{width:39.552000pt;}
._38{width:40.693333pt;}
._33{width:42.496000pt;}
._11{width:43.861333pt;}
._10{width:45.184000pt;}
._35{width:49.216000pt;}
._45{width:50.249813pt;}
._30{width:53.696000pt;}
._37{width:55.424000pt;}
._2c{width:56.704000pt;}
._36{width:61.440000pt;}
._19{width:63.616000pt;}
._18{width:64.554667pt;}
._41{width:81.088000pt;}
._39{width:84.032000pt;}
._31{width:88.832000pt;}
._3f{width:126.079995pt;}
._42{width:127.488000pt;}
._3e{width:131.050667pt;}
._40{width:132.586667pt;}
._3d{width:156.160000pt;}
._46{width:337.566933pt;}
._2{width:422.368000pt;}
._7{width:482.491093pt;}
._3{width:1151.626667pt;}
._3a{width:1294.732800pt;}
._3c{width:1296.012800pt;}
._43{width:1297.932800pt;}
._3b{width:1301.132800pt;}
._34{width:1319.692800pt;}
._d{width:1320.972800pt;}
._8{width:1325.431467pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:3.994667pt;}
.y8b{bottom:4.800000pt;}
.y8f{bottom:4.840000pt;}
.y17{bottom:5.120000pt;}
.y38{bottom:19.994667pt;}
.y16{bottom:24.800000pt;}
.ye{bottom:33.280000pt;}
.y37{bottom:35.994667pt;}
.y15{bottom:41.600000pt;}
.yd{bottom:49.280000pt;}
.y5{bottom:51.200000pt;}
.y36{bottom:51.994667pt;}
.y14{bottom:60.800000pt;}
.yc{bottom:66.080000pt;}
.y35{bottom:67.994667pt;}
.y4{bottom:70.272000pt;}
.y13{bottom:80.360000pt;}
.y34{bottom:84.794667pt;}
.yb{bottom:85.280000pt;}
.y12{bottom:101.160000pt;}
.y33{bottom:103.994667pt;}
.y99{bottom:104.032000pt;}
.ya{bottom:104.800000pt;}
.y68{bottom:114.432000pt;}
.yef{bottom:114.592000pt;}
.ya7{bottom:117.632000pt;}
.y125{bottom:120.032000pt;}
.yde{bottom:121.472000pt;}
.y11{bottom:121.960000pt;}
.y32{bottom:123.194667pt;}
.y98{bottom:123.232000pt;}
.y10{bottom:123.240000pt;}
.y9{bottom:125.600000pt;}
.y18{bottom:130.272000pt;}
.y67{bottom:133.626667pt;}
.yee{bottom:133.786667pt;}
.y124{bottom:136.026667pt;}
.ya6{bottom:136.826667pt;}
.ydd{bottom:140.666667pt;}
.y31{bottom:142.394667pt;}
.y97{bottom:142.426667pt;}
.y8{bottom:146.400000pt;}
.y123{bottom:152.026667pt;}
.y66{bottom:152.826667pt;}
.yed{bottom:152.986667pt;}
.ya5{bottom:156.026667pt;}
.ydc{bottom:159.866667pt;}
.y30{bottom:161.594667pt;}
.y96{bottom:161.626667pt;}
.y122{bottom:168.026667pt;}
.y65{bottom:172.026667pt;}
.yec{bottom:172.186667pt;}
.ya4{bottom:175.226667pt;}
.ydb{bottom:179.066667pt;}
.y95{bottom:180.826667pt;}
.y2f{bottom:180.834667pt;}
.y121{bottom:184.026667pt;}
.y64{bottom:191.226667pt;}
.yeb{bottom:191.386667pt;}
.ya3{bottom:194.426667pt;}
.yda{bottom:198.266667pt;}
.y94{bottom:200.026667pt;}
.y2e{bottom:200.034667pt;}
.y63{bottom:210.426667pt;}
.yea{bottom:210.586667pt;}
.ya2{bottom:213.626667pt;}
.y120{bottom:216.026667pt;}
.yd9{bottom:217.466667pt;}
.y93{bottom:219.226667pt;}
.y2d{bottom:219.234667pt;}
.y62{bottom:229.626667pt;}
.ye9{bottom:229.786667pt;}
.y11f{bottom:232.026667pt;}
.ya1{bottom:232.826667pt;}
.yd8{bottom:236.666667pt;}
.y92{bottom:238.426667pt;}
.y2c{bottom:238.434667pt;}
.y11e{bottom:248.026667pt;}
.y61{bottom:248.826667pt;}
.ye8{bottom:248.986667pt;}
.ya0{bottom:252.026667pt;}
.yd7{bottom:255.866667pt;}
.y91{bottom:257.626667pt;}
.y2b{bottom:257.634667pt;}
.y11d{bottom:264.026667pt;}
.y60{bottom:268.026667pt;}
.ye7{bottom:268.186667pt;}
.y9f{bottom:271.226667pt;}
.y90{bottom:273.306667pt;}
.yd6{bottom:275.066667pt;}
.y2a{bottom:276.834667pt;}
.y11c{bottom:280.026667pt;}
.y5f{bottom:287.226667pt;}
.ye6{bottom:287.386667pt;}
.y9e{bottom:290.426667pt;}
.yd5{bottom:294.266667pt;}
.y8e{bottom:295.546667pt;}
.y11b{bottom:296.026667pt;}
.y29{bottom:296.034667pt;}
.y5e{bottom:306.466667pt;}
.ye5{bottom:306.626667pt;}
.y9d{bottom:309.666667pt;}
.y11a{bottom:312.066667pt;}
.yd4{bottom:313.506667pt;}
.y28{bottom:315.234667pt;}
.y8c{bottom:317.026667pt;}
.yc7{bottom:322.146667pt;}
.y5d{bottom:325.666667pt;}
.ye4{bottom:325.826667pt;}
.y119{bottom:328.066667pt;}
.y9c{bottom:328.866667pt;}
.yd3{bottom:332.706667pt;}
.y27{bottom:334.434667pt;}
.y8d{bottom:339.266667pt;}
.yc6{bottom:341.346667pt;}
.ye3{bottom:341.506667pt;}
.y118{bottom:344.066667pt;}
.y5c{bottom:344.866667pt;}
.y9b{bottom:348.066667pt;}
.yd2{bottom:351.906667pt;}
.y26{bottom:353.634667pt;}
.y117{bottom:360.066667pt;}
.yc5{bottom:360.546667pt;}
.y8a{bottom:360.706667pt;}
.y5b{bottom:364.066667pt;}
.y9a{bottom:367.266667pt;}
.ye2{bottom:368.226667pt;}
.yd1{bottom:371.106667pt;}
.y25{bottom:372.034667pt;}
.y116{bottom:376.066667pt;}
.yc4{bottom:379.746667pt;}
.y5a{bottom:383.266667pt;}
.y89{bottom:386.466667pt;}
.y24{bottom:388.034667pt;}
.yd0{bottom:390.306667pt;}
.y115{bottom:392.066667pt;}
.ye0{bottom:393.666667pt;}
.yc3{bottom:398.946667pt;}
.y59{bottom:402.466667pt;}
.y23{bottom:404.034667pt;}
.y88{bottom:405.666667pt;}
.y114{bottom:408.066667pt;}
.ycf{bottom:409.506667pt;}
.yc2{bottom:418.146667pt;}
.y22{bottom:420.061333pt;}
.ye1{bottom:420.386667pt;}
.y58{bottom:421.666667pt;}
.y113{bottom:424.066667pt;}
.y87{bottom:424.866667pt;}
.yce{bottom:428.706667pt;}
.y21{bottom:436.061333pt;}
.yc1{bottom:437.346667pt;}
.y112{bottom:440.066667pt;}
.y57{bottom:440.866667pt;}
.y86{bottom:444.066667pt;}
.ydf{bottom:445.986667pt;}
.ycd{bottom:447.906667pt;}
.y20{bottom:452.061333pt;}
.y111{bottom:456.066667pt;}
.yc0{bottom:456.546667pt;}
.y56{bottom:460.066667pt;}
.y85{bottom:463.266667pt;}
.ycc{bottom:467.106667pt;}
.y1f{bottom:468.061333pt;}
.y110{bottom:472.066667pt;}
.ybf{bottom:475.746667pt;}
.y55{bottom:479.266667pt;}
.y84{bottom:482.466667pt;}
.y1e{bottom:484.061333pt;}
.ycb{bottom:486.306667pt;}
.y10f{bottom:488.066667pt;}
.ybe{bottom:494.946667pt;}
.y54{bottom:498.466667pt;}
.y1d{bottom:500.861333pt;}
.y83{bottom:501.666667pt;}
.y10e{bottom:504.066667pt;}
.yca{bottom:505.506667pt;}
.ybd{bottom:514.146667pt;}
.y53{bottom:517.666667pt;}
.y1c{bottom:519.261333pt;}
.y10d{bottom:520.066667pt;}
.y82{bottom:520.866667pt;}
.yc9{bottom:524.706667pt;}
.ybc{bottom:533.346667pt;}
.y1b{bottom:535.261333pt;}
.y10c{bottom:536.066667pt;}
.y52{bottom:536.893333pt;}
.y81{bottom:540.093333pt;}
.yc8{bottom:543.933333pt;}
.y10b{bottom:552.093333pt;}
.y1a{bottom:552.381333pt;}
.ybb{bottom:552.573333pt;}
.y19{bottom:553.661333pt;}
.y51{bottom:556.093333pt;}
.y80{bottom:559.293333pt;}
.y10a{bottom:568.093333pt;}
.yba{bottom:571.773333pt;}
.y50{bottom:575.293333pt;}
.y7f{bottom:578.493333pt;}
.y109{bottom:584.093333pt;}
.yb9{bottom:590.973333pt;}
.y4f{bottom:594.493333pt;}
.y7e{bottom:597.693333pt;}
.y108{bottom:600.093333pt;}
.yb8{bottom:610.173333pt;}
.y4e{bottom:613.693333pt;}
.y107{bottom:616.093333pt;}
.y7d{bottom:616.893333pt;}
.yb7{bottom:629.373333pt;}
.y106{bottom:632.093333pt;}
.y4d{bottom:632.893333pt;}
.y7c{bottom:636.093333pt;}
.y105{bottom:648.093333pt;}
.yb6{bottom:648.573333pt;}
.y4c{bottom:652.093333pt;}
.y7b{bottom:655.293333pt;}
.y104{bottom:664.093333pt;}
.yb5{bottom:667.773333pt;}
.y4b{bottom:671.293333pt;}
.y7a{bottom:674.493333pt;}
.y103{bottom:680.093333pt;}
.yb4{bottom:686.973333pt;}
.y4a{bottom:690.493333pt;}
.y79{bottom:693.693333pt;}
.y102{bottom:696.093333pt;}
.yf{bottom:698.973333pt;}
.yb3{bottom:706.173333pt;}
.y49{bottom:709.693333pt;}
.y101{bottom:712.093333pt;}
.y78{bottom:712.893333pt;}
.yb2{bottom:725.373333pt;}
.y100{bottom:728.093333pt;}
.y48{bottom:728.893333pt;}
.y77{bottom:732.093333pt;}
.yff{bottom:744.093333pt;}
.yb1{bottom:746.173333pt;}
.y47{bottom:748.093333pt;}
.y76{bottom:751.293333pt;}
.yfe{bottom:760.093333pt;}
.y134{bottom:763.293333pt;}
.yb0{bottom:765.373333pt;}
.y46{bottom:767.293333pt;}
.y75{bottom:770.493333pt;}
.yfd{bottom:776.133333pt;}
.y133{bottom:779.333333pt;}
.yaf{bottom:784.613333pt;}
.y45{bottom:786.533333pt;}
.y74{bottom:789.733333pt;}
.yfc{bottom:792.133333pt;}
.y132{bottom:795.333333pt;}
.yae{bottom:803.813333pt;}
.y44{bottom:805.733333pt;}
.yfb{bottom:808.133333pt;}
.y73{bottom:808.933333pt;}
.y131{bottom:811.333333pt;}
.yad{bottom:823.013333pt;}
.yfa{bottom:824.133333pt;}
.y43{bottom:824.933333pt;}
.y130{bottom:827.333333pt;}
.y72{bottom:828.133333pt;}
.y7{bottom:837.253333pt;}
.yf9{bottom:840.133333pt;}
.y12f{bottom:843.333333pt;}
.yac{bottom:843.973333pt;}
.y42{bottom:844.133333pt;}
.y71{bottom:847.333333pt;}
.yf8{bottom:856.133333pt;}
.y12e{bottom:859.333333pt;}
.y41{bottom:863.333333pt;}
.yab{bottom:864.773333pt;}
.y70{bottom:866.533333pt;}
.yf7{bottom:872.133333pt;}
.y12d{bottom:875.333333pt;}
.y40{bottom:882.533333pt;}
.yaa{bottom:883.973333pt;}
.y6f{bottom:885.733333pt;}
.yf6{bottom:888.133333pt;}
.y12c{bottom:891.333333pt;}
.y3f{bottom:901.733333pt;}
.ya9{bottom:903.173333pt;}
.yf5{bottom:904.133333pt;}
.y6e{bottom:904.933333pt;}
.y12b{bottom:907.333333pt;}
.yf4{bottom:920.133333pt;}
.y3e{bottom:920.933333pt;}
.ya8{bottom:922.373333pt;}
.y12a{bottom:923.333333pt;}
.y6d{bottom:924.133333pt;}
.yf3{bottom:936.133333pt;}
.y129{bottom:939.333333pt;}
.y3d{bottom:940.133333pt;}
.y6c{bottom:943.333333pt;}
.yf2{bottom:952.133333pt;}
.y128{bottom:955.333333pt;}
.y3c{bottom:959.333333pt;}
.y6b{bottom:962.533333pt;}
.yf1{bottom:968.133333pt;}
.y127{bottom:971.333333pt;}
.y3b{bottom:978.853333pt;}
.y6a{bottom:981.733333pt;}
.yf0{bottom:984.133333pt;}
.y126{bottom:987.333333pt;}
.y3a{bottom:999.653333pt;}
.y69{bottom:1000.933333pt;}
.y6{bottom:1003.333333pt;}
.y3{bottom:1020.160000pt;}
.y2{bottom:1039.360000pt;}
.y1{bottom:1060.960000pt;}
.he{height:20.000000pt;}
.hf{height:20.032000pt;}
.hc{height:20.960000pt;}
.h12{height:24.160000pt;}
.h13{height:25.440000pt;}
.h10{height:31.680000pt;}
.hd{height:42.240000pt;}
.h5{height:44.886400pt;}
.ha{height:45.895680pt;}
.hb{height:45.948800pt;}
.h11{height:50.880000pt;}
.h4{height:54.080000pt;}
.h3{height:55.296000pt;}
.h2{height:55.360000pt;}
.h7{height:59.788800pt;}
.h8{height:137.626667pt;}
.h6{height:162.080000pt;}
.h9{height:568.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:56.352000pt;}
.wf{width:63.360000pt;}
.w10{width:63.392000pt;}
.w8{width:63.712000pt;}
.w6{width:64.000000pt;}
.w7{width:64.032000pt;}
.wc{width:65.920000pt;}
.we{width:66.560000pt;}
.w19{width:71.072000pt;}
.w1b{width:79.712000pt;}
.w1c{width:79.840000pt;}
.w1d{width:79.872000pt;}
.w12{width:80.352000pt;}
.w13{width:80.480000pt;}
.w14{width:80.512000pt;}
.w18{width:83.200000pt;}
.w1a{width:84.000000pt;}
.w9{width:122.912000pt;}
.wb{width:127.392000pt;}
.wa{width:130.560000pt;}
.w15{width:154.906667pt;}
.w17{width:160.186667pt;}
.w16{width:164.346667pt;}
.w3{width:179.746667pt;}
.w5{width:256.066667pt;}
.w11{width:321.986667pt;}
.w4{width:472.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:4.832000pt;}
.x4{left:7.200000pt;}
.x1{left:75.519988pt;}
.x16{left:94.431988pt;}
.xd{left:99.551988pt;}
.xc{left:122.751988pt;}
.x9{left:140.826667pt;}
.xe{left:146.746655pt;}
.x12{left:157.306667pt;}
.x2{left:169.146667pt;}
.x15{left:170.106655pt;}
.xb{left:207.386667pt;}
.x14{left:241.146667pt;}
.x3{left:255.266667pt;}
.xa{left:264.386667pt;}
.x13{left:312.866667pt;}
.x6{left:331.586667pt;}
.x7{left:395.586667pt;}
.xf{left:397.506667pt;}
.x8{left:459.613333pt;}
.x10{left:477.853333pt;}
.x11{left:558.333333pt;}
}




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