
    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_0e215d1fcc438f637af9fbb4.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_6c9d601b2c3bbcce42ffc9ed.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_58fc607b0fb1b62a1ed73a4f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5503efa85ed53ca6b8d64939.woff2')format("woff");}.ff5{font-family:ff5;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.ls4{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:4.608000px;}
.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:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws3{word-spacing:-17.280000px;}
.ws6{word-spacing:-16.254600px;}
.ws0{word-spacing:-15.226440px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-4.392000px;}
._9{margin-left:-3.384000px;}
._7{margin-left:-2.232000px;}
._0{margin-left:-1.157760px;}
._1{width:1.290720px;}
._6{width:2.310240px;}
._5{width:3.749280px;}
._c{width:5.112000px;}
._d{width:6.425760px;}
._3{width:8.280000px;}
._f{width:9.288000px;}
._10{width:10.954560px;}
._39{width:11.982240px;}
._1a{width:13.152000px;}
._11{width:14.256000px;}
._a{width:15.408000px;}
._b{width:16.714560px;}
._e{width:19.440000px;}
._1f{width:20.520000px;}
._20{width:21.653760px;}
._2f{width:22.703520px;}
._2d{width:24.552000px;}
._2e{width:26.429280px;}
._45{width:28.152000px;}
._12{width:29.160000px;}
._3a{width:30.240000px;}
._2c{width:31.680000px;}
._48{width:32.760000px;}
._13{width:33.768000px;}
._14{width:34.920000px;}
._2b{width:36.144000px;}
._1b{width:37.152000px;}
._16{width:38.370240px;}
._15{width:39.605760px;}
._28{width:40.758240px;}
._17{width:41.832000px;}
._22{width:43.200000px;}
._19{width:45.288000px;}
._18{width:46.440000px;}
._26{width:47.784000px;}
._27{width:48.869280px;}
._25{width:50.112000px;}
._21{width:51.768000px;}
._52{width:53.064000px;}
._41{width:54.432000px;}
._49{width:55.584000px;}
._5e{width:57.528000px;}
._34{width:58.608000px;}
._38{width:60.552000px;}
._59{width:61.704000px;}
._46{width:63.000000px;}
._47{width:64.080000px;}
._50{width:65.376000px;}
._4f{width:67.032000px;}
._29{width:68.832000px;}
._2a{width:70.056000px;}
._57{width:71.064000px;}
._3b{width:72.144000px;}
._30{width:74.603040px;}
._31{width:75.960000px;}
._23{width:77.904000px;}
._66{width:79.205760px;}
._32{width:80.717760px;}
._4a{width:82.709760px;}
._3c{width:83.808000px;}
._3d{width:85.032000px;}
._65{width:86.184000px;}
._1c{width:87.408000px;}
._37{width:88.992000px;}
._1d{width:90.072000px;}
._4b{width:91.440000px;}
._1e{width:92.952000px;}
._51{width:95.472000px;}
._42{width:96.989760px;}
._56{width:98.130240px;}
._40{width:99.432000px;}
._5d{width:100.872000px;}
._58{width:102.744000px;}
._5f{width:104.688000px;}
._33{width:106.637760px;}
._4e{width:108.432000px;}
._24{width:109.872000px;}
._43{width:124.344000px;}
._44{width:125.400000px;}
._64{width:128.376000px;}
._5c{width:132.408000px;}
._60{width:148.896000px;}
._61{width:150.624000px;}
._4c{width:152.712000px;}
._4d{width:154.008000px;}
._3e{width:171.072000px;}
._3f{width:172.368000px;}
._63{width:195.624000px;}
._4{width:203.940000px;}
._53{width:231.984000px;}
._55{width:235.224000px;}
._62{width:238.037760px;}
._35{width:260.712000px;}
._36{width:261.936000px;}
._54{width:267.336000px;}
._5b{width:290.016000px;}
._2{width:321.109920px;}
._5a{width:512.064000px;}
.fc2{color:rgb(0,112,192);}
.fc3{color:rgb(0,111,192);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:18.000000px;}
.fs0{font-size:48.240000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:3.600000px;}
.yfa{bottom:3.615000px;}
.y146{bottom:3.765000px;}
.y123{bottom:3.780000px;}
.y106{bottom:3.945000px;}
.yfe{bottom:3.960000px;}
.y110{bottom:3.990000px;}
.y147{bottom:4.125000px;}
.y125{bottom:4.140000px;}
.yff{bottom:5.760000px;}
.y111{bottom:5.790000px;}
.yf7{bottom:6.480000px;}
.yfc{bottom:7.560000px;}
.yf8{bottom:22.680000px;}
.y3{bottom:58.536000px;}
.y2{bottom:78.696000px;}
.yb3{bottom:116.676000px;}
.y9f{bottom:120.096000px;}
.ye5{bottom:120.276000px;}
.y5a{bottom:123.156000px;}
.y15a{bottom:126.936000px;}
.ye1{bottom:132.156000px;}
.y153{bottom:134.316000px;}
.y79{bottom:135.036000px;}
.y54{bottom:135.216000px;}
.y121{bottom:135.396000px;}
.yb2{bottom:137.376000px;}
.ye4{bottom:140.976000px;}
.y9e{bottom:144.036000px;}
.y59{bottom:146.916000px;}
.y14b{bottom:148.176000px;}
.ye0{bottom:152.850000px;}
.yb1{bottom:158.070000px;}
.y152{bottom:158.250000px;}
.y78{bottom:158.790000px;}
.y53{bottom:158.970000px;}
.ye3{bottom:161.670000px;}
.yf3{bottom:162.210000px;}
.y159{bottom:164.190000px;}
.y9d{bottom:167.790000px;}
.y120{bottom:172.650000px;}
.ydf{bottom:173.550000px;}
.yb0{bottom:178.770000px;}
.ye2{bottom:182.370000px;}
.y77{bottom:182.550000px;}
.y52{bottom:182.730000px;}
.y58{bottom:182.910000px;}
.y2c{bottom:186.510000px;}
.y9c{bottom:191.550000px;}
.yde{bottom:194.250000px;}
.y14a{bottom:198.390000px;}
.yaf{bottom:199.470000px;}
.y158{bottom:203.070000px;}
.y76{bottom:206.310000px;}
.y51{bottom:206.490000px;}
.y2b{bottom:207.570000px;}
.y11f{bottom:211.530000px;}
.y149{bottom:214.065000px;}
.ydd{bottom:214.950000px;}
.y9b{bottom:215.310000px;}
.yf2{bottom:215.490000px;}
.yae{bottom:220.170000px;}
.y157{bottom:226.830000px;}
.y2a{bottom:228.270000px;}
.y11e{bottom:229.005000px;}
.y75{bottom:230.250000px;}
.y50{bottom:230.430000px;}
.ydc{bottom:235.650000px;}
.y148{bottom:236.565000px;}
.y9a{bottom:239.250000px;}
.yad{bottom:240.870000px;}
.y29{bottom:248.970000px;}
.y11d{bottom:251.505000px;}
.y74{bottom:254.010000px;}
.y4f{bottom:254.190000px;}
.ydb{bottom:256.350000px;}
.y145{bottom:259.065000px;}
.yac{bottom:261.570000px;}
.y99{bottom:263.010000px;}
.y156{bottom:265.710000px;}
.yf1{bottom:268.950000px;}
.y28{bottom:269.670000px;}
.y11c{bottom:274.005000px;}
.yda{bottom:277.050000px;}
.y56{bottom:277.590000px;}
.y73{bottom:277.770000px;}
.y4e{bottom:277.950000px;}
.y144{bottom:281.595000px;}
.yab{bottom:282.315000px;}
.y98{bottom:286.815000px;}
.y155{bottom:289.515000px;}
.y27{bottom:290.415000px;}
.y11b{bottom:296.535000px;}
.yd9{bottom:297.795000px;}
.y72{bottom:301.575000px;}
.y4d{bottom:301.755000px;}
.yaa{bottom:303.015000px;}
.y143{bottom:304.095000px;}
.y97{bottom:310.575000px;}
.y26{bottom:311.115000px;}
.yd8{bottom:318.495000px;}
.y11a{bottom:319.035000px;}
.yf0{bottom:322.455000px;}
.ya9{bottom:323.715000px;}
.y154{bottom:323.895000px;}
.y71{bottom:325.515000px;}
.y4c{bottom:325.695000px;}
.y142{bottom:326.595000px;}
.y25{bottom:331.815000px;}
.y96{bottom:334.515000px;}
.yd7{bottom:339.195000px;}
.ya8{bottom:344.415000px;}
.y141{bottom:349.095000px;}
.y70{bottom:349.275000px;}
.y4b{bottom:349.455000px;}
.y24{bottom:352.515000px;}
.y119{bottom:357.015000px;}
.y95{bottom:358.275000px;}
.yd6{bottom:359.895000px;}
.ya7{bottom:365.115000px;}
.y140{bottom:371.595000px;}
.y6f{bottom:373.035000px;}
.y23{bottom:373.215000px;}
.yef{bottom:375.735000px;}
.y118{bottom:379.515000px;}
.yd5{bottom:380.595000px;}
.y94{bottom:382.035000px;}
.ya6{bottom:385.815000px;}
.y22{bottom:393.915000px;}
.y57{bottom:396.615000px;}
.y6e{bottom:396.795000px;}
.y4a{bottom:396.975000px;}
.yd4{bottom:401.295000px;}
.y117{bottom:402.015000px;}
.y93{bottom:405.795000px;}
.y13f{bottom:409.575000px;}
.y21{bottom:414.615000px;}
.y6d{bottom:420.555000px;}
.y49{bottom:420.915000px;}
.yd3{bottom:421.995000px;}
.y116{bottom:424.515000px;}
.ya5{bottom:426.855000px;}
.yee{bottom:429.195000px;}
.y92{bottom:429.555000px;}
.y13e{bottom:432.075000px;}
.y20{bottom:435.315000px;}
.yd2{bottom:442.695000px;}
.y6c{bottom:444.495000px;}
.y48{bottom:444.675000px;}
.y115{bottom:447.015000px;}
.y91{bottom:453.495000px;}
.y13d{bottom:454.575000px;}
.y1f{bottom:456.015000px;}
.yd1{bottom:463.395000px;}
.ya4{bottom:468.255000px;}
.y47{bottom:468.435000px;}
.y114{bottom:469.515000px;}
.y1e{bottom:476.715000px;}
.y13c{bottom:477.075000px;}
.y90{bottom:477.255000px;}
.y6b{bottom:480.495000px;}
.yed{bottom:482.655000px;}
.yd0{bottom:484.095000px;}
.ya0{bottom:491.835000px;}
.y113{bottom:492.015000px;}
.y46{bottom:492.195000px;}
.y1d{bottom:497.415000px;}
.y13b{bottom:499.575000px;}
.y8f{bottom:501.015000px;}
.y6a{bottom:504.075000px;}
.ycf{bottom:504.795000px;}
.y112{bottom:514.515000px;}
.y45{bottom:516.135000px;}
.y1c{bottom:518.115000px;}
.y13a{bottom:522.075000px;}
.y8e{bottom:524.775000px;}
.yce{bottom:525.495000px;}
.y69{bottom:527.835000px;}
.yec{bottom:535.935000px;}
.y10f{bottom:537.015000px;}
.y1b{bottom:538.815000px;}
.y44{bottom:539.925000px;}
.y139{bottom:544.605000px;}
.ycd{bottom:546.225000px;}
.y8d{bottom:548.745000px;}
.y68{bottom:551.625000px;}
.y151{bottom:555.045000px;}
.y1a{bottom:559.545000px;}
.y43{bottom:563.685000px;}
.ycc{bottom:566.925000px;}
.y138{bottom:567.105000px;}
.y8c{bottom:572.505000px;}
.y67{bottom:575.565000px;}
.y15d{bottom:577.185000px;}
.y19{bottom:580.245000px;}
.y10e{bottom:582.045000px;}
.ya3{bottom:587.085000px;}
.y42{bottom:587.445000px;}
.ycb{bottom:587.625000px;}
.yeb{bottom:589.425000px;}
.y137{bottom:589.605000px;}
.y150{bottom:591.945000px;}
.y8b{bottom:596.265000px;}
.y66{bottom:599.325000px;}
.y18{bottom:600.945000px;}
.y10d{bottom:604.545000px;}
.yca{bottom:608.325000px;}
.y41{bottom:611.205000px;}
.y136{bottom:612.105000px;}
.y15c{bottom:615.705000px;}
.y8a{bottom:620.025000px;}
.y17{bottom:621.645000px;}
.y65{bottom:623.085000px;}
.y10c{bottom:627.045000px;}
.yc9{bottom:629.025000px;}
.y14f{bottom:629.745000px;}
.y135{bottom:634.605000px;}
.y40{bottom:635.145000px;}
.y16{bottom:642.345000px;}
.yea{bottom:642.885000px;}
.y89{bottom:643.965000px;}
.y64{bottom:646.845000px;}
.y10b{bottom:649.545000px;}
.yc8{bottom:649.725000px;}
.y15b{bottom:650.265000px;}
.y134{bottom:657.105000px;}
.y3f{bottom:658.905000px;}
.y15{bottom:663.045000px;}
.y88{bottom:667.725000px;}
.y14e{bottom:668.445000px;}
.yc7{bottom:670.425000px;}
.y63{bottom:670.785000px;}
.y10a{bottom:672.045000px;}
.y133{bottom:679.605000px;}
.ya2{bottom:682.305000px;}
.y3e{bottom:682.665000px;}
.y14{bottom:683.745000px;}
.yc6{bottom:691.125000px;}
.y87{bottom:691.485000px;}
.y14d{bottom:692.205000px;}
.y62{bottom:694.545000px;}
.ye9{bottom:696.165000px;}
.y132{bottom:702.105000px;}
.y13{bottom:704.445000px;}
.y3d{bottom:706.425000px;}
.yc5{bottom:711.825000px;}
.y86{bottom:715.245000px;}
.y109{bottom:717.045000px;}
.y61{bottom:718.305000px;}
.y131{bottom:724.605000px;}
.y12{bottom:725.145000px;}
.y14c{bottom:726.765000px;}
.ya1{bottom:730.005000px;}
.y3c{bottom:730.365000px;}
.yc4{bottom:732.525000px;}
.y85{bottom:739.185000px;}
.y108{bottom:739.545000px;}
.y60{bottom:742.065000px;}
.y11{bottom:745.845000px;}
.y130{bottom:747.105000px;}
.ye8{bottom:749.625000px;}
.yc3{bottom:753.225000px;}
.y3b{bottom:754.125000px;}
.y107{bottom:762.060000px;}
.y84{bottom:762.945000px;}
.y5f{bottom:765.825000px;}
.y12f{bottom:769.605000px;}
.yc2{bottom:773.925000px;}
.y10{bottom:776.265000px;}
.y3a{bottom:777.885000px;}
.y105{bottom:784.560000px;}
.y83{bottom:786.705000px;}
.y5e{bottom:789.765000px;}
.y12e{bottom:792.105000px;}
.yc1{bottom:794.625000px;}
.y39{bottom:801.690000px;}
.ye7{bottom:802.950000px;}
.y104{bottom:807.090000px;}
.y82{bottom:810.510000px;}
.y5d{bottom:813.570000px;}
.y12d{bottom:814.650000px;}
.yf{bottom:815.145000px;}
.yc0{bottom:815.370000px;}
.y38{bottom:825.630000px;}
.y103{bottom:829.590000px;}
.y81{bottom:834.450000px;}
.ybf{bottom:836.070000px;}
.y12c{bottom:837.150000px;}
.y5c{bottom:837.330000px;}
.y37{bottom:849.390000px;}
.y102{bottom:852.090000px;}
.ye{bottom:854.250000px;}
.ye6{bottom:856.410000px;}
.ybe{bottom:856.770000px;}
.y80{bottom:858.210000px;}
.y12b{bottom:859.650000px;}
.y36{bottom:873.150000px;}
.y5b{bottom:873.330000px;}
.y101{bottom:874.590000px;}
.ybd{bottom:877.470000px;}
.yd{bottom:878.190000px;}
.y7f{bottom:881.970000px;}
.y12a{bottom:882.150000px;}
.y35{bottom:896.910000px;}
.y100{bottom:897.090000px;}
.ybc{bottom:898.170000px;}
.y129{bottom:904.650000px;}
.y7e{bottom:905.730000px;}
.yc{bottom:908.790000px;}
.ybb{bottom:918.870000px;}
.yfd{bottom:919.590000px;}
.y34{bottom:920.850000px;}
.yb{bottom:925.710000px;}
.y128{bottom:927.150000px;}
.y7d{bottom:929.490000px;}
.yba{bottom:939.570000px;}
.yfb{bottom:942.090000px;}
.y33{bottom:944.610000px;}
.y127{bottom:949.650000px;}
.y7c{bottom:953.430000px;}
.ya{bottom:956.310000px;}
.yb9{bottom:960.270000px;}
.yf9{bottom:965.295000px;}
.yf4{bottom:965.310000px;}
.y32{bottom:968.370000px;}
.y126{bottom:972.150000px;}
.y7b{bottom:977.190000px;}
.yb8{bottom:980.970000px;}
.y9{bottom:987.990000px;}
.y31{bottom:992.130000px;}
.y124{bottom:994.650000px;}
.y7a{bottom:1000.590000px;}
.yb7{bottom:1001.670000px;}
.yf6{bottom:1004.010000px;}
.y30{bottom:1016.070000px;}
.y122{bottom:1017.870000px;}
.yb6{bottom:1022.370000px;}
.y8{bottom:1024.350000px;}
.y2f{bottom:1039.830000px;}
.yb5{bottom:1043.070000px;}
.y7{bottom:1048.650000px;}
.y2e{bottom:1063.260000px;}
.y55{bottom:1063.620000px;}
.yb4{bottom:1063.800000px;}
.y6{bottom:1072.770000px;}
.y5{bottom:1113.630000px;}
.y2d{bottom:1123.200000px;}
.y4{bottom:1134.000000px;}
.y1{bottom:1198.080000px;}
.hf{height:21.765000px;}
.h12{height:22.485000px;}
.h15{height:22.500000px;}
.h14{height:22.521000px;}
.h17{height:22.522500px;}
.h16{height:22.530000px;}
.h18{height:37.965000px;}
.h10{height:37.971000px;}
.h11{height:37.980000px;}
.h2{height:47.344922px;}
.h9{height:50.273438px;}
.he{height:60.465000px;}
.h19{height:64.978594px;}
.h13{height:65.010937px;}
.h3{height:65.884219px;}
.h5{height:66.757500px;}
.ha{height:70.628906px;}
.h8{height:70.664062px;}
.hd{height:71.613281px;}
.h7{height:72.562500px;}
.hc{height:74.704922px;}
.h6{height:84.898125px;}
.h4{height:90.703125px;}
.hb{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:95.575500px;}
.w7{width:95.580000px;}
.wc{width:95.781000px;}
.w5{width:95.782500px;}
.wd{width:106.365000px;}
.wa{width:106.375500px;}
.wb{width:106.380000px;}
.w8{width:106.416000px;}
.w9{width:106.425000px;}
.w10{width:159.495000px;}
.w3{width:180.351000px;}
.wf{width:212.610000px;}
.we{width:254.901000px;}
.w4{width:404.160000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:8.091000px;}
.x25{left:17.640000px;}
.x22{left:19.650000px;}
.x27{left:21.780000px;}
.x24{left:22.890000px;}
.x26{left:27.030000px;}
.x1f{left:30.045000px;}
.x28{left:31.170000px;}
.x19{left:33.150000px;}
.x1d{left:34.230000px;}
.x30{left:40.140000px;}
.x18{left:43.770000px;}
.x23{left:45.000000px;}
.x20{left:47.910000px;}
.x1c{left:48.990000px;}
.x21{left:53.130000px;}
.x2f{left:57.045000px;}
.x2e{left:61.185000px;}
.x2c{left:79.725000px;}
.x2d{left:91.620000px;}
.x2b{left:106.020000px;}
.x3{left:108.036000px;}
.x1{left:109.116000px;}
.x7{left:111.996000px;}
.xa{left:117.396000px;}
.xf{left:121.716000px;}
.xc{left:126.036000px;}
.x9{left:134.676000px;}
.x32{left:136.836000px;}
.x17{left:138.090000px;}
.x6{left:140.796000px;}
.x35{left:150.870000px;}
.x33{left:152.310000px;}
.x4{left:162.570000px;}
.x13{left:168.870000px;}
.x36{left:169.950000px;}
.x8{left:172.110000px;}
.x5{left:225.570000px;}
.xe{left:235.290000px;}
.xd{left:239.250000px;}
.x16{left:288.405000px;}
.x29{left:371.415000px;}
.xb{left:376.995000px;}
.x1a{left:384.195000px;}
.x2{left:438.195000px;}
.x12{left:446.475000px;}
.x10{left:450.615000px;}
.x1b{left:479.775000px;}
.x11{left:486.075000px;}
.x14{left:546.945000px;}
.x2a{left:584.040000px;}
.x1e{left:586.200000px;}
.x37{left:648.105000px;}
.x31{left:801.150000px;}
.x34{left:810.150000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:4.096000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.360000pt;}
.ws6{word-spacing:-14.448533pt;}
.ws0{word-spacing:-13.534613pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-3.904000pt;}
._9{margin-left:-3.008000pt;}
._7{margin-left:-1.984000pt;}
._0{margin-left:-1.029120pt;}
._1{width:1.147307pt;}
._6{width:2.053547pt;}
._5{width:3.332693pt;}
._c{width:4.544000pt;}
._d{width:5.711787pt;}
._3{width:7.360000pt;}
._f{width:8.256000pt;}
._10{width:9.737387pt;}
._39{width:10.650880pt;}
._1a{width:11.690667pt;}
._11{width:12.672000pt;}
._a{width:13.696000pt;}
._b{width:14.857387pt;}
._e{width:17.280000pt;}
._1f{width:18.240000pt;}
._20{width:19.247787pt;}
._2f{width:20.180907pt;}
._2d{width:21.824000pt;}
._2e{width:23.492693pt;}
._45{width:25.024000pt;}
._12{width:25.920000pt;}
._3a{width:26.880000pt;}
._2c{width:28.160000pt;}
._48{width:29.120000pt;}
._13{width:30.016000pt;}
._14{width:31.040000pt;}
._2b{width:32.128000pt;}
._1b{width:33.024000pt;}
._16{width:34.106880pt;}
._15{width:35.205120pt;}
._28{width:36.229547pt;}
._17{width:37.184000pt;}
._22{width:38.400000pt;}
._19{width:40.256000pt;}
._18{width:41.280000pt;}
._26{width:42.474667pt;}
._27{width:43.439360pt;}
._25{width:44.544000pt;}
._21{width:46.016000pt;}
._52{width:47.168000pt;}
._41{width:48.384000pt;}
._49{width:49.408000pt;}
._5e{width:51.136000pt;}
._34{width:52.096000pt;}
._38{width:53.824000pt;}
._59{width:54.848000pt;}
._46{width:56.000000pt;}
._47{width:56.960000pt;}
._50{width:58.112000pt;}
._4f{width:59.584000pt;}
._29{width:61.184000pt;}
._2a{width:62.272000pt;}
._57{width:63.168000pt;}
._3b{width:64.128000pt;}
._30{width:66.313813pt;}
._31{width:67.520000pt;}
._23{width:69.248000pt;}
._66{width:70.405120pt;}
._32{width:71.749120pt;}
._4a{width:73.519787pt;}
._3c{width:74.496000pt;}
._3d{width:75.584000pt;}
._65{width:76.608000pt;}
._1c{width:77.696000pt;}
._37{width:79.104000pt;}
._1d{width:80.064000pt;}
._4b{width:81.280000pt;}
._1e{width:82.624000pt;}
._51{width:84.864000pt;}
._42{width:86.213120pt;}
._56{width:87.226880pt;}
._40{width:88.384000pt;}
._5d{width:89.664000pt;}
._58{width:91.328000pt;}
._5f{width:93.056000pt;}
._33{width:94.789120pt;}
._4e{width:96.384000pt;}
._24{width:97.664000pt;}
._43{width:110.528000pt;}
._44{width:111.466667pt;}
._64{width:114.112000pt;}
._5c{width:117.696000pt;}
._60{width:132.352000pt;}
._61{width:133.888000pt;}
._4c{width:135.744000pt;}
._4d{width:136.896000pt;}
._3e{width:152.064000pt;}
._3f{width:153.216000pt;}
._63{width:173.888000pt;}
._4{width:181.280000pt;}
._53{width:206.208000pt;}
._55{width:209.088000pt;}
._62{width:211.589120pt;}
._35{width:231.744000pt;}
._36{width:232.832000pt;}
._54{width:237.632000pt;}
._5b{width:257.792000pt;}
._2{width:285.431040pt;}
._5a{width:455.168000pt;}
.fs1{font-size:16.000000pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:3.200000pt;}
.yfa{bottom:3.213333pt;}
.y146{bottom:3.346667pt;}
.y123{bottom:3.360000pt;}
.y106{bottom:3.506667pt;}
.yfe{bottom:3.520000pt;}
.y110{bottom:3.546667pt;}
.y147{bottom:3.666667pt;}
.y125{bottom:3.680000pt;}
.yff{bottom:5.120000pt;}
.y111{bottom:5.146667pt;}
.yf7{bottom:5.760000pt;}
.yfc{bottom:6.720000pt;}
.yf8{bottom:20.160000pt;}
.y3{bottom:52.032000pt;}
.y2{bottom:69.952000pt;}
.yb3{bottom:103.712000pt;}
.y9f{bottom:106.752000pt;}
.ye5{bottom:106.912000pt;}
.y5a{bottom:109.472000pt;}
.y15a{bottom:112.832000pt;}
.ye1{bottom:117.472000pt;}
.y153{bottom:119.392000pt;}
.y79{bottom:120.032000pt;}
.y54{bottom:120.192000pt;}
.y121{bottom:120.352000pt;}
.yb2{bottom:122.112000pt;}
.ye4{bottom:125.312000pt;}
.y9e{bottom:128.032000pt;}
.y59{bottom:130.592000pt;}
.y14b{bottom:131.712000pt;}
.ye0{bottom:135.866667pt;}
.yb1{bottom:140.506667pt;}
.y152{bottom:140.666667pt;}
.y78{bottom:141.146667pt;}
.y53{bottom:141.306667pt;}
.ye3{bottom:143.706667pt;}
.yf3{bottom:144.186667pt;}
.y159{bottom:145.946667pt;}
.y9d{bottom:149.146667pt;}
.y120{bottom:153.466667pt;}
.ydf{bottom:154.266667pt;}
.yb0{bottom:158.906667pt;}
.ye2{bottom:162.106667pt;}
.y77{bottom:162.266667pt;}
.y52{bottom:162.426667pt;}
.y58{bottom:162.586667pt;}
.y2c{bottom:165.786667pt;}
.y9c{bottom:170.266667pt;}
.yde{bottom:172.666667pt;}
.y14a{bottom:176.346667pt;}
.yaf{bottom:177.306667pt;}
.y158{bottom:180.506667pt;}
.y76{bottom:183.386667pt;}
.y51{bottom:183.546667pt;}
.y2b{bottom:184.506667pt;}
.y11f{bottom:188.026667pt;}
.y149{bottom:190.280000pt;}
.ydd{bottom:191.066667pt;}
.y9b{bottom:191.386667pt;}
.yf2{bottom:191.546667pt;}
.yae{bottom:195.706667pt;}
.y157{bottom:201.626667pt;}
.y2a{bottom:202.906667pt;}
.y11e{bottom:203.560000pt;}
.y75{bottom:204.666667pt;}
.y50{bottom:204.826667pt;}
.ydc{bottom:209.466667pt;}
.y148{bottom:210.280000pt;}
.y9a{bottom:212.666667pt;}
.yad{bottom:214.106667pt;}
.y29{bottom:221.306667pt;}
.y11d{bottom:223.560000pt;}
.y74{bottom:225.786667pt;}
.y4f{bottom:225.946667pt;}
.ydb{bottom:227.866667pt;}
.y145{bottom:230.280000pt;}
.yac{bottom:232.506667pt;}
.y99{bottom:233.786667pt;}
.y156{bottom:236.186667pt;}
.yf1{bottom:239.066667pt;}
.y28{bottom:239.706667pt;}
.y11c{bottom:243.560000pt;}
.yda{bottom:246.266667pt;}
.y56{bottom:246.746667pt;}
.y73{bottom:246.906667pt;}
.y4e{bottom:247.066667pt;}
.y144{bottom:250.306667pt;}
.yab{bottom:250.946667pt;}
.y98{bottom:254.946667pt;}
.y155{bottom:257.346667pt;}
.y27{bottom:258.146667pt;}
.y11b{bottom:263.586667pt;}
.yd9{bottom:264.706667pt;}
.y72{bottom:268.066667pt;}
.y4d{bottom:268.226667pt;}
.yaa{bottom:269.346667pt;}
.y143{bottom:270.306667pt;}
.y97{bottom:276.066667pt;}
.y26{bottom:276.546667pt;}
.yd8{bottom:283.106667pt;}
.y11a{bottom:283.586667pt;}
.yf0{bottom:286.626667pt;}
.ya9{bottom:287.746667pt;}
.y154{bottom:287.906667pt;}
.y71{bottom:289.346667pt;}
.y4c{bottom:289.506667pt;}
.y142{bottom:290.306667pt;}
.y25{bottom:294.946667pt;}
.y96{bottom:297.346667pt;}
.yd7{bottom:301.506667pt;}
.ya8{bottom:306.146667pt;}
.y141{bottom:310.306667pt;}
.y70{bottom:310.466667pt;}
.y4b{bottom:310.626667pt;}
.y24{bottom:313.346667pt;}
.y119{bottom:317.346667pt;}
.y95{bottom:318.466667pt;}
.yd6{bottom:319.906667pt;}
.ya7{bottom:324.546667pt;}
.y140{bottom:330.306667pt;}
.y6f{bottom:331.586667pt;}
.y23{bottom:331.746667pt;}
.yef{bottom:333.986667pt;}
.y118{bottom:337.346667pt;}
.yd5{bottom:338.306667pt;}
.y94{bottom:339.586667pt;}
.ya6{bottom:342.946667pt;}
.y22{bottom:350.146667pt;}
.y57{bottom:352.546667pt;}
.y6e{bottom:352.706667pt;}
.y4a{bottom:352.866667pt;}
.yd4{bottom:356.706667pt;}
.y117{bottom:357.346667pt;}
.y93{bottom:360.706667pt;}
.y13f{bottom:364.066667pt;}
.y21{bottom:368.546667pt;}
.y6d{bottom:373.826667pt;}
.y49{bottom:374.146667pt;}
.yd3{bottom:375.106667pt;}
.y116{bottom:377.346667pt;}
.ya5{bottom:379.426667pt;}
.yee{bottom:381.506667pt;}
.y92{bottom:381.826667pt;}
.y13e{bottom:384.066667pt;}
.y20{bottom:386.946667pt;}
.yd2{bottom:393.506667pt;}
.y6c{bottom:395.106667pt;}
.y48{bottom:395.266667pt;}
.y115{bottom:397.346667pt;}
.y91{bottom:403.106667pt;}
.y13d{bottom:404.066667pt;}
.y1f{bottom:405.346667pt;}
.yd1{bottom:411.906667pt;}
.ya4{bottom:416.226667pt;}
.y47{bottom:416.386667pt;}
.y114{bottom:417.346667pt;}
.y1e{bottom:423.746667pt;}
.y13c{bottom:424.066667pt;}
.y90{bottom:424.226667pt;}
.y6b{bottom:427.106667pt;}
.yed{bottom:429.026667pt;}
.yd0{bottom:430.306667pt;}
.ya0{bottom:437.186667pt;}
.y113{bottom:437.346667pt;}
.y46{bottom:437.506667pt;}
.y1d{bottom:442.146667pt;}
.y13b{bottom:444.066667pt;}
.y8f{bottom:445.346667pt;}
.y6a{bottom:448.066667pt;}
.ycf{bottom:448.706667pt;}
.y112{bottom:457.346667pt;}
.y45{bottom:458.786667pt;}
.y1c{bottom:460.546667pt;}
.y13a{bottom:464.066667pt;}
.y8e{bottom:466.466667pt;}
.yce{bottom:467.106667pt;}
.y69{bottom:469.186667pt;}
.yec{bottom:476.386667pt;}
.y10f{bottom:477.346667pt;}
.y1b{bottom:478.946667pt;}
.y44{bottom:479.933333pt;}
.y139{bottom:484.093333pt;}
.ycd{bottom:485.533333pt;}
.y8d{bottom:487.773333pt;}
.y68{bottom:490.333333pt;}
.y151{bottom:493.373333pt;}
.y1a{bottom:497.373333pt;}
.y43{bottom:501.053333pt;}
.ycc{bottom:503.933333pt;}
.y138{bottom:504.093333pt;}
.y8c{bottom:508.893333pt;}
.y67{bottom:511.613333pt;}
.y15d{bottom:513.053333pt;}
.y19{bottom:515.773333pt;}
.y10e{bottom:517.373333pt;}
.ya3{bottom:521.853333pt;}
.y42{bottom:522.173333pt;}
.ycb{bottom:522.333333pt;}
.yeb{bottom:523.933333pt;}
.y137{bottom:524.093333pt;}
.y150{bottom:526.173333pt;}
.y8b{bottom:530.013333pt;}
.y66{bottom:532.733333pt;}
.y18{bottom:534.173333pt;}
.y10d{bottom:537.373333pt;}
.yca{bottom:540.733333pt;}
.y41{bottom:543.293333pt;}
.y136{bottom:544.093333pt;}
.y15c{bottom:547.293333pt;}
.y8a{bottom:551.133333pt;}
.y17{bottom:552.573333pt;}
.y65{bottom:553.853333pt;}
.y10c{bottom:557.373333pt;}
.yc9{bottom:559.133333pt;}
.y14f{bottom:559.773333pt;}
.y135{bottom:564.093333pt;}
.y40{bottom:564.573333pt;}
.y16{bottom:570.973333pt;}
.yea{bottom:571.453333pt;}
.y89{bottom:572.413333pt;}
.y64{bottom:574.973333pt;}
.y10b{bottom:577.373333pt;}
.yc8{bottom:577.533333pt;}
.y15b{bottom:578.013333pt;}
.y134{bottom:584.093333pt;}
.y3f{bottom:585.693333pt;}
.y15{bottom:589.373333pt;}
.y88{bottom:593.533333pt;}
.y14e{bottom:594.173333pt;}
.yc7{bottom:595.933333pt;}
.y63{bottom:596.253333pt;}
.y10a{bottom:597.373333pt;}
.y133{bottom:604.093333pt;}
.ya2{bottom:606.493333pt;}
.y3e{bottom:606.813333pt;}
.y14{bottom:607.773333pt;}
.yc6{bottom:614.333333pt;}
.y87{bottom:614.653333pt;}
.y14d{bottom:615.293333pt;}
.y62{bottom:617.373333pt;}
.ye9{bottom:618.813333pt;}
.y132{bottom:624.093333pt;}
.y13{bottom:626.173333pt;}
.y3d{bottom:627.933333pt;}
.yc5{bottom:632.733333pt;}
.y86{bottom:635.773333pt;}
.y109{bottom:637.373333pt;}
.y61{bottom:638.493333pt;}
.y131{bottom:644.093333pt;}
.y12{bottom:644.573333pt;}
.y14c{bottom:646.013333pt;}
.ya1{bottom:648.893333pt;}
.y3c{bottom:649.213333pt;}
.yc4{bottom:651.133333pt;}
.y85{bottom:657.053333pt;}
.y108{bottom:657.373333pt;}
.y60{bottom:659.613333pt;}
.y11{bottom:662.973333pt;}
.y130{bottom:664.093333pt;}
.ye8{bottom:666.333333pt;}
.yc3{bottom:669.533333pt;}
.y3b{bottom:670.333333pt;}
.y107{bottom:677.386667pt;}
.y84{bottom:678.173333pt;}
.y5f{bottom:680.733333pt;}
.y12f{bottom:684.093333pt;}
.yc2{bottom:687.933333pt;}
.y10{bottom:690.013333pt;}
.y3a{bottom:691.453333pt;}
.y105{bottom:697.386667pt;}
.y83{bottom:699.293333pt;}
.y5e{bottom:702.013333pt;}
.y12e{bottom:704.093333pt;}
.yc1{bottom:706.333333pt;}
.y39{bottom:712.613333pt;}
.ye7{bottom:713.733333pt;}
.y104{bottom:717.413333pt;}
.y82{bottom:720.453333pt;}
.y5d{bottom:723.173333pt;}
.y12d{bottom:724.133333pt;}
.yf{bottom:724.573333pt;}
.yc0{bottom:724.773333pt;}
.y38{bottom:733.893333pt;}
.y103{bottom:737.413333pt;}
.y81{bottom:741.733333pt;}
.ybf{bottom:743.173333pt;}
.y12c{bottom:744.133333pt;}
.y5c{bottom:744.293333pt;}
.y37{bottom:755.013333pt;}
.y102{bottom:757.413333pt;}
.ye{bottom:759.333333pt;}
.ye6{bottom:761.253333pt;}
.ybe{bottom:761.573333pt;}
.y80{bottom:762.853333pt;}
.y12b{bottom:764.133333pt;}
.y36{bottom:776.133333pt;}
.y5b{bottom:776.293333pt;}
.y101{bottom:777.413333pt;}
.ybd{bottom:779.973333pt;}
.yd{bottom:780.613333pt;}
.y7f{bottom:783.973333pt;}
.y12a{bottom:784.133333pt;}
.y35{bottom:797.253333pt;}
.y100{bottom:797.413333pt;}
.ybc{bottom:798.373333pt;}
.y129{bottom:804.133333pt;}
.y7e{bottom:805.093333pt;}
.yc{bottom:807.813333pt;}
.ybb{bottom:816.773333pt;}
.yfd{bottom:817.413333pt;}
.y34{bottom:818.533333pt;}
.yb{bottom:822.853333pt;}
.y128{bottom:824.133333pt;}
.y7d{bottom:826.213333pt;}
.yba{bottom:835.173333pt;}
.yfb{bottom:837.413333pt;}
.y33{bottom:839.653333pt;}
.y127{bottom:844.133333pt;}
.y7c{bottom:847.493333pt;}
.ya{bottom:850.053333pt;}
.yb9{bottom:853.573333pt;}
.yf9{bottom:858.040000pt;}
.yf4{bottom:858.053333pt;}
.y32{bottom:860.773333pt;}
.y126{bottom:864.133333pt;}
.y7b{bottom:868.613333pt;}
.yb8{bottom:871.973333pt;}
.y9{bottom:878.213333pt;}
.y31{bottom:881.893333pt;}
.y124{bottom:884.133333pt;}
.y7a{bottom:889.413333pt;}
.yb7{bottom:890.373333pt;}
.yf6{bottom:892.453333pt;}
.y30{bottom:903.173333pt;}
.y122{bottom:904.773333pt;}
.yb6{bottom:908.773333pt;}
.y8{bottom:910.533333pt;}
.y2f{bottom:924.293333pt;}
.yb5{bottom:927.173333pt;}
.y7{bottom:932.133333pt;}
.y2e{bottom:945.120000pt;}
.y55{bottom:945.440000pt;}
.yb4{bottom:945.600000pt;}
.y6{bottom:953.573333pt;}
.y5{bottom:989.893333pt;}
.y2d{bottom:998.400000pt;}
.y4{bottom:1008.000000pt;}
.y1{bottom:1064.960000pt;}
.hf{height:19.346667pt;}
.h12{height:19.986667pt;}
.h15{height:20.000000pt;}
.h14{height:20.018667pt;}
.h17{height:20.020000pt;}
.h16{height:20.026667pt;}
.h18{height:33.746667pt;}
.h10{height:33.752000pt;}
.h11{height:33.760000pt;}
.h2{height:42.084375pt;}
.h9{height:44.687500pt;}
.he{height:53.746667pt;}
.h19{height:57.758750pt;}
.h13{height:57.787500pt;}
.h3{height:58.563750pt;}
.h5{height:59.340000pt;}
.ha{height:62.781250pt;}
.h8{height:62.812500pt;}
.hd{height:63.656250pt;}
.h7{height:64.500000pt;}
.hc{height:66.404375pt;}
.h6{height:75.465000pt;}
.h4{height:80.625000pt;}
.hb{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:84.956000pt;}
.w7{width:84.960000pt;}
.wc{width:85.138667pt;}
.w5{width:85.140000pt;}
.wd{width:94.546667pt;}
.wa{width:94.556000pt;}
.wb{width:94.560000pt;}
.w8{width:94.592000pt;}
.w9{width:94.600000pt;}
.w10{width:141.773333pt;}
.w3{width:160.312000pt;}
.wf{width:188.986667pt;}
.we{width:226.578667pt;}
.w4{width:359.253333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.192000pt;}
.x25{left:15.680000pt;}
.x22{left:17.466667pt;}
.x27{left:19.360000pt;}
.x24{left:20.346667pt;}
.x26{left:24.026667pt;}
.x1f{left:26.706667pt;}
.x28{left:27.706667pt;}
.x19{left:29.466667pt;}
.x1d{left:30.426667pt;}
.x30{left:35.680000pt;}
.x18{left:38.906667pt;}
.x23{left:40.000000pt;}
.x20{left:42.586667pt;}
.x1c{left:43.546667pt;}
.x21{left:47.226667pt;}
.x2f{left:50.706667pt;}
.x2e{left:54.386667pt;}
.x2c{left:70.866667pt;}
.x2d{left:81.440000pt;}
.x2b{left:94.240000pt;}
.x3{left:96.032000pt;}
.x1{left:96.992000pt;}
.x7{left:99.552000pt;}
.xa{left:104.352000pt;}
.xf{left:108.192000pt;}
.xc{left:112.032000pt;}
.x9{left:119.712000pt;}
.x32{left:121.632000pt;}
.x17{left:122.746667pt;}
.x6{left:125.152000pt;}
.x35{left:134.106667pt;}
.x33{left:135.386667pt;}
.x4{left:144.506667pt;}
.x13{left:150.106667pt;}
.x36{left:151.066667pt;}
.x8{left:152.986667pt;}
.x5{left:200.506667pt;}
.xe{left:209.146667pt;}
.xd{left:212.666667pt;}
.x16{left:256.360000pt;}
.x29{left:330.146667pt;}
.xb{left:335.106667pt;}
.x1a{left:341.506667pt;}
.x2{left:389.506667pt;}
.x12{left:396.866667pt;}
.x10{left:400.546667pt;}
.x1b{left:426.466667pt;}
.x11{left:432.066667pt;}
.x14{left:486.173333pt;}
.x2a{left:519.146667pt;}
.x1e{left:521.066667pt;}
.x37{left:576.093333pt;}
.x31{left:712.133333pt;}
.x34{left:720.133333pt;}
}




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