
    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_e89be6c5f3fe298f38b1fffb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_dece0b2317407432381df66d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690430;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_7bbbb93e5a69bdeba9f67479.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a744e816ca64714469510b12.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_2cf8daff9ff08cb2a42b4685.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_4d6e227af3b23a065aa2abb9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_bd641a5385fcdd278996ff15.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892578;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_44fa1b649eb3913d5fa1275a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_2eab6dbca5c134cca16bb613.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_dad28ea917b8c242b4495e32.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-74.880000px;}
.v3{vertical-align:-70.740000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-1.134000px;}
.lsa{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.092400px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls13{letter-spacing:0.020160px;}
.ls7{letter-spacing:0.034560px;}
.ls2{letter-spacing:0.118080px;}
.ls9{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.178560px;}
.ls8{letter-spacing:0.452160px;}
.ls4{letter-spacing:0.630720px;}
.ls0{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.809280px;}
.lsd{letter-spacing:1.797120px;}
.ls15{letter-spacing:19.198560px;}
.ls3{letter-spacing:21.433440px;}
.lsf{letter-spacing:40.625280px;}
.ls14{letter-spacing:47.998560px;}
.ls12{letter-spacing:74.304000px;}
.lse{letter-spacing:91.596000px;}
.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;}
}
.ws1{word-spacing:-29.880000px;}
.ws2{word-spacing:-24.120000px;}
.ws5{word-spacing:-20.880000px;}
.ws3{word-spacing:-19.440000px;}
.ws9{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.948000px;}
.wsb{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.400000px;}
.ws4{word-spacing:-0.063360px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-3.352800px;}
._0{margin-left:-1.728000px;}
._1{width:1.094400px;}
._2{width:2.839200px;}
._4{width:4.214880px;}
._9{width:5.889600px;}
._b{width:7.004160px;}
._5{width:8.225280px;}
._6{width:9.984960px;}
._7{width:11.612160px;}
._8{width:12.788160px;}
._a{width:13.953600px;}
._14{width:15.425760px;}
._1f{width:16.635840px;}
._17{width:17.674080px;}
._f{width:18.850080px;}
._11{width:19.909440px;}
._10{width:21.418560px;}
._e{width:23.103360px;}
._d{width:24.384960px;}
._c{width:25.799040px;}
._13{width:27.784320px;}
._12{width:29.031360px;}
._1b{width:30.447360px;}
._15{width:31.904640px;}
._16{width:32.967360px;}
._1a{width:34.355520px;}
._18{width:38.462400px;}
._19{width:39.620160px;}
._1d{width:41.882400px;}
._1c{width:43.044000px;}
._1e{width:847.488480px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:50.400000px;}
.fs0{font-size:57.600000px;}
.fs1{font-size:60.480000px;}
.fs8{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs9{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y11d{bottom:3.960000px;}
.y115{bottom:4.680000px;}
.y123{bottom:5.040000px;}
.y11c{bottom:23.040000px;}
.y12b{bottom:23.400000px;}
.y118{bottom:23.760000px;}
.y122{bottom:24.165000px;}
.y11b{bottom:42.120000px;}
.y127{bottom:42.150000px;}
.y12a{bottom:42.480000px;}
.y117{bottom:42.840000px;}
.y121{bottom:42.885000px;}
.y11a{bottom:61.230000px;}
.y12c{bottom:61.560000px;}
.y129{bottom:61.590000px;}
.y125{bottom:61.920000px;}
.y120{bottom:61.965000px;}
.y12e{bottom:80.640000px;}
.y11f{bottom:81.045000px;}
.y2{bottom:111.276000px;}
.y103{bottom:140.112000px;}
.y7a{bottom:142.992000px;}
.yea{bottom:144.072000px;}
.ycf{bottom:154.875000px;}
.y112{bottom:155.595000px;}
.y66{bottom:156.675000px;}
.y33{bottom:158.115000px;}
.y15d{bottom:158.475000px;}
.y102{bottom:158.835000px;}
.y79{bottom:161.715000px;}
.ye9{bottom:163.155000px;}
.y9d{bottom:168.915000px;}
.yce{bottom:173.595000px;}
.y111{bottom:174.675000px;}
.y65{bottom:175.755000px;}
.y32{bottom:176.835000px;}
.y15c{bottom:177.195000px;}
.y101{bottom:177.915000px;}
.y132{bottom:178.275000px;}
.y78{bottom:180.795000px;}
.ye8{bottom:182.235000px;}
.y9c{bottom:187.995000px;}
.ycd{bottom:192.675000px;}
.y110{bottom:193.755000px;}
.y64{bottom:194.475000px;}
.y31{bottom:195.915000px;}
.y15b{bottom:196.275000px;}
.y100{bottom:196.995000px;}
.y77{bottom:199.875000px;}
.ye7{bottom:200.955000px;}
.y9b{bottom:207.075000px;}
.ycc{bottom:211.755000px;}
.y10f{bottom:212.475000px;}
.y63{bottom:213.555000px;}
.y30{bottom:214.995000px;}
.y15a{bottom:215.355000px;}
.yff{bottom:215.715000px;}
.y131{bottom:216.075000px;}
.y76{bottom:218.595000px;}
.ye6{bottom:220.035000px;}
.y9a{bottom:225.795000px;}
.ycb{bottom:230.475000px;}
.y10e{bottom:231.555000px;}
.y62{bottom:232.635000px;}
.y2f{bottom:234.435000px;}
.yfe{bottom:234.795000px;}
.y130{bottom:235.155000px;}
.y75{bottom:237.675000px;}
.ye5{bottom:239.115000px;}
.y99{bottom:244.515000px;}
.yca{bottom:249.555000px;}
.y10d{bottom:250.635000px;}
.y61{bottom:251.715000px;}
.y159{bottom:253.155000px;}
.yfd{bottom:253.875000px;}
.y74{bottom:256.755000px;}
.y2e{bottom:257.835000px;}
.y98{bottom:262.155000px;}
.yc9{bottom:268.665000px;}
.y10c{bottom:269.385000px;}
.y60{bottom:270.465000px;}
.y158{bottom:272.265000px;}
.yfc{bottom:272.985000px;}
.y73{bottom:275.865000px;}
.y2d{bottom:276.585000px;}
.ye4{bottom:276.945000px;}
.y97{bottom:277.305000px;}
.yc8{bottom:287.745000px;}
.y10b{bottom:288.465000px;}
.y5f{bottom:289.545000px;}
.y157{bottom:291.345000px;}
.yfb{bottom:291.705000px;}
.y12f{bottom:292.065000px;}
.y2c{bottom:293.865000px;}
.y184{bottom:294.225000px;}
.y72{bottom:294.585000px;}
.ye3{bottom:296.025000px;}
.yc7{bottom:306.465000px;}
.y10a{bottom:307.545000px;}
.y12d{bottom:307.905000px;}
.y5e{bottom:308.625000px;}
.y156{bottom:310.065000px;}
.yfa{bottom:310.785000px;}
.y2b{bottom:311.505000px;}
.y71{bottom:313.665000px;}
.ye2{bottom:315.105000px;}
.yc6{bottom:325.545000px;}
.y109{bottom:326.265000px;}
.y5d{bottom:327.345000px;}
.y183{bottom:328.785000px;}
.y155{bottom:329.145000px;}
.yf9{bottom:329.865000px;}
.y2a{bottom:330.945000px;}
.y70{bottom:332.745000px;}
.ye1{bottom:333.825000px;}
.yc5{bottom:344.625000px;}
.y108{bottom:344.985000px;}
.y182{bottom:346.065000px;}
.y5c{bottom:346.425000px;}
.y154{bottom:348.225000px;}
.yf8{bottom:348.585000px;}
.y6f{bottom:351.465000px;}
.ye0{bottom:352.545000px;}
.y29{bottom:352.905000px;}
.yc4{bottom:363.345000px;}
.y107{bottom:364.425000px;}
.y5b{bottom:365.505000px;}
.y153{bottom:367.305000px;}
.yf7{bottom:367.665000px;}
.y6e{bottom:370.545000px;}
.y28{bottom:371.625000px;}
.ydf{bottom:371.985000px;}
.y181{bottom:380.625000px;}
.yc3{bottom:382.425000px;}
.y106{bottom:383.145000px;}
.y5a{bottom:384.225000px;}
.y152{bottom:386.025000px;}
.yf6{bottom:386.745000px;}
.y27{bottom:388.545000px;}
.y6d{bottom:389.625000px;}
.yde{bottom:390.705000px;}
.y180{bottom:397.905000px;}
.y105{bottom:400.470000px;}
.yc2{bottom:401.550000px;}
.y59{bottom:403.350000px;}
.y151{bottom:405.150000px;}
.yf5{bottom:405.510000px;}
.y26{bottom:405.870000px;}
.y6c{bottom:408.390000px;}
.ydd{bottom:409.830000px;}
.y17f{bottom:415.230000px;}
.y104{bottom:415.590000px;}
.yc1{bottom:420.270000px;}
.y58{bottom:422.430000px;}
.y25{bottom:423.150000px;}
.y150{bottom:424.230000px;}
.yf4{bottom:424.590000px;}
.y6b{bottom:427.470000px;}
.ydc{bottom:428.910000px;}
.y17e{bottom:432.510000px;}
.yc0{bottom:439.350000px;}
.y24{bottom:440.790000px;}
.y57{bottom:441.510000px;}
.y14f{bottom:442.950000px;}
.yf3{bottom:443.670000px;}
.y6a{bottom:446.550000px;}
.ydb{bottom:447.990000px;}
.y17d{bottom:449.430000px;}
.ybf{bottom:458.430000px;}
.y23{bottom:459.510000px;}
.y88{bottom:460.230000px;}
.y56{bottom:460.590000px;}
.y14e{bottom:462.030000px;}
.yf2{bottom:462.750000px;}
.y69{bottom:465.630000px;}
.yda{bottom:466.710000px;}
.y22{bottom:476.790000px;}
.ybe{bottom:477.510000px;}
.y87{bottom:479.310000px;}
.y55{bottom:480.750000px;}
.y14d{bottom:481.110000px;}
.yf1{bottom:481.470000px;}
.y128{bottom:483.990000px;}
.y68{bottom:484.350000px;}
.yd9{bottom:485.790000px;}
.y21{bottom:494.070000px;}
.ybd{bottom:496.590000px;}
.y86{bottom:498.390000px;}
.y14c{bottom:499.830000px;}
.y54{bottom:500.550000px;}
.y17c{bottom:501.270000px;}
.yd2{bottom:503.070000px;}
.y67{bottom:503.430000px;}
.yd8{bottom:504.870000px;}
.y20{bottom:511.350000px;}
.y85{bottom:517.110000px;}
.y17b{bottom:518.550000px;}
.y14b{bottom:518.910000px;}
.yf0{bottom:519.630000px;}
.yd1{bottom:522.150000px;}
.yd7{bottom:523.590000px;}
.y53{bottom:523.950000px;}
.y1f{bottom:528.630000px;}
.y17a{bottom:535.860000px;}
.y84{bottom:536.220000px;}
.ybc{bottom:537.660000px;}
.yef{bottom:538.020000px;}
.yd0{bottom:541.620000px;}
.yd6{bottom:542.700000px;}
.y52{bottom:543.060000px;}
.y1e{bottom:545.580000px;}
.y179{bottom:553.140000px;}
.y83{bottom:555.300000px;}
.ybb{bottom:556.740000px;}
.yee{bottom:557.100000px;}
.yd5{bottom:561.780000px;}
.y51{bottom:562.140000px;}
.y1d{bottom:562.860000px;}
.y178{bottom:570.420000px;}
.y82{bottom:574.020000px;}
.yba{bottom:575.820000px;}
.yed{bottom:576.180000px;}
.y1c{bottom:580.500000px;}
.y50{bottom:581.220000px;}
.y177{bottom:587.700000px;}
.y81{bottom:593.100000px;}
.yec{bottom:593.820000px;}
.yb9{bottom:594.540000px;}
.y14a{bottom:594.900000px;}
.y1b{bottom:599.220000px;}
.y4f{bottom:599.940000px;}
.y176{bottom:604.980000px;}
.yeb{bottom:608.580000px;}
.y80{bottom:612.180000px;}
.yb8{bottom:613.620000px;}
.y149{bottom:613.980000px;}
.y1a{bottom:616.500000px;}
.yd4{bottom:616.860000px;}
.y4e{bottom:619.020000px;}
.y175{bottom:622.260000px;}
.y7f{bottom:631.260000px;}
.yd3{bottom:631.980000px;}
.yb7{bottom:632.700000px;}
.y19{bottom:633.780000px;}
.y4d{bottom:638.100000px;}
.y174{bottom:639.180000px;}
.y126{bottom:640.620000px;}
.y7e{bottom:649.980000px;}
.y18{bottom:651.060000px;}
.yb6{bottom:651.780000px;}
.y173{bottom:656.460000px;}
.y4c{bottom:656.820000px;}
.y17{bottom:668.370000px;}
.y7d{bottom:669.090000px;}
.yb5{bottom:670.530000px;}
.y148{bottom:670.890000px;}
.y172{bottom:673.770000px;}
.y96{bottom:674.130000px;}
.y4b{bottom:675.930000px;}
.y16{bottom:685.650000px;}
.yb3{bottom:688.170000px;}
.y7c{bottom:689.250000px;}
.y147{bottom:689.610000px;}
.y171{bottom:691.050000px;}
.y95{bottom:693.210000px;}
.y4a{bottom:695.010000px;}
.y124{bottom:699.330000px;}
.y15{bottom:702.570000px;}
.yb2{bottom:706.890000px;}
.y170{bottom:708.330000px;}
.y146{bottom:708.690000px;}
.y7b{bottom:709.410000px;}
.y94{bottom:712.290000px;}
.y49{bottom:714.090000px;}
.y14{bottom:719.850000px;}
.yb4{bottom:722.010000px;}
.y16f{bottom:725.610000px;}
.yb1{bottom:725.970000px;}
.y145{bottom:727.770000px;}
.y93{bottom:731.010000px;}
.y48{bottom:732.810000px;}
.y13{bottom:737.130000px;}
.y16e{bottom:742.890000px;}
.yb0{bottom:745.050000px;}
.y144{bottom:746.850000px;}
.y92{bottom:750.090000px;}
.y47{bottom:751.890000px;}
.y12{bottom:754.410000px;}
.y16d{bottom:760.170000px;}
.yaf{bottom:764.130000px;}
.y143{bottom:765.570000px;}
.y91{bottom:769.170000px;}
.y46{bottom:770.970000px;}
.y11{bottom:771.690000px;}
.y16c{bottom:777.450000px;}
.y11e{bottom:777.810000px;}
.yae{bottom:782.850000px;}
.y142{bottom:784.650000px;}
.y90{bottom:788.250000px;}
.y10{bottom:788.970000px;}
.y45{bottom:789.690000px;}
.y16b{bottom:794.730000px;}
.yad{bottom:801.975000px;}
.y141{bottom:803.775000px;}
.yf{bottom:806.655000px;}
.y8f{bottom:807.015000px;}
.y44{bottom:808.815000px;}
.y16a{bottom:812.055000px;}
.yac{bottom:821.055000px;}
.y140{bottom:822.495000px;}
.ye{bottom:826.095000px;}
.y43{bottom:827.895000px;}
.y169{bottom:829.335000px;}
.yab{bottom:839.775000px;}
.y13f{bottom:841.575000px;}
.y8e{bottom:845.175000px;}
.y168{bottom:846.255000px;}
.y42{bottom:846.615000px;}
.yd{bottom:848.055000px;}
.yaa{bottom:858.855000px;}
.y13e{bottom:860.655000px;}
.y167{bottom:863.535000px;}
.y8d{bottom:863.895000px;}
.y41{bottom:865.695000px;}
.yc{bottom:867.495000px;}
.y119{bottom:875.415000px;}
.ya9{bottom:877.935000px;}
.y13d{bottom:879.735000px;}
.y166{bottom:881.175000px;}
.y8c{bottom:882.975000px;}
.y40{bottom:884.775000px;}
.yb{bottom:888.375000px;}
.ya8{bottom:896.655000px;}
.y13c{bottom:898.455000px;}
.y165{bottom:900.255000px;}
.y8b{bottom:902.055000px;}
.y3f{bottom:903.855000px;}
.ya{bottom:908.895000px;}
.ya7{bottom:915.735000px;}
.y13b{bottom:917.535000px;}
.y8a{bottom:920.775000px;}
.y3e{bottom:922.575000px;}
.y9{bottom:929.775000px;}
.ya6{bottom:934.845000px;}
.y13a{bottom:936.645000px;}
.y164{bottom:939.885000px;}
.y89{bottom:940.245000px;}
.y3d{bottom:941.685000px;}
.y8{bottom:952.485000px;}
.y116{bottom:953.205000px;}
.ya5{bottom:953.925000px;}
.y139{bottom:955.365000px;}
.y163{bottom:958.965000px;}
.y3c{bottom:960.765000px;}
.ya4{bottom:972.645000px;}
.y138{bottom:974.445000px;}
.y7{bottom:974.805000px;}
.y162{bottom:978.045000px;}
.y3b{bottom:979.485000px;}
.ya3{bottom:991.725000px;}
.y137{bottom:993.525000px;}
.y161{bottom:996.765000px;}
.y3a{bottom:998.565000px;}
.y6{bottom:1000.365000px;}
.ya2{bottom:1010.805000px;}
.y136{bottom:1012.245000px;}
.y114{bottom:1012.605000px;}
.y160{bottom:1015.845000px;}
.y39{bottom:1017.645000px;}
.ya1{bottom:1029.525000px;}
.y135{bottom:1031.325000px;}
.y5{bottom:1034.205000px;}
.y15f{bottom:1034.925000px;}
.y38{bottom:1036.365000px;}
.y113{bottom:1038.165000px;}
.ya0{bottom:1048.605000px;}
.y134{bottom:1050.405000px;}
.y15e{bottom:1054.005000px;}
.y37{bottom:1055.445000px;}
.y4{bottom:1067.730000px;}
.y133{bottom:1069.530000px;}
.y36{bottom:1074.570000px;}
.y9f{bottom:1088.250000px;}
.y35{bottom:1093.650000px;}
.y3{bottom:1101.570000px;}
.y9e{bottom:1108.050000px;}
.y34{bottom:1112.370000px;}
.y1{bottom:1141.530000px;}
.h12{height:19.800000px;}
.h1b{height:42.229688px;}
.h19{height:46.251562px;}
.h2{height:56.531250px;}
.h17{height:56.916000px;}
.h13{height:57.600000px;}
.hc{height:59.328281px;}
.h3{height:59.357813px;}
.h1a{height:62.163910px;}
.ha{height:65.010937px;}
.he{height:66.757500px;}
.h10{height:68.084282px;}
.h9{height:70.664062px;}
.h11{height:72.562500px;}
.hf{height:74.953125px;}
.h14{height:75.996000px;}
.h6{height:76.317188px;}
.h18{height:76.356000px;}
.h16{height:76.680000px;}
.h7{height:76.824844px;}
.h8{height:76.944844px;}
.hb{height:78.367500px;}
.h4{height:80.944453px;}
.hd{height:86.945625px;}
.h15{height:95.796000px;}
.h5{height:117.302344px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:126.396000px;}
.w4{width:485.820000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.920000px;}
.x2{left:123.155987px;}
.x9{left:130.715987px;}
.x7{left:133.991987px;}
.x1{left:139.031987px;}
.x19{left:140.112000px;}
.x4{left:145.151987px;}
.xd{left:150.194987px;}
.x12{left:155.234987px;}
.x1c{left:157.034987px;}
.xc{left:177.194987px;}
.xf{left:241.304987px;}
.x6{left:254.984987px;}
.x5{left:256.784987px;}
.x1b{left:267.585000px;}
.x11{left:330.629987px;}
.x16{left:333.149987px;}
.x14{left:356.189987px;}
.x18{left:358.709987px;}
.xa{left:361.589987px;}
.x8{left:365.189987px;}
.x3{left:447.659987px;}
.x17{left:612.974987px;}
.xe{left:647.894987px;}
.x10{left:659.414987px;}
.x15{left:700.844987px;}
.x13{left:704.084987px;}
.xb{left:751.604987px;}
@media print{
.v2{vertical-align:-66.560000pt;}
.v3{vertical-align:-62.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-1.008000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.082133pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls13{letter-spacing:0.017920pt;}
.ls7{letter-spacing:0.030720pt;}
.ls2{letter-spacing:0.104960pt;}
.ls9{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.158720pt;}
.ls8{letter-spacing:0.401920pt;}
.ls4{letter-spacing:0.560640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.719360pt;}
.lsd{letter-spacing:1.597440pt;}
.ls15{letter-spacing:17.065387pt;}
.ls3{letter-spacing:19.051947pt;}
.lsf{letter-spacing:36.111360pt;}
.ls14{letter-spacing:42.665387pt;}
.ls12{letter-spacing:66.048000pt;}
.lse{letter-spacing:81.418667pt;}
.ws1{word-spacing:-26.560000pt;}
.ws2{word-spacing:-21.440000pt;}
.ws5{word-spacing:-18.560000pt;}
.ws3{word-spacing:-17.280000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.176000pt;}
.wsb{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.wsa{word-spacing:-12.800000pt;}
.ws4{word-spacing:-0.056320pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-2.980267pt;}
._0{margin-left:-1.536000pt;}
._1{width:0.972800pt;}
._2{width:2.523733pt;}
._4{width:3.746560pt;}
._9{width:5.235200pt;}
._b{width:6.225920pt;}
._5{width:7.311360pt;}
._6{width:8.875520pt;}
._7{width:10.321920pt;}
._8{width:11.367253pt;}
._a{width:12.403200pt;}
._14{width:13.711787pt;}
._1f{width:14.787413pt;}
._17{width:15.710293pt;}
._f{width:16.755627pt;}
._11{width:17.697280pt;}
._10{width:19.038720pt;}
._e{width:20.536320pt;}
._d{width:21.675520pt;}
._c{width:22.932480pt;}
._13{width:24.697173pt;}
._12{width:25.805653pt;}
._1b{width:27.064320pt;}
._15{width:28.359680pt;}
._16{width:29.304320pt;}
._1a{width:30.538240pt;}
._18{width:34.188800pt;}
._19{width:35.217920pt;}
._1d{width:37.228800pt;}
._1c{width:38.261333pt;}
._1e{width:753.323093pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:51.200000pt;}
.fs1{font-size:53.760000pt;}
.fs8{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs9{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y11d{bottom:3.520000pt;}
.y115{bottom:4.160000pt;}
.y123{bottom:4.480000pt;}
.y11c{bottom:20.480000pt;}
.y12b{bottom:20.800000pt;}
.y118{bottom:21.120000pt;}
.y122{bottom:21.480000pt;}
.y11b{bottom:37.440000pt;}
.y127{bottom:37.466667pt;}
.y12a{bottom:37.760000pt;}
.y117{bottom:38.080000pt;}
.y121{bottom:38.120000pt;}
.y11a{bottom:54.426667pt;}
.y12c{bottom:54.720000pt;}
.y129{bottom:54.746667pt;}
.y125{bottom:55.040000pt;}
.y120{bottom:55.080000pt;}
.y12e{bottom:71.680000pt;}
.y11f{bottom:72.040000pt;}
.y2{bottom:98.912000pt;}
.y103{bottom:124.544000pt;}
.y7a{bottom:127.104000pt;}
.yea{bottom:128.064000pt;}
.ycf{bottom:137.666667pt;}
.y112{bottom:138.306667pt;}
.y66{bottom:139.266667pt;}
.y33{bottom:140.546667pt;}
.y15d{bottom:140.866667pt;}
.y102{bottom:141.186667pt;}
.y79{bottom:143.746667pt;}
.ye9{bottom:145.026667pt;}
.y9d{bottom:150.146667pt;}
.yce{bottom:154.306667pt;}
.y111{bottom:155.266667pt;}
.y65{bottom:156.226667pt;}
.y32{bottom:157.186667pt;}
.y15c{bottom:157.506667pt;}
.y101{bottom:158.146667pt;}
.y132{bottom:158.466667pt;}
.y78{bottom:160.706667pt;}
.ye8{bottom:161.986667pt;}
.y9c{bottom:167.106667pt;}
.ycd{bottom:171.266667pt;}
.y110{bottom:172.226667pt;}
.y64{bottom:172.866667pt;}
.y31{bottom:174.146667pt;}
.y15b{bottom:174.466667pt;}
.y100{bottom:175.106667pt;}
.y77{bottom:177.666667pt;}
.ye7{bottom:178.626667pt;}
.y9b{bottom:184.066667pt;}
.ycc{bottom:188.226667pt;}
.y10f{bottom:188.866667pt;}
.y63{bottom:189.826667pt;}
.y30{bottom:191.106667pt;}
.y15a{bottom:191.426667pt;}
.yff{bottom:191.746667pt;}
.y131{bottom:192.066667pt;}
.y76{bottom:194.306667pt;}
.ye6{bottom:195.586667pt;}
.y9a{bottom:200.706667pt;}
.ycb{bottom:204.866667pt;}
.y10e{bottom:205.826667pt;}
.y62{bottom:206.786667pt;}
.y2f{bottom:208.386667pt;}
.yfe{bottom:208.706667pt;}
.y130{bottom:209.026667pt;}
.y75{bottom:211.266667pt;}
.ye5{bottom:212.546667pt;}
.y99{bottom:217.346667pt;}
.yca{bottom:221.826667pt;}
.y10d{bottom:222.786667pt;}
.y61{bottom:223.746667pt;}
.y159{bottom:225.026667pt;}
.yfd{bottom:225.666667pt;}
.y74{bottom:228.226667pt;}
.y2e{bottom:229.186667pt;}
.y98{bottom:233.026667pt;}
.yc9{bottom:238.813333pt;}
.y10c{bottom:239.453333pt;}
.y60{bottom:240.413333pt;}
.y158{bottom:242.013333pt;}
.yfc{bottom:242.653333pt;}
.y73{bottom:245.213333pt;}
.y2d{bottom:245.853333pt;}
.ye4{bottom:246.173333pt;}
.y97{bottom:246.493333pt;}
.yc8{bottom:255.773333pt;}
.y10b{bottom:256.413333pt;}
.y5f{bottom:257.373333pt;}
.y157{bottom:258.973333pt;}
.yfb{bottom:259.293333pt;}
.y12f{bottom:259.613333pt;}
.y2c{bottom:261.213333pt;}
.y184{bottom:261.533333pt;}
.y72{bottom:261.853333pt;}
.ye3{bottom:263.133333pt;}
.yc7{bottom:272.413333pt;}
.y10a{bottom:273.373333pt;}
.y12d{bottom:273.693333pt;}
.y5e{bottom:274.333333pt;}
.y156{bottom:275.613333pt;}
.yfa{bottom:276.253333pt;}
.y2b{bottom:276.893333pt;}
.y71{bottom:278.813333pt;}
.ye2{bottom:280.093333pt;}
.yc6{bottom:289.373333pt;}
.y109{bottom:290.013333pt;}
.y5d{bottom:290.973333pt;}
.y183{bottom:292.253333pt;}
.y155{bottom:292.573333pt;}
.yf9{bottom:293.213333pt;}
.y2a{bottom:294.173333pt;}
.y70{bottom:295.773333pt;}
.ye1{bottom:296.733333pt;}
.yc5{bottom:306.333333pt;}
.y108{bottom:306.653333pt;}
.y182{bottom:307.613333pt;}
.y5c{bottom:307.933333pt;}
.y154{bottom:309.533333pt;}
.yf8{bottom:309.853333pt;}
.y6f{bottom:312.413333pt;}
.ye0{bottom:313.373333pt;}
.y29{bottom:313.693333pt;}
.yc4{bottom:322.973333pt;}
.y107{bottom:323.933333pt;}
.y5b{bottom:324.893333pt;}
.y153{bottom:326.493333pt;}
.yf7{bottom:326.813333pt;}
.y6e{bottom:329.373333pt;}
.y28{bottom:330.333333pt;}
.ydf{bottom:330.653333pt;}
.y181{bottom:338.333333pt;}
.yc3{bottom:339.933333pt;}
.y106{bottom:340.573333pt;}
.y5a{bottom:341.533333pt;}
.y152{bottom:343.133333pt;}
.yf6{bottom:343.773333pt;}
.y27{bottom:345.373333pt;}
.y6d{bottom:346.333333pt;}
.yde{bottom:347.293333pt;}
.y180{bottom:353.693333pt;}
.y105{bottom:355.973333pt;}
.yc2{bottom:356.933333pt;}
.y59{bottom:358.533333pt;}
.y151{bottom:360.133333pt;}
.yf5{bottom:360.453333pt;}
.y26{bottom:360.773333pt;}
.y6c{bottom:363.013333pt;}
.ydd{bottom:364.293333pt;}
.y17f{bottom:369.093333pt;}
.y104{bottom:369.413333pt;}
.yc1{bottom:373.573333pt;}
.y58{bottom:375.493333pt;}
.y25{bottom:376.133333pt;}
.y150{bottom:377.093333pt;}
.yf4{bottom:377.413333pt;}
.y6b{bottom:379.973333pt;}
.ydc{bottom:381.253333pt;}
.y17e{bottom:384.453333pt;}
.yc0{bottom:390.533333pt;}
.y24{bottom:391.813333pt;}
.y57{bottom:392.453333pt;}
.y14f{bottom:393.733333pt;}
.yf3{bottom:394.373333pt;}
.y6a{bottom:396.933333pt;}
.ydb{bottom:398.213333pt;}
.y17d{bottom:399.493333pt;}
.ybf{bottom:407.493333pt;}
.y23{bottom:408.453333pt;}
.y88{bottom:409.093333pt;}
.y56{bottom:409.413333pt;}
.y14e{bottom:410.693333pt;}
.yf2{bottom:411.333333pt;}
.y69{bottom:413.893333pt;}
.yda{bottom:414.853333pt;}
.y22{bottom:423.813333pt;}
.ybe{bottom:424.453333pt;}
.y87{bottom:426.053333pt;}
.y55{bottom:427.333333pt;}
.y14d{bottom:427.653333pt;}
.yf1{bottom:427.973333pt;}
.y128{bottom:430.213333pt;}
.y68{bottom:430.533333pt;}
.yd9{bottom:431.813333pt;}
.y21{bottom:439.173333pt;}
.ybd{bottom:441.413333pt;}
.y86{bottom:443.013333pt;}
.y14c{bottom:444.293333pt;}
.y54{bottom:444.933333pt;}
.y17c{bottom:445.573333pt;}
.yd2{bottom:447.173333pt;}
.y67{bottom:447.493333pt;}
.yd8{bottom:448.773333pt;}
.y20{bottom:454.533333pt;}
.y85{bottom:459.653333pt;}
.y17b{bottom:460.933333pt;}
.y14b{bottom:461.253333pt;}
.yf0{bottom:461.893333pt;}
.yd1{bottom:464.133333pt;}
.yd7{bottom:465.413333pt;}
.y53{bottom:465.733333pt;}
.y1f{bottom:469.893333pt;}
.y17a{bottom:476.320000pt;}
.y84{bottom:476.640000pt;}
.ybc{bottom:477.920000pt;}
.yef{bottom:478.240000pt;}
.yd0{bottom:481.440000pt;}
.yd6{bottom:482.400000pt;}
.y52{bottom:482.720000pt;}
.y1e{bottom:484.960000pt;}
.y179{bottom:491.680000pt;}
.y83{bottom:493.600000pt;}
.ybb{bottom:494.880000pt;}
.yee{bottom:495.200000pt;}
.yd5{bottom:499.360000pt;}
.y51{bottom:499.680000pt;}
.y1d{bottom:500.320000pt;}
.y178{bottom:507.040000pt;}
.y82{bottom:510.240000pt;}
.yba{bottom:511.840000pt;}
.yed{bottom:512.160000pt;}
.y1c{bottom:516.000000pt;}
.y50{bottom:516.640000pt;}
.y177{bottom:522.400000pt;}
.y81{bottom:527.200000pt;}
.yec{bottom:527.840000pt;}
.yb9{bottom:528.480000pt;}
.y14a{bottom:528.800000pt;}
.y1b{bottom:532.640000pt;}
.y4f{bottom:533.280000pt;}
.y176{bottom:537.760000pt;}
.yeb{bottom:540.960000pt;}
.y80{bottom:544.160000pt;}
.yb8{bottom:545.440000pt;}
.y149{bottom:545.760000pt;}
.y1a{bottom:548.000000pt;}
.yd4{bottom:548.320000pt;}
.y4e{bottom:550.240000pt;}
.y175{bottom:553.120000pt;}
.y7f{bottom:561.120000pt;}
.yd3{bottom:561.760000pt;}
.yb7{bottom:562.400000pt;}
.y19{bottom:563.360000pt;}
.y4d{bottom:567.200000pt;}
.y174{bottom:568.160000pt;}
.y126{bottom:569.440000pt;}
.y7e{bottom:577.760000pt;}
.y18{bottom:578.720000pt;}
.yb6{bottom:579.360000pt;}
.y173{bottom:583.520000pt;}
.y4c{bottom:583.840000pt;}
.y17{bottom:594.106667pt;}
.y7d{bottom:594.746667pt;}
.yb5{bottom:596.026667pt;}
.y148{bottom:596.346667pt;}
.y172{bottom:598.906667pt;}
.y96{bottom:599.226667pt;}
.y4b{bottom:600.826667pt;}
.y16{bottom:609.466667pt;}
.yb3{bottom:611.706667pt;}
.y7c{bottom:612.666667pt;}
.y147{bottom:612.986667pt;}
.y171{bottom:614.266667pt;}
.y95{bottom:616.186667pt;}
.y4a{bottom:617.786667pt;}
.y124{bottom:621.626667pt;}
.y15{bottom:624.506667pt;}
.yb2{bottom:628.346667pt;}
.y170{bottom:629.626667pt;}
.y146{bottom:629.946667pt;}
.y7b{bottom:630.586667pt;}
.y94{bottom:633.146667pt;}
.y49{bottom:634.746667pt;}
.y14{bottom:639.866667pt;}
.yb4{bottom:641.786667pt;}
.y16f{bottom:644.986667pt;}
.yb1{bottom:645.306667pt;}
.y145{bottom:646.906667pt;}
.y93{bottom:649.786667pt;}
.y48{bottom:651.386667pt;}
.y13{bottom:655.226667pt;}
.y16e{bottom:660.346667pt;}
.yb0{bottom:662.266667pt;}
.y144{bottom:663.866667pt;}
.y92{bottom:666.746667pt;}
.y47{bottom:668.346667pt;}
.y12{bottom:670.586667pt;}
.y16d{bottom:675.706667pt;}
.yaf{bottom:679.226667pt;}
.y143{bottom:680.506667pt;}
.y91{bottom:683.706667pt;}
.y46{bottom:685.306667pt;}
.y11{bottom:685.946667pt;}
.y16c{bottom:691.066667pt;}
.y11e{bottom:691.386667pt;}
.yae{bottom:695.866667pt;}
.y142{bottom:697.466667pt;}
.y90{bottom:700.666667pt;}
.y10{bottom:701.306667pt;}
.y45{bottom:701.946667pt;}
.y16b{bottom:706.426667pt;}
.yad{bottom:712.866667pt;}
.y141{bottom:714.466667pt;}
.yf{bottom:717.026667pt;}
.y8f{bottom:717.346667pt;}
.y44{bottom:718.946667pt;}
.y16a{bottom:721.826667pt;}
.yac{bottom:729.826667pt;}
.y140{bottom:731.106667pt;}
.ye{bottom:734.306667pt;}
.y43{bottom:735.906667pt;}
.y169{bottom:737.186667pt;}
.yab{bottom:746.466667pt;}
.y13f{bottom:748.066667pt;}
.y8e{bottom:751.266667pt;}
.y168{bottom:752.226667pt;}
.y42{bottom:752.546667pt;}
.yd{bottom:753.826667pt;}
.yaa{bottom:763.426667pt;}
.y13e{bottom:765.026667pt;}
.y167{bottom:767.586667pt;}
.y8d{bottom:767.906667pt;}
.y41{bottom:769.506667pt;}
.yc{bottom:771.106667pt;}
.y119{bottom:778.146667pt;}
.ya9{bottom:780.386667pt;}
.y13d{bottom:781.986667pt;}
.y166{bottom:783.266667pt;}
.y8c{bottom:784.866667pt;}
.y40{bottom:786.466667pt;}
.yb{bottom:789.666667pt;}
.ya8{bottom:797.026667pt;}
.y13c{bottom:798.626667pt;}
.y165{bottom:800.226667pt;}
.y8b{bottom:801.826667pt;}
.y3f{bottom:803.426667pt;}
.ya{bottom:807.906667pt;}
.ya7{bottom:813.986667pt;}
.y13b{bottom:815.586667pt;}
.y8a{bottom:818.466667pt;}
.y3e{bottom:820.066667pt;}
.y9{bottom:826.466667pt;}
.ya6{bottom:830.973333pt;}
.y13a{bottom:832.573333pt;}
.y164{bottom:835.453333pt;}
.y89{bottom:835.773333pt;}
.y3d{bottom:837.053333pt;}
.y8{bottom:846.653333pt;}
.y116{bottom:847.293333pt;}
.ya5{bottom:847.933333pt;}
.y139{bottom:849.213333pt;}
.y163{bottom:852.413333pt;}
.y3c{bottom:854.013333pt;}
.ya4{bottom:864.573333pt;}
.y138{bottom:866.173333pt;}
.y7{bottom:866.493333pt;}
.y162{bottom:869.373333pt;}
.y3b{bottom:870.653333pt;}
.ya3{bottom:881.533333pt;}
.y137{bottom:883.133333pt;}
.y161{bottom:886.013333pt;}
.y3a{bottom:887.613333pt;}
.y6{bottom:889.213333pt;}
.ya2{bottom:898.493333pt;}
.y136{bottom:899.773333pt;}
.y114{bottom:900.093333pt;}
.y160{bottom:902.973333pt;}
.y39{bottom:904.573333pt;}
.ya1{bottom:915.133333pt;}
.y135{bottom:916.733333pt;}
.y5{bottom:919.293333pt;}
.y15f{bottom:919.933333pt;}
.y38{bottom:921.213333pt;}
.y113{bottom:922.813333pt;}
.ya0{bottom:932.093333pt;}
.y134{bottom:933.693333pt;}
.y15e{bottom:936.893333pt;}
.y37{bottom:938.173333pt;}
.y4{bottom:949.093333pt;}
.y133{bottom:950.693333pt;}
.y36{bottom:955.173333pt;}
.y9f{bottom:967.333333pt;}
.y35{bottom:972.133333pt;}
.y3{bottom:979.173333pt;}
.y9e{bottom:984.933333pt;}
.y34{bottom:988.773333pt;}
.y1{bottom:1014.693333pt;}
.h12{height:17.600000pt;}
.h1b{height:37.537500pt;}
.h19{height:41.112500pt;}
.h2{height:50.250000pt;}
.h17{height:50.592000pt;}
.h13{height:51.200000pt;}
.hc{height:52.736250pt;}
.h3{height:52.762500pt;}
.h1a{height:55.256809pt;}
.ha{height:57.787500pt;}
.he{height:59.340000pt;}
.h10{height:60.519362pt;}
.h9{height:62.812500pt;}
.h11{height:64.500000pt;}
.hf{height:66.625000pt;}
.h14{height:67.552000pt;}
.h6{height:67.837500pt;}
.h18{height:67.872000pt;}
.h16{height:68.160000pt;}
.h7{height:68.288750pt;}
.h8{height:68.395417pt;}
.hb{height:69.660000pt;}
.h4{height:71.950625pt;}
.hd{height:77.285000pt;}
.h15{height:85.152000pt;}
.h5{height:104.268750pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:112.352000pt;}
.w4{width:431.840000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.040000pt;}
.x2{left:109.471988pt;}
.x9{left:116.191988pt;}
.x7{left:119.103988pt;}
.x1{left:123.583988pt;}
.x19{left:124.544000pt;}
.x4{left:129.023988pt;}
.xd{left:133.506655pt;}
.x12{left:137.986655pt;}
.x1c{left:139.586655pt;}
.xc{left:157.506655pt;}
.xf{left:214.493322pt;}
.x6{left:226.653322pt;}
.x5{left:228.253322pt;}
.x1b{left:237.853333pt;}
.x11{left:293.893322pt;}
.x16{left:296.133322pt;}
.x14{left:316.613322pt;}
.x18{left:318.853322pt;}
.xa{left:321.413322pt;}
.x8{left:324.613322pt;}
.x3{left:397.919988pt;}
.x17{left:544.866655pt;}
.xe{left:575.906655pt;}
.x10{left:586.146655pt;}
.x15{left:622.973322pt;}
.x13{left:625.853322pt;}
.xb{left:668.093322pt;}
}




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