
    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_9c9c5ff68a3a13bf8665a915.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_1a6d3aea1fffc0917a837996.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_36b997dd2ae916232ccadb90.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_fd36c2379927b992cf6ad911.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_77b69243ed8cb29957609ef7.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_7f7431de9b09527179aec69d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e5c5d748bd2e83bbeaa1a0b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_d5eb9c17288bc87c2a94793c.woff2')format("woff");}.ff8{font-family:ff8;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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.444600px;}
.lse{letter-spacing:-0.186600px;}
.ls18{letter-spacing:-0.178800px;}
.ls1a{letter-spacing:-0.162000px;}
.ls6{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.084000px;}
.ls12{letter-spacing:-0.064800px;}
.ls15{letter-spacing:-0.044640px;}
.ls1c{letter-spacing:-0.013320px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls11{letter-spacing:0.069600px;}
.ls10{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.092160px;}
.ls17{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.116400px;}
.ls4{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.173400px;}
.lsf{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:2.253600px;}
.ls1b{letter-spacing:47.726640px;}
.ls19{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;}
}
.ws2{word-spacing:-18.453600px;}
.ws7{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.407600px;}
.ws4{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.300800px;}
.wse{word-spacing:-13.296000px;}
.wsb{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.213080px;}
.ws10{word-spacing:-13.181760px;}
.ws12{word-spacing:-13.064400px;}
.ws11{word-spacing:-13.047600px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.wsd{word-spacing:-0.060120px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._f{margin-left:-3.737640px;}
._2{margin-left:-2.646000px;}
._0{margin-left:-1.110000px;}
._8{width:1.047000px;}
._1{width:2.097000px;}
._d{width:3.243000px;}
._c{width:4.328400px;}
._4{width:5.504280px;}
._3{width:6.924960px;}
._9{width:8.525640px;}
._e{width:9.713281px;}
._a{width:10.821600px;}
._12{width:11.887800px;}
._7{width:14.343600px;}
._b{width:15.675480px;}
._26{width:16.688159px;}
._5{width:17.855400px;}
._6{width:19.769886px;}
._11{width:21.398280px;}
._10{width:22.424760px;}
._25{width:23.687280px;}
._17{width:25.791480px;}
._1e{width:27.499320px;}
._1a{width:33.005880px;}
._21{width:34.268400px;}
._15{width:49.358520px;}
._14{width:61.081920px;}
._1b{width:69.378480px;}
._1c{width:82.364400px;}
._16{width:84.468600px;}
._13{width:93.546720px;}
._22{width:107.735040px;}
._23{width:115.911360px;}
._1f{width:121.141800px;}
._1d{width:122.945400px;}
._20{width:138.727080px;}
._18{width:152.043480px;}
._19{width:158.416200px;}
._24{width:850.268400px;}
.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;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:3.330000px;}
.y70{bottom:3.420000px;}
.y67{bottom:7.830000px;}
.y88{bottom:7.860000px;}
.y8b{bottom:7.920000px;}
.y90{bottom:12.420000px;}
.yb1{bottom:15.660000px;}
.y9c{bottom:15.780000px;}
.yab{bottom:17.640000px;}
.y6d{bottom:20.970000px;}
.y66{bottom:25.380000px;}
.y87{bottom:25.410000px;}
.y81{bottom:25.470000px;}
.y9a{bottom:25.500000px;}
.y8f{bottom:29.970000px;}
.ya5{bottom:35.190000px;}
.y6c{bottom:38.520000px;}
.y80{bottom:43.020000px;}
.y86{bottom:43.050000px;}
.y8a{bottom:43.110000px;}
.y99{bottom:43.140000px;}
.y8e{bottom:47.520000px;}
.y95{bottom:52.830000px;}
.yaa{bottom:52.860000px;}
.y6b{bottom:56.070000px;}
.y98{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y6a{bottom:73.710000px;}
.y2b{bottom:74.190000px;}
.yf1{bottom:74.280000px;}
.y69{bottom:91.260000px;}
.y2a{bottom:91.830000px;}
.y9f{bottom:97.740000px;}
.y1{bottom:101.640000px;}
.y9e{bottom:115.290000px;}
.y84{bottom:115.320000px;}
.y44{bottom:119.730000px;}
.y6f{bottom:122.430000px;}
.y151{bottom:125.130000px;}
.y7e{bottom:130.440000px;}
.y83{bottom:132.960000px;}
.yd9{bottom:134.760000px;}
.y43{bottom:137.370000px;}
.y68{bottom:140.790000px;}
.y150{bottom:142.680000px;}
.ya4{bottom:146.820000px;}
.yd8{bottom:152.400000px;}
.y12e{bottom:152.490000px;}
.y42{bottom:154.920000px;}
.y108{bottom:155.910000px;}
.yc7{bottom:158.790000px;}
.y28{bottom:160.410000px;}
.y7d{bottom:166.080000px;}
.y14f{bottom:169.320000px;}
.yd7{bottom:169.950000px;}
.y12d{bottom:170.130000px;}
.y107{bottom:171.660000px;}
.y41{bottom:172.560000px;}
.ya6{bottom:174.090000px;}
.yc6{bottom:176.430000px;}
.y27{bottom:178.050000px;}
.y106{bottom:185.340000px;}
.y14e{bottom:186.870000px;}
.yd6{bottom:187.500000px;}
.yc5{bottom:193.980000px;}
.y26{bottom:195.600000px;}
.y12c{bottom:196.680000px;}
.ya3{bottom:201.450000px;}
.y7c{bottom:201.630000px;}
.y14d{bottom:204.510000px;}
.yd5{bottom:205.140000px;}
.y40{bottom:208.110000px;}
.yc4{bottom:211.620000px;}
.y105{bottom:212.610000px;}
.y25{bottom:213.150000px;}
.y12b{bottom:214.320000px;}
.yc3{bottom:229.170000px;}
.y24{bottom:230.790000px;}
.y14c{bottom:231.060000px;}
.yd4{bottom:231.690000px;}
.y7b{bottom:237.180000px;}
.y104{bottom:239.970000px;}
.y3f{bottom:240.330000px;}
.y12a{bottom:240.870000px;}
.y65{bottom:247.080000px;}
.y23{bottom:248.340000px;}
.y14b{bottom:248.610000px;}
.y129{bottom:258.420000px;}
.yc2{bottom:262.110000px;}
.ya2{bottom:264.000000px;}
.y22{bottom:265.980000px;}
.y14a{bottom:266.250000px;}
.yd3{bottom:267.330000px;}
.y7a{bottom:272.820000px;}
.y21{bottom:283.530000px;}
.y128{bottom:285.060000px;}
.y149{bottom:292.800000px;}
.y103{bottom:294.600000px;}
.yd2{bottom:299.550000px;}
.y127{bottom:302.610000px;}
.yc1{bottom:307.110000px;}
.y79{bottom:308.370000px;}
.y20{bottom:310.440000px;}
.y64{bottom:313.320000px;}
.y102{bottom:321.960000px;}
.y78{bottom:326.010000px;}
.y9d{bottom:326.460000px;}
.y148{bottom:327.990000px;}
.y126{bottom:329.520000px;}
.y77{bottom:343.560000px;}
.y63{bottom:348.870000px;}
.y101{bottom:349.320000px;}
.yc0{bottom:352.020000px;}
.y147{bottom:354.540000px;}
.y1f{bottom:359.040000px;}
.y76{bottom:361.110000px;}
.y146{bottom:372.180000px;}
.y62{bottom:375.510000px;}
.y100{bottom:376.680000px;}
.y125{bottom:377.760000px;}
.y75{bottom:378.750000px;}
.ya1{bottom:389.010000px;}
.y145{bottom:389.730000px;}
.y1e{bottom:396.030000px;}
.ybf{bottom:396.930000px;}
.yff{bottom:403.980000px;}
.y124{bottom:404.670000px;}
.y61{bottom:411.420000px;}
.y1d{bottom:413.670000px;}
.y74{bottom:414.300000px;}
.ya0{bottom:416.280000px;}
.y144{bottom:416.370000px;}
.y1c{bottom:431.220000px;}
.yfe{bottom:431.340000px;}
.y73{bottom:431.940000px;}
.y143{bottom:433.920000px;}
.y123{bottom:441.750000px;}
.y1b{bottom:448.770000px;}
.yfd{bottom:458.700000px;}
.y122{bottom:459.300000px;}
.y60{bottom:459.660000px;}
.y142{bottom:460.470000px;}
.y97{bottom:461.190000px;}
.ybe{bottom:463.170000px;}
.y1a{bottom:466.410000px;}
.y72{bottom:467.490000px;}
.y121{bottom:476.970000px;}
.y141{bottom:478.140000px;}
.y19{bottom:483.990000px;}
.yfc{bottom:486.060000px;}
.y5f{bottom:486.330000px;}
.y9b{bottom:496.410000px;}
.ybd{bottom:498.840000px;}
.y71{bottom:499.740000px;}
.y18{bottom:501.630000px;}
.y120{bottom:503.790000px;}
.y140{bottom:504.690000px;}
.yfb{bottom:513.330000px;}
.ybc{bottom:516.390000px;}
.y17{bottom:519.180000px;}
.y5e{bottom:521.880000px;}
.y13f{bottom:522.330000px;}
.ybb{bottom:533.940000px;}
.y16{bottom:536.730000px;}
.y5d{bottom:539.430000px;}
.yfa{bottom:540.690000px;}
.y11f{bottom:541.140000px;}
.y94{bottom:541.320000px;}
.y13e{bottom:548.880000px;}
.yba{bottom:551.580000px;}
.y15{bottom:554.370000px;}
.y5c{bottom:557.070000px;}
.y13d{bottom:566.430000px;}
.yf9{bottom:568.050000px;}
.y96{bottom:568.680000px;}
.yb9{bottom:569.130000px;}
.y14{bottom:571.920000px;}
.y5b{bottom:583.620000px;}
.yb8{bottom:586.770000px;}
.y11e{bottom:589.470000px;}
.y13{bottom:589.560000px;}
.y13c{bottom:593.070000px;}
.yf8{bottom:595.320000px;}
.y11d{bottom:607.020000px;}
.y12{bottom:607.110000px;}
.yb7{bottom:613.320000px;}
.y93{bottom:613.590000px;}
.y5a{bottom:619.260000px;}
.y13b{bottom:619.620000px;}
.yf7{bottom:622.680000px;}
.yef{bottom:623.760000px;}
.y11{bottom:624.660000px;}
.y59{bottom:636.810000px;}
.y13a{bottom:637.260000px;}
.yee{bottom:641.400000px;}
.y11c{bottom:642.210000px;}
.y10{bottom:642.300000px;}
.yd1{bottom:642.660000px;}
.yb6{bottom:648.150000px;}
.yf6{bottom:650.040000px;}
.yed{bottom:658.950000px;}
.y11b{bottom:659.760000px;}
.yd0{bottom:660.210000px;}
.yb5{bottom:660.390000px;}
.y58{bottom:663.360000px;}
.y139{bottom:663.810000px;}
.yf{bottom:669.210000px;}
.y92{bottom:676.140000px;}
.yec{bottom:676.590000px;}
.yf5{bottom:677.400000px;}
.ycf{bottom:677.850000px;}
.y138{bottom:681.360000px;}
.y11a{bottom:686.670000px;}
.yce{bottom:695.400000px;}
.y57{bottom:699.000000px;}
.yf3{bottom:704.670000px;}
.y3e{bottom:711.690000px;}
.yeb{bottom:712.140000px;}
.y56{bottom:716.550000px;}
.ye{bottom:717.450000px;}
.ycd{bottom:722.040000px;}
.yb4{bottom:722.850000px;}
.y137{bottom:725.550000px;}
.y3d{bottom:729.330000px;}
.yea{bottom:729.690000px;}
.yf4{bottom:732.060000px;}
.y55{bottom:734.190000px;}
.y119{bottom:735.000000px;}
.y91{bottom:738.600000px;}
.y136{bottom:743.190000px;}
.y3c{bottom:746.880000px;}
.ye9{bottom:747.330000px;}
.y54{bottom:751.740000px;}
.y118{bottom:752.550000px;}
.yd{bottom:753.270000px;}
.ycc{bottom:757.590000px;}
.y135{bottom:760.740000px;}
.y3b{bottom:764.520000px;}
.ye8{bottom:764.880000px;}
.yb2{bottom:767.760000px;}
.y53{bottom:769.290000px;}
.y117{bottom:770.190000px;}
.y154{bottom:778.290000px;}
.ye7{bottom:782.520000px;}
.y8d{bottom:783.510000px;}
.y134{bottom:787.290000px;}
.y116{bottom:787.740000px;}
.yc{bottom:789.270000px;}
.ycb{bottom:789.810000px;}
.y3a{bottom:791.070000px;}
.yb3{bottom:795.120000px;}
.y52{bottom:795.930000px;}
.yf2{bottom:798.390000px;}
.y133{bottom:804.930000px;}
.y115{bottom:805.290000px;}
.ye6{bottom:818.070000px;}
.yaf{bottom:822.480000px;}
.y114{bottom:822.930000px;}
.yf0{bottom:824.940000px;}
.yb{bottom:825.270000px;}
.y39{bottom:826.980000px;}
.y51{bottom:831.480000px;}
.ye5{bottom:835.620000px;}
.y113{bottom:840.480000px;}
.ya{bottom:847.050000px;}
.y50{bottom:849.030000px;}
.y8c{bottom:850.560000px;}
.ye4{bottom:853.260000px;}
.yb0{bottom:857.670000px;}
.y112{bottom:858.030000px;}
.y9{bottom:861.270000px;}
.y4f{bottom:866.670000px;}
.ye3{bottom:870.810000px;}
.y38{bottom:875.220000px;}
.y111{bottom:875.670000px;}
.y8{bottom:883.050000px;}
.y4e{bottom:884.220000px;}
.yad{bottom:884.940000px;}
.y37{bottom:892.860000px;}
.y153{bottom:893.220000px;}
.ye2{bottom:906.450000px;}
.y36{bottom:910.410000px;}
.y132{bottom:910.860000px;}
.y110{bottom:911.220000px;}
.yae{bottom:912.300000px;}
.y82{bottom:913.020000px;}
.y7{bottom:915.180000px;}
.y4d{bottom:919.860000px;}
.ye1{bottom:924.000000px;}
.y131{bottom:928.410000px;}
.y10f{bottom:928.860000px;}
.y6{bottom:933.630000px;}
.y4c{bottom:937.410000px;}
.y35{bottom:945.960000px;}
.y10e{bottom:946.410000px;}
.y5{bottom:952.170000px;}
.y4b{bottom:954.960000px;}
.ya9{bottom:957.210000px;}
.ye0{bottom:959.550000px;}
.y34{bottom:963.600000px;}
.y10d{bottom:963.960000px;}
.y4a{bottom:972.600000px;}
.y89{bottom:975.570000px;}
.ydf{bottom:977.190000px;}
.y33{bottom:981.150000px;}
.y10c{bottom:981.600000px;}
.yac{bottom:984.570000px;}
.y4{bottom:989.700000px;}
.y49{bottom:990.150000px;}
.yde{bottom:994.740000px;}
.y32{bottom:998.790000px;}
.y10b{bottom:999.150000px;}
.y85{bottom:1002.930000px;}
.y48{bottom:1007.790000px;}
.ydd{bottom:1012.320000px;}
.y3{bottom:1014.390000px;}
.y31{bottom:1016.370000px;}
.y10a{bottom:1016.820000px;}
.y47{bottom:1025.370000px;}
.ya8{bottom:1029.510000px;}
.ydc{bottom:1029.960000px;}
.y30{bottom:1033.920000px;}
.y109{bottom:1034.370000px;}
.y46{bottom:1042.920000px;}
.y152{bottom:1043.370000px;}
.ydb{bottom:1047.510000px;}
.y45{bottom:1060.560000px;}
.y130{bottom:1060.920000px;}
.y7f{bottom:1065.420000px;}
.y2f{bottom:1069.560000px;}
.yca{bottom:1069.920000px;}
.yda{bottom:1074.420000px;}
.y12f{bottom:1078.560000px;}
.y2e{bottom:1087.110000px;}
.yc9{bottom:1087.560000px;}
.ya7{bottom:1091.970000px;}
.yc8{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.he{height:17.640000px;}
.h12{height:26.550000px;}
.h23{height:26.580000px;}
.h17{height:26.640000px;}
.h22{height:26.670000px;}
.h2{height:30.022383px;}
.h1e{height:34.380000px;}
.h19{height:34.500000px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h1f{height:41.661211px;}
.hc{height:44.100000px;}
.h15{height:44.190000px;}
.h1d{height:44.220000px;}
.h24{height:46.986328px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h1b{height:53.910000px;}
.h5{height:54.817383px;}
.h9{height:55.779258px;}
.hf{height:61.740000px;}
.h11{height:61.770000px;}
.h25{height:61.793886px;}
.h13{height:61.830000px;}
.hb{height:62.585859px;}
.h14{height:66.240000px;}
.ha{height:68.582109px;}
.h16{height:71.550000px;}
.h1c{height:71.580000px;}
.h4{height:72.985430px;}
.h18{height:79.410000px;}
.hd{height:105.480000px;}
.h1a{height:134.010000px;}
.h10{height:151.680000px;}
.h20{height:893.160000px;}
.h21{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w24{width:17.730000px;}
.w25{width:17.820000px;}
.w23{width:17.910000px;}
.w21{width:18.090000px;}
.w22{width:18.180000px;}
.w39{width:18.270000px;}
.w1f{width:18.450000px;}
.w20{width:18.720000px;}
.w38{width:18.990000px;}
.w28{width:20.160000px;}
.w26{width:20.250000px;}
.w29{width:20.340000px;}
.w2c{width:20.520000px;}
.w2b{width:20.610000px;}
.w27{width:20.700000px;}
.w2d{width:21.870000px;}
.w2f{width:21.960000px;}
.w36{width:22.320000px;}
.w2e{width:22.500000px;}
.w32{width:22.680000px;}
.w34{width:22.770000px;}
.w30{width:22.800000px;}
.w33{width:22.950000px;}
.w37{width:23.040000px;}
.w31{width:23.310000px;}
.w35{width:23.400000px;}
.w2a{width:24.750000px;}
.wc{width:73.620000px;}
.w16{width:74.160000px;}
.w15{width:75.600000px;}
.w1e{width:77.850000px;}
.w17{width:83.700000px;}
.wa{width:84.330000px;}
.w1c{width:84.420000px;}
.w19{width:84.510000px;}
.w1a{width:90.450000px;}
.w1d{width:93.780000px;}
.w1b{width:93.990000px;}
.w18{width:101.250000px;}
.w8{width:105.690000px;}
.w14{width:117.300000px;}
.w9{width:126.450000px;}
.w5{width:137.520000px;}
.wb{width:137.550000px;}
.w7{width:139.320000px;}
.we{width:140.700000px;}
.w10{width:141.750000px;}
.wd{width:190.530000px;}
.w6{width:211.890000px;}
.w3{width:264.720000px;}
.wf{width:471.810000px;}
.w4{width:490.260000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w12{width:1262.250000px;}
.w13{width:1262.519981px;}
.w11{width:1262.520000px;}
.x0{left:0.000000px;}
.x28{left:3.960000px;}
.x26{left:5.400000px;}
.x40{left:6.570000px;}
.x6{left:7.740000px;}
.x51{left:8.820000px;}
.x52{left:9.900000px;}
.x2b{left:13.590000px;}
.x14{left:15.750000px;}
.x31{left:20.520000px;}
.x2e{left:23.340000px;}
.x8{left:33.930000px;}
.x19{left:45.270000px;}
.x15{left:50.040000px;}
.x1a{left:62.550000px;}
.x1b{left:66.690000px;}
.x1{left:68.040000px;}
.x23{left:107.999981px;}
.x55{left:111.239987px;}
.x24{left:139.140000px;}
.xb{left:165.150000px;}
.x17{left:172.350000px;}
.xe{left:175.170000px;}
.x16{left:210.180000px;}
.x13{left:224.849987px;}
.x2{left:231.149987px;}
.x5{left:242.309987px;}
.x1f{left:254.279987px;}
.x25{left:257.160000px;}
.xd{left:268.769987px;}
.x33{left:276.330000px;}
.x1d{left:282.539987px;}
.x34{left:295.860000px;}
.xf{left:302.340000px;}
.x35{left:314.670000px;}
.x7{left:334.200000px;}
.x36{left:352.200000px;}
.x37{left:371.370000px;}
.x10{left:387.390000px;}
.x38{left:389.910000px;}
.x27{left:408.450000px;}
.x20{left:415.829981px;}
.x53{left:422.489981px;}
.x39{left:429.420000px;}
.x54{left:433.649981px;}
.x3a{left:450.840000px;}
.x9{left:472.440000px;}
.x29{left:492.870000px;}
.x3b{left:518.340000px;}
.x11{left:525.660000px;}
.x3c{left:543.900000px;}
.x3d{left:569.370000px;}
.x2a{left:594.840000px;}
.x12{left:600.090000px;}
.x3e{left:616.170000px;}
.x3f{left:637.410000px;}
.x41{left:658.740000px;}
.x1c{left:669.389987px;}
.x1e{left:673.889987px;}
.x2c{left:680.070000px;}
.x18{left:682.710000px;}
.xa{left:685.140000px;}
.xc{left:697.559987px;}
.x42{left:702.660000px;}
.x43{left:725.880000px;}
.x44{left:748.560000px;}
.x2d{left:771.240000px;}
.x45{left:794.760000px;}
.x3{left:800.339987px;}
.x46{left:818.880000px;}
.x4{left:825.269987px;}
.x47{left:842.280000px;}
.x2f{left:865.950000px;}
.x48{left:887.190000px;}
.x49{left:908.520000px;}
.x4a{left:929.850000px;}
.x30{left:951.180000px;}
.x4b{left:974.670000px;}
.x4c{left:998.880000px;}
.x4d{left:1021.920000px;}
.x32{left:1045.680000px;}
.x4e{left:1067.010000px;}
.x4f{left:1086.720000px;}
.x50{left:1105.170000px;}
.x21{left:1129.649981px;}
.x22{left:1154.579981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.395200pt;}
.lse{letter-spacing:-0.165867pt;}
.ls18{letter-spacing:-0.158933pt;}
.ls1a{letter-spacing:-0.144000pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.074667pt;}
.ls12{letter-spacing:-0.057600pt;}
.ls15{letter-spacing:-0.039680pt;}
.ls1c{letter-spacing:-0.011840pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls11{letter-spacing:0.061867pt;}
.ls10{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.081920pt;}
.ls17{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.103467pt;}
.ls4{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.154133pt;}
.lsf{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:2.003200pt;}
.ls1b{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.403200pt;}
.ws7{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.917867pt;}
.ws4{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.822933pt;}
.wse{word-spacing:-11.818667pt;}
.wsb{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.744960pt;}
.ws10{word-spacing:-11.717120pt;}
.ws12{word-spacing:-11.612800pt;}
.ws11{word-spacing:-11.597867pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.wsd{word-spacing:-0.053440pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._f{margin-left:-3.322346pt;}
._2{margin-left:-2.352000pt;}
._0{margin-left:-0.986667pt;}
._8{width:0.930666pt;}
._1{width:1.864000pt;}
._d{width:2.882667pt;}
._c{width:3.847466pt;}
._4{width:4.892694pt;}
._3{width:6.155520pt;}
._9{width:7.578346pt;}
._e{width:8.634028pt;}
._a{width:9.619200pt;}
._12{width:10.566933pt;}
._7{width:12.749867pt;}
._b{width:13.933760pt;}
._26{width:14.833919pt;}
._5{width:15.871466pt;}
._6{width:17.573232pt;}
._11{width:19.020693pt;}
._10{width:19.933120pt;}
._25{width:21.055360pt;}
._17{width:22.925760pt;}
._1e{width:24.443840pt;}
._1a{width:29.338560pt;}
._21{width:30.460800pt;}
._15{width:43.874240pt;}
._14{width:54.295040pt;}
._1b{width:61.669760pt;}
._1c{width:73.212800pt;}
._16{width:75.083200pt;}
._13{width:83.152640pt;}
._22{width:95.764480pt;}
._23{width:103.032320pt;}
._1f{width:107.681600pt;}
._1d{width:109.284800pt;}
._20{width:123.312960pt;}
._18{width:135.149760pt;}
._19{width:140.814400pt;}
._24{width:755.794134pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:2.960000pt;}
.y70{bottom:3.040000pt;}
.y67{bottom:6.960000pt;}
.y88{bottom:6.986667pt;}
.y8b{bottom:7.040000pt;}
.y90{bottom:11.040000pt;}
.yb1{bottom:13.920000pt;}
.y9c{bottom:14.026667pt;}
.yab{bottom:15.680000pt;}
.y6d{bottom:18.640000pt;}
.y66{bottom:22.560000pt;}
.y87{bottom:22.586667pt;}
.y81{bottom:22.640000pt;}
.y9a{bottom:22.666667pt;}
.y8f{bottom:26.640000pt;}
.ya5{bottom:31.280000pt;}
.y6c{bottom:34.240000pt;}
.y80{bottom:38.240000pt;}
.y86{bottom:38.266667pt;}
.y8a{bottom:38.320000pt;}
.y99{bottom:38.346667pt;}
.y8e{bottom:42.240000pt;}
.y95{bottom:46.960000pt;}
.yaa{bottom:46.986667pt;}
.y6b{bottom:49.840000pt;}
.y98{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y6a{bottom:65.520000pt;}
.y2b{bottom:65.946667pt;}
.yf1{bottom:66.026667pt;}
.y69{bottom:81.120000pt;}
.y2a{bottom:81.626667pt;}
.y9f{bottom:86.880000pt;}
.y1{bottom:90.346667pt;}
.y9e{bottom:102.480000pt;}
.y84{bottom:102.506667pt;}
.y44{bottom:106.426667pt;}
.y6f{bottom:108.826667pt;}
.y151{bottom:111.226667pt;}
.y7e{bottom:115.946667pt;}
.y83{bottom:118.186667pt;}
.yd9{bottom:119.786667pt;}
.y43{bottom:122.106667pt;}
.y68{bottom:125.146667pt;}
.y150{bottom:126.826667pt;}
.ya4{bottom:130.506667pt;}
.yd8{bottom:135.466667pt;}
.y12e{bottom:135.546667pt;}
.y42{bottom:137.706667pt;}
.y108{bottom:138.586667pt;}
.yc7{bottom:141.146667pt;}
.y28{bottom:142.586667pt;}
.y7d{bottom:147.626667pt;}
.y14f{bottom:150.506667pt;}
.yd7{bottom:151.066667pt;}
.y12d{bottom:151.226667pt;}
.y107{bottom:152.586667pt;}
.y41{bottom:153.386667pt;}
.ya6{bottom:154.746667pt;}
.yc6{bottom:156.826667pt;}
.y27{bottom:158.266667pt;}
.y106{bottom:164.746667pt;}
.y14e{bottom:166.106667pt;}
.yd6{bottom:166.666667pt;}
.yc5{bottom:172.426667pt;}
.y26{bottom:173.866667pt;}
.y12c{bottom:174.826667pt;}
.ya3{bottom:179.066667pt;}
.y7c{bottom:179.226667pt;}
.y14d{bottom:181.786667pt;}
.yd5{bottom:182.346667pt;}
.y40{bottom:184.986667pt;}
.yc4{bottom:188.106667pt;}
.y105{bottom:188.986667pt;}
.y25{bottom:189.466667pt;}
.y12b{bottom:190.506667pt;}
.yc3{bottom:203.706667pt;}
.y24{bottom:205.146667pt;}
.y14c{bottom:205.386667pt;}
.yd4{bottom:205.946667pt;}
.y7b{bottom:210.826667pt;}
.y104{bottom:213.306667pt;}
.y3f{bottom:213.626667pt;}
.y12a{bottom:214.106667pt;}
.y65{bottom:219.626667pt;}
.y23{bottom:220.746667pt;}
.y14b{bottom:220.986667pt;}
.y129{bottom:229.706667pt;}
.yc2{bottom:232.986667pt;}
.ya2{bottom:234.666667pt;}
.y22{bottom:236.426667pt;}
.y14a{bottom:236.666667pt;}
.yd3{bottom:237.626667pt;}
.y7a{bottom:242.506667pt;}
.y21{bottom:252.026667pt;}
.y128{bottom:253.386667pt;}
.y149{bottom:260.266667pt;}
.y103{bottom:261.866667pt;}
.yd2{bottom:266.266667pt;}
.y127{bottom:268.986667pt;}
.yc1{bottom:272.986667pt;}
.y79{bottom:274.106667pt;}
.y20{bottom:275.946667pt;}
.y64{bottom:278.506667pt;}
.y102{bottom:286.186667pt;}
.y78{bottom:289.786667pt;}
.y9d{bottom:290.186667pt;}
.y148{bottom:291.546667pt;}
.y126{bottom:292.906667pt;}
.y77{bottom:305.386667pt;}
.y63{bottom:310.106667pt;}
.y101{bottom:310.506667pt;}
.yc0{bottom:312.906667pt;}
.y147{bottom:315.146667pt;}
.y1f{bottom:319.146667pt;}
.y76{bottom:320.986667pt;}
.y146{bottom:330.826667pt;}
.y62{bottom:333.786667pt;}
.y100{bottom:334.826667pt;}
.y125{bottom:335.786667pt;}
.y75{bottom:336.666667pt;}
.ya1{bottom:345.786667pt;}
.y145{bottom:346.426667pt;}
.y1e{bottom:352.026667pt;}
.ybf{bottom:352.826667pt;}
.yff{bottom:359.093333pt;}
.y124{bottom:359.706667pt;}
.y61{bottom:365.706667pt;}
.y1d{bottom:367.706667pt;}
.y74{bottom:368.266667pt;}
.ya0{bottom:370.026667pt;}
.y144{bottom:370.106667pt;}
.y1c{bottom:383.306667pt;}
.yfe{bottom:383.413333pt;}
.y73{bottom:383.946667pt;}
.y143{bottom:385.706667pt;}
.y123{bottom:392.666667pt;}
.y1b{bottom:398.906667pt;}
.yfd{bottom:407.733333pt;}
.y122{bottom:408.266667pt;}
.y60{bottom:408.586667pt;}
.y142{bottom:409.306667pt;}
.y97{bottom:409.946667pt;}
.ybe{bottom:411.706667pt;}
.y1a{bottom:414.586667pt;}
.y72{bottom:415.546667pt;}
.y121{bottom:423.973333pt;}
.y141{bottom:425.013333pt;}
.y19{bottom:430.213333pt;}
.yfc{bottom:432.053333pt;}
.y5f{bottom:432.293333pt;}
.y9b{bottom:441.253333pt;}
.ybd{bottom:443.413333pt;}
.y71{bottom:444.213333pt;}
.y18{bottom:445.893333pt;}
.y120{bottom:447.813333pt;}
.y140{bottom:448.613333pt;}
.yfb{bottom:456.293333pt;}
.ybc{bottom:459.013333pt;}
.y17{bottom:461.493333pt;}
.y5e{bottom:463.893333pt;}
.y13f{bottom:464.293333pt;}
.ybb{bottom:474.613333pt;}
.y16{bottom:477.093333pt;}
.y5d{bottom:479.493333pt;}
.yfa{bottom:480.613333pt;}
.y11f{bottom:481.013333pt;}
.y94{bottom:481.173333pt;}
.y13e{bottom:487.893333pt;}
.yba{bottom:490.293333pt;}
.y15{bottom:492.773333pt;}
.y5c{bottom:495.173333pt;}
.y13d{bottom:503.493333pt;}
.yf9{bottom:504.933333pt;}
.y96{bottom:505.493333pt;}
.yb9{bottom:505.893333pt;}
.y14{bottom:508.373333pt;}
.y5b{bottom:518.773333pt;}
.yb8{bottom:521.573333pt;}
.y11e{bottom:523.973333pt;}
.y13{bottom:524.053333pt;}
.y13c{bottom:527.173333pt;}
.yf8{bottom:529.173333pt;}
.y11d{bottom:539.573333pt;}
.y12{bottom:539.653333pt;}
.yb7{bottom:545.173333pt;}
.y93{bottom:545.413333pt;}
.y5a{bottom:550.453333pt;}
.y13b{bottom:550.773333pt;}
.yf7{bottom:553.493333pt;}
.yef{bottom:554.453333pt;}
.y11{bottom:555.253333pt;}
.y59{bottom:566.053333pt;}
.y13a{bottom:566.453333pt;}
.yee{bottom:570.133333pt;}
.y11c{bottom:570.853333pt;}
.y10{bottom:570.933333pt;}
.yd1{bottom:571.253333pt;}
.yb6{bottom:576.133333pt;}
.yf6{bottom:577.813333pt;}
.yed{bottom:585.733333pt;}
.y11b{bottom:586.453333pt;}
.yd0{bottom:586.853333pt;}
.yb5{bottom:587.013333pt;}
.y58{bottom:589.653333pt;}
.y139{bottom:590.053333pt;}
.yf{bottom:594.853333pt;}
.y92{bottom:601.013333pt;}
.yec{bottom:601.413333pt;}
.yf5{bottom:602.133333pt;}
.ycf{bottom:602.533333pt;}
.y138{bottom:605.653333pt;}
.y11a{bottom:610.373333pt;}
.yce{bottom:618.133333pt;}
.y57{bottom:621.333333pt;}
.yf3{bottom:626.373333pt;}
.y3e{bottom:632.613333pt;}
.yeb{bottom:633.013333pt;}
.y56{bottom:636.933333pt;}
.ye{bottom:637.733333pt;}
.ycd{bottom:641.813333pt;}
.yb4{bottom:642.533333pt;}
.y137{bottom:644.933333pt;}
.y3d{bottom:648.293333pt;}
.yea{bottom:648.613333pt;}
.yf4{bottom:650.720000pt;}
.y55{bottom:652.613333pt;}
.y119{bottom:653.333333pt;}
.y91{bottom:656.533333pt;}
.y136{bottom:660.613333pt;}
.y3c{bottom:663.893333pt;}
.ye9{bottom:664.293333pt;}
.y54{bottom:668.213333pt;}
.y118{bottom:668.933333pt;}
.yd{bottom:669.573333pt;}
.ycc{bottom:673.413333pt;}
.y135{bottom:676.213333pt;}
.y3b{bottom:679.573333pt;}
.ye8{bottom:679.893333pt;}
.yb2{bottom:682.453333pt;}
.y53{bottom:683.813333pt;}
.y117{bottom:684.613333pt;}
.y154{bottom:691.813333pt;}
.ye7{bottom:695.573333pt;}
.y8d{bottom:696.453333pt;}
.y134{bottom:699.813333pt;}
.y116{bottom:700.213333pt;}
.yc{bottom:701.573333pt;}
.ycb{bottom:702.053333pt;}
.y3a{bottom:703.173333pt;}
.yb3{bottom:706.773333pt;}
.y52{bottom:707.493333pt;}
.yf2{bottom:709.680000pt;}
.y133{bottom:715.493333pt;}
.y115{bottom:715.813333pt;}
.ye6{bottom:727.173333pt;}
.yaf{bottom:731.093333pt;}
.y114{bottom:731.493333pt;}
.yf0{bottom:733.280000pt;}
.yb{bottom:733.573333pt;}
.y39{bottom:735.093333pt;}
.y51{bottom:739.093333pt;}
.ye5{bottom:742.773333pt;}
.y113{bottom:747.093333pt;}
.ya{bottom:752.933333pt;}
.y50{bottom:754.693333pt;}
.y8c{bottom:756.053333pt;}
.ye4{bottom:758.453333pt;}
.yb0{bottom:762.373333pt;}
.y112{bottom:762.693333pt;}
.y9{bottom:765.573333pt;}
.y4f{bottom:770.373333pt;}
.ye3{bottom:774.053333pt;}
.y38{bottom:777.973333pt;}
.y111{bottom:778.373333pt;}
.y8{bottom:784.933333pt;}
.y4e{bottom:785.973333pt;}
.yad{bottom:786.613333pt;}
.y37{bottom:793.653333pt;}
.y153{bottom:793.973333pt;}
.ye2{bottom:805.733333pt;}
.y36{bottom:809.253333pt;}
.y132{bottom:809.653333pt;}
.y110{bottom:809.973333pt;}
.yae{bottom:810.933333pt;}
.y82{bottom:811.573333pt;}
.y7{bottom:813.493333pt;}
.y4d{bottom:817.653333pt;}
.ye1{bottom:821.333333pt;}
.y131{bottom:825.253333pt;}
.y10f{bottom:825.653333pt;}
.y6{bottom:829.893333pt;}
.y4c{bottom:833.253333pt;}
.y35{bottom:840.853333pt;}
.y10e{bottom:841.253333pt;}
.y5{bottom:846.373333pt;}
.y4b{bottom:848.853333pt;}
.ya9{bottom:850.853333pt;}
.ye0{bottom:852.933333pt;}
.y34{bottom:856.533333pt;}
.y10d{bottom:856.853333pt;}
.y4a{bottom:864.533333pt;}
.y89{bottom:867.173333pt;}
.ydf{bottom:868.613333pt;}
.y33{bottom:872.133333pt;}
.y10c{bottom:872.533333pt;}
.yac{bottom:875.173333pt;}
.y4{bottom:879.733333pt;}
.y49{bottom:880.133333pt;}
.yde{bottom:884.213333pt;}
.y32{bottom:887.813333pt;}
.y10b{bottom:888.133333pt;}
.y85{bottom:891.493333pt;}
.y48{bottom:895.813333pt;}
.ydd{bottom:899.840000pt;}
.y3{bottom:901.680000pt;}
.y31{bottom:903.440000pt;}
.y10a{bottom:903.840000pt;}
.y47{bottom:911.440000pt;}
.ya8{bottom:915.120000pt;}
.ydc{bottom:915.520000pt;}
.y30{bottom:919.040000pt;}
.y109{bottom:919.440000pt;}
.y46{bottom:927.040000pt;}
.y152{bottom:927.440000pt;}
.ydb{bottom:931.120000pt;}
.y45{bottom:942.720000pt;}
.y130{bottom:943.040000pt;}
.y7f{bottom:947.040000pt;}
.y2f{bottom:950.720000pt;}
.yca{bottom:951.040000pt;}
.yda{bottom:955.040000pt;}
.y12f{bottom:958.720000pt;}
.y2e{bottom:966.320000pt;}
.yc9{bottom:966.720000pt;}
.ya7{bottom:970.640000pt;}
.yc8{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.he{height:15.680000pt;}
.h12{height:23.600000pt;}
.h23{height:23.626667pt;}
.h17{height:23.680000pt;}
.h22{height:23.706667pt;}
.h2{height:26.686562pt;}
.h1e{height:30.560000pt;}
.h19{height:30.666667pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h1f{height:37.032187pt;}
.hc{height:39.200000pt;}
.h15{height:39.280000pt;}
.h1d{height:39.306667pt;}
.h24{height:41.765625pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h1b{height:47.920000pt;}
.h5{height:48.726562pt;}
.h9{height:49.581562pt;}
.hf{height:54.880000pt;}
.h11{height:54.906667pt;}
.h25{height:54.927899pt;}
.h13{height:54.960000pt;}
.hb{height:55.631875pt;}
.h14{height:58.880000pt;}
.ha{height:60.961875pt;}
.h16{height:63.600000pt;}
.h1c{height:63.626667pt;}
.h4{height:64.875937pt;}
.h18{height:70.586667pt;}
.hd{height:93.760000pt;}
.h1a{height:119.120000pt;}
.h10{height:134.826667pt;}
.h20{height:793.920000pt;}
.h21{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w24{width:15.760000pt;}
.w25{width:15.840000pt;}
.w23{width:15.920000pt;}
.w21{width:16.080000pt;}
.w22{width:16.160000pt;}
.w39{width:16.240000pt;}
.w1f{width:16.400000pt;}
.w20{width:16.640000pt;}
.w38{width:16.880000pt;}
.w28{width:17.920000pt;}
.w26{width:18.000000pt;}
.w29{width:18.080000pt;}
.w2c{width:18.240000pt;}
.w2b{width:18.320000pt;}
.w27{width:18.400000pt;}
.w2d{width:19.440000pt;}
.w2f{width:19.520000pt;}
.w36{width:19.840000pt;}
.w2e{width:20.000000pt;}
.w32{width:20.160000pt;}
.w34{width:20.240000pt;}
.w30{width:20.266667pt;}
.w33{width:20.400000pt;}
.w37{width:20.480000pt;}
.w31{width:20.720000pt;}
.w35{width:20.800000pt;}
.w2a{width:22.000000pt;}
.wc{width:65.440000pt;}
.w16{width:65.920000pt;}
.w15{width:67.200000pt;}
.w1e{width:69.200000pt;}
.w17{width:74.400000pt;}
.wa{width:74.960000pt;}
.w1c{width:75.040000pt;}
.w19{width:75.120000pt;}
.w1a{width:80.400000pt;}
.w1d{width:83.360000pt;}
.w1b{width:83.546667pt;}
.w18{width:90.000000pt;}
.w8{width:93.946667pt;}
.w14{width:104.266667pt;}
.w9{width:112.400000pt;}
.w5{width:122.240000pt;}
.wb{width:122.266667pt;}
.w7{width:123.840000pt;}
.we{width:125.066667pt;}
.w10{width:126.000000pt;}
.wd{width:169.360000pt;}
.w6{width:188.346667pt;}
.w3{width:235.306667pt;}
.wf{width:419.386667pt;}
.w4{width:435.786667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w12{width:1122.000000pt;}
.w13{width:1122.239983pt;}
.w11{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x28{left:3.520000pt;}
.x26{left:4.800000pt;}
.x40{left:5.840000pt;}
.x6{left:6.880000pt;}
.x51{left:7.840000pt;}
.x52{left:8.800000pt;}
.x2b{left:12.080000pt;}
.x14{left:14.000000pt;}
.x31{left:18.240000pt;}
.x2e{left:20.746667pt;}
.x8{left:30.160000pt;}
.x19{left:40.240000pt;}
.x15{left:44.480000pt;}
.x1a{left:55.600000pt;}
.x1b{left:59.280000pt;}
.x1{left:60.480000pt;}
.x23{left:95.999983pt;}
.x55{left:98.879988pt;}
.x24{left:123.680000pt;}
.xb{left:146.800000pt;}
.x17{left:153.200000pt;}
.xe{left:155.706667pt;}
.x16{left:186.826667pt;}
.x13{left:199.866655pt;}
.x2{left:205.466655pt;}
.x5{left:215.386655pt;}
.x1f{left:226.026655pt;}
.x25{left:228.586667pt;}
.xd{left:238.906655pt;}
.x33{left:245.626667pt;}
.x1d{left:251.146655pt;}
.x34{left:262.986667pt;}
.xf{left:268.746667pt;}
.x35{left:279.706667pt;}
.x7{left:297.066667pt;}
.x36{left:313.066667pt;}
.x37{left:330.106667pt;}
.x10{left:344.346667pt;}
.x38{left:346.586667pt;}
.x27{left:363.066667pt;}
.x20{left:369.626650pt;}
.x53{left:375.546650pt;}
.x39{left:381.706667pt;}
.x54{left:385.466650pt;}
.x3a{left:400.746667pt;}
.x9{left:419.946667pt;}
.x29{left:438.106667pt;}
.x3b{left:460.746667pt;}
.x11{left:467.253333pt;}
.x3c{left:483.466667pt;}
.x3d{left:506.106667pt;}
.x2a{left:528.746667pt;}
.x12{left:533.413333pt;}
.x3e{left:547.706667pt;}
.x3f{left:566.586667pt;}
.x41{left:585.546667pt;}
.x1c{left:595.013322pt;}
.x1e{left:599.013322pt;}
.x2c{left:604.506667pt;}
.x18{left:606.853333pt;}
.xa{left:609.013333pt;}
.xc{left:620.053322pt;}
.x42{left:624.586667pt;}
.x43{left:645.226667pt;}
.x44{left:665.386667pt;}
.x2d{left:685.546667pt;}
.x45{left:706.453333pt;}
.x3{left:711.413322pt;}
.x46{left:727.893333pt;}
.x4{left:733.573322pt;}
.x47{left:748.693333pt;}
.x2f{left:769.733333pt;}
.x48{left:788.613333pt;}
.x49{left:807.573333pt;}
.x4a{left:826.533333pt;}
.x30{left:845.493333pt;}
.x4b{left:866.373333pt;}
.x4c{left:887.893333pt;}
.x4d{left:908.373333pt;}
.x32{left:929.493333pt;}
.x4e{left:948.453333pt;}
.x4f{left:965.973333pt;}
.x50{left:982.373333pt;}
.x21{left:1004.133317pt;}
.x22{left:1026.293317pt;}
}




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