
    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_b45f2ac76888442f750b087f.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_e6a7554d4f14ac3e76e2e22e.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_1ade659a152adf23a488f009.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_dcd7cc4a087e8e8942482db4.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_5f10464787532ebf506f6d17.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4c911348cc615eae6916b291.woff2')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_78a2b4549db9828a5899555e.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;}
.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;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.178800px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.067200px;}
.ls6{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.005400px;}
.ls11{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsf{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.174600px;}
.ls4{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.813600px;}
.ls5{letter-spacing:18.785520px;}
.ls19{letter-spacing:47.726640px;}
.ls18{letter-spacing:48.446640px;}
.ls16{letter-spacing:63.566640px;}
.ls17{letter-spacing:81.566640px;}
.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;}
}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.159200px;}
.wsc{word-spacing:-13.047600px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._9{margin-left:-3.695400px;}
._6{margin-left:-2.316600px;}
._0{margin-left:-1.110000px;}
._3{width:1.497912px;}
._5{width:2.845751px;}
._7{width:4.569000px;}
._8{width:5.712602px;}
._2{width:7.367556px;}
._1{width:8.482440px;}
._b{width:9.845955px;}
._a{width:10.964235px;}
._4{width:11.990424px;}
._f{width:14.488920px;}
._d{width:16.412760px;}
._e{width:17.615160px;}
._10{width:18.632760px;}
._c{width:19.719360px;}
._11{width:20.866728px;}
._12{width:22.108897px;}
._13{width:29.639160px;}
._16{width:59.482440px;}
._14{width:70.604640px;}
._15{width:71.669568px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y103{bottom:111.720000px;}
.y48{bottom:119.100000px;}
.ya8{bottom:120.720000px;}
.y172{bottom:121.170000px;}
.ybe{bottom:121.260000px;}
.y1cb{bottom:123.600000px;}
.y1f0{bottom:123.870000px;}
.y145{bottom:127.920000px;}
.y60{bottom:128.100000px;}
.y28{bottom:135.480000px;}
.y47{bottom:136.650000px;}
.ya7{bottom:138.270000px;}
.y171{bottom:138.720000px;}
.y1ef{bottom:141.510000px;}
.y7c{bottom:141.600000px;}
.y144{bottom:145.470000px;}
.y102{bottom:147.270000px;}
.y19d{bottom:147.990000px;}
.y1ca{bottom:148.620000px;}
.y27{bottom:153.030000px;}
.y46{bottom:154.290000px;}
.y157{bottom:155.910000px;}
.y170{bottom:156.270000px;}
.ybd{bottom:156.810000px;}
.y7b{bottom:159.150000px;}
.ye0{bottom:159.870000px;}
.y143{bottom:163.110000px;}
.y5f{bottom:163.650000px;}
.y101{bottom:164.910000px;}
.y19c{bottom:165.630000px;}
.y122{bottom:165.720000px;}
.y1c9{bottom:166.350000px;}
.y1ee{bottom:168.060000px;}
.y26{bottom:170.670000px;}
.y45{bottom:171.840000px;}
.y156{bottom:173.460000px;}
.ya6{bottom:173.910000px;}
.ybc{bottom:174.450000px;}
.y7a{bottom:176.790000px;}
.ydf{bottom:177.510000px;}
.y142{bottom:180.660000px;}
.y100{bottom:182.460000px;}
.y121{bottom:183.270000px;}
.y1ed{bottom:185.610000px;}
.y44{bottom:189.480000px;}
.y19b{bottom:190.650000px;}
.y1c8{bottom:191.280000px;}
.ya5{bottom:191.460000px;}
.ybb{bottom:192.000000px;}
.y79{bottom:194.340000px;}
.yde{bottom:195.060000px;}
.y5e{bottom:199.290000px;}
.yff{bottom:200.100000px;}
.y120{bottom:200.910000px;}
.y25{bottom:206.220000px;}
.y43{bottom:207.030000px;}
.y19a{bottom:208.290000px;}
.y1c7{bottom:209.010000px;}
.ya4{bottom:209.100000px;}
.yba{bottom:209.550000px;}
.y78{bottom:211.980000px;}
.y1ec{bottom:212.250000px;}
.ydd{bottom:212.610000px;}
.y141{bottom:216.300000px;}
.y5d{bottom:216.840000px;}
.y11f{bottom:218.460000px;}
.y24{bottom:223.770000px;}
.y42{bottom:224.580000px;}
.y199{bottom:225.930000px;}
.ya3{bottom:226.650000px;}
.y16f{bottom:227.100000px;}
.y77{bottom:229.530000px;}
.y1eb{bottom:229.800000px;}
.y140{bottom:233.850000px;}
.y1c6{bottom:233.940000px;}
.y5c{bottom:234.480000px;}
.yfe{bottom:235.650000px;}
.y23{bottom:241.410000px;}
.yb9{bottom:241.770000px;}
.y41{bottom:242.220000px;}
.y16e{bottom:244.650000px;}
.y11e{bottom:245.370000px;}
.y76{bottom:247.080000px;}
.ydc{bottom:248.250000px;}
.y198{bottom:250.860000px;}
.y13f{bottom:251.400000px;}
.y1c5{bottom:251.670000px;}
.y5b{bottom:252.030000px;}
.ya2{bottom:253.200000px;}
.y1ea{bottom:256.440000px;}
.y22{bottom:258.960000px;}
.y16d{bottom:262.200000px;}
.y75{bottom:264.720000px;}
.ydb{bottom:265.800000px;}
.y13e{bottom:269.040000px;}
.yfd{bottom:270.840000px;}
.y1e9{bottom:273.990000px;}
.y197{bottom:275.970000px;}
.y21{bottom:276.600000px;}
.y1c4{bottom:276.690000px;}
.y40{bottom:277.770000px;}
.y16c{bottom:279.840000px;}
.y74{bottom:282.270000px;}
.yda{bottom:283.440000px;}
.y5a{bottom:284.250000px;}
.y13d{bottom:286.590000px;}
.yfc{bottom:288.390000px;}
.ya1{bottom:288.840000px;}
.y11d{bottom:293.610000px;}
.y1c3{bottom:294.330000px;}
.y3f{bottom:295.410000px;}
.y16b{bottom:297.390000px;}
.y73{bottom:299.910000px;}
.y1e8{bottom:300.540000px;}
.yd9{bottom:300.990000px;}
.y20{bottom:303.510000px;}
.yfb{bottom:305.940000px;}
.ya0{bottom:306.390000px;}
.y11c{bottom:311.250000px;}
.y3e{bottom:312.960000px;}
.y16a{bottom:315.030000px;}
.y72{bottom:317.460000px;}
.y196{bottom:318.630000px;}
.y1c2{bottom:319.350000px;}
.y13c{bottom:322.230000px;}
.y9f{bottom:323.940000px;}
.y1e7{bottom:327.180000px;}
.yd8{bottom:327.540000px;}
.y11b{bottom:328.800000px;}
.y3d{bottom:330.510000px;}
.y169{bottom:332.580000px;}
.y71{bottom:335.010000px;}
.y195{bottom:336.360000px;}
.y1c1{bottom:336.990000px;}
.y13b{bottom:339.780000px;}
.y9e{bottom:341.580000px;}
.y1e6{bottom:344.730000px;}
.y11a{bottom:346.440000px;}
.y168{bottom:350.130000px;}
.y1f{bottom:351.750000px;}
.y70{bottom:352.650000px;}
.y13a{bottom:357.330000px;}
.yfa{bottom:359.130000px;}
.y194{bottom:361.290000px;}
.y1c0{bottom:362.010000px;}
.y3c{bottom:362.730000px;}
.yd7{bottom:363.180000px;}
.y1e{bottom:369.660000px;}
.y6f{bottom:370.200000px;}
.y1e5{bottom:371.370000px;}
.y139{bottom:374.970000px;}
.yf9{bottom:376.770000px;}
.y9d{bottom:377.130000px;}
.y193{bottom:379.020000px;}
.y1bf{bottom:379.650000px;}
.yd6{bottom:380.730000px;}
.y119{bottom:381.990000px;}
.y167{bottom:385.680000px;}
.y1e4{bottom:388.920000px;}
.yf8{bottom:394.320000px;}
.y9c{bottom:394.770000px;}
.yd5{bottom:398.370000px;}
.y118{bottom:399.540000px;}
.y138{bottom:401.520000px;}
.y192{bottom:403.950000px;}
.y1be{bottom:404.670000px;}
.y6e{bottom:405.750000px;}
.y1d{bottom:406.650000px;}
.y9b{bottom:412.320000px;}
.y1e3{bottom:415.470000px;}
.yd4{bottom:415.920000px;}
.y117{bottom:417.180000px;}
.yf7{bottom:420.870000px;}
.y191{bottom:421.680000px;}
.y166{bottom:422.130000px;}
.y1bd{bottom:422.310000px;}
.y6d{bottom:423.390000px;}
.y1c{bottom:424.290000px;}
.y9a{bottom:429.870000px;}
.y1e2{bottom:433.110000px;}
.y116{bottom:434.730000px;}
.y137{bottom:437.160000px;}
.y165{bottom:439.770000px;}
.y6c{bottom:440.940000px;}
.y1b{bottom:441.840000px;}
.y1bc{bottom:447.330000px;}
.y155{bottom:447.510000px;}
.y190{bottom:448.590000px;}
.yd3{bottom:451.470000px;}
.y115{bottom:452.370000px;}
.y136{bottom:454.710000px;}
.yf6{bottom:456.510000px;}
.y164{bottom:457.320000px;}
.y6b{bottom:458.580000px;}
.y1a{bottom:459.390000px;}
.y1e1{bottom:459.660000px;}
.y1bb{bottom:464.970000px;}
.y154{bottom:465.060000px;}
.y99{bottom:465.510000px;}
.yd2{bottom:469.110000px;}
.y114{bottom:469.950000px;}
.y135{bottom:472.290000px;}
.yf5{bottom:474.090000px;}
.y163{bottom:474.900000px;}
.y19{bottom:477.060000px;}
.y1e0{bottom:477.330000px;}
.y153{bottom:482.730000px;}
.y98{bottom:483.090000px;}
.yd1{bottom:486.690000px;}
.y113{bottom:487.500000px;}
.y134{bottom:489.930000px;}
.y1ba{bottom:490.020000px;}
.y6a{bottom:490.830000px;}
.yf4{bottom:491.730000px;}
.y162{bottom:492.540000px;}
.y18{bottom:494.610000px;}
.y18f{bottom:496.860000px;}
.y152{bottom:500.280000px;}
.y97{bottom:500.730000px;}
.y1df{bottom:503.880000px;}
.yd0{bottom:504.330000px;}
.y133{bottom:507.480000px;}
.y1b9{bottom:507.750000px;}
.yf3{bottom:509.280000px;}
.y17{bottom:512.250000px;}
.y18e{bottom:514.500000px;}
.y151{bottom:517.830000px;}
.y96{bottom:518.280000px;}
.y161{bottom:519.450000px;}
.y1de{bottom:521.430000px;}
.y112{bottom:523.140000px;}
.y132{bottom:525.030000px;}
.yf2{bottom:526.830000px;}
.y16{bottom:529.800000px;}
.y18d{bottom:532.050000px;}
.y1b8{bottom:532.680000px;}
.y150{bottom:535.470000px;}
.ycf{bottom:539.880000px;}
.y111{bottom:540.690000px;}
.y131{bottom:542.670000px;}
.yf1{bottom:544.470000px;}
.y95{bottom:544.830000px;}
.y15{bottom:547.350000px;}
.y1dd{bottom:548.070000px;}
.y1b7{bottom:550.410000px;}
.y14f{bottom:553.020000px;}
.yce{bottom:557.430000px;}
.y110{bottom:558.330000px;}
.y18c{bottom:558.960000px;}
.y130{bottom:560.220000px;}
.yf0{bottom:562.020000px;}
.y14{bottom:564.990000px;}
.y1dc{bottom:565.620000px;}
.y160{bottom:567.690000px;}
.y14e{bottom:570.660000px;}
.yb8{bottom:571.740000px;}
.ycd{bottom:575.070000px;}
.y1b6{bottom:575.340000px;}
.y10f{bottom:575.880000px;}
.y12f{bottom:577.860000px;}
.yef{bottom:579.660000px;}
.y94{bottom:580.470000px;}
.y13{bottom:582.540000px;}
.y15f{bottom:585.330000px;}
.y1db{bottom:592.260000px;}
.ycc{bottom:592.620000px;}
.y1b5{bottom:593.070000px;}
.y10e{bottom:593.430000px;}
.y12e{bottom:595.410000px;}
.y18b{bottom:596.310000px;}
.y14d{bottom:597.210000px;}
.y93{bottom:598.020000px;}
.y12{bottom:600.180000px;}
.y15e{bottom:602.880000px;}
.y1da{bottom:609.810000px;}
.y1b4{bottom:610.620000px;}
.y10d{bottom:611.070000px;}
.y12d{bottom:612.960000px;}
.yee{bottom:615.210000px;}
.y92{bottom:615.660000px;}
.y11{bottom:617.730000px;}
.yb7{bottom:620.070000px;}
.y15d{bottom:620.430000px;}
.ycb{bottom:628.260000px;}
.y10c{bottom:628.620000px;}
.yed{bottom:632.760000px;}
.y91{bottom:633.210000px;}
.y1d9{bottom:636.360000px;}
.yb6{bottom:637.620000px;}
.y15c{bottom:638.070000px;}
.y18a{bottom:644.550000px;}
.y10{bottom:644.640000px;}
.yca{bottom:645.810000px;}
.y12c{bottom:648.600000px;}
.yec{bottom:650.400000px;}
.y90{bottom:650.760000px;}
.y1b3{bottom:653.190000px;}
.y1d8{bottom:654.000000px;}
.yb5{bottom:655.260000px;}
.y15b{bottom:655.620000px;}
.y189{bottom:662.190000px;}
.yc9{bottom:663.360000px;}
.y10b{bottom:664.260000px;}
.y12b{bottom:666.150000px;}
.yeb{bottom:667.950000px;}
.y8f{bottom:668.400000px;}
.y1b2{bottom:670.920000px;}
.y59{bottom:672.360000px;}
.y15a{bottom:673.260000px;}
.y188{bottom:679.740000px;}
.y1d7{bottom:680.550000px;}
.y10a{bottom:681.810000px;}
.y12a{bottom:683.790000px;}
.y14c{bottom:685.590000px;}
.y8e{bottom:685.950000px;}
.y58{bottom:690.000000px;}
.yb4{bottom:690.810000px;}
.yf{bottom:692.880000px;}
.yea{bottom:694.590000px;}
.y1b1{bottom:695.850000px;}
.y187{bottom:697.290000px;}
.y109{bottom:699.360000px;}
.y129{bottom:701.340000px;}
.y14b{bottom:703.140000px;}
.y8d{bottom:703.590000px;}
.y1d6{bottom:707.190000px;}
.y57{bottom:707.550000px;}
.yb3{bottom:708.360000px;}
.y186{bottom:714.930000px;}
.y108{bottom:717.000000px;}
.y1b0{bottom:720.960000px;}
.y8c{bottom:721.140000px;}
.y1d5{bottom:724.740000px;}
.y56{bottom:725.190000px;}
.yc8{bottom:725.550000px;}
.yb2{bottom:726.000000px;}
.y128{bottom:727.890000px;}
.ye{bottom:728.700000px;}
.y14a{bottom:730.050000px;}
.ye9{bottom:730.140000px;}
.y107{bottom:734.550000px;}
.y1af{bottom:738.690000px;}
.y55{bottom:742.740000px;}
.yc7{bottom:743.190000px;}
.yb1{bottom:743.550000px;}
.ye8{bottom:747.690000px;}
.y185{bottom:750.390000px;}
.y1d4{bottom:751.290000px;}
.y106{bottom:752.190000px;}
.y8b{bottom:756.690000px;}
.yc6{bottom:760.740000px;}
.yb0{bottom:761.190000px;}
.y127{bottom:763.530000px;}
.y1ae{bottom:763.620000px;}
.yd{bottom:764.700000px;}
.ye7{bottom:765.330000px;}
.y1d3{bottom:768.930000px;}
.y8a{bottom:774.330000px;}
.y54{bottom:778.290000px;}
.yaf{bottom:778.740000px;}
.y159{bottom:779.190000px;}
.y126{bottom:781.080000px;}
.y1ad{bottom:781.350000px;}
.ye6{bottom:782.880000px;}
.y184{bottom:786.930000px;}
.y89{bottom:791.880000px;}
.y1d2{bottom:795.480000px;}
.y53{bottom:795.930000px;}
.y158{bottom:796.740000px;}
.y125{bottom:798.720000px;}
.ye5{bottom:800.520000px;}
.yc{bottom:804.480000px;}
.y1ac{bottom:806.280000px;}
.y88{bottom:809.520000px;}
.y52{bottom:813.480000px;}
.yae{bottom:814.290000px;}
.y124{bottom:816.270000px;}
.ye4{bottom:818.070000px;}
.y1d1{bottom:822.030000px;}
.y183{bottom:822.120000px;}
.yb{bottom:822.480000px;}
.y1ab{bottom:824.010000px;}
.y51{bottom:831.030000px;}
.y3b{bottom:831.930000px;}
.y87{bottom:836.070000px;}
.y182{bottom:839.670000px;}
.ya{bottom:840.480000px;}
.ye3{bottom:844.980000px;}
.y123{bottom:848.490000px;}
.yc5{bottom:848.670000px;}
.y1aa{bottom:848.940000px;}
.y3a{bottom:849.480000px;}
.y181{bottom:857.220000px;}
.y50{bottom:857.670000px;}
.y9{bottom:858.480000px;}
.y149{bottom:866.220000px;}
.y1a9{bottom:866.670000px;}
.y39{bottom:867.030000px;}
.y86{bottom:871.620000px;}
.y180{bottom:874.860000px;}
.y8{bottom:876.480000px;}
.yc4{bottom:884.220000px;}
.y38{bottom:884.670000px;}
.y85{bottom:889.260000px;}
.y1a8{bottom:891.690000px;}
.y17f{bottom:892.410000px;}
.y1d0{bottom:892.860000px;}
.y4f{bottom:893.220000px;}
.y7{bottom:894.480000px;}
.yc3{bottom:901.860000px;}
.y37{bottom:902.220000px;}
.y84{bottom:906.810000px;}
.y1a7{bottom:909.330000px;}
.y17e{bottom:909.960000px;}
.y1cf{bottom:910.410000px;}
.y4e{bottom:910.860000px;}
.yad{bottom:911.220000px;}
.y69{bottom:919.410000px;}
.y36{bottom:919.860000px;}
.y83{bottom:924.450000px;}
.y6{bottom:926.790000px;}
.y17d{bottom:927.600000px;}
.y4d{bottom:928.410000px;}
.y1a6{bottom:934.350000px;}
.yc2{bottom:936.960000px;}
.y35{bottom:937.410000px;}
.y82{bottom:942.000000px;}
.ye2{bottom:945.960000px;}
.y5{bottom:946.140000px;}
.yac{bottom:946.860000px;}
.y1a5{bottom:951.990000px;}
.yc1{bottom:954.600000px;}
.y34{bottom:954.960000px;}
.y81{bottom:959.550000px;}
.y17c{bottom:963.150000px;}
.ye1{bottom:963.600000px;}
.y4c{bottom:963.960000px;}
.yab{bottom:964.410000px;}
.y1a4{bottom:969.630000px;}
.y148{bottom:972.150000px;}
.y68{bottom:972.600000px;}
.y80{bottom:977.190000px;}
.y17b{bottom:980.790000px;}
.y1ce{bottom:981.150000px;}
.y33{bottom:981.600000px;}
.yaa{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y67{bottom:990.150000px;}
.y1a3{bottom:994.560000px;}
.y7f{bottom:994.740000px;}
.y17a{bottom:998.340000px;}
.y1cd{bottom:998.790000px;}
.y4b{bottom:999.150000px;}
.ya9{bottom:999.600000px;}
.y66{bottom:1007.790000px;}
.y105{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y7e{bottom:1012.320000px;}
.y179{bottom:1015.920000px;}
.y4a{bottom:1016.820000px;}
.y32{bottom:1017.180000px;}
.yc0{bottom:1025.370000px;}
.y104{bottom:1025.820000px;}
.y178{bottom:1033.560000px;}
.y49{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.y1a2{bottom:1037.250000px;}
.y7d{bottom:1039.230000px;}
.y147{bottom:1042.920000px;}
.y65{bottom:1043.370000px;}
.y177{bottom:1051.110000px;}
.ybf{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.y1a1{bottom:1054.980000px;}
.y64{bottom:1060.920000px;}
.y176{bottom:1068.750000px;}
.y146{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y63{bottom:1078.560000px;}
.y1a0{bottom:1079.910000px;}
.y175{bottom:1086.300000px;}
.y1cc{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y62{bottom:1096.110000px;}
.y19f{bottom:1097.640000px;}
.y174{bottom:1103.850000px;}
.y2d{bottom:1105.110000px;}
.y61{bottom:1113.750000px;}
.y19e{bottom:1122.660000px;}
.y2c{bottom:1122.750000px;}
.y173{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.ha{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:61.793886px;}
.h9{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x13{left:70.289987px;}
.xb{left:73.439987px;}
.xa{left:76.859987px;}
.x6{left:80.279987px;}
.x16{left:82.349987px;}
.x12{left:83.699987px;}
.x7{left:84.779987px;}
.x5{left:86.129987px;}
.xf{left:89.369987px;}
.x19{left:95.039987px;}
.xc{left:98.819987px;}
.x17{left:100.709987px;}
.x1a{left:111.419987px;}
.x2{left:202.799987px;}
.x10{left:260.579987px;}
.x18{left:324.749987px;}
.x8{left:331.049987px;}
.xd{left:353.639987px;}
.x14{left:407.729987px;}
.x9{left:694.139987px;}
.x11{left:749.309987px;}
.x15{left:760.559987px;}
.x4{left:766.139987px;}
.xe{left:785.309987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.158933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.059733pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.004800pt;}
.ls11{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsf{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.155200pt;}
.ls4{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.723200pt;}
.ls5{letter-spacing:16.698240pt;}
.ls19{letter-spacing:42.423680pt;}
.ls18{letter-spacing:43.063680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls17{letter-spacing:72.503680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.697067pt;}
.wsc{word-spacing:-11.597867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._9{margin-left:-3.284800pt;}
._6{margin-left:-2.059200pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.331478pt;}
._5{width:2.529556pt;}
._7{width:4.061333pt;}
._8{width:5.077869pt;}
._2{width:6.548939pt;}
._1{width:7.539947pt;}
._b{width:8.751960pt;}
._a{width:9.745987pt;}
._4{width:10.658154pt;}
._f{width:12.879040pt;}
._d{width:14.589120pt;}
._e{width:15.657920pt;}
._10{width:16.562453pt;}
._c{width:17.528320pt;}
._11{width:18.548202pt;}
._12{width:19.652353pt;}
._13{width:26.345920pt;}
._16{width:52.873280pt;}
._14{width:62.759680pt;}
._15{width:63.706282pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y103{bottom:99.306667pt;}
.y48{bottom:105.866667pt;}
.ya8{bottom:107.306667pt;}
.y172{bottom:107.706667pt;}
.ybe{bottom:107.786667pt;}
.y1cb{bottom:109.866667pt;}
.y1f0{bottom:110.106667pt;}
.y145{bottom:113.706667pt;}
.y60{bottom:113.866667pt;}
.y28{bottom:120.426667pt;}
.y47{bottom:121.466667pt;}
.ya7{bottom:122.906667pt;}
.y171{bottom:123.306667pt;}
.y1ef{bottom:125.786667pt;}
.y7c{bottom:125.866667pt;}
.y144{bottom:129.306667pt;}
.y102{bottom:130.906667pt;}
.y19d{bottom:131.546667pt;}
.y1ca{bottom:132.106667pt;}
.y27{bottom:136.026667pt;}
.y46{bottom:137.146667pt;}
.y157{bottom:138.586667pt;}
.y170{bottom:138.906667pt;}
.ybd{bottom:139.386667pt;}
.y7b{bottom:141.466667pt;}
.ye0{bottom:142.106667pt;}
.y143{bottom:144.986667pt;}
.y5f{bottom:145.466667pt;}
.y101{bottom:146.586667pt;}
.y19c{bottom:147.226667pt;}
.y122{bottom:147.306667pt;}
.y1c9{bottom:147.866667pt;}
.y1ee{bottom:149.386667pt;}
.y26{bottom:151.706667pt;}
.y45{bottom:152.746667pt;}
.y156{bottom:154.186667pt;}
.ya6{bottom:154.586667pt;}
.ybc{bottom:155.066667pt;}
.y7a{bottom:157.146667pt;}
.ydf{bottom:157.786667pt;}
.y142{bottom:160.586667pt;}
.y100{bottom:162.186667pt;}
.y121{bottom:162.906667pt;}
.y1ed{bottom:164.986667pt;}
.y44{bottom:168.426667pt;}
.y19b{bottom:169.466667pt;}
.y1c8{bottom:170.026667pt;}
.ya5{bottom:170.186667pt;}
.ybb{bottom:170.666667pt;}
.y79{bottom:172.746667pt;}
.yde{bottom:173.386667pt;}
.y5e{bottom:177.146667pt;}
.yff{bottom:177.866667pt;}
.y120{bottom:178.586667pt;}
.y25{bottom:183.306667pt;}
.y43{bottom:184.026667pt;}
.y19a{bottom:185.146667pt;}
.y1c7{bottom:185.786667pt;}
.ya4{bottom:185.866667pt;}
.yba{bottom:186.266667pt;}
.y78{bottom:188.426667pt;}
.y1ec{bottom:188.666667pt;}
.ydd{bottom:188.986667pt;}
.y141{bottom:192.266667pt;}
.y5d{bottom:192.746667pt;}
.y11f{bottom:194.186667pt;}
.y24{bottom:198.906667pt;}
.y42{bottom:199.626667pt;}
.y199{bottom:200.826667pt;}
.ya3{bottom:201.466667pt;}
.y16f{bottom:201.866667pt;}
.y77{bottom:204.026667pt;}
.y1eb{bottom:204.266667pt;}
.y140{bottom:207.866667pt;}
.y1c6{bottom:207.946667pt;}
.y5c{bottom:208.426667pt;}
.yfe{bottom:209.466667pt;}
.y23{bottom:214.586667pt;}
.yb9{bottom:214.906667pt;}
.y41{bottom:215.306667pt;}
.y16e{bottom:217.466667pt;}
.y11e{bottom:218.106667pt;}
.y76{bottom:219.626667pt;}
.ydc{bottom:220.666667pt;}
.y198{bottom:222.986667pt;}
.y13f{bottom:223.466667pt;}
.y1c5{bottom:223.706667pt;}
.y5b{bottom:224.026667pt;}
.ya2{bottom:225.066667pt;}
.y1ea{bottom:227.946667pt;}
.y22{bottom:230.186667pt;}
.y16d{bottom:233.066667pt;}
.y75{bottom:235.306667pt;}
.ydb{bottom:236.266667pt;}
.y13e{bottom:239.146667pt;}
.yfd{bottom:240.746667pt;}
.y1e9{bottom:243.546667pt;}
.y197{bottom:245.306667pt;}
.y21{bottom:245.866667pt;}
.y1c4{bottom:245.946667pt;}
.y40{bottom:246.906667pt;}
.y16c{bottom:248.746667pt;}
.y74{bottom:250.906667pt;}
.yda{bottom:251.946667pt;}
.y5a{bottom:252.666667pt;}
.y13d{bottom:254.746667pt;}
.yfc{bottom:256.346667pt;}
.ya1{bottom:256.746667pt;}
.y11d{bottom:260.986667pt;}
.y1c3{bottom:261.626667pt;}
.y3f{bottom:262.586667pt;}
.y16b{bottom:264.346667pt;}
.y73{bottom:266.586667pt;}
.y1e8{bottom:267.146667pt;}
.yd9{bottom:267.546667pt;}
.y20{bottom:269.786667pt;}
.yfb{bottom:271.946667pt;}
.ya0{bottom:272.346667pt;}
.y11c{bottom:276.666667pt;}
.y3e{bottom:278.186667pt;}
.y16a{bottom:280.026667pt;}
.y72{bottom:282.186667pt;}
.y196{bottom:283.226667pt;}
.y1c2{bottom:283.866667pt;}
.y13c{bottom:286.426667pt;}
.y9f{bottom:287.946667pt;}
.y1e7{bottom:290.826667pt;}
.yd8{bottom:291.146667pt;}
.y11b{bottom:292.266667pt;}
.y3d{bottom:293.786667pt;}
.y169{bottom:295.626667pt;}
.y71{bottom:297.786667pt;}
.y195{bottom:298.986667pt;}
.y1c1{bottom:299.546667pt;}
.y13b{bottom:302.026667pt;}
.y9e{bottom:303.626667pt;}
.y1e6{bottom:306.426667pt;}
.y11a{bottom:307.946667pt;}
.y168{bottom:311.226667pt;}
.y1f{bottom:312.666667pt;}
.y70{bottom:313.466667pt;}
.y13a{bottom:317.626667pt;}
.yfa{bottom:319.226667pt;}
.y194{bottom:321.146667pt;}
.y1c0{bottom:321.786667pt;}
.y3c{bottom:322.426667pt;}
.yd7{bottom:322.826667pt;}
.y1e{bottom:328.586667pt;}
.y6f{bottom:329.066667pt;}
.y1e5{bottom:330.106667pt;}
.y139{bottom:333.306667pt;}
.yf9{bottom:334.906667pt;}
.y9d{bottom:335.226667pt;}
.y193{bottom:336.906667pt;}
.y1bf{bottom:337.466667pt;}
.yd6{bottom:338.426667pt;}
.y119{bottom:339.546667pt;}
.y167{bottom:342.826667pt;}
.y1e4{bottom:345.706667pt;}
.yf8{bottom:350.506667pt;}
.y9c{bottom:350.906667pt;}
.yd5{bottom:354.106667pt;}
.y118{bottom:355.146667pt;}
.y138{bottom:356.906667pt;}
.y192{bottom:359.066667pt;}
.y1be{bottom:359.706667pt;}
.y6e{bottom:360.666667pt;}
.y1d{bottom:361.466667pt;}
.y9b{bottom:366.506667pt;}
.y1e3{bottom:369.306667pt;}
.yd4{bottom:369.706667pt;}
.y117{bottom:370.826667pt;}
.yf7{bottom:374.106667pt;}
.y191{bottom:374.826667pt;}
.y166{bottom:375.226667pt;}
.y1bd{bottom:375.386667pt;}
.y6d{bottom:376.346667pt;}
.y1c{bottom:377.146667pt;}
.y9a{bottom:382.106667pt;}
.y1e2{bottom:384.986667pt;}
.y116{bottom:386.426667pt;}
.y137{bottom:388.586667pt;}
.y165{bottom:390.906667pt;}
.y6c{bottom:391.946667pt;}
.y1b{bottom:392.746667pt;}
.y1bc{bottom:397.626667pt;}
.y155{bottom:397.786667pt;}
.y190{bottom:398.746667pt;}
.yd3{bottom:401.306667pt;}
.y115{bottom:402.106667pt;}
.y136{bottom:404.186667pt;}
.yf6{bottom:405.786667pt;}
.y164{bottom:406.506667pt;}
.y6b{bottom:407.626667pt;}
.y1a{bottom:408.346667pt;}
.y1e1{bottom:408.586667pt;}
.y1bb{bottom:413.306667pt;}
.y154{bottom:413.386667pt;}
.y99{bottom:413.786667pt;}
.yd2{bottom:416.986667pt;}
.y114{bottom:417.733333pt;}
.y135{bottom:419.813333pt;}
.yf5{bottom:421.413333pt;}
.y163{bottom:422.133333pt;}
.y19{bottom:424.053333pt;}
.y1e0{bottom:424.293333pt;}
.y153{bottom:429.093333pt;}
.y98{bottom:429.413333pt;}
.yd1{bottom:432.613333pt;}
.y113{bottom:433.333333pt;}
.y134{bottom:435.493333pt;}
.y1ba{bottom:435.573333pt;}
.y6a{bottom:436.293333pt;}
.yf4{bottom:437.093333pt;}
.y162{bottom:437.813333pt;}
.y18{bottom:439.653333pt;}
.y18f{bottom:441.653333pt;}
.y152{bottom:444.693333pt;}
.y97{bottom:445.093333pt;}
.y1df{bottom:447.893333pt;}
.yd0{bottom:448.293333pt;}
.y133{bottom:451.093333pt;}
.y1b9{bottom:451.333333pt;}
.yf3{bottom:452.693333pt;}
.y17{bottom:455.333333pt;}
.y18e{bottom:457.333333pt;}
.y151{bottom:460.293333pt;}
.y96{bottom:460.693333pt;}
.y161{bottom:461.733333pt;}
.y1de{bottom:463.493333pt;}
.y112{bottom:465.013333pt;}
.y132{bottom:466.693333pt;}
.yf2{bottom:468.293333pt;}
.y16{bottom:470.933333pt;}
.y18d{bottom:472.933333pt;}
.y1b8{bottom:473.493333pt;}
.y150{bottom:475.973333pt;}
.ycf{bottom:479.893333pt;}
.y111{bottom:480.613333pt;}
.y131{bottom:482.373333pt;}
.yf1{bottom:483.973333pt;}
.y95{bottom:484.293333pt;}
.y15{bottom:486.533333pt;}
.y1dd{bottom:487.173333pt;}
.y1b7{bottom:489.253333pt;}
.y14f{bottom:491.573333pt;}
.yce{bottom:495.493333pt;}
.y110{bottom:496.293333pt;}
.y18c{bottom:496.853333pt;}
.y130{bottom:497.973333pt;}
.yf0{bottom:499.573333pt;}
.y14{bottom:502.213333pt;}
.y1dc{bottom:502.773333pt;}
.y160{bottom:504.613333pt;}
.y14e{bottom:507.253333pt;}
.yb8{bottom:508.213333pt;}
.ycd{bottom:511.173333pt;}
.y1b6{bottom:511.413333pt;}
.y10f{bottom:511.893333pt;}
.y12f{bottom:513.653333pt;}
.yef{bottom:515.253333pt;}
.y94{bottom:515.973333pt;}
.y13{bottom:517.813333pt;}
.y15f{bottom:520.293333pt;}
.y1db{bottom:526.453333pt;}
.ycc{bottom:526.773333pt;}
.y1b5{bottom:527.173333pt;}
.y10e{bottom:527.493333pt;}
.y12e{bottom:529.253333pt;}
.y18b{bottom:530.053333pt;}
.y14d{bottom:530.853333pt;}
.y93{bottom:531.573333pt;}
.y12{bottom:533.493333pt;}
.y15e{bottom:535.893333pt;}
.y1da{bottom:542.053333pt;}
.y1b4{bottom:542.773333pt;}
.y10d{bottom:543.173333pt;}
.y12d{bottom:544.853333pt;}
.yee{bottom:546.853333pt;}
.y92{bottom:547.253333pt;}
.y11{bottom:549.093333pt;}
.yb7{bottom:551.173333pt;}
.y15d{bottom:551.493333pt;}
.ycb{bottom:558.453333pt;}
.y10c{bottom:558.773333pt;}
.yed{bottom:562.453333pt;}
.y91{bottom:562.853333pt;}
.y1d9{bottom:565.653333pt;}
.yb6{bottom:566.773333pt;}
.y15c{bottom:567.173333pt;}
.y18a{bottom:572.933333pt;}
.y10{bottom:573.013333pt;}
.yca{bottom:574.053333pt;}
.y12c{bottom:576.533333pt;}
.yec{bottom:578.133333pt;}
.y90{bottom:578.453333pt;}
.y1b3{bottom:580.613333pt;}
.y1d8{bottom:581.333333pt;}
.yb5{bottom:582.453333pt;}
.y15b{bottom:582.773333pt;}
.y189{bottom:588.613333pt;}
.yc9{bottom:589.653333pt;}
.y10b{bottom:590.453333pt;}
.y12b{bottom:592.133333pt;}
.yeb{bottom:593.733333pt;}
.y8f{bottom:594.133333pt;}
.y1b2{bottom:596.373333pt;}
.y59{bottom:597.653333pt;}
.y15a{bottom:598.453333pt;}
.y188{bottom:604.213333pt;}
.y1d7{bottom:604.933333pt;}
.y10a{bottom:606.053333pt;}
.y12a{bottom:607.813333pt;}
.y14c{bottom:609.413333pt;}
.y8e{bottom:609.733333pt;}
.y58{bottom:613.333333pt;}
.yb4{bottom:614.053333pt;}
.yf{bottom:615.893333pt;}
.yea{bottom:617.413333pt;}
.y1b1{bottom:618.533333pt;}
.y187{bottom:619.813333pt;}
.y109{bottom:621.653333pt;}
.y129{bottom:623.413333pt;}
.y14b{bottom:625.013333pt;}
.y8d{bottom:625.413333pt;}
.y1d6{bottom:628.613333pt;}
.y57{bottom:628.933333pt;}
.yb3{bottom:629.653333pt;}
.y186{bottom:635.493333pt;}
.y108{bottom:637.333333pt;}
.y1b0{bottom:640.853333pt;}
.y8c{bottom:641.013333pt;}
.y1d5{bottom:644.213333pt;}
.y56{bottom:644.613333pt;}
.yc8{bottom:644.933333pt;}
.yb2{bottom:645.333333pt;}
.y128{bottom:647.013333pt;}
.ye{bottom:647.733333pt;}
.y14a{bottom:648.933333pt;}
.ye9{bottom:649.013333pt;}
.y107{bottom:652.933333pt;}
.y1af{bottom:656.613333pt;}
.y55{bottom:660.213333pt;}
.yc7{bottom:660.613333pt;}
.yb1{bottom:660.933333pt;}
.ye8{bottom:664.613333pt;}
.y185{bottom:667.013333pt;}
.y1d4{bottom:667.813333pt;}
.y106{bottom:668.613333pt;}
.y8b{bottom:672.613333pt;}
.yc6{bottom:676.213333pt;}
.yb0{bottom:676.613333pt;}
.y127{bottom:678.693333pt;}
.y1ae{bottom:678.773333pt;}
.yd{bottom:679.733333pt;}
.ye7{bottom:680.293333pt;}
.y1d3{bottom:683.493333pt;}
.y8a{bottom:688.293333pt;}
.y54{bottom:691.813333pt;}
.yaf{bottom:692.213333pt;}
.y159{bottom:692.613333pt;}
.y126{bottom:694.293333pt;}
.y1ad{bottom:694.533333pt;}
.ye6{bottom:695.893333pt;}
.y184{bottom:699.493333pt;}
.y89{bottom:703.893333pt;}
.y1d2{bottom:707.093333pt;}
.y53{bottom:707.493333pt;}
.y158{bottom:708.213333pt;}
.y125{bottom:709.973333pt;}
.ye5{bottom:711.573333pt;}
.yc{bottom:715.093333pt;}
.y1ac{bottom:716.693333pt;}
.y88{bottom:719.573333pt;}
.y52{bottom:723.093333pt;}
.yae{bottom:723.813333pt;}
.y124{bottom:725.573333pt;}
.ye4{bottom:727.173333pt;}
.y1d1{bottom:730.693333pt;}
.y183{bottom:730.773333pt;}
.yb{bottom:731.093333pt;}
.y1ab{bottom:732.453333pt;}
.y51{bottom:738.693333pt;}
.y3b{bottom:739.493333pt;}
.y87{bottom:743.173333pt;}
.y182{bottom:746.373333pt;}
.ya{bottom:747.093333pt;}
.ye3{bottom:751.093333pt;}
.y123{bottom:754.213333pt;}
.yc5{bottom:754.373333pt;}
.y1aa{bottom:754.613333pt;}
.y3a{bottom:755.093333pt;}
.y181{bottom:761.973333pt;}
.y50{bottom:762.373333pt;}
.y9{bottom:763.093333pt;}
.y149{bottom:769.973333pt;}
.y1a9{bottom:770.373333pt;}
.y39{bottom:770.693333pt;}
.y86{bottom:774.773333pt;}
.y180{bottom:777.653333pt;}
.y8{bottom:779.093333pt;}
.yc4{bottom:785.973333pt;}
.y38{bottom:786.373333pt;}
.y85{bottom:790.453333pt;}
.y1a8{bottom:792.613333pt;}
.y17f{bottom:793.253333pt;}
.y1d0{bottom:793.653333pt;}
.y4f{bottom:793.973333pt;}
.y7{bottom:795.093333pt;}
.yc3{bottom:801.653333pt;}
.y37{bottom:801.973333pt;}
.y84{bottom:806.053333pt;}
.y1a7{bottom:808.293333pt;}
.y17e{bottom:808.853333pt;}
.y1cf{bottom:809.253333pt;}
.y4e{bottom:809.653333pt;}
.yad{bottom:809.973333pt;}
.y69{bottom:817.253333pt;}
.y36{bottom:817.653333pt;}
.y83{bottom:821.733333pt;}
.y6{bottom:823.813333pt;}
.y17d{bottom:824.533333pt;}
.y4d{bottom:825.253333pt;}
.y1a6{bottom:830.533333pt;}
.yc2{bottom:832.853333pt;}
.y35{bottom:833.253333pt;}
.y82{bottom:837.333333pt;}
.ye2{bottom:840.853333pt;}
.y5{bottom:841.013333pt;}
.yac{bottom:841.653333pt;}
.y1a5{bottom:846.213333pt;}
.yc1{bottom:848.533333pt;}
.y34{bottom:848.853333pt;}
.y81{bottom:852.933333pt;}
.y17c{bottom:856.133333pt;}
.ye1{bottom:856.533333pt;}
.y4c{bottom:856.853333pt;}
.yab{bottom:857.253333pt;}
.y1a4{bottom:861.893333pt;}
.y148{bottom:864.133333pt;}
.y68{bottom:864.533333pt;}
.y80{bottom:868.613333pt;}
.y17b{bottom:871.813333pt;}
.y1ce{bottom:872.133333pt;}
.y33{bottom:872.533333pt;}
.yaa{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y67{bottom:880.133333pt;}
.y1a3{bottom:884.053333pt;}
.y7f{bottom:884.213333pt;}
.y17a{bottom:887.413333pt;}
.y1cd{bottom:887.813333pt;}
.y4b{bottom:888.133333pt;}
.ya9{bottom:888.533333pt;}
.y66{bottom:895.813333pt;}
.y105{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y7e{bottom:899.840000pt;}
.y179{bottom:903.040000pt;}
.y4a{bottom:903.840000pt;}
.y32{bottom:904.160000pt;}
.yc0{bottom:911.440000pt;}
.y104{bottom:911.840000pt;}
.y178{bottom:918.720000pt;}
.y49{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.y1a2{bottom:922.000000pt;}
.y7d{bottom:923.760000pt;}
.y147{bottom:927.040000pt;}
.y65{bottom:927.440000pt;}
.y177{bottom:934.320000pt;}
.ybf{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.y1a1{bottom:937.760000pt;}
.y64{bottom:943.040000pt;}
.y176{bottom:950.000000pt;}
.y146{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y63{bottom:958.720000pt;}
.y1a0{bottom:959.920000pt;}
.y175{bottom:965.600000pt;}
.y1cc{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y62{bottom:974.320000pt;}
.y19f{bottom:975.680000pt;}
.y174{bottom:981.200000pt;}
.y2d{bottom:982.320000pt;}
.y61{bottom:990.000000pt;}
.y19e{bottom:997.920000pt;}
.y2c{bottom:998.000000pt;}
.y173{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.ha{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:54.927899pt;}
.h9{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x13{left:62.479988pt;}
.xb{left:65.279988pt;}
.xa{left:68.319988pt;}
.x6{left:71.359988pt;}
.x16{left:73.199988pt;}
.x12{left:74.399988pt;}
.x7{left:75.359988pt;}
.x5{left:76.559988pt;}
.xf{left:79.439988pt;}
.x19{left:84.479988pt;}
.xc{left:87.839988pt;}
.x17{left:89.519988pt;}
.x1a{left:99.039988pt;}
.x2{left:180.266655pt;}
.x10{left:231.626655pt;}
.x18{left:288.666655pt;}
.x8{left:294.266655pt;}
.xd{left:314.346655pt;}
.x14{left:362.426655pt;}
.x9{left:617.013322pt;}
.x11{left:666.053322pt;}
.x15{left:676.053322pt;}
.x4{left:681.013322pt;}
.xe{left:698.053322pt;}
.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; }
  