
    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_92647ee9610fb2e9ede0e92e.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_b71527ab487da536650ffe17.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_70c360f5d44c43993c905ea4.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_e90d21b1aeae3d38561ce116.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_391cf6fd627b5040ef945668.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b5bf48891011ca2f46cf8030.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_1f507e42ae907c4748a93293.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_10d13529cfd7e5d0266b32c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_335ededbbb1a53a436af05e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d54b5c2f2f1bf62e619ccfef.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740723;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;}
.m3{transform:matrix(0.245145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245145,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246268,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250888,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;}
.v7{vertical-align:-17.157701px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:45.753870px;}
.v5{vertical-align:62.911571px;}
.ls26{letter-spacing:-0.291600px;}
.ls12{letter-spacing:-0.285600px;}
.ls14{letter-spacing:-0.267600px;}
.ls10{letter-spacing:-0.186600px;}
.ls15{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls25{letter-spacing:-0.066000px;}
.ls20{letter-spacing:-0.040320px;}
.ls24{letter-spacing:-0.038880px;}
.lsa{letter-spacing:-0.008400px;}
.ls28{letter-spacing:-0.007560px;}
.ls1e{letter-spacing:-0.000001px;}
.ls6{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.023040px;}
.ls17{letter-spacing:0.045360px;}
.ls1f{letter-spacing:0.048960px;}
.ls18{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.lse{letter-spacing:0.092160px;}
.ls13{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls21{letter-spacing:0.098400px;}
.ls16{letter-spacing:0.114480px;}
.ls11{letter-spacing:0.115800px;}
.ls7{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.154200px;}
.lsf{letter-spacing:0.173400px;}
.ls23{letter-spacing:0.173520px;}
.ls2a{letter-spacing:0.199200px;}
.ls22{letter-spacing:0.293520px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.425520px;}
.ls1d{letter-spacing:0.569064px;}
.ls5{letter-spacing:9.425520px;}
.ls1c{letter-spacing:31.661678px;}
.ls29{letter-spacing:47.726640px;}
.ls19{letter-spacing:63.566640px;}
.ls27{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wse{word-spacing:-16.296957px;}
.wsb{word-spacing:-15.840000px;}
.ws5{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws10{word-spacing:-13.587120px;}
.ws13{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.342200px;}
.wsf{word-spacing:-13.324800px;}
.wsd{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.218840px;}
.ws11{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.072800px;}
.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;}
._14{margin-left:-110.955995px;}
._a{margin-left:-3.545326px;}
._9{margin-left:-2.464800px;}
._1{margin-left:-1.383546px;}
._0{width:1.006896px;}
._2{width:2.440105px;}
._16{width:3.445512px;}
._8{width:4.449000px;}
._4{width:5.607306px;}
._3{width:6.924960px;}
._6{width:8.597400px;}
._7{width:10.520399px;}
._5{width:12.205146px;}
._b{width:14.669400px;}
._c{width:15.811199px;}
._11{width:16.835228px;}
._f{width:17.855640px;}
._10{width:19.063866px;}
._15{width:20.555214px;}
._18{width:22.153746px;}
._e{width:23.387466px;}
._d{width:24.589080px;}
._17{width:27.204120px;}
._13{width:56.031840px;}
._12{width:62.126040px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fsa{font-size:48.613487px;}
.fs2{font-size:54.000000px;}
.fs9{font-size:58.622146px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y92{bottom:2.859634px;}
.y44{bottom:7.830000px;}
.y41{bottom:7.920000px;}
.ydb{bottom:8.280000px;}
.y10b{bottom:8.550000px;}
.y10a{bottom:8.640000px;}
.ye0{bottom:9.450000px;}
.yf5{bottom:10.530000px;}
.y46{bottom:13.230000px;}
.y7e{bottom:17.640000px;}
.y80{bottom:25.470000px;}
.y43{bottom:26.550000px;}
.y40{bottom:26.640000px;}
.y3f{bottom:28.890000px;}
.y7c{bottom:30.690000px;}
.y45{bottom:31.950000px;}
.y91{bottom:33.243268px;}
.yf7{bottom:35.100000px;}
.y7d{bottom:35.190000px;}
.ye8{bottom:35.220000px;}
.y102{bottom:35.280000px;}
.yda{bottom:35.640000px;}
.y108{bottom:35.820000px;}
.y107{bottom:35.910000px;}
.ydf{bottom:36.720000px;}
.yfa{bottom:36.810000px;}
.yf3{bottom:37.710000px;}
.yf2{bottom:37.800000px;}
.yff{bottom:37.830000px;}
.y10d{bottom:37.890000px;}
.yfe{bottom:37.920000px;}
.yc5{bottom:40.500000px;}
.y3e{bottom:47.610000px;}
.yef{bottom:52.740000px;}
.y7b{bottom:52.830000px;}
.y8f{bottom:62.196839px;}
.yc4{bottom:62.550000px;}
.y8e{bottom:66.486255px;}
.ybc{bottom:67.860000px;}
.y89{bottom:73.277875px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.ybb{bottom:89.910000px;}
.y90{bottom:91.150454px;}
.y8c{bottom:92.222829px;}
.y83{bottom:95.130000px;}
.y1{bottom:101.640000px;}
.y8d{bottom:102.231470px;}
.yf6{bottom:111.090000px;}
.y144{bottom:112.800000px;}
.yba{bottom:115.680000px;}
.y82{bottom:117.180000px;}
.y8a{bottom:121.533916px;}
.yc1{bottom:122.490000px;}
.y28{bottom:129.540000px;}
.yc9{bottom:130.080000px;}
.y81{bottom:134.670000px;}
.yf8{bottom:138.450000px;}
.y143{bottom:139.350000px;}
.y5a{bottom:142.230000px;}
.ybf{bottom:143.040000px;}
.yc8{bottom:144.120000px;}
.yc0{bottom:144.540000px;}
.ye2{bottom:144.570000px;}
.yd7{bottom:146.520000px;}
.y27{bottom:147.180000px;}
.y142{bottom:156.990000px;}
.yc7{bottom:158.160000px;}
.y59{bottom:159.870000px;}
.y87{bottom:161.940000px;}
.y26{bottom:164.730000px;}
.yf1{bottom:165.810000px;}
.ybe{bottom:170.400000px;}
.y58{bottom:177.420000px;}
.y25{bottom:182.370000px;}
.y141{bottom:183.900000px;}
.y86{bottom:189.300000px;}
.y11d{bottom:192.090000px;}
.y169{bottom:195.060000px;}
.yf4{bottom:195.780000px;}
.ybd{bottom:197.760000px;}
.y24{bottom:199.920000px;}
.y11c{bottom:209.640000px;}
.y57{bottom:212.970000px;}
.y85{bottom:216.660000px;}
.y23{bottom:217.470000px;}
.y168{bottom:221.610000px;}
.yee{bottom:223.140000px;}
.yb9{bottom:225.030000px;}
.y11b{bottom:227.280000px;}
.y56{bottom:230.610000px;}
.y140{bottom:232.140000px;}
.y129{bottom:233.130000px;}
.y22{bottom:235.110000px;}
.y167{bottom:239.250000px;}
.y84{bottom:244.020000px;}
.y11a{bottom:244.830000px;}
.y55{bottom:248.160000px;}
.yf0{bottom:250.410000px;}
.y128{bottom:250.680000px;}
.y9b{bottom:252.390000px;}
.y21{bottom:252.660000px;}
.y13f{bottom:259.050000px;}
.y119{bottom:262.470000px;}
.y54{bottom:265.800000px;}
.y20{bottom:270.300000px;}
.y7a{bottom:271.290000px;}
.yb8{bottom:279.750000px;}
.y118{bottom:280.020000px;}
.y53{bottom:283.350000px;}
.y127{bottom:286.320000px;}
.y9f{bottom:286.470000px;}
.yad{bottom:286.500000px;}
.y166{bottom:292.440000px;}
.y13e{bottom:296.400000px;}
.y1f{bottom:297.120000px;}
.y117{bottom:297.570000px;}
.y7f{bottom:298.650000px;}
.y52{bottom:300.900000px;}
.yb7{bottom:307.020000px;}
.yc6{bottom:308.520000px;}
.yac{bottom:308.550000px;}
.y9e{bottom:308.610000px;}
.yc3{bottom:308.640000px;}
.y165{bottom:309.990000px;}
.yed{bottom:316.740000px;}
.y126{bottom:318.540000px;}
.y116{bottom:333.210000px;}
.yb6{bottom:334.380000px;}
.y51{bottom:336.540000px;}
.y13d{bottom:344.640000px;}
.y1e{bottom:345.720000px;}
.yec{bottom:352.290000px;}
.y50{bottom:354.090000px;}
.y164{bottom:354.180000px;}
.yb5{bottom:361.740000px;}
.y13c{bottom:362.280000px;}
.y79{bottom:364.980000px;}
.y115{bottom:365.430000px;}
.yeb{bottom:369.930000px;}
.y4f{bottom:371.730000px;}
.y13b{bottom:379.830000px;}
.y163{bottom:380.730000px;}
.y1d{bottom:382.800000px;}
.yb4{bottom:389.100000px;}
.y4e{bottom:389.280000px;}
.y13a{bottom:397.380000px;}
.y162{bottom:398.370000px;}
.y1c{bottom:400.350000px;}
.y78{bottom:400.530000px;}
.yea{bottom:405.480000px;}
.y4d{bottom:406.830000px;}
.y139{bottom:415.020000px;}
.yb3{bottom:416.370000px;}
.y1b{bottom:417.990000px;}
.y77{bottom:418.080000px;}
.ye9{bottom:423.030000px;}
.y4c{bottom:424.470000px;}
.y161{bottom:424.920000px;}
.y1a{bottom:435.540000px;}
.y76{bottom:435.720000px;}
.y138{bottom:441.930000px;}
.y4b{bottom:442.020000px;}
.y160{bottom:442.470000px;}
.yb2{bottom:443.730000px;}
.y19{bottom:453.090000px;}
.y75{bottom:453.270000px;}
.ye1{bottom:456.060000px;}
.y15f{bottom:469.110000px;}
.y74{bottom:470.850000px;}
.yb1{bottom:471.120000px;}
.y4a{bottom:477.690000px;}
.ye7{bottom:483.360000px;}
.y15e{bottom:486.690000px;}
.y73{bottom:488.490000px;}
.y18{bottom:488.760000px;}
.y137{bottom:490.200000px;}
.y49{bottom:495.240000px;}
.yb0{bottom:498.480000px;}
.y72{bottom:506.040000px;}
.y17{bottom:506.310000px;}
.y136{bottom:507.840000px;}
.ye6{bottom:510.720000px;}
.y48{bottom:512.790000px;}
.y15d{bottom:513.330000px;}
.y71{bottom:523.680000px;}
.y16{bottom:523.950000px;}
.y135{bottom:525.390000px;}
.yaf{bottom:525.750000px;}
.yc2{bottom:527.250000px;}
.y15c{bottom:530.880000px;}
.ye5{bottom:538.080000px;}
.y15{bottom:541.500000px;}
.y134{bottom:542.940000px;}
.y47{bottom:548.430000px;}
.yae{bottom:553.110000px;}
.y70{bottom:553.920000px;}
.y133{bottom:560.580000px;}
.y42{bottom:562.650000px;}
.ye4{bottom:565.440000px;}
.y6f{bottom:572.460000px;}
.y15b{bottom:575.070000px;}
.y14{bottom:577.050000px;}
.yab{bottom:580.470000px;}
.y6e{bottom:590.820000px;}
.y15a{bottom:592.620000px;}
.ye3{bottom:592.710000px;}
.y13{bottom:594.690000px;}
.y132{bottom:596.130000px;}
.y9d{bottom:607.740000px;}
.y6d{bottom:609.180000px;}
.y159{bottom:610.260000px;}
.y12{bottom:612.240000px;}
.y131{bottom:613.770000px;}
.yd6{bottom:620.070000px;}
.y6c{bottom:627.630000px;}
.y11{bottom:629.880000px;}
.y130{bottom:631.320000px;}
.yaa{bottom:635.100000px;}
.y158{bottom:636.810000px;}
.y114{bottom:643.290000px;}
.y6b{bottom:645.990000px;}
.y10{bottom:647.430000px;}
.y12f{bottom:648.870000px;}
.yde{bottom:648.960000px;}
.y157{bottom:654.360000px;}
.y113{bottom:660.930000px;}
.ya9{bottom:662.460000px;}
.y9c{bottom:663.960000px;}
.y6a{bottom:664.350000px;}
.yf{bottom:664.980000px;}
.y12e{bottom:666.510000px;}
.ydd{bottom:676.320000px;}
.y112{bottom:678.480000px;}
.y156{bottom:681.000000px;}
.y125{bottom:681.900000px;}
.y69{bottom:682.800000px;}
.y3d{bottom:689.100000px;}
.ya8{bottom:689.820000px;}
.ye{bottom:691.980000px;}
.y12d{bottom:693.420000px;}
.y111{bottom:696.030000px;}
.y155{bottom:698.550000px;}
.y124{bottom:699.540000px;}
.y68{bottom:701.070000px;}
.ydc{bottom:703.590000px;}
.y110{bottom:713.670000px;}
.ya7{bottom:717.090000px;}
.y154{bottom:725.190000px;}
.yd9{bottom:730.950000px;}
.y10f{bottom:731.220000px;}
.y123{bottom:734.640000px;}
.y67{bottom:737.610000px;}
.yd{bottom:738.690000px;}
.y12c{bottom:741.660000px;}
.ya6{bottom:744.450000px;}
.y153{bottom:751.740000px;}
.y122{bottom:752.280000px;}
.y66{bottom:755.160000px;}
.yd8{bottom:758.670000px;}
.y10c{bottom:764.160000px;}
.y152{bottom:769.290000px;}
.y121{bottom:769.830000px;}
.ya5{bottom:771.810000px;}
.y65{bottom:772.800000px;}
.yc{bottom:774.510000px;}
.yd0{bottom:786.030000px;}
.y120{bottom:787.470000px;}
.y64{bottom:790.350000px;}
.y10e{bottom:794.220000px;}
.y151{bottom:795.930000px;}
.y12b{bottom:798.900000px;}
.ya4{bottom:799.170000px;}
.yb{bottom:810.510000px;}
.yd5{bottom:813.390000px;}
.y150{bottom:813.480000px;}
.y63{bottom:820.680000px;}
.y106{bottom:821.580000px;}
.y11f{bottom:823.020000px;}
.y3c{bottom:823.290000px;}
.ya3{bottom:826.440000px;}
.y12a{bottom:834.090000px;}
.y62{bottom:839.130000px;}
.y14f{bottom:840.030000px;}
.yd4{bottom:840.750000px;}
.y3b{bottom:840.930000px;}
.ya{bottom:846.510000px;}
.y109{bottom:848.850000px;}
.ya2{bottom:853.800000px;}
.y11e{bottom:855.240000px;}
.y61{bottom:857.490000px;}
.y14e{bottom:857.670000px;}
.y3a{bottom:858.480000px;}
.yd3{bottom:868.020000px;}
.y9{bottom:868.290000px;}
.y14d{bottom:875.220000px;}
.y60{bottom:875.850000px;}
.y39{bottom:876.030000px;}
.y104{bottom:876.930000px;}
.ya1{bottom:881.160000px;}
.y8{bottom:886.290000px;}
.y38{bottom:893.670000px;}
.yd2{bottom:895.380000px;}
.y7{bottom:900.510000px;}
.y14c{bottom:901.860000px;}
.y5f{bottom:903.660000px;}
.y105{bottom:904.290000px;}
.ya0{bottom:908.430000px;}
.y37{bottom:911.220000px;}
.y6{bottom:922.290000px;}
.yd1{bottom:922.740000px;}
.y14b{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.y101{bottom:931.560000px;}
.y9a{bottom:935.790000px;}
.y14a{bottom:945.960000px;}
.y35{bottom:946.410000px;}
.ycf{bottom:950.100000px;}
.y5e{bottom:951.900000px;}
.y5{bottom:954.600000px;}
.y103{bottom:958.920000px;}
.y99{bottom:963.150000px;}
.y34{bottom:963.960000px;}
.y149{bottom:972.600000px;}
.y8b{bottom:973.585402px;}
.y88{bottom:973.585417px;}
.y4{bottom:973.950000px;}
.y33{bottom:981.600000px;}
.yfd{bottom:986.280000px;}
.y148{bottom:990.150000px;}
.y98{bottom:990.510000px;}
.yce{bottom:998.790000px;}
.y3{bottom:1012.230000px;}
.y5d{bottom:1013.940000px;}
.y100{bottom:1016.280000px;}
.y147{bottom:1016.820000px;}
.y32{bottom:1017.180000px;}
.y97{bottom:1017.810000px;}
.ycd{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.yfb{bottom:1043.640000px;}
.y96{bottom:1045.170000px;}
.ycc{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.y146{bottom:1060.920000px;}
.ycb{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.yfc{bottom:1071.000000px;}
.y95{bottom:1072.530000px;}
.y5c{bottom:1077.120000px;}
.y145{bottom:1078.560000px;}
.yca{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.yf9{bottom:1098.270000px;}
.y94{bottom:1099.890000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y93{bottom:1127.160000px;}
.y5b{bottom:1137.330000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h13{height:26.550000px;}
.h18{height:26.580000px;}
.h10{height:26.640000px;}
.h26{height:27.000000px;}
.h34{height:27.360000px;}
.h28{height:28.170000px;}
.h2e{height:29.250000px;}
.h31{height:29.280000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h22{height:40.539023px;}
.h12{height:41.743477px;}
.hf{height:44.190000px;}
.h17{height:50.702348px;}
.h7{height:50.902383px;}
.h23{height:53.910000px;}
.h2a{height:53.940000px;}
.h32{height:54.000000px;}
.h25{height:54.360000px;}
.h33{height:54.630000px;}
.h27{height:55.440000px;}
.h2f{height:55.530000px;}
.h5{height:55.779258px;}
.h2c{height:56.520000px;}
.h35{height:56.610000px;}
.h30{height:56.640000px;}
.h2d{height:59.797090px;}
.ha{height:60.960938px;}
.h15{height:61.141066px;}
.hd{height:62.703281px;}
.hc{height:68.582109px;}
.h4{height:71.019492px;}
.h2b{height:71.460000px;}
.he{height:71.550000px;}
.hb{height:71.613281px;}
.h20{height:81.270000px;}
.h1c{height:108.630000px;}
.h8{height:112.860000px;}
.h16{height:124.052638px;}
.h9{height:126.450000px;}
.h11{height:135.900000px;}
.h14{height:151.917229px;}
.h1d{height:163.260000px;}
.h29{height:163.290000px;}
.h24{height:165.240000px;}
.h21{height:327.240000px;}
.h1b{height:327.270000px;}
.h1a{height:327.330000px;}
.h1f{height:327.360000px;}
.h1e{height:545.970000px;}
.h19{height:682.680000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w17{width:40.950000px;}
.wa{width:41.850000px;}
.w1c{width:42.840000px;}
.w7{width:50.580000px;}
.w18{width:59.760000px;}
.w1a{width:59.790000px;}
.w1b{width:59.850000px;}
.wb{width:63.270000px;}
.wc{width:63.300000px;}
.wd{width:63.360000px;}
.w19{width:73.440000px;}
.w11{width:82.830000px;}
.w5{width:84.330000px;}
.w14{width:84.420000px;}
.w15{width:107.670000px;}
.w9{width:111.240000px;}
.w6{width:144.480000px;}
.w3{width:207.540000px;}
.w4{width:234.480000px;}
.w13{width:269.760000px;}
.w12{width:290.160000px;}
.we{width:318.365516px;}
.w8{width:362.100000px;}
.wf{width:413.400000px;}
.w10{width:558.690000px;}
.w16{width:562.170000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:4.230000px;}
.x16{left:33.030000px;}
.x17{left:41.940000px;}
.x18{left:64.710000px;}
.x1{left:68.040000px;}
.x23{left:73.889987px;}
.x35{left:88.019987px;}
.x22{left:89.819987px;}
.xb{left:95.039987px;}
.x19{left:97.769990px;}
.x36{left:111.239987px;}
.xc{left:122.039987px;}
.x1b{left:124.430096px;}
.x1a{left:150.259556px;}
.xd{left:153.810000px;}
.x5{left:178.470000px;}
.x2{left:202.799987px;}
.x8{left:204.870000px;}
.x25{left:208.110000px;}
.x4{left:225.660000px;}
.x9{left:230.160000px;}
.x1c{left:238.863814px;}
.x1d{left:249.625464px;}
.x20{left:251.419073px;}
.x27{left:262.290000px;}
.x1e{left:265.050499px;}
.x1f{left:286.573802px;}
.x33{left:288.839987px;}
.x31{left:292.979987px;}
.xe{left:299.100000px;}
.x28{left:304.050000px;}
.x21{left:309.890716px;}
.x24{left:327.539987px;}
.xf{left:350.400000px;}
.x29{left:364.530000px;}
.x11{left:392.970000px;}
.xa{left:429.599987px;}
.x7{left:433.200000px;}
.x2a{left:438.690000px;}
.x12{left:457.050000px;}
.x26{left:498.990000px;}
.x13{left:521.070000px;}
.x2b{left:559.770000px;}
.x14{left:585.150000px;}
.x2c{left:633.930000px;}
.x15{left:649.230000px;}
.x30{left:670.919987px;}
.x32{left:676.319987px;}
.x2d{left:694.500000px;}
.x34{left:696.479987px;}
.x10{left:713.220000px;}
.x2e{left:738.060000px;}
.x2f{left:781.620000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v7{vertical-align:-15.251290pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:40.670107pt;}
.v5{vertical-align:55.921397pt;}
.ls26{letter-spacing:-0.259200pt;}
.ls12{letter-spacing:-0.253867pt;}
.ls14{letter-spacing:-0.237867pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls15{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls25{letter-spacing:-0.058667pt;}
.ls20{letter-spacing:-0.035840pt;}
.ls24{letter-spacing:-0.034560pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls28{letter-spacing:-0.006720pt;}
.ls1e{letter-spacing:-0.000001pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.020480pt;}
.ls17{letter-spacing:0.040320pt;}
.ls1f{letter-spacing:0.043520pt;}
.ls18{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.081920pt;}
.ls13{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls21{letter-spacing:0.087467pt;}
.ls16{letter-spacing:0.101760pt;}
.ls11{letter-spacing:0.102933pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.137067pt;}
.lsf{letter-spacing:0.154133pt;}
.ls23{letter-spacing:0.154240pt;}
.ls2a{letter-spacing:0.177067pt;}
.ls22{letter-spacing:0.260907pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.378240pt;}
.ls1d{letter-spacing:0.505834pt;}
.ls5{letter-spacing:8.378240pt;}
.ls1c{letter-spacing:28.143714pt;}
.ls29{letter-spacing:42.423680pt;}
.ls19{letter-spacing:56.503680pt;}
.ls27{letter-spacing:71.863680pt;}
.wse{word-spacing:-14.486184pt;}
.wsb{word-spacing:-14.080000pt;}
.ws5{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws10{word-spacing:-12.077440pt;}
.ws13{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.859733pt;}
.wsf{word-spacing:-11.844267pt;}
.wsd{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.750080pt;}
.ws11{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.620267pt;}
.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;}
._14{margin-left:-98.627551pt;}
._a{margin-left:-3.151401pt;}
._9{margin-left:-2.190933pt;}
._1{margin-left:-1.229819pt;}
._0{width:0.895018pt;}
._2{width:2.168982pt;}
._16{width:3.062677pt;}
._8{width:3.954667pt;}
._4{width:4.984272pt;}
._3{width:6.155520pt;}
._6{width:7.642134pt;}
._7{width:9.351466pt;}
._5{width:10.849019pt;}
._b{width:13.039467pt;}
._c{width:14.054399pt;}
._11{width:14.964647pt;}
._f{width:15.871680pt;}
._10{width:16.945659pt;}
._15{width:18.271301pt;}
._18{width:19.692219pt;}
._e{width:20.788859pt;}
._d{width:21.856960pt;}
._17{width:24.181440pt;}
._13{width:49.806080pt;}
._12{width:55.223147pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fsa{font-size:43.211988pt;}
.fs2{font-size:48.000000pt;}
.fs9{font-size:52.108574pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:2.541897pt;}
.y44{bottom:6.960000pt;}
.y41{bottom:7.040000pt;}
.ydb{bottom:7.360000pt;}
.y10b{bottom:7.600000pt;}
.y10a{bottom:7.680000pt;}
.ye0{bottom:8.400000pt;}
.yf5{bottom:9.360000pt;}
.y46{bottom:11.760000pt;}
.y7e{bottom:15.680000pt;}
.y80{bottom:22.640000pt;}
.y43{bottom:23.600000pt;}
.y40{bottom:23.680000pt;}
.y3f{bottom:25.680000pt;}
.y7c{bottom:27.280000pt;}
.y45{bottom:28.400000pt;}
.y91{bottom:29.549572pt;}
.yf7{bottom:31.200000pt;}
.y7d{bottom:31.280000pt;}
.ye8{bottom:31.306667pt;}
.y102{bottom:31.360000pt;}
.yda{bottom:31.680000pt;}
.y108{bottom:31.840000pt;}
.y107{bottom:31.920000pt;}
.ydf{bottom:32.640000pt;}
.yfa{bottom:32.720000pt;}
.yf3{bottom:33.520000pt;}
.yf2{bottom:33.600000pt;}
.yff{bottom:33.626667pt;}
.y10d{bottom:33.680000pt;}
.yfe{bottom:33.706667pt;}
.yc5{bottom:36.000000pt;}
.y3e{bottom:42.320000pt;}
.yef{bottom:46.880000pt;}
.y7b{bottom:46.960000pt;}
.y8f{bottom:55.286079pt;}
.yc4{bottom:55.600000pt;}
.y8e{bottom:59.098894pt;}
.ybc{bottom:60.320000pt;}
.y89{bottom:65.135889pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.ybb{bottom:79.920000pt;}
.y90{bottom:81.022626pt;}
.y8c{bottom:81.975848pt;}
.y83{bottom:84.560000pt;}
.y1{bottom:90.346667pt;}
.y8d{bottom:90.872418pt;}
.yf6{bottom:98.746667pt;}
.y144{bottom:100.266667pt;}
.yba{bottom:102.826667pt;}
.y82{bottom:104.160000pt;}
.y8a{bottom:108.030148pt;}
.yc1{bottom:108.880000pt;}
.y28{bottom:115.146667pt;}
.yc9{bottom:115.626667pt;}
.y81{bottom:119.706667pt;}
.yf8{bottom:123.066667pt;}
.y143{bottom:123.866667pt;}
.y5a{bottom:126.426667pt;}
.ybf{bottom:127.146667pt;}
.yc8{bottom:128.106667pt;}
.yc0{bottom:128.480000pt;}
.ye2{bottom:128.506667pt;}
.yd7{bottom:130.240000pt;}
.y27{bottom:130.826667pt;}
.y142{bottom:139.546667pt;}
.yc7{bottom:140.586667pt;}
.y59{bottom:142.106667pt;}
.y87{bottom:143.946667pt;}
.y26{bottom:146.426667pt;}
.yf1{bottom:147.386667pt;}
.ybe{bottom:151.466667pt;}
.y58{bottom:157.706667pt;}
.y25{bottom:162.106667pt;}
.y141{bottom:163.466667pt;}
.y86{bottom:168.266667pt;}
.y11d{bottom:170.746667pt;}
.y169{bottom:173.386667pt;}
.yf4{bottom:174.026667pt;}
.ybd{bottom:175.786667pt;}
.y24{bottom:177.706667pt;}
.y11c{bottom:186.346667pt;}
.y57{bottom:189.306667pt;}
.y85{bottom:192.586667pt;}
.y23{bottom:193.306667pt;}
.y168{bottom:196.986667pt;}
.yee{bottom:198.346667pt;}
.yb9{bottom:200.026667pt;}
.y11b{bottom:202.026667pt;}
.y56{bottom:204.986667pt;}
.y140{bottom:206.346667pt;}
.y129{bottom:207.226667pt;}
.y22{bottom:208.986667pt;}
.y167{bottom:212.666667pt;}
.y84{bottom:216.906667pt;}
.y11a{bottom:217.626667pt;}
.y55{bottom:220.586667pt;}
.yf0{bottom:222.586667pt;}
.y128{bottom:222.826667pt;}
.y9b{bottom:224.346667pt;}
.y21{bottom:224.586667pt;}
.y13f{bottom:230.266667pt;}
.y119{bottom:233.306667pt;}
.y54{bottom:236.266667pt;}
.y20{bottom:240.266667pt;}
.y7a{bottom:241.146667pt;}
.yb8{bottom:248.666667pt;}
.y118{bottom:248.906667pt;}
.y53{bottom:251.866667pt;}
.y127{bottom:254.506667pt;}
.y9f{bottom:254.640000pt;}
.yad{bottom:254.666667pt;}
.y166{bottom:259.946667pt;}
.y13e{bottom:263.466667pt;}
.y1f{bottom:264.106667pt;}
.y117{bottom:264.506667pt;}
.y7f{bottom:265.466667pt;}
.y52{bottom:267.466667pt;}
.yb7{bottom:272.906667pt;}
.yc6{bottom:274.240000pt;}
.yac{bottom:274.266667pt;}
.y9e{bottom:274.320000pt;}
.yc3{bottom:274.346667pt;}
.y165{bottom:275.546667pt;}
.yed{bottom:281.546667pt;}
.y126{bottom:283.146667pt;}
.y116{bottom:296.186667pt;}
.yb6{bottom:297.226667pt;}
.y51{bottom:299.146667pt;}
.y13d{bottom:306.346667pt;}
.y1e{bottom:307.306667pt;}
.yec{bottom:313.146667pt;}
.y50{bottom:314.746667pt;}
.y164{bottom:314.826667pt;}
.yb5{bottom:321.546667pt;}
.y13c{bottom:322.026667pt;}
.y79{bottom:324.426667pt;}
.y115{bottom:324.826667pt;}
.yeb{bottom:328.826667pt;}
.y4f{bottom:330.426667pt;}
.y13b{bottom:337.626667pt;}
.y163{bottom:338.426667pt;}
.y1d{bottom:340.266667pt;}
.yb4{bottom:345.866667pt;}
.y4e{bottom:346.026667pt;}
.y13a{bottom:353.226667pt;}
.y162{bottom:354.106667pt;}
.y1c{bottom:355.866667pt;}
.y78{bottom:356.026667pt;}
.yea{bottom:360.426667pt;}
.y4d{bottom:361.626667pt;}
.y139{bottom:368.906667pt;}
.yb3{bottom:370.106667pt;}
.y1b{bottom:371.546667pt;}
.y77{bottom:371.626667pt;}
.ye9{bottom:376.026667pt;}
.y4c{bottom:377.306667pt;}
.y161{bottom:377.706667pt;}
.y1a{bottom:387.146667pt;}
.y76{bottom:387.306667pt;}
.y138{bottom:392.826667pt;}
.y4b{bottom:392.906667pt;}
.y160{bottom:393.306667pt;}
.yb2{bottom:394.426667pt;}
.y19{bottom:402.746667pt;}
.y75{bottom:402.906667pt;}
.ye1{bottom:405.386667pt;}
.y15f{bottom:416.986667pt;}
.y74{bottom:418.533333pt;}
.yb1{bottom:418.773333pt;}
.y4a{bottom:424.613333pt;}
.ye7{bottom:429.653333pt;}
.y15e{bottom:432.613333pt;}
.y73{bottom:434.213333pt;}
.y18{bottom:434.453333pt;}
.y137{bottom:435.733333pt;}
.y49{bottom:440.213333pt;}
.yb0{bottom:443.093333pt;}
.y72{bottom:449.813333pt;}
.y17{bottom:450.053333pt;}
.y136{bottom:451.413333pt;}
.ye6{bottom:453.973333pt;}
.y48{bottom:455.813333pt;}
.y15d{bottom:456.293333pt;}
.y71{bottom:465.493333pt;}
.y16{bottom:465.733333pt;}
.y135{bottom:467.013333pt;}
.yaf{bottom:467.333333pt;}
.yc2{bottom:468.666667pt;}
.y15c{bottom:471.893333pt;}
.ye5{bottom:478.293333pt;}
.y15{bottom:481.333333pt;}
.y134{bottom:482.613333pt;}
.y47{bottom:487.493333pt;}
.yae{bottom:491.653333pt;}
.y70{bottom:492.373333pt;}
.y133{bottom:498.293333pt;}
.y42{bottom:500.133333pt;}
.ye4{bottom:502.613333pt;}
.y6f{bottom:508.853333pt;}
.y15b{bottom:511.173333pt;}
.y14{bottom:512.933333pt;}
.yab{bottom:515.973333pt;}
.y6e{bottom:525.173333pt;}
.y15a{bottom:526.773333pt;}
.ye3{bottom:526.853333pt;}
.y13{bottom:528.613333pt;}
.y132{bottom:529.893333pt;}
.y9d{bottom:540.213333pt;}
.y6d{bottom:541.493333pt;}
.y159{bottom:542.453333pt;}
.y12{bottom:544.213333pt;}
.y131{bottom:545.573333pt;}
.yd6{bottom:551.173333pt;}
.y6c{bottom:557.893333pt;}
.y11{bottom:559.893333pt;}
.y130{bottom:561.173333pt;}
.yaa{bottom:564.533333pt;}
.y158{bottom:566.053333pt;}
.y114{bottom:571.813333pt;}
.y6b{bottom:574.213333pt;}
.y10{bottom:575.493333pt;}
.y12f{bottom:576.773333pt;}
.yde{bottom:576.853333pt;}
.y157{bottom:581.653333pt;}
.y113{bottom:587.493333pt;}
.ya9{bottom:588.853333pt;}
.y9c{bottom:590.186667pt;}
.y6a{bottom:590.533333pt;}
.yf{bottom:591.093333pt;}
.y12e{bottom:592.453333pt;}
.ydd{bottom:601.173333pt;}
.y112{bottom:603.093333pt;}
.y156{bottom:605.333333pt;}
.y125{bottom:606.133333pt;}
.y69{bottom:606.933333pt;}
.y3d{bottom:612.533333pt;}
.ya8{bottom:613.173333pt;}
.ye{bottom:615.093333pt;}
.y12d{bottom:616.373333pt;}
.y111{bottom:618.693333pt;}
.y155{bottom:620.933333pt;}
.y124{bottom:621.813333pt;}
.y68{bottom:623.173333pt;}
.ydc{bottom:625.413333pt;}
.y110{bottom:634.373333pt;}
.ya7{bottom:637.413333pt;}
.y154{bottom:644.613333pt;}
.yd9{bottom:649.733333pt;}
.y10f{bottom:649.973333pt;}
.y123{bottom:653.013333pt;}
.y67{bottom:655.653333pt;}
.yd{bottom:656.613333pt;}
.y12c{bottom:659.253333pt;}
.ya6{bottom:661.733333pt;}
.y153{bottom:668.213333pt;}
.y122{bottom:668.693333pt;}
.y66{bottom:671.253333pt;}
.yd8{bottom:674.373333pt;}
.y10c{bottom:679.253333pt;}
.y152{bottom:683.813333pt;}
.y121{bottom:684.293333pt;}
.ya5{bottom:686.053333pt;}
.y65{bottom:686.933333pt;}
.yc{bottom:688.453333pt;}
.yd0{bottom:698.693333pt;}
.y120{bottom:699.973333pt;}
.y64{bottom:702.533333pt;}
.y10e{bottom:705.973333pt;}
.y151{bottom:707.493333pt;}
.y12b{bottom:710.133333pt;}
.ya4{bottom:710.373333pt;}
.yb{bottom:720.453333pt;}
.yd5{bottom:723.013333pt;}
.y150{bottom:723.093333pt;}
.y63{bottom:729.493333pt;}
.y106{bottom:730.293333pt;}
.y11f{bottom:731.573333pt;}
.y3c{bottom:731.813333pt;}
.ya3{bottom:734.613333pt;}
.y12a{bottom:741.413333pt;}
.y62{bottom:745.893333pt;}
.y14f{bottom:746.693333pt;}
.yd4{bottom:747.333333pt;}
.y3b{bottom:747.493333pt;}
.ya{bottom:752.453333pt;}
.y109{bottom:754.533333pt;}
.ya2{bottom:758.933333pt;}
.y11e{bottom:760.213333pt;}
.y61{bottom:762.213333pt;}
.y14e{bottom:762.373333pt;}
.y3a{bottom:763.093333pt;}
.yd3{bottom:771.573333pt;}
.y9{bottom:771.813333pt;}
.y14d{bottom:777.973333pt;}
.y60{bottom:778.533333pt;}
.y39{bottom:778.693333pt;}
.y104{bottom:779.493333pt;}
.ya1{bottom:783.253333pt;}
.y8{bottom:787.813333pt;}
.y38{bottom:794.373333pt;}
.yd2{bottom:795.893333pt;}
.y7{bottom:800.453333pt;}
.y14c{bottom:801.653333pt;}
.y5f{bottom:803.253333pt;}
.y105{bottom:803.813333pt;}
.ya0{bottom:807.493333pt;}
.y37{bottom:809.973333pt;}
.y6{bottom:819.813333pt;}
.yd1{bottom:820.213333pt;}
.y14b{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.y101{bottom:828.053333pt;}
.y9a{bottom:831.813333pt;}
.y14a{bottom:840.853333pt;}
.y35{bottom:841.253333pt;}
.ycf{bottom:844.533333pt;}
.y5e{bottom:846.133333pt;}
.y5{bottom:848.533333pt;}
.y103{bottom:852.373333pt;}
.y99{bottom:856.133333pt;}
.y34{bottom:856.853333pt;}
.y149{bottom:864.533333pt;}
.y8b{bottom:865.409246pt;}
.y88{bottom:865.409259pt;}
.y4{bottom:865.733333pt;}
.y33{bottom:872.533333pt;}
.yfd{bottom:876.693333pt;}
.y148{bottom:880.133333pt;}
.y98{bottom:880.453333pt;}
.yce{bottom:887.813333pt;}
.y3{bottom:899.760000pt;}
.y5d{bottom:901.280000pt;}
.y100{bottom:903.360000pt;}
.y147{bottom:903.840000pt;}
.y32{bottom:904.160000pt;}
.y97{bottom:904.720000pt;}
.ycd{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.yfb{bottom:927.680000pt;}
.y96{bottom:929.040000pt;}
.ycc{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.y146{bottom:943.040000pt;}
.ycb{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.yfc{bottom:952.000000pt;}
.y95{bottom:953.360000pt;}
.y5c{bottom:957.440000pt;}
.y145{bottom:958.720000pt;}
.yca{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.yf9{bottom:976.240000pt;}
.y94{bottom:977.680000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y93{bottom:1001.920000pt;}
.y5b{bottom:1010.960000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h13{height:23.600000pt;}
.h18{height:23.626667pt;}
.h10{height:23.680000pt;}
.h26{height:24.000000pt;}
.h34{height:24.320000pt;}
.h28{height:25.040000pt;}
.h2e{height:26.000000pt;}
.h31{height:26.026667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h22{height:36.034687pt;}
.h12{height:37.105312pt;}
.hf{height:39.280000pt;}
.h17{height:45.068754pt;}
.h7{height:45.246562pt;}
.h23{height:47.920000pt;}
.h2a{height:47.946667pt;}
.h32{height:48.000000pt;}
.h25{height:48.320000pt;}
.h33{height:48.560000pt;}
.h27{height:49.280000pt;}
.h2f{height:49.360000pt;}
.h5{height:49.581562pt;}
.h2c{height:50.240000pt;}
.h35{height:50.320000pt;}
.h30{height:50.346667pt;}
.h2d{height:53.152969pt;}
.ha{height:54.187500pt;}
.h15{height:54.347615pt;}
.hd{height:55.736250pt;}
.hc{height:60.961875pt;}
.h4{height:63.128437pt;}
.h2b{height:63.520000pt;}
.he{height:63.600000pt;}
.hb{height:63.656250pt;}
.h20{height:72.240000pt;}
.h1c{height:96.560000pt;}
.h8{height:100.320000pt;}
.h16{height:110.269011pt;}
.h9{height:112.400000pt;}
.h11{height:120.800000pt;}
.h14{height:135.037537pt;}
.h1d{height:145.120000pt;}
.h29{height:145.146667pt;}
.h24{height:146.880000pt;}
.h21{height:290.880000pt;}
.h1b{height:290.906667pt;}
.h1a{height:290.960000pt;}
.h1f{height:290.986667pt;}
.h1e{height:485.306667pt;}
.h19{height:606.826667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w17{width:36.400000pt;}
.wa{width:37.200000pt;}
.w1c{width:38.080000pt;}
.w7{width:44.960000pt;}
.w18{width:53.120000pt;}
.w1a{width:53.146667pt;}
.w1b{width:53.200000pt;}
.wb{width:56.240000pt;}
.wc{width:56.266667pt;}
.wd{width:56.320000pt;}
.w19{width:65.280000pt;}
.w11{width:73.626667pt;}
.w5{width:74.960000pt;}
.w14{width:75.040000pt;}
.w15{width:95.706667pt;}
.w9{width:98.880000pt;}
.w6{width:128.426667pt;}
.w3{width:184.480000pt;}
.w4{width:208.426667pt;}
.w13{width:239.786667pt;}
.w12{width:257.920000pt;}
.we{width:282.991570pt;}
.w8{width:321.866667pt;}
.wf{width:367.466667pt;}
.w10{width:496.613333pt;}
.w16{width:499.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.760000pt;}
.x16{left:29.360000pt;}
.x17{left:37.280000pt;}
.x18{left:57.520000pt;}
.x1{left:60.480000pt;}
.x23{left:65.679988pt;}
.x35{left:78.239988pt;}
.x22{left:79.839988pt;}
.xb{left:84.479988pt;}
.x19{left:86.906658pt;}
.x36{left:98.879988pt;}
.xc{left:108.479988pt;}
.x1b{left:110.604530pt;}
.x1a{left:133.564050pt;}
.xd{left:136.720000pt;}
.x5{left:158.640000pt;}
.x2{left:180.266655pt;}
.x8{left:182.106667pt;}
.x25{left:184.986667pt;}
.x4{left:200.586667pt;}
.x9{left:204.586667pt;}
.x1c{left:212.323390pt;}
.x1d{left:221.889301pt;}
.x20{left:223.483621pt;}
.x27{left:233.146667pt;}
.x1e{left:235.600444pt;}
.x1f{left:254.732268pt;}
.x33{left:256.746655pt;}
.x31{left:260.426655pt;}
.xe{left:265.866667pt;}
.x28{left:270.266667pt;}
.x21{left:275.458414pt;}
.x24{left:291.146655pt;}
.xf{left:311.466667pt;}
.x29{left:324.026667pt;}
.x11{left:349.306667pt;}
.xa{left:381.866655pt;}
.x7{left:385.066667pt;}
.x2a{left:389.946667pt;}
.x12{left:406.266667pt;}
.x26{left:443.546667pt;}
.x13{left:463.173333pt;}
.x2b{left:497.573333pt;}
.x14{left:520.133333pt;}
.x2c{left:563.493333pt;}
.x15{left:577.093333pt;}
.x30{left:596.373322pt;}
.x32{left:601.173322pt;}
.x2d{left:617.333333pt;}
.x34{left:619.093322pt;}
.x10{left:633.973333pt;}
.x2e{left:656.053333pt;}
.x2f{left:694.773333pt;}
.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; }
  