
    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_d1ae93657024c4b76fa0d1e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_db7f205bfd33a62ed70684d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_ead90cdacec80b36f2828f28.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4ab4b1517419e1c7aee0ccf7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_983714891b4cd5e775e8477b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_4ce41323ce0ce1e5e358810d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_9faaaa7f9707f922366be4db.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_33d60eb4cb8d946441127d8a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.694336;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;}
.ls17{letter-spacing:-0.936000px;}
.ls12{letter-spacing:-0.864000px;}
.ls15{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.630000px;}
.ls4{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.463800px;}
.ls3{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.207600px;}
.lsb{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.256200px;}
.ls1a{letter-spacing:0.256320px;}
.ls0{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.468000px;}
.lsc{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.864000px;}
.lsf{letter-spacing:3.024000px;}
.ls10{letter-spacing:3.744000px;}
.lse{letter-spacing:7.344000px;}
.ls13{letter-spacing:8.784000px;}
.ls8{letter-spacing:12.384000px;}
.lsd{letter-spacing:15.240000px;}
.ls14{letter-spacing:18.144000px;}
.ls16{letter-spacing:21.024000px;}
.ls6{letter-spacing:31.824000px;}
.ls5{letter-spacing:59.184000px;}
.ls19{letter-spacing:150.605760px;}
.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;}
}
.ws0{word-spacing:-23.418720px;}
.ws7{word-spacing:-20.520000px;}
.ws4{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.232000px;}
.ws2{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.872000px;}
.wsa{word-spacing:-19.800000px;}
.ws3{word-spacing:-19.584000px;}
.ws8{word-spacing:-19.152000px;}
.ws5{word-spacing:-15.226440px;}
.wsc{word-spacing:-14.970240px;}
.wsf{word-spacing:-14.762640px;}
.wse{word-spacing:-14.506440px;}
.ws11{word-spacing:-14.340240px;}
.wsd{word-spacing:-0.322440px;}
.ws10{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:0.397560px;}
._1{margin-left:-2.442960px;}
._0{margin-left:-1.179360px;}
._2{width:1.312800px;}
._3{width:2.358720px;}
._11{width:3.456960px;}
._10{width:4.464000px;}
._18{width:6.246000px;}
._f{width:7.493520px;}
._d{width:9.000000px;}
._e{width:10.295760px;}
._5{width:11.808000px;}
._4{width:13.080000px;}
._8{width:14.544000px;}
._13{width:15.607200px;}
._17{width:17.424000px;}
._16{width:18.653520px;}
._7{width:21.062400px;}
._1f{width:22.158720px;}
._1a{width:23.184000px;}
._19{width:24.492000px;}
._12{width:26.256000px;}
._1d{width:27.590400px;}
._1e{width:28.675200px;}
._24{width:29.725920px;}
._c{width:30.894720px;}
._b{width:32.160000px;}
._2a{width:33.523200px;}
._2c{width:34.801440px;}
._9{width:35.950560px;}
._a{width:37.908960px;}
._21{width:39.096000px;}
._31{width:40.104000px;}
._6{width:41.448000px;}
._2b{width:43.500000px;}
._1c{width:45.276000px;}
._1b{width:46.812000px;}
._28{width:48.384000px;}
._29{width:49.512960px;}
._23{width:52.404000px;}
._22{width:54.012000px;}
._30{width:55.296000px;}
._2f{width:56.424000px;}
._32{width:58.080960px;}
._20{width:59.268000px;}
._27{width:61.272000px;}
._25{width:62.280000px;}
._26{width:63.826560px;}
._2d{width:65.808000px;}
._2e{width:66.950400px;}
._15{width:74.400000px;}
._14{width:75.468000px;}
._33{width:107.784000px;}
._35{width:117.556680px;}
._34{width:150.217200px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:57.600000px;}
.y1b{bottom:77.796000px;}
.yf2{bottom:111.456000px;}
.y1a{bottom:112.356000px;}
.yd5{bottom:112.536000px;}
.y34{bottom:112.716000px;}
.yce{bottom:116.136000px;}
.y122{bottom:117.756000px;}
.y98{bottom:124.056000px;}
.ya4{bottom:127.656000px;}
.yb4{bottom:127.836000px;}
.yab{bottom:128.016000px;}
.y154{bottom:133.956000px;}
.y121{bottom:137.916000px;}
.y4d{bottom:139.176000px;}
.y89{bottom:142.596000px;}
.y90{bottom:142.776000px;}
.yc3{bottom:143.136000px;}
.yf1{bottom:149.616000px;}
.y63{bottom:150.330000px;}
.y19{bottom:151.230000px;}
.y9d{bottom:154.110000px;}
.y33{bottom:154.290000px;}
.ycd{bottom:157.710000px;}
.y120{bottom:158.070000px;}
.ya3{bottom:169.230000px;}
.y153{bottom:174.090000px;}
.y11f{bottom:178.230000px;}
.y97{bottom:180.390000px;}
.y4c{bottom:180.570000px;}
.y6f{bottom:183.990000px;}
.y8f{bottom:184.170000px;}
.yf0{bottom:187.770000px;}
.y18{bottom:189.930000px;}
.y152{bottom:194.250000px;}
.yc7{bottom:195.510000px;}
.y11e{bottom:198.390000px;}
.y7e{bottom:198.930000px;}
.ycc{bottom:199.110000px;}
.yc2{bottom:199.650000px;}
.y62{bottom:206.850000px;}
.y32{bottom:210.450000px;}
.ya2{bottom:210.630000px;}
.y151{bottom:214.410000px;}
.y11d{bottom:218.550000px;}
.y6e{bottom:225.570000px;}
.y8e{bottom:225.750000px;}
.yef{bottom:225.930000px;}
.y17{bottom:228.810000px;}
.y150{bottom:234.570000px;}
.y4b{bottom:236.730000px;}
.yc6{bottom:236.910000px;}
.y11c{bottom:238.710000px;}
.yb3{bottom:240.330000px;}
.y7d{bottom:240.510000px;}
.ye2{bottom:240.690000px;}
.y31{bottom:252.030000px;}
.y14f{bottom:254.730000px;}
.yc1{bottom:255.990000px;}
.y11b{bottom:258.690000px;}
.y61{bottom:263.190000px;}
.yee{bottom:264.090000px;}
.ydb{bottom:266.790000px;}
.y6d{bottom:266.970000px;}
.yc5{bottom:267.150000px;}
.y16{bottom:268.770000px;}
.y14e{bottom:274.890000px;}
.y4a{bottom:278.310000px;}
.y11a{bottom:278.850000px;}
.y8d{bottom:281.730000px;}
.y7c{bottom:281.910000px;}
.y96{bottom:293.250000px;}
.y9c{bottom:293.430000px;}
.y30{bottom:293.610000px;}
.y14d{bottom:295.050000px;}
.y119{bottom:299.010000px;}
.yed{bottom:302.250000px;}
.yaa{bottom:308.190000px;}
.y6c{bottom:308.370000px;}
.y15{bottom:311.610000px;}
.yc0{bottom:312.330000px;}
.y14c{bottom:315.210000px;}
.y118{bottom:319.170000px;}
.y60{bottom:319.530000px;}
.y49{bottom:319.710000px;}
.yd9{bottom:323.130000px;}
.y7b{bottom:323.310000px;}
.y3b{bottom:334.875000px;}
.y2f{bottom:335.055000px;}
.y14b{bottom:335.415000px;}
.ycb{bottom:338.295000px;}
.y117{bottom:339.375000px;}
.yec{bottom:340.455000px;}
.y95{bottom:349.635000px;}
.y6b{bottom:349.815000px;}
.y14{bottom:354.495000px;}
.y14a{bottom:355.575000px;}
.y116{bottom:359.535000px;}
.y48{bottom:361.155000px;}
.yde{bottom:364.575000px;}
.y7a{bottom:364.755000px;}
.ybf{bottom:368.895000px;}
.y149{bottom:375.555000px;}
.y5f{bottom:376.095000px;}
.y2e{bottom:376.275000px;}
.yeb{bottom:378.615000px;}
.y115{bottom:379.695000px;}
.yca{bottom:379.875000px;}
.ycf{bottom:391.035000px;}
.y6a{bottom:391.215000px;}
.y148{bottom:395.715000px;}
.y13{bottom:397.155000px;}
.y114{bottom:399.855000px;}
.yd4{bottom:402.555000px;}
.y94{bottom:405.975000px;}
.y79{bottom:406.155000px;}
.yb2{bottom:406.335000px;}
.y147{bottom:415.875000px;}
.yea{bottom:416.775000px;}
.y47{bottom:417.495000px;}
.y2d{bottom:417.675000px;}
.y113{bottom:420.015000px;}
.ydc{bottom:421.095000px;}
.yc9{bottom:421.275000px;}
.ybe{bottom:425.235000px;}
.y5e{bottom:432.435000px;}
.y69{bottom:432.615000px;}
.y146{bottom:436.035000px;}
.y12{bottom:439.995000px;}
.y112{bottom:440.175000px;}
.y78{bottom:447.555000px;}
.yb1{bottom:447.735000px;}
.ye9{bottom:454.935000px;}
.y145{bottom:456.195000px;}
.yd3{bottom:458.895000px;}
.y2c{bottom:459.075000px;}
.y111{bottom:460.155000px;}
.y93{bottom:462.495000px;}
.yc8{bottom:462.675000px;}
.y68{bottom:474.015000px;}
.y5d{bottom:474.195000px;}
.y144{bottom:476.355000px;}
.y110{bottom:480.315000px;}
.ybd{bottom:481.575000px;}
.y11{bottom:482.655000px;}
.ya9{bottom:488.775000px;}
.y88{bottom:488.955000px;}
.ye8{bottom:493.095000px;}
.y143{bottom:496.515000px;}
.y2b{bottom:500.475000px;}
.y77{bottom:503.895000px;}
.y92{bottom:504.075000px;}
.y9b{bottom:515.235000px;}
.y5c{bottom:515.415000px;}
.y142{bottom:516.675000px;}
.y10f{bottom:520.635000px;}
.y10{bottom:525.495000px;}
.y157{bottom:526.755000px;}
.y87{bottom:530.355000px;}
.ye7{bottom:531.255000px;}
.y141{bottom:536.835000px;}
.ybc{bottom:537.915000px;}
.y10e{bottom:540.795000px;}
.y2a{bottom:541.875000px;}
.yb0{bottom:545.295000px;}
.y76{bottom:545.475000px;}
.y46{bottom:556.635000px;}
.y67{bottom:556.815000px;}
.y140{bottom:556.995000px;}
.y10d{bottom:560.955000px;}
.y156{bottom:561.855000px;}
.yf{bottom:568.335000px;}
.y5b{bottom:571.575000px;}
.y86{bottom:571.755000px;}
.y13f{bottom:576.975000px;}
.y10c{bottom:581.115000px;}
.y29{bottom:583.095000px;}
.ye6{bottom:586.695000px;}
.y75{bottom:586.875000px;}
.ybb{bottom:594.465000px;}
.y155{bottom:596.985000px;}
.y13e{bottom:597.165000px;}
.y3a{bottom:598.065000px;}
.y45{bottom:598.245000px;}
.yc4{bottom:598.425000px;}
.y10b{bottom:601.305000px;}
.ye{bottom:611.025000px;}
.ye1{bottom:613.005000px;}
.y85{bottom:613.185000px;}
.y5a{bottom:613.365000px;}
.y13d{bottom:617.325000px;}
.y10a{bottom:621.465000px;}
.yd2{bottom:624.525000px;}
.y74{bottom:628.125000px;}
.y13c{bottom:637.485000px;}
.ydf{bottom:639.465000px;}
.y28{bottom:639.645000px;}
.y44{bottom:639.825000px;}
.y109{bottom:641.625000px;}
.yba{bottom:650.805000px;}
.yd{bottom:653.865000px;}
.ya8{bottom:654.585000px;}
.y59{bottom:654.765000px;}
.y13b{bottom:657.645000px;}
.y108{bottom:661.605000px;}
.yd1{bottom:665.925000px;}
.y84{bottom:669.345000px;}
.y73{bottom:669.525000px;}
.y13a{bottom:677.805000px;}
.y43{bottom:681.045000px;}
.y27{bottom:681.225000px;}
.y107{bottom:681.765000px;}
.yaf{bottom:684.465000px;}
.ya1{bottom:695.805000px;}
.yd8{bottom:695.985000px;}
.y58{bottom:696.165000px;}
.yc{bottom:696.705000px;}
.y139{bottom:697.965000px;}
.y106{bottom:701.925000px;}
.yb9{bottom:707.145000px;}
.yd0{bottom:707.325000px;}
.ya7{bottom:710.745000px;}
.y83{bottom:710.925000px;}
.y72{bottom:711.105000px;}
.y138{bottom:718.125000px;}
.y105{bottom:722.085000px;}
.y42{bottom:722.445000px;}
.y26{bottom:722.625000px;}
.yb{bottom:724.425000px;}
.yae{bottom:726.045000px;}
.y39{bottom:737.205000px;}
.ya0{bottom:737.385000px;}
.y137{bottom:738.285000px;}
.y104{bottom:742.245000px;}
.y57{bottom:752.145000px;}
.y82{bottom:752.325000px;}
.ya6{bottom:752.505000px;}
.y136{bottom:758.445000px;}
.y103{bottom:762.405000px;}
.yb8{bottom:763.665000px;}
.y41{bottom:763.845000px;}
.ya{bottom:767.085000px;}
.y71{bottom:767.265000px;}
.yad{bottom:767.445000px;}
.y135{bottom:778.425000px;}
.y25{bottom:778.605000px;}
.y38{bottom:778.785000px;}
.y102{bottom:782.565000px;}
.yd7{bottom:793.545000px;}
.y8c{bottom:793.725000px;}
.y81{bottom:793.905000px;}
.y9{bottom:794.985000px;}
.y134{bottom:798.585000px;}
.y101{bottom:802.725000px;}
.y40{bottom:805.245000px;}
.y56{bottom:808.665000px;}
.y70{bottom:808.845000px;}
.y133{bottom:818.745000px;}
.yb7{bottom:820.005000px;}
.y37{bottom:820.185000px;}
.y24{bottom:820.365000px;}
.y100{bottom:822.885000px;}
.y80{bottom:835.125000px;}
.y8{bottom:837.645000px;}
.y132{bottom:838.905000px;}
.yff{bottom:842.865000px;}
.y3f{bottom:846.645000px;}
.y9e{bottom:850.065000px;}
.y55{bottom:850.245000px;}
.y131{bottom:859.065000px;}
.y23{bottom:861.585000px;}
.yfe{bottom:863.070000px;}
.yb6{bottom:876.390000px;}
.y8b{bottom:876.570000px;}
.y130{bottom:879.270000px;}
.y7{bottom:880.530000px;}
.yfd{bottom:883.230000px;}
.y9a{bottom:888.090000px;}
.y7f{bottom:891.510000px;}
.y54{bottom:891.690000px;}
.y12f{bottom:899.430000px;}
.y3e{bottom:902.850000px;}
.y22{bottom:903.030000px;}
.y9f{bottom:903.210000px;}
.yfc{bottom:903.390000px;}
.y36{bottom:917.790000px;}
.y8a{bottom:917.970000px;}
.y12e{bottom:919.590000px;}
.y6{bottom:923.370000px;}
.yfb{bottom:923.550000px;}
.ye0{bottom:932.910000px;}
.y53{bottom:933.090000px;}
.ye5{bottom:933.270000px;}
.y12d{bottom:939.750000px;}
.yfa{bottom:943.710000px;}
.y99{bottom:944.250000px;}
.y3d{bottom:944.430000px;}
.ydd{bottom:944.610000px;}
.y21{bottom:959.190000px;}
.y35{bottom:959.370000px;}
.y12c{bottom:959.910000px;}
.yf9{bottom:963.870000px;}
.y5{bottom:966.030000px;}
.yac{bottom:974.310000px;}
.y52{bottom:974.490000px;}
.y12b{bottom:979.890000px;}
.yf8{bottom:984.030000px;}
.y66{bottom:985.830000px;}
.y12a{bottom:1000.050000px;}
.y3c{bottom:1000.590000px;}
.y20{bottom:1000.770000px;}
.yf7{bottom:1004.190000px;}
.y4{bottom:1008.870000px;}
.yd6{bottom:1015.710000px;}
.y51{bottom:1015.890000px;}
.y91{bottom:1016.070000px;}
.y129{bottom:1020.210000px;}
.yf6{bottom:1024.350000px;}
.y65{bottom:1027.230000px;}
.y128{bottom:1040.370000px;}
.y1f{bottom:1042.170000px;}
.yf5{bottom:1044.330000px;}
.y3{bottom:1051.530000px;}
.yb5{bottom:1057.110000px;}
.y50{bottom:1057.290000px;}
.ye4{bottom:1057.470000px;}
.y127{bottom:1060.530000px;}
.yf4{bottom:1064.490000px;}
.y126{bottom:1080.690000px;}
.y64{bottom:1083.390000px;}
.y1e{bottom:1083.570000px;}
.yf3{bottom:1084.650000px;}
.y2{bottom:1094.370000px;}
.yda{bottom:1098.510000px;}
.y4f{bottom:1098.690000px;}
.ye3{bottom:1098.870000px;}
.y125{bottom:1100.850000px;}
.y124{bottom:1121.010000px;}
.y1{bottom:1137.240000px;}
.y1d{bottom:1139.940000px;}
.y4e{bottom:1140.120000px;}
.ya5{bottom:1140.300000px;}
.y123{bottom:1141.200000px;}
.h4{height:45.895781px;}
.h6{height:47.545312px;}
.h5{height:64.546875px;}
.h3{height:75.093750px;}
.h2{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:127.656000px;}
.x3{left:143.856000px;}
.x5{left:166.530000px;}
.x10{left:181.650000px;}
.x9{left:200.190000px;}
.x8{left:313.995000px;}
.x7{left:330.915000px;}
.x6{left:363.675000px;}
.x4{left:368.355000px;}
.x2{left:446.505000px;}
.xa{left:502.125000px;}
.x1{left:604.050000px;}
.xb{left:680.370000px;}
.xf{left:748.800000px;}
.xd{left:757.260000px;}
.xc{left:765.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls12{letter-spacing:-0.768000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.560000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.412267pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.184533pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.227733pt;}
.ls1a{letter-spacing:0.227840pt;}
.ls0{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.416000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.768000pt;}
.lsf{letter-spacing:2.688000pt;}
.ls10{letter-spacing:3.328000pt;}
.lse{letter-spacing:6.528000pt;}
.ls13{letter-spacing:7.808000pt;}
.ls8{letter-spacing:11.008000pt;}
.lsd{letter-spacing:13.546667pt;}
.ls14{letter-spacing:16.128000pt;}
.ls16{letter-spacing:18.688000pt;}
.ls6{letter-spacing:28.288000pt;}
.ls5{letter-spacing:52.608000pt;}
.ls19{letter-spacing:133.871787pt;}
.ws0{word-spacing:-20.816640pt;}
.ws7{word-spacing:-18.240000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.984000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.664000pt;}
.wsa{word-spacing:-17.600000pt;}
.ws3{word-spacing:-17.408000pt;}
.ws8{word-spacing:-17.024000pt;}
.ws5{word-spacing:-13.534613pt;}
.wsc{word-spacing:-13.306880pt;}
.wsf{word-spacing:-13.122347pt;}
.wse{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.746880pt;}
.wsd{word-spacing:-0.286613pt;}
.ws10{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:0.353387pt;}
._1{margin-left:-2.171520pt;}
._0{margin-left:-1.048320pt;}
._2{width:1.166933pt;}
._3{width:2.096640pt;}
._11{width:3.072853pt;}
._10{width:3.968000pt;}
._18{width:5.552000pt;}
._f{width:6.660907pt;}
._d{width:8.000000pt;}
._e{width:9.151787pt;}
._5{width:10.496000pt;}
._4{width:11.626667pt;}
._8{width:12.928000pt;}
._13{width:13.873067pt;}
._17{width:15.488000pt;}
._16{width:16.580907pt;}
._7{width:18.722133pt;}
._1f{width:19.696640pt;}
._1a{width:20.608000pt;}
._19{width:21.770667pt;}
._12{width:23.338667pt;}
._1d{width:24.524800pt;}
._1e{width:25.489067pt;}
._24{width:26.423040pt;}
._c{width:27.461973pt;}
._b{width:28.586667pt;}
._2a{width:29.798400pt;}
._2c{width:30.934613pt;}
._9{width:31.956053pt;}
._a{width:33.696853pt;}
._21{width:34.752000pt;}
._31{width:35.648000pt;}
._6{width:36.842667pt;}
._2b{width:38.666667pt;}
._1c{width:40.245333pt;}
._1b{width:41.610667pt;}
._28{width:43.008000pt;}
._29{width:44.011520pt;}
._23{width:46.581333pt;}
._22{width:48.010667pt;}
._30{width:49.152000pt;}
._2f{width:50.154667pt;}
._32{width:51.627520pt;}
._20{width:52.682667pt;}
._27{width:54.464000pt;}
._25{width:55.360000pt;}
._26{width:56.734720pt;}
._2d{width:58.496000pt;}
._2e{width:59.511467pt;}
._15{width:66.133333pt;}
._14{width:67.082667pt;}
._33{width:95.808000pt;}
._35{width:104.494827pt;}
._34{width:133.526400pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:51.200000pt;}
.y1b{bottom:69.152000pt;}
.yf2{bottom:99.072000pt;}
.y1a{bottom:99.872000pt;}
.yd5{bottom:100.032000pt;}
.y34{bottom:100.192000pt;}
.yce{bottom:103.232000pt;}
.y122{bottom:104.672000pt;}
.y98{bottom:110.272000pt;}
.ya4{bottom:113.472000pt;}
.yb4{bottom:113.632000pt;}
.yab{bottom:113.792000pt;}
.y154{bottom:119.072000pt;}
.y121{bottom:122.592000pt;}
.y4d{bottom:123.712000pt;}
.y89{bottom:126.752000pt;}
.y90{bottom:126.912000pt;}
.yc3{bottom:127.232000pt;}
.yf1{bottom:132.992000pt;}
.y63{bottom:133.626667pt;}
.y19{bottom:134.426667pt;}
.y9d{bottom:136.986667pt;}
.y33{bottom:137.146667pt;}
.ycd{bottom:140.186667pt;}
.y120{bottom:140.506667pt;}
.ya3{bottom:150.426667pt;}
.y153{bottom:154.746667pt;}
.y11f{bottom:158.426667pt;}
.y97{bottom:160.346667pt;}
.y4c{bottom:160.506667pt;}
.y6f{bottom:163.546667pt;}
.y8f{bottom:163.706667pt;}
.yf0{bottom:166.906667pt;}
.y18{bottom:168.826667pt;}
.y152{bottom:172.666667pt;}
.yc7{bottom:173.786667pt;}
.y11e{bottom:176.346667pt;}
.y7e{bottom:176.826667pt;}
.ycc{bottom:176.986667pt;}
.yc2{bottom:177.466667pt;}
.y62{bottom:183.866667pt;}
.y32{bottom:187.066667pt;}
.ya2{bottom:187.226667pt;}
.y151{bottom:190.586667pt;}
.y11d{bottom:194.266667pt;}
.y6e{bottom:200.506667pt;}
.y8e{bottom:200.666667pt;}
.yef{bottom:200.826667pt;}
.y17{bottom:203.386667pt;}
.y150{bottom:208.506667pt;}
.y4b{bottom:210.426667pt;}
.yc6{bottom:210.586667pt;}
.y11c{bottom:212.186667pt;}
.yb3{bottom:213.626667pt;}
.y7d{bottom:213.786667pt;}
.ye2{bottom:213.946667pt;}
.y31{bottom:224.026667pt;}
.y14f{bottom:226.426667pt;}
.yc1{bottom:227.546667pt;}
.y11b{bottom:229.946667pt;}
.y61{bottom:233.946667pt;}
.yee{bottom:234.746667pt;}
.ydb{bottom:237.146667pt;}
.y6d{bottom:237.306667pt;}
.yc5{bottom:237.466667pt;}
.y16{bottom:238.906667pt;}
.y14e{bottom:244.346667pt;}
.y4a{bottom:247.386667pt;}
.y11a{bottom:247.866667pt;}
.y8d{bottom:250.426667pt;}
.y7c{bottom:250.586667pt;}
.y96{bottom:260.666667pt;}
.y9c{bottom:260.826667pt;}
.y30{bottom:260.986667pt;}
.y14d{bottom:262.266667pt;}
.y119{bottom:265.786667pt;}
.yed{bottom:268.666667pt;}
.yaa{bottom:273.946667pt;}
.y6c{bottom:274.106667pt;}
.y15{bottom:276.986667pt;}
.yc0{bottom:277.626667pt;}
.y14c{bottom:280.186667pt;}
.y118{bottom:283.706667pt;}
.y60{bottom:284.026667pt;}
.y49{bottom:284.186667pt;}
.yd9{bottom:287.226667pt;}
.y7b{bottom:287.386667pt;}
.y3b{bottom:297.666667pt;}
.y2f{bottom:297.826667pt;}
.y14b{bottom:298.146667pt;}
.ycb{bottom:300.706667pt;}
.y117{bottom:301.666667pt;}
.yec{bottom:302.626667pt;}
.y95{bottom:310.786667pt;}
.y6b{bottom:310.946667pt;}
.y14{bottom:315.106667pt;}
.y14a{bottom:316.066667pt;}
.y116{bottom:319.586667pt;}
.y48{bottom:321.026667pt;}
.yde{bottom:324.066667pt;}
.y7a{bottom:324.226667pt;}
.ybf{bottom:327.906667pt;}
.y149{bottom:333.826667pt;}
.y5f{bottom:334.306667pt;}
.y2e{bottom:334.466667pt;}
.yeb{bottom:336.546667pt;}
.y115{bottom:337.506667pt;}
.yca{bottom:337.666667pt;}
.ycf{bottom:347.586667pt;}
.y6a{bottom:347.746667pt;}
.y148{bottom:351.746667pt;}
.y13{bottom:353.026667pt;}
.y114{bottom:355.426667pt;}
.yd4{bottom:357.826667pt;}
.y94{bottom:360.866667pt;}
.y79{bottom:361.026667pt;}
.yb2{bottom:361.186667pt;}
.y147{bottom:369.666667pt;}
.yea{bottom:370.466667pt;}
.y47{bottom:371.106667pt;}
.y2d{bottom:371.266667pt;}
.y113{bottom:373.346667pt;}
.ydc{bottom:374.306667pt;}
.yc9{bottom:374.466667pt;}
.ybe{bottom:377.986667pt;}
.y5e{bottom:384.386667pt;}
.y69{bottom:384.546667pt;}
.y146{bottom:387.586667pt;}
.y12{bottom:391.106667pt;}
.y112{bottom:391.266667pt;}
.y78{bottom:397.826667pt;}
.yb1{bottom:397.986667pt;}
.ye9{bottom:404.386667pt;}
.y145{bottom:405.506667pt;}
.yd3{bottom:407.906667pt;}
.y2c{bottom:408.066667pt;}
.y111{bottom:409.026667pt;}
.y93{bottom:411.106667pt;}
.yc8{bottom:411.266667pt;}
.y68{bottom:421.346667pt;}
.y5d{bottom:421.506667pt;}
.y144{bottom:423.426667pt;}
.y110{bottom:426.946667pt;}
.ybd{bottom:428.066667pt;}
.y11{bottom:429.026667pt;}
.ya9{bottom:434.466667pt;}
.y88{bottom:434.626667pt;}
.ye8{bottom:438.306667pt;}
.y143{bottom:441.346667pt;}
.y2b{bottom:444.866667pt;}
.y77{bottom:447.906667pt;}
.y92{bottom:448.066667pt;}
.y9b{bottom:457.986667pt;}
.y5c{bottom:458.146667pt;}
.y142{bottom:459.266667pt;}
.y10f{bottom:462.786667pt;}
.y10{bottom:467.106667pt;}
.y157{bottom:468.226667pt;}
.y87{bottom:471.426667pt;}
.ye7{bottom:472.226667pt;}
.y141{bottom:477.186667pt;}
.ybc{bottom:478.146667pt;}
.y10e{bottom:480.706667pt;}
.y2a{bottom:481.666667pt;}
.yb0{bottom:484.706667pt;}
.y76{bottom:484.866667pt;}
.y46{bottom:494.786667pt;}
.y67{bottom:494.946667pt;}
.y140{bottom:495.106667pt;}
.y10d{bottom:498.626667pt;}
.y156{bottom:499.426667pt;}
.yf{bottom:505.186667pt;}
.y5b{bottom:508.066667pt;}
.y86{bottom:508.226667pt;}
.y13f{bottom:512.866667pt;}
.y10c{bottom:516.546667pt;}
.y29{bottom:518.306667pt;}
.ye6{bottom:521.506667pt;}
.y75{bottom:521.666667pt;}
.ybb{bottom:528.413333pt;}
.y155{bottom:530.653333pt;}
.y13e{bottom:530.813333pt;}
.y3a{bottom:531.613333pt;}
.y45{bottom:531.773333pt;}
.yc4{bottom:531.933333pt;}
.y10b{bottom:534.493333pt;}
.ye{bottom:543.133333pt;}
.ye1{bottom:544.893333pt;}
.y85{bottom:545.053333pt;}
.y5a{bottom:545.213333pt;}
.y13d{bottom:548.733333pt;}
.y10a{bottom:552.413333pt;}
.yd2{bottom:555.133333pt;}
.y74{bottom:558.333333pt;}
.y13c{bottom:566.653333pt;}
.ydf{bottom:568.413333pt;}
.y28{bottom:568.573333pt;}
.y44{bottom:568.733333pt;}
.y109{bottom:570.333333pt;}
.yba{bottom:578.493333pt;}
.yd{bottom:581.213333pt;}
.ya8{bottom:581.853333pt;}
.y59{bottom:582.013333pt;}
.y13b{bottom:584.573333pt;}
.y108{bottom:588.093333pt;}
.yd1{bottom:591.933333pt;}
.y84{bottom:594.973333pt;}
.y73{bottom:595.133333pt;}
.y13a{bottom:602.493333pt;}
.y43{bottom:605.373333pt;}
.y27{bottom:605.533333pt;}
.y107{bottom:606.013333pt;}
.yaf{bottom:608.413333pt;}
.ya1{bottom:618.493333pt;}
.yd8{bottom:618.653333pt;}
.y58{bottom:618.813333pt;}
.yc{bottom:619.293333pt;}
.y139{bottom:620.413333pt;}
.y106{bottom:623.933333pt;}
.yb9{bottom:628.573333pt;}
.yd0{bottom:628.733333pt;}
.ya7{bottom:631.773333pt;}
.y83{bottom:631.933333pt;}
.y72{bottom:632.093333pt;}
.y138{bottom:638.333333pt;}
.y105{bottom:641.853333pt;}
.y42{bottom:642.173333pt;}
.y26{bottom:642.333333pt;}
.yb{bottom:643.933333pt;}
.yae{bottom:645.373333pt;}
.y39{bottom:655.293333pt;}
.ya0{bottom:655.453333pt;}
.y137{bottom:656.253333pt;}
.y104{bottom:659.773333pt;}
.y57{bottom:668.573333pt;}
.y82{bottom:668.733333pt;}
.ya6{bottom:668.893333pt;}
.y136{bottom:674.173333pt;}
.y103{bottom:677.693333pt;}
.yb8{bottom:678.813333pt;}
.y41{bottom:678.973333pt;}
.ya{bottom:681.853333pt;}
.y71{bottom:682.013333pt;}
.yad{bottom:682.173333pt;}
.y135{bottom:691.933333pt;}
.y25{bottom:692.093333pt;}
.y38{bottom:692.253333pt;}
.y102{bottom:695.613333pt;}
.yd7{bottom:705.373333pt;}
.y8c{bottom:705.533333pt;}
.y81{bottom:705.693333pt;}
.y9{bottom:706.653333pt;}
.y134{bottom:709.853333pt;}
.y101{bottom:713.533333pt;}
.y40{bottom:715.773333pt;}
.y56{bottom:718.813333pt;}
.y70{bottom:718.973333pt;}
.y133{bottom:727.773333pt;}
.yb7{bottom:728.893333pt;}
.y37{bottom:729.053333pt;}
.y24{bottom:729.213333pt;}
.y100{bottom:731.453333pt;}
.y80{bottom:742.333333pt;}
.y8{bottom:744.573333pt;}
.y132{bottom:745.693333pt;}
.yff{bottom:749.213333pt;}
.y3f{bottom:752.573333pt;}
.y9e{bottom:755.613333pt;}
.y55{bottom:755.773333pt;}
.y131{bottom:763.613333pt;}
.y23{bottom:765.853333pt;}
.yfe{bottom:767.173333pt;}
.yb6{bottom:779.013333pt;}
.y8b{bottom:779.173333pt;}
.y130{bottom:781.573333pt;}
.y7{bottom:782.693333pt;}
.yfd{bottom:785.093333pt;}
.y9a{bottom:789.413333pt;}
.y7f{bottom:792.453333pt;}
.y54{bottom:792.613333pt;}
.y12f{bottom:799.493333pt;}
.y3e{bottom:802.533333pt;}
.y22{bottom:802.693333pt;}
.y9f{bottom:802.853333pt;}
.yfc{bottom:803.013333pt;}
.y36{bottom:815.813333pt;}
.y8a{bottom:815.973333pt;}
.y12e{bottom:817.413333pt;}
.y6{bottom:820.773333pt;}
.yfb{bottom:820.933333pt;}
.ye0{bottom:829.253333pt;}
.y53{bottom:829.413333pt;}
.ye5{bottom:829.573333pt;}
.y12d{bottom:835.333333pt;}
.yfa{bottom:838.853333pt;}
.y99{bottom:839.333333pt;}
.y3d{bottom:839.493333pt;}
.ydd{bottom:839.653333pt;}
.y21{bottom:852.613333pt;}
.y35{bottom:852.773333pt;}
.y12c{bottom:853.253333pt;}
.yf9{bottom:856.773333pt;}
.y5{bottom:858.693333pt;}
.yac{bottom:866.053333pt;}
.y52{bottom:866.213333pt;}
.y12b{bottom:871.013333pt;}
.yf8{bottom:874.693333pt;}
.y66{bottom:876.293333pt;}
.y12a{bottom:888.933333pt;}
.y3c{bottom:889.413333pt;}
.y20{bottom:889.573333pt;}
.yf7{bottom:892.613333pt;}
.y4{bottom:896.773333pt;}
.yd6{bottom:902.853333pt;}
.y51{bottom:903.013333pt;}
.y91{bottom:903.173333pt;}
.y129{bottom:906.853333pt;}
.yf6{bottom:910.533333pt;}
.y65{bottom:913.093333pt;}
.y128{bottom:924.773333pt;}
.y1f{bottom:926.373333pt;}
.yf5{bottom:928.293333pt;}
.y3{bottom:934.693333pt;}
.yb5{bottom:939.653333pt;}
.y50{bottom:939.813333pt;}
.ye4{bottom:939.973333pt;}
.y127{bottom:942.693333pt;}
.yf4{bottom:946.213333pt;}
.y126{bottom:960.613333pt;}
.y64{bottom:963.013333pt;}
.y1e{bottom:963.173333pt;}
.yf3{bottom:964.133333pt;}
.y2{bottom:972.773333pt;}
.yda{bottom:976.453333pt;}
.y4f{bottom:976.613333pt;}
.ye3{bottom:976.773333pt;}
.y125{bottom:978.533333pt;}
.y124{bottom:996.453333pt;}
.y1{bottom:1010.880000pt;}
.y1d{bottom:1013.280000pt;}
.y4e{bottom:1013.440000pt;}
.ya5{bottom:1013.600000pt;}
.y123{bottom:1014.400000pt;}
.h4{height:40.796250pt;}
.h6{height:42.262500pt;}
.h5{height:57.375000pt;}
.h3{height:66.750000pt;}
.h2{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:113.472000pt;}
.x3{left:127.872000pt;}
.x5{left:148.026667pt;}
.x10{left:161.466667pt;}
.x9{left:177.946667pt;}
.x8{left:279.106667pt;}
.x7{left:294.146667pt;}
.x6{left:323.266667pt;}
.x4{left:327.426667pt;}
.x2{left:396.893333pt;}
.xa{left:446.333333pt;}
.x1{left:536.933333pt;}
.xb{left:604.773333pt;}
.xf{left:665.600000pt;}
.xd{left:673.120000pt;}
.xc{left:680.480000pt;}
}




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