
    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_90cfaaa6ecc4a4a919ddf793.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_1000be771c6e5c7776134a43.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_9b8cb48a3beb71904e1e4212.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_44757d039c41533eb6c99a2f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.902344;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_6598a6c23fd6f3a187098c9d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902344;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_a46b64416445a9f8dd882774.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_51eb4d2da99e5acdc6644702.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_2b15fb0b0bf5c97a225a5bd5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_d30d9b01a63c3e8d7ba76788.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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);}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.000000px;}
.ls25{letter-spacing:-1.620000px;}
.ls22{letter-spacing:-1.140000px;}
.ls17{letter-spacing:-1.020000px;}
.ls19{letter-spacing:-0.900000px;}
.ls28{letter-spacing:-0.840000px;}
.ls9{letter-spacing:-0.660000px;}
.lsf{letter-spacing:-0.600000px;}
.ls18{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.480000px;}
.ls27{letter-spacing:-0.420000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.120000px;}
.ls12{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.060000px;}
.ls21{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.240000px;}
.lse{letter-spacing:0.300000px;}
.ls1d{letter-spacing:0.420000px;}
.ls1c{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.600000px;}
.ls15{letter-spacing:0.660000px;}
.ls1a{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.780000px;}
.lsa{letter-spacing:0.840000px;}
.ls1e{letter-spacing:0.960000px;}
.ls20{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.440000px;}
.ls1{letter-spacing:4.260000px;}
.ls11{letter-spacing:5.280000px;}
.ls0{letter-spacing:8.436000px;}
.ls2{letter-spacing:8.460000px;}
.ls8{letter-spacing:9.060000px;}
.ls23{letter-spacing:9.780000px;}
.ls24{letter-spacing:9.840000px;}
.ls4{letter-spacing:9.960000px;}
.ls1f{letter-spacing:10.800000px;}
.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;}
}
.ws2{word-spacing:-29.640000px;}
.ws1{word-spacing:-16.860000px;}
.ws26{word-spacing:-15.600000px;}
.ws27{word-spacing:-15.540000px;}
.ws25{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.120000px;}
.ws13{word-spacing:-14.820000px;}
.ws32{word-spacing:-14.700000px;}
.ws2d{word-spacing:-13.800000px;}
.ws29{word-spacing:-10.800000px;}
.wsc{word-spacing:-9.960000px;}
.ws35{word-spacing:-9.840000px;}
.ws31{word-spacing:-9.780000px;}
.ws9{word-spacing:-9.060000px;}
.ws11{word-spacing:-8.496000px;}
.ws2c{word-spacing:-8.460000px;}
.ws17{word-spacing:-5.280000px;}
.ws7{word-spacing:-1.440000px;}
.ws2b{word-spacing:-1.080000px;}
.ws28{word-spacing:-0.960000px;}
.ws2a{word-spacing:-0.840000px;}
.wse{word-spacing:-0.780000px;}
.ws21{word-spacing:-0.720000px;}
.ws1c{word-spacing:-0.660000px;}
.ws8{word-spacing:-0.600000px;}
.wsf{word-spacing:-0.540000px;}
.ws23{word-spacing:-0.480000px;}
.ws24{word-spacing:-0.420000px;}
.ws10{word-spacing:-0.300000px;}
.ws1b{word-spacing:-0.240000px;}
.ws1d{word-spacing:-0.180000px;}
.ws2f{word-spacing:-0.120000px;}
.ws6{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:0.060000px;}
.ws36{word-spacing:0.120000px;}
.wsb{word-spacing:0.180000px;}
.ws16{word-spacing:0.300000px;}
.ws22{word-spacing:0.360000px;}
.ws37{word-spacing:0.420000px;}
.ws1a{word-spacing:0.480000px;}
.ws1f{word-spacing:0.540000px;}
.ws15{word-spacing:0.600000px;}
.wsa{word-spacing:0.660000px;}
.ws39{word-spacing:0.840000px;}
.ws20{word-spacing:0.900000px;}
.ws1e{word-spacing:1.020000px;}
.ws2e{word-spacing:1.140000px;}
.ws33{word-spacing:1.620000px;}
.ws14{word-spacing:2.220000px;}
.wsd{word-spacing:3.360000px;}
.ws34{word-spacing:3.540000px;}
.ws30{word-spacing:3.720000px;}
.ws5{word-spacing:4.200000px;}
.ws38{word-spacing:4.800000px;}
.ws18{word-spacing:9.960000px;}
.ws4{word-spacing:75.180000px;}
.ws0{word-spacing:146.196000px;}
._13{margin-left:-948.820800px;}
._17{margin-left:-15.960000px;}
._18{margin-left:-14.928000px;}
._6{margin-left:-11.928000px;}
._10{margin-left:-10.470000px;}
._11{margin-left:-9.324000px;}
._15{margin-left:-7.644000px;}
._2{margin-left:-6.018000px;}
._16{margin-left:-4.956000px;}
._8{margin-left:-3.834000px;}
._d{margin-left:-2.310000px;}
._4{margin-left:-1.248000px;}
._3{width:1.878000px;}
._5{width:3.180000px;}
._0{width:4.254000px;}
._f{width:5.760000px;}
._1{width:7.266000px;}
._7{width:8.640000px;}
._9{width:9.942000px;}
._b{width:11.556000px;}
._a{width:13.386000px;}
._12{width:14.412000px;}
._14{width:15.474000px;}
._c{width:18.546000px;}
._e{width:19.944000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y28{bottom:117.354300px;}
.y117{bottom:117.450000px;}
.y7a{bottom:118.800000px;}
.y52{bottom:119.400000px;}
.y13d{bottom:119.550000px;}
.yca{bottom:119.700000px;}
.yf0{bottom:120.750000px;}
.y116{bottom:136.800000px;}
.y27{bottom:136.854300px;}
.y13c{bottom:138.000000px;}
.ya3{bottom:138.600000px;}
.y79{bottom:139.050000px;}
.y51{bottom:139.200000px;}
.yc9{bottom:139.500000px;}
.yef{bottom:141.000000px;}
.y115{bottom:156.150000px;}
.y26{bottom:156.354300px;}
.y13b{bottom:156.450000px;}
.ya2{bottom:158.400000px;}
.y50{bottom:159.000000px;}
.y78{bottom:159.300000px;}
.yee{bottom:160.650000px;}
.y13a{bottom:174.900000px;}
.y114{bottom:175.500000px;}
.y25{bottom:175.854300px;}
.ya1{bottom:178.200000px;}
.y4f{bottom:178.800000px;}
.yc8{bottom:179.100000px;}
.y77{bottom:179.550000px;}
.yed{bottom:180.300000px;}
.y113{bottom:194.850000px;}
.y24{bottom:195.354300px;}
.ya0{bottom:198.000000px;}
.y4e{bottom:198.600000px;}
.yc7{bottom:198.900000px;}
.y76{bottom:199.800000px;}
.yec{bottom:199.950000px;}
.y139{bottom:212.400000px;}
.y112{bottom:214.200000px;}
.y23{bottom:214.854300px;}
.y9f{bottom:217.800000px;}
.y4d{bottom:218.400000px;}
.yc6{bottom:218.700000px;}
.yeb{bottom:219.600000px;}
.y75{bottom:220.050000px;}
.y111{bottom:233.550000px;}
.y22{bottom:234.354300px;}
.y9e{bottom:237.600000px;}
.y4c{bottom:238.200000px;}
.yc5{bottom:238.500000px;}
.yea{bottom:239.250000px;}
.y74{bottom:240.300000px;}
.y138{bottom:249.900000px;}
.y110{bottom:252.900000px;}
.y21{bottom:253.854300px;}
.y9d{bottom:257.400000px;}
.y4b{bottom:258.000000px;}
.yc4{bottom:258.300000px;}
.ye9{bottom:258.900000px;}
.y73{bottom:260.550000px;}
.y137{bottom:269.250000px;}
.y10f{bottom:272.250000px;}
.y20{bottom:273.354300px;}
.y9c{bottom:277.200000px;}
.y4a{bottom:277.800000px;}
.yc3{bottom:278.100000px;}
.ye8{bottom:278.550000px;}
.y72{bottom:280.800000px;}
.y136{bottom:288.600000px;}
.y10e{bottom:291.600000px;}
.y1f{bottom:292.854300px;}
.y9b{bottom:297.000000px;}
.y49{bottom:297.600000px;}
.yc2{bottom:297.900000px;}
.ye7{bottom:298.200000px;}
.y71{bottom:301.050000px;}
.y135{bottom:307.950000px;}
.y10d{bottom:310.950000px;}
.y1e{bottom:312.354300px;}
.y9a{bottom:316.800000px;}
.y48{bottom:317.400000px;}
.yc1{bottom:317.700000px;}
.ye6{bottom:317.850000px;}
.y70{bottom:321.300000px;}
.y134{bottom:327.300000px;}
.y10c{bottom:330.300000px;}
.y1d{bottom:331.854300px;}
.y99{bottom:336.600000px;}
.y47{bottom:337.200000px;}
.yc0{bottom:337.500000px;}
.y6f{bottom:341.550000px;}
.y133{bottom:346.650000px;}
.y10b{bottom:349.650000px;}
.y1c{bottom:351.354300px;}
.y98{bottom:356.400000px;}
.y46{bottom:357.000000px;}
.ye5{bottom:357.150000px;}
.ybf{bottom:357.300000px;}
.y6e{bottom:361.800000px;}
.y132{bottom:366.000000px;}
.y10a{bottom:369.000000px;}
.y1b{bottom:370.854300px;}
.y97{bottom:376.200000px;}
.y45{bottom:376.800000px;}
.ybe{bottom:377.100000px;}
.y6d{bottom:382.050000px;}
.y131{bottom:385.350000px;}
.y109{bottom:388.350000px;}
.y1a{bottom:390.354300px;}
.y96{bottom:396.000000px;}
.ye4{bottom:396.450000px;}
.y44{bottom:396.600000px;}
.ybd{bottom:396.900000px;}
.y6c{bottom:402.300000px;}
.y130{bottom:404.700000px;}
.y108{bottom:407.700000px;}
.y19{bottom:409.854300px;}
.y95{bottom:415.800000px;}
.ye3{bottom:416.100000px;}
.y43{bottom:416.400000px;}
.ybc{bottom:416.700000px;}
.y6b{bottom:422.550000px;}
.y12f{bottom:424.050000px;}
.y107{bottom:427.050000px;}
.y18{bottom:429.354300px;}
.y94{bottom:435.600000px;}
.ye2{bottom:435.750000px;}
.y42{bottom:436.200000px;}
.ybb{bottom:436.500000px;}
.y6a{bottom:442.800000px;}
.y12e{bottom:443.400000px;}
.y106{bottom:446.400000px;}
.y17{bottom:448.854300px;}
.y93{bottom:455.400000px;}
.y41{bottom:456.000000px;}
.yba{bottom:456.300000px;}
.y12d{bottom:462.750000px;}
.y69{bottom:463.050000px;}
.y105{bottom:465.750000px;}
.y16{bottom:468.354300px;}
.ye1{bottom:475.050000px;}
.y92{bottom:475.200000px;}
.y40{bottom:475.800000px;}
.yb9{bottom:476.100000px;}
.y12c{bottom:482.100000px;}
.y68{bottom:483.300000px;}
.y104{bottom:485.100000px;}
.y15{bottom:487.854300px;}
.ye0{bottom:494.700000px;}
.y91{bottom:495.000000px;}
.y3f{bottom:495.600000px;}
.yb8{bottom:495.900000px;}
.y12b{bottom:501.450000px;}
.y67{bottom:503.550000px;}
.y103{bottom:504.450000px;}
.y14{bottom:507.354300px;}
.ydf{bottom:514.350000px;}
.y90{bottom:514.800000px;}
.y3e{bottom:515.400000px;}
.yb7{bottom:515.700000px;}
.y12a{bottom:520.800000px;}
.y66{bottom:523.800000px;}
.y13{bottom:526.854300px;}
.yde{bottom:534.000000px;}
.y8f{bottom:534.600000px;}
.y3d{bottom:535.200000px;}
.y129{bottom:540.150000px;}
.y102{bottom:543.150000px;}
.y65{bottom:544.050000px;}
.y12{bottom:546.354300px;}
.ydd{bottom:553.650000px;}
.y8e{bottom:554.400000px;}
.y3c{bottom:555.000000px;}
.yb6{bottom:557.400000px;}
.y128{bottom:559.500000px;}
.y101{bottom:562.500000px;}
.y64{bottom:564.300000px;}
.y11{bottom:565.854300px;}
.ydc{bottom:573.300000px;}
.y8d{bottom:574.200000px;}
.y3b{bottom:574.800000px;}
.yb5{bottom:577.050000px;}
.y127{bottom:579.000000px;}
.y100{bottom:581.850000px;}
.y63{bottom:584.550000px;}
.y10{bottom:585.354300px;}
.ydb{bottom:592.950000px;}
.y8c{bottom:594.000000px;}
.y3a{bottom:594.600000px;}
.yb4{bottom:596.700000px;}
.y126{bottom:598.500000px;}
.yff{bottom:601.200000px;}
.y62{bottom:604.800000px;}
.yf{bottom:604.854300px;}
.yda{bottom:612.600000px;}
.y8b{bottom:613.800000px;}
.y39{bottom:614.400000px;}
.yb3{bottom:616.350000px;}
.y125{bottom:618.000000px;}
.yfe{bottom:620.550000px;}
.ye{bottom:624.354300px;}
.y61{bottom:625.050000px;}
.yd9{bottom:632.250000px;}
.y8a{bottom:633.600000px;}
.y38{bottom:634.200000px;}
.yb2{bottom:636.000000px;}
.y124{bottom:637.500000px;}
.yfd{bottom:639.900000px;}
.yd{bottom:643.854300px;}
.yd8{bottom:651.900000px;}
.y89{bottom:653.400000px;}
.y37{bottom:654.000000px;}
.yb1{bottom:655.650000px;}
.y123{bottom:657.000000px;}
.yfc{bottom:659.250000px;}
.yc{bottom:663.354300px;}
.y60{bottom:667.500000px;}
.yd7{bottom:671.550000px;}
.y88{bottom:673.200000px;}
.y36{bottom:673.800000px;}
.yb0{bottom:675.300000px;}
.y122{bottom:676.500000px;}
.yfb{bottom:678.600000px;}
.yb{bottom:682.854300px;}
.y5f{bottom:687.600000px;}
.yd6{bottom:691.200000px;}
.y87{bottom:693.000000px;}
.y35{bottom:693.600000px;}
.yaf{bottom:694.950000px;}
.y121{bottom:696.000000px;}
.yfa{bottom:697.950000px;}
.ya{bottom:702.354300px;}
.y5e{bottom:707.700000px;}
.yd5{bottom:710.850000px;}
.y86{bottom:712.800000px;}
.y34{bottom:713.400000px;}
.yae{bottom:714.600000px;}
.y120{bottom:715.500000px;}
.yf9{bottom:717.300000px;}
.y9{bottom:721.854300px;}
.y5d{bottom:727.800000px;}
.yd4{bottom:730.500000px;}
.y85{bottom:732.600000px;}
.y33{bottom:733.200000px;}
.yad{bottom:734.250000px;}
.y11f{bottom:735.000000px;}
.yf8{bottom:736.650000px;}
.y8{bottom:741.354300px;}
.y5c{bottom:747.900000px;}
.yd3{bottom:750.150000px;}
.y84{bottom:752.400000px;}
.y32{bottom:753.000000px;}
.yac{bottom:753.900000px;}
.y11e{bottom:754.500000px;}
.yf7{bottom:756.000000px;}
.y7{bottom:760.854300px;}
.y5b{bottom:768.000000px;}
.yd2{bottom:769.800000px;}
.y83{bottom:772.200000px;}
.y31{bottom:772.800000px;}
.yab{bottom:773.550000px;}
.y11d{bottom:774.000000px;}
.yf6{bottom:775.350000px;}
.y6{bottom:780.354300px;}
.y5a{bottom:788.100000px;}
.yd1{bottom:789.450000px;}
.y82{bottom:792.000000px;}
.y30{bottom:792.600000px;}
.yaa{bottom:793.200000px;}
.y11c{bottom:793.500000px;}
.yf5{bottom:794.700000px;}
.y5{bottom:799.854300px;}
.y59{bottom:808.200000px;}
.yd0{bottom:809.100000px;}
.y81{bottom:811.800000px;}
.y2f{bottom:812.400000px;}
.ya9{bottom:812.850000px;}
.y11b{bottom:813.000000px;}
.yf4{bottom:814.050000px;}
.y58{bottom:828.300000px;}
.ycf{bottom:828.750000px;}
.y80{bottom:831.600000px;}
.y2e{bottom:832.200000px;}
.ya8{bottom:832.500000px;}
.yf3{bottom:833.400000px;}
.y57{bottom:848.400000px;}
.y7f{bottom:851.400000px;}
.y2d{bottom:852.000000px;}
.ya7{bottom:852.150000px;}
.yf2{bottom:852.750000px;}
.y4{bottom:867.000000px;}
.yce{bottom:868.050000px;}
.y56{bottom:868.500000px;}
.y7e{bottom:871.200000px;}
.y11a{bottom:871.500000px;}
.y2c{bottom:871.800000px;}
.yf1{bottom:872.100000px;}
.ycd{bottom:887.700000px;}
.y55{bottom:888.600000px;}
.y7d{bottom:891.000000px;}
.ya6{bottom:891.450000px;}
.y2b{bottom:891.600000px;}
.y3{bottom:897.000000px;}
.ycc{bottom:907.350000px;}
.y54{bottom:908.700000px;}
.y119{bottom:910.500000px;}
.y7c{bottom:910.800000px;}
.ya5{bottom:911.100000px;}
.y2a{bottom:911.400000px;}
.ycb{bottom:927.000000px;}
.y53{bottom:928.800000px;}
.y118{bottom:930.000000px;}
.y7b{bottom:930.150000px;}
.ya4{bottom:930.300000px;}
.y29{bottom:930.450000px;}
.h4{height:39.990234px;}
.h1{height:50.947266px;}
.h2{height:62.947266px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x3{left:82.395000px;}
.x4{left:97.275000px;}
.x8{left:112.500000px;}
.x6{left:127.381950px;}
.x2{left:134.985000px;}
.x7{left:142.261950px;}
.x9{left:180.601950px;}
.x5{left:625.781250px;}
@media print{
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.ls25{letter-spacing:-1.440000pt;}
.ls22{letter-spacing:-1.013333pt;}
.ls17{letter-spacing:-0.906667pt;}
.ls19{letter-spacing:-0.800000pt;}
.ls28{letter-spacing:-0.746667pt;}
.ls9{letter-spacing:-0.586667pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.426667pt;}
.ls27{letter-spacing:-0.373333pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.106667pt;}
.ls12{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.053333pt;}
.ls21{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.266667pt;}
.ls1d{letter-spacing:0.373333pt;}
.ls1c{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls15{letter-spacing:0.586667pt;}
.ls1a{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.693333pt;}
.lsa{letter-spacing:0.746667pt;}
.ls1e{letter-spacing:0.853333pt;}
.ls20{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls1{letter-spacing:3.786667pt;}
.ls11{letter-spacing:4.693333pt;}
.ls0{letter-spacing:7.498667pt;}
.ls2{letter-spacing:7.520000pt;}
.ls8{letter-spacing:8.053333pt;}
.ls23{letter-spacing:8.693333pt;}
.ls24{letter-spacing:8.746667pt;}
.ls4{letter-spacing:8.853333pt;}
.ls1f{letter-spacing:9.600000pt;}
.ws2{word-spacing:-26.346667pt;}
.ws1{word-spacing:-14.986667pt;}
.ws26{word-spacing:-13.866667pt;}
.ws27{word-spacing:-13.813333pt;}
.ws25{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.440000pt;}
.ws13{word-spacing:-13.173333pt;}
.ws32{word-spacing:-13.066667pt;}
.ws2d{word-spacing:-12.266667pt;}
.ws29{word-spacing:-9.600000pt;}
.wsc{word-spacing:-8.853333pt;}
.ws35{word-spacing:-8.746667pt;}
.ws31{word-spacing:-8.693333pt;}
.ws9{word-spacing:-8.053333pt;}
.ws11{word-spacing:-7.552000pt;}
.ws2c{word-spacing:-7.520000pt;}
.ws17{word-spacing:-4.693333pt;}
.ws7{word-spacing:-1.280000pt;}
.ws2b{word-spacing:-0.960000pt;}
.ws28{word-spacing:-0.853333pt;}
.ws2a{word-spacing:-0.746667pt;}
.wse{word-spacing:-0.693333pt;}
.ws21{word-spacing:-0.640000pt;}
.ws1c{word-spacing:-0.586667pt;}
.ws8{word-spacing:-0.533333pt;}
.wsf{word-spacing:-0.480000pt;}
.ws23{word-spacing:-0.426667pt;}
.ws24{word-spacing:-0.373333pt;}
.ws10{word-spacing:-0.266667pt;}
.ws1b{word-spacing:-0.213333pt;}
.ws1d{word-spacing:-0.160000pt;}
.ws2f{word-spacing:-0.106667pt;}
.ws6{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:0.053333pt;}
.ws36{word-spacing:0.106667pt;}
.wsb{word-spacing:0.160000pt;}
.ws16{word-spacing:0.266667pt;}
.ws22{word-spacing:0.320000pt;}
.ws37{word-spacing:0.373333pt;}
.ws1a{word-spacing:0.426667pt;}
.ws1f{word-spacing:0.480000pt;}
.ws15{word-spacing:0.533333pt;}
.wsa{word-spacing:0.586667pt;}
.ws39{word-spacing:0.746667pt;}
.ws20{word-spacing:0.800000pt;}
.ws1e{word-spacing:0.906667pt;}
.ws2e{word-spacing:1.013333pt;}
.ws33{word-spacing:1.440000pt;}
.ws14{word-spacing:1.973333pt;}
.wsd{word-spacing:2.986667pt;}
.ws34{word-spacing:3.146667pt;}
.ws30{word-spacing:3.306667pt;}
.ws5{word-spacing:3.733333pt;}
.ws38{word-spacing:4.266667pt;}
.ws18{word-spacing:8.853333pt;}
.ws4{word-spacing:66.826667pt;}
.ws0{word-spacing:129.952000pt;}
._13{margin-left:-843.396267pt;}
._17{margin-left:-14.186667pt;}
._18{margin-left:-13.269333pt;}
._6{margin-left:-10.602667pt;}
._10{margin-left:-9.306667pt;}
._11{margin-left:-8.288000pt;}
._15{margin-left:-6.794667pt;}
._2{margin-left:-5.349333pt;}
._16{margin-left:-4.405333pt;}
._8{margin-left:-3.408000pt;}
._d{margin-left:-2.053333pt;}
._4{margin-left:-1.109333pt;}
._3{width:1.669333pt;}
._5{width:2.826667pt;}
._0{width:3.781333pt;}
._f{width:5.120000pt;}
._1{width:6.458667pt;}
._7{width:7.680000pt;}
._9{width:8.837333pt;}
._b{width:10.272000pt;}
._a{width:11.898667pt;}
._12{width:12.810667pt;}
._14{width:13.754667pt;}
._c{width:16.485333pt;}
._e{width:17.728000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y28{bottom:104.314933pt;}
.y117{bottom:104.400000pt;}
.y7a{bottom:105.600000pt;}
.y52{bottom:106.133333pt;}
.y13d{bottom:106.266667pt;}
.yca{bottom:106.400000pt;}
.yf0{bottom:107.333333pt;}
.y116{bottom:121.600000pt;}
.y27{bottom:121.648267pt;}
.y13c{bottom:122.666667pt;}
.ya3{bottom:123.200000pt;}
.y79{bottom:123.600000pt;}
.y51{bottom:123.733333pt;}
.yc9{bottom:124.000000pt;}
.yef{bottom:125.333333pt;}
.y115{bottom:138.800000pt;}
.y26{bottom:138.981600pt;}
.y13b{bottom:139.066667pt;}
.ya2{bottom:140.800000pt;}
.y50{bottom:141.333333pt;}
.y78{bottom:141.600000pt;}
.yee{bottom:142.800000pt;}
.y13a{bottom:155.466667pt;}
.y114{bottom:156.000000pt;}
.y25{bottom:156.314933pt;}
.ya1{bottom:158.400000pt;}
.y4f{bottom:158.933333pt;}
.yc8{bottom:159.200000pt;}
.y77{bottom:159.600000pt;}
.yed{bottom:160.266667pt;}
.y113{bottom:173.200000pt;}
.y24{bottom:173.648267pt;}
.ya0{bottom:176.000000pt;}
.y4e{bottom:176.533333pt;}
.yc7{bottom:176.800000pt;}
.y76{bottom:177.600000pt;}
.yec{bottom:177.733333pt;}
.y139{bottom:188.800000pt;}
.y112{bottom:190.400000pt;}
.y23{bottom:190.981600pt;}
.y9f{bottom:193.600000pt;}
.y4d{bottom:194.133333pt;}
.yc6{bottom:194.400000pt;}
.yeb{bottom:195.200000pt;}
.y75{bottom:195.600000pt;}
.y111{bottom:207.600000pt;}
.y22{bottom:208.314933pt;}
.y9e{bottom:211.200000pt;}
.y4c{bottom:211.733333pt;}
.yc5{bottom:212.000000pt;}
.yea{bottom:212.666667pt;}
.y74{bottom:213.600000pt;}
.y138{bottom:222.133333pt;}
.y110{bottom:224.800000pt;}
.y21{bottom:225.648267pt;}
.y9d{bottom:228.800000pt;}
.y4b{bottom:229.333333pt;}
.yc4{bottom:229.600000pt;}
.ye9{bottom:230.133333pt;}
.y73{bottom:231.600000pt;}
.y137{bottom:239.333333pt;}
.y10f{bottom:242.000000pt;}
.y20{bottom:242.981600pt;}
.y9c{bottom:246.400000pt;}
.y4a{bottom:246.933333pt;}
.yc3{bottom:247.200000pt;}
.ye8{bottom:247.600000pt;}
.y72{bottom:249.600000pt;}
.y136{bottom:256.533333pt;}
.y10e{bottom:259.200000pt;}
.y1f{bottom:260.314933pt;}
.y9b{bottom:264.000000pt;}
.y49{bottom:264.533333pt;}
.yc2{bottom:264.800000pt;}
.ye7{bottom:265.066667pt;}
.y71{bottom:267.600000pt;}
.y135{bottom:273.733333pt;}
.y10d{bottom:276.400000pt;}
.y1e{bottom:277.648267pt;}
.y9a{bottom:281.600000pt;}
.y48{bottom:282.133333pt;}
.yc1{bottom:282.400000pt;}
.ye6{bottom:282.533333pt;}
.y70{bottom:285.600000pt;}
.y134{bottom:290.933333pt;}
.y10c{bottom:293.600000pt;}
.y1d{bottom:294.981600pt;}
.y99{bottom:299.200000pt;}
.y47{bottom:299.733333pt;}
.yc0{bottom:300.000000pt;}
.y6f{bottom:303.600000pt;}
.y133{bottom:308.133333pt;}
.y10b{bottom:310.800000pt;}
.y1c{bottom:312.314933pt;}
.y98{bottom:316.800000pt;}
.y46{bottom:317.333333pt;}
.ye5{bottom:317.466667pt;}
.ybf{bottom:317.600000pt;}
.y6e{bottom:321.600000pt;}
.y132{bottom:325.333333pt;}
.y10a{bottom:328.000000pt;}
.y1b{bottom:329.648267pt;}
.y97{bottom:334.400000pt;}
.y45{bottom:334.933333pt;}
.ybe{bottom:335.200000pt;}
.y6d{bottom:339.600000pt;}
.y131{bottom:342.533333pt;}
.y109{bottom:345.200000pt;}
.y1a{bottom:346.981600pt;}
.y96{bottom:352.000000pt;}
.ye4{bottom:352.400000pt;}
.y44{bottom:352.533333pt;}
.ybd{bottom:352.800000pt;}
.y6c{bottom:357.600000pt;}
.y130{bottom:359.733333pt;}
.y108{bottom:362.400000pt;}
.y19{bottom:364.314933pt;}
.y95{bottom:369.600000pt;}
.ye3{bottom:369.866667pt;}
.y43{bottom:370.133333pt;}
.ybc{bottom:370.400000pt;}
.y6b{bottom:375.600000pt;}
.y12f{bottom:376.933333pt;}
.y107{bottom:379.600000pt;}
.y18{bottom:381.648267pt;}
.y94{bottom:387.200000pt;}
.ye2{bottom:387.333333pt;}
.y42{bottom:387.733333pt;}
.ybb{bottom:388.000000pt;}
.y6a{bottom:393.600000pt;}
.y12e{bottom:394.133333pt;}
.y106{bottom:396.800000pt;}
.y17{bottom:398.981600pt;}
.y93{bottom:404.800000pt;}
.y41{bottom:405.333333pt;}
.yba{bottom:405.600000pt;}
.y12d{bottom:411.333333pt;}
.y69{bottom:411.600000pt;}
.y105{bottom:414.000000pt;}
.y16{bottom:416.314933pt;}
.ye1{bottom:422.266667pt;}
.y92{bottom:422.400000pt;}
.y40{bottom:422.933333pt;}
.yb9{bottom:423.200000pt;}
.y12c{bottom:428.533333pt;}
.y68{bottom:429.600000pt;}
.y104{bottom:431.200000pt;}
.y15{bottom:433.648267pt;}
.ye0{bottom:439.733333pt;}
.y91{bottom:440.000000pt;}
.y3f{bottom:440.533333pt;}
.yb8{bottom:440.800000pt;}
.y12b{bottom:445.733333pt;}
.y67{bottom:447.600000pt;}
.y103{bottom:448.400000pt;}
.y14{bottom:450.981600pt;}
.ydf{bottom:457.200000pt;}
.y90{bottom:457.600000pt;}
.y3e{bottom:458.133333pt;}
.yb7{bottom:458.400000pt;}
.y12a{bottom:462.933333pt;}
.y66{bottom:465.600000pt;}
.y13{bottom:468.314933pt;}
.yde{bottom:474.666667pt;}
.y8f{bottom:475.200000pt;}
.y3d{bottom:475.733333pt;}
.y129{bottom:480.133333pt;}
.y102{bottom:482.800000pt;}
.y65{bottom:483.600000pt;}
.y12{bottom:485.648267pt;}
.ydd{bottom:492.133333pt;}
.y8e{bottom:492.800000pt;}
.y3c{bottom:493.333333pt;}
.yb6{bottom:495.466667pt;}
.y128{bottom:497.333333pt;}
.y101{bottom:500.000000pt;}
.y64{bottom:501.600000pt;}
.y11{bottom:502.981600pt;}
.ydc{bottom:509.600000pt;}
.y8d{bottom:510.400000pt;}
.y3b{bottom:510.933333pt;}
.yb5{bottom:512.933333pt;}
.y127{bottom:514.666667pt;}
.y100{bottom:517.200000pt;}
.y63{bottom:519.600000pt;}
.y10{bottom:520.314933pt;}
.ydb{bottom:527.066667pt;}
.y8c{bottom:528.000000pt;}
.y3a{bottom:528.533333pt;}
.yb4{bottom:530.400000pt;}
.y126{bottom:532.000000pt;}
.yff{bottom:534.400000pt;}
.y62{bottom:537.600000pt;}
.yf{bottom:537.648267pt;}
.yda{bottom:544.533333pt;}
.y8b{bottom:545.600000pt;}
.y39{bottom:546.133333pt;}
.yb3{bottom:547.866667pt;}
.y125{bottom:549.333333pt;}
.yfe{bottom:551.600000pt;}
.ye{bottom:554.981600pt;}
.y61{bottom:555.600000pt;}
.yd9{bottom:562.000000pt;}
.y8a{bottom:563.200000pt;}
.y38{bottom:563.733333pt;}
.yb2{bottom:565.333333pt;}
.y124{bottom:566.666667pt;}
.yfd{bottom:568.800000pt;}
.yd{bottom:572.314933pt;}
.yd8{bottom:579.466667pt;}
.y89{bottom:580.800000pt;}
.y37{bottom:581.333333pt;}
.yb1{bottom:582.800000pt;}
.y123{bottom:584.000000pt;}
.yfc{bottom:586.000000pt;}
.yc{bottom:589.648267pt;}
.y60{bottom:593.333333pt;}
.yd7{bottom:596.933333pt;}
.y88{bottom:598.400000pt;}
.y36{bottom:598.933333pt;}
.yb0{bottom:600.266667pt;}
.y122{bottom:601.333333pt;}
.yfb{bottom:603.200000pt;}
.yb{bottom:606.981600pt;}
.y5f{bottom:611.200000pt;}
.yd6{bottom:614.400000pt;}
.y87{bottom:616.000000pt;}
.y35{bottom:616.533333pt;}
.yaf{bottom:617.733333pt;}
.y121{bottom:618.666667pt;}
.yfa{bottom:620.400000pt;}
.ya{bottom:624.314933pt;}
.y5e{bottom:629.066667pt;}
.yd5{bottom:631.866667pt;}
.y86{bottom:633.600000pt;}
.y34{bottom:634.133333pt;}
.yae{bottom:635.200000pt;}
.y120{bottom:636.000000pt;}
.yf9{bottom:637.600000pt;}
.y9{bottom:641.648267pt;}
.y5d{bottom:646.933333pt;}
.yd4{bottom:649.333333pt;}
.y85{bottom:651.200000pt;}
.y33{bottom:651.733333pt;}
.yad{bottom:652.666667pt;}
.y11f{bottom:653.333333pt;}
.yf8{bottom:654.800000pt;}
.y8{bottom:658.981600pt;}
.y5c{bottom:664.800000pt;}
.yd3{bottom:666.800000pt;}
.y84{bottom:668.800000pt;}
.y32{bottom:669.333333pt;}
.yac{bottom:670.133333pt;}
.y11e{bottom:670.666667pt;}
.yf7{bottom:672.000000pt;}
.y7{bottom:676.314933pt;}
.y5b{bottom:682.666667pt;}
.yd2{bottom:684.266667pt;}
.y83{bottom:686.400000pt;}
.y31{bottom:686.933333pt;}
.yab{bottom:687.600000pt;}
.y11d{bottom:688.000000pt;}
.yf6{bottom:689.200000pt;}
.y6{bottom:693.648267pt;}
.y5a{bottom:700.533333pt;}
.yd1{bottom:701.733333pt;}
.y82{bottom:704.000000pt;}
.y30{bottom:704.533333pt;}
.yaa{bottom:705.066667pt;}
.y11c{bottom:705.333333pt;}
.yf5{bottom:706.400000pt;}
.y5{bottom:710.981600pt;}
.y59{bottom:718.400000pt;}
.yd0{bottom:719.200000pt;}
.y81{bottom:721.600000pt;}
.y2f{bottom:722.133333pt;}
.ya9{bottom:722.533333pt;}
.y11b{bottom:722.666667pt;}
.yf4{bottom:723.600000pt;}
.y58{bottom:736.266667pt;}
.ycf{bottom:736.666667pt;}
.y80{bottom:739.200000pt;}
.y2e{bottom:739.733333pt;}
.ya8{bottom:740.000000pt;}
.yf3{bottom:740.800000pt;}
.y57{bottom:754.133333pt;}
.y7f{bottom:756.800000pt;}
.y2d{bottom:757.333333pt;}
.ya7{bottom:757.466667pt;}
.yf2{bottom:758.000000pt;}
.y4{bottom:770.666667pt;}
.yce{bottom:771.600000pt;}
.y56{bottom:772.000000pt;}
.y7e{bottom:774.400000pt;}
.y11a{bottom:774.666667pt;}
.y2c{bottom:774.933333pt;}
.yf1{bottom:775.200000pt;}
.ycd{bottom:789.066667pt;}
.y55{bottom:789.866667pt;}
.y7d{bottom:792.000000pt;}
.ya6{bottom:792.400000pt;}
.y2b{bottom:792.533333pt;}
.y3{bottom:797.333333pt;}
.ycc{bottom:806.533333pt;}
.y54{bottom:807.733333pt;}
.y119{bottom:809.333333pt;}
.y7c{bottom:809.600000pt;}
.ya5{bottom:809.866667pt;}
.y2a{bottom:810.133333pt;}
.ycb{bottom:824.000000pt;}
.y53{bottom:825.600000pt;}
.y118{bottom:826.666667pt;}
.y7b{bottom:826.800000pt;}
.ya4{bottom:826.933333pt;}
.y29{bottom:827.066667pt;}
.h4{height:35.546875pt;}
.h1{height:45.286458pt;}
.h2{height:55.953125pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x3{left:73.240000pt;}
.x4{left:86.466667pt;}
.x8{left:100.000000pt;}
.x6{left:113.228400pt;}
.x2{left:119.986667pt;}
.x7{left:126.455067pt;}
.x9{left:160.535067pt;}
.x5{left:556.250000pt;}
}




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