
    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_f8bf89669005d183bea356ed.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_fc30dbe1f2e6c7ebdf54a572.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_977edcde75f3fc5413943ba2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_2638ff7d10131c365ee3e405.woff')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_a8afca81dac3059402a60acd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.050293;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_a8543523b00c10aa61c35b11.woff')format("woff");}.ff6{font-family:ff6;line-height:0.854004;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_6dfac897bc957f1a7f6aaade.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d2405b26bea453683d9b1726.woff')format("woff");}.ff8{font-family:ff8;line-height:1.055664;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5{vertical-align:-36.000000px;}
.v4{vertical-align:-23.760000px;}
.v8{vertical-align:-17.280000px;}
.v3{vertical-align:-13.680000px;}
.v1{vertical-align:-12.240000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.240000px;}
.v7{vertical-align:20.880000px;}
.ls17{letter-spacing:-3.546000px;}
.ls3{letter-spacing:-0.924000px;}
.ls8{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.258000px;}
.ls4{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.ls13{letter-spacing:0.029280px;}
.lsd{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.146880px;}
.ls16{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.443520px;}
.lsf{letter-spacing:0.462000px;}
.lse{letter-spacing:0.720000px;}
.lsa{letter-spacing:2.460960px;}
.ls11{letter-spacing:5.433840px;}
.ls9{letter-spacing:16.140960px;}
.ls15{letter-spacing:16.506720px;}
.lsb{letter-spacing:21.180960px;}
.ls14{letter-spacing:46.026720px;}
.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;}
}
.ws3{word-spacing:-66.240000px;}
.ws4{word-spacing:-59.760000px;}
.ws8{word-spacing:-46.080720px;}
.ws7{word-spacing:-45.900720px;}
.ws6{word-spacing:-42.480720px;}
.wsa{word-spacing:-41.502000px;}
.ws9{word-spacing:-25.058160px;}
.ws5{word-spacing:-22.178160px;}
.ws0{word-spacing:-16.560000px;}
.ws10{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.wsd{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.wse{word-spacing:-9.737280px;}
.wsc{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-9.384480px;}
._3c{margin-left:-7.332000px;}
._1{margin-left:-6.094080px;}
._8{margin-left:-5.075280px;}
._4{margin-left:-3.444480px;}
._12{margin-left:-2.412000px;}
._2{margin-left:-1.391040px;}
._0{width:1.010880px;}
._9{width:2.478000px;}
._a{width:4.092000px;}
._c{width:5.168640px;}
._b{width:6.834000px;}
._1d{width:7.991280px;}
._d{width:9.023760px;}
._2a{width:10.398240px;}
._1c{width:11.598480px;}
._1b{width:12.848400px;}
._22{width:13.885920px;}
._24{width:16.073280px;}
._11{width:17.461200px;}
._1e{width:18.540960px;}
._10{width:19.601280px;}
._19{width:20.617200px;}
._14{width:21.638160px;}
._e{width:22.833360px;}
._f{width:24.078240px;}
._2f{width:25.931520px;}
._34{width:27.131040px;}
._13{width:28.206720px;}
._2d{width:29.222640px;}
._28{width:30.602160px;}
._31{width:32.550960px;}
._27{width:34.426800px;}
._26{width:35.616960px;}
._1f{width:37.529280px;}
._29{width:38.545200px;}
._1a{width:40.098960px;}
._16{width:41.299200px;}
._15{width:42.310080px;}
._25{width:44.227440px;}
._21{width:45.238320px;}
._20{width:46.254240px;}
._36{width:47.459520px;}
._23{width:48.764160px;}
._2c{width:49.790160px;}
._2e{width:51.010560px;}
._3b{width:53.518080px;}
._18{width:54.864720px;}
._17{width:55.995120px;}
._32{width:58.010400px;}
._38{width:61.786800px;}
._37{width:63.350640px;}
._3a{width:69.984000px;}
._35{width:76.313520px;}
._39{width:78.046560px;}
._41{width:82.721760px;}
._40{width:83.889120px;}
._2b{width:94.067280px;}
._42{width:95.919840px;}
._3d{width:131.895360px;}
._3e{width:133.556160px;}
._3f{width:135.485280px;}
._33{width:179.339760px;}
._6{width:202.500000px;}
._30{width:240.359760px;}
._5{width:345.365760px;}
._3{width:631.448160px;}
.fc4{color:rgb(70,120,134);}
.fc1{color:rgb(0,78,154);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(57,57,57);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:3.240000px;}
.ye3{bottom:3.420000px;}
.ye6{bottom:4.320000px;}
.ye4{bottom:4.500000px;}
.y8{bottom:4.860000px;}
.y7{bottom:5.040000px;}
.y71{bottom:5.760000px;}
.ycb{bottom:5.790000px;}
.y74{bottom:5.940000px;}
.ye5{bottom:6.120000px;}
.y9c{bottom:6.300000px;}
.yfe{bottom:11.880000px;}
.y9d{bottom:12.240000px;}
.yc2{bottom:15.840000px;}
.ybf{bottom:16.020000px;}
.yc9{bottom:16.050000px;}
.yff{bottom:20.520000px;}
.y8a{bottom:25.560000px;}
.y88{bottom:25.740000px;}
.y96{bottom:26.280000px;}
.y97{bottom:26.460000px;}
.y9a{bottom:27.360000px;}
.y9e{bottom:28.080000px;}
.y9b{bottom:33.300000px;}
.y8b{bottom:45.390000px;}
.y9{bottom:51.660000px;}
.y109{bottom:57.960000px;}
.y6{bottom:68.580000px;}
.y108{bottom:74.880000px;}
.ycd{bottom:90.540000px;}
.y107{bottom:94.320000px;}
.y38{bottom:94.860000px;}
.y6f{bottom:108.720000px;}
.yce{bottom:110.880000px;}
.y106{bottom:114.120000px;}
.y37{bottom:114.660000px;}
.y6e{bottom:128.520000px;}
.y105{bottom:128.880000px;}
.ycc{bottom:131.040000px;}
.y36{bottom:134.460000px;}
.y104{bottom:146.160000px;}
.y6d{bottom:148.500000px;}
.yc8{bottom:151.200000px;}
.y35{bottom:154.470000px;}
.y103{bottom:164.190000px;}
.y6c{bottom:168.330000px;}
.yca{bottom:171.390000px;}
.y34{bottom:174.270000px;}
.y6b{bottom:188.130000px;}
.yc6{bottom:191.370000px;}
.y33{bottom:194.070000px;}
.y102{bottom:199.470000px;}
.y6a{bottom:207.930000px;}
.yc7{bottom:211.890000px;}
.y32{bottom:213.870000px;}
.y101{bottom:217.470000px;}
.y69{bottom:227.730000px;}
.yc4{bottom:231.690000px;}
.y31{bottom:233.670000px;}
.y100{bottom:234.570000px;}
.y68{bottom:247.710000px;}
.yc5{bottom:252.030000px;}
.yfd{bottom:252.570000px;}
.y30{bottom:253.650000px;}
.y67{bottom:267.510000px;}
.yc1{bottom:271.830000px;}
.y2f{bottom:273.450000px;}
.y66{bottom:287.310000px;}
.yfc{bottom:287.850000px;}
.yc3{bottom:291.990000px;}
.y2e{bottom:293.250000px;}
.y65{bottom:307.110000px;}
.yfb{bottom:311.610000px;}
.ybe{bottom:311.790000px;}
.y2d{bottom:313.050000px;}
.y64{bottom:326.910000px;}
.yfa{bottom:331.590000px;}
.yc0{bottom:331.950000px;}
.y2c{bottom:332.850000px;}
.y63{bottom:346.890000px;}
.yf9{bottom:351.390000px;}
.ybd{bottom:352.290000px;}
.y2b{bottom:352.830000px;}
.y62{bottom:366.690000px;}
.yf8{bottom:371.190000px;}
.ybc{bottom:372.450000px;}
.y2a{bottom:372.630000px;}
.y61{bottom:386.490000px;}
.yf7{bottom:390.990000px;}
.y29{bottom:392.430000px;}
.ybb{bottom:398.550000px;}
.y60{bottom:406.335000px;}
.yf6{bottom:410.835000px;}
.y28{bottom:412.275000px;}
.yba{bottom:418.395000px;}
.y5f{bottom:426.135000px;}
.yf5{bottom:430.815000px;}
.y27{bottom:432.075000px;}
.y94{bottom:438.195000px;}
.yb9{bottom:441.795000px;}
.y5e{bottom:446.115000px;}
.yf4{bottom:450.615000px;}
.y26{bottom:452.055000px;}
.y93{bottom:457.995000px;}
.yb8{bottom:461.595000px;}
.yf3{bottom:465.375000px;}
.y5d{bottom:465.915000px;}
.y25{bottom:471.855000px;}
.y92{bottom:477.795000px;}
.yb7{bottom:481.395000px;}
.yf2{bottom:485.175000px;}
.y5c{bottom:485.715000px;}
.y24{bottom:491.655000px;}
.y91{bottom:497.775000px;}
.yb6{bottom:501.375000px;}
.yf1{bottom:504.975000px;}
.y5b{bottom:505.515000px;}
.y23{bottom:511.455000px;}
.y90{bottom:517.575000px;}
.yb5{bottom:521.175000px;}
.yf0{bottom:524.775000px;}
.y5a{bottom:525.315000px;}
.y22{bottom:531.255000px;}
.y8f{bottom:537.375000px;}
.yb4{bottom:540.975000px;}
.y59{bottom:545.295000px;}
.yef{bottom:545.475000px;}
.y21{bottom:551.235000px;}
.y8e{bottom:557.175000px;}
.yb3{bottom:560.775000px;}
.y58{bottom:565.095000px;}
.yee{bottom:565.995000px;}
.y20{bottom:571.035000px;}
.y8d{bottom:576.975000px;}
.yb2{bottom:580.575000px;}
.y57{bottom:584.895000px;}
.y1f{bottom:590.835000px;}
.yed{bottom:592.455000px;}
.y8c{bottom:596.955000px;}
.yb1{bottom:600.555000px;}
.y56{bottom:604.695000px;}
.yec{bottom:609.735000px;}
.y1e{bottom:610.635000px;}
.y89{bottom:611.355000px;}
.yb0{bottom:614.955000px;}
.y55{bottom:624.495000px;}
.yeb{bottom:629.535000px;}
.y1d{bottom:630.435000px;}
.yaf{bottom:634.755000px;}
.y54{bottom:644.475000px;}
.yea{bottom:649.365000px;}
.y1c{bottom:652.605000px;}
.yae{bottom:654.585000px;}
.y53{bottom:664.305000px;}
.ye9{bottom:669.165000px;}
.y87{bottom:670.785000px;}
.y1b{bottom:672.405000px;}
.yad{bottom:674.385000px;}
.y52{bottom:684.105000px;}
.ye8{bottom:688.965000px;}
.y1a{bottom:692.205000px;}
.yac{bottom:694.365000px;}
.y51{bottom:703.905000px;}
.ye7{bottom:708.945000px;}
.y86{bottom:710.565000px;}
.y19{bottom:712.185000px;}
.yab{bottom:714.525000px;}
.y50{bottom:723.705000px;}
.y85{bottom:730.725000px;}
.y18{bottom:731.985000px;}
.yaa{bottom:740.445000px;}
.ye2{bottom:742.065000px;}
.y4f{bottom:743.685000px;}
.y17{bottom:751.785000px;}
.y84{bottom:756.645000px;}
.ya9{bottom:760.245000px;}
.ye1{bottom:761.325000px;}
.y4e{bottom:763.485000px;}
.y16{bottom:771.585000px;}
.y83{bottom:776.625000px;}
.ydf{bottom:779.325000px;}
.ya8{bottom:780.225000px;}
.y4d{bottom:783.285000px;}
.y15{bottom:791.385000px;}
.y82{bottom:796.425000px;}
.ya7{bottom:800.025000px;}
.y4c{bottom:803.085000px;}
.y14{bottom:811.365000px;}
.y81{bottom:816.225000px;}
.ya6{bottom:819.825000px;}
.yde{bottom:820.365000px;}
.y4b{bottom:822.885000px;}
.y13{bottom:831.165000px;}
.y80{bottom:836.025000px;}
.ya5{bottom:839.625000px;}
.ydd{bottom:840.165000px;}
.y4a{bottom:842.865000px;}
.y12{bottom:850.965000px;}
.y7f{bottom:855.825000px;}
.ya4{bottom:859.425000px;}
.ydc{bottom:859.965000px;}
.y49{bottom:862.665000px;}
.y11{bottom:870.765000px;}
.y7e{bottom:875.805000px;}
.ya3{bottom:879.405000px;}
.ydb{bottom:879.765000px;}
.y48{bottom:882.465000px;}
.y10{bottom:892.905000px;}
.y7d{bottom:895.605000px;}
.ya2{bottom:899.250000px;}
.yda{bottom:899.790000px;}
.y47{bottom:902.310000px;}
.yf{bottom:912.750000px;}
.y7c{bottom:915.450000px;}
.ya1{bottom:919.050000px;}
.yd9{bottom:919.590000px;}
.y46{bottom:922.110000px;}
.ye{bottom:932.550000px;}
.y7b{bottom:935.250000px;}
.ya0{bottom:938.850000px;}
.yd8{bottom:939.390000px;}
.y45{bottom:942.090000px;}
.yd{bottom:953.070000px;}
.y7a{bottom:955.050000px;}
.y9f{bottom:958.650000px;}
.yd7{bottom:959.190000px;}
.y44{bottom:961.890000px;}
.y79{bottom:969.990000px;}
.y99{bottom:972.690000px;}
.yc{bottom:974.310000px;}
.yd6{bottom:978.990000px;}
.y43{bottom:981.690000px;}
.y78{bottom:990.510000px;}
.yd4{bottom:993.570000px;}
.yb{bottom:997.710000px;}
.y42{bottom:1001.490000px;}
.y77{bottom:1011.030000px;}
.yd5{bottom:1013.730000px;}
.y98{bottom:1020.570000px;}
.y41{bottom:1021.290000px;}
.ya{bottom:1029.390000px;}
.y76{bottom:1031.730000px;}
.yd2{bottom:1033.530000px;}
.y95{bottom:1034.610000px;}
.y40{bottom:1041.270000px;}
.y75{bottom:1052.250000px;}
.yd3{bottom:1054.050000px;}
.y3f{bottom:1061.070000px;}
.y5{bottom:1065.750000px;}
.y73{bottom:1072.770000px;}
.yd0{bottom:1074.030000px;}
.y3e{bottom:1080.870000px;}
.y72{bottom:1093.470000px;}
.yd1{bottom:1094.190000px;}
.y3d{bottom:1100.670000px;}
.y4{bottom:1103.730000px;}
.y70{bottom:1113.990000px;}
.y3c{bottom:1120.470000px;}
.y3{bottom:1132.170000px;}
.ycf{bottom:1134.510000px;}
.y3b{bottom:1140.450000px;}
.y2{bottom:1160.640000px;}
.y3a{bottom:1171.080000px;}
.y1{bottom:1191.420000px;}
.y39{bottom:1194.300000px;}
.h21{height:17.100000px;}
.h1d{height:17.280000px;}
.h23{height:17.316000px;}
.h1f{height:18.360000px;}
.h1e{height:18.540000px;}
.hc{height:19.800000px;}
.h15{height:19.836000px;}
.hd{height:19.980000px;}
.h1c{height:20.016000px;}
.h6{height:20.340000px;}
.h22{height:34.380000px;}
.h20{height:34.560000px;}
.h14{height:35.194219px;}
.he{height:39.780000px;}
.h18{height:39.960000px;}
.h17{height:40.140000px;}
.h1a{height:40.176000px;}
.h19{height:40.320000px;}
.h11{height:40.500000px;}
.h1b{height:40.536000px;}
.h10{height:41.493516px;}
.h13{height:42.120000px;}
.h9{height:42.164648px;}
.h3{height:46.736719px;}
.ha{height:49.868086px;}
.h12{height:50.364141px;}
.h4{height:50.800781px;}
.h16{height:53.324297px;}
.h24{height:53.444297px;}
.h2{height:54.864844px;}
.h7{height:55.275469px;}
.hb{height:55.987031px;}
.hf{height:59.436000px;}
.h5{height:60.855469px;}
.h8{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:34.056000px;}
.w1f{width:36.360000px;}
.w28{width:49.320000px;}
.w3{width:51.336000px;}
.w19{width:55.440000px;}
.w29{width:64.656000px;}
.w1c{width:73.440000px;}
.w1a{width:73.476000px;}
.w12{width:76.500000px;}
.w2c{width:79.200000px;}
.w16{width:81.540000px;}
.w14{width:82.800000px;}
.w15{width:82.836000px;}
.w26{width:83.700000px;}
.w13{width:83.916000px;}
.w2b{width:86.940000px;}
.w27{width:86.976000px;}
.w7{width:90.396000px;}
.w21{width:93.780000px;}
.w23{width:93.816000px;}
.w10{width:102.060000px;}
.w22{width:109.080000px;}
.w20{width:109.116000px;}
.w9{width:111.960000px;}
.we{width:112.536000px;}
.wc{width:116.100000px;}
.w11{width:120.456000px;}
.w6{width:127.656000px;}
.w1b{width:127.836000px;}
.wd{width:128.016000px;}
.w5{width:156.960000px;}
.w2a{width:166.140000px;}
.w8{width:170.850000px;}
.w24{width:245.910000px;}
.w17{width:256.575000px;}
.w18{width:256.710000px;}
.w1e{width:312.690000px;}
.w1d{width:312.735000px;}
.wa{width:331.950000px;}
.w25{width:450.795000px;}
.wf{width:711.645000px;}
.w4{width:733.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x24{left:9.900000px;}
.x10{left:50.400000px;}
.x1{left:52.919987px;}
.x2{left:53.999987px;}
.x9{left:59.219987px;}
.xc{left:81.899987px;}
.x19{left:90.756000px;}
.xe{left:94.716000px;}
.x2b{left:98.136000px;}
.x4{left:106.056000px;}
.x32{left:107.135987px;}
.x13{left:116.100000px;}
.x25{left:133.776000px;}
.x11{left:140.796000px;}
.x26{left:170.130000px;}
.x16{left:190.125000px;}
.x1a{left:192.810000px;}
.x6{left:229.169987px;}
.x20{left:245.370000px;}
.xf{left:251.670000px;}
.x15{left:257.625000px;}
.x27{left:279.255000px;}
.x12{left:311.655000px;}
.x1b{left:313.275000px;}
.x5{left:315.399000px;}
.xa{left:332.354987px;}
.x2c{left:344.055000px;}
.x21{left:373.035000px;}
.x8{left:387.254987px;}
.x1c{left:389.775000px;}
.xd{left:410.654987px;}
.x2d{left:427.755000px;}
.x7{left:446.504987px;}
.xb{left:473.144987px;}
.x28{left:482.865000px;}
.x33{left:500.144987px;}
.x22{left:501.945000px;}
.x2e{left:514.725000px;}
.x34{left:527.144987px;}
.x1d{left:556.485000px;}
.x2f{left:564.045000px;}
.x17{left:589.245000px;}
.x29{left:591.945000px;}
.x30{left:628.710000px;}
.x23{left:629.790000px;}
.x1e{left:639.330000px;}
.x2a{left:685.770000px;}
.x31{left:715.650000px;}
.x18{left:717.270000px;}
.x1f{left:720.870000px;}
.x14{left:805.110000px;}
@media print{
.v5{vertical-align:-32.000000pt;}
.v4{vertical-align:-21.120000pt;}
.v8{vertical-align:-15.360000pt;}
.v3{vertical-align:-12.160000pt;}
.v1{vertical-align:-10.880000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.880000pt;}
.v7{vertical-align:18.560000pt;}
.ls17{letter-spacing:-3.152000pt;}
.ls3{letter-spacing:-0.821333pt;}
.ls8{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.229333pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.ls13{letter-spacing:0.026027pt;}
.lsd{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.130560pt;}
.ls16{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.394240pt;}
.lsf{letter-spacing:0.410667pt;}
.lse{letter-spacing:0.640000pt;}
.lsa{letter-spacing:2.187520pt;}
.ls11{letter-spacing:4.830080pt;}
.ls9{letter-spacing:14.347520pt;}
.ls15{letter-spacing:14.672640pt;}
.lsb{letter-spacing:18.827520pt;}
.ls14{letter-spacing:40.912640pt;}
.ws3{word-spacing:-58.880000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws8{word-spacing:-40.960640pt;}
.ws7{word-spacing:-40.800640pt;}
.ws6{word-spacing:-37.760640pt;}
.wsa{word-spacing:-36.890667pt;}
.ws9{word-spacing:-22.273920pt;}
.ws5{word-spacing:-19.713920pt;}
.ws0{word-spacing:-14.720000pt;}
.ws10{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.wse{word-spacing:-8.655360pt;}
.wsc{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-8.341760pt;}
._3c{margin-left:-6.517333pt;}
._1{margin-left:-5.416960pt;}
._8{margin-left:-4.511360pt;}
._4{margin-left:-3.061760pt;}
._12{margin-left:-2.144000pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.898560pt;}
._9{width:2.202667pt;}
._a{width:3.637333pt;}
._c{width:4.594347pt;}
._b{width:6.074667pt;}
._1d{width:7.103360pt;}
._d{width:8.021120pt;}
._2a{width:9.242880pt;}
._1c{width:10.309760pt;}
._1b{width:11.420800pt;}
._22{width:12.343040pt;}
._24{width:14.287360pt;}
._11{width:15.521067pt;}
._1e{width:16.480853pt;}
._10{width:17.423360pt;}
._19{width:18.326400pt;}
._14{width:19.233920pt;}
._e{width:20.296320pt;}
._f{width:21.402880pt;}
._2f{width:23.050240pt;}
._34{width:24.116480pt;}
._13{width:25.072640pt;}
._2d{width:25.975680pt;}
._28{width:27.201920pt;}
._31{width:28.934187pt;}
._27{width:30.601600pt;}
._26{width:31.659520pt;}
._1f{width:33.359360pt;}
._29{width:34.262400pt;}
._1a{width:35.643520pt;}
._16{width:36.710400pt;}
._15{width:37.608960pt;}
._25{width:39.313280pt;}
._21{width:40.211840pt;}
._20{width:41.114880pt;}
._36{width:42.186240pt;}
._23{width:43.345920pt;}
._2c{width:44.257920pt;}
._2e{width:45.342720pt;}
._3b{width:47.571627pt;}
._18{width:48.768640pt;}
._17{width:49.773440pt;}
._32{width:51.564800pt;}
._38{width:54.921600pt;}
._37{width:56.311680pt;}
._3a{width:62.208000pt;}
._35{width:67.834240pt;}
._39{width:69.374720pt;}
._41{width:73.530453pt;}
._40{width:74.568107pt;}
._2b{width:83.615360pt;}
._42{width:85.262080pt;}
._3d{width:117.240320pt;}
._3e{width:118.716587pt;}
._3f{width:120.431360pt;}
._33{width:159.413120pt;}
._6{width:180.000000pt;}
._30{width:213.653120pt;}
._5{width:306.991787pt;}
._3{width:561.287253pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:2.880000pt;}
.ye3{bottom:3.040000pt;}
.ye6{bottom:3.840000pt;}
.ye4{bottom:4.000000pt;}
.y8{bottom:4.320000pt;}
.y7{bottom:4.480000pt;}
.y71{bottom:5.120000pt;}
.ycb{bottom:5.146667pt;}
.y74{bottom:5.280000pt;}
.ye5{bottom:5.440000pt;}
.y9c{bottom:5.600000pt;}
.yfe{bottom:10.560000pt;}
.y9d{bottom:10.880000pt;}
.yc2{bottom:14.080000pt;}
.ybf{bottom:14.240000pt;}
.yc9{bottom:14.266667pt;}
.yff{bottom:18.240000pt;}
.y8a{bottom:22.720000pt;}
.y88{bottom:22.880000pt;}
.y96{bottom:23.360000pt;}
.y97{bottom:23.520000pt;}
.y9a{bottom:24.320000pt;}
.y9e{bottom:24.960000pt;}
.y9b{bottom:29.600000pt;}
.y8b{bottom:40.346667pt;}
.y9{bottom:45.920000pt;}
.y109{bottom:51.520000pt;}
.y6{bottom:60.960000pt;}
.y108{bottom:66.560000pt;}
.ycd{bottom:80.480000pt;}
.y107{bottom:83.840000pt;}
.y38{bottom:84.320000pt;}
.y6f{bottom:96.640000pt;}
.yce{bottom:98.560000pt;}
.y106{bottom:101.440000pt;}
.y37{bottom:101.920000pt;}
.y6e{bottom:114.240000pt;}
.y105{bottom:114.560000pt;}
.ycc{bottom:116.480000pt;}
.y36{bottom:119.520000pt;}
.y104{bottom:129.920000pt;}
.y6d{bottom:132.000000pt;}
.yc8{bottom:134.400000pt;}
.y35{bottom:137.306667pt;}
.y103{bottom:145.946667pt;}
.y6c{bottom:149.626667pt;}
.yca{bottom:152.346667pt;}
.y34{bottom:154.906667pt;}
.y6b{bottom:167.226667pt;}
.yc6{bottom:170.106667pt;}
.y33{bottom:172.506667pt;}
.y102{bottom:177.306667pt;}
.y6a{bottom:184.826667pt;}
.yc7{bottom:188.346667pt;}
.y32{bottom:190.106667pt;}
.y101{bottom:193.306667pt;}
.y69{bottom:202.426667pt;}
.yc4{bottom:205.946667pt;}
.y31{bottom:207.706667pt;}
.y100{bottom:208.506667pt;}
.y68{bottom:220.186667pt;}
.yc5{bottom:224.026667pt;}
.yfd{bottom:224.506667pt;}
.y30{bottom:225.466667pt;}
.y67{bottom:237.786667pt;}
.yc1{bottom:241.626667pt;}
.y2f{bottom:243.066667pt;}
.y66{bottom:255.386667pt;}
.yfc{bottom:255.866667pt;}
.yc3{bottom:259.546667pt;}
.y2e{bottom:260.666667pt;}
.y65{bottom:272.986667pt;}
.yfb{bottom:276.986667pt;}
.ybe{bottom:277.146667pt;}
.y2d{bottom:278.266667pt;}
.y64{bottom:290.586667pt;}
.yfa{bottom:294.746667pt;}
.yc0{bottom:295.066667pt;}
.y2c{bottom:295.866667pt;}
.y63{bottom:308.346667pt;}
.yf9{bottom:312.346667pt;}
.ybd{bottom:313.146667pt;}
.y2b{bottom:313.626667pt;}
.y62{bottom:325.946667pt;}
.yf8{bottom:329.946667pt;}
.ybc{bottom:331.066667pt;}
.y2a{bottom:331.226667pt;}
.y61{bottom:343.546667pt;}
.yf7{bottom:347.546667pt;}
.y29{bottom:348.826667pt;}
.ybb{bottom:354.266667pt;}
.y60{bottom:361.186667pt;}
.yf6{bottom:365.186667pt;}
.y28{bottom:366.466667pt;}
.yba{bottom:371.906667pt;}
.y5f{bottom:378.786667pt;}
.yf5{bottom:382.946667pt;}
.y27{bottom:384.066667pt;}
.y94{bottom:389.506667pt;}
.yb9{bottom:392.706667pt;}
.y5e{bottom:396.546667pt;}
.yf4{bottom:400.546667pt;}
.y26{bottom:401.826667pt;}
.y93{bottom:407.106667pt;}
.yb8{bottom:410.306667pt;}
.yf3{bottom:413.666667pt;}
.y5d{bottom:414.146667pt;}
.y25{bottom:419.426667pt;}
.y92{bottom:424.706667pt;}
.yb7{bottom:427.906667pt;}
.yf2{bottom:431.266667pt;}
.y5c{bottom:431.746667pt;}
.y24{bottom:437.026667pt;}
.y91{bottom:442.466667pt;}
.yb6{bottom:445.666667pt;}
.yf1{bottom:448.866667pt;}
.y5b{bottom:449.346667pt;}
.y23{bottom:454.626667pt;}
.y90{bottom:460.066667pt;}
.yb5{bottom:463.266667pt;}
.yf0{bottom:466.466667pt;}
.y5a{bottom:466.946667pt;}
.y22{bottom:472.226667pt;}
.y8f{bottom:477.666667pt;}
.yb4{bottom:480.866667pt;}
.y59{bottom:484.706667pt;}
.yef{bottom:484.866667pt;}
.y21{bottom:489.986667pt;}
.y8e{bottom:495.266667pt;}
.yb3{bottom:498.466667pt;}
.y58{bottom:502.306667pt;}
.yee{bottom:503.106667pt;}
.y20{bottom:507.586667pt;}
.y8d{bottom:512.866667pt;}
.yb2{bottom:516.066667pt;}
.y57{bottom:519.906667pt;}
.y1f{bottom:525.186667pt;}
.yed{bottom:526.626667pt;}
.y8c{bottom:530.626667pt;}
.yb1{bottom:533.826667pt;}
.y56{bottom:537.506667pt;}
.yec{bottom:541.986667pt;}
.y1e{bottom:542.786667pt;}
.y89{bottom:543.426667pt;}
.yb0{bottom:546.626667pt;}
.y55{bottom:555.106667pt;}
.yeb{bottom:559.586667pt;}
.y1d{bottom:560.386667pt;}
.yaf{bottom:564.226667pt;}
.y54{bottom:572.866667pt;}
.yea{bottom:577.213333pt;}
.y1c{bottom:580.093333pt;}
.yae{bottom:581.853333pt;}
.y53{bottom:590.493333pt;}
.ye9{bottom:594.813333pt;}
.y87{bottom:596.253333pt;}
.y1b{bottom:597.693333pt;}
.yad{bottom:599.453333pt;}
.y52{bottom:608.093333pt;}
.ye8{bottom:612.413333pt;}
.y1a{bottom:615.293333pt;}
.yac{bottom:617.213333pt;}
.y51{bottom:625.693333pt;}
.ye7{bottom:630.173333pt;}
.y86{bottom:631.613333pt;}
.y19{bottom:633.053333pt;}
.yab{bottom:635.133333pt;}
.y50{bottom:643.293333pt;}
.y85{bottom:649.533333pt;}
.y18{bottom:650.653333pt;}
.yaa{bottom:658.173333pt;}
.ye2{bottom:659.613333pt;}
.y4f{bottom:661.053333pt;}
.y17{bottom:668.253333pt;}
.y84{bottom:672.573333pt;}
.ya9{bottom:675.773333pt;}
.ye1{bottom:676.733333pt;}
.y4e{bottom:678.653333pt;}
.y16{bottom:685.853333pt;}
.y83{bottom:690.333333pt;}
.ydf{bottom:692.733333pt;}
.ya8{bottom:693.533333pt;}
.y4d{bottom:696.253333pt;}
.y15{bottom:703.453333pt;}
.y82{bottom:707.933333pt;}
.ya7{bottom:711.133333pt;}
.y4c{bottom:713.853333pt;}
.y14{bottom:721.213333pt;}
.y81{bottom:725.533333pt;}
.ya6{bottom:728.733333pt;}
.yde{bottom:729.213333pt;}
.y4b{bottom:731.453333pt;}
.y13{bottom:738.813333pt;}
.y80{bottom:743.133333pt;}
.ya5{bottom:746.333333pt;}
.ydd{bottom:746.813333pt;}
.y4a{bottom:749.213333pt;}
.y12{bottom:756.413333pt;}
.y7f{bottom:760.733333pt;}
.ya4{bottom:763.933333pt;}
.ydc{bottom:764.413333pt;}
.y49{bottom:766.813333pt;}
.y11{bottom:774.013333pt;}
.y7e{bottom:778.493333pt;}
.ya3{bottom:781.693333pt;}
.ydb{bottom:782.013333pt;}
.y48{bottom:784.413333pt;}
.y10{bottom:793.693333pt;}
.y7d{bottom:796.093333pt;}
.ya2{bottom:799.333333pt;}
.yda{bottom:799.813333pt;}
.y47{bottom:802.053333pt;}
.yf{bottom:811.333333pt;}
.y7c{bottom:813.733333pt;}
.ya1{bottom:816.933333pt;}
.yd9{bottom:817.413333pt;}
.y46{bottom:819.653333pt;}
.ye{bottom:828.933333pt;}
.y7b{bottom:831.333333pt;}
.ya0{bottom:834.533333pt;}
.yd8{bottom:835.013333pt;}
.y45{bottom:837.413333pt;}
.yd{bottom:847.173333pt;}
.y7a{bottom:848.933333pt;}
.y9f{bottom:852.133333pt;}
.yd7{bottom:852.613333pt;}
.y44{bottom:855.013333pt;}
.y79{bottom:862.213333pt;}
.y99{bottom:864.613333pt;}
.yc{bottom:866.053333pt;}
.yd6{bottom:870.213333pt;}
.y43{bottom:872.613333pt;}
.y78{bottom:880.453333pt;}
.yd4{bottom:883.173333pt;}
.yb{bottom:886.853333pt;}
.y42{bottom:890.213333pt;}
.y77{bottom:898.693333pt;}
.yd5{bottom:901.093333pt;}
.y98{bottom:907.173333pt;}
.y41{bottom:907.813333pt;}
.ya{bottom:915.013333pt;}
.y76{bottom:917.093333pt;}
.yd2{bottom:918.693333pt;}
.y95{bottom:919.653333pt;}
.y40{bottom:925.573333pt;}
.y75{bottom:935.333333pt;}
.yd3{bottom:936.933333pt;}
.y3f{bottom:943.173333pt;}
.y5{bottom:947.333333pt;}
.y73{bottom:953.573333pt;}
.yd0{bottom:954.693333pt;}
.y3e{bottom:960.773333pt;}
.y72{bottom:971.973333pt;}
.yd1{bottom:972.613333pt;}
.y3d{bottom:978.373333pt;}
.y4{bottom:981.093333pt;}
.y70{bottom:990.213333pt;}
.y3c{bottom:995.973333pt;}
.y3{bottom:1006.373333pt;}
.ycf{bottom:1008.453333pt;}
.y3b{bottom:1013.733333pt;}
.y2{bottom:1031.680000pt;}
.y3a{bottom:1040.960000pt;}
.y1{bottom:1059.040000pt;}
.y39{bottom:1061.600000pt;}
.h21{height:15.200000pt;}
.h1d{height:15.360000pt;}
.h23{height:15.392000pt;}
.h1f{height:16.320000pt;}
.h1e{height:16.480000pt;}
.hc{height:17.600000pt;}
.h15{height:17.632000pt;}
.hd{height:17.760000pt;}
.h1c{height:17.792000pt;}
.h6{height:18.080000pt;}
.h22{height:30.560000pt;}
.h20{height:30.720000pt;}
.h14{height:31.283750pt;}
.he{height:35.360000pt;}
.h18{height:35.520000pt;}
.h17{height:35.680000pt;}
.h1a{height:35.712000pt;}
.h19{height:35.840000pt;}
.h11{height:36.000000pt;}
.h1b{height:36.032000pt;}
.h10{height:36.883125pt;}
.h13{height:37.440000pt;}
.h9{height:37.479688pt;}
.h3{height:41.543750pt;}
.ha{height:44.327188pt;}
.h12{height:44.768125pt;}
.h4{height:45.156250pt;}
.h16{height:47.399375pt;}
.h24{height:47.506042pt;}
.h2{height:48.768750pt;}
.h7{height:49.133750pt;}
.hb{height:49.766250pt;}
.hf{height:52.832000pt;}
.h5{height:54.093750pt;}
.h8{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:30.272000pt;}
.w1f{width:32.320000pt;}
.w28{width:43.840000pt;}
.w3{width:45.632000pt;}
.w19{width:49.280000pt;}
.w29{width:57.472000pt;}
.w1c{width:65.280000pt;}
.w1a{width:65.312000pt;}
.w12{width:68.000000pt;}
.w2c{width:70.400000pt;}
.w16{width:72.480000pt;}
.w14{width:73.600000pt;}
.w15{width:73.632000pt;}
.w26{width:74.400000pt;}
.w13{width:74.592000pt;}
.w2b{width:77.280000pt;}
.w27{width:77.312000pt;}
.w7{width:80.352000pt;}
.w21{width:83.360000pt;}
.w23{width:83.392000pt;}
.w10{width:90.720000pt;}
.w22{width:96.960000pt;}
.w20{width:96.992000pt;}
.w9{width:99.520000pt;}
.we{width:100.032000pt;}
.wc{width:103.200000pt;}
.w11{width:107.072000pt;}
.w6{width:113.472000pt;}
.w1b{width:113.632000pt;}
.wd{width:113.792000pt;}
.w5{width:139.520000pt;}
.w2a{width:147.680000pt;}
.w8{width:151.866667pt;}
.w24{width:218.586667pt;}
.w17{width:228.066667pt;}
.w18{width:228.186667pt;}
.w1e{width:277.946667pt;}
.w1d{width:277.986667pt;}
.wa{width:295.066667pt;}
.w25{width:400.706667pt;}
.wf{width:632.573333pt;}
.w4{width:651.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x24{left:8.800000pt;}
.x10{left:44.800000pt;}
.x1{left:47.039988pt;}
.x2{left:47.999988pt;}
.x9{left:52.639988pt;}
.xc{left:72.799988pt;}
.x19{left:80.672000pt;}
.xe{left:84.192000pt;}
.x2b{left:87.232000pt;}
.x4{left:94.272000pt;}
.x32{left:95.231988pt;}
.x13{left:103.200000pt;}
.x25{left:118.912000pt;}
.x11{left:125.152000pt;}
.x26{left:151.226667pt;}
.x16{left:169.000000pt;}
.x1a{left:171.386667pt;}
.x6{left:203.706655pt;}
.x20{left:218.106667pt;}
.xf{left:223.706667pt;}
.x15{left:229.000000pt;}
.x27{left:248.226667pt;}
.x12{left:277.026667pt;}
.x1b{left:278.466667pt;}
.x5{left:280.354667pt;}
.xa{left:295.426655pt;}
.x2c{left:305.826667pt;}
.x21{left:331.586667pt;}
.x8{left:344.226655pt;}
.x1c{left:346.466667pt;}
.xd{left:365.026655pt;}
.x2d{left:380.226667pt;}
.x7{left:396.893322pt;}
.xb{left:420.573322pt;}
.x28{left:429.213333pt;}
.x33{left:444.573322pt;}
.x22{left:446.173333pt;}
.x2e{left:457.533333pt;}
.x34{left:468.573322pt;}
.x1d{left:494.653333pt;}
.x2f{left:501.373333pt;}
.x17{left:523.773333pt;}
.x29{left:526.173333pt;}
.x30{left:558.853333pt;}
.x23{left:559.813333pt;}
.x1e{left:568.293333pt;}
.x2a{left:609.573333pt;}
.x31{left:636.133333pt;}
.x18{left:637.573333pt;}
.x1f{left:640.773333pt;}
.x14{left:715.653333pt;}
}




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