
    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_23ad47b0d4c1f9e88b4f4955.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.135000;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_bc92af38e78ea573c5b68417.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.135000;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_8e13610db8e694d1165989e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.101000;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_cef2bb34a82d4926a167f435.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.101000;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_37b21245a7d86a92c382a9fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100000;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_7fb463f8aa13e012e5c7079d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')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_112cd12d449d31d8f63e2c02.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_18a499bd81b0dff55e6f136f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.962402;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;}
.ls12{letter-spacing:-1.224000px;}
.ls5{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.342600px;}
.ls2{letter-spacing:-0.279600px;}
.ls3{letter-spacing:-0.256200px;}
.ls11{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.190200px;}
.ls16{letter-spacing:-0.189600px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.037440px;}
.ls8{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.303600px;}
.ls7{letter-spacing:0.360000px;}
.ls15{letter-spacing:54.144000px;}
.lsd{letter-spacing:54.864000px;}
.ls6{letter-spacing:70.128000px;}
.ls17{letter-spacing:75.024000px;}
.lsc{letter-spacing:99.029280px;}
.ls13{letter-spacing:846.156000px;}
.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;}
.wsb{word-spacing:-27.174240px;}
.wsa{word-spacing:-26.831640px;}
.ws11{word-spacing:-26.621280px;}
.ws12{word-spacing:-26.431680px;}
.ws4{word-spacing:-20.340000px;}
.ws8{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.568000px;}
.ws6{word-spacing:-17.496000px;}
.wsf{word-spacing:-17.280000px;}
.ws9{word-spacing:-16.992000px;}
.wse{word-spacing:-16.848000px;}
.ws10{word-spacing:-16.272000px;}
.ws5{word-spacing:-16.096320px;}
.ws0{word-spacing:-15.816720px;}
.ws1{word-spacing:-14.825280px;}
.ws2{word-spacing:-14.521680px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-17.300640px;}
._e{margin-left:-15.931200px;}
._11{margin-left:-14.645640px;}
._f{margin-left:-13.054560px;}
._b{margin-left:-11.307000px;}
._c{margin-left:-9.442080px;}
._10{margin-left:-8.160000px;}
._a{margin-left:-6.208320px;}
._4{margin-left:-4.510800px;}
._2{margin-left:-3.113280px;}
._1{margin-left:-1.391040px;}
._0{width:1.109280px;}
._9{width:2.608920px;}
._3{width:3.783720px;}
._17{width:4.824120px;}
._16{width:6.264000px;}
._20{width:7.583040px;}
._1e{width:8.755440px;}
._25{width:9.844320px;}
._1d{width:10.908960px;}
._18{width:12.260160px;}
._15{width:13.382400px;}
._12{width:14.544000px;}
._22{width:16.399200px;}
._1f{width:18.507360px;}
._14{width:20.304000px;}
._13{width:21.905280px;}
._21{width:22.962240px;}
._1a{width:24.477120px;}
._19{width:25.646400px;}
._23{width:27.288000px;}
._24{width:28.296000px;}
._1c{width:29.592480px;}
._1b{width:31.487040px;}
._30{width:32.495040px;}
._2b{width:33.996000px;}
._26{width:36.144000px;}
._5{width:38.039040px;}
._6{width:39.987360px;}
._29{width:41.296320px;}
._27{width:42.863040px;}
._2a{width:43.992000px;}
._28{width:45.282240px;}
._7{width:46.342080px;}
._8{width:47.868480px;}
._2e{width:60.528000px;}
._2f{width:61.766880px;}
._2d{width:90.258240px;}
._2c{width:92.003040px;}
.fc5{color:rgb(149,79,114);}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.fs6{font-size:120.240000px;}
.fs3{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:6.660000px;}
.y1f{bottom:12.420000px;}
.y33{bottom:23.760000px;}
.yc{bottom:26.850000px;}
.yb{bottom:47.190000px;}
.y8{bottom:52.920000px;}
.y32{bottom:55.440000px;}
.y20{bottom:56.880000px;}
.ya{bottom:67.530000px;}
.y31{bottom:87.120000px;}
.y1e{bottom:91.650000px;}
.y2{bottom:98.310000px;}
.y7{bottom:117.396000px;}
.y30{bottom:118.800000px;}
.y75{bottom:119.556000px;}
.ybc{bottom:129.096000px;}
.y5e{bottom:129.276000px;}
.y34{bottom:131.076000px;}
.y6{bottom:136.836000px;}
.y131{bottom:145.296000px;}
.y49{bottom:149.976000px;}
.y74{bottom:151.230000px;}
.y5{bottom:156.270000px;}
.y2f{bottom:162.210000px;}
.yc8{bottom:165.990000px;}
.y1d{bottom:171.030000px;}
.ybb{bottom:171.390000px;}
.y5d{bottom:171.570000px;}
.y4{bottom:175.710000px;}
.ye4{bottom:176.790000px;}
.y130{bottom:177.150000px;}
.y73{bottom:182.910000px;}
.y103{bottom:183.810000px;}
.y48{bottom:190.470000px;}
.ya9{bottom:190.650000px;}
.y112{bottom:192.810000px;}
.y11f{bottom:195.510000px;}
.yf1{bottom:197.310000px;}
.yc7{bottom:197.670000px;}
.yd8{bottom:204.870000px;}
.y12f{bottom:208.830000px;}
.yba{bottom:213.690000px;}
.y5c{bottom:213.870000px;}
.y72{bottom:214.590000px;}
.ye3{bottom:219.090000px;}
.y96{bottom:219.810000px;}
.y102{bottom:227.010000px;}
.yf0{bottom:228.990000px;}
.y47{bottom:231.330000px;}
.y8d{bottom:233.490000px;}
.ya8{bottom:234.030000px;}
.y111{bottom:234.930000px;}
.y11e{bottom:237.810000px;}
.yc6{bottom:238.350000px;}
.y12e{bottom:240.510000px;}
.y71{bottom:246.450000px;}
.yd7{bottom:247.170000px;}
.y1c{bottom:250.230000px;}
.y95{bottom:251.490000px;}
.yb9{bottom:255.810000px;}
.y5b{bottom:256.170000px;}
.ye2{bottom:261.390000px;}
.yc5{bottom:270.030000px;}
.y101{bottom:270.390000px;}
.y46{bottom:272.010000px;}
.y12d{bottom:272.190000px;}
.y8c{bottom:275.790000px;}
.ya7{bottom:276.330000px;}
.y70{bottom:278.130000px;}
.y11d{bottom:279.930000px;}
.y110{bottom:286.050000px;}
.yef{bottom:289.110000px;}
.yd6{bottom:289.470000px;}
.y94{bottom:296.490000px;}
.yb8{bottom:299.190000px;}
.y5a{bottom:299.550000px;}
.yc4{bottom:301.710000px;}
.y12c{bottom:304.050000px;}
.y100{bottom:310.710000px;}
.y45{bottom:312.690000px;}
.ye1{bottom:316.470000px;}
.y10f{bottom:317.775000px;}
.y8b{bottom:318.135000px;}
.ya6{bottom:319.755000px;}
.y11c{bottom:323.355000px;}
.yee{bottom:331.455000px;}
.y2e{bottom:335.235000px;}
.y6f{bottom:338.295000px;}
.yb7{bottom:341.535000px;}
.y59{bottom:341.895000px;}
.yd5{bottom:344.595000px;}
.y12b{bottom:344.775000px;}
.y93{bottom:345.675000px;}
.yc3{bottom:352.335000px;}
.y44{bottom:353.415000px;}
.yff{bottom:355.755000px;}
.y8a{bottom:360.435000px;}
.ya5{bottom:361.875000px;}
.y11b{bottom:365.655000px;}
.yed{bottom:374.655000px;}
.y92{bottom:377.355000px;}
.y10e{bottom:377.895000px;}
.y2d{bottom:378.795000px;}
.y6e{bottom:380.595000px;}
.ye0{bottom:382.035000px;}
.yb6{bottom:383.835000px;}
.y58{bottom:384.195000px;}
.y12a{bottom:385.455000px;}
.y43{bottom:394.275000px;}
.y1a{bottom:398.775000px;}
.y89{bottom:402.555000px;}
.yfe{bottom:404.895000px;}
.y11a{bottom:409.035000px;}
.yd4{bottom:410.115000px;}
.ya4{bottom:412.995000px;}
.y129{bottom:417.135000px;}
.yec{bottom:418.035000px;}
.y10d{bottom:420.015000px;}
.yc2{bottom:422.535000px;}
.y6d{bottom:422.715000px;}
.ydf{bottom:424.335000px;}
.yb5{bottom:426.135000px;}
.y57{bottom:426.315000px;}
.y91{bottom:427.935000px;}
.y42{bottom:434.955000px;}
.yfd{bottom:436.755000px;}
.ya3{bottom:444.675000px;}
.y88{bottom:445.935000px;}
.y19{bottom:447.375000px;}
.y128{bottom:448.995000px;}
.y119{bottom:451.335000px;}
.yd3{bottom:452.415000px;}
.yc1{bottom:454.215000px;}
.yeb{bottom:461.415000px;}
.y10c{bottom:463.395000px;}
.y6c{bottom:466.095000px;}
.yb4{bottom:466.455000px;}
.yde{bottom:467.715000px;}
.y56{bottom:469.695000px;}
.y41{bottom:475.635000px;}
.y127{bottom:480.675000px;}
.yc0{bottom:485.895000px;}
.y1b{bottom:488.055000px;}
.y87{bottom:488.235000px;}
.ya2{bottom:489.675000px;}
.y118{bottom:493.455000px;}
.yd2{bottom:494.715000px;}
.y18{bottom:496.155000px;}
.yfc{bottom:496.875000px;}
.y2c{bottom:500.295000px;}
.yea{bottom:503.535000px;}
.y10b{bottom:505.695000px;}
.yb3{bottom:507.315000px;}
.y6b{bottom:508.395000px;}
.y7e{bottom:510.015000px;}
.y55{bottom:511.995000px;}
.y126{bottom:512.355000px;}
.y40{bottom:516.315000px;}
.y86{bottom:530.535000px;}
.y117{bottom:533.955000px;}
.yd1{bottom:538.095000px;}
.y2b{bottom:538.455000px;}
.ya1{bottom:538.815000px;}
.yb2{bottom:538.995000px;}
.ye9{bottom:543.855000px;}
.y17{bottom:544.755000px;}
.ybf{bottom:546.015000px;}
.y10a{bottom:547.995000px;}
.y6a{bottom:550.695000px;}
.ydd{bottom:552.135000px;}
.y54{bottom:554.295000px;}
.y3f{bottom:557.175000px;}
.ya0{bottom:570.525000px;}
.yb1{bottom:570.705000px;}
.y125{bottom:572.505000px;}
.y85{bottom:572.865000px;}
.y116{bottom:574.665000px;}
.y2a{bottom:576.465000px;}
.yd0{bottom:580.245000px;}
.yfb{bottom:582.405000px;}
.y7d{bottom:582.585000px;}
.ybe{bottom:588.345000px;}
.ye8{bottom:588.885000px;}
.y109{bottom:591.405000px;}
.y69{bottom:594.105000px;}
.ydc{bottom:595.545000px;}
.y53{bottom:596.625000px;}
.y3e{bottom:597.885000px;}
.y115{bottom:606.345000px;}
.y16{bottom:611.745000px;}
.y7c{bottom:614.265000px;}
.y29{bottom:614.625000px;}
.y124{bottom:614.805000px;}
.y84{bottom:615.165000px;}
.yb0{bottom:621.285000px;}
.ycf{bottom:623.625000px;}
.yfa{bottom:624.705000px;}
.y9f{bottom:630.645000px;}
.y108{bottom:633.705000px;}
.y68{bottom:636.225000px;}
.ydb{bottom:637.845000px;}
.ye7{bottom:638.205000px;}
.y3d{bottom:638.565000px;}
.y7b{bottom:645.945000px;}
.y52{bottom:647.565000px;}
.y28{bottom:652.605000px;}
.y83{bottom:657.465000px;}
.y123{bottom:658.185000px;}
.yce{bottom:665.925000px;}
.yf9{bottom:668.085000px;}
.ye6{bottom:669.885000px;}
.y9e{bottom:672.945000px;}
.y107{bottom:675.825000px;}
.y7a{bottom:677.625000px;}
.y15{bottom:678.165000px;}
.y3c{bottom:679.245000px;}
.y67{bottom:679.605000px;}
.yda{bottom:680.145000px;}
.y27{bottom:690.765000px;}
.yaf{bottom:691.305000px;}
.y122{bottom:700.305000px;}
.y82{bottom:700.845000px;}
.ycd{bottom:708.225000px;}
.yf8{bottom:710.205000px;}
.y51{bottom:710.925000px;}
.y9d{bottom:715.245000px;}
.ybd{bottom:716.325000px;}
.y79{bottom:718.485000px;}
.y14{bottom:718.845000px;}
.y3b{bottom:720.105000px;}
.ye5{bottom:720.465000px;}
.y66{bottom:721.905000px;}
.yae{bottom:722.985000px;}
.y26{bottom:733.605000px;}
.yd9{bottom:735.405000px;}
.y132{bottom:741.165000px;}
.y50{bottom:742.785000px;}
.y81{bottom:743.145000px;}
.y121{bottom:743.685000px;}
.y78{bottom:750.165000px;}
.ycc{bottom:751.605000px;}
.yf7{bottom:753.585000px;}
.yad{bottom:754.845000px;}
.y9c{bottom:758.625000px;}
.y13{bottom:759.525000px;}
.y3a{bottom:760.785000px;}
.y65{bottom:764.205000px;}
.y106{bottom:766.905000px;}
.y90{bottom:772.845000px;}
.y25{bottom:773.205000px;}
.y77{bottom:781.845000px;}
.y4f{bottom:783.465000px;}
.y80{bottom:785.445000px;}
.y120{bottom:785.985000px;}
.yac{bottom:786.525000px;}
.ycb{bottom:793.905000px;}
.yf6{bottom:795.885000px;}
.y12{bottom:800.385000px;}
.y9b{bottom:800.925000px;}
.y39{bottom:801.465000px;}
.y64{bottom:804.525000px;}
.y76{bottom:813.525000px;}
.y4e{bottom:815.145000px;}
.yab{bottom:818.205000px;}
.y24{bottom:822.030000px;}
.y7f{bottom:827.610000px;}
.yca{bottom:836.250000px;}
.y8f{bottom:836.430000px;}
.y105{bottom:836.970000px;}
.yf5{bottom:839.310000px;}
.y11{bottom:841.110000px;}
.y38{bottom:842.190000px;}
.y9a{bottom:843.090000px;}
.y114{bottom:843.270000px;}
.y63{bottom:845.430000px;}
.y4d{bottom:846.870000px;}
.yaa{bottom:863.250000px;}
.y8e{bottom:868.110000px;}
.y104{bottom:868.650000px;}
.y23{bottom:870.630000px;}
.y62{bottom:877.110000px;}
.y4c{bottom:878.730000px;}
.yf4{bottom:881.430000px;}
.y10{bottom:881.790000px;}
.y37{bottom:883.050000px;}
.y113{bottom:885.390000px;}
.y99{bottom:886.470000px;}
.yc9{bottom:891.330000px;}
.y61{bottom:908.790000px;}
.y4b{bottom:910.410000px;}
.y22{bottom:919.230000px;}
.yf3{bottom:921.750000px;}
.yf{bottom:922.470000px;}
.y36{bottom:923.730000px;}
.y98{bottom:928.770000px;}
.y60{bottom:940.470000px;}
.y35{bottom:957.570000px;}
.y4a{bottom:960.990000px;}
.ye{bottom:963.330000px;}
.yf2{bottom:966.750000px;}
.y21{bottom:968.010000px;}
.y97{bottom:971.070000px;}
.y5f{bottom:972.330000px;}
.y3{bottom:993.390000px;}
.y1{bottom:1010.490000px;}
.y9{bottom:1046.490000px;}
.h5{height:55.517040px;}
.h3{height:61.536960px;}
.h2{height:66.888000px;}
.hb{height:71.613281px;}
.hd{height:72.007031px;}
.h4{height:81.756000px;}
.h7{height:83.610000px;}
.ha{height:88.961040px;}
.hc{height:111.702960px;}
.h1{height:124.416000px;}
.h9{height:144.900000px;}
.h6{height:167.220000px;}
.h8{height:302.070000px;}
.h0{height:1188.000000px;}
.w2{width:116.856000px;}
.w7{width:135.360000px;}
.w1{width:135.540000px;}
.w4{width:449.385000px;}
.w6{width:700.665000px;}
.w5{width:917.999973px;}
.w3{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x6{left:10.800000px;}
.x8{left:33.479973px;}
.x9{left:93.275973px;}
.x11{left:106.416000px;}
.x1{left:108.036000px;}
.xf{left:118.835986px;}
.xe{left:120.095986px;}
.x15{left:124.415986px;}
.x2{left:127.254000px;}
.xa{left:134.855973px;}
.xb{left:187.949973px;}
.x19{left:191.369986px;}
.x1b{left:196.409986px;}
.x16{left:214.409986px;}
.x1a{left:223.409986px;}
.x12{left:241.770000px;}
.x3{left:243.570000px;}
.x14{left:262.830000px;}
.x5{left:264.450000px;}
.xd{left:291.134986px;}
.xc{left:423.974986px;}
.x17{left:448.994986px;}
.x18{left:450.974986px;}
.x13{left:452.594986px;}
.x7{left:459.074986px;}
.x4{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.088000pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.304533pt;}
.ls2{letter-spacing:-0.248533pt;}
.ls3{letter-spacing:-0.227733pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.169067pt;}
.ls16{letter-spacing:-0.168533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.033280pt;}
.ls8{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.269867pt;}
.ls7{letter-spacing:0.320000pt;}
.ls15{letter-spacing:48.128000pt;}
.lsd{letter-spacing:48.768000pt;}
.ls6{letter-spacing:62.336000pt;}
.ls17{letter-spacing:66.688000pt;}
.lsc{letter-spacing:88.026027pt;}
.ls13{letter-spacing:752.138667pt;}
.wsc{word-spacing:-64.000000pt;}
.wsb{word-spacing:-24.154880pt;}
.wsa{word-spacing:-23.850347pt;}
.ws11{word-spacing:-23.663360pt;}
.ws12{word-spacing:-23.494827pt;}
.ws4{word-spacing:-18.080000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.616000pt;}
.ws6{word-spacing:-15.552000pt;}
.wsf{word-spacing:-15.360000pt;}
.ws9{word-spacing:-15.104000pt;}
.wse{word-spacing:-14.976000pt;}
.ws10{word-spacing:-14.464000pt;}
.ws5{word-spacing:-14.307840pt;}
.ws0{word-spacing:-14.059307pt;}
.ws1{word-spacing:-13.178027pt;}
.ws2{word-spacing:-12.908160pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-15.378347pt;}
._e{margin-left:-14.161067pt;}
._11{margin-left:-13.018347pt;}
._f{margin-left:-11.604053pt;}
._b{margin-left:-10.050667pt;}
._c{margin-left:-8.392960pt;}
._10{margin-left:-7.253333pt;}
._a{margin-left:-5.518507pt;}
._4{margin-left:-4.009600pt;}
._2{margin-left:-2.767360pt;}
._1{margin-left:-1.236480pt;}
._0{width:0.986027pt;}
._9{width:2.319040pt;}
._3{width:3.363307pt;}
._17{width:4.288107pt;}
._16{width:5.568000pt;}
._20{width:6.740480pt;}
._1e{width:7.782613pt;}
._25{width:8.750507pt;}
._1d{width:9.696853pt;}
._18{width:10.897920pt;}
._15{width:11.895467pt;}
._12{width:12.928000pt;}
._22{width:14.577067pt;}
._1f{width:16.450987pt;}
._14{width:18.048000pt;}
._13{width:19.471360pt;}
._21{width:20.410880pt;}
._1a{width:21.757440pt;}
._19{width:22.796800pt;}
._23{width:24.256000pt;}
._24{width:25.152000pt;}
._1c{width:26.304427pt;}
._1b{width:27.988480pt;}
._30{width:28.884480pt;}
._2b{width:30.218667pt;}
._26{width:32.128000pt;}
._5{width:33.812480pt;}
._6{width:35.544320pt;}
._29{width:36.707840pt;}
._27{width:38.100480pt;}
._2a{width:39.104000pt;}
._28{width:40.250880pt;}
._7{width:41.192960pt;}
._8{width:42.549760pt;}
._2e{width:53.802667pt;}
._2f{width:54.903893pt;}
._2d{width:80.229547pt;}
._2c{width:81.780480pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.fs6{font-size:106.880000pt;}
.fs3{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:5.920000pt;}
.y1f{bottom:11.040000pt;}
.y33{bottom:21.120000pt;}
.yc{bottom:23.866667pt;}
.yb{bottom:41.946667pt;}
.y8{bottom:47.040000pt;}
.y32{bottom:49.280000pt;}
.y20{bottom:50.560000pt;}
.ya{bottom:60.026667pt;}
.y31{bottom:77.440000pt;}
.y1e{bottom:81.466667pt;}
.y2{bottom:87.386667pt;}
.y7{bottom:104.352000pt;}
.y30{bottom:105.600000pt;}
.y75{bottom:106.272000pt;}
.ybc{bottom:114.752000pt;}
.y5e{bottom:114.912000pt;}
.y34{bottom:116.512000pt;}
.y6{bottom:121.632000pt;}
.y131{bottom:129.152000pt;}
.y49{bottom:133.312000pt;}
.y74{bottom:134.426667pt;}
.y5{bottom:138.906667pt;}
.y2f{bottom:144.186667pt;}
.yc8{bottom:147.546667pt;}
.y1d{bottom:152.026667pt;}
.ybb{bottom:152.346667pt;}
.y5d{bottom:152.506667pt;}
.y4{bottom:156.186667pt;}
.ye4{bottom:157.146667pt;}
.y130{bottom:157.466667pt;}
.y73{bottom:162.586667pt;}
.y103{bottom:163.386667pt;}
.y48{bottom:169.306667pt;}
.ya9{bottom:169.466667pt;}
.y112{bottom:171.386667pt;}
.y11f{bottom:173.786667pt;}
.yf1{bottom:175.386667pt;}
.yc7{bottom:175.706667pt;}
.yd8{bottom:182.106667pt;}
.y12f{bottom:185.626667pt;}
.yba{bottom:189.946667pt;}
.y5c{bottom:190.106667pt;}
.y72{bottom:190.746667pt;}
.ye3{bottom:194.746667pt;}
.y96{bottom:195.386667pt;}
.y102{bottom:201.786667pt;}
.yf0{bottom:203.546667pt;}
.y47{bottom:205.626667pt;}
.y8d{bottom:207.546667pt;}
.ya8{bottom:208.026667pt;}
.y111{bottom:208.826667pt;}
.y11e{bottom:211.386667pt;}
.yc6{bottom:211.866667pt;}
.y12e{bottom:213.786667pt;}
.y71{bottom:219.066667pt;}
.yd7{bottom:219.706667pt;}
.y1c{bottom:222.426667pt;}
.y95{bottom:223.546667pt;}
.yb9{bottom:227.386667pt;}
.y5b{bottom:227.706667pt;}
.ye2{bottom:232.346667pt;}
.yc5{bottom:240.026667pt;}
.y101{bottom:240.346667pt;}
.y46{bottom:241.786667pt;}
.y12d{bottom:241.946667pt;}
.y8c{bottom:245.146667pt;}
.ya7{bottom:245.626667pt;}
.y70{bottom:247.226667pt;}
.y11d{bottom:248.826667pt;}
.y110{bottom:254.266667pt;}
.yef{bottom:256.986667pt;}
.yd6{bottom:257.306667pt;}
.y94{bottom:263.546667pt;}
.yb8{bottom:265.946667pt;}
.y5a{bottom:266.266667pt;}
.yc4{bottom:268.186667pt;}
.y12c{bottom:270.266667pt;}
.y100{bottom:276.186667pt;}
.y45{bottom:277.946667pt;}
.ye1{bottom:281.306667pt;}
.y10f{bottom:282.466667pt;}
.y8b{bottom:282.786667pt;}
.ya6{bottom:284.226667pt;}
.y11c{bottom:287.426667pt;}
.yee{bottom:294.626667pt;}
.y2e{bottom:297.986667pt;}
.y6f{bottom:300.706667pt;}
.yb7{bottom:303.586667pt;}
.y59{bottom:303.906667pt;}
.yd5{bottom:306.306667pt;}
.y12b{bottom:306.466667pt;}
.y93{bottom:307.266667pt;}
.yc3{bottom:313.186667pt;}
.y44{bottom:314.146667pt;}
.yff{bottom:316.226667pt;}
.y8a{bottom:320.386667pt;}
.ya5{bottom:321.666667pt;}
.y11b{bottom:325.026667pt;}
.yed{bottom:333.026667pt;}
.y92{bottom:335.426667pt;}
.y10e{bottom:335.906667pt;}
.y2d{bottom:336.706667pt;}
.y6e{bottom:338.306667pt;}
.ye0{bottom:339.586667pt;}
.yb6{bottom:341.186667pt;}
.y58{bottom:341.506667pt;}
.y12a{bottom:342.626667pt;}
.y43{bottom:350.466667pt;}
.y1a{bottom:354.466667pt;}
.y89{bottom:357.826667pt;}
.yfe{bottom:359.906667pt;}
.y11a{bottom:363.586667pt;}
.yd4{bottom:364.546667pt;}
.ya4{bottom:367.106667pt;}
.y129{bottom:370.786667pt;}
.yec{bottom:371.586667pt;}
.y10d{bottom:373.346667pt;}
.yc2{bottom:375.586667pt;}
.y6d{bottom:375.746667pt;}
.ydf{bottom:377.186667pt;}
.yb5{bottom:378.786667pt;}
.y57{bottom:378.946667pt;}
.y91{bottom:380.386667pt;}
.y42{bottom:386.626667pt;}
.yfd{bottom:388.226667pt;}
.ya3{bottom:395.266667pt;}
.y88{bottom:396.386667pt;}
.y19{bottom:397.666667pt;}
.y128{bottom:399.106667pt;}
.y119{bottom:401.186667pt;}
.yd3{bottom:402.146667pt;}
.yc1{bottom:403.746667pt;}
.yeb{bottom:410.146667pt;}
.y10c{bottom:411.906667pt;}
.y6c{bottom:414.306667pt;}
.yb4{bottom:414.626667pt;}
.yde{bottom:415.746667pt;}
.y56{bottom:417.506667pt;}
.y41{bottom:422.786667pt;}
.y127{bottom:427.266667pt;}
.yc0{bottom:431.906667pt;}
.y1b{bottom:433.826667pt;}
.y87{bottom:433.986667pt;}
.ya2{bottom:435.266667pt;}
.y118{bottom:438.626667pt;}
.yd2{bottom:439.746667pt;}
.y18{bottom:441.026667pt;}
.yfc{bottom:441.666667pt;}
.y2c{bottom:444.706667pt;}
.yea{bottom:447.586667pt;}
.y10b{bottom:449.506667pt;}
.yb3{bottom:450.946667pt;}
.y6b{bottom:451.906667pt;}
.y7e{bottom:453.346667pt;}
.y55{bottom:455.106667pt;}
.y126{bottom:455.426667pt;}
.y40{bottom:458.946667pt;}
.y86{bottom:471.586667pt;}
.y117{bottom:474.626667pt;}
.yd1{bottom:478.306667pt;}
.y2b{bottom:478.626667pt;}
.ya1{bottom:478.946667pt;}
.yb2{bottom:479.106667pt;}
.ye9{bottom:483.426667pt;}
.y17{bottom:484.226667pt;}
.ybf{bottom:485.346667pt;}
.y10a{bottom:487.106667pt;}
.y6a{bottom:489.506667pt;}
.ydd{bottom:490.786667pt;}
.y54{bottom:492.706667pt;}
.y3f{bottom:495.266667pt;}
.ya0{bottom:507.133333pt;}
.yb1{bottom:507.293333pt;}
.y125{bottom:508.893333pt;}
.y85{bottom:509.213333pt;}
.y116{bottom:510.813333pt;}
.y2a{bottom:512.413333pt;}
.yd0{bottom:515.773333pt;}
.yfb{bottom:517.693333pt;}
.y7d{bottom:517.853333pt;}
.ybe{bottom:522.973333pt;}
.ye8{bottom:523.453333pt;}
.y109{bottom:525.693333pt;}
.y69{bottom:528.093333pt;}
.ydc{bottom:529.373333pt;}
.y53{bottom:530.333333pt;}
.y3e{bottom:531.453333pt;}
.y115{bottom:538.973333pt;}
.y16{bottom:543.773333pt;}
.y7c{bottom:546.013333pt;}
.y29{bottom:546.333333pt;}
.y124{bottom:546.493333pt;}
.y84{bottom:546.813333pt;}
.yb0{bottom:552.253333pt;}
.ycf{bottom:554.333333pt;}
.yfa{bottom:555.293333pt;}
.y9f{bottom:560.573333pt;}
.y108{bottom:563.293333pt;}
.y68{bottom:565.533333pt;}
.ydb{bottom:566.973333pt;}
.ye7{bottom:567.293333pt;}
.y3d{bottom:567.613333pt;}
.y7b{bottom:574.173333pt;}
.y52{bottom:575.613333pt;}
.y28{bottom:580.093333pt;}
.y83{bottom:584.413333pt;}
.y123{bottom:585.053333pt;}
.yce{bottom:591.933333pt;}
.yf9{bottom:593.853333pt;}
.ye6{bottom:595.453333pt;}
.y9e{bottom:598.173333pt;}
.y107{bottom:600.733333pt;}
.y7a{bottom:602.333333pt;}
.y15{bottom:602.813333pt;}
.y3c{bottom:603.773333pt;}
.y67{bottom:604.093333pt;}
.yda{bottom:604.573333pt;}
.y27{bottom:614.013333pt;}
.yaf{bottom:614.493333pt;}
.y122{bottom:622.493333pt;}
.y82{bottom:622.973333pt;}
.ycd{bottom:629.533333pt;}
.yf8{bottom:631.293333pt;}
.y51{bottom:631.933333pt;}
.y9d{bottom:635.773333pt;}
.ybd{bottom:636.733333pt;}
.y79{bottom:638.653333pt;}
.y14{bottom:638.973333pt;}
.y3b{bottom:640.093333pt;}
.ye5{bottom:640.413333pt;}
.y66{bottom:641.693333pt;}
.yae{bottom:642.653333pt;}
.y26{bottom:652.093333pt;}
.yd9{bottom:653.693333pt;}
.y132{bottom:658.813333pt;}
.y50{bottom:660.253333pt;}
.y81{bottom:660.573333pt;}
.y121{bottom:661.053333pt;}
.y78{bottom:666.813333pt;}
.ycc{bottom:668.093333pt;}
.yf7{bottom:669.853333pt;}
.yad{bottom:670.973333pt;}
.y9c{bottom:674.333333pt;}
.y13{bottom:675.133333pt;}
.y3a{bottom:676.253333pt;}
.y65{bottom:679.293333pt;}
.y106{bottom:681.693333pt;}
.y90{bottom:686.973333pt;}
.y25{bottom:687.293333pt;}
.y77{bottom:694.973333pt;}
.y4f{bottom:696.413333pt;}
.y80{bottom:698.173333pt;}
.y120{bottom:698.653333pt;}
.yac{bottom:699.133333pt;}
.ycb{bottom:705.693333pt;}
.yf6{bottom:707.453333pt;}
.y12{bottom:711.453333pt;}
.y9b{bottom:711.933333pt;}
.y39{bottom:712.413333pt;}
.y64{bottom:715.133333pt;}
.y76{bottom:723.133333pt;}
.y4e{bottom:724.573333pt;}
.yab{bottom:727.293333pt;}
.y24{bottom:730.693333pt;}
.y7f{bottom:735.653333pt;}
.yca{bottom:743.333333pt;}
.y8f{bottom:743.493333pt;}
.y105{bottom:743.973333pt;}
.yf5{bottom:746.053333pt;}
.y11{bottom:747.653333pt;}
.y38{bottom:748.613333pt;}
.y9a{bottom:749.413333pt;}
.y114{bottom:749.573333pt;}
.y63{bottom:751.493333pt;}
.y4d{bottom:752.773333pt;}
.yaa{bottom:767.333333pt;}
.y8e{bottom:771.653333pt;}
.y104{bottom:772.133333pt;}
.y23{bottom:773.893333pt;}
.y62{bottom:779.653333pt;}
.y4c{bottom:781.093333pt;}
.yf4{bottom:783.493333pt;}
.y10{bottom:783.813333pt;}
.y37{bottom:784.933333pt;}
.y113{bottom:787.013333pt;}
.y99{bottom:787.973333pt;}
.yc9{bottom:792.293333pt;}
.y61{bottom:807.813333pt;}
.y4b{bottom:809.253333pt;}
.y22{bottom:817.093333pt;}
.yf3{bottom:819.333333pt;}
.yf{bottom:819.973333pt;}
.y36{bottom:821.093333pt;}
.y98{bottom:825.573333pt;}
.y60{bottom:835.973333pt;}
.y35{bottom:851.173333pt;}
.y4a{bottom:854.213333pt;}
.ye{bottom:856.293333pt;}
.yf2{bottom:859.333333pt;}
.y21{bottom:860.453333pt;}
.y97{bottom:863.173333pt;}
.y5f{bottom:864.293333pt;}
.y3{bottom:883.013333pt;}
.y1{bottom:898.213333pt;}
.y9{bottom:930.213333pt;}
.h5{height:49.348480pt;}
.h3{height:54.699520pt;}
.h2{height:59.456000pt;}
.hb{height:63.656250pt;}
.hd{height:64.006250pt;}
.h4{height:72.672000pt;}
.h7{height:74.320000pt;}
.ha{height:79.076480pt;}
.hc{height:99.291520pt;}
.h1{height:110.592000pt;}
.h9{height:128.800000pt;}
.h6{height:148.640000pt;}
.h8{height:268.506667pt;}
.h0{height:1056.000000pt;}
.w2{width:103.872000pt;}
.w7{width:120.320000pt;}
.w1{width:120.480000pt;}
.w4{width:399.453333pt;}
.w6{width:622.813333pt;}
.w5{width:815.999976pt;}
.w3{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x6{left:9.600000pt;}
.x8{left:29.759976pt;}
.x9{left:82.911976pt;}
.x11{left:94.592000pt;}
.x1{left:96.032000pt;}
.xf{left:105.631988pt;}
.xe{left:106.751988pt;}
.x15{left:110.591988pt;}
.x2{left:113.114667pt;}
.xa{left:119.871976pt;}
.xb{left:167.066642pt;}
.x19{left:170.106655pt;}
.x1b{left:174.586655pt;}
.x16{left:190.586655pt;}
.x1a{left:198.586655pt;}
.x12{left:214.906667pt;}
.x3{left:216.506667pt;}
.x14{left:233.626667pt;}
.x5{left:235.066667pt;}
.xd{left:258.786655pt;}
.xc{left:376.866655pt;}
.x17{left:399.106655pt;}
.x18{left:400.866655pt;}
.x13{left:402.306655pt;}
.x7{left:408.066655pt;}
.x4{left:720.133321pt;}
}




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