
    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_5d870b5eccb9770da80c3ea3.woff2')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_7b8b97c08702e99d4640bd3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_bfbf4628ca09673282c97995.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_b4b0288439da6f34def2dd32.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_b052dfa270b0ea8c16f45683.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_77af14638bbea4be1ef1948d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_56bc4d65684d9e48f7f8fcf0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_35b9259967e41461c1b9832e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6aa2f11c6f8a87fb84995df4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6514c5678f94644de504d57c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.ls12{letter-spacing:-11.580000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.103800px;}
.lse{letter-spacing:-0.090000px;}
.ls6{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.013320px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.018720px;}
.ls4{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.064800px;}
.ls7{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.090000px;}
.ls15{letter-spacing:0.153600px;}
.ls3{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.270000px;}
.ls16{letter-spacing:16.406640px;}
.ls13{letter-spacing:46.286640px;}
.lsc{letter-spacing:63.566640px;}
.ls2{letter-spacing:912.810000px;}
.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:-72.000000px;}
.ws5{word-spacing:-27.036000px;}
.ws6{word-spacing:-27.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.210000px;}
.ws13{word-spacing:-15.183600px;}
.ws0{word-spacing:-15.083280px;}
.ws7{word-spacing:-15.030000px;}
.ws10{word-spacing:-15.016680px;}
.ws12{word-spacing:-14.976720px;}
.ws8{word-spacing:-14.850000px;}
.wsb{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.150000px;}
.wse{word-spacing:-11.988720px;}
.ws2{word-spacing:-11.970000px;}
.wsd{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
.ws11{word-spacing:4.176360px;}
._2c{margin-left:-789.431880px;}
._2d{margin-left:-602.878080px;}
._31{margin-left:-347.290200px;}
._1e{margin-left:-261.246600px;}
._1d{margin-left:-205.501680px;}
._1f{margin-left:-200.008080px;}
._2a{margin-left:-153.180000px;}
._34{margin-left:-120.330000px;}
._25{margin-left:-111.960000px;}
._20{margin-left:-106.881480px;}
._29{margin-left:-99.824040px;}
._27{margin-left:-87.840000px;}
._24{margin-left:-72.000000px;}
._26{margin-left:-64.364040px;}
._22{margin-left:-48.780000px;}
._21{margin-left:-47.700000px;}
._33{margin-left:-27.464040px;}
._23{margin-left:-11.406960px;}
._e{margin-left:-6.372000px;}
._0{margin-left:-1.128960px;}
._2{width:1.062120px;}
._6{width:2.164320px;}
._5{width:3.186360px;}
._3{width:4.388760px;}
._d{width:5.470920px;}
._b{width:7.334640px;}
._c{width:8.897760px;}
._1b{width:9.926520px;}
._9{width:11.062080px;}
._7{width:12.985920px;}
._19{width:14.001240px;}
._10{width:15.149880px;}
._8{width:16.219080px;}
._a{width:17.915760px;}
._4{width:19.539000px;}
._12{width:20.861640px;}
._17{width:22.140120px;}
._1c{width:23.206320px;}
._1a{width:24.589080px;}
._18{width:25.911720px;}
._11{width:27.775440px;}
._28{width:29.000520px;}
._f{width:30.024000px;}
._37{width:33.139440px;}
._14{width:34.903080px;}
._13{width:36.011880px;}
._16{width:37.454760px;}
._2f{width:38.837520px;}
._2e{width:40.045320px;}
._36{width:41.051160px;}
._35{width:45.029880px;}
._15{width:46.472760px;}
._30{width:56.753280px;}
._3a{width:67.245120px;}
._3b{width:68.771880px;}
._38{width:72.444600px;}
._39{width:73.707120px;}
._1{width:285.169920px;}
._32{width:343.005960px;}
._2b{width:602.507880px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.120000px;}
.fsa{font-size:11.880000px;}
.fs3{font-size:29.880000px;}
.fse{font-size:38.880000px;}
.fs2{font-size:47.880000px;}
.fsd{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fsc{font-size:63.371411px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs7{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y20{bottom:0.450000px;}
.y7{bottom:2.610000px;}
.ye3{bottom:2.700000px;}
.y44{bottom:2.880000px;}
.y23{bottom:3.240000px;}
.y10{bottom:3.870000px;}
.y24{bottom:4.590000px;}
.y5{bottom:8.370000px;}
.yb0{bottom:9.540000px;}
.yb4{bottom:16.380000px;}
.y6{bottom:16.470000px;}
.y43{bottom:18.450000px;}
.y3b{bottom:20.520000px;}
.yf{bottom:22.320000px;}
.yaf{bottom:23.310000px;}
.yb1{bottom:30.240000px;}
.ye{bottom:33.210000px;}
.y42{bottom:33.930000px;}
.ybf{bottom:35.640000px;}
.y3a{bottom:37.800000px;}
.yb3{bottom:44.010000px;}
.y8{bottom:49.140000px;}
.y41{bottom:49.410000px;}
.yd{bottom:51.690000px;}
.y39{bottom:54.990000px;}
.y130{bottom:57.870000px;}
.ybe{bottom:60.030000px;}
.y40{bottom:64.980000px;}
.yc{bottom:65.820000px;}
.y12f{bottom:71.640000px;}
.y38{bottom:72.270000px;}
.y4{bottom:73.530000px;}
.y3f{bottom:80.490000px;}
.y37{bottom:89.550000px;}
.y3e{bottom:96.060000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y36{bottom:106.740000px;}
.y3d{bottom:111.540000px;}
.yfc{bottom:116.910000px;}
.y35{bottom:124.020000px;}
.y117{bottom:125.190000px;}
.y52{bottom:129.690000px;}
.yfb{bottom:134.190000px;}
.ybd{bottom:134.550000px;}
.y8a{bottom:135.180000px;}
.ya{bottom:136.200000px;}
.y12c{bottom:141.210000px;}
.y34{bottom:141.300000px;}
.y116{bottom:142.470000px;}
.y51{bottom:146.970000px;}
.y4c{bottom:149.760000px;}
.yfa{bottom:151.470000px;}
.ybc{bottom:151.830000px;}
.y89{bottom:152.460000px;}
.y33{bottom:158.490000px;}
.y12b{bottom:158.520000px;}
.y115{bottom:159.690000px;}
.y50{bottom:164.190000px;}
.y4b{bottom:165.330000px;}
.yf9{bottom:168.690000px;}
.ybb{bottom:169.140000px;}
.y88{bottom:169.770000px;}
.y32{bottom:175.770000px;}
.y12a{bottom:175.800000px;}
.y114{bottom:176.970000px;}
.y4a{bottom:180.810000px;}
.y4f{bottom:181.470000px;}
.yf8{bottom:185.970000px;}
.yba{bottom:186.330000px;}
.y87{bottom:186.960000px;}
.y129{bottom:192.990000px;}
.y31{bottom:193.050000px;}
.y113{bottom:194.250000px;}
.y49{bottom:196.380000px;}
.y4e{bottom:198.750000px;}
.yf7{bottom:203.160000px;}
.yb9{bottom:203.610000px;}
.y86{bottom:204.240000px;}
.y30{bottom:210.240000px;}
.y128{bottom:210.270000px;}
.y112{bottom:211.440000px;}
.y48{bottom:211.860000px;}
.y4d{bottom:215.490000px;}
.yf6{bottom:220.440000px;}
.yb8{bottom:220.890000px;}
.y85{bottom:221.520000px;}
.y47{bottom:227.430000px;}
.y127{bottom:227.460000px;}
.y2f{bottom:227.520000px;}
.y25{bottom:228.090000px;}
.y111{bottom:228.720000px;}
.yf5{bottom:237.720000px;}
.yb7{bottom:238.080000px;}
.y84{bottom:239.790000px;}
.y46{bottom:242.910000px;}
.y126{bottom:244.740000px;}
.y2e{bottom:244.800000px;}
.y110{bottom:245.910000px;}
.yf4{bottom:254.910000px;}
.yb6{bottom:255.360000px;}
.y83{bottom:257.070000px;}
.y2d{bottom:261.990000px;}
.y125{bottom:262.020000px;}
.y10f{bottom:263.190000px;}
.yb5{bottom:270.120000px;}
.yf3{bottom:272.190000px;}
.y82{bottom:274.260000px;}
.y124{bottom:279.210000px;}
.y2c{bottom:279.270000px;}
.y10e{bottom:280.470000px;}
.yb2{bottom:284.700000px;}
.yf2{bottom:286.950000px;}
.y81{bottom:291.540000px;}
.y123{bottom:296.490000px;}
.y2b{bottom:296.550000px;}
.y10d{bottom:297.660000px;}
.yf1{bottom:301.530000px;}
.y80{bottom:308.820000px;}
.y2a{bottom:313.740000px;}
.y122{bottom:313.770000px;}
.y10c{bottom:314.940000px;}
.yf0{bottom:316.020000px;}
.y7f{bottom:326.010000px;}
.yef{bottom:330.600000px;}
.y121{bottom:330.960000px;}
.y29{bottom:331.020000px;}
.y10b{bottom:332.220000px;}
.yae{bottom:340.590000px;}
.y7e{bottom:343.290000px;}
.yee{bottom:346.800000px;}
.y28{bottom:348.240000px;}
.y10a{bottom:349.410000px;}
.yed{bottom:356.430000px;}
.y7d{bottom:360.570000px;}
.y27{bottom:365.520000px;}
.y109{bottom:366.690000px;}
.yec{bottom:370.200000px;}
.y7c{bottom:377.760000px;}
.y120{bottom:382.710000px;}
.y26{bottom:382.800000px;}
.yeb{bottom:383.970000px;}
.yad{bottom:385.410000px;}
.y7b{bottom:395.040000px;}
.yea{bottom:395.940000px;}
.yac{bottom:399.180000px;}
.y11f{bottom:399.990000px;}
.y108{bottom:401.160000px;}
.ye9{bottom:410.430000px;}
.y7a{bottom:412.320000px;}
.yab{bottom:412.950000px;}
.y11e{bottom:417.270000px;}
.y107{bottom:418.440000px;}
.ye8{bottom:425.010000px;}
.yaa{bottom:427.350000px;}
.y79{bottom:429.510000px;}
.y11d{bottom:434.460000px;}
.y106{bottom:435.720000px;}
.ye7{bottom:439.590000px;}
.ya9{bottom:444.630000px;}
.y78{bottom:446.790000px;}
.y11c{bottom:451.740000px;}
.y105{bottom:452.910000px;}
.ye6{bottom:454.080000px;}
.ya8{bottom:461.910000px;}
.y77{bottom:464.070000px;}
.ye5{bottom:468.660000px;}
.y11b{bottom:469.020000px;}
.y104{bottom:470.190000px;}
.ya7{bottom:479.100000px;}
.y76{bottom:481.260000px;}
.ye4{bottom:483.240000px;}
.y45{bottom:484.410000px;}
.y103{bottom:484.950000px;}
.y11a{bottom:486.210000px;}
.ya6{bottom:496.380000px;}
.ye2{bottom:497.730000px;}
.y75{bottom:498.540000px;}
.y3c{bottom:500.700000px;}
.y119{bottom:503.490000px;}
.ya5{bottom:513.660000px;}
.ye1{bottom:513.930000px;}
.y74{bottom:515.820000px;}
.y118{bottom:520.770000px;}
.ye0{bottom:523.560000px;}
.y102{bottom:527.070000px;}
.ya4{bottom:530.850000px;}
.y73{bottom:533.010000px;}
.ydf{bottom:537.960000px;}
.ya3{bottom:548.130000px;}
.y72{bottom:550.290000px;}
.yde{bottom:555.240000px;}
.ya2{bottom:565.410000px;}
.y71{bottom:567.570000px;}
.y101{bottom:571.890000px;}
.ydd{bottom:572.430000px;}
.ya1{bottom:582.630000px;}
.y70{bottom:584.790000px;}
.y100{bottom:585.690000px;}
.ydc{bottom:589.740000px;}
.yff{bottom:599.460000px;}
.ya0{bottom:599.910000px;}
.y6f{bottom:602.070000px;}
.ydb{bottom:607.020000px;}
.yfe{bottom:613.320000px;}
.y9f{bottom:617.190000px;}
.y6e{bottom:619.350000px;}
.yda{bottom:624.210000px;}
.y22{bottom:625.650000px;}
.yfd{bottom:627.090000px;}
.y9e{bottom:634.380000px;}
.y6d{bottom:636.540000px;}
.yd9{bottom:641.490000px;}
.y9d{bottom:651.660000px;}
.y6c{bottom:653.820000px;}
.y21{bottom:656.430000px;}
.yd8{bottom:658.770000px;}
.y1f{bottom:659.310000px;}
.y1e{bottom:665.070000px;}
.y9c{bottom:668.940000px;}
.y6b{bottom:671.010000px;}
.yd7{bottom:675.960000px;}
.y1d{bottom:682.350000px;}
.y9b{bottom:686.130000px;}
.y6a{bottom:688.290000px;}
.yd6{bottom:693.240000px;}
.y1c{bottom:699.540000px;}
.y9a{bottom:703.410000px;}
.y69{bottom:705.570000px;}
.yd5{bottom:710.520000px;}
.y1b{bottom:716.820000px;}
.y99{bottom:720.600000px;}
.y68{bottom:722.760000px;}
.yd4{bottom:727.710000px;}
.y1a{bottom:734.460000px;}
.y98{bottom:737.880000px;}
.y67{bottom:740.040000px;}
.yd3{bottom:744.990000px;}
.y19{bottom:753.360000px;}
.y97{bottom:755.160000px;}
.y66{bottom:757.320000px;}
.yd2{bottom:762.270000px;}
.y65{bottom:774.510000px;}
.y18{bottom:774.600000px;}
.y96{bottom:778.650000px;}
.yd1{bottom:779.460000px;}
.y95{bottom:790.710000px;}
.y64{bottom:791.790000px;}
.yd0{bottom:796.740000px;}
.y17{bottom:805.650000px;}
.y94{bottom:807.990000px;}
.y63{bottom:809.070000px;}
.ycf{bottom:814.020000px;}
.y93{bottom:825.180000px;}
.y62{bottom:826.260000px;}
.yce{bottom:831.210000px;}
.y16{bottom:836.700000px;}
.y92{bottom:842.460000px;}
.y61{bottom:843.540000px;}
.ycd{bottom:848.490000px;}
.y91{bottom:859.740000px;}
.y60{bottom:860.820000px;}
.ycc{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.y90{bottom:876.930000px;}
.y5f{bottom:878.010000px;}
.ycb{bottom:882.960000px;}
.y8f{bottom:894.210000px;}
.y5e{bottom:895.290000px;}
.y14{bottom:898.800000px;}
.yca{bottom:900.240000px;}
.y12e{bottom:905.460000px;}
.y8e{bottom:911.490000px;}
.y5d{bottom:912.570000px;}
.yc9{bottom:917.430000px;}
.y13{bottom:927.240000px;}
.y8d{bottom:928.680000px;}
.y5c{bottom:929.760000px;}
.yc8{bottom:934.710000px;}
.y8c{bottom:945.960000px;}
.y5b{bottom:947.040000px;}
.yc7{bottom:951.990000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.y8b{bottom:963.240000px;}
.y5a{bottom:964.320000px;}
.yc6{bottom:969.180000px;}
.y59{bottom:981.510000px;}
.yc5{bottom:986.460000px;}
.y12d{bottom:988.980000px;}
.y58{bottom:998.820000px;}
.yc4{bottom:1003.770000px;}
.y57{bottom:1016.010000px;}
.yc3{bottom:1020.960000px;}
.y56{bottom:1033.290000px;}
.yc2{bottom:1038.240000px;}
.y55{bottom:1050.570000px;}
.yc1{bottom:1055.520000px;}
.y54{bottom:1067.760000px;}
.yc0{bottom:1072.710000px;}
.y53{bottom:1085.040000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h13{height:1.800000px;}
.h14{height:4.273242px;}
.hf{height:4.318066px;}
.h15{height:8.382129px;}
.h26{height:13.770000px;}
.h28{height:13.770150px;}
.h27{height:13.860000px;}
.h2a{height:13.890000px;}
.h1c{height:15.480000px;}
.h16{height:17.190000px;}
.hc{height:20.863477px;}
.ha{height:21.082324px;}
.h22{height:27.147656px;}
.h4{height:27.630000px;}
.h6{height:33.431836px;}
.h23{height:33.782520px;}
.h1f{height:36.068555px;}
.h1e{height:37.705078px;}
.h17{height:38.100586px;}
.h7{height:39.082324px;}
.h1b{height:41.343750px;}
.h24{height:41.400000px;}
.h5{height:41.978320px;}
.h3{height:42.418652px;}
.h21{height:43.769004px;}
.h19{height:44.248592px;}
.h2{height:45.295488px;}
.h12{height:46.000195px;}
.h11{height:46.482715px;}
.h20{height:48.027656px;}
.h29{height:49.552031px;}
.h1{height:50.800781px;}
.h25{height:55.170000px;}
.h8{height:65.526152px;}
.hd{height:72.418535px;}
.h10{height:76.201172px;}
.h2b{height:82.800000px;}
.hb{height:93.219434px;}
.he{height:118.619824px;}
.h1a{height:124.140000px;}
.h9{height:143.220000px;}
.h1d{height:255.510000px;}
.h18{height:396.750000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w10{width:56.160000px;}
.w12{width:77.490000px;}
.wc{width:88.950000px;}
.wa{width:93.150000px;}
.wb{width:98.190000px;}
.w11{width:115.950000px;}
.w9{width:124.380000px;}
.we{width:132.030000px;}
.wf{width:155.160000px;}
.w5{width:165.900000px;}
.w8{width:217.740000px;}
.wd{width:274.260000px;}
.w13{width:315.660000px;}
.w7{width:603.240000px;}
.w4{width:648.060000px;}
.w3{width:745.470000px;}
.w6{width:901.530000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x15{left:3.150000px;}
.x4{left:4.320000px;}
.x2e{left:6.749986px;}
.x16{left:8.100000px;}
.x41{left:10.260000px;}
.x42{left:13.230000px;}
.x24{left:17.010000px;}
.x3f{left:18.540000px;}
.x20{left:20.160000px;}
.x26{left:21.330000px;}
.x27{left:27.180000px;}
.x23{left:33.030000px;}
.x29{left:34.230000px;}
.x34{left:36.990000px;}
.x1b{left:38.340000px;}
.x21{left:39.600000px;}
.x2c{left:40.680000px;}
.x32{left:42.300000px;}
.x2d{left:43.650000px;}
.x6{left:45.540000px;}
.x17{left:46.710000px;}
.x3c{left:50.760000px;}
.x2f{left:52.110000px;}
.x1{left:53.999986px;}
.x33{left:56.970000px;}
.x19{left:59.760000px;}
.x35{left:62.820000px;}
.x3b{left:65.790000px;}
.xa{left:70.470000px;}
.x39{left:74.430000px;}
.xe{left:78.299986px;}
.xf{left:87.299986px;}
.x43{left:92.069986px;}
.x3{left:99.360000px;}
.x2b{left:101.250000px;}
.x2a{left:102.780000px;}
.x9{left:105.480000px;}
.x2{left:107.999986px;}
.x37{left:113.430000px;}
.x38{left:116.760000px;}
.x36{left:121.800000px;}
.x5{left:134.460000px;}
.x8{left:200.190000px;}
.xb{left:231.780000px;}
.x3a{left:243.479986px;}
.x30{left:256.529986px;}
.x13{left:270.389986px;}
.x7{left:324.030000px;}
.x10{left:326.909986px;}
.x31{left:327.990000px;}
.x12{left:381.449986px;}
.x11{left:464.159986px;}
.x14{left:466.139986px;}
.x1f{left:478.320000px;}
.x1a{left:481.380000px;}
.x1c{left:486.059986px;}
.x44{left:513.059986px;}
.x1d{left:541.319986px;}
.x22{left:603.420000px;}
.x3d{left:634.290000px;}
.x18{left:650.670000px;}
.x1e{left:681.809986px;}
.x3e{left:691.170000px;}
.xc{left:693.600000px;}
.x25{left:697.380000px;}
.x28{left:796.380000px;}
.x40{left:807.840000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls12{letter-spacing:-10.293333pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.092267pt;}
.lse{letter-spacing:-0.080000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.011840pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.016640pt;}
.ls4{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.057600pt;}
.ls7{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.080000pt;}
.ls15{letter-spacing:0.136533pt;}
.ls3{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.240000pt;}
.ls16{letter-spacing:14.583680pt;}
.ls13{letter-spacing:41.143680pt;}
.lsc{letter-spacing:56.503680pt;}
.ls2{letter-spacing:811.386667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-24.032000pt;}
.ws6{word-spacing:-24.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.520000pt;}
.ws13{word-spacing:-13.496533pt;}
.ws0{word-spacing:-13.407360pt;}
.ws7{word-spacing:-13.360000pt;}
.ws10{word-spacing:-13.348160pt;}
.ws12{word-spacing:-13.312640pt;}
.ws8{word-spacing:-13.200000pt;}
.wsb{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.680000pt;}
.wsf{word-spacing:-10.800000pt;}
.wse{word-spacing:-10.656640pt;}
.ws2{word-spacing:-10.640000pt;}
.wsd{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
.ws11{word-spacing:3.712320pt;}
._2c{margin-left:-701.717227pt;}
._2d{margin-left:-535.891627pt;}
._31{margin-left:-308.702400pt;}
._1e{margin-left:-232.219200pt;}
._1d{margin-left:-182.668160pt;}
._1f{margin-left:-177.784960pt;}
._2a{margin-left:-136.160000pt;}
._34{margin-left:-106.960000pt;}
._25{margin-left:-99.520000pt;}
._20{margin-left:-95.005760pt;}
._29{margin-left:-88.732480pt;}
._27{margin-left:-78.080000pt;}
._24{margin-left:-64.000000pt;}
._26{margin-left:-57.212480pt;}
._22{margin-left:-43.360000pt;}
._21{margin-left:-42.400000pt;}
._33{margin-left:-24.412480pt;}
._23{margin-left:-10.139520pt;}
._e{margin-left:-5.664000pt;}
._0{margin-left:-1.003520pt;}
._2{width:0.944107pt;}
._6{width:1.923840pt;}
._5{width:2.832320pt;}
._3{width:3.901120pt;}
._d{width:4.863040pt;}
._b{width:6.519680pt;}
._c{width:7.909120pt;}
._1b{width:8.823573pt;}
._9{width:9.832960pt;}
._7{width:11.543040pt;}
._19{width:12.445547pt;}
._10{width:13.466560pt;}
._8{width:14.416960pt;}
._a{width:15.925120pt;}
._4{width:17.368000pt;}
._12{width:18.543680pt;}
._17{width:19.680107pt;}
._1c{width:20.627840pt;}
._1a{width:21.856960pt;}
._18{width:23.032640pt;}
._11{width:24.689280pt;}
._28{width:25.778240pt;}
._f{width:26.688000pt;}
._37{width:29.457280pt;}
._14{width:31.024960pt;}
._13{width:32.010560pt;}
._16{width:33.293120pt;}
._2f{width:34.522240pt;}
._2e{width:35.595840pt;}
._36{width:36.489920pt;}
._35{width:40.026560pt;}
._15{width:41.309120pt;}
._30{width:50.447360pt;}
._3a{width:59.773440pt;}
._3b{width:61.130560pt;}
._38{width:64.395200pt;}
._39{width:65.517440pt;}
._1{width:253.484373pt;}
._32{width:304.894187pt;}
._2b{width:535.562560pt;}
.fs8{font-size:5.440000pt;}
.fsa{font-size:10.560000pt;}
.fs3{font-size:26.560000pt;}
.fse{font-size:34.560000pt;}
.fs2{font-size:42.560000pt;}
.fsd{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fsc{font-size:56.330143pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs7{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:0.400000pt;}
.y7{bottom:2.320000pt;}
.ye3{bottom:2.400000pt;}
.y44{bottom:2.560000pt;}
.y23{bottom:2.880000pt;}
.y10{bottom:3.440000pt;}
.y24{bottom:4.080000pt;}
.y5{bottom:7.440000pt;}
.yb0{bottom:8.480000pt;}
.yb4{bottom:14.560000pt;}
.y6{bottom:14.640000pt;}
.y43{bottom:16.400000pt;}
.y3b{bottom:18.240000pt;}
.yf{bottom:19.840000pt;}
.yaf{bottom:20.720000pt;}
.yb1{bottom:26.880000pt;}
.ye{bottom:29.520000pt;}
.y42{bottom:30.160000pt;}
.ybf{bottom:31.680000pt;}
.y3a{bottom:33.600000pt;}
.yb3{bottom:39.120000pt;}
.y8{bottom:43.680000pt;}
.y41{bottom:43.920000pt;}
.yd{bottom:45.946667pt;}
.y39{bottom:48.880000pt;}
.y130{bottom:51.440000pt;}
.ybe{bottom:53.360000pt;}
.y40{bottom:57.760000pt;}
.yc{bottom:58.506667pt;}
.y12f{bottom:63.680000pt;}
.y38{bottom:64.240000pt;}
.y4{bottom:65.360000pt;}
.y3f{bottom:71.546667pt;}
.y37{bottom:79.600000pt;}
.y3e{bottom:85.386667pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y36{bottom:94.880000pt;}
.y3d{bottom:99.146667pt;}
.yfc{bottom:103.920000pt;}
.y35{bottom:110.240000pt;}
.y117{bottom:111.280000pt;}
.y52{bottom:115.280000pt;}
.yfb{bottom:119.280000pt;}
.ybd{bottom:119.600000pt;}
.y8a{bottom:120.160000pt;}
.ya{bottom:121.066667pt;}
.y12c{bottom:125.520000pt;}
.y34{bottom:125.600000pt;}
.y116{bottom:126.640000pt;}
.y51{bottom:130.640000pt;}
.y4c{bottom:133.120000pt;}
.yfa{bottom:134.640000pt;}
.ybc{bottom:134.960000pt;}
.y89{bottom:135.520000pt;}
.y33{bottom:140.880000pt;}
.y12b{bottom:140.906667pt;}
.y115{bottom:141.946667pt;}
.y50{bottom:145.946667pt;}
.y4b{bottom:146.960000pt;}
.yf9{bottom:149.946667pt;}
.ybb{bottom:150.346667pt;}
.y88{bottom:150.906667pt;}
.y32{bottom:156.240000pt;}
.y12a{bottom:156.266667pt;}
.y114{bottom:157.306667pt;}
.y4a{bottom:160.720000pt;}
.y4f{bottom:161.306667pt;}
.yf8{bottom:165.306667pt;}
.yba{bottom:165.626667pt;}
.y87{bottom:166.186667pt;}
.y129{bottom:171.546667pt;}
.y31{bottom:171.600000pt;}
.y113{bottom:172.666667pt;}
.y49{bottom:174.560000pt;}
.y4e{bottom:176.666667pt;}
.yf7{bottom:180.586667pt;}
.yb9{bottom:180.986667pt;}
.y86{bottom:181.546667pt;}
.y30{bottom:186.880000pt;}
.y128{bottom:186.906667pt;}
.y112{bottom:187.946667pt;}
.y48{bottom:188.320000pt;}
.y4d{bottom:191.546667pt;}
.yf6{bottom:195.946667pt;}
.yb8{bottom:196.346667pt;}
.y85{bottom:196.906667pt;}
.y47{bottom:202.160000pt;}
.y127{bottom:202.186667pt;}
.y2f{bottom:202.240000pt;}
.y25{bottom:202.746667pt;}
.y111{bottom:203.306667pt;}
.yf5{bottom:211.306667pt;}
.yb7{bottom:211.626667pt;}
.y84{bottom:213.146667pt;}
.y46{bottom:215.920000pt;}
.y126{bottom:217.546667pt;}
.y2e{bottom:217.600000pt;}
.y110{bottom:218.586667pt;}
.yf4{bottom:226.586667pt;}
.yb6{bottom:226.986667pt;}
.y83{bottom:228.506667pt;}
.y2d{bottom:232.880000pt;}
.y125{bottom:232.906667pt;}
.y10f{bottom:233.946667pt;}
.yb5{bottom:240.106667pt;}
.yf3{bottom:241.946667pt;}
.y82{bottom:243.786667pt;}
.y124{bottom:248.186667pt;}
.y2c{bottom:248.240000pt;}
.y10e{bottom:249.306667pt;}
.yb2{bottom:253.066667pt;}
.yf2{bottom:255.066667pt;}
.y81{bottom:259.146667pt;}
.y123{bottom:263.546667pt;}
.y2b{bottom:263.600000pt;}
.y10d{bottom:264.586667pt;}
.yf1{bottom:268.026667pt;}
.y80{bottom:274.506667pt;}
.y2a{bottom:278.880000pt;}
.y122{bottom:278.906667pt;}
.y10c{bottom:279.946667pt;}
.yf0{bottom:280.906667pt;}
.y7f{bottom:289.786667pt;}
.yef{bottom:293.866667pt;}
.y121{bottom:294.186667pt;}
.y29{bottom:294.240000pt;}
.y10b{bottom:295.306667pt;}
.yae{bottom:302.746667pt;}
.y7e{bottom:305.146667pt;}
.yee{bottom:308.266667pt;}
.y28{bottom:309.546667pt;}
.y10a{bottom:310.586667pt;}
.yed{bottom:316.826667pt;}
.y7d{bottom:320.506667pt;}
.y27{bottom:324.906667pt;}
.y109{bottom:325.946667pt;}
.yec{bottom:329.066667pt;}
.y7c{bottom:335.786667pt;}
.y120{bottom:340.186667pt;}
.y26{bottom:340.266667pt;}
.yeb{bottom:341.306667pt;}
.yad{bottom:342.586667pt;}
.y7b{bottom:351.146667pt;}
.yea{bottom:351.946667pt;}
.yac{bottom:354.826667pt;}
.y11f{bottom:355.546667pt;}
.y108{bottom:356.586667pt;}
.ye9{bottom:364.826667pt;}
.y7a{bottom:366.506667pt;}
.yab{bottom:367.066667pt;}
.y11e{bottom:370.906667pt;}
.y107{bottom:371.946667pt;}
.ye8{bottom:377.786667pt;}
.yaa{bottom:379.866667pt;}
.y79{bottom:381.786667pt;}
.y11d{bottom:386.186667pt;}
.y106{bottom:387.306667pt;}
.ye7{bottom:390.746667pt;}
.ya9{bottom:395.226667pt;}
.y78{bottom:397.146667pt;}
.y11c{bottom:401.546667pt;}
.y105{bottom:402.586667pt;}
.ye6{bottom:403.626667pt;}
.ya8{bottom:410.586667pt;}
.y77{bottom:412.506667pt;}
.ye5{bottom:416.586667pt;}
.y11b{bottom:416.906667pt;}
.y104{bottom:417.946667pt;}
.ya7{bottom:425.866667pt;}
.y76{bottom:427.786667pt;}
.ye4{bottom:429.546667pt;}
.y45{bottom:430.586667pt;}
.y103{bottom:431.066667pt;}
.y11a{bottom:432.186667pt;}
.ya6{bottom:441.226667pt;}
.ye2{bottom:442.426667pt;}
.y75{bottom:443.146667pt;}
.y3c{bottom:445.066667pt;}
.y119{bottom:447.546667pt;}
.ya5{bottom:456.586667pt;}
.ye1{bottom:456.826667pt;}
.y74{bottom:458.506667pt;}
.y118{bottom:462.906667pt;}
.ye0{bottom:465.386667pt;}
.y102{bottom:468.506667pt;}
.ya4{bottom:471.866667pt;}
.y73{bottom:473.786667pt;}
.ydf{bottom:478.186667pt;}
.ya3{bottom:487.226667pt;}
.y72{bottom:489.146667pt;}
.yde{bottom:493.546667pt;}
.ya2{bottom:502.586667pt;}
.y71{bottom:504.506667pt;}
.y101{bottom:508.346667pt;}
.ydd{bottom:508.826667pt;}
.ya1{bottom:517.893333pt;}
.y70{bottom:519.813333pt;}
.y100{bottom:520.613333pt;}
.ydc{bottom:524.213333pt;}
.yff{bottom:532.853333pt;}
.ya0{bottom:533.253333pt;}
.y6f{bottom:535.173333pt;}
.ydb{bottom:539.573333pt;}
.yfe{bottom:545.173333pt;}
.y9f{bottom:548.613333pt;}
.y6e{bottom:550.533333pt;}
.yda{bottom:554.853333pt;}
.y22{bottom:556.133333pt;}
.yfd{bottom:557.413333pt;}
.y9e{bottom:563.893333pt;}
.y6d{bottom:565.813333pt;}
.yd9{bottom:570.213333pt;}
.y9d{bottom:579.253333pt;}
.y6c{bottom:581.173333pt;}
.y21{bottom:583.493333pt;}
.yd8{bottom:585.573333pt;}
.y1f{bottom:586.053333pt;}
.y1e{bottom:591.173333pt;}
.y9c{bottom:594.613333pt;}
.y6b{bottom:596.453333pt;}
.yd7{bottom:600.853333pt;}
.y1d{bottom:606.533333pt;}
.y9b{bottom:609.893333pt;}
.y6a{bottom:611.813333pt;}
.yd6{bottom:616.213333pt;}
.y1c{bottom:621.813333pt;}
.y9a{bottom:625.253333pt;}
.y69{bottom:627.173333pt;}
.yd5{bottom:631.573333pt;}
.y1b{bottom:637.173333pt;}
.y99{bottom:640.533333pt;}
.y68{bottom:642.453333pt;}
.yd4{bottom:646.853333pt;}
.y1a{bottom:652.853333pt;}
.y98{bottom:655.893333pt;}
.y67{bottom:657.813333pt;}
.yd3{bottom:662.213333pt;}
.y19{bottom:669.653333pt;}
.y97{bottom:671.253333pt;}
.y66{bottom:673.173333pt;}
.yd2{bottom:677.573333pt;}
.y65{bottom:688.453333pt;}
.y18{bottom:688.533333pt;}
.y96{bottom:692.133333pt;}
.yd1{bottom:692.853333pt;}
.y95{bottom:702.853333pt;}
.y64{bottom:703.813333pt;}
.yd0{bottom:708.213333pt;}
.y17{bottom:716.133333pt;}
.y94{bottom:718.213333pt;}
.y63{bottom:719.173333pt;}
.ycf{bottom:723.573333pt;}
.y93{bottom:733.493333pt;}
.y62{bottom:734.453333pt;}
.yce{bottom:738.853333pt;}
.y16{bottom:743.733333pt;}
.y92{bottom:748.853333pt;}
.y61{bottom:749.813333pt;}
.ycd{bottom:754.213333pt;}
.y91{bottom:764.213333pt;}
.y60{bottom:765.173333pt;}
.ycc{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.y90{bottom:779.493333pt;}
.y5f{bottom:780.453333pt;}
.ycb{bottom:784.853333pt;}
.y8f{bottom:794.853333pt;}
.y5e{bottom:795.813333pt;}
.y14{bottom:798.933333pt;}
.yca{bottom:800.213333pt;}
.y12e{bottom:804.853333pt;}
.y8e{bottom:810.213333pt;}
.y5d{bottom:811.173333pt;}
.yc9{bottom:815.493333pt;}
.y13{bottom:824.213333pt;}
.y8d{bottom:825.493333pt;}
.y5c{bottom:826.453333pt;}
.yc8{bottom:830.853333pt;}
.y8c{bottom:840.853333pt;}
.y5b{bottom:841.813333pt;}
.yc7{bottom:846.213333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.y8b{bottom:856.213333pt;}
.y5a{bottom:857.173333pt;}
.yc6{bottom:861.493333pt;}
.y59{bottom:872.453333pt;}
.yc5{bottom:876.853333pt;}
.y12d{bottom:879.093333pt;}
.y58{bottom:887.840000pt;}
.yc4{bottom:892.240000pt;}
.y57{bottom:903.120000pt;}
.yc3{bottom:907.520000pt;}
.y56{bottom:918.480000pt;}
.yc2{bottom:922.880000pt;}
.y55{bottom:933.840000pt;}
.yc1{bottom:938.240000pt;}
.y54{bottom:949.120000pt;}
.yc0{bottom:953.520000pt;}
.y53{bottom:964.480000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h13{height:1.600000pt;}
.h14{height:3.798437pt;}
.hf{height:3.838281pt;}
.h15{height:7.450781pt;}
.h26{height:12.240000pt;}
.h28{height:12.240133pt;}
.h27{height:12.320000pt;}
.h2a{height:12.346667pt;}
.h1c{height:13.760000pt;}
.h16{height:15.280000pt;}
.hc{height:18.545312pt;}
.ha{height:18.739844pt;}
.h22{height:24.131250pt;}
.h4{height:24.560000pt;}
.h6{height:29.717188pt;}
.h23{height:30.028906pt;}
.h1f{height:32.060937pt;}
.h1e{height:33.515625pt;}
.h17{height:33.867188pt;}
.h7{height:34.739844pt;}
.h1b{height:36.750000pt;}
.h24{height:36.800000pt;}
.h5{height:37.314062pt;}
.h3{height:37.705469pt;}
.h21{height:38.905781pt;}
.h19{height:39.332082pt;}
.h2{height:40.262656pt;}
.h12{height:40.889062pt;}
.h11{height:41.317969pt;}
.h20{height:42.691250pt;}
.h29{height:44.046250pt;}
.h1{height:45.156250pt;}
.h25{height:49.040000pt;}
.h8{height:58.245469pt;}
.hd{height:64.372031pt;}
.h10{height:67.734375pt;}
.h2b{height:73.600000pt;}
.hb{height:82.861719pt;}
.he{height:105.439844pt;}
.h1a{height:110.346667pt;}
.h9{height:127.306667pt;}
.h1d{height:227.120000pt;}
.h18{height:352.666667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w10{width:49.920000pt;}
.w12{width:68.880000pt;}
.wc{width:79.066667pt;}
.wa{width:82.800000pt;}
.wb{width:87.280000pt;}
.w11{width:103.066667pt;}
.w9{width:110.560000pt;}
.we{width:117.360000pt;}
.wf{width:137.920000pt;}
.w5{width:147.466667pt;}
.w8{width:193.546667pt;}
.wd{width:243.786667pt;}
.w13{width:280.586667pt;}
.w7{width:536.213333pt;}
.w4{width:576.053333pt;}
.w3{width:662.640000pt;}
.w6{width:801.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x15{left:2.800000pt;}
.x4{left:3.840000pt;}
.x2e{left:5.999988pt;}
.x16{left:7.200000pt;}
.x41{left:9.120000pt;}
.x42{left:11.760000pt;}
.x24{left:15.120000pt;}
.x3f{left:16.480000pt;}
.x20{left:17.920000pt;}
.x26{left:18.960000pt;}
.x27{left:24.160000pt;}
.x23{left:29.360000pt;}
.x29{left:30.426667pt;}
.x34{left:32.880000pt;}
.x1b{left:34.080000pt;}
.x21{left:35.200000pt;}
.x2c{left:36.160000pt;}
.x32{left:37.600000pt;}
.x2d{left:38.800000pt;}
.x6{left:40.480000pt;}
.x17{left:41.520000pt;}
.x3c{left:45.120000pt;}
.x2f{left:46.320000pt;}
.x1{left:47.999988pt;}
.x33{left:50.640000pt;}
.x19{left:53.120000pt;}
.x35{left:55.840000pt;}
.x3b{left:58.480000pt;}
.xa{left:62.640000pt;}
.x39{left:66.160000pt;}
.xe{left:69.599988pt;}
.xf{left:77.599988pt;}
.x43{left:81.839988pt;}
.x3{left:88.320000pt;}
.x2b{left:90.000000pt;}
.x2a{left:91.360000pt;}
.x9{left:93.760000pt;}
.x2{left:95.999988pt;}
.x37{left:100.826667pt;}
.x38{left:103.786667pt;}
.x36{left:108.266667pt;}
.x5{left:119.520000pt;}
.x8{left:177.946667pt;}
.xb{left:206.026667pt;}
.x3a{left:216.426655pt;}
.x30{left:228.026655pt;}
.x13{left:240.346655pt;}
.x7{left:288.026667pt;}
.x10{left:290.586655pt;}
.x31{left:291.546667pt;}
.x12{left:339.066655pt;}
.x11{left:412.586655pt;}
.x14{left:414.346655pt;}
.x1f{left:425.173333pt;}
.x1a{left:427.893333pt;}
.x1c{left:432.053321pt;}
.x44{left:456.053321pt;}
.x1d{left:481.173321pt;}
.x22{left:536.373333pt;}
.x3d{left:563.813333pt;}
.x18{left:578.373333pt;}
.x1e{left:606.053321pt;}
.x3e{left:614.373333pt;}
.xc{left:616.533333pt;}
.x25{left:619.893333pt;}
.x28{left:707.893333pt;}
.x40{left:718.080000pt;}
}




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