
    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_76832ba5229517e0a8b4e29f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_25e1bde65c6a7e69bd04e7fb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6b8bb363a4f07da5cf585758.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ab727456586bb37c02de3a45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_ce6eba446284b2b9158cd4a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.072754;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_0ec97e91ff2b53ceb717ffde.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982910;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_cd98dd5f88a9731953b57ac0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982910;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_754fd1948e581bddfe7a54d0.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v3{vertical-align:-72.000000px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls11{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.262200px;}
.ls10{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.174240px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.262080px;}
.ls12{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.864000px;}
.ls7{letter-spacing:5.040000px;}
.ls13{letter-spacing:24.456000px;}
.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;}
}
.wsa{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.568000px;}
.ws8{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.297800px;}
.ws6{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.833200px;}
.ws3{word-spacing:-13.505760px;}
.ws4{word-spacing:-13.447440px;}
.ws0{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-7.351680px;}
._1c{margin-left:-6.053520px;}
._17{margin-left:-4.616160px;}
._14{margin-left:-3.588240px;}
._b{margin-left:-2.270880px;}
._1{margin-left:-1.152000px;}
._0{width:1.085520px;}
._3{width:2.091360px;}
._7{width:3.228720px;}
._c{width:5.187600px;}
._8{width:7.171200px;}
._5{width:8.287440px;}
._6{width:9.594480px;}
._f{width:11.304000px;}
._10{width:12.600000px;}
._11{width:14.400000px;}
._1f{width:15.552240px;}
._9{width:16.613280px;}
._a{width:17.745600px;}
._1e{width:19.944000px;}
._26{width:20.985360px;}
._1a{width:22.176000px;}
._1b{width:23.688000px;}
._18{width:24.696000px;}
._19{width:26.064000px;}
._28{width:27.648000px;}
._12{width:29.016000px;}
._13{width:30.168000px;}
._22{width:31.464000px;}
._23{width:32.582880px;}
._16{width:35.856000px;}
._15{width:37.152000px;}
._20{width:42.120000px;}
._21{width:43.176000px;}
._25{width:44.706480px;}
._27{width:47.304000px;}
._24{width:54.174720px;}
._4{width:58.302000px;}
._2{width:59.520240px;}
._d{width:846.156000px;}
._e{width:1294.860000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb7{bottom:2.880000px;}
.yb9{bottom:3.060000px;}
.y1c{bottom:3.240000px;}
.y13{bottom:3.285000px;}
.yd{bottom:3.960000px;}
.y9{bottom:5.220000px;}
.y1a{bottom:12.240000px;}
.y7{bottom:17.100000px;}
.y2f{bottom:20.520000px;}
.y12{bottom:20.565000px;}
.yc{bottom:24.660000px;}
.y2d{bottom:29.520000px;}
.y19{bottom:34.740000px;}
.y6{bottom:37.800000px;}
.y11{bottom:37.845000px;}
.yb{bottom:45.360000px;}
.y18{bottom:46.800000px;}
.y10{bottom:55.485000px;}
.y3{bottom:56.700000px;}
.y5{bottom:59.760000px;}
.y2c{bottom:63.900000px;}
.y17{bottom:69.300000px;}
.yf{bottom:72.765000px;}
.y3b{bottom:75.060000px;}
.y2{bottom:75.600000px;}
.y2b{bottom:81.180000px;}
.y16{bottom:81.360000px;}
.y2a{bottom:98.460000px;}
.y15{bottom:103.680000px;}
.ycf{bottom:114.480000px;}
.y29{bottom:115.740000px;}
.yf4{bottom:117.360000px;}
.ydc{bottom:119.160000px;}
.ybf{bottom:124.740000px;}
.y95{bottom:129.960000px;}
.y6a{bottom:130.860000px;}
.y141{bottom:132.660000px;}
.y28{bottom:133.020000px;}
.yce{bottom:133.560000px;}
.y132{bottom:135.396000px;}
.y36{bottom:137.160000px;}
.ybe{bottom:138.636000px;}
.ydb{bottom:139.896000px;}
.yf3{bottom:147.096000px;}
.y27{bottom:150.300000px;}
.y94{bottom:150.690000px;}
.y69{bottom:151.590000px;}
.ybd{bottom:152.310000px;}
.ycd{bottom:152.670000px;}
.y140{bottom:153.390000px;}
.y35{bottom:154.260000px;}
.y131{bottom:156.090000px;}
.yda{bottom:160.590000px;}
.ybc{bottom:166.170000px;}
.y26{bottom:167.400000px;}
.yf2{bottom:167.790000px;}
.y93{bottom:171.390000px;}
.y34{bottom:171.540000px;}
.ycc{bottom:171.570000px;}
.y13f{bottom:174.090000px;}
.ybb{bottom:178.230000px;}
.y68{bottom:181.290000px;}
.y25{bottom:184.680000px;}
.y130{bottom:185.790000px;}
.y118{bottom:188.490000px;}
.y33{bottom:188.820000px;}
.ycb{bottom:190.650000px;}
.y92{bottom:192.090000px;}
.y13e{bottom:194.790000px;}
.yba{bottom:195.330000px;}
.yf1{bottom:197.490000px;}
.y24{bottom:201.960000px;}
.y67{bottom:201.990000px;}
.y32{bottom:206.130000px;}
.y12f{bottom:206.490000px;}
.y117{bottom:209.190000px;}
.yca{bottom:209.550000px;}
.yb8{bottom:212.250000px;}
.y91{bottom:212.790000px;}
.y23{bottom:219.270000px;}
.y66{bottom:222.690000px;}
.y31{bottom:223.410000px;}
.y13d{bottom:224.490000px;}
.yf0{bottom:227.190000px;}
.yc9{bottom:228.450000px;}
.yb6{bottom:229.350000px;}
.y90{bottom:233.490000px;}
.y22{bottom:236.550000px;}
.y116{bottom:238.890000px;}
.y65{bottom:243.390000px;}
.y13c{bottom:245.190000px;}
.yb5{bottom:246.270000px;}
.yef{bottom:247.890000px;}
.yc8{bottom:252.750000px;}
.y21{bottom:253.830000px;}
.y8f{bottom:254.190000px;}
.y12e{bottom:256.890000px;}
.y115{bottom:259.590000px;}
.y64{bottom:264.090000px;}
.y13b{bottom:265.890000px;}
.y20{bottom:270.930000px;}
.y8e{bottom:274.890000px;}
.yee{bottom:277.590000px;}
.y114{bottom:280.290000px;}
.y63{bottom:284.790000px;}
.yb4{bottom:285.330000px;}
.y13a{bottom:286.590000px;}
.y1f{bottom:288.210000px;}
.y8d{bottom:295.590000px;}
.y12d{bottom:298.290000px;}
.y113{bottom:300.990000px;}
.y1e{bottom:305.490000px;}
.yed{bottom:307.290000px;}
.yb3{bottom:313.590000px;}
.y8c{bottom:316.290000px;}
.y62{bottom:326.190000px;}
.y12c{bottom:327.810000px;}
.yec{bottom:327.990000px;}
.y112{bottom:330.510000px;}
.yb2{bottom:334.290000px;}
.y8b{bottom:336.990000px;}
.y61{bottom:346.890000px;}
.y12b{bottom:348.510000px;}
.y111{bottom:351.210000px;}
.yb1{bottom:354.990000px;}
.y8a{bottom:357.510000px;}
.y60{bottom:367.590000px;}
.y12a{bottom:369.210000px;}
.yb0{bottom:375.510000px;}
.yd9{bottom:376.590000px;}
.y89{bottom:378.210000px;}
.y110{bottom:380.910000px;}
.yeb{bottom:387.255000px;}
.y5f{bottom:388.335000px;}
.y38{bottom:395.895000px;}
.yaf{bottom:396.255000px;}
.yd8{bottom:397.335000px;}
.y88{bottom:398.955000px;}
.y10f{bottom:401.655000px;}
.y139{bottom:407.955000px;}
.y5e{bottom:409.035000px;}
.y37{bottom:416.595000px;}
.yea{bottom:416.955000px;}
.yd7{bottom:418.035000px;}
.y129{bottom:419.655000px;}
.y10e{bottom:422.355000px;}
.yae{bottom:425.955000px;}
.y87{bottom:428.655000px;}
.y5d{bottom:429.555000px;}
.y1d{bottom:434.055000px;}
.yd6{bottom:438.555000px;}
.ye9{bottom:446.655000px;}
.y128{bottom:449.355000px;}
.y5c{bottom:450.255000px;}
.y10d{bottom:452.055000px;}
.yad{bottom:455.655000px;}
.y86{bottom:458.355000px;}
.yd5{bottom:459.255000px;}
.y127{bottom:470.055000px;}
.y5b{bottom:470.955000px;}
.y10c{bottom:472.755000px;}
.ye8{bottom:476.355000px;}
.y85{bottom:479.055000px;}
.yd4{bottom:479.955000px;}
.yac{bottom:485.355000px;}
.y126{bottom:490.755000px;}
.y5a{bottom:491.655000px;}
.y84{bottom:499.755000px;}
.yd3{bottom:500.655000px;}
.y10b{bottom:502.455000px;}
.yab{bottom:506.055000px;}
.y59{bottom:512.355000px;}
.y83{bottom:520.455000px;}
.yd2{bottom:521.355000px;}
.y10a{bottom:523.155000px;}
.yaa{bottom:526.755000px;}
.y138{bottom:529.455000px;}
.y58{bottom:533.055000px;}
.y82{bottom:541.155000px;}
.yd1{bottom:542.055000px;}
.y109{bottom:543.855000px;}
.ya9{bottom:547.455000px;}
.y137{bottom:550.155000px;}
.y81{bottom:561.855000px;}
.y57{bottom:562.755000px;}
.ya8{bottom:568.155000px;}
.y125{bottom:570.855000px;}
.y108{bottom:573.555000px;}
.ye7{bottom:577.155000px;}
.y136{bottom:579.855000px;}
.y80{bottom:582.555000px;}
.y56{bottom:583.455000px;}
.ya7{bottom:588.855000px;}
.y124{bottom:591.555000px;}
.y107{bottom:594.255000px;}
.y135{bottom:600.555000px;}
.y55{bottom:604.155000px;}
.ye6{bottom:606.855000px;}
.y7f{bottom:612.255000px;}
.y106{bottom:614.955000px;}
.ya6{bottom:618.555000px;}
.y123{bottom:621.255000px;}
.y54{bottom:624.855000px;}
.ye5{bottom:627.555000px;}
.y7e{bottom:632.955000px;}
.y122{bottom:641.985000px;}
.y105{bottom:644.685000px;}
.y53{bottom:645.585000px;}
.ya5{bottom:648.285000px;}
.y134{bottom:650.985000px;}
.ye4{bottom:657.285000px;}
.y7d{bottom:662.685000px;}
.y104{bottom:665.385000px;}
.y52{bottom:666.285000px;}
.ya4{bottom:668.985000px;}
.y121{bottom:671.685000px;}
.y30{bottom:673.665000px;}
.y7c{bottom:683.385000px;}
.y103{bottom:686.085000px;}
.y51{bottom:686.985000px;}
.ya3{bottom:689.685000px;}
.y120{bottom:692.385000px;}
.y2e{bottom:693.105000px;}
.y102{bottom:706.785000px;}
.y50{bottom:707.685000px;}
.ya2{bottom:710.385000px;}
.y7b{bottom:713.085000px;}
.y4f{bottom:728.385000px;}
.ya1{bottom:731.085000px;}
.y7a{bottom:733.785000px;}
.y1b{bottom:736.305000px;}
.y101{bottom:736.485000px;}
.y133{bottom:742.785000px;}
.y4e{bottom:749.085000px;}
.ya0{bottom:751.785000px;}
.y100{bottom:757.185000px;}
.yd0{bottom:758.085000px;}
.y79{bottom:763.485000px;}
.y14{bottom:768.885000px;}
.y4d{bottom:769.785000px;}
.y9f{bottom:772.485000px;}
.yc7{bottom:778.785000px;}
.y11f{bottom:784.185000px;}
.yff{bottom:786.885000px;}
.y4c{bottom:790.485000px;}
.y78{bottom:793.185000px;}
.yc6{bottom:799.485000px;}
.y11e{bottom:804.885000px;}
.yfe{bottom:807.585000px;}
.y4b{bottom:811.185000px;}
.y77{bottom:813.885000px;}
.yc5{bottom:820.185000px;}
.y11d{bottom:825.585000px;}
.yfd{bottom:828.285000px;}
.y4a{bottom:831.885000px;}
.y76{bottom:834.585000px;}
.yc4{bottom:840.885000px;}
.y49{bottom:852.585000px;}
.y75{bottom:855.285000px;}
.yfc{bottom:857.985000px;}
.yc3{bottom:861.585000px;}
.y9e{bottom:864.285000px;}
.y48{bottom:873.285000px;}
.y74{bottom:875.985000px;}
.yfb{bottom:878.685000px;}
.yc2{bottom:882.285000px;}
.ye{bottom:890.385000px;}
.y47{bottom:894.030000px;}
.y73{bottom:896.730000px;}
.yc1{bottom:903.030000px;}
.y11c{bottom:905.730000px;}
.yfa{bottom:908.430000px;}
.ye3{bottom:912.030000px;}
.y46{bottom:914.730000px;}
.y72{bottom:917.430000px;}
.yc0{bottom:923.730000px;}
.y11b{bottom:926.430000px;}
.yf9{bottom:929.130000px;}
.ye2{bottom:932.730000px;}
.y9d{bottom:935.430000px;}
.y71{bottom:938.130000px;}
.y45{bottom:944.430000px;}
.y11a{bottom:947.130000px;}
.yf8{bottom:949.830000px;}
.ye1{bottom:953.430000px;}
.y9c{bottom:956.130000px;}
.y70{bottom:958.830000px;}
.y44{bottom:965.130000px;}
.ye0{bottom:974.130000px;}
.y9b{bottom:976.830000px;}
.ya{bottom:977.190000px;}
.y6f{bottom:979.530000px;}
.y43{bottom:985.830000px;}
.ydf{bottom:994.830000px;}
.y9a{bottom:997.530000px;}
.yf7{bottom:1000.230000px;}
.y42{bottom:1006.530000px;}
.y6e{bottom:1009.230000px;}
.yde{bottom:1015.530000px;}
.y119{bottom:1018.230000px;}
.y41{bottom:1027.230000px;}
.yf6{bottom:1029.930000px;}
.ydd{bottom:1036.230000px;}
.y6d{bottom:1038.930000px;}
.y8{bottom:1040.010000px;}
.y40{bottom:1047.930000px;}
.yf5{bottom:1050.630000px;}
.y99{bottom:1056.930000px;}
.y6c{bottom:1059.630000px;}
.y4{bottom:1061.250000px;}
.y3f{bottom:1068.630000px;}
.y98{bottom:1077.630000px;}
.y6b{bottom:1080.330000px;}
.y3e{bottom:1089.330000px;}
.y97{bottom:1098.330000px;}
.y3d{bottom:1110.030000px;}
.y96{bottom:1119.030000px;}
.y3c{bottom:1139.730000px;}
.y3a{bottom:1175.940000px;}
.y39{bottom:1195.380000px;}
.y1{bottom:1196.820000px;}
.h17{height:16.920000px;}
.h19{height:17.100000px;}
.h12{height:17.280000px;}
.h7{height:21.240000px;}
.hf{height:26.280000px;}
.h11{height:34.560000px;}
.he{height:38.158594px;}
.h1a{height:47.344922px;}
.h14{height:48.088125px;}
.h2{height:55.291992px;}
.h8{height:58.651172px;}
.h18{height:59.038594px;}
.h1b{height:59.383125px;}
.hc{height:60.226875px;}
.h9{height:62.100000px;}
.h15{height:64.546875px;}
.h3{height:65.010937px;}
.h16{height:66.757500px;}
.h6{height:70.664062px;}
.ha{height:72.562500px;}
.hb{height:86.796000px;}
.h4{height:95.256000px;}
.h5{height:96.508125px;}
.hd{height:121.500000px;}
.h13{height:237.450000px;}
.h10{height:328.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:106.200000px;}
.wd{width:110.736000px;}
.wc{width:122.400000px;}
.wb{width:128.556000px;}
.w8{width:148.860000px;}
.w5{width:206.670000px;}
.w4{width:208.650000px;}
.wa{width:212.430000px;}
.w6{width:264.990000px;}
.w9{width:531.645000px;}
.w3{width:680.325000px;}
.w7{width:680.505000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:6.300000px;}
.xc{left:8.100000px;}
.x18{left:10.260000px;}
.xa{left:41.040000px;}
.x8{left:53.994000px;}
.x7{left:82.254000px;}
.x4{left:106.416000px;}
.x1f{left:107.855987px;}
.x6{left:109.434000px;}
.x1e{left:111.455987px;}
.xf{left:114.474000px;}
.x1c{left:118.295987px;}
.x13{left:133.415987px;}
.x1d{left:137.555987px;}
.x15{left:148.895987px;}
.x3{left:159.509987px;}
.x10{left:255.270000px;}
.xe{left:275.259000px;}
.x5{left:301.359000px;}
.x9{left:315.075000px;}
.x16{left:318.855000px;}
.xd{left:340.269000px;}
.x1{left:372.494987px;}
.x14{left:391.934987px;}
.x20{left:397.154987px;}
.x2{left:434.054987px;}
.x17{left:447.405000px;}
.x12{left:473.144987px;}
.xb{left:521.745000px;}
.x19{left:569.805000px;}
.x1a{left:680.550000px;}
.x1b{left:703.049987px;}
@media print{
.v3{vertical-align:-64.000000pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls11{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.233067pt;}
.ls10{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.154880pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.232960pt;}
.ls12{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls7{letter-spacing:4.480000pt;}
.ls13{letter-spacing:21.738667pt;}
.wsa{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.616000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.486933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.185067pt;}
.ws3{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.953280pt;}
.ws0{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-6.534827pt;}
._1c{margin-left:-5.380907pt;}
._17{margin-left:-4.103253pt;}
._14{margin-left:-3.189547pt;}
._b{margin-left:-2.018560pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.964907pt;}
._3{width:1.858987pt;}
._7{width:2.869973pt;}
._c{width:4.611200pt;}
._8{width:6.374400pt;}
._5{width:7.366613pt;}
._6{width:8.528427pt;}
._f{width:10.048000pt;}
._10{width:11.200000pt;}
._11{width:12.800000pt;}
._1f{width:13.824213pt;}
._9{width:14.767360pt;}
._a{width:15.773867pt;}
._1e{width:17.728000pt;}
._26{width:18.653653pt;}
._1a{width:19.712000pt;}
._1b{width:21.056000pt;}
._18{width:21.952000pt;}
._19{width:23.168000pt;}
._28{width:24.576000pt;}
._12{width:25.792000pt;}
._13{width:26.816000pt;}
._22{width:27.968000pt;}
._23{width:28.962560pt;}
._16{width:31.872000pt;}
._15{width:33.024000pt;}
._20{width:37.440000pt;}
._21{width:38.378667pt;}
._25{width:39.739093pt;}
._27{width:42.048000pt;}
._24{width:48.155307pt;}
._4{width:51.824000pt;}
._2{width:52.906880pt;}
._d{width:752.138667pt;}
._e{width:1150.986667pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb7{bottom:2.560000pt;}
.yb9{bottom:2.720000pt;}
.y1c{bottom:2.880000pt;}
.y13{bottom:2.920000pt;}
.yd{bottom:3.520000pt;}
.y9{bottom:4.640000pt;}
.y1a{bottom:10.880000pt;}
.y7{bottom:15.200000pt;}
.y2f{bottom:18.240000pt;}
.y12{bottom:18.280000pt;}
.yc{bottom:21.920000pt;}
.y2d{bottom:26.240000pt;}
.y19{bottom:30.880000pt;}
.y6{bottom:33.600000pt;}
.y11{bottom:33.640000pt;}
.yb{bottom:40.320000pt;}
.y18{bottom:41.600000pt;}
.y10{bottom:49.320000pt;}
.y3{bottom:50.400000pt;}
.y5{bottom:53.120000pt;}
.y2c{bottom:56.800000pt;}
.y17{bottom:61.600000pt;}
.yf{bottom:64.680000pt;}
.y3b{bottom:66.720000pt;}
.y2{bottom:67.200000pt;}
.y2b{bottom:72.160000pt;}
.y16{bottom:72.320000pt;}
.y2a{bottom:87.520000pt;}
.y15{bottom:92.160000pt;}
.ycf{bottom:101.760000pt;}
.y29{bottom:102.880000pt;}
.yf4{bottom:104.320000pt;}
.ydc{bottom:105.920000pt;}
.ybf{bottom:110.880000pt;}
.y95{bottom:115.520000pt;}
.y6a{bottom:116.320000pt;}
.y141{bottom:117.920000pt;}
.y28{bottom:118.240000pt;}
.yce{bottom:118.720000pt;}
.y132{bottom:120.352000pt;}
.y36{bottom:121.920000pt;}
.ybe{bottom:123.232000pt;}
.ydb{bottom:124.352000pt;}
.yf3{bottom:130.752000pt;}
.y27{bottom:133.600000pt;}
.y94{bottom:133.946667pt;}
.y69{bottom:134.746667pt;}
.ybd{bottom:135.386667pt;}
.ycd{bottom:135.706667pt;}
.y140{bottom:136.346667pt;}
.y35{bottom:137.120000pt;}
.y131{bottom:138.746667pt;}
.yda{bottom:142.746667pt;}
.ybc{bottom:147.706667pt;}
.y26{bottom:148.800000pt;}
.yf2{bottom:149.146667pt;}
.y93{bottom:152.346667pt;}
.y34{bottom:152.480000pt;}
.ycc{bottom:152.506667pt;}
.y13f{bottom:154.746667pt;}
.ybb{bottom:158.426667pt;}
.y68{bottom:161.146667pt;}
.y25{bottom:164.160000pt;}
.y130{bottom:165.146667pt;}
.y118{bottom:167.546667pt;}
.y33{bottom:167.840000pt;}
.ycb{bottom:169.466667pt;}
.y92{bottom:170.746667pt;}
.y13e{bottom:173.146667pt;}
.yba{bottom:173.626667pt;}
.yf1{bottom:175.546667pt;}
.y24{bottom:179.520000pt;}
.y67{bottom:179.546667pt;}
.y32{bottom:183.226667pt;}
.y12f{bottom:183.546667pt;}
.y117{bottom:185.946667pt;}
.yca{bottom:186.266667pt;}
.yb8{bottom:188.666667pt;}
.y91{bottom:189.146667pt;}
.y23{bottom:194.906667pt;}
.y66{bottom:197.946667pt;}
.y31{bottom:198.586667pt;}
.y13d{bottom:199.546667pt;}
.yf0{bottom:201.946667pt;}
.yc9{bottom:203.066667pt;}
.yb6{bottom:203.866667pt;}
.y90{bottom:207.546667pt;}
.y22{bottom:210.266667pt;}
.y116{bottom:212.346667pt;}
.y65{bottom:216.346667pt;}
.y13c{bottom:217.946667pt;}
.yb5{bottom:218.906667pt;}
.yef{bottom:220.346667pt;}
.yc8{bottom:224.666667pt;}
.y21{bottom:225.626667pt;}
.y8f{bottom:225.946667pt;}
.y12e{bottom:228.346667pt;}
.y115{bottom:230.746667pt;}
.y64{bottom:234.746667pt;}
.y13b{bottom:236.346667pt;}
.y20{bottom:240.826667pt;}
.y8e{bottom:244.346667pt;}
.yee{bottom:246.746667pt;}
.y114{bottom:249.146667pt;}
.y63{bottom:253.146667pt;}
.yb4{bottom:253.626667pt;}
.y13a{bottom:254.746667pt;}
.y1f{bottom:256.186667pt;}
.y8d{bottom:262.746667pt;}
.y12d{bottom:265.146667pt;}
.y113{bottom:267.546667pt;}
.y1e{bottom:271.546667pt;}
.yed{bottom:273.146667pt;}
.yb3{bottom:278.746667pt;}
.y8c{bottom:281.146667pt;}
.y62{bottom:289.946667pt;}
.y12c{bottom:291.386667pt;}
.yec{bottom:291.546667pt;}
.y112{bottom:293.786667pt;}
.yb2{bottom:297.146667pt;}
.y8b{bottom:299.546667pt;}
.y61{bottom:308.346667pt;}
.y12b{bottom:309.786667pt;}
.y111{bottom:312.186667pt;}
.yb1{bottom:315.546667pt;}
.y8a{bottom:317.786667pt;}
.y60{bottom:326.746667pt;}
.y12a{bottom:328.186667pt;}
.yb0{bottom:333.786667pt;}
.yd9{bottom:334.746667pt;}
.y89{bottom:336.186667pt;}
.y110{bottom:338.586667pt;}
.yeb{bottom:344.226667pt;}
.y5f{bottom:345.186667pt;}
.y38{bottom:351.906667pt;}
.yaf{bottom:352.226667pt;}
.yd8{bottom:353.186667pt;}
.y88{bottom:354.626667pt;}
.y10f{bottom:357.026667pt;}
.y139{bottom:362.626667pt;}
.y5e{bottom:363.586667pt;}
.y37{bottom:370.306667pt;}
.yea{bottom:370.626667pt;}
.yd7{bottom:371.586667pt;}
.y129{bottom:373.026667pt;}
.y10e{bottom:375.426667pt;}
.yae{bottom:378.626667pt;}
.y87{bottom:381.026667pt;}
.y5d{bottom:381.826667pt;}
.y1d{bottom:385.826667pt;}
.yd6{bottom:389.826667pt;}
.ye9{bottom:397.026667pt;}
.y128{bottom:399.426667pt;}
.y5c{bottom:400.226667pt;}
.y10d{bottom:401.826667pt;}
.yad{bottom:405.026667pt;}
.y86{bottom:407.426667pt;}
.yd5{bottom:408.226667pt;}
.y127{bottom:417.826667pt;}
.y5b{bottom:418.626667pt;}
.y10c{bottom:420.226667pt;}
.ye8{bottom:423.426667pt;}
.y85{bottom:425.826667pt;}
.yd4{bottom:426.626667pt;}
.yac{bottom:431.426667pt;}
.y126{bottom:436.226667pt;}
.y5a{bottom:437.026667pt;}
.y84{bottom:444.226667pt;}
.yd3{bottom:445.026667pt;}
.y10b{bottom:446.626667pt;}
.yab{bottom:449.826667pt;}
.y59{bottom:455.426667pt;}
.y83{bottom:462.626667pt;}
.yd2{bottom:463.426667pt;}
.y10a{bottom:465.026667pt;}
.yaa{bottom:468.226667pt;}
.y138{bottom:470.626667pt;}
.y58{bottom:473.826667pt;}
.y82{bottom:481.026667pt;}
.yd1{bottom:481.826667pt;}
.y109{bottom:483.426667pt;}
.ya9{bottom:486.626667pt;}
.y137{bottom:489.026667pt;}
.y81{bottom:499.426667pt;}
.y57{bottom:500.226667pt;}
.ya8{bottom:505.026667pt;}
.y125{bottom:507.426667pt;}
.y108{bottom:509.826667pt;}
.ye7{bottom:513.026667pt;}
.y136{bottom:515.426667pt;}
.y80{bottom:517.826667pt;}
.y56{bottom:518.626667pt;}
.ya7{bottom:523.426667pt;}
.y124{bottom:525.826667pt;}
.y107{bottom:528.226667pt;}
.y135{bottom:533.826667pt;}
.y55{bottom:537.026667pt;}
.ye6{bottom:539.426667pt;}
.y7f{bottom:544.226667pt;}
.y106{bottom:546.626667pt;}
.ya6{bottom:549.826667pt;}
.y123{bottom:552.226667pt;}
.y54{bottom:555.426667pt;}
.ye5{bottom:557.826667pt;}
.y7e{bottom:562.626667pt;}
.y122{bottom:570.653333pt;}
.y105{bottom:573.053333pt;}
.y53{bottom:573.853333pt;}
.ya5{bottom:576.253333pt;}
.y134{bottom:578.653333pt;}
.ye4{bottom:584.253333pt;}
.y7d{bottom:589.053333pt;}
.y104{bottom:591.453333pt;}
.y52{bottom:592.253333pt;}
.ya4{bottom:594.653333pt;}
.y121{bottom:597.053333pt;}
.y30{bottom:598.813333pt;}
.y7c{bottom:607.453333pt;}
.y103{bottom:609.853333pt;}
.y51{bottom:610.653333pt;}
.ya3{bottom:613.053333pt;}
.y120{bottom:615.453333pt;}
.y2e{bottom:616.093333pt;}
.y102{bottom:628.253333pt;}
.y50{bottom:629.053333pt;}
.ya2{bottom:631.453333pt;}
.y7b{bottom:633.853333pt;}
.y4f{bottom:647.453333pt;}
.ya1{bottom:649.853333pt;}
.y7a{bottom:652.253333pt;}
.y1b{bottom:654.493333pt;}
.y101{bottom:654.653333pt;}
.y133{bottom:660.253333pt;}
.y4e{bottom:665.853333pt;}
.ya0{bottom:668.253333pt;}
.y100{bottom:673.053333pt;}
.yd0{bottom:673.853333pt;}
.y79{bottom:678.653333pt;}
.y14{bottom:683.453333pt;}
.y4d{bottom:684.253333pt;}
.y9f{bottom:686.653333pt;}
.yc7{bottom:692.253333pt;}
.y11f{bottom:697.053333pt;}
.yff{bottom:699.453333pt;}
.y4c{bottom:702.653333pt;}
.y78{bottom:705.053333pt;}
.yc6{bottom:710.653333pt;}
.y11e{bottom:715.453333pt;}
.yfe{bottom:717.853333pt;}
.y4b{bottom:721.053333pt;}
.y77{bottom:723.453333pt;}
.yc5{bottom:729.053333pt;}
.y11d{bottom:733.853333pt;}
.yfd{bottom:736.253333pt;}
.y4a{bottom:739.453333pt;}
.y76{bottom:741.853333pt;}
.yc4{bottom:747.453333pt;}
.y49{bottom:757.853333pt;}
.y75{bottom:760.253333pt;}
.yfc{bottom:762.653333pt;}
.yc3{bottom:765.853333pt;}
.y9e{bottom:768.253333pt;}
.y48{bottom:776.253333pt;}
.y74{bottom:778.653333pt;}
.yfb{bottom:781.053333pt;}
.yc2{bottom:784.253333pt;}
.ye{bottom:791.453333pt;}
.y47{bottom:794.693333pt;}
.y73{bottom:797.093333pt;}
.yc1{bottom:802.693333pt;}
.y11c{bottom:805.093333pt;}
.yfa{bottom:807.493333pt;}
.ye3{bottom:810.693333pt;}
.y46{bottom:813.093333pt;}
.y72{bottom:815.493333pt;}
.yc0{bottom:821.093333pt;}
.y11b{bottom:823.493333pt;}
.yf9{bottom:825.893333pt;}
.ye2{bottom:829.093333pt;}
.y9d{bottom:831.493333pt;}
.y71{bottom:833.893333pt;}
.y45{bottom:839.493333pt;}
.y11a{bottom:841.893333pt;}
.yf8{bottom:844.293333pt;}
.ye1{bottom:847.493333pt;}
.y9c{bottom:849.893333pt;}
.y70{bottom:852.293333pt;}
.y44{bottom:857.893333pt;}
.ye0{bottom:865.893333pt;}
.y9b{bottom:868.293333pt;}
.ya{bottom:868.613333pt;}
.y6f{bottom:870.693333pt;}
.y43{bottom:876.293333pt;}
.ydf{bottom:884.293333pt;}
.y9a{bottom:886.693333pt;}
.yf7{bottom:889.093333pt;}
.y42{bottom:894.693333pt;}
.y6e{bottom:897.093333pt;}
.yde{bottom:902.693333pt;}
.y119{bottom:905.093333pt;}
.y41{bottom:913.093333pt;}
.yf6{bottom:915.493333pt;}
.ydd{bottom:921.093333pt;}
.y6d{bottom:923.493333pt;}
.y8{bottom:924.453333pt;}
.y40{bottom:931.493333pt;}
.yf5{bottom:933.893333pt;}
.y99{bottom:939.493333pt;}
.y6c{bottom:941.893333pt;}
.y4{bottom:943.333333pt;}
.y3f{bottom:949.893333pt;}
.y98{bottom:957.893333pt;}
.y6b{bottom:960.293333pt;}
.y3e{bottom:968.293333pt;}
.y97{bottom:976.293333pt;}
.y3d{bottom:986.693333pt;}
.y96{bottom:994.693333pt;}
.y3c{bottom:1013.093333pt;}
.y3a{bottom:1045.280000pt;}
.y39{bottom:1062.560000pt;}
.y1{bottom:1063.840000pt;}
.h17{height:15.040000pt;}
.h19{height:15.200000pt;}
.h12{height:15.360000pt;}
.h7{height:18.880000pt;}
.hf{height:23.360000pt;}
.h11{height:30.720000pt;}
.he{height:33.918750pt;}
.h1a{height:42.084375pt;}
.h14{height:42.745000pt;}
.h2{height:49.148438pt;}
.h8{height:52.134375pt;}
.h18{height:52.478750pt;}
.h1b{height:52.785000pt;}
.hc{height:53.535000pt;}
.h9{height:55.200000pt;}
.h15{height:57.375000pt;}
.h3{height:57.787500pt;}
.h16{height:59.340000pt;}
.h6{height:62.812500pt;}
.ha{height:64.500000pt;}
.hb{height:77.152000pt;}
.h4{height:84.672000pt;}
.h5{height:85.785000pt;}
.hd{height:108.000000pt;}
.h13{height:211.066667pt;}
.h10{height:292.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:94.400000pt;}
.wd{width:98.432000pt;}
.wc{width:108.800000pt;}
.wb{width:114.272000pt;}
.w8{width:132.320000pt;}
.w5{width:183.706667pt;}
.w4{width:185.466667pt;}
.wa{width:188.826667pt;}
.w6{width:235.546667pt;}
.w9{width:472.573333pt;}
.w3{width:604.733333pt;}
.w7{width:604.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.600000pt;}
.xc{left:7.200000pt;}
.x18{left:9.120000pt;}
.xa{left:36.480000pt;}
.x8{left:47.994667pt;}
.x7{left:73.114667pt;}
.x4{left:94.592000pt;}
.x1f{left:95.871988pt;}
.x6{left:97.274667pt;}
.x1e{left:99.071988pt;}
.xf{left:101.754667pt;}
.x1c{left:105.151988pt;}
.x13{left:118.591988pt;}
.x1d{left:122.271988pt;}
.x15{left:132.351988pt;}
.x3{left:141.786655pt;}
.x10{left:226.906667pt;}
.xe{left:244.674667pt;}
.x5{left:267.874667pt;}
.x9{left:280.066667pt;}
.x16{left:283.426667pt;}
.xd{left:302.461333pt;}
.x1{left:331.106655pt;}
.x14{left:348.386655pt;}
.x20{left:353.026655pt;}
.x2{left:385.826655pt;}
.x17{left:397.693333pt;}
.x12{left:420.573322pt;}
.xb{left:463.773333pt;}
.x19{left:506.493333pt;}
.x1a{left:604.933333pt;}
.x1b{left:624.933322pt;}
}




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