
    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_805805a3f0711f890b642f9a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ea73a6b814e364d56e2e7fc6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_1b0c5d46db8831ee3f05e080.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_7869a33b188d846f20a295fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_df6f5c013d60088cd4597f60.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_568463a643b5e43cb3cb90dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_3ca981e043750d4a0ef4331c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1ed2ccfd3804688e3d66d8a3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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_b7e9d30debe272b479b63d02.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_1d5e9eaa9a05c13120d19b0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854492;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_b0580c0593fc9c3bc600a817.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1a2b392caf7a0605e7d28327.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065430;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;}
.m2{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);}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls7{letter-spacing:-0.291600px;}
.lsc{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.157200px;}
.ls1d{letter-spacing:-0.151200px;}
.ls6{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.lsf{letter-spacing:-0.063600px;}
.ls16{letter-spacing:-0.048960px;}
.ls18{letter-spacing:-0.006120px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.011160px;}
.ls2{letter-spacing:0.014760px;}
.ls15{letter-spacing:0.023040px;}
.ls8{letter-spacing:0.045360px;}
.ls9{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.049200px;}
.lsa{letter-spacing:0.064800px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.098400px;}
.ls1a{letter-spacing:0.103200px;}
.ls11{letter-spacing:0.115800px;}
.ls10{letter-spacing:0.118200px;}
.lsd{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.202200px;}
.ls14{letter-spacing:0.290880px;}
.ls1c{letter-spacing:0.294000px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.469080px;}
.ls1f{letter-spacing:47.726640px;}
.lsb{letter-spacing:63.566640px;}
.ls1e{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws10{word-spacing:-60.120000px;}
.ws3{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws16{word-spacing:-13.520400px;}
.ws13{word-spacing:-13.428600px;}
.ws8{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.344600px;}
.wse{word-spacing:-13.342200px;}
.ws14{word-spacing:-13.329600px;}
.wsf{word-spacing:-13.324800px;}
.ws5{word-spacing:-13.275600px;}
.wsa{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.220280px;}
.ws11{word-spacing:-13.177440px;}
.wsc{word-spacing:-13.162800px;}
.ws15{word-spacing:-13.069200px;}
.ws7{word-spacing:-13.039800px;}
.ws4{word-spacing:-12.934800px;}
.ws0{word-spacing:-9.810000px;}
.wsb{word-spacing:-8.553600px;}
.ws17{word-spacing:-8.402400px;}
.ws6{word-spacing:0.000000px;}
.ws2{word-spacing:4.304880px;}
._6{margin-left:-3.909600px;}
._5{margin-left:-2.344800px;}
._0{margin-left:-1.020000px;}
._1{width:1.090188px;}
._2{width:2.765400px;}
._7{width:4.629601px;}
._e{width:5.711400px;}
._f{width:7.274520px;}
._8{width:8.958000px;}
._4{width:10.641000px;}
._3{width:12.022200px;}
._13{width:14.338440px;}
._d{width:15.571080px;}
._a{width:16.572120px;}
._9{width:17.795400px;}
._16{width:20.500920px;}
._12{width:21.793320px;}
._14{width:27.384480px;}
._15{width:28.557720px;}
._c{width:29.579040px;}
._b{width:79.222680px;}
._10{width:94.606200px;}
._11{width:182.223720px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs9{font-size:63.371411px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y97{bottom:9.090000px;}
.y67{bottom:9.180000px;}
.yb2{bottom:9.210000px;}
.ybe{bottom:9.270000px;}
.ybd{bottom:10.080000px;}
.y69{bottom:19.170000px;}
.y66{bottom:28.170000px;}
.yfa{bottom:37.890000px;}
.y68{bottom:42.570000px;}
.y65{bottom:47.070000px;}
.y64{bottom:66.060000px;}
.y73{bottom:66.600000px;}
.y6f{bottom:66.630000px;}
.y6b{bottom:66.690000px;}
.y2{bottom:74.370000px;}
.y26{bottom:75.540000px;}
.y1{bottom:103.980000px;}
.ye6{bottom:116.760000px;}
.y38{bottom:125.490000px;}
.yc6{bottom:135.300000px;}
.y52{bottom:139.350000px;}
.y10a{bottom:139.800000px;}
.y91{bottom:140.970000px;}
.y12f{bottom:144.930000px;}
.ye5{bottom:145.470000px;}
.y24{bottom:151.050000px;}
.yc5{bottom:154.290000px;}
.y109{bottom:158.700000px;}
.y90{bottom:159.870000px;}
.y37{bottom:163.290000px;}
.y12e{bottom:163.920000px;}
.y23{bottom:170.040000px;}
.ye4{bottom:174.180000px;}
.y51{bottom:176.250000px;}
.y108{bottom:177.690000px;}
.y8f{bottom:178.860000px;}
.y7d{bottom:179.040000px;}
.yc4{bottom:182.280000px;}
.y22{bottom:189.030000px;}
.y12d{bottom:191.910000px;}
.y50{bottom:195.240000px;}
.y36{bottom:196.950000px;}
.y8e{bottom:197.850000px;}
.y7c{bottom:198.030000px;}
.ye3{bottom:202.890000px;}
.y21{bottom:208.020000px;}
.y12c{bottom:210.900000px;}
.y4f{bottom:214.230000px;}
.y107{bottom:214.680000px;}
.yc3{bottom:215.310000px;}
.y7b{bottom:217.830000px;}
.yad{bottom:223.140000px;}
.y8d{bottom:225.840000px;}
.ye2{bottom:231.690000px;}
.y4e{bottom:233.220000px;}
.y106{bottom:233.670000px;}
.y20{bottom:236.010000px;}
.y7a{bottom:236.820000px;}
.yac{bottom:238.170000px;}
.y12b{bottom:238.800000px;}
.yc2{bottom:244.020000px;}
.y105{bottom:252.660000px;}
.y79{bottom:255.810000px;}
.y12a{bottom:257.790000px;}
.ye1{bottom:260.400000px;}
.y4d{bottom:261.210000px;}
.y8c{bottom:264.270000px;}
.yab{bottom:266.880000px;}
.y104{bottom:271.650000px;}
.yc1{bottom:272.730000px;}
.y1f{bottom:273.000000px;}
.y78{bottom:274.800000px;}
.y129{bottom:285.780000px;}
.y8b{bottom:287.940000px;}
.ye0{bottom:289.110000px;}
.y103{bottom:290.640000px;}
.y1e{bottom:291.990000px;}
.y4c{bottom:298.200000px;}
.yc0{bottom:301.530000px;}
.y128{bottom:304.770000px;}
.y8a{bottom:306.930000px;}
.y102{bottom:309.540000px;}
.y1d{bottom:310.890000px;}
.y77{bottom:312.600000px;}
.y4b{bottom:317.190000px;}
.yaa{bottom:318.270000px;}
.y89{bottom:325.920000px;}
.y1c{bottom:329.880000px;}
.ybf{bottom:330.240000px;}
.y127{bottom:332.760000px;}
.y101{bottom:338.070000px;}
.y76{bottom:340.590000px;}
.y4a{bottom:345.090000px;}
.ya9{bottom:346.260000px;}
.y126{bottom:351.750000px;}
.y88{bottom:353.910000px;}
.ybc{bottom:358.950000px;}
.ydf{bottom:359.490000px;}
.y1b{bottom:366.870000px;}
.y72{bottom:373.620000px;}
.ya8{bottom:376.320000px;}
.y125{bottom:379.740000px;}
.y49{bottom:382.080000px;}
.y100{bottom:383.790000px;}
.y1a{bottom:385.860000px;}
.y87{bottom:390.900000px;}
.yde{bottom:396.480000px;}
.y48{bottom:401.070000px;}
.y75{bottom:402.330000px;}
.y19{bottom:404.850000px;}
.ya7{bottom:405.030000px;}
.y124{bottom:407.640000px;}
.y86{bottom:409.800000px;}
.ybb{bottom:411.240000px;}
.ydd{bottom:411.510000px;}
.yff{bottom:412.500000px;}
.y47{bottom:420.060000px;}
.y18{bottom:423.840000px;}
.y123{bottom:426.630000px;}
.y74{bottom:431.040000px;}
.ydc{bottom:440.220000px;}
.yfe{bottom:441.210000px;}
.y85{bottom:446.790000px;}
.y46{bottom:448.050000px;}
.yba{bottom:448.230000px;}
.y17{bottom:452.370000px;}
.y35{bottom:453.630000px;}
.y122{bottom:454.620000px;}
.y6e{bottom:459.840000px;}
.ydb{bottom:468.930000px;}
.yfd{bottom:469.950000px;}
.y121{bottom:473.640000px;}
.ya6{bottom:475.440000px;}
.y84{bottom:480.570000px;}
.y34{bottom:481.650000px;}
.yb9{bottom:481.920000px;}
.y45{bottom:482.010000px;}
.y71{bottom:488.580000px;}
.yda{bottom:497.760000px;}
.yfc{bottom:498.750000px;}
.y120{bottom:501.630000px;}
.y16{bottom:502.530000px;}
.ya5{bottom:503.430000px;}
.y70{bottom:517.290000px;}
.y33{bottom:518.640000px;}
.y44{bottom:519.000000px;}
.y11f{bottom:520.620000px;}
.yd9{bottom:526.470000px;}
.yf9{bottom:527.460000px;}
.ya4{bottom:533.490000px;}
.y32{bottom:537.630000px;}
.y15{bottom:540.780000px;}
.y6a{bottom:546.000000px;}
.y11e{bottom:548.610000px;}
.yd8{bottom:555.180000px;}
.y43{bottom:555.990000px;}
.yfb{bottom:556.170000px;}
.y31{bottom:556.620000px;}
.y14{bottom:559.770000px;}
.ya3{bottom:562.200000px;}
.y11d{bottom:567.600000px;}
.y6d{bottom:574.710000px;}
.y42{bottom:574.980000px;}
.y30{bottom:575.610000px;}
.y13{bottom:578.760000px;}
.yd7{bottom:583.890000px;}
.y145{bottom:585.690000px;}
.y2f{bottom:594.510000px;}
.y11c{bottom:595.500000px;}
.y12{bottom:597.750000px;}
.y6c{bottom:603.510000px;}
.y144{bottom:604.680000px;}
.yf8{bottom:607.560000px;}
.yd6{bottom:612.600000px;}
.y41{bottom:612.780000px;}
.ya2{bottom:613.590000px;}
.y11b{bottom:614.490000px;}
.y11{bottom:616.740000px;}
.y2e{bottom:622.500000px;}
.y63{bottom:632.220000px;}
.y143{bottom:632.670000px;}
.yf7{bottom:635.550000px;}
.y10{bottom:635.730000px;}
.yd5{bottom:641.400000px;}
.ya1{bottom:641.580000px;}
.y11a{bottom:642.480000px;}
.y40{bottom:649.770000px;}
.y142{bottom:651.660000px;}
.yf{bottom:654.720000px;}
.y2d{bottom:660.030000px;}
.y119{bottom:661.470000px;}
.yf6{bottom:668.580000px;}
.yd4{bottom:670.110000px;}
.ya0{bottom:671.640000px;}
.ye{bottom:673.710000px;}
.y141{bottom:679.650000px;}
.y118{bottom:680.460000px;}
.y3f{bottom:686.760000px;}
.yd{bottom:692.610000px;}
.yf5{bottom:697.290000px;}
.yd3{bottom:698.820000px;}
.y9f{bottom:700.350000px;}
.y140{bottom:707.640000px;}
.y117{bottom:708.450000px;}
.y2c{bottom:709.620000px;}
.yc{bottom:711.600000px;}
.y3e{bottom:720.420000px;}
.yf4{bottom:726.090000px;}
.y13f{bottom:726.540000px;}
.y116{bottom:727.440000px;}
.yb{bottom:730.590000px;}
.y62{bottom:740.580000px;}
.y2b{bottom:743.370000px;}
.ya{bottom:749.580000px;}
.yd2{bottom:750.210000px;}
.y9e{bottom:751.740000px;}
.y13e{bottom:754.530000px;}
.yf3{bottom:754.800000px;}
.y115{bottom:755.970000px;}
.y13d{bottom:773.520000px;}
.y9{bottom:776.580000px;}
.y61{bottom:777.480000px;}
.yd1{bottom:778.200000px;}
.y9d{bottom:779.730000px;}
.yf2{bottom:783.510000px;}
.y83{bottom:786.750000px;}
.y13c{bottom:792.510000px;}
.y60{bottom:805.470000px;}
.y82{bottom:805.740000px;}
.y9c{bottom:809.790000px;}
.yd0{bottom:811.230000px;}
.yf1{bottom:812.220000px;}
.y13b{bottom:820.500000px;}
.y8{bottom:823.380000px;}
.y114{bottom:824.460000px;}
.y81{bottom:825.540000px;}
.yb8{bottom:828.690000px;}
.y9b{bottom:838.500000px;}
.y13a{bottom:839.490000px;}
.ycf{bottom:839.940000px;}
.yf0{bottom:840.930000px;}
.y5f{bottom:842.460000px;}
.y80{bottom:844.530000px;}
.y113{bottom:852.990000px;}
.yb7{bottom:857.580000px;}
.y7{bottom:859.200000px;}
.y139{bottom:867.480000px;}
.yce{bottom:868.740000px;}
.yef{bottom:869.730000px;}
.y5e{bottom:870.450000px;}
.y7f{bottom:882.330000px;}
.y138{bottom:886.380000px;}
.yb6{bottom:888.450000px;}
.y9a{bottom:889.980000px;}
.y112{bottom:891.330000px;}
.y6{bottom:895.200000px;}
.ycd{bottom:897.450000px;}
.yee{bottom:898.440000px;}
.y5d{bottom:907.440000px;}
.y111{bottom:910.320000px;}
.y137{bottom:914.370000px;}
.y7e{bottom:915.990000px;}
.yb5{bottom:917.160000px;}
.y99{bottom:917.880000px;}
.ycc{bottom:926.160000px;}
.y5c{bottom:926.430000px;}
.yed{bottom:927.150000px;}
.y110{bottom:929.310000px;}
.y5{bottom:931.200000px;}
.y136{bottom:933.360000px;}
.y5b{bottom:945.420000px;}
.yb4{bottom:945.870000px;}
.y98{bottom:947.940000px;}
.ycb{bottom:954.870000px;}
.y10f{bottom:957.840000px;}
.y135{bottom:961.350000px;}
.y5a{bottom:964.320000px;}
.y4{bottom:968.820000px;}
.yb3{bottom:974.580000px;}
.y96{bottom:976.740000px;}
.yec{bottom:978.540000px;}
.y59{bottom:983.310000px;}
.yca{bottom:983.580000px;}
.y134{bottom:989.340000px;}
.y10e{bottom:996.720000px;}
.y58{bottom:1002.300000px;}
.yb1{bottom:1003.380000px;}
.yeb{bottom:1006.530000px;}
.y133{bottom:1008.330000px;}
.y3{bottom:1009.050000px;}
.yc9{bottom:1012.410000px;}
.y57{bottom:1021.320000px;}
.y132{bottom:1027.350000px;}
.y95{bottom:1028.160000px;}
.yb0{bottom:1032.120000px;}
.yea{bottom:1039.590000px;}
.y56{bottom:1040.310000px;}
.yc8{bottom:1041.120000px;}
.y3d{bottom:1044.630000px;}
.y10d{bottom:1046.340000px;}
.y131{bottom:1055.340000px;}
.y94{bottom:1056.060000px;}
.y55{bottom:1059.300000px;}
.yaf{bottom:1060.830000px;}
.y10c{bottom:1065.240000px;}
.ye9{bottom:1068.300000px;}
.yc7{bottom:1069.830000px;}
.y130{bottom:1074.240000px;}
.y54{bottom:1078.290000px;}
.y3c{bottom:1081.620000px;}
.y2a{bottom:1083.240000px;}
.y10b{bottom:1084.230000px;}
.y93{bottom:1090.080000px;}
.ye8{bottom:1097.100000px;}
.y3b{bottom:1100.610000px;}
.y29{bottom:1102.230000px;}
.y53{bottom:1106.190000px;}
.yae{bottom:1112.220000px;}
.y3a{bottom:1120.410000px;}
.y28{bottom:1121.220000px;}
.ye7{bottom:1125.810000px;}
.y92{bottom:1127.610000px;}
.y39{bottom:1139.400000px;}
.y27{bottom:1140.210000px;}
.y25{bottom:1194.210000px;}
.h13{height:27.900000px;}
.he{height:27.990000px;}
.h10{height:28.020000px;}
.h16{height:28.890000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h15{height:44.001048px;}
.h14{height:46.980000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h17{height:56.700000px;}
.h12{height:58.970215px;}
.hb{height:59.973223px;}
.h7{height:60.960938px;}
.ha{height:61.793886px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.hc{height:84.870000px;}
.h11{height:85.410000px;}
.hf{height:85.440000px;}
.hd{height:85.500000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:44.100000px;}
.w5{width:46.890000px;}
.w30{width:51.150000px;}
.w31{width:51.750000px;}
.w32{width:51.780000px;}
.wb{width:54.360000px;}
.w1c{width:59.130000px;}
.wc{width:61.020000px;}
.w7{width:63.450000px;}
.w8{width:65.460000px;}
.w33{width:67.320000px;}
.wa{width:67.590000px;}
.w25{width:80.370000px;}
.w2d{width:82.980000px;}
.w6{width:83.070000px;}
.w1b{width:91.620000px;}
.w22{width:92.070000px;}
.w11{width:92.730000px;}
.w23{width:94.320000px;}
.w21{width:94.440000px;}
.w2c{width:96.570000px;}
.w13{width:96.660000px;}
.w20{width:97.470000px;}
.w3{width:98.670000px;}
.w10{width:100.350000px;}
.w12{width:101.700000px;}
.wd{width:101.790000px;}
.w26{width:103.410000px;}
.w16{width:103.680000px;}
.w4{width:104.400000px;}
.w2f{width:105.510000px;}
.w15{width:109.440000px;}
.w39{width:110.070000px;}
.w37{width:110.100000px;}
.w38{width:110.160000px;}
.w1a{width:114.030000px;}
.w24{width:114.330000px;}
.w2e{width:116.190000px;}
.w27{width:119.820000px;}
.w28{width:119.970000px;}
.w17{width:123.960000px;}
.w29{width:124.020000px;}
.w14{width:136.710000px;}
.w1e{width:143.400000px;}
.w2b{width:148.860000px;}
.w34{width:158.790000px;}
.w2a{width:165.810000px;}
.w19{width:167.160000px;}
.w1d{width:171.270000px;}
.w1f{width:171.570000px;}
.wf{width:180.120000px;}
.we{width:183.420000px;}
.w18{width:199.530000px;}
.w35{width:247.410000px;}
.w36{width:331.770000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:3.870000px;}
.x28{left:7.740000px;}
.x1{left:68.040000px;}
.x52{left:76.860000px;}
.xf{left:83.700000px;}
.x8{left:95.039987px;}
.x3f{left:105.930000px;}
.x54{left:111.239987px;}
.x9{left:122.039987px;}
.x48{left:150.750000px;}
.x3b{left:155.250000px;}
.x27{left:177.240000px;}
.x11{left:183.090000px;}
.x44{left:186.330000px;}
.x2{left:192.719987px;}
.xd{left:201.359987px;}
.x49{left:202.620000px;}
.x1e{left:213.240000px;}
.x40{left:226.560000px;}
.x23{left:231.600000px;}
.x53{left:236.370000px;}
.x2b{left:250.590000px;}
.x2e{left:254.100000px;}
.x4a{left:255.180000px;}
.x32{left:258.960000px;}
.x38{left:281.820000px;}
.x45{left:283.710000px;}
.x12{left:288.300000px;}
.xe{left:290.459987px;}
.x21{left:298.380000px;}
.x5{left:305.039987px;}
.x4b{left:307.650000px;}
.x1f{left:315.750000px;}
.x33{left:318.810000px;}
.x35{left:324.029987px;}
.x36{left:332.309987px;}
.x24{left:334.110000px;}
.x13{left:336.000000px;}
.x39{left:341.670000px;}
.x7{left:343.019987px;}
.x41{left:347.250000px;}
.x2f{left:356.610000px;}
.x2c{left:360.750000px;}
.xc{left:365.429987px;}
.x46{left:367.410000px;}
.x1b{left:384.419987px;}
.x1d{left:387.119987px;}
.x29{left:391.800000px;}
.xa{left:401.969987px;}
.x4c{left:412.680000px;}
.x14{left:419.790000px;}
.x25{left:431.490000px;}
.x3c{left:438.330000px;}
.x30{left:454.080000px;}
.x4d{left:465.150000px;}
.x42{left:471.990000px;}
.x15{left:484.050000px;}
.x34{left:490.890000px;}
.x20{left:499.890000px;}
.x22{left:502.140000px;}
.x3a{left:513.960000px;}
.x2a{left:516.480000px;}
.x4e{left:517.650000px;}
.x26{left:525.030000px;}
.x2d{left:528.630000px;}
.x31{left:547.530000px;}
.x16{left:550.230000px;}
.x3d{left:553.380000px;}
.xb{left:563.639987px;}
.x4f{left:570.210000px;}
.x6{left:573.809987px;}
.x1c{left:576.059987px;}
.x47{left:590.730000px;}
.x17{left:595.140000px;}
.x50{left:622.680000px;}
.x3e{left:634.560000px;}
.x43{left:638.520000px;}
.x18{left:639.960000px;}
.x51{left:675.150000px;}
.x4{left:706.559987px;}
.x19{left:708.270000px;}
.x37{left:731.309987px;}
.x1a{left:763.440000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls7{letter-spacing:-0.259200pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.139733pt;}
.ls1d{letter-spacing:-0.134400pt;}
.ls6{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.lsf{letter-spacing:-0.056533pt;}
.ls16{letter-spacing:-0.043520pt;}
.ls18{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.009920pt;}
.ls2{letter-spacing:0.013120pt;}
.ls15{letter-spacing:0.020480pt;}
.ls8{letter-spacing:0.040320pt;}
.ls9{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.043733pt;}
.lsa{letter-spacing:0.057600pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.087467pt;}
.ls1a{letter-spacing:0.091733pt;}
.ls11{letter-spacing:0.102933pt;}
.ls10{letter-spacing:0.105067pt;}
.lsd{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.179733pt;}
.ls14{letter-spacing:0.258560pt;}
.ls1c{letter-spacing:0.261333pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.416960pt;}
.ls1f{letter-spacing:42.423680pt;}
.lsb{letter-spacing:56.503680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws10{word-spacing:-53.440000pt;}
.ws3{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws16{word-spacing:-12.018133pt;}
.ws13{word-spacing:-11.936533pt;}
.ws8{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.861867pt;}
.wse{word-spacing:-11.859733pt;}
.ws14{word-spacing:-11.848533pt;}
.wsf{word-spacing:-11.844267pt;}
.ws5{word-spacing:-11.800533pt;}
.wsa{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.751360pt;}
.ws11{word-spacing:-11.713280pt;}
.wsc{word-spacing:-11.700267pt;}
.ws15{word-spacing:-11.617067pt;}
.ws7{word-spacing:-11.590933pt;}
.ws4{word-spacing:-11.497600pt;}
.ws0{word-spacing:-8.720000pt;}
.wsb{word-spacing:-7.603200pt;}
.ws17{word-spacing:-7.468800pt;}
.ws6{word-spacing:0.000000pt;}
.ws2{word-spacing:3.826560pt;}
._6{margin-left:-3.475200pt;}
._5{margin-left:-2.084267pt;}
._0{margin-left:-0.906667pt;}
._1{width:0.969056pt;}
._2{width:2.458133pt;}
._7{width:4.115201pt;}
._e{width:5.076800pt;}
._f{width:6.466240pt;}
._8{width:7.962667pt;}
._4{width:9.458666pt;}
._3{width:10.686400pt;}
._13{width:12.745280pt;}
._d{width:13.840960pt;}
._a{width:14.730774pt;}
._9{width:15.818133pt;}
._16{width:18.223040pt;}
._12{width:19.371840pt;}
._14{width:24.341760pt;}
._15{width:25.384640pt;}
._c{width:26.292480pt;}
._b{width:70.420160pt;}
._10{width:84.094400pt;}
._11{width:161.976640pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs9{font-size:56.330143pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:8.080000pt;}
.y67{bottom:8.160000pt;}
.yb2{bottom:8.186667pt;}
.ybe{bottom:8.240000pt;}
.ybd{bottom:8.960000pt;}
.y69{bottom:17.040000pt;}
.y66{bottom:25.040000pt;}
.yfa{bottom:33.680000pt;}
.y68{bottom:37.840000pt;}
.y65{bottom:41.840000pt;}
.y64{bottom:58.720000pt;}
.y73{bottom:59.200000pt;}
.y6f{bottom:59.226667pt;}
.y6b{bottom:59.280000pt;}
.y2{bottom:66.106667pt;}
.y26{bottom:67.146667pt;}
.y1{bottom:92.426667pt;}
.ye6{bottom:103.786667pt;}
.y38{bottom:111.546667pt;}
.yc6{bottom:120.266667pt;}
.y52{bottom:123.866667pt;}
.y10a{bottom:124.266667pt;}
.y91{bottom:125.306667pt;}
.y12f{bottom:128.826667pt;}
.ye5{bottom:129.306667pt;}
.y24{bottom:134.266667pt;}
.yc5{bottom:137.146667pt;}
.y109{bottom:141.066667pt;}
.y90{bottom:142.106667pt;}
.y37{bottom:145.146667pt;}
.y12e{bottom:145.706667pt;}
.y23{bottom:151.146667pt;}
.ye4{bottom:154.826667pt;}
.y51{bottom:156.666667pt;}
.y108{bottom:157.946667pt;}
.y8f{bottom:158.986667pt;}
.y7d{bottom:159.146667pt;}
.yc4{bottom:162.026667pt;}
.y22{bottom:168.026667pt;}
.y12d{bottom:170.586667pt;}
.y50{bottom:173.546667pt;}
.y36{bottom:175.066667pt;}
.y8e{bottom:175.866667pt;}
.y7c{bottom:176.026667pt;}
.ye3{bottom:180.346667pt;}
.y21{bottom:184.906667pt;}
.y12c{bottom:187.466667pt;}
.y4f{bottom:190.426667pt;}
.y107{bottom:190.826667pt;}
.yc3{bottom:191.386667pt;}
.y7b{bottom:193.626667pt;}
.yad{bottom:198.346667pt;}
.y8d{bottom:200.746667pt;}
.ye2{bottom:205.946667pt;}
.y4e{bottom:207.306667pt;}
.y106{bottom:207.706667pt;}
.y20{bottom:209.786667pt;}
.y7a{bottom:210.506667pt;}
.yac{bottom:211.706667pt;}
.y12b{bottom:212.266667pt;}
.yc2{bottom:216.906667pt;}
.y105{bottom:224.586667pt;}
.y79{bottom:227.386667pt;}
.y12a{bottom:229.146667pt;}
.ye1{bottom:231.466667pt;}
.y4d{bottom:232.186667pt;}
.y8c{bottom:234.906667pt;}
.yab{bottom:237.226667pt;}
.y104{bottom:241.466667pt;}
.yc1{bottom:242.426667pt;}
.y1f{bottom:242.666667pt;}
.y78{bottom:244.266667pt;}
.y129{bottom:254.026667pt;}
.y8b{bottom:255.946667pt;}
.ye0{bottom:256.986667pt;}
.y103{bottom:258.346667pt;}
.y1e{bottom:259.546667pt;}
.y4c{bottom:265.066667pt;}
.yc0{bottom:268.026667pt;}
.y128{bottom:270.906667pt;}
.y8a{bottom:272.826667pt;}
.y102{bottom:275.146667pt;}
.y1d{bottom:276.346667pt;}
.y77{bottom:277.866667pt;}
.y4b{bottom:281.946667pt;}
.yaa{bottom:282.906667pt;}
.y89{bottom:289.706667pt;}
.y1c{bottom:293.226667pt;}
.ybf{bottom:293.546667pt;}
.y127{bottom:295.786667pt;}
.y101{bottom:300.506667pt;}
.y76{bottom:302.746667pt;}
.y4a{bottom:306.746667pt;}
.ya9{bottom:307.786667pt;}
.y126{bottom:312.666667pt;}
.y88{bottom:314.586667pt;}
.ybc{bottom:319.066667pt;}
.ydf{bottom:319.546667pt;}
.y1b{bottom:326.106667pt;}
.y72{bottom:332.106667pt;}
.ya8{bottom:334.506667pt;}
.y125{bottom:337.546667pt;}
.y49{bottom:339.626667pt;}
.y100{bottom:341.146667pt;}
.y1a{bottom:342.986667pt;}
.y87{bottom:347.466667pt;}
.yde{bottom:352.426667pt;}
.y48{bottom:356.506667pt;}
.y75{bottom:357.626667pt;}
.y19{bottom:359.866667pt;}
.ya7{bottom:360.026667pt;}
.y124{bottom:362.346667pt;}
.y86{bottom:364.266667pt;}
.ybb{bottom:365.546667pt;}
.ydd{bottom:365.786667pt;}
.yff{bottom:366.666667pt;}
.y47{bottom:373.386667pt;}
.y18{bottom:376.746667pt;}
.y123{bottom:379.226667pt;}
.y74{bottom:383.146667pt;}
.ydc{bottom:391.306667pt;}
.yfe{bottom:392.186667pt;}
.y85{bottom:397.146667pt;}
.y46{bottom:398.266667pt;}
.yba{bottom:398.426667pt;}
.y17{bottom:402.106667pt;}
.y35{bottom:403.226667pt;}
.y122{bottom:404.106667pt;}
.y6e{bottom:408.746667pt;}
.ydb{bottom:416.826667pt;}
.yfd{bottom:417.733333pt;}
.y121{bottom:421.013333pt;}
.ya6{bottom:422.613333pt;}
.y84{bottom:427.173333pt;}
.y34{bottom:428.133333pt;}
.yb9{bottom:428.373333pt;}
.y45{bottom:428.453333pt;}
.y71{bottom:434.293333pt;}
.yda{bottom:442.453333pt;}
.yfc{bottom:443.333333pt;}
.y120{bottom:445.893333pt;}
.y16{bottom:446.693333pt;}
.ya5{bottom:447.493333pt;}
.y70{bottom:459.813333pt;}
.y33{bottom:461.013333pt;}
.y44{bottom:461.333333pt;}
.y11f{bottom:462.773333pt;}
.yd9{bottom:467.973333pt;}
.yf9{bottom:468.853333pt;}
.ya4{bottom:474.213333pt;}
.y32{bottom:477.893333pt;}
.y15{bottom:480.693333pt;}
.y6a{bottom:485.333333pt;}
.y11e{bottom:487.653333pt;}
.yd8{bottom:493.493333pt;}
.y43{bottom:494.213333pt;}
.yfb{bottom:494.373333pt;}
.y31{bottom:494.773333pt;}
.y14{bottom:497.573333pt;}
.ya3{bottom:499.733333pt;}
.y11d{bottom:504.533333pt;}
.y6d{bottom:510.853333pt;}
.y42{bottom:511.093333pt;}
.y30{bottom:511.653333pt;}
.y13{bottom:514.453333pt;}
.yd7{bottom:519.013333pt;}
.y145{bottom:520.613333pt;}
.y2f{bottom:528.453333pt;}
.y11c{bottom:529.333333pt;}
.y12{bottom:531.333333pt;}
.y6c{bottom:536.453333pt;}
.y144{bottom:537.493333pt;}
.yf8{bottom:540.053333pt;}
.yd6{bottom:544.533333pt;}
.y41{bottom:544.693333pt;}
.ya2{bottom:545.413333pt;}
.y11b{bottom:546.213333pt;}
.y11{bottom:548.213333pt;}
.y2e{bottom:553.333333pt;}
.y63{bottom:561.973333pt;}
.y143{bottom:562.373333pt;}
.yf7{bottom:564.933333pt;}
.y10{bottom:565.093333pt;}
.yd5{bottom:570.133333pt;}
.ya1{bottom:570.293333pt;}
.y11a{bottom:571.093333pt;}
.y40{bottom:577.573333pt;}
.y142{bottom:579.253333pt;}
.yf{bottom:581.973333pt;}
.y2d{bottom:586.693333pt;}
.y119{bottom:587.973333pt;}
.yf6{bottom:594.293333pt;}
.yd4{bottom:595.653333pt;}
.ya0{bottom:597.013333pt;}
.ye{bottom:598.853333pt;}
.y141{bottom:604.133333pt;}
.y118{bottom:604.853333pt;}
.y3f{bottom:610.453333pt;}
.yd{bottom:615.653333pt;}
.yf5{bottom:619.813333pt;}
.yd3{bottom:621.173333pt;}
.y9f{bottom:622.533333pt;}
.y140{bottom:629.013333pt;}
.y117{bottom:629.733333pt;}
.y2c{bottom:630.773333pt;}
.yc{bottom:632.533333pt;}
.y3e{bottom:640.373333pt;}
.yf4{bottom:645.413333pt;}
.y13f{bottom:645.813333pt;}
.y116{bottom:646.613333pt;}
.yb{bottom:649.413333pt;}
.y62{bottom:658.293333pt;}
.y2b{bottom:660.773333pt;}
.ya{bottom:666.293333pt;}
.yd2{bottom:666.853333pt;}
.y9e{bottom:668.213333pt;}
.y13e{bottom:670.693333pt;}
.yf3{bottom:670.933333pt;}
.y115{bottom:671.973333pt;}
.y13d{bottom:687.573333pt;}
.y9{bottom:690.293333pt;}
.y61{bottom:691.093333pt;}
.yd1{bottom:691.733333pt;}
.y9d{bottom:693.093333pt;}
.yf2{bottom:696.453333pt;}
.y83{bottom:699.333333pt;}
.y13c{bottom:704.453333pt;}
.y60{bottom:715.973333pt;}
.y82{bottom:716.213333pt;}
.y9c{bottom:719.813333pt;}
.yd0{bottom:721.093333pt;}
.yf1{bottom:721.973333pt;}
.y13b{bottom:729.333333pt;}
.y8{bottom:731.893333pt;}
.y114{bottom:732.853333pt;}
.y81{bottom:733.813333pt;}
.yb8{bottom:736.613333pt;}
.y9b{bottom:745.333333pt;}
.y13a{bottom:746.213333pt;}
.ycf{bottom:746.613333pt;}
.yf0{bottom:747.493333pt;}
.y5f{bottom:748.853333pt;}
.y80{bottom:750.693333pt;}
.y113{bottom:758.213333pt;}
.yb7{bottom:762.293333pt;}
.y7{bottom:763.733333pt;}
.y139{bottom:771.093333pt;}
.yce{bottom:772.213333pt;}
.yef{bottom:773.093333pt;}
.y5e{bottom:773.733333pt;}
.y7f{bottom:784.293333pt;}
.y138{bottom:787.893333pt;}
.yb6{bottom:789.733333pt;}
.y9a{bottom:791.093333pt;}
.y112{bottom:792.293333pt;}
.y6{bottom:795.733333pt;}
.ycd{bottom:797.733333pt;}
.yee{bottom:798.613333pt;}
.y5d{bottom:806.613333pt;}
.y111{bottom:809.173333pt;}
.y137{bottom:812.773333pt;}
.y7e{bottom:814.213333pt;}
.yb5{bottom:815.253333pt;}
.y99{bottom:815.893333pt;}
.ycc{bottom:823.253333pt;}
.y5c{bottom:823.493333pt;}
.yed{bottom:824.133333pt;}
.y110{bottom:826.053333pt;}
.y5{bottom:827.733333pt;}
.y136{bottom:829.653333pt;}
.y5b{bottom:840.373333pt;}
.yb4{bottom:840.773333pt;}
.y98{bottom:842.613333pt;}
.ycb{bottom:848.773333pt;}
.y10f{bottom:851.413333pt;}
.y135{bottom:854.533333pt;}
.y5a{bottom:857.173333pt;}
.y4{bottom:861.173333pt;}
.yb3{bottom:866.293333pt;}
.y96{bottom:868.213333pt;}
.yec{bottom:869.813333pt;}
.y59{bottom:874.053333pt;}
.yca{bottom:874.293333pt;}
.y134{bottom:879.413333pt;}
.y10e{bottom:885.973333pt;}
.y58{bottom:890.933333pt;}
.yb1{bottom:891.893333pt;}
.yeb{bottom:894.693333pt;}
.y133{bottom:896.293333pt;}
.y3{bottom:896.933333pt;}
.yc9{bottom:899.920000pt;}
.y57{bottom:907.840000pt;}
.y132{bottom:913.200000pt;}
.y95{bottom:913.920000pt;}
.yb0{bottom:917.440000pt;}
.yea{bottom:924.080000pt;}
.y56{bottom:924.720000pt;}
.yc8{bottom:925.440000pt;}
.y3d{bottom:928.560000pt;}
.y10d{bottom:930.080000pt;}
.y131{bottom:938.080000pt;}
.y94{bottom:938.720000pt;}
.y55{bottom:941.600000pt;}
.yaf{bottom:942.960000pt;}
.y10c{bottom:946.880000pt;}
.ye9{bottom:949.600000pt;}
.yc7{bottom:950.960000pt;}
.y130{bottom:954.880000pt;}
.y54{bottom:958.480000pt;}
.y3c{bottom:961.440000pt;}
.y2a{bottom:962.880000pt;}
.y10b{bottom:963.760000pt;}
.y93{bottom:968.960000pt;}
.ye8{bottom:975.200000pt;}
.y3b{bottom:978.320000pt;}
.y29{bottom:979.760000pt;}
.y53{bottom:983.280000pt;}
.yae{bottom:988.640000pt;}
.y3a{bottom:995.920000pt;}
.y28{bottom:996.640000pt;}
.ye7{bottom:1000.720000pt;}
.y92{bottom:1002.320000pt;}
.y39{bottom:1012.800000pt;}
.y27{bottom:1013.520000pt;}
.y25{bottom:1061.520000pt;}
.h13{height:24.800000pt;}
.he{height:24.880000pt;}
.h10{height:24.906667pt;}
.h16{height:25.680000pt;}
.h2{height:26.686563pt;}
.h3{height:33.867188pt;}
.h15{height:39.112042pt;}
.h14{height:41.760000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h17{height:50.400000pt;}
.h12{height:52.417969pt;}
.hb{height:53.309531pt;}
.h7{height:54.187500pt;}
.ha{height:54.927899pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.hc{height:75.440000pt;}
.h11{height:75.920000pt;}
.hf{height:75.946667pt;}
.hd{height:76.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:39.200000pt;}
.w5{width:41.680000pt;}
.w30{width:45.466667pt;}
.w31{width:46.000000pt;}
.w32{width:46.026667pt;}
.wb{width:48.320000pt;}
.w1c{width:52.560000pt;}
.wc{width:54.240000pt;}
.w7{width:56.400000pt;}
.w8{width:58.186667pt;}
.w33{width:59.840000pt;}
.wa{width:60.080000pt;}
.w25{width:71.440000pt;}
.w2d{width:73.760000pt;}
.w6{width:73.840000pt;}
.w1b{width:81.440000pt;}
.w22{width:81.840000pt;}
.w11{width:82.426667pt;}
.w23{width:83.840000pt;}
.w21{width:83.946667pt;}
.w2c{width:85.840000pt;}
.w13{width:85.920000pt;}
.w20{width:86.640000pt;}
.w3{width:87.706667pt;}
.w10{width:89.200000pt;}
.w12{width:90.400000pt;}
.wd{width:90.480000pt;}
.w26{width:91.920000pt;}
.w16{width:92.160000pt;}
.w4{width:92.800000pt;}
.w2f{width:93.786667pt;}
.w15{width:97.280000pt;}
.w39{width:97.840000pt;}
.w37{width:97.866667pt;}
.w38{width:97.920000pt;}
.w1a{width:101.360000pt;}
.w24{width:101.626667pt;}
.w2e{width:103.280000pt;}
.w27{width:106.506667pt;}
.w28{width:106.640000pt;}
.w17{width:110.186667pt;}
.w29{width:110.240000pt;}
.w14{width:121.520000pt;}
.w1e{width:127.466667pt;}
.w2b{width:132.320000pt;}
.w34{width:141.146667pt;}
.w2a{width:147.386667pt;}
.w19{width:148.586667pt;}
.w1d{width:152.240000pt;}
.w1f{width:152.506667pt;}
.wf{width:160.106667pt;}
.we{width:163.040000pt;}
.w18{width:177.360000pt;}
.w35{width:219.920000pt;}
.w36{width:294.906667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:3.440000pt;}
.x28{left:6.880000pt;}
.x1{left:60.480000pt;}
.x52{left:68.320000pt;}
.xf{left:74.400000pt;}
.x8{left:84.479988pt;}
.x3f{left:94.160000pt;}
.x54{left:98.879988pt;}
.x9{left:108.479988pt;}
.x48{left:134.000000pt;}
.x3b{left:138.000000pt;}
.x27{left:157.546667pt;}
.x11{left:162.746667pt;}
.x44{left:165.626667pt;}
.x2{left:171.306655pt;}
.xd{left:178.986655pt;}
.x49{left:180.106667pt;}
.x1e{left:189.546667pt;}
.x40{left:201.386667pt;}
.x23{left:205.866667pt;}
.x53{left:210.106667pt;}
.x2b{left:222.746667pt;}
.x2e{left:225.866667pt;}
.x4a{left:226.826667pt;}
.x32{left:230.186667pt;}
.x38{left:250.506667pt;}
.x45{left:252.186667pt;}
.x12{left:256.266667pt;}
.xe{left:258.186655pt;}
.x21{left:265.226667pt;}
.x5{left:271.146655pt;}
.x4b{left:273.466667pt;}
.x1f{left:280.666667pt;}
.x33{left:283.386667pt;}
.x35{left:288.026655pt;}
.x36{left:295.386655pt;}
.x24{left:296.986667pt;}
.x13{left:298.666667pt;}
.x39{left:303.706667pt;}
.x7{left:304.906655pt;}
.x41{left:308.666667pt;}
.x2f{left:316.986667pt;}
.x2c{left:320.666667pt;}
.xc{left:324.826655pt;}
.x46{left:326.586667pt;}
.x1b{left:341.706655pt;}
.x1d{left:344.106655pt;}
.x29{left:348.266667pt;}
.xa{left:357.306655pt;}
.x4c{left:366.826667pt;}
.x14{left:373.146667pt;}
.x25{left:383.546667pt;}
.x3c{left:389.626667pt;}
.x30{left:403.626667pt;}
.x4d{left:413.466667pt;}
.x42{left:419.546667pt;}
.x15{left:430.266667pt;}
.x34{left:436.346667pt;}
.x20{left:444.346667pt;}
.x22{left:446.346667pt;}
.x3a{left:456.853333pt;}
.x2a{left:459.093333pt;}
.x4e{left:460.133333pt;}
.x26{left:466.693333pt;}
.x2d{left:469.893333pt;}
.x31{left:486.693333pt;}
.x16{left:489.093333pt;}
.x3d{left:491.893333pt;}
.xb{left:501.013322pt;}
.x4f{left:506.853333pt;}
.x6{left:510.053322pt;}
.x1c{left:512.053322pt;}
.x47{left:525.093333pt;}
.x17{left:529.013333pt;}
.x50{left:553.493333pt;}
.x3e{left:564.053333pt;}
.x43{left:567.573333pt;}
.x18{left:568.853333pt;}
.x51{left:600.133333pt;}
.x4{left:628.053322pt;}
.x19{left:629.573333pt;}
.x37{left:650.053322pt;}
.x1a{left:678.613333pt;}
.x3{left:711.413322pt;}
}




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