
    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_25ef7a0da622625d152f13f2.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_5a3e4b3e46212742c9d87972.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ac76961309b1393bcc7ddb8c.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_9d65ca1ffabc07e3c7d007ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_aebdff094e2eb174092df950.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_5799b02c09e71df10e03efb7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_13b06c83c91a940b50dfc41f.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b300bd575bc1cff8c23fbb10.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7a12cedcd527f5a9169d7bf8.woff2')format("woff");}.ffa{font-family:ffa;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;}
.lsd{letter-spacing:-0.391800px;}
.ls21{letter-spacing:-0.285600px;}
.ls18{letter-spacing:-0.244200px;}
.lsc{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.ls1e{letter-spacing:-0.132000px;}
.lsf{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.lsa{letter-spacing:-0.084000px;}
.ls1d{letter-spacing:-0.049680px;}
.ls20{letter-spacing:-0.040320px;}
.lse{letter-spacing:-0.031800px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.005400px;}
.ls14{letter-spacing:0.006840px;}
.ls4{letter-spacing:0.014760px;}
.ls12{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls10{letter-spacing:0.074160px;}
.ls1f{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1c{letter-spacing:0.098400px;}
.ls1b{letter-spacing:0.113400px;}
.ls19{letter-spacing:0.115800px;}
.ls11{letter-spacing:0.142800px;}
.ls6{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls23{letter-spacing:47.726640px;}
.ls22{letter-spacing:80.846640px;}
.ls15{letter-spacing:172.646640px;}
.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;}
}
.ws9{word-spacing:-14.636400px;}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.342200px;}
.wse{word-spacing:-13.324800px;}
.ws12{word-spacing:-13.300800px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.176720px;}
.ws11{word-spacing:-13.094400px;}
.ws3{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.982200px;}
.ws13{word-spacing:-12.940800px;}
.wsf{word-spacing:-11.880000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._9{margin-left:-3.670678px;}
._7{margin-left:-2.492641px;}
._4{margin-left:-1.237440px;}
._0{width:1.006896px;}
._8{width:2.088327px;}
._6{width:3.462815px;}
._2{width:4.650264px;}
._a{width:5.771400px;}
._1{width:7.246800px;}
._3{width:8.288280px;}
._5{width:9.861840px;}
._b{width:11.065320px;}
._d{width:12.141000px;}
._c{width:14.669280px;}
._e{width:16.653240px;}
._f{width:17.855640px;}
._14{width:20.080080px;}
._19{width:21.943800px;}
._15{width:24.168240px;}
._1a{width:36.583200px;}
._11{width:43.767360px;}
._1b{width:55.490760px;}
._16{width:57.835440px;}
._13{width:61.202160px;}
._1d{width:71.482680px;}
._1f{width:99.295920px;}
._12{width:110.981520px;}
._1c{width:113.085720px;}
._1e{width:121.502520px;}
._10{width:137.593680px;}
._18{width:139.418280px;}
._20{width:156.312000px;}
._17{width:218.836800px;}
._21{width:485.829720px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:7.830000px;}
.ya7{bottom:7.920000px;}
.ycf{bottom:7.950000px;}
.yfa{bottom:12.330000px;}
.yfd{bottom:12.420000px;}
.yc8{bottom:17.640000px;}
.y121{bottom:25.380000px;}
.ycd{bottom:25.470000px;}
.ye1{bottom:26.550000px;}
.ye2{bottom:26.640000px;}
.yf9{bottom:29.880000px;}
.yf4{bottom:29.970000px;}
.yf6{bottom:30.000000px;}
.ya5{bottom:35.190000px;}
.ydd{bottom:35.220000px;}
.yc7{bottom:35.280000px;}
.ydb{bottom:43.020000px;}
.y110{bottom:43.110000px;}
.yf1{bottom:44.190000px;}
.yf3{bottom:48.690000px;}
.y111{bottom:56.160000px;}
.y10d{bottom:60.570000px;}
.y106{bottom:60.660000px;}
.ybe{bottom:62.460000px;}
.yb5{bottom:62.490000px;}
.ya9{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y105{bottom:78.210000px;}
.y10c{bottom:82.710000px;}
.yb9{bottom:89.820000px;}
.y104{bottom:95.850000px;}
.y10b{bottom:100.260000px;}
.y1{bottom:101.640000px;}
.y107{bottom:108.930000px;}
.y189{bottom:111.720000px;}
.yaf{bottom:112.710000px;}
.y10e{bottom:113.400000px;}
.y103{bottom:113.430000px;}
.y124{bottom:114.420000px;}
.y134{bottom:117.840000px;}
.y10a{bottom:117.900000px;}
.y58{bottom:118.920000px;}
.y88{bottom:121.170000px;}
.y123{bottom:126.660000px;}
.y26{bottom:129.180000px;}
.y188{bottom:129.270000px;}
.y102{bottom:130.980000px;}
.y109{bottom:135.450000px;}
.y133{bottom:135.480000px;}
.y87{bottom:138.720000px;}
.yb0{bottom:140.070000px;}
.yff{bottom:145.110000px;}
.y25{bottom:146.730000px;}
.y187{bottom:146.910000px;}
.y132{bottom:153.030000px;}
.y122{bottom:153.930000px;}
.y57{bottom:154.560000px;}
.y86{bottom:156.270000px;}
.y159{bottom:157.350000px;}
.y24{bottom:164.370000px;}
.yac{bottom:167.340000px;}
.y131{bottom:170.670000px;}
.y186{bottom:173.460000px;}
.y23{bottom:181.920000px;}
.y85{bottom:183.180000px;}
.y158{bottom:184.260000px;}
.y130{bottom:188.220000px;}
.y56{bottom:190.110000px;}
.y185{bottom:191.100000px;}
.yd9{bottom:194.160000px;}
.yfe{bottom:194.520000px;}
.yae{bottom:194.700000px;}
.y22{bottom:199.470000px;}
.y120{bottom:203.430000px;}
.y12f{bottom:205.770000px;}
.y55{bottom:207.750000px;}
.y21{bottom:217.110000px;}
.y184{bottom:217.650000px;}
.y157{bottom:221.250000px;}
.yad{bottom:222.060000px;}
.y12e{bottom:223.410000px;}
.y54{bottom:225.300000px;}
.yd8{bottom:226.200000px;}
.y84{bottom:231.510000px;}
.y20{bottom:234.660000px;}
.y183{bottom:235.200000px;}
.y12d{bottom:240.960000px;}
.y53{bottom:242.850000px;}
.yfc{bottom:243.930000px;}
.y156{bottom:248.160000px;}
.y11f{bottom:248.340000px;}
.y83{bottom:249.060000px;}
.ya8{bottom:249.330000px;}
.y1f{bottom:252.300000px;}
.yd7{bottom:258.600000px;}
.y182{bottom:261.840000px;}
.y82{bottom:266.610000px;}
.y52{bottom:269.490000px;}
.yd6{bottom:272.190000px;}
.y11e{bottom:275.610000px;}
.y12c{bottom:276.510000px;}
.yab{bottom:276.690000px;}
.y1e{bottom:279.120000px;}
.y181{bottom:279.390000px;}
.y81{bottom:284.250000px;}
.y155{bottom:285.510000px;}
.yfb{bottom:293.430000px;}
.y12b{bottom:294.150000px;}
.yd5{bottom:299.550000px;}
.y80{bottom:301.800000px;}
.y11d{bottom:302.970000px;}
.yaa{bottom:304.050000px;}
.y51{bottom:305.040000px;}
.y180{bottom:305.940000px;}
.y7f{bottom:319.440000px;}
.y12a{bottom:321.060000px;}
.y50{bottom:322.680000px;}
.y17f{bottom:323.580000px;}
.yd4{bottom:326.910000px;}
.y1d{bottom:327.720000px;}
.y11c{bottom:330.330000px;}
.ya4{bottom:331.410000px;}
.y154{bottom:333.840000px;}
.y7e{bottom:336.990000px;}
.y4f{bottom:340.230000px;}
.yf8{bottom:342.840000px;}
.y17e{bottom:350.130000px;}
.y153{bottom:351.390000px;}
.yd3{bottom:354.270000px;}
.y7d{bottom:354.540000px;}
.y11b{bottom:357.690000px;}
.ya6{bottom:358.680000px;}
.y1c{bottom:364.800000px;}
.y17d{bottom:367.770000px;}
.y152{bottom:368.940000px;}
.y129{bottom:369.300000px;}
.y7c{bottom:372.180000px;}
.y4e{bottom:375.780000px;}
.yd2{bottom:381.540000px;}
.y1b{bottom:382.350000px;}
.y11a{bottom:384.960000px;}
.ya2{bottom:386.040000px;}
.y151{bottom:386.580000px;}
.y7b{bottom:389.730000px;}
.yf7{bottom:392.250000px;}
.y17c{bottom:394.320000px;}
.y1a{bottom:399.990000px;}
.y128{bottom:401.520000px;}
.y4d{bottom:402.420000px;}
.y150{bottom:404.130000px;}
.y7a{bottom:407.370000px;}
.yd1{bottom:408.900000px;}
.y17b{bottom:411.870000px;}
.y119{bottom:412.320000px;}
.y14f{bottom:421.770000px;}
.y79{bottom:424.920000px;}
.ya1{bottom:434.730000px;}
.y19{bottom:435.540000px;}
.yd0{bottom:436.260000px;}
.y4c{bottom:437.970000px;}
.y17a{bottom:438.510000px;}
.y14e{bottom:439.320000px;}
.y118{bottom:439.680000px;}
.yf5{bottom:441.660000px;}
.y78{bottom:451.470000px;}
.y18{bottom:453.090000px;}
.y4b{bottom:455.610000px;}
.y179{bottom:456.060000px;}
.y14d{bottom:456.870000px;}
.yce{bottom:463.530000px;}
.y117{bottom:466.950000px;}
.ya0{bottom:470.400000px;}
.y17{bottom:470.760000px;}
.y4a{bottom:473.190000px;}
.y178{bottom:473.730000px;}
.y14c{bottom:474.540000px;}
.y77{bottom:487.140000px;}
.y9f{bottom:487.950000px;}
.y16{bottom:488.310000px;}
.y49{bottom:490.740000px;}
.ycc{bottom:490.920000px;}
.yf2{bottom:491.100000px;}
.y14b{bottom:492.090000px;}
.y116{bottom:494.340000px;}
.y177{bottom:500.280000px;}
.y76{bottom:504.690000px;}
.y9e{bottom:505.500000px;}
.y15{bottom:505.950000px;}
.y48{bottom:508.380000px;}
.y14a{bottom:509.730000px;}
.y176{bottom:517.830000px;}
.y115{bottom:521.700000px;}
.y75{bottom:522.330000px;}
.y9d{bottom:523.140000px;}
.y47{bottom:525.930000px;}
.y149{bottom:527.280000px;}
.y74{bottom:539.880000px;}
.yf0{bottom:540.510000px;}
.y14{bottom:541.500000px;}
.y46{bottom:543.480000px;}
.y175{bottom:544.470000px;}
.y148{bottom:544.830000px;}
.ycb{bottom:557.250000px;}
.y73{bottom:557.430000px;}
.y9c{bottom:558.690000px;}
.y13{bottom:559.050000px;}
.y45{bottom:561.120000px;}
.y174{bottom:562.020000px;}
.y147{bottom:562.470000px;}
.y72{bottom:575.070000px;}
.y9b{bottom:576.330000px;}
.y12{bottom:576.690000px;}
.y173{bottom:579.660000px;}
.y114{bottom:587.940000px;}
.y44{bottom:588.030000px;}
.y146{bottom:589.380000px;}
.y71{bottom:592.620000px;}
.yca{bottom:592.800000px;}
.y9a{bottom:593.880000px;}
.y11{bottom:594.240000px;}
.y113{bottom:605.580000px;}
.y172{bottom:606.210000px;}
.yef{bottom:606.840000px;}
.yc6{bottom:607.740000px;}
.y70{bottom:610.260000px;}
.y99{bottom:611.430000px;}
.y171{bottom:623.760000px;}
.yee{bottom:624.390000px;}
.y6f{bottom:627.810000px;}
.y98{bottom:629.070000px;}
.y10{bottom:629.880000px;}
.yc9{bottom:635.100000px;}
.y43{bottom:636.270000px;}
.y145{bottom:637.620000px;}
.y112{bottom:640.410000px;}
.y97{bottom:646.620000px;}
.y170{bottom:650.400000px;}
.y10f{bottom:652.560000px;}
.y6e{bottom:654.360000px;}
.y144{bottom:655.260000px;}
.yed{bottom:656.160000px;}
.yc4{bottom:662.460000px;}
.y42{bottom:663.180000px;}
.y96{bottom:664.260000px;}
.yf{bottom:665.430000px;}
.y16f{bottom:667.950000px;}
.y143{bottom:672.810000px;}
.yeb{bottom:673.710000px;}
.y95{bottom:681.810000px;}
.ye{bottom:682.980000px;}
.yc5{bottom:689.820000px;}
.y6d{bottom:690.000000px;}
.y142{bottom:690.360000px;}
.y16e{bottom:694.590000px;}
.y94{bottom:699.360000px;}
.y41{bottom:700.260000px;}
.yec{bottom:701.070000px;}
.y6c{bottom:707.550000px;}
.y141{bottom:708.000000px;}
.yd{bottom:709.980000px;}
.y16d{bottom:712.140000px;}
.y93{bottom:717.000000px;}
.yc1{bottom:717.090000px;}
.y40{bottom:717.810000px;}
.y6b{bottom:725.190000px;}
.y140{bottom:725.550000px;}
.ye9{bottom:728.340000px;}
.y92{bottom:734.550000px;}
.y3f{bottom:735.360000px;}
.y16c{bottom:738.690000px;}
.y13f{bottom:743.190000px;}
.yc3{bottom:744.450000px;}
.y108{bottom:750.300000px;}
.y3e{bottom:753.000000px;}
.yea{bottom:755.700000px;}
.y16b{bottom:756.330000px;}
.yc{bottom:756.690000px;}
.y6a{bottom:760.740000px;}
.y127{bottom:767.220000px;}
.y91{bottom:770.190000px;}
.y3d{bottom:770.550000px;}
.yc2{bottom:771.810000px;}
.y16a{bottom:773.880000px;}
.y13e{bottom:778.290000px;}
.ye7{bottom:783.060000px;}
.y90{bottom:787.740000px;}
.y3c{bottom:788.190000px;}
.yb{bottom:792.510000px;}
.y13d{bottom:795.930000px;}
.y69{bottom:796.290000px;}
.ybd{bottom:799.170000px;}
.y169{bottom:800.520000px;}
.y126{bottom:802.770000px;}
.y8f{bottom:805.290000px;}
.y3b{bottom:805.740000px;}
.ye8{bottom:810.420000px;}
.y13c{bottom:813.480000px;}
.y68{bottom:813.930000px;}
.y168{bottom:818.070000px;}
.y8e{bottom:822.930000px;}
.y3a{bottom:823.290000px;}
.yc0{bottom:826.440000px;}
.ya{bottom:828.510000px;}
.y13b{bottom:831.030000px;}
.y67{bottom:831.480000px;}
.y125{bottom:834.990000px;}
.ye5{bottom:837.690000px;}
.y8d{bottom:840.480000px;}
.y39{bottom:840.930000px;}
.y167{bottom:844.620000px;}
.y66{bottom:849.030000px;}
.ybf{bottom:853.800000px;}
.y13a{bottom:857.670000px;}
.y38{bottom:858.480000px;}
.y166{bottom:862.260000px;}
.ye6{bottom:865.050000px;}
.y9{bottom:868.290000px;}
.y37{bottom:876.030000px;}
.yb8{bottom:881.160000px;}
.y65{bottom:884.670000px;}
.y8{bottom:886.290000px;}
.y165{bottom:888.810000px;}
.ye3{bottom:892.410000px;}
.y139{bottom:893.220000px;}
.y36{bottom:893.670000px;}
.y7{bottom:904.290000px;}
.y101{bottom:905.190000px;}
.y164{bottom:906.450000px;}
.ybc{bottom:908.430000px;}
.y35{bottom:911.220000px;}
.ye4{bottom:919.680000px;}
.y64{bottom:920.220000px;}
.y6{bottom:922.290000px;}
.y163{bottom:924.000000px;}
.y34{bottom:928.860000px;}
.ybb{bottom:935.790000px;}
.y63{bottom:937.860000px;}
.y8c{bottom:946.410000px;}
.ydf{bottom:947.040000px;}
.y162{bottom:950.550000px;}
.y5{bottom:954.600000px;}
.y62{bottom:955.410000px;}
.yba{bottom:963.150000px;}
.y8b{bottom:963.960000px;}
.y33{bottom:964.410000px;}
.y161{bottom:968.190000px;}
.y61{bottom:972.960000px;}
.y4{bottom:973.950000px;}
.ye0{bottom:974.400000px;}
.y8a{bottom:981.600000px;}
.y32{bottom:981.960000px;}
.yb4{bottom:990.510000px;}
.y60{bottom:990.600000px;}
.y160{bottom:994.740000px;}
.y89{bottom:999.150000px;}
.y31{bottom:999.600000px;}
.ydc{bottom:1001.760000px;}
.y5f{bottom:1008.150000px;}
.y3{bottom:1012.230000px;}
.y15f{bottom:1012.320000px;}
.y138{bottom:1016.820000px;}
.y30{bottom:1017.180000px;}
.yb7{bottom:1017.810000px;}
.y5e{bottom:1025.820000px;}
.yde{bottom:1029.060000px;}
.y137{bottom:1034.370000px;}
.y2f{bottom:1034.820000px;}
.y15e{bottom:1038.960000px;}
.y5d{bottom:1043.370000px;}
.yb6{bottom:1045.170000px;}
.y136{bottom:1051.920000px;}
.y2e{bottom:1052.370000px;}
.y100{bottom:1055.700000px;}
.yda{bottom:1056.420000px;}
.y15d{bottom:1056.510000px;}
.y5c{bottom:1060.920000px;}
.y135{bottom:1069.560000px;}
.y2d{bottom:1069.920000px;}
.yb3{bottom:1072.530000px;}
.y5b{bottom:1078.560000px;}
.y15c{bottom:1083.150000px;}
.y2c{bottom:1087.560000px;}
.y5a{bottom:1096.110000px;}
.yb2{bottom:1099.890000px;}
.y15b{bottom:1100.700000px;}
.y2b{bottom:1105.110000px;}
.y59{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.yb1{bottom:1127.160000px;}
.y15a{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hb{height:26.550000px;}
.h10{height:26.580000px;}
.hd{height:26.640000px;}
.h15{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h17{height:40.539023px;}
.h21{height:44.100000px;}
.h14{height:44.190000px;}
.h16{height:45.720703px;}
.h1d{height:48.600000px;}
.h1b{height:48.690000px;}
.h1c{height:48.720000px;}
.h7{height:50.902383px;}
.hc{height:53.910000px;}
.h19{height:53.940000px;}
.h13{height:54.000000px;}
.h5{height:55.779258px;}
.h18{height:61.740000px;}
.ha{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1a{height:74.004654px;}
.h12{height:81.180000px;}
.hf{height:81.210000px;}
.he{height:81.270000px;}
.h20{height:96.930000px;}
.h11{height:108.540000px;}
.h1e{height:149.700000px;}
.h1f{height:154.170000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w17{width:30.240000px;}
.w4{width:32.760000px;}
.w5{width:35.820000px;}
.wf{width:44.100000px;}
.w2d{width:44.910000px;}
.w28{width:45.000000px;}
.w22{width:47.250000px;}
.w24{width:50.940000px;}
.w26{width:52.380000px;}
.w20{width:53.100000px;}
.w21{width:55.440000px;}
.w23{width:55.470000px;}
.w27{width:57.510000px;}
.w1f{width:62.190000px;}
.w2f{width:68.490000px;}
.w10{width:68.670000px;}
.w25{width:69.210000px;}
.w11{width:78.390000px;}
.w9{width:82.350000px;}
.w2c{width:84.330000px;}
.wa{width:84.420000px;}
.w13{width:88.590000px;}
.w1b{width:92.160000px;}
.w12{width:93.150000px;}
.w2e{width:94.140000px;}
.wb{width:100.200000px;}
.w1a{width:100.260000px;}
.w1e{width:103.230000px;}
.w1c{width:107.130000px;}
.w16{width:108.480000px;}
.w14{width:110.610000px;}
.wd{width:111.780000px;}
.w19{width:116.100000px;}
.wc{width:116.190000px;}
.w18{width:122.250000px;}
.w1d{width:122.310000px;}
.w15{width:127.350000px;}
.w2a{width:129.960000px;}
.we{width:139.530000px;}
.w2b{width:163.440000px;}
.w8{width:256.890000px;}
.w7{width:335.280000px;}
.w6{width:349.590000px;}
.w29{width:451.590000px;}
.w3{width:685.590000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.960000px;}
.x19{left:62.640000px;}
.x1{left:68.040000px;}
.x24{left:73.350000px;}
.x4{left:95.039987px;}
.x2d{left:111.239987px;}
.x2c{left:127.889987px;}
.x5{left:149.039987px;}
.x18{left:178.050000px;}
.x1a{left:185.700000px;}
.x29{left:187.049987px;}
.x2{left:202.799987px;}
.x11{left:209.100000px;}
.x1e{left:248.700000px;}
.x12{left:253.920000px;}
.xf{left:263.189987px;}
.x1b{left:302.610000px;}
.x13{left:323.400000px;}
.xa{left:326.460000px;}
.x1f{left:358.770000px;}
.x14{left:402.600000px;}
.xb{left:409.530000px;}
.x9{left:419.070000px;}
.x10{left:446.609987px;}
.x20{left:451.650000px;}
.xc{left:494.760000px;}
.x15{left:496.470000px;}
.x25{left:525.660000px;}
.x21{left:552.660000px;}
.x16{left:585.780000px;}
.xd{left:595.680000px;}
.x1c{left:604.320000px;}
.x27{left:610.710000px;}
.x26{left:656.430000px;}
.x22{left:674.250000px;}
.x17{left:697.110000px;}
.xe{left:712.680000px;}
.x1d{left:727.350000px;}
.x2a{left:729.059987px;}
.x28{left:751.380000px;}
.x7{left:755.070000px;}
.x2b{left:758.309987px;}
.x23{left:785.580000px;}
.x8{left:788.640000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.348267pt;}
.ls21{letter-spacing:-0.253867pt;}
.ls18{letter-spacing:-0.217067pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls1e{letter-spacing:-0.117333pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.lsa{letter-spacing:-0.074667pt;}
.ls1d{letter-spacing:-0.044160pt;}
.ls20{letter-spacing:-0.035840pt;}
.lse{letter-spacing:-0.028267pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.004800pt;}
.ls14{letter-spacing:0.006080pt;}
.ls4{letter-spacing:0.013120pt;}
.ls12{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls10{letter-spacing:0.065920pt;}
.ls1f{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1c{letter-spacing:0.087467pt;}
.ls1b{letter-spacing:0.100800pt;}
.ls19{letter-spacing:0.102933pt;}
.ls11{letter-spacing:0.126933pt;}
.ls6{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls23{letter-spacing:42.423680pt;}
.ls22{letter-spacing:71.863680pt;}
.ls15{letter-spacing:153.463680pt;}
.ws9{word-spacing:-13.010133pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.859733pt;}
.wse{word-spacing:-11.844267pt;}
.ws12{word-spacing:-11.822933pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.712640pt;}
.ws11{word-spacing:-11.639467pt;}
.ws3{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.539733pt;}
.ws13{word-spacing:-11.502933pt;}
.wsf{word-spacing:-10.560000pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._9{margin-left:-3.262825pt;}
._7{margin-left:-2.215681pt;}
._4{margin-left:-1.099946pt;}
._0{width:0.895018pt;}
._8{width:1.856291pt;}
._6{width:3.078058pt;}
._2{width:4.133568pt;}
._a{width:5.130133pt;}
._1{width:6.441600pt;}
._3{width:7.367360pt;}
._5{width:8.766080pt;}
._b{width:9.835840pt;}
._d{width:10.792000pt;}
._c{width:13.039360pt;}
._e{width:14.802880pt;}
._f{width:15.871680pt;}
._14{width:17.848960pt;}
._19{width:19.505600pt;}
._15{width:21.482880pt;}
._1a{width:32.518400pt;}
._11{width:38.904320pt;}
._1b{width:49.325120pt;}
._16{width:51.409280pt;}
._13{width:54.401920pt;}
._1d{width:63.540160pt;}
._1f{width:88.263040pt;}
._12{width:98.650240pt;}
._1c{width:100.520640pt;}
._1e{width:108.002240pt;}
._10{width:122.305493pt;}
._18{width:123.927360pt;}
._20{width:138.944000pt;}
._17{width:194.521600pt;}
._21{width:431.848640pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:6.960000pt;}
.ya7{bottom:7.040000pt;}
.ycf{bottom:7.066667pt;}
.yfa{bottom:10.960000pt;}
.yfd{bottom:11.040000pt;}
.yc8{bottom:15.680000pt;}
.y121{bottom:22.560000pt;}
.ycd{bottom:22.640000pt;}
.ye1{bottom:23.600000pt;}
.ye2{bottom:23.680000pt;}
.yf9{bottom:26.560000pt;}
.yf4{bottom:26.640000pt;}
.yf6{bottom:26.666667pt;}
.ya5{bottom:31.280000pt;}
.ydd{bottom:31.306667pt;}
.yc7{bottom:31.360000pt;}
.ydb{bottom:38.240000pt;}
.y110{bottom:38.320000pt;}
.yf1{bottom:39.280000pt;}
.yf3{bottom:43.280000pt;}
.y111{bottom:49.920000pt;}
.y10d{bottom:53.840000pt;}
.y106{bottom:53.920000pt;}
.ybe{bottom:55.520000pt;}
.yb5{bottom:55.546667pt;}
.ya9{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y105{bottom:69.520000pt;}
.y10c{bottom:73.520000pt;}
.yb9{bottom:79.840000pt;}
.y104{bottom:85.200000pt;}
.y10b{bottom:89.120000pt;}
.y1{bottom:90.346667pt;}
.y107{bottom:96.826667pt;}
.y189{bottom:99.306667pt;}
.yaf{bottom:100.186667pt;}
.y10e{bottom:100.800000pt;}
.y103{bottom:100.826667pt;}
.y124{bottom:101.706667pt;}
.y134{bottom:104.746667pt;}
.y10a{bottom:104.800000pt;}
.y58{bottom:105.706667pt;}
.y88{bottom:107.706667pt;}
.y123{bottom:112.586667pt;}
.y26{bottom:114.826667pt;}
.y188{bottom:114.906667pt;}
.y102{bottom:116.426667pt;}
.y109{bottom:120.400000pt;}
.y133{bottom:120.426667pt;}
.y87{bottom:123.306667pt;}
.yb0{bottom:124.506667pt;}
.yff{bottom:128.986667pt;}
.y25{bottom:130.426667pt;}
.y187{bottom:130.586667pt;}
.y132{bottom:136.026667pt;}
.y122{bottom:136.826667pt;}
.y57{bottom:137.386667pt;}
.y86{bottom:138.906667pt;}
.y159{bottom:139.866667pt;}
.y24{bottom:146.106667pt;}
.yac{bottom:148.746667pt;}
.y131{bottom:151.706667pt;}
.y186{bottom:154.186667pt;}
.y23{bottom:161.706667pt;}
.y85{bottom:162.826667pt;}
.y158{bottom:163.786667pt;}
.y130{bottom:167.306667pt;}
.y56{bottom:168.986667pt;}
.y185{bottom:169.866667pt;}
.yd9{bottom:172.586667pt;}
.yfe{bottom:172.906667pt;}
.yae{bottom:173.066667pt;}
.y22{bottom:177.306667pt;}
.y120{bottom:180.826667pt;}
.y12f{bottom:182.906667pt;}
.y55{bottom:184.666667pt;}
.y21{bottom:192.986667pt;}
.y184{bottom:193.466667pt;}
.y157{bottom:196.666667pt;}
.yad{bottom:197.386667pt;}
.y12e{bottom:198.586667pt;}
.y54{bottom:200.266667pt;}
.yd8{bottom:201.066667pt;}
.y84{bottom:205.786667pt;}
.y20{bottom:208.586667pt;}
.y183{bottom:209.066667pt;}
.y12d{bottom:214.186667pt;}
.y53{bottom:215.866667pt;}
.yfc{bottom:216.826667pt;}
.y156{bottom:220.586667pt;}
.y11f{bottom:220.746667pt;}
.y83{bottom:221.386667pt;}
.ya8{bottom:221.626667pt;}
.y1f{bottom:224.266667pt;}
.yd7{bottom:229.866667pt;}
.y182{bottom:232.746667pt;}
.y82{bottom:236.986667pt;}
.y52{bottom:239.546667pt;}
.yd6{bottom:241.946667pt;}
.y11e{bottom:244.986667pt;}
.y12c{bottom:245.786667pt;}
.yab{bottom:245.946667pt;}
.y1e{bottom:248.106667pt;}
.y181{bottom:248.346667pt;}
.y81{bottom:252.666667pt;}
.y155{bottom:253.786667pt;}
.yfb{bottom:260.826667pt;}
.y12b{bottom:261.466667pt;}
.yd5{bottom:266.266667pt;}
.y80{bottom:268.266667pt;}
.y11d{bottom:269.306667pt;}
.yaa{bottom:270.266667pt;}
.y51{bottom:271.146667pt;}
.y180{bottom:271.946667pt;}
.y7f{bottom:283.946667pt;}
.y12a{bottom:285.386667pt;}
.y50{bottom:286.826667pt;}
.y17f{bottom:287.626667pt;}
.yd4{bottom:290.586667pt;}
.y1d{bottom:291.306667pt;}
.y11c{bottom:293.626667pt;}
.ya4{bottom:294.586667pt;}
.y154{bottom:296.746667pt;}
.y7e{bottom:299.546667pt;}
.y4f{bottom:302.426667pt;}
.yf8{bottom:304.746667pt;}
.y17e{bottom:311.226667pt;}
.y153{bottom:312.346667pt;}
.yd3{bottom:314.906667pt;}
.y7d{bottom:315.146667pt;}
.y11b{bottom:317.946667pt;}
.ya6{bottom:318.826667pt;}
.y1c{bottom:324.266667pt;}
.y17d{bottom:326.906667pt;}
.y152{bottom:327.946667pt;}
.y129{bottom:328.266667pt;}
.y7c{bottom:330.826667pt;}
.y4e{bottom:334.026667pt;}
.yd2{bottom:339.146667pt;}
.y1b{bottom:339.866667pt;}
.y11a{bottom:342.186667pt;}
.ya2{bottom:343.146667pt;}
.y151{bottom:343.626667pt;}
.y7b{bottom:346.426667pt;}
.yf7{bottom:348.666667pt;}
.y17c{bottom:350.506667pt;}
.y1a{bottom:355.546667pt;}
.y128{bottom:356.906667pt;}
.y4d{bottom:357.706667pt;}
.y150{bottom:359.226667pt;}
.y7a{bottom:362.106667pt;}
.yd1{bottom:363.466667pt;}
.y17b{bottom:366.106667pt;}
.y119{bottom:366.506667pt;}
.y14f{bottom:374.906667pt;}
.y79{bottom:377.706667pt;}
.ya1{bottom:386.426667pt;}
.y19{bottom:387.146667pt;}
.yd0{bottom:387.786667pt;}
.y4c{bottom:389.306667pt;}
.y17a{bottom:389.786667pt;}
.y14e{bottom:390.506667pt;}
.y118{bottom:390.826667pt;}
.yf5{bottom:392.586667pt;}
.y78{bottom:401.306667pt;}
.y18{bottom:402.746667pt;}
.y4b{bottom:404.986667pt;}
.y179{bottom:405.386667pt;}
.y14d{bottom:406.106667pt;}
.yce{bottom:412.026667pt;}
.y117{bottom:415.066667pt;}
.ya0{bottom:418.133333pt;}
.y17{bottom:418.453333pt;}
.y4a{bottom:420.613333pt;}
.y178{bottom:421.093333pt;}
.y14c{bottom:421.813333pt;}
.y77{bottom:433.013333pt;}
.y9f{bottom:433.733333pt;}
.y16{bottom:434.053333pt;}
.y49{bottom:436.213333pt;}
.ycc{bottom:436.373333pt;}
.yf2{bottom:436.533333pt;}
.y14b{bottom:437.413333pt;}
.y116{bottom:439.413333pt;}
.y177{bottom:444.693333pt;}
.y76{bottom:448.613333pt;}
.y9e{bottom:449.333333pt;}
.y15{bottom:449.733333pt;}
.y48{bottom:451.893333pt;}
.y14a{bottom:453.093333pt;}
.y176{bottom:460.293333pt;}
.y115{bottom:463.733333pt;}
.y75{bottom:464.293333pt;}
.y9d{bottom:465.013333pt;}
.y47{bottom:467.493333pt;}
.y149{bottom:468.693333pt;}
.y74{bottom:479.893333pt;}
.yf0{bottom:480.453333pt;}
.y14{bottom:481.333333pt;}
.y46{bottom:483.093333pt;}
.y175{bottom:483.973333pt;}
.y148{bottom:484.293333pt;}
.ycb{bottom:495.333333pt;}
.y73{bottom:495.493333pt;}
.y9c{bottom:496.613333pt;}
.y13{bottom:496.933333pt;}
.y45{bottom:498.773333pt;}
.y174{bottom:499.573333pt;}
.y147{bottom:499.973333pt;}
.y72{bottom:511.173333pt;}
.y9b{bottom:512.293333pt;}
.y12{bottom:512.613333pt;}
.y173{bottom:515.253333pt;}
.y114{bottom:522.613333pt;}
.y44{bottom:522.693333pt;}
.y146{bottom:523.893333pt;}
.y71{bottom:526.773333pt;}
.yca{bottom:526.933333pt;}
.y9a{bottom:527.893333pt;}
.y11{bottom:528.213333pt;}
.y113{bottom:538.293333pt;}
.y172{bottom:538.853333pt;}
.yef{bottom:539.413333pt;}
.yc6{bottom:540.213333pt;}
.y70{bottom:542.453333pt;}
.y99{bottom:543.493333pt;}
.y171{bottom:554.453333pt;}
.yee{bottom:555.013333pt;}
.y6f{bottom:558.053333pt;}
.y98{bottom:559.173333pt;}
.y10{bottom:559.893333pt;}
.yc9{bottom:564.533333pt;}
.y43{bottom:565.573333pt;}
.y145{bottom:566.773333pt;}
.y112{bottom:569.253333pt;}
.y97{bottom:574.773333pt;}
.y170{bottom:578.133333pt;}
.y10f{bottom:580.053333pt;}
.y6e{bottom:581.653333pt;}
.y144{bottom:582.453333pt;}
.yed{bottom:583.253333pt;}
.yc4{bottom:588.853333pt;}
.y42{bottom:589.493333pt;}
.y96{bottom:590.453333pt;}
.yf{bottom:591.493333pt;}
.y16f{bottom:593.733333pt;}
.y143{bottom:598.053333pt;}
.yeb{bottom:598.853333pt;}
.y95{bottom:606.053333pt;}
.ye{bottom:607.093333pt;}
.yc5{bottom:613.173333pt;}
.y6d{bottom:613.333333pt;}
.y142{bottom:613.653333pt;}
.y16e{bottom:617.413333pt;}
.y94{bottom:621.653333pt;}
.y41{bottom:622.453333pt;}
.yec{bottom:623.173333pt;}
.y6c{bottom:628.933333pt;}
.y141{bottom:629.333333pt;}
.yd{bottom:631.093333pt;}
.y16d{bottom:633.013333pt;}
.y93{bottom:637.333333pt;}
.yc1{bottom:637.413333pt;}
.y40{bottom:638.053333pt;}
.y6b{bottom:644.613333pt;}
.y140{bottom:644.933333pt;}
.ye9{bottom:647.413333pt;}
.y92{bottom:652.933333pt;}
.y3f{bottom:653.653333pt;}
.y16c{bottom:656.613333pt;}
.y13f{bottom:660.613333pt;}
.yc3{bottom:661.733333pt;}
.y108{bottom:666.933333pt;}
.y3e{bottom:669.333333pt;}
.yea{bottom:671.733333pt;}
.y16b{bottom:672.293333pt;}
.yc{bottom:672.613333pt;}
.y6a{bottom:676.213333pt;}
.y127{bottom:681.973333pt;}
.y91{bottom:684.613333pt;}
.y3d{bottom:684.933333pt;}
.yc2{bottom:686.053333pt;}
.y16a{bottom:687.893333pt;}
.y13e{bottom:691.813333pt;}
.ye7{bottom:696.053333pt;}
.y90{bottom:700.213333pt;}
.y3c{bottom:700.613333pt;}
.yb{bottom:704.453333pt;}
.y13d{bottom:707.493333pt;}
.y69{bottom:707.813333pt;}
.ybd{bottom:710.373333pt;}
.y169{bottom:711.573333pt;}
.y126{bottom:713.573333pt;}
.y8f{bottom:715.813333pt;}
.y3b{bottom:716.213333pt;}
.ye8{bottom:720.373333pt;}
.y13c{bottom:723.093333pt;}
.y68{bottom:723.493333pt;}
.y168{bottom:727.173333pt;}
.y8e{bottom:731.493333pt;}
.y3a{bottom:731.813333pt;}
.yc0{bottom:734.613333pt;}
.ya{bottom:736.453333pt;}
.y13b{bottom:738.693333pt;}
.y67{bottom:739.093333pt;}
.y125{bottom:742.213333pt;}
.ye5{bottom:744.613333pt;}
.y8d{bottom:747.093333pt;}
.y39{bottom:747.493333pt;}
.y167{bottom:750.773333pt;}
.y66{bottom:754.693333pt;}
.ybf{bottom:758.933333pt;}
.y13a{bottom:762.373333pt;}
.y38{bottom:763.093333pt;}
.y166{bottom:766.453333pt;}
.ye6{bottom:768.933333pt;}
.y9{bottom:771.813333pt;}
.y37{bottom:778.693333pt;}
.yb8{bottom:783.253333pt;}
.y65{bottom:786.373333pt;}
.y8{bottom:787.813333pt;}
.y165{bottom:790.053333pt;}
.ye3{bottom:793.253333pt;}
.y139{bottom:793.973333pt;}
.y36{bottom:794.373333pt;}
.y7{bottom:803.813333pt;}
.y101{bottom:804.613333pt;}
.y164{bottom:805.733333pt;}
.ybc{bottom:807.493333pt;}
.y35{bottom:809.973333pt;}
.ye4{bottom:817.493333pt;}
.y64{bottom:817.973333pt;}
.y6{bottom:819.813333pt;}
.y163{bottom:821.333333pt;}
.y34{bottom:825.653333pt;}
.ybb{bottom:831.813333pt;}
.y63{bottom:833.653333pt;}
.y8c{bottom:841.253333pt;}
.ydf{bottom:841.813333pt;}
.y162{bottom:844.933333pt;}
.y5{bottom:848.533333pt;}
.y62{bottom:849.253333pt;}
.yba{bottom:856.133333pt;}
.y8b{bottom:856.853333pt;}
.y33{bottom:857.253333pt;}
.y161{bottom:860.613333pt;}
.y61{bottom:864.853333pt;}
.y4{bottom:865.733333pt;}
.ye0{bottom:866.133333pt;}
.y8a{bottom:872.533333pt;}
.y32{bottom:872.853333pt;}
.yb4{bottom:880.453333pt;}
.y60{bottom:880.533333pt;}
.y160{bottom:884.213333pt;}
.y89{bottom:888.133333pt;}
.y31{bottom:888.533333pt;}
.ydc{bottom:890.453333pt;}
.y5f{bottom:896.133333pt;}
.y3{bottom:899.760000pt;}
.y15f{bottom:899.840000pt;}
.y138{bottom:903.840000pt;}
.y30{bottom:904.160000pt;}
.yb7{bottom:904.720000pt;}
.y5e{bottom:911.840000pt;}
.yde{bottom:914.720000pt;}
.y137{bottom:919.440000pt;}
.y2f{bottom:919.840000pt;}
.y15e{bottom:923.520000pt;}
.y5d{bottom:927.440000pt;}
.yb6{bottom:929.040000pt;}
.y136{bottom:935.040000pt;}
.y2e{bottom:935.440000pt;}
.y100{bottom:938.400000pt;}
.yda{bottom:939.040000pt;}
.y15d{bottom:939.120000pt;}
.y5c{bottom:943.040000pt;}
.y135{bottom:950.720000pt;}
.y2d{bottom:951.040000pt;}
.yb3{bottom:953.360000pt;}
.y5b{bottom:958.720000pt;}
.y15c{bottom:962.800000pt;}
.y2c{bottom:966.720000pt;}
.y5a{bottom:974.320000pt;}
.yb2{bottom:977.680000pt;}
.y15b{bottom:978.400000pt;}
.y2b{bottom:982.320000pt;}
.y59{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.yb1{bottom:1001.920000pt;}
.y15a{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.h10{height:23.626667pt;}
.hd{height:23.680000pt;}
.h15{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h17{height:36.034687pt;}
.h21{height:39.200000pt;}
.h14{height:39.280000pt;}
.h16{height:40.640625pt;}
.h1d{height:43.200000pt;}
.h1b{height:43.280000pt;}
.h1c{height:43.306667pt;}
.h7{height:45.246562pt;}
.hc{height:47.920000pt;}
.h19{height:47.946667pt;}
.h13{height:48.000000pt;}
.h5{height:49.581562pt;}
.h18{height:54.880000pt;}
.ha{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1a{height:65.781915pt;}
.h12{height:72.160000pt;}
.hf{height:72.186667pt;}
.he{height:72.240000pt;}
.h20{height:86.160000pt;}
.h11{height:96.480000pt;}
.h1e{height:133.066667pt;}
.h1f{height:137.040000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w17{width:26.880000pt;}
.w4{width:29.120000pt;}
.w5{width:31.840000pt;}
.wf{width:39.200000pt;}
.w2d{width:39.920000pt;}
.w28{width:40.000000pt;}
.w22{width:42.000000pt;}
.w24{width:45.280000pt;}
.w26{width:46.560000pt;}
.w20{width:47.200000pt;}
.w21{width:49.280000pt;}
.w23{width:49.306667pt;}
.w27{width:51.120000pt;}
.w1f{width:55.280000pt;}
.w2f{width:60.880000pt;}
.w10{width:61.040000pt;}
.w25{width:61.520000pt;}
.w11{width:69.680000pt;}
.w9{width:73.200000pt;}
.w2c{width:74.960000pt;}
.wa{width:75.040000pt;}
.w13{width:78.746667pt;}
.w1b{width:81.920000pt;}
.w12{width:82.800000pt;}
.w2e{width:83.680000pt;}
.wb{width:89.066667pt;}
.w1a{width:89.120000pt;}
.w1e{width:91.760000pt;}
.w1c{width:95.226667pt;}
.w16{width:96.426667pt;}
.w14{width:98.320000pt;}
.wd{width:99.360000pt;}
.w19{width:103.200000pt;}
.wc{width:103.280000pt;}
.w18{width:108.666667pt;}
.w1d{width:108.720000pt;}
.w15{width:113.200000pt;}
.w2a{width:115.520000pt;}
.we{width:124.026667pt;}
.w2b{width:145.280000pt;}
.w8{width:228.346667pt;}
.w7{width:298.026667pt;}
.w6{width:310.746667pt;}
.w29{width:401.413333pt;}
.w3{width:609.413333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.520000pt;}
.x19{left:55.680000pt;}
.x1{left:60.480000pt;}
.x24{left:65.200000pt;}
.x4{left:84.479988pt;}
.x2d{left:98.879988pt;}
.x2c{left:113.679988pt;}
.x5{left:132.479988pt;}
.x18{left:158.266667pt;}
.x1a{left:165.066667pt;}
.x29{left:166.266655pt;}
.x2{left:180.266655pt;}
.x11{left:185.866667pt;}
.x1e{left:221.066667pt;}
.x12{left:225.706667pt;}
.xf{left:233.946655pt;}
.x1b{left:268.986667pt;}
.x13{left:287.466667pt;}
.xa{left:290.186667pt;}
.x1f{left:318.906667pt;}
.x14{left:357.866667pt;}
.xb{left:364.026667pt;}
.x9{left:372.506667pt;}
.x10{left:396.986655pt;}
.x20{left:401.466667pt;}
.xc{left:439.786667pt;}
.x15{left:441.306667pt;}
.x25{left:467.253333pt;}
.x21{left:491.253333pt;}
.x16{left:520.693333pt;}
.xd{left:529.493333pt;}
.x1c{left:537.173333pt;}
.x27{left:542.853333pt;}
.x26{left:583.493333pt;}
.x22{left:599.333333pt;}
.x17{left:619.653333pt;}
.xe{left:633.493333pt;}
.x1d{left:646.533333pt;}
.x2a{left:648.053322pt;}
.x28{left:667.893333pt;}
.x7{left:671.173333pt;}
.x2b{left:674.053322pt;}
.x23{left:698.293333pt;}
.x8{left:701.013333pt;}
.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; }
  