
    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_863dd6367735e83645ff5c87.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_c4549880e7e85bcefc555ba8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_91a48c82e134de0bf0bae7a3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_9ecc1e02ad7bd7d4e2d40f9a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_8c424aa95994efe5f724fd38.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933105;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_2917fbc97dc7667dbcfcd6b1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_ddb4b0c343f30083c1364a11.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8ee5d67809363067d5327dc3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_da0957f7a5c6232d6fb70444.woff')format("woff");}.ff9{font-family:ff9;line-height:1.139160;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_fb4a0206a50e4a4191047f9f.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.vc{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-14.400000px;}
.v7{vertical-align:-10.080000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.400000px;}
.vd{vertical-align:18.720000px;}
.va{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v8{vertical-align:36.000000px;}
.v9{vertical-align:42.480000px;}
.v6{vertical-align:57.000000px;}
.vb{vertical-align:62.640000px;}
.ls32{letter-spacing:-12.780000px;}
.ls9{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.263400px;}
.lse{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.107400px;}
.ls2e{letter-spacing:-0.078600px;}
.ls25{letter-spacing:-0.072000px;}
.ls33{letter-spacing:-0.058320px;}
.ls36{letter-spacing:-0.041040px;}
.ls2f{letter-spacing:-0.000006px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.lsd{letter-spacing:0.144000px;}
.ls31{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.220320px;}
.ls15{letter-spacing:0.233280px;}
.ls1{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.320400px;}
.ls3{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.373200px;}
.ls27{letter-spacing:0.447840px;}
.ls30{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.816480px;}
.ls1e{letter-spacing:0.936000px;}
.ls16{letter-spacing:1.228320px;}
.ls2b{letter-spacing:1.792800px;}
.ls2a{letter-spacing:2.801520px;}
.ls12{letter-spacing:3.939120px;}
.ls19{letter-spacing:4.123200px;}
.ls1b{letter-spacing:4.147200px;}
.ls1c{letter-spacing:4.376880px;}
.ls29{letter-spacing:11.880000px;}
.ls1d{letter-spacing:16.616880px;}
.ls21{letter-spacing:16.992000px;}
.ls28{letter-spacing:19.656000px;}
.ls11{letter-spacing:19.894320px;}
.ls20{letter-spacing:20.376000px;}
.ls2d{letter-spacing:20.556000px;}
.ls1f{letter-spacing:23.482800px;}
.ls10{letter-spacing:23.587200px;}
.ls1a{letter-spacing:24.005520px;}
.ls13{letter-spacing:24.214320px;}
.ls18{letter-spacing:24.307200px;}
.ls14{letter-spacing:26.856000px;}
.ls35{letter-spacing:32.346720px;}
.ls34{letter-spacing:63.306720px;}
.lsb{letter-spacing:149.880000px;}
.ls17{letter-spacing:199.728000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-16.488000px;}
.ws5{word-spacing:-16.272000px;}
.ws1a{word-spacing:-16.271994px;}
.wsa{word-spacing:-16.128000px;}
.wsb{word-spacing:-16.056000px;}
.wsd{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.768000px;}
.ws18{word-spacing:-15.552000px;}
.ws8{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.ws1c{word-spacing:-13.505760px;}
.ws1e{word-spacing:-13.464720px;}
.ws1d{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.398360px;}
.ws0{word-spacing:-11.700000px;}
.ws10{word-spacing:-11.246400px;}
.ws16{word-spacing:-11.167800px;}
.ws1{word-spacing:-10.924560px;}
.ws2{word-spacing:-10.902240px;}
.ws12{word-spacing:-10.638840px;}
.ws6{word-spacing:-9.720000px;}
.ws14{word-spacing:-3.456000px;}
.ws9{word-spacing:0.000000px;}
.wsf{word-spacing:0.408000px;}
.ws15{word-spacing:0.984000px;}
.ws11{word-spacing:3.816000px;}
.wse{word-spacing:4.536000px;}
.ws13{word-spacing:11.721600px;}
.ws17{word-spacing:91.792680px;}
.ws19{word-spacing:102.568440px;}
.ws1b{word-spacing:117.712440px;}
._16{margin-left:-208.080000px;}
._18{margin-left:-31.236480px;}
._17{margin-left:-9.216000px;}
._15{margin-left:-5.437440px;}
._d{margin-left:-3.786720px;}
._a{margin-left:-2.501280px;}
._0{margin-left:-1.254240px;}
._1{width:1.407360px;}
._3{width:2.675520px;}
._2{width:3.792240px;}
._6{width:5.281440px;}
._9{width:6.847200px;}
._8{width:7.920000px;}
._11{width:9.216000px;}
._12{width:10.224000px;}
._13{width:11.304000px;}
._14{width:12.456000px;}
._7{width:13.896000px;}
._4{width:15.444000px;}
._5{width:16.706880px;}
._10{width:18.170400px;}
._c{width:19.314720px;}
._b{width:20.376000px;}
._f{width:21.960000px;}
._e{width:23.112000px;}
._1f{width:24.295920px;}
._1b{width:25.740000px;}
._1d{width:46.637520px;}
._1e{width:47.865360px;}
._19{width:73.422720px;}
._1c{width:74.574000px;}
._1a{width:199.728000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y82{bottom:0.180000px;}
.y7{bottom:2.880000px;}
.y1e{bottom:3.240000px;}
.y18{bottom:3.285000px;}
.y1b{bottom:3.420000px;}
.y30{bottom:3.600000px;}
.y7b{bottom:3.960000px;}
.yf{bottom:4.500000px;}
.y7f{bottom:4.530000px;}
.y15{bottom:5.580000px;}
.y11{bottom:6.480000px;}
.y1d{bottom:7.020000px;}
.y17{bottom:7.065000px;}
.y1a{bottom:7.200000px;}
.ya{bottom:7.740000px;}
.yd{bottom:11.700000px;}
.y20{bottom:12.420000px;}
.y32{bottom:12.600000px;}
.y2e{bottom:15.660000px;}
.yc9{bottom:22.140000px;}
.y88{bottom:22.320000px;}
.yc{bottom:26.460000px;}
.y25{bottom:27.000000px;}
.y31{bottom:29.160000px;}
.y14{bottom:30.420000px;}
.y5{bottom:31.320000px;}
.y9{bottom:31.860000px;}
.y2d{bottom:32.220000px;}
.yb{bottom:41.040000px;}
.y24{bottom:41.580000px;}
.y2c{bottom:48.780000px;}
.y4{bottom:51.480000px;}
.y23{bottom:56.340000px;}
.y2b{bottom:65.340000px;}
.y22{bottom:71.280000px;}
.y2a{bottom:81.720000px;}
.y29{bottom:98.280000px;}
.y49{bottom:111.096000px;}
.y97{bottom:113.616000px;}
.y28{bottom:114.660000px;}
.y15c{bottom:115.056000px;}
.yf2{bottom:115.416000px;}
.y109{bottom:116.496000px;}
.y12c{bottom:124.596000px;}
.y78{bottom:126.936000px;}
.y48{bottom:129.096000px;}
.y27{bottom:131.220000px;}
.y15b{bottom:133.236000px;}
.y96{bottom:135.756000px;}
.yf1{bottom:137.376000px;}
.y108{bottom:138.456000px;}
.y12b{bottom:146.556000px;}
.yc5{bottom:147.276000px;}
.y47{bottom:147.456000px;}
.y77{bottom:148.896000px;}
.y15a{bottom:151.590000px;}
.y95{bottom:157.710000px;}
.yf0{bottom:159.330000px;}
.y107{bottom:160.410000px;}
.y12a{bottom:168.510000px;}
.yc4{bottom:169.230000px;}
.y159{bottom:169.950000px;}
.y46{bottom:170.850000px;}
.y94{bottom:179.670000px;}
.yef{bottom:181.290000px;}
.y106{bottom:182.370000px;}
.y45{bottom:184.530000px;}
.y158{bottom:188.310000px;}
.y129{bottom:190.470000px;}
.yc3{bottom:191.190000px;}
.y76{bottom:192.810000px;}
.y93{bottom:201.630000px;}
.yee{bottom:203.250000px;}
.y105{bottom:204.510000px;}
.y157{bottom:206.490000px;}
.y128{bottom:212.610000px;}
.yc2{bottom:213.150000px;}
.y75{bottom:214.770000px;}
.y92{bottom:223.590000px;}
.y156{bottom:224.850000px;}
.yed{bottom:225.390000px;}
.y104{bottom:226.470000px;}
.y127{bottom:234.570000px;}
.yc1{bottom:235.290000px;}
.y74{bottom:236.730000px;}
.yec{bottom:242.670000px;}
.y155{bottom:243.210000px;}
.y91{bottom:245.550000px;}
.y44{bottom:246.810000px;}
.y103{bottom:248.430000px;}
.yeb{bottom:251.670000px;}
.y126{bottom:256.530000px;}
.yc0{bottom:257.250000px;}
.y73{bottom:258.690000px;}
.y154{bottom:261.390000px;}
.y83{bottom:265.170000px;}
.y90{bottom:267.510000px;}
.y43{bottom:268.770000px;}
.y102{bottom:270.390000px;}
.y125{bottom:278.490000px;}
.ybf{bottom:279.210000px;}
.y153{bottom:279.750000px;}
.y72{bottom:280.650000px;}
.y81{bottom:283.350000px;}
.y8f{bottom:289.470000px;}
.y42{bottom:290.730000px;}
.y101{bottom:292.350000px;}
.y152{bottom:298.110000px;}
.y124{bottom:300.450000px;}
.ybe{bottom:301.170000px;}
.y71{bottom:302.610000px;}
.y8e{bottom:311.430000px;}
.y41{bottom:312.690000px;}
.y100{bottom:314.310000px;}
.y151{bottom:316.470000px;}
.y123{bottom:322.410000px;}
.ybd{bottom:323.130000px;}
.y70{bottom:324.570000px;}
.y8d{bottom:333.390000px;}
.y40{bottom:334.650000px;}
.yff{bottom:336.270000px;}
.yea{bottom:341.895000px;}
.y122{bottom:344.415000px;}
.ybc{bottom:345.135000px;}
.y6f{bottom:346.575000px;}
.ye9{bottom:350.895000px;}
.y150{bottom:353.055000px;}
.y8c{bottom:355.395000px;}
.y3f{bottom:356.655000px;}
.yfe{bottom:358.275000px;}
.y121{bottom:366.375000px;}
.ybb{bottom:367.095000px;}
.y6e{bottom:368.715000px;}
.y14f{bottom:371.415000px;}
.y8b{bottom:377.355000px;}
.y3e{bottom:378.615000px;}
.yfd{bottom:380.235000px;}
.y120{bottom:388.335000px;}
.yba{bottom:389.055000px;}
.y14e{bottom:389.775000px;}
.y6d{bottom:390.675000px;}
.ye8{bottom:394.635000px;}
.y8a{bottom:399.315000px;}
.y3d{bottom:400.575000px;}
.yfc{bottom:402.195000px;}
.ye7{bottom:403.635000px;}
.y14d{bottom:407.955000px;}
.y11f{bottom:410.295000px;}
.yb9{bottom:411.015000px;}
.y6c{bottom:412.635000px;}
.y89{bottom:416.415000px;}
.y3c{bottom:422.535000px;}
.yfb{bottom:424.155000px;}
.y14c{bottom:426.315000px;}
.ye6{bottom:430.095000px;}
.y11e{bottom:432.255000px;}
.yb8{bottom:432.975000px;}
.y6b{bottom:434.595000px;}
.y87{bottom:436.575000px;}
.y3b{bottom:444.495000px;}
.y14b{bottom:444.675000px;}
.yfa{bottom:446.115000px;}
.ye5{bottom:452.055000px;}
.y11d{bottom:454.215000px;}
.yb7{bottom:454.935000px;}
.y6a{bottom:456.555000px;}
.y14a{bottom:462.855000px;}
.y3a{bottom:466.455000px;}
.yf9{bottom:468.075000px;}
.y86{bottom:473.295000px;}
.ye4{bottom:474.015000px;}
.y11c{bottom:476.175000px;}
.yb6{bottom:476.895000px;}
.y69{bottom:478.515000px;}
.y149{bottom:481.215000px;}
.y39{bottom:488.415000px;}
.yf8{bottom:490.035000px;}
.ye3{bottom:495.975000px;}
.y11b{bottom:498.135000px;}
.yb5{bottom:498.855000px;}
.y148{bottom:499.575000px;}
.y68{bottom:500.475000px;}
.y38{bottom:510.375000px;}
.yf7{bottom:512.175000px;}
.ye2{bottom:517.935000px;}
.y11a{bottom:520.275000px;}
.yb4{bottom:520.815000px;}
.y67{bottom:522.435000px;}
.y37{bottom:532.335000px;}
.yf6{bottom:534.135000px;}
.y147{bottom:536.115000px;}
.ye1{bottom:539.895000px;}
.y119{bottom:542.235000px;}
.yb3{bottom:542.775000px;}
.y66{bottom:544.395000px;}
.y36{bottom:554.295000px;}
.y146{bottom:554.475000px;}
.yf5{bottom:556.095000px;}
.ye0{bottom:561.855000px;}
.y118{bottom:564.195000px;}
.yb2{bottom:564.915000px;}
.y65{bottom:566.355000px;}
.y145{bottom:572.835000px;}
.y35{bottom:576.435000px;}
.yf4{bottom:577.695000px;}
.ydf{bottom:583.815000px;}
.y80{bottom:585.975000px;}
.y117{bottom:586.155000px;}
.yb1{bottom:586.875000px;}
.y64{bottom:588.315000px;}
.y144{bottom:591.195000px;}
.yf3{bottom:593.355000px;}
.y34{bottom:598.395000px;}
.y7e{bottom:603.075000px;}
.yde{bottom:605.805000px;}
.y116{bottom:608.145000px;}
.yb0{bottom:608.865000px;}
.y143{bottom:609.405000px;}
.y63{bottom:610.305000px;}
.y33{bottom:620.385000px;}
.y7d{bottom:623.265000px;}
.ydd{bottom:627.765000px;}
.y115{bottom:630.105000px;}
.yaf{bottom:630.825000px;}
.y62{bottom:632.265000px;}
.y26{bottom:639.645000px;}
.y7c{bottom:641.445000px;}
.y142{bottom:646.125000px;}
.ydc{bottom:649.725000px;}
.y114{bottom:652.065000px;}
.yae{bottom:652.785000px;}
.y61{bottom:654.225000px;}
.y141{bottom:664.305000px;}
.y166{bottom:668.985000px;}
.yad{bottom:669.885000px;}
.ydb{bottom:671.865000px;}
.y113{bottom:674.025000px;}
.y60{bottom:676.365000px;}
.yac{bottom:678.885000px;}
.y2f{bottom:682.305000px;}
.y140{bottom:682.665000px;}
.y165{bottom:690.945000px;}
.yda{bottom:693.825000px;}
.y112{bottom:695.985000px;}
.y5f{bottom:698.325000px;}
.y21{bottom:699.585000px;}
.y13f{bottom:701.025000px;}
.yab{bottom:705.705000px;}
.y164{bottom:712.905000px;}
.yd9{bottom:715.785000px;}
.y111{bottom:717.945000px;}
.y13e{bottom:719.385000px;}
.y5e{bottom:720.285000px;}
.yaa{bottom:727.665000px;}
.y163{bottom:734.865000px;}
.y13d{bottom:737.565000px;}
.yd8{bottom:737.745000px;}
.y110{bottom:739.905000px;}
.y5d{bottom:742.245000px;}
.ya9{bottom:751.605000px;}
.yd7{bottom:755.565000px;}
.y13c{bottom:755.925000px;}
.y10f{bottom:761.865000px;}
.y5c{bottom:764.205000px;}
.ya8{bottom:773.745000px;}
.yd6{bottom:773.925000px;}
.y13b{bottom:774.285000px;}
.y10e{bottom:783.825000px;}
.y5b{bottom:786.165000px;}
.yd5{bottom:792.105000px;}
.y13a{bottom:792.465000px;}
.y1f{bottom:794.985000px;}
.ya7{bottom:795.705000px;}
.y10d{bottom:805.785000px;}
.y5a{bottom:808.125000px;}
.y139{bottom:810.825000px;}
.yd4{bottom:811.185000px;}
.ya6{bottom:817.665000px;}
.y10c{bottom:827.925000px;}
.y138{bottom:829.185000px;}
.y59{bottom:830.085000px;}
.y85{bottom:838.905000px;}
.ya5{bottom:839.625000px;}
.y1c{bottom:840.705000px;}
.y137{bottom:847.545000px;}
.y10b{bottom:849.885000px;}
.y58{bottom:852.045000px;}
.yd3{bottom:853.125000px;}
.y19{bottom:855.285000px;}
.y84{bottom:857.265000px;}
.ya4{bottom:861.585000px;}
.y136{bottom:865.725000px;}
.y16{bottom:870.045000px;}
.y10a{bottom:871.890000px;}
.yd2{bottom:873.330000px;}
.y57{bottom:874.050000px;}
.ya3{bottom:883.590000px;}
.y135{bottom:884.130000px;}
.y13{bottom:884.670000px;}
.yd1{bottom:893.850000px;}
.y56{bottom:896.010000px;}
.y134{bottom:902.490000px;}
.ya2{bottom:905.550000px;}
.y7a{bottom:909.330000px;}
.yd0{bottom:915.810000px;}
.y55{bottom:917.970000px;}
.y133{bottom:920.850000px;}
.y79{bottom:927.510000px;}
.y12{bottom:932.190000px;}
.ycf{bottom:937.770000px;}
.y132{bottom:939.030000px;}
.y54{bottom:939.930000px;}
.ya1{bottom:949.470000px;}
.y10{bottom:952.350000px;}
.y131{bottom:957.390000px;}
.yce{bottom:959.730000px;}
.y53{bottom:961.890000px;}
.ya0{bottom:971.430000px;}
.y130{bottom:975.750000px;}
.ye{bottom:981.690000px;}
.y52{bottom:984.030000px;}
.y9f{bottom:993.390000px;}
.y12f{bottom:993.930000px;}
.ycd{bottom:1003.650000px;}
.y6{bottom:1005.270000px;}
.y51{bottom:1005.990000px;}
.y12e{bottom:1012.290000px;}
.y9e{bottom:1015.350000px;}
.ycc{bottom:1021.470000px;}
.y50{bottom:1027.950000px;}
.y12d{bottom:1030.650000px;}
.y9d{bottom:1037.310000px;}
.ycb{bottom:1039.830000px;}
.y162{bottom:1049.010000px;}
.y4f{bottom:1049.910000px;}
.yca{bottom:1058.190000px;}
.y9c{bottom:1059.270000px;}
.y161{bottom:1067.190000px;}
.y4e{bottom:1071.870000px;}
.y8{bottom:1075.830000px;}
.yc8{bottom:1077.270000px;}
.y9b{bottom:1082.490000px;}
.y160{bottom:1085.550000px;}
.y4d{bottom:1093.830000px;}
.y15f{bottom:1103.910000px;}
.y9a{bottom:1104.630000px;}
.y4c{bottom:1115.790000px;}
.yc7{bottom:1119.030000px;}
.y15e{bottom:1122.270000px;}
.y99{bottom:1124.430000px;}
.y98{bottom:1133.430000px;}
.y4b{bottom:1137.780000px;}
.yc6{bottom:1139.220000px;}
.y15d{bottom:1140.480000px;}
.y3{bottom:1176.480000px;}
.y4a{bottom:1192.500000px;}
.y2{bottom:1194.660000px;}
.y1{bottom:1208.340000px;}
.h13{height:14.580000px;}
.h10{height:14.616000px;}
.h12{height:14.760000px;}
.h1a{height:16.560000px;}
.h25{height:18.180000px;}
.h2b{height:18.360000px;}
.ha{height:20.160000px;}
.h27{height:20.196000px;}
.hb{height:29.340000px;}
.h11{height:30.077578px;}
.h31{height:36.540000px;}
.h2d{height:36.720000px;}
.h1e{height:38.158594px;}
.h17{height:40.816406px;}
.h1b{height:41.940000px;}
.h14{height:43.380000px;}
.h2{height:47.321367px;}
.h21{height:47.344922px;}
.hd{height:47.520000px;}
.h9{height:47.980898px;}
.h18{height:53.709961px;}
.h22{height:54.984375px;}
.h15{height:55.291992px;}
.h20{height:58.651172px;}
.h1f{height:59.439023px;}
.h32{height:59.551172px;}
.h35{height:61.423863px;}
.h4{height:65.884219px;}
.h28{height:67.824844px;}
.h8{height:69.840000px;}
.h3{height:70.628906px;}
.h1c{height:71.613281px;}
.he{height:71.740898px;}
.h1d{height:73.722656px;}
.h23{height:74.004654px;}
.h6{height:75.636000px;}
.h7{height:82.676953px;}
.hf{height:83.787539px;}
.h30{height:89.556328px;}
.h2e{height:89.676328px;}
.h16{height:93.060000px;}
.hc{height:95.245664px;}
.h34{height:99.656719px;}
.h2f{height:107.613281px;}
.h33{height:109.716328px;}
.h5{height:146.196000px;}
.h19{height:153.000000px;}
.h24{height:227.370000px;}
.h26{height:267.870000px;}
.h2a{height:297.615000px;}
.h29{height:297.750000px;}
.h2c{height:365.610000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:20.736000px;}
.w17{width:52.920000px;}
.w11{width:54.540000px;}
.w1a{width:78.660000px;}
.w16{width:99.720000px;}
.w12{width:109.836000px;}
.w18{width:112.896000px;}
.w15{width:114.696000px;}
.w19{width:117.036000px;}
.w14{width:121.536000px;}
.w1b{width:127.656000px;}
.w5{width:132.660000px;}
.w13{width:135.000000px;}
.w3{width:135.396000px;}
.w9{width:227.775000px;}
.wf{width:318.315000px;}
.wb{width:318.630000px;}
.wc{width:318.675000px;}
.we{width:324.930000px;}
.w4{width:461.985000px;}
.wa{width:502.275000px;}
.wd{width:637.305000px;}
.w10{width:643.245000px;}
.w8{width:709.305000px;}
.w6{width:730.050000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:1.440000px;}
.xc{left:8.100000px;}
.x21{left:39.810000px;}
.x25{left:42.474000px;}
.x7{left:66.645000px;}
.x4{left:80.999987px;}
.x19{left:82.650000px;}
.x26{left:86.610000px;}
.x8{left:90.225000px;}
.x23{left:98.814000px;}
.xf{left:102.276000px;}
.x20{left:103.854000px;}
.x11{left:107.855987px;}
.x29{left:113.075987px;}
.x15{left:118.115987px;}
.x5{left:120.810000px;}
.x14{left:122.255987px;}
.x1d{left:124.956000px;}
.x13{left:126.395987px;}
.x17{left:127.836000px;}
.x2c{left:128.916000px;}
.xa{left:133.200000px;}
.x2b{left:136.295987px;}
.x1b{left:138.054000px;}
.x32{left:149.255987px;}
.x16{left:177.509987px;}
.x27{left:178.599000px;}
.x2a{left:179.849987px;}
.xb{left:184.365000px;}
.xd{left:190.845000px;}
.x2{left:200.729987px;}
.x36{left:201.990000px;}
.x35{left:208.649987px;}
.x6{left:216.930000px;}
.x33{left:226.109987px;}
.x1c{left:247.359000px;}
.x37{left:254.910000px;}
.x2d{left:293.295000px;}
.x12{left:297.074987px;}
.x24{left:304.275000px;}
.x10{left:309.315000px;}
.x18{left:310.539000px;}
.x1e{left:314.319000px;}
.x22{left:316.479000px;}
.x28{left:332.354987px;}
.x38{left:367.815000px;}
.x31{left:380.234987px;}
.x2e{left:428.295000px;}
.x1{left:446.474987px;}
.x1f{left:449.895000px;}
.x39{left:484.845000px;}
.x1a{left:496.869000px;}
.x2f{left:549.825000px;}
.x3a{left:563.505000px;}
.x30{left:664.530000px;}
.x9{left:678.930000px;}
.x34{left:772.889987px;}
.x3{left:787.109987px;}
@media print{
.vc{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-12.800000pt;}
.v7{vertical-align:-8.960000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.800000pt;}
.vd{vertical-align:16.640000pt;}
.va{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v8{vertical-align:32.000000pt;}
.v9{vertical-align:37.760000pt;}
.v6{vertical-align:50.666667pt;}
.vb{vertical-align:55.680000pt;}
.ls32{letter-spacing:-11.360000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.234133pt;}
.lse{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.095467pt;}
.ls2e{letter-spacing:-0.069867pt;}
.ls25{letter-spacing:-0.064000pt;}
.ls33{letter-spacing:-0.051840pt;}
.ls36{letter-spacing:-0.036480pt;}
.ls2f{letter-spacing:-0.000005pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.lsd{letter-spacing:0.128000pt;}
.ls31{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.195840pt;}
.ls15{letter-spacing:0.207360pt;}
.ls1{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.284800pt;}
.ls3{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.331733pt;}
.ls27{letter-spacing:0.398080pt;}
.ls30{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.725760pt;}
.ls1e{letter-spacing:0.832000pt;}
.ls16{letter-spacing:1.091840pt;}
.ls2b{letter-spacing:1.593600pt;}
.ls2a{letter-spacing:2.490240pt;}
.ls12{letter-spacing:3.501440pt;}
.ls19{letter-spacing:3.665067pt;}
.ls1b{letter-spacing:3.686400pt;}
.ls1c{letter-spacing:3.890560pt;}
.ls29{letter-spacing:10.560000pt;}
.ls1d{letter-spacing:14.770560pt;}
.ls21{letter-spacing:15.104000pt;}
.ls28{letter-spacing:17.472000pt;}
.ls11{letter-spacing:17.683840pt;}
.ls20{letter-spacing:18.112000pt;}
.ls2d{letter-spacing:18.272000pt;}
.ls1f{letter-spacing:20.873600pt;}
.ls10{letter-spacing:20.966400pt;}
.ls1a{letter-spacing:21.338240pt;}
.ls13{letter-spacing:21.523840pt;}
.ls18{letter-spacing:21.606400pt;}
.ls14{letter-spacing:23.872000pt;}
.ls35{letter-spacing:28.752640pt;}
.ls34{letter-spacing:56.272640pt;}
.lsb{letter-spacing:133.226667pt;}
.ls17{letter-spacing:177.536000pt;}
.ws4{word-spacing:-14.656000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws1a{word-spacing:-14.463995pt;}
.wsa{word-spacing:-14.336000pt;}
.wsb{word-spacing:-14.272000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws3{word-spacing:-14.016000pt;}
.ws18{word-spacing:-13.824000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws1c{word-spacing:-12.005120pt;}
.ws1e{word-spacing:-11.968640pt;}
.ws1d{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.909653pt;}
.ws0{word-spacing:-10.400000pt;}
.ws10{word-spacing:-9.996800pt;}
.ws16{word-spacing:-9.926933pt;}
.ws1{word-spacing:-9.710720pt;}
.ws2{word-spacing:-9.690880pt;}
.ws12{word-spacing:-9.456747pt;}
.ws6{word-spacing:-8.640000pt;}
.ws14{word-spacing:-3.072000pt;}
.ws9{word-spacing:0.000000pt;}
.wsf{word-spacing:0.362667pt;}
.ws15{word-spacing:0.874667pt;}
.ws11{word-spacing:3.392000pt;}
.wse{word-spacing:4.032000pt;}
.ws13{word-spacing:10.419200pt;}
.ws17{word-spacing:81.593493pt;}
.ws19{word-spacing:91.171947pt;}
.ws1b{word-spacing:104.633280pt;}
._16{margin-left:-184.960000pt;}
._18{margin-left:-27.765760pt;}
._17{margin-left:-8.192000pt;}
._15{margin-left:-4.833280pt;}
._d{margin-left:-3.365973pt;}
._a{margin-left:-2.223360pt;}
._0{margin-left:-1.114880pt;}
._1{width:1.250987pt;}
._3{width:2.378240pt;}
._2{width:3.370880pt;}
._6{width:4.694613pt;}
._9{width:6.086400pt;}
._8{width:7.040000pt;}
._11{width:8.192000pt;}
._12{width:9.088000pt;}
._13{width:10.048000pt;}
._14{width:11.072000pt;}
._7{width:12.352000pt;}
._4{width:13.728000pt;}
._5{width:14.850560pt;}
._10{width:16.151467pt;}
._c{width:17.168640pt;}
._b{width:18.112000pt;}
._f{width:19.520000pt;}
._e{width:20.544000pt;}
._1f{width:21.596373pt;}
._1b{width:22.880000pt;}
._1d{width:41.455573pt;}
._1e{width:42.546987pt;}
._19{width:65.264640pt;}
._1c{width:66.288000pt;}
._1a{width:177.536000pt;}
.fs5{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:0.160000pt;}
.y7{bottom:2.560000pt;}
.y1e{bottom:2.880000pt;}
.y18{bottom:2.920000pt;}
.y1b{bottom:3.040000pt;}
.y30{bottom:3.200000pt;}
.y7b{bottom:3.520000pt;}
.yf{bottom:4.000000pt;}
.y7f{bottom:4.026667pt;}
.y15{bottom:4.960000pt;}
.y11{bottom:5.760000pt;}
.y1d{bottom:6.240000pt;}
.y17{bottom:6.280000pt;}
.y1a{bottom:6.400000pt;}
.ya{bottom:6.880000pt;}
.yd{bottom:10.400000pt;}
.y20{bottom:11.040000pt;}
.y32{bottom:11.200000pt;}
.y2e{bottom:13.920000pt;}
.yc9{bottom:19.680000pt;}
.y88{bottom:19.840000pt;}
.yc{bottom:23.520000pt;}
.y25{bottom:24.000000pt;}
.y31{bottom:25.920000pt;}
.y14{bottom:27.040000pt;}
.y5{bottom:27.840000pt;}
.y9{bottom:28.320000pt;}
.y2d{bottom:28.640000pt;}
.yb{bottom:36.480000pt;}
.y24{bottom:36.960000pt;}
.y2c{bottom:43.360000pt;}
.y4{bottom:45.760000pt;}
.y23{bottom:50.080000pt;}
.y2b{bottom:58.080000pt;}
.y22{bottom:63.360000pt;}
.y2a{bottom:72.640000pt;}
.y29{bottom:87.360000pt;}
.y49{bottom:98.752000pt;}
.y97{bottom:100.992000pt;}
.y28{bottom:101.920000pt;}
.y15c{bottom:102.272000pt;}
.yf2{bottom:102.592000pt;}
.y109{bottom:103.552000pt;}
.y12c{bottom:110.752000pt;}
.y78{bottom:112.832000pt;}
.y48{bottom:114.752000pt;}
.y27{bottom:116.640000pt;}
.y15b{bottom:118.432000pt;}
.y96{bottom:120.672000pt;}
.yf1{bottom:122.112000pt;}
.y108{bottom:123.072000pt;}
.y12b{bottom:130.272000pt;}
.yc5{bottom:130.912000pt;}
.y47{bottom:131.072000pt;}
.y77{bottom:132.352000pt;}
.y15a{bottom:134.746667pt;}
.y95{bottom:140.186667pt;}
.yf0{bottom:141.626667pt;}
.y107{bottom:142.586667pt;}
.y12a{bottom:149.786667pt;}
.yc4{bottom:150.426667pt;}
.y159{bottom:151.066667pt;}
.y46{bottom:151.866667pt;}
.y94{bottom:159.706667pt;}
.yef{bottom:161.146667pt;}
.y106{bottom:162.106667pt;}
.y45{bottom:164.026667pt;}
.y158{bottom:167.386667pt;}
.y129{bottom:169.306667pt;}
.yc3{bottom:169.946667pt;}
.y76{bottom:171.386667pt;}
.y93{bottom:179.226667pt;}
.yee{bottom:180.666667pt;}
.y105{bottom:181.786667pt;}
.y157{bottom:183.546667pt;}
.y128{bottom:188.986667pt;}
.yc2{bottom:189.466667pt;}
.y75{bottom:190.906667pt;}
.y92{bottom:198.746667pt;}
.y156{bottom:199.866667pt;}
.yed{bottom:200.346667pt;}
.y104{bottom:201.306667pt;}
.y127{bottom:208.506667pt;}
.yc1{bottom:209.146667pt;}
.y74{bottom:210.426667pt;}
.yec{bottom:215.706667pt;}
.y155{bottom:216.186667pt;}
.y91{bottom:218.266667pt;}
.y44{bottom:219.386667pt;}
.y103{bottom:220.826667pt;}
.yeb{bottom:223.706667pt;}
.y126{bottom:228.026667pt;}
.yc0{bottom:228.666667pt;}
.y73{bottom:229.946667pt;}
.y154{bottom:232.346667pt;}
.y83{bottom:235.706667pt;}
.y90{bottom:237.786667pt;}
.y43{bottom:238.906667pt;}
.y102{bottom:240.346667pt;}
.y125{bottom:247.546667pt;}
.ybf{bottom:248.186667pt;}
.y153{bottom:248.666667pt;}
.y72{bottom:249.466667pt;}
.y81{bottom:251.866667pt;}
.y8f{bottom:257.306667pt;}
.y42{bottom:258.426667pt;}
.y101{bottom:259.866667pt;}
.y152{bottom:264.986667pt;}
.y124{bottom:267.066667pt;}
.ybe{bottom:267.706667pt;}
.y71{bottom:268.986667pt;}
.y8e{bottom:276.826667pt;}
.y41{bottom:277.946667pt;}
.y100{bottom:279.386667pt;}
.y151{bottom:281.306667pt;}
.y123{bottom:286.586667pt;}
.ybd{bottom:287.226667pt;}
.y70{bottom:288.506667pt;}
.y8d{bottom:296.346667pt;}
.y40{bottom:297.466667pt;}
.yff{bottom:298.906667pt;}
.yea{bottom:303.906667pt;}
.y122{bottom:306.146667pt;}
.ybc{bottom:306.786667pt;}
.y6f{bottom:308.066667pt;}
.ye9{bottom:311.906667pt;}
.y150{bottom:313.826667pt;}
.y8c{bottom:315.906667pt;}
.y3f{bottom:317.026667pt;}
.yfe{bottom:318.466667pt;}
.y121{bottom:325.666667pt;}
.ybb{bottom:326.306667pt;}
.y6e{bottom:327.746667pt;}
.y14f{bottom:330.146667pt;}
.y8b{bottom:335.426667pt;}
.y3e{bottom:336.546667pt;}
.yfd{bottom:337.986667pt;}
.y120{bottom:345.186667pt;}
.yba{bottom:345.826667pt;}
.y14e{bottom:346.466667pt;}
.y6d{bottom:347.266667pt;}
.ye8{bottom:350.786667pt;}
.y8a{bottom:354.946667pt;}
.y3d{bottom:356.066667pt;}
.yfc{bottom:357.506667pt;}
.ye7{bottom:358.786667pt;}
.y14d{bottom:362.626667pt;}
.y11f{bottom:364.706667pt;}
.yb9{bottom:365.346667pt;}
.y6c{bottom:366.786667pt;}
.y89{bottom:370.146667pt;}
.y3c{bottom:375.586667pt;}
.yfb{bottom:377.026667pt;}
.y14c{bottom:378.946667pt;}
.ye6{bottom:382.306667pt;}
.y11e{bottom:384.226667pt;}
.yb8{bottom:384.866667pt;}
.y6b{bottom:386.306667pt;}
.y87{bottom:388.066667pt;}
.y3b{bottom:395.106667pt;}
.y14b{bottom:395.266667pt;}
.yfa{bottom:396.546667pt;}
.ye5{bottom:401.826667pt;}
.y11d{bottom:403.746667pt;}
.yb7{bottom:404.386667pt;}
.y6a{bottom:405.826667pt;}
.y14a{bottom:411.426667pt;}
.y3a{bottom:414.626667pt;}
.yf9{bottom:416.066667pt;}
.y86{bottom:420.706667pt;}
.ye4{bottom:421.346667pt;}
.y11c{bottom:423.266667pt;}
.yb6{bottom:423.906667pt;}
.y69{bottom:425.346667pt;}
.y149{bottom:427.746667pt;}
.y39{bottom:434.146667pt;}
.yf8{bottom:435.586667pt;}
.ye3{bottom:440.866667pt;}
.y11b{bottom:442.786667pt;}
.yb5{bottom:443.426667pt;}
.y148{bottom:444.066667pt;}
.y68{bottom:444.866667pt;}
.y38{bottom:453.666667pt;}
.yf7{bottom:455.266667pt;}
.ye2{bottom:460.386667pt;}
.y11a{bottom:462.466667pt;}
.yb4{bottom:462.946667pt;}
.y67{bottom:464.386667pt;}
.y37{bottom:473.186667pt;}
.yf6{bottom:474.786667pt;}
.y147{bottom:476.546667pt;}
.ye1{bottom:479.906667pt;}
.y119{bottom:481.986667pt;}
.yb3{bottom:482.466667pt;}
.y66{bottom:483.906667pt;}
.y36{bottom:492.706667pt;}
.y146{bottom:492.866667pt;}
.yf5{bottom:494.306667pt;}
.ye0{bottom:499.426667pt;}
.y118{bottom:501.506667pt;}
.yb2{bottom:502.146667pt;}
.y65{bottom:503.426667pt;}
.y145{bottom:509.186667pt;}
.y35{bottom:512.386667pt;}
.yf4{bottom:513.506667pt;}
.ydf{bottom:518.946667pt;}
.y80{bottom:520.866667pt;}
.y117{bottom:521.026667pt;}
.yb1{bottom:521.666667pt;}
.y64{bottom:522.946667pt;}
.y144{bottom:525.506667pt;}
.yf3{bottom:527.426667pt;}
.y34{bottom:531.906667pt;}
.y7e{bottom:536.066667pt;}
.yde{bottom:538.493333pt;}
.y116{bottom:540.573333pt;}
.yb0{bottom:541.213333pt;}
.y143{bottom:541.693333pt;}
.y63{bottom:542.493333pt;}
.y33{bottom:551.453333pt;}
.y7d{bottom:554.013333pt;}
.ydd{bottom:558.013333pt;}
.y115{bottom:560.093333pt;}
.yaf{bottom:560.733333pt;}
.y62{bottom:562.013333pt;}
.y26{bottom:568.573333pt;}
.y7c{bottom:570.173333pt;}
.y142{bottom:574.333333pt;}
.ydc{bottom:577.533333pt;}
.y114{bottom:579.613333pt;}
.yae{bottom:580.253333pt;}
.y61{bottom:581.533333pt;}
.y141{bottom:590.493333pt;}
.y166{bottom:594.653333pt;}
.yad{bottom:595.453333pt;}
.ydb{bottom:597.213333pt;}
.y113{bottom:599.133333pt;}
.y60{bottom:601.213333pt;}
.yac{bottom:603.453333pt;}
.y2f{bottom:606.493333pt;}
.y140{bottom:606.813333pt;}
.y165{bottom:614.173333pt;}
.yda{bottom:616.733333pt;}
.y112{bottom:618.653333pt;}
.y5f{bottom:620.733333pt;}
.y21{bottom:621.853333pt;}
.y13f{bottom:623.133333pt;}
.yab{bottom:627.293333pt;}
.y164{bottom:633.693333pt;}
.yd9{bottom:636.253333pt;}
.y111{bottom:638.173333pt;}
.y13e{bottom:639.453333pt;}
.y5e{bottom:640.253333pt;}
.yaa{bottom:646.813333pt;}
.y163{bottom:653.213333pt;}
.y13d{bottom:655.613333pt;}
.yd8{bottom:655.773333pt;}
.y110{bottom:657.693333pt;}
.y5d{bottom:659.773333pt;}
.ya9{bottom:668.093333pt;}
.yd7{bottom:671.613333pt;}
.y13c{bottom:671.933333pt;}
.y10f{bottom:677.213333pt;}
.y5c{bottom:679.293333pt;}
.ya8{bottom:687.773333pt;}
.yd6{bottom:687.933333pt;}
.y13b{bottom:688.253333pt;}
.y10e{bottom:696.733333pt;}
.y5b{bottom:698.813333pt;}
.yd5{bottom:704.093333pt;}
.y13a{bottom:704.413333pt;}
.y1f{bottom:706.653333pt;}
.ya7{bottom:707.293333pt;}
.y10d{bottom:716.253333pt;}
.y5a{bottom:718.333333pt;}
.y139{bottom:720.733333pt;}
.yd4{bottom:721.053333pt;}
.ya6{bottom:726.813333pt;}
.y10c{bottom:735.933333pt;}
.y138{bottom:737.053333pt;}
.y59{bottom:737.853333pt;}
.y85{bottom:745.693333pt;}
.ya5{bottom:746.333333pt;}
.y1c{bottom:747.293333pt;}
.y137{bottom:753.373333pt;}
.y10b{bottom:755.453333pt;}
.y58{bottom:757.373333pt;}
.yd3{bottom:758.333333pt;}
.y19{bottom:760.253333pt;}
.y84{bottom:762.013333pt;}
.ya4{bottom:765.853333pt;}
.y136{bottom:769.533333pt;}
.y16{bottom:773.373333pt;}
.y10a{bottom:775.013333pt;}
.yd2{bottom:776.293333pt;}
.y57{bottom:776.933333pt;}
.ya3{bottom:785.413333pt;}
.y135{bottom:785.893333pt;}
.y13{bottom:786.373333pt;}
.yd1{bottom:794.533333pt;}
.y56{bottom:796.453333pt;}
.y134{bottom:802.213333pt;}
.ya2{bottom:804.933333pt;}
.y7a{bottom:808.293333pt;}
.yd0{bottom:814.053333pt;}
.y55{bottom:815.973333pt;}
.y133{bottom:818.533333pt;}
.y79{bottom:824.453333pt;}
.y12{bottom:828.613333pt;}
.ycf{bottom:833.573333pt;}
.y132{bottom:834.693333pt;}
.y54{bottom:835.493333pt;}
.ya1{bottom:843.973333pt;}
.y10{bottom:846.533333pt;}
.y131{bottom:851.013333pt;}
.yce{bottom:853.093333pt;}
.y53{bottom:855.013333pt;}
.ya0{bottom:863.493333pt;}
.y130{bottom:867.333333pt;}
.ye{bottom:872.613333pt;}
.y52{bottom:874.693333pt;}
.y9f{bottom:883.013333pt;}
.y12f{bottom:883.493333pt;}
.ycd{bottom:892.133333pt;}
.y6{bottom:893.573333pt;}
.y51{bottom:894.213333pt;}
.y12e{bottom:899.813333pt;}
.y9e{bottom:902.533333pt;}
.ycc{bottom:907.973333pt;}
.y50{bottom:913.733333pt;}
.y12d{bottom:916.133333pt;}
.y9d{bottom:922.053333pt;}
.ycb{bottom:924.293333pt;}
.y162{bottom:932.453333pt;}
.y4f{bottom:933.253333pt;}
.yca{bottom:940.613333pt;}
.y9c{bottom:941.573333pt;}
.y161{bottom:948.613333pt;}
.y4e{bottom:952.773333pt;}
.y8{bottom:956.293333pt;}
.yc8{bottom:957.573333pt;}
.y9b{bottom:962.213333pt;}
.y160{bottom:964.933333pt;}
.y4d{bottom:972.293333pt;}
.y15f{bottom:981.253333pt;}
.y9a{bottom:981.893333pt;}
.y4c{bottom:991.813333pt;}
.yc7{bottom:994.693333pt;}
.y15e{bottom:997.573333pt;}
.y99{bottom:999.493333pt;}
.y98{bottom:1007.493333pt;}
.y4b{bottom:1011.360000pt;}
.yc6{bottom:1012.640000pt;}
.y15d{bottom:1013.760000pt;}
.y3{bottom:1045.760000pt;}
.y4a{bottom:1060.000000pt;}
.y2{bottom:1061.920000pt;}
.y1{bottom:1074.080000pt;}
.h13{height:12.960000pt;}
.h10{height:12.992000pt;}
.h12{height:13.120000pt;}
.h1a{height:14.720000pt;}
.h25{height:16.160000pt;}
.h2b{height:16.320000pt;}
.ha{height:17.920000pt;}
.h27{height:17.952000pt;}
.hb{height:26.080000pt;}
.h11{height:26.735625pt;}
.h31{height:32.480000pt;}
.h2d{height:32.640000pt;}
.h1e{height:33.918750pt;}
.h17{height:36.281250pt;}
.h1b{height:37.280000pt;}
.h14{height:38.560000pt;}
.h2{height:42.063437pt;}
.h21{height:42.084375pt;}
.hd{height:42.240000pt;}
.h9{height:42.649687pt;}
.h18{height:47.742188pt;}
.h22{height:48.875000pt;}
.h15{height:49.148438pt;}
.h20{height:52.134375pt;}
.h1f{height:52.834688pt;}
.h32{height:52.934375pt;}
.h35{height:54.598989pt;}
.h4{height:58.563750pt;}
.h28{height:60.288750pt;}
.h8{height:62.080000pt;}
.h3{height:62.781250pt;}
.h1c{height:63.656250pt;}
.he{height:63.769688pt;}
.h1d{height:65.531250pt;}
.h23{height:65.781915pt;}
.h6{height:67.232000pt;}
.h7{height:73.490625pt;}
.hf{height:74.477812pt;}
.h30{height:79.605625pt;}
.h2e{height:79.712292pt;}
.h16{height:82.720000pt;}
.hc{height:84.662813pt;}
.h34{height:88.583750pt;}
.h2f{height:95.656250pt;}
.h33{height:97.525625pt;}
.h5{height:129.952000pt;}
.h19{height:136.000000pt;}
.h24{height:202.106667pt;}
.h26{height:238.106667pt;}
.h2a{height:264.546667pt;}
.h29{height:264.666667pt;}
.h2c{height:324.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:18.432000pt;}
.w17{width:47.040000pt;}
.w11{width:48.480000pt;}
.w1a{width:69.920000pt;}
.w16{width:88.640000pt;}
.w12{width:97.632000pt;}
.w18{width:100.352000pt;}
.w15{width:101.952000pt;}
.w19{width:104.032000pt;}
.w14{width:108.032000pt;}
.w1b{width:113.472000pt;}
.w5{width:117.920000pt;}
.w13{width:120.000000pt;}
.w3{width:120.352000pt;}
.w9{width:202.466667pt;}
.wf{width:282.946667pt;}
.wb{width:283.226667pt;}
.wc{width:283.266667pt;}
.we{width:288.826667pt;}
.w4{width:410.653333pt;}
.wa{width:446.466667pt;}
.wd{width:566.493333pt;}
.w10{width:571.773333pt;}
.w8{width:630.493333pt;}
.w6{width:648.933333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:1.280000pt;}
.xc{left:7.200000pt;}
.x21{left:35.386667pt;}
.x25{left:37.754667pt;}
.x7{left:59.240000pt;}
.x4{left:71.999988pt;}
.x19{left:73.466667pt;}
.x26{left:76.986667pt;}
.x8{left:80.200000pt;}
.x23{left:87.834667pt;}
.xf{left:90.912000pt;}
.x20{left:92.314667pt;}
.x11{left:95.871988pt;}
.x29{left:100.511988pt;}
.x15{left:104.991988pt;}
.x5{left:107.386667pt;}
.x14{left:108.671988pt;}
.x1d{left:111.072000pt;}
.x13{left:112.351988pt;}
.x17{left:113.632000pt;}
.x2c{left:114.592000pt;}
.xa{left:118.400000pt;}
.x2b{left:121.151988pt;}
.x1b{left:122.714667pt;}
.x32{left:132.671988pt;}
.x16{left:157.786655pt;}
.x27{left:158.754667pt;}
.x2a{left:159.866655pt;}
.xb{left:163.880000pt;}
.xd{left:169.640000pt;}
.x2{left:178.426655pt;}
.x36{left:179.546667pt;}
.x35{left:185.466655pt;}
.x6{left:192.826667pt;}
.x33{left:200.986655pt;}
.x1c{left:219.874667pt;}
.x37{left:226.586667pt;}
.x2d{left:260.706667pt;}
.x12{left:264.066655pt;}
.x24{left:270.466667pt;}
.x10{left:274.946667pt;}
.x18{left:276.034667pt;}
.x1e{left:279.394667pt;}
.x22{left:281.314667pt;}
.x28{left:295.426655pt;}
.x38{left:326.946667pt;}
.x31{left:337.986655pt;}
.x2e{left:380.706667pt;}
.x1{left:396.866655pt;}
.x1f{left:399.906667pt;}
.x39{left:430.973333pt;}
.x1a{left:441.661333pt;}
.x2f{left:488.733333pt;}
.x3a{left:500.893333pt;}
.x30{left:590.693333pt;}
.x9{left:603.493333pt;}
.x34{left:687.013322pt;}
.x3{left:699.653322pt;}
}




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