
    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_b8c327195112a0643c21cae7.woff')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_7edb7bb3bd58454fc6edfec2.woff')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_6c6e55c4bc0b072482f0b460.woff')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_338e4ef4fc75371a9d174e8d.woff')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_7c1295b5e16f4f635be880c7.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a4a590cf348c8397f7950198.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d1daadfef081330174436046.woff')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;}
.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;}
.lsf{letter-spacing:-0.186600px;}
.ls15{letter-spacing:-0.160800px;}
.ls12{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.095400px;}
.ls11{letter-spacing:0.113400px;}
.ls5{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.160800px;}
.lse{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls4{letter-spacing:3.960000px;}
.ls17{letter-spacing:47.726640px;}
.ls16{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;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.387200px;}
.wsa{word-spacing:-13.339800px;}
.wsc{word-spacing:-13.321800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.072800px;}
.wse{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._29{margin-left:-4.389258px;}
._6{margin-left:-3.366600px;}
._7{margin-left:-2.164131px;}
._0{margin-left:-1.110000px;}
._3{width:1.649929px;}
._a{width:2.886000px;}
._4{width:4.088400px;}
._12{width:5.651546px;}
._5{width:6.654787px;}
._d{width:8.134613px;}
._28{width:9.200619px;}
._9{width:10.220400px;}
._13{width:11.545491px;}
._2{width:13.233288px;}
._1{width:14.558160px;}
._e{width:16.131002px;}
._f{width:17.399992px;}
._b{width:18.577200px;}
._c{width:19.719600px;}
._8{width:20.801400px;}
._17{width:22.064040px;}
._16{width:23.086080px;}
._2a{width:24.264051px;}
._22{width:25.370640px;}
._2b{width:26.516178px;}
._2c{width:28.496880px;}
._2d{width:29.579040px;}
._10{width:30.841800px;}
._11{width:31.950529px;}
._31{width:34.328520px;}
._18{width:37.094040px;}
._34{width:40.039920px;}
._19{width:41.061960px;}
._35{width:46.472760px;}
._27{width:52.304400px;}
._24{width:54.468720px;}
._23{width:55.490760px;}
._38{width:56.993760px;}
._2e{width:58.917600px;}
._30{width:65.919360px;}
._21{width:67.695120px;}
._1b{width:72.384480px;}
._15{width:79.959600px;}
._14{width:84.107880px;}
._1c{width:89.699040px;}
._36{width:95.891400px;}
._20{width:105.149880px;}
._1a{width:107.013600px;}
._3d{width:131.422320px;}
._3e{width:132.464400px;}
._1d{width:141.883200px;}
._33{width:149.458320px;}
._1e{width:163.827000px;}
._37{width:167.133600px;}
._1f{width:211.983120px;}
._32{width:256.952880px;}
._2f{width:296.091000px;}
._25{width:359.337240px;}
._26{width:368.655840px;}
._3a{width:414.226800px;}
._3b{width:415.489320px;}
._39{width:609.737040px;}
._3c{width:2366.082720px;}
.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;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:3.330000px;}
.y5d{bottom:3.420000px;}
.y45{bottom:7.830000px;}
.y12e{bottom:7.920000px;}
.y4c{bottom:20.880000px;}
.y56{bottom:20.970000px;}
.y129{bottom:25.380000px;}
.y44{bottom:25.470000px;}
.y4e{bottom:34.020000px;}
.y4b{bottom:38.520000px;}
.y55{bottom:38.550000px;}
.y12b{bottom:43.020000px;}
.y128{bottom:43.050000px;}
.y48{bottom:51.570000px;}
.y5e{bottom:51.660000px;}
.y4a{bottom:56.070000px;}
.y54{bottom:56.100000px;}
.y5c{bottom:56.160000px;}
.y47{bottom:69.120000px;}
.y59{bottom:69.210000px;}
.y51{bottom:69.240000px;}
.y2{bottom:73.380000px;}
.y49{bottom:73.620000px;}
.y5b{bottom:73.710000px;}
.y53{bottom:73.740000px;}
.y2b{bottom:74.190000px;}
.y58{bottom:86.760000px;}
.y50{bottom:86.790000px;}
.y5a{bottom:91.260000px;}
.y52{bottom:91.290000px;}
.y1{bottom:101.640000px;}
.y60{bottom:104.400000px;}
.y61{bottom:108.900000px;}
.yb5{bottom:112.530000px;}
.y10a{bottom:116.940000px;}
.y64{bottom:117.840000px;}
.y14c{bottom:124.050000px;}
.y93{bottom:125.940000px;}
.yb4{bottom:130.170000px;}
.y29{bottom:133.860000px;}
.y109{bottom:134.580000px;}
.y63{bottom:135.480000px;}
.y124{bottom:139.170000px;}
.y92{bottom:143.580000px;}
.y17a{bottom:143.670000px;}
.yb3{bottom:147.720000px;}
.yf1{bottom:148.170000px;}
.y28{bottom:151.410000px;}
.y108{bottom:152.130000px;}
.y123{bottom:156.720000px;}
.y14b{bottom:159.600000px;}
.yd0{bottom:160.680000px;}
.y91{bottom:161.130000px;}
.y179{bottom:161.310000px;}
.y62{bottom:162.390000px;}
.yf0{bottom:165.720000px;}
.y27{bottom:169.050000px;}
.y15c{bottom:169.680000px;}
.y14a{bottom:177.240000px;}
.ycf{bottom:178.320000px;}
.y90{bottom:178.680000px;}
.yb2{bottom:183.270000px;}
.y26{bottom:186.600000px;}
.y15b{bottom:187.320000px;}
.y107{bottom:187.680000px;}
.y178{bottom:187.860000px;}
.y122{bottom:192.270000px;}
.y149{bottom:194.790000px;}
.yce{bottom:195.870000px;}
.y8f{bottom:196.320000px;}
.yb1{bottom:200.910000px;}
.y25{bottom:204.150000px;}
.y15a{bottom:204.870000px;}
.y106{bottom:205.320000px;}
.y177{bottom:205.500000px;}
.y5f{bottom:208.020000px;}
.y121{bottom:209.910000px;}
.y148{bottom:212.430000px;}
.ycd{bottom:213.510000px;}
.y8e{bottom:213.870000px;}
.yb0{bottom:218.460000px;}
.y24{bottom:221.790000px;}
.y105{bottom:222.870000px;}
.yef{bottom:227.460000px;}
.y147{bottom:229.980000px;}
.ycc{bottom:231.060000px;}
.y8d{bottom:231.510000px;}
.y176{bottom:232.050000px;}
.yaf{bottom:236.100000px;}
.y23{bottom:239.340000px;}
.y159{bottom:240.510000px;}
.y120{bottom:245.100000px;}
.y146{bottom:247.530000px;}
.y8c{bottom:249.060000px;}
.y104{bottom:249.510000px;}
.y175{bottom:249.600000px;}
.yae{bottom:253.650000px;}
.ycb{bottom:257.610000px;}
.y158{bottom:258.060000px;}
.y11f{bottom:262.650000px;}
.yee{bottom:263.100000px;}
.y145{bottom:265.170000px;}
.y8b{bottom:266.610000px;}
.yad{bottom:271.200000px;}
.y22{bottom:274.890000px;}
.y157{bottom:275.610000px;}
.y174{bottom:276.240000px;}
.y11e{bottom:280.200000px;}
.yed{bottom:280.650000px;}
.y103{bottom:285.060000px;}
.yac{bottom:288.840000px;}
.y21{bottom:292.530000px;}
.yca{bottom:293.250000px;}
.y173{bottom:293.790000px;}
.y11d{bottom:297.840000px;}
.yec{bottom:298.200000px;}
.y144{bottom:300.720000px;}
.y8a{bottom:302.250000px;}
.y102{bottom:302.610000px;}
.yab{bottom:306.390000px;}
.y20{bottom:310.080000px;}
.yc9{bottom:310.800000px;}
.y11c{bottom:315.390000px;}
.yeb{bottom:315.840000px;}
.y143{bottom:318.360000px;}
.y89{bottom:319.800000px;}
.y101{bottom:320.250000px;}
.y172{bottom:320.430000px;}
.y1f{bottom:327.720000px;}
.yc8{bottom:328.440000px;}
.y57{bottom:331.860000px;}
.yea{bottom:333.390000px;}
.y142{bottom:335.910000px;}
.y88{bottom:337.440000px;}
.y100{bottom:337.800000px;}
.y171{bottom:337.980000px;}
.yaa{bottom:341.940000px;}
.y1e{bottom:345.270000px;}
.yc7{bottom:345.990000px;}
.ye9{bottom:350.940000px;}
.y141{bottom:353.460000px;}
.y87{bottom:354.990000px;}
.yff{bottom:355.440000px;}
.ya9{bottom:359.580000px;}
.y1d{bottom:362.820000px;}
.yc6{bottom:363.540000px;}
.y170{bottom:364.530000px;}
.ye8{bottom:368.580000px;}
.y140{bottom:371.100000px;}
.yfe{bottom:372.990000px;}
.ya8{bottom:377.130000px;}
.y1c{bottom:380.460000px;}
.y156{bottom:381.180000px;}
.y86{bottom:381.540000px;}
.y16f{bottom:382.170000px;}
.y11b{bottom:386.130000px;}
.y13f{bottom:388.650000px;}
.yfd{bottom:390.540000px;}
.ya7{bottom:394.770000px;}
.y1b{bottom:398.010000px;}
.y155{bottom:398.730000px;}
.yc5{bottom:399.180000px;}
.y16e{bottom:399.720000px;}
.y11a{bottom:403.770000px;}
.ye7{bottom:404.130000px;}
.y13e{bottom:406.290000px;}
.yfc{bottom:408.180000px;}
.ya6{bottom:412.320000px;}
.y1a{bottom:415.650000px;}
.yc4{bottom:416.730000px;}
.y85{bottom:417.180000px;}
.y16d{bottom:417.360000px;}
.y119{bottom:421.320000px;}
.ye6{bottom:421.770000px;}
.y13d{bottom:423.840000px;}
.y19{bottom:433.200000px;}
.yc3{bottom:434.370000px;}
.y84{bottom:434.730000px;}
.y4f{bottom:438.150000px;}
.ya5{bottom:438.870000px;}
.ye5{bottom:439.320000px;}
.yfb{bottom:443.730000px;}
.y16c{bottom:443.910000px;}
.y18{bottom:450.750000px;}
.yc2{bottom:451.920000px;}
.y83{bottom:452.370000px;}
.y118{bottom:456.510000px;}
.ye4{bottom:456.870000px;}
.y13c{bottom:459.390000px;}
.yfa{bottom:461.370000px;}
.y16b{bottom:461.460000px;}
.yc1{bottom:469.470000px;}
.y82{bottom:469.950000px;}
.y117{bottom:474.090000px;}
.ya4{bottom:474.540000px;}
.y13b{bottom:477.060000px;}
.y17{bottom:477.690000px;}
.yf9{bottom:478.950000px;}
.y16a{bottom:479.130000px;}
.yc0{bottom:487.140000px;}
.y81{bottom:487.500000px;}
.y116{bottom:491.730000px;}
.ya3{bottom:492.090000px;}
.y13a{bottom:494.610000px;}
.yf8{bottom:496.500000px;}
.y169{bottom:496.680000px;}
.ybf{bottom:504.690000px;}
.y80{bottom:505.140000px;}
.ya2{bottom:509.730000px;}
.y139{bottom:512.160000px;}
.y154{bottom:513.690000px;}
.yf7{bottom:514.140000px;}
.ybe{bottom:522.330000px;}
.y7f{bottom:522.690000px;}
.y168{bottom:523.590000px;}
.y16{bottom:526.020000px;}
.ya1{bottom:527.280000px;}
.y138{bottom:529.800000px;}
.yf6{bottom:531.690000px;}
.y7e{bottom:540.330000px;}
.y15{bottom:543.930000px;}
.y46{bottom:544.470000px;}
.ya0{bottom:544.830000px;}
.y137{bottom:547.350000px;}
.yf5{bottom:549.330000px;}
.y7d{bottom:557.880000px;}
.y115{bottom:562.470000px;}
.y136{bottom:564.990000px;}
.y153{bottom:566.880000px;}
.y9f{bottom:571.740000px;}
.y167{bottom:571.830000px;}
.ybd{bottom:575.430000px;}
.y114{bottom:580.020000px;}
.ye3{bottom:580.470000px;}
.y14{bottom:580.920000px;}
.y135{bottom:582.540000px;}
.y152{bottom:584.430000px;}
.yf4{bottom:584.880000px;}
.y166{bottom:589.470000px;}
.ybc{bottom:593.070000px;}
.y7c{bottom:593.430000px;}
.y113{bottom:597.660000px;}
.ye2{bottom:598.020000px;}
.y13{bottom:598.470000px;}
.y151{bottom:602.070000px;}
.yf3{bottom:602.430000px;}
.y165{bottom:607.020000px;}
.ybb{bottom:610.620000px;}
.y7b{bottom:611.070000px;}
.ye1{bottom:615.660000px;}
.y12{bottom:616.110000px;}
.y134{bottom:618.090000px;}
.y9e{bottom:620.070000px;}
.y112{bottom:624.210000px;}
.y164{bottom:624.660000px;}
.yba{bottom:628.260000px;}
.y7a{bottom:628.620000px;}
.y43{bottom:633.120000px;}
.ye0{bottom:633.210000px;}
.y11{bottom:633.660000px;}
.y133{bottom:635.730000px;}
.y9d{bottom:637.620000px;}
.y163{bottom:642.210000px;}
.y79{bottom:646.260000px;}
.ydf{bottom:650.760000px;}
.y10{bottom:651.300000px;}
.y132{bottom:653.280000px;}
.yb9{bottom:654.810000px;}
.y9c{bottom:655.260000px;}
.y111{bottom:659.760000px;}
.y78{bottom:663.810000px;}
.yf{bottom:668.850000px;}
.y131{bottom:670.920000px;}
.y9b{bottom:672.810000px;}
.yde{bottom:677.400000px;}
.y77{bottom:681.360000px;}
.ye{bottom:686.400000px;}
.y9a{bottom:690.360000px;}
.y110{bottom:694.950000px;}
.y130{bottom:697.830000px;}
.y42{bottom:699.360000px;}
.yd{bottom:704.040000px;}
.y76{bottom:708.000000px;}
.y10f{bottom:712.590000px;}
.ydd{bottom:712.950000px;}
.yc{bottom:721.590000px;}
.y99{bottom:725.550000px;}
.y10e{bottom:730.140000px;}
.ydc{bottom:730.590000px;}
.y41{bottom:735.000000px;}
.yb{bottom:739.230000px;}
.y98{bottom:743.190000px;}
.y12f{bottom:743.460000px;}
.y75{bottom:743.550000px;}
.y162{bottom:747.690000px;}
.ydb{bottom:748.140000px;}
.y40{bottom:752.550000px;}
.y10d{bottom:757.050000px;}
.yb8{bottom:760.740000px;}
.y74{bottom:761.190000px;}
.y161{bottom:765.330000px;}
.yda{bottom:765.690000px;}
.ya{bottom:766.140000px;}
.y3f{bottom:770.190000px;}
.yb7{bottom:778.290000px;}
.y73{bottom:778.740000px;}
.y160{bottom:782.880000px;}
.yd9{bottom:783.330000px;}
.y3e{bottom:787.740000px;}
.y72{bottom:796.290000px;}
.y3d{bottom:805.290000px;}
.y12d{bottom:805.920000px;}
.y15f{bottom:809.790000px;}
.yd8{bottom:810.240000px;}
.y71{bottom:813.930000px;}
.y9{bottom:814.380000px;}
.y3c{bottom:822.930000px;}
.y70{bottom:831.480000px;}
.y3b{bottom:840.480000px;}
.y6f{bottom:849.030000px;}
.y8{bottom:849.930000px;}
.y12c{bottom:850.920000px;}
.y3a{bottom:858.030000px;}
.yd7{bottom:858.480000px;}
.y6e{bottom:866.670000px;}
.y39{bottom:875.670000px;}
.yd6{bottom:876.030000px;}
.y97{bottom:884.220000px;}
.y7{bottom:885.750000px;}
.y38{bottom:893.220000px;}
.yd5{bottom:893.670000px;}
.y96{bottom:901.860000px;}
.y6d{bottom:902.220000px;}
.y10c{bottom:910.860000px;}
.yd4{bottom:911.220000px;}
.y12a{bottom:913.380000px;}
.yb6{bottom:919.410000px;}
.y6c{bottom:919.860000px;}
.y6{bottom:921.750000px;}
.y10b{bottom:928.410000px;}
.y37{bottom:928.860000px;}
.y6b{bottom:937.410000px;}
.y15e{bottom:945.960000px;}
.y36{bottom:946.410000px;}
.y6a{bottom:954.960000px;}
.y5{bottom:957.840000px;}
.y15d{bottom:963.600000px;}
.y35{bottom:963.960000px;}
.y69{bottom:972.600000px;}
.y127{bottom:975.930000px;}
.y34{bottom:981.600000px;}
.y68{bottom:990.150000px;}
.y4{bottom:996.180000px;}
.y33{bottom:999.150000px;}
.yf2{bottom:999.600000px;}
.y67{bottom:1007.790000px;}
.y32{bottom:1016.820000px;}
.yd3{bottom:1017.180000px;}
.y3{bottom:1020.870000px;}
.y66{bottom:1025.370000px;}
.y31{bottom:1034.370000px;}
.yd2{bottom:1034.820000px;}
.y126{bottom:1038.420000px;}
.y65{bottom:1042.920000px;}
.y17b{bottom:1043.370000px;}
.y30{bottom:1051.920000px;}
.yd1{bottom:1052.370000px;}
.y150{bottom:1060.920000px;}
.y2f{bottom:1069.560000px;}
.y95{bottom:1069.920000px;}
.y14f{bottom:1078.560000px;}
.y125{bottom:1087.110000px;}
.y94{bottom:1087.560000px;}
.y14e{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y14d{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1205.100000px;}
.hf{height:26.550000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h8{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h7{height:60.960938px;}
.h11{height:61.740000px;}
.h10{height:61.770000px;}
.h12{height:61.793886px;}
.he{height:62.585859px;}
.hd{height:68.582109px;}
.h4{height:71.019492px;}
.h9{height:87.840000px;}
.hb{height:105.480000px;}
.ha{height:105.510000px;}
.hc{height:123.120000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:113.880000px;}
.w3{width:147.360000px;}
.w5{width:171.120000px;}
.w8{width:178.470000px;}
.w6{width:215.730000px;}
.w4{width:219.240000px;}
.wa{width:228.330000px;}
.w9{width:232.680000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xb{left:111.239987px;}
.x8{left:183.450000px;}
.x2{left:202.799987px;}
.x5{left:216.840000px;}
.x9{left:362.640000px;}
.x6{left:436.800000px;}
.xa{left:596.130000px;}
.x7{left:608.730000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls15{letter-spacing:-0.142933pt;}
.ls12{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.084800pt;}
.ls11{letter-spacing:0.100800pt;}
.ls5{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.142933pt;}
.lse{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls4{letter-spacing:3.520000pt;}
.ls17{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.899733pt;}
.wsa{word-spacing:-11.857600pt;}
.wsc{word-spacing:-11.841600pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.620267pt;}
.wse{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._29{margin-left:-3.901563pt;}
._6{margin-left:-2.992533pt;}
._7{margin-left:-1.923672pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.466604pt;}
._a{width:2.565334pt;}
._4{width:3.634134pt;}
._12{width:5.023597pt;}
._5{width:5.915366pt;}
._d{width:7.230767pt;}
._28{width:8.178328pt;}
._9{width:9.084800pt;}
._13{width:10.262659pt;}
._2{width:11.762922pt;}
._1{width:12.940587pt;}
._e{width:14.338668pt;}
._f{width:15.466660pt;}
._b{width:16.513067pt;}
._c{width:17.528534pt;}
._8{width:18.490133pt;}
._17{width:19.612480pt;}
._16{width:20.520960pt;}
._2a{width:21.568045pt;}
._22{width:22.551680pt;}
._2b{width:23.569936pt;}
._2c{width:25.330560pt;}
._2d{width:26.292480pt;}
._10{width:27.414934pt;}
._11{width:28.400470pt;}
._31{width:30.514240pt;}
._18{width:32.972480pt;}
._34{width:35.591040pt;}
._19{width:36.499520pt;}
._35{width:41.309120pt;}
._27{width:46.492800pt;}
._24{width:48.416640pt;}
._23{width:49.325120pt;}
._38{width:50.661120pt;}
._2e{width:52.371200pt;}
._30{width:58.594987pt;}
._21{width:60.173440pt;}
._1b{width:64.341760pt;}
._15{width:71.075200pt;}
._14{width:74.762560pt;}
._1c{width:79.732480pt;}
._36{width:85.236800pt;}
._20{width:93.466560pt;}
._1a{width:95.123200pt;}
._3d{width:116.819840pt;}
._3e{width:117.746133pt;}
._1d{width:126.118400pt;}
._33{width:132.851840pt;}
._1e{width:145.624000pt;}
._37{width:148.563200pt;}
._1f{width:188.429440pt;}
._32{width:228.402560pt;}
._2f{width:263.192000pt;}
._25{width:319.410880pt;}
._26{width:327.694080pt;}
._3a{width:368.201600pt;}
._3b{width:369.323840pt;}
._39{width:541.988480pt;}
._3c{width:2103.184640pt;}
.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;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:2.960000pt;}
.y5d{bottom:3.040000pt;}
.y45{bottom:6.960000pt;}
.y12e{bottom:7.040000pt;}
.y4c{bottom:18.560000pt;}
.y56{bottom:18.640000pt;}
.y129{bottom:22.560000pt;}
.y44{bottom:22.640000pt;}
.y4e{bottom:30.240000pt;}
.y4b{bottom:34.240000pt;}
.y55{bottom:34.266667pt;}
.y12b{bottom:38.240000pt;}
.y128{bottom:38.266667pt;}
.y48{bottom:45.840000pt;}
.y5e{bottom:45.920000pt;}
.y4a{bottom:49.840000pt;}
.y54{bottom:49.866667pt;}
.y5c{bottom:49.920000pt;}
.y47{bottom:61.440000pt;}
.y59{bottom:61.520000pt;}
.y51{bottom:61.546667pt;}
.y2{bottom:65.226667pt;}
.y49{bottom:65.440000pt;}
.y5b{bottom:65.520000pt;}
.y53{bottom:65.546667pt;}
.y2b{bottom:65.946667pt;}
.y58{bottom:77.120000pt;}
.y50{bottom:77.146667pt;}
.y5a{bottom:81.120000pt;}
.y52{bottom:81.146667pt;}
.y1{bottom:90.346667pt;}
.y60{bottom:92.800000pt;}
.y61{bottom:96.800000pt;}
.yb5{bottom:100.026667pt;}
.y10a{bottom:103.946667pt;}
.y64{bottom:104.746667pt;}
.y14c{bottom:110.266667pt;}
.y93{bottom:111.946667pt;}
.yb4{bottom:115.706667pt;}
.y29{bottom:118.986667pt;}
.y109{bottom:119.626667pt;}
.y63{bottom:120.426667pt;}
.y124{bottom:123.706667pt;}
.y92{bottom:127.626667pt;}
.y17a{bottom:127.706667pt;}
.yb3{bottom:131.306667pt;}
.yf1{bottom:131.706667pt;}
.y28{bottom:134.586667pt;}
.y108{bottom:135.226667pt;}
.y123{bottom:139.306667pt;}
.y14b{bottom:141.866667pt;}
.yd0{bottom:142.826667pt;}
.y91{bottom:143.226667pt;}
.y179{bottom:143.386667pt;}
.y62{bottom:144.346667pt;}
.yf0{bottom:147.306667pt;}
.y27{bottom:150.266667pt;}
.y15c{bottom:150.826667pt;}
.y14a{bottom:157.546667pt;}
.ycf{bottom:158.506667pt;}
.y90{bottom:158.826667pt;}
.yb2{bottom:162.906667pt;}
.y26{bottom:165.866667pt;}
.y15b{bottom:166.506667pt;}
.y107{bottom:166.826667pt;}
.y178{bottom:166.986667pt;}
.y122{bottom:170.906667pt;}
.y149{bottom:173.146667pt;}
.yce{bottom:174.106667pt;}
.y8f{bottom:174.506667pt;}
.yb1{bottom:178.586667pt;}
.y25{bottom:181.466667pt;}
.y15a{bottom:182.106667pt;}
.y106{bottom:182.506667pt;}
.y177{bottom:182.666667pt;}
.y5f{bottom:184.906667pt;}
.y121{bottom:186.586667pt;}
.y148{bottom:188.826667pt;}
.ycd{bottom:189.786667pt;}
.y8e{bottom:190.106667pt;}
.yb0{bottom:194.186667pt;}
.y24{bottom:197.146667pt;}
.y105{bottom:198.106667pt;}
.yef{bottom:202.186667pt;}
.y147{bottom:204.426667pt;}
.ycc{bottom:205.386667pt;}
.y8d{bottom:205.786667pt;}
.y176{bottom:206.266667pt;}
.yaf{bottom:209.866667pt;}
.y23{bottom:212.746667pt;}
.y159{bottom:213.786667pt;}
.y120{bottom:217.866667pt;}
.y146{bottom:220.026667pt;}
.y8c{bottom:221.386667pt;}
.y104{bottom:221.786667pt;}
.y175{bottom:221.866667pt;}
.yae{bottom:225.466667pt;}
.ycb{bottom:228.986667pt;}
.y158{bottom:229.386667pt;}
.y11f{bottom:233.466667pt;}
.yee{bottom:233.866667pt;}
.y145{bottom:235.706667pt;}
.y8b{bottom:236.986667pt;}
.yad{bottom:241.066667pt;}
.y22{bottom:244.346667pt;}
.y157{bottom:244.986667pt;}
.y174{bottom:245.546667pt;}
.y11e{bottom:249.066667pt;}
.yed{bottom:249.466667pt;}
.y103{bottom:253.386667pt;}
.yac{bottom:256.746667pt;}
.y21{bottom:260.026667pt;}
.yca{bottom:260.666667pt;}
.y173{bottom:261.146667pt;}
.y11d{bottom:264.746667pt;}
.yec{bottom:265.066667pt;}
.y144{bottom:267.306667pt;}
.y8a{bottom:268.666667pt;}
.y102{bottom:268.986667pt;}
.yab{bottom:272.346667pt;}
.y20{bottom:275.626667pt;}
.yc9{bottom:276.266667pt;}
.y11c{bottom:280.346667pt;}
.yeb{bottom:280.746667pt;}
.y143{bottom:282.986667pt;}
.y89{bottom:284.266667pt;}
.y101{bottom:284.666667pt;}
.y172{bottom:284.826667pt;}
.y1f{bottom:291.306667pt;}
.yc8{bottom:291.946667pt;}
.y57{bottom:294.986667pt;}
.yea{bottom:296.346667pt;}
.y142{bottom:298.586667pt;}
.y88{bottom:299.946667pt;}
.y100{bottom:300.266667pt;}
.y171{bottom:300.426667pt;}
.yaa{bottom:303.946667pt;}
.y1e{bottom:306.906667pt;}
.yc7{bottom:307.546667pt;}
.ye9{bottom:311.946667pt;}
.y141{bottom:314.186667pt;}
.y87{bottom:315.546667pt;}
.yff{bottom:315.946667pt;}
.ya9{bottom:319.626667pt;}
.y1d{bottom:322.506667pt;}
.yc6{bottom:323.146667pt;}
.y170{bottom:324.026667pt;}
.ye8{bottom:327.626667pt;}
.y140{bottom:329.866667pt;}
.yfe{bottom:331.546667pt;}
.ya8{bottom:335.226667pt;}
.y1c{bottom:338.186667pt;}
.y156{bottom:338.826667pt;}
.y86{bottom:339.146667pt;}
.y16f{bottom:339.706667pt;}
.y11b{bottom:343.226667pt;}
.y13f{bottom:345.466667pt;}
.yfd{bottom:347.146667pt;}
.ya7{bottom:350.906667pt;}
.y1b{bottom:353.786667pt;}
.y155{bottom:354.426667pt;}
.yc5{bottom:354.826667pt;}
.y16e{bottom:355.306667pt;}
.y11a{bottom:358.906667pt;}
.ye7{bottom:359.226667pt;}
.y13e{bottom:361.146667pt;}
.yfc{bottom:362.826667pt;}
.ya6{bottom:366.506667pt;}
.y1a{bottom:369.466667pt;}
.yc4{bottom:370.426667pt;}
.y85{bottom:370.826667pt;}
.y16d{bottom:370.986667pt;}
.y119{bottom:374.506667pt;}
.ye6{bottom:374.906667pt;}
.y13d{bottom:376.746667pt;}
.y19{bottom:385.066667pt;}
.yc3{bottom:386.106667pt;}
.y84{bottom:386.426667pt;}
.y4f{bottom:389.466667pt;}
.ya5{bottom:390.106667pt;}
.ye5{bottom:390.506667pt;}
.yfb{bottom:394.426667pt;}
.y16c{bottom:394.586667pt;}
.y18{bottom:400.666667pt;}
.yc2{bottom:401.706667pt;}
.y83{bottom:402.106667pt;}
.y118{bottom:405.786667pt;}
.ye4{bottom:406.106667pt;}
.y13c{bottom:408.346667pt;}
.yfa{bottom:410.106667pt;}
.y16b{bottom:410.186667pt;}
.yc1{bottom:417.306667pt;}
.y82{bottom:417.733333pt;}
.y117{bottom:421.413333pt;}
.ya4{bottom:421.813333pt;}
.y13b{bottom:424.053333pt;}
.y17{bottom:424.613333pt;}
.yf9{bottom:425.733333pt;}
.y16a{bottom:425.893333pt;}
.yc0{bottom:433.013333pt;}
.y81{bottom:433.333333pt;}
.y116{bottom:437.093333pt;}
.ya3{bottom:437.413333pt;}
.y13a{bottom:439.653333pt;}
.yf8{bottom:441.333333pt;}
.y169{bottom:441.493333pt;}
.ybf{bottom:448.613333pt;}
.y80{bottom:449.013333pt;}
.ya2{bottom:453.093333pt;}
.y139{bottom:455.253333pt;}
.y154{bottom:456.613333pt;}
.yf7{bottom:457.013333pt;}
.ybe{bottom:464.293333pt;}
.y7f{bottom:464.613333pt;}
.y168{bottom:465.413333pt;}
.y16{bottom:467.573333pt;}
.ya1{bottom:468.693333pt;}
.y138{bottom:470.933333pt;}
.yf6{bottom:472.613333pt;}
.y7e{bottom:480.293333pt;}
.y15{bottom:483.493333pt;}
.y46{bottom:483.973333pt;}
.ya0{bottom:484.293333pt;}
.y137{bottom:486.533333pt;}
.yf5{bottom:488.293333pt;}
.y7d{bottom:495.893333pt;}
.y115{bottom:499.973333pt;}
.y136{bottom:502.213333pt;}
.y153{bottom:503.893333pt;}
.y9f{bottom:508.213333pt;}
.y167{bottom:508.293333pt;}
.ybd{bottom:511.493333pt;}
.y114{bottom:515.573333pt;}
.ye3{bottom:515.973333pt;}
.y14{bottom:516.373333pt;}
.y135{bottom:517.813333pt;}
.y152{bottom:519.493333pt;}
.yf4{bottom:519.893333pt;}
.y166{bottom:523.973333pt;}
.ybc{bottom:527.173333pt;}
.y7c{bottom:527.493333pt;}
.y113{bottom:531.253333pt;}
.ye2{bottom:531.573333pt;}
.y13{bottom:531.973333pt;}
.y151{bottom:535.173333pt;}
.yf3{bottom:535.493333pt;}
.y165{bottom:539.573333pt;}
.ybb{bottom:542.773333pt;}
.y7b{bottom:543.173333pt;}
.ye1{bottom:547.253333pt;}
.y12{bottom:547.653333pt;}
.y134{bottom:549.413333pt;}
.y9e{bottom:551.173333pt;}
.y112{bottom:554.853333pt;}
.y164{bottom:555.253333pt;}
.yba{bottom:558.453333pt;}
.y7a{bottom:558.773333pt;}
.y43{bottom:562.773333pt;}
.ye0{bottom:562.853333pt;}
.y11{bottom:563.253333pt;}
.y133{bottom:565.093333pt;}
.y9d{bottom:566.773333pt;}
.y163{bottom:570.853333pt;}
.y79{bottom:574.453333pt;}
.ydf{bottom:578.453333pt;}
.y10{bottom:578.933333pt;}
.y132{bottom:580.693333pt;}
.yb9{bottom:582.053333pt;}
.y9c{bottom:582.453333pt;}
.y111{bottom:586.453333pt;}
.y78{bottom:590.053333pt;}
.yf{bottom:594.533333pt;}
.y131{bottom:596.373333pt;}
.y9b{bottom:598.053333pt;}
.yde{bottom:602.133333pt;}
.y77{bottom:605.653333pt;}
.ye{bottom:610.133333pt;}
.y9a{bottom:613.653333pt;}
.y110{bottom:617.733333pt;}
.y130{bottom:620.293333pt;}
.y42{bottom:621.653333pt;}
.yd{bottom:625.813333pt;}
.y76{bottom:629.333333pt;}
.y10f{bottom:633.413333pt;}
.ydd{bottom:633.733333pt;}
.yc{bottom:641.413333pt;}
.y99{bottom:644.933333pt;}
.y10e{bottom:649.013333pt;}
.ydc{bottom:649.413333pt;}
.y41{bottom:653.333333pt;}
.yb{bottom:657.093333pt;}
.y98{bottom:660.613333pt;}
.y12f{bottom:660.853333pt;}
.y75{bottom:660.933333pt;}
.y162{bottom:664.613333pt;}
.ydb{bottom:665.013333pt;}
.y40{bottom:668.933333pt;}
.y10d{bottom:672.933333pt;}
.yb8{bottom:676.213333pt;}
.y74{bottom:676.613333pt;}
.y161{bottom:680.293333pt;}
.yda{bottom:680.613333pt;}
.ya{bottom:681.013333pt;}
.y3f{bottom:684.613333pt;}
.yb7{bottom:691.813333pt;}
.y73{bottom:692.213333pt;}
.y160{bottom:695.893333pt;}
.yd9{bottom:696.293333pt;}
.y3e{bottom:700.213333pt;}
.y72{bottom:707.813333pt;}
.y3d{bottom:715.813333pt;}
.y12d{bottom:716.373333pt;}
.y15f{bottom:719.813333pt;}
.yd8{bottom:720.213333pt;}
.y71{bottom:723.493333pt;}
.y9{bottom:723.893333pt;}
.y3c{bottom:731.493333pt;}
.y70{bottom:739.093333pt;}
.y3b{bottom:747.093333pt;}
.y6f{bottom:754.693333pt;}
.y8{bottom:755.493333pt;}
.y12c{bottom:756.373333pt;}
.y3a{bottom:762.693333pt;}
.yd7{bottom:763.093333pt;}
.y6e{bottom:770.373333pt;}
.y39{bottom:778.373333pt;}
.yd6{bottom:778.693333pt;}
.y97{bottom:785.973333pt;}
.y7{bottom:787.333333pt;}
.y38{bottom:793.973333pt;}
.yd5{bottom:794.373333pt;}
.y96{bottom:801.653333pt;}
.y6d{bottom:801.973333pt;}
.y10c{bottom:809.653333pt;}
.yd4{bottom:809.973333pt;}
.y12a{bottom:811.893333pt;}
.yb6{bottom:817.253333pt;}
.y6c{bottom:817.653333pt;}
.y6{bottom:819.333333pt;}
.y10b{bottom:825.253333pt;}
.y37{bottom:825.653333pt;}
.y6b{bottom:833.253333pt;}
.y15e{bottom:840.853333pt;}
.y36{bottom:841.253333pt;}
.y6a{bottom:848.853333pt;}
.y5{bottom:851.413333pt;}
.y15d{bottom:856.533333pt;}
.y35{bottom:856.853333pt;}
.y69{bottom:864.533333pt;}
.y127{bottom:867.493333pt;}
.y34{bottom:872.533333pt;}
.y68{bottom:880.133333pt;}
.y4{bottom:885.493333pt;}
.y33{bottom:888.133333pt;}
.yf2{bottom:888.533333pt;}
.y67{bottom:895.813333pt;}
.y32{bottom:903.840000pt;}
.yd3{bottom:904.160000pt;}
.y3{bottom:907.440000pt;}
.y66{bottom:911.440000pt;}
.y31{bottom:919.440000pt;}
.yd2{bottom:919.840000pt;}
.y126{bottom:923.040000pt;}
.y65{bottom:927.040000pt;}
.y17b{bottom:927.440000pt;}
.y30{bottom:935.040000pt;}
.yd1{bottom:935.440000pt;}
.y150{bottom:943.040000pt;}
.y2f{bottom:950.720000pt;}
.y95{bottom:951.040000pt;}
.y14f{bottom:958.720000pt;}
.y125{bottom:966.320000pt;}
.y94{bottom:966.720000pt;}
.y14e{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y14d{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1071.200000pt;}
.hf{height:23.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h8{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h7{height:54.187500pt;}
.h11{height:54.880000pt;}
.h10{height:54.906667pt;}
.h12{height:54.927899pt;}
.he{height:55.631875pt;}
.hd{height:60.961875pt;}
.h4{height:63.128437pt;}
.h9{height:78.080000pt;}
.hb{height:93.760000pt;}
.ha{height:93.786667pt;}
.hc{height:109.440000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:101.226667pt;}
.w3{width:130.986667pt;}
.w5{width:152.106667pt;}
.w8{width:158.640000pt;}
.w6{width:191.760000pt;}
.w4{width:194.880000pt;}
.wa{width:202.960000pt;}
.w9{width:206.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xb{left:98.879988pt;}
.x8{left:163.066667pt;}
.x2{left:180.266655pt;}
.x5{left:192.746667pt;}
.x9{left:322.346667pt;}
.x6{left:388.266667pt;}
.xa{left:529.893333pt;}
.x7{left:541.093333pt;}
.x3{left:704.053322pt;}
}




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