
    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_2a5720eb2f3dbf579103ceb1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fae64b16151cfb8db2a8589b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1afed01be5efb53fb463e6ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_9da40836b83ceda274a01c0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_a0ba93a1a502649d9accf813.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_470ba1ce407cc7bd724ec2fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f1ecca6859c2773d3c112d63.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5b9c5d60da426bf34e302f17.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8c695529335a234dca8e46d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{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);}
.v4{vertical-align:-61.920000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls11{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.269400px;}
.ls10{letter-spacing:-0.223800px;}
.ls14{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls5{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls1c{letter-spacing:0.144720px;}
.ls3{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.269400px;}
.ls8{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.315360px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.493800px;}
.lse{letter-spacing:0.513600px;}
.ls17{letter-spacing:0.900000px;}
.lsa{letter-spacing:2.340000px;}
.ls9{letter-spacing:3.060000px;}
.lsb{letter-spacing:3.780000px;}
.ls7{letter-spacing:4.620000px;}
.ls16{letter-spacing:5.220000px;}
.lsf{letter-spacing:6.660000px;}
.ls15{letter-spacing:7.380000px;}
.ls19{letter-spacing:8.820000px;}
.ls1d{letter-spacing:13.140000px;}
.ls18{letter-spacing:15.300000px;}
.ls12{letter-spacing:30.420000px;}
.ls1b{letter-spacing:53.460000px;}
.ls6{letter-spacing:63.360000px;}
.ls4{letter-spacing:63.540000px;}
.ls20{letter-spacing:69.300000px;}
.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:-18.000000px;}
.wsd{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws6{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.420000px;}
.ws12{word-spacing:-12.329400px;}
.wsf{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.836200px;}
.ws10{word-spacing:-11.790600px;}
.ws11{word-spacing:-11.700000px;}
.ws2{word-spacing:-10.933800px;}
.ws1{word-spacing:-10.440000px;}
.ws8{word-spacing:-7.560000px;}
.wsb{word-spacing:0.000000px;}
.ws7{word-spacing:53.640000px;}
._19{margin-left:-2.235840px;}
._3{margin-left:-1.202880px;}
._1{width:1.085760px;}
._10{width:2.095200px;}
._9{width:3.240000px;}
._a{width:4.428000px;}
._d{width:5.508000px;}
._0{width:7.182720px;}
._2{width:8.343840px;}
._7{width:10.099440px;}
._18{width:11.224800px;}
._b{width:12.366000px;}
._11{width:13.656240px;}
._c{width:14.870880px;}
._17{width:16.005600px;}
._16{width:17.499600px;}
._15{width:18.762240px;}
._14{width:20.079360px;}
._1d{width:21.438000px;}
._e{width:23.058000px;}
._6{width:24.769920px;}
._29{width:26.049840px;}
._13{width:27.736320px;}
._12{width:29.043360px;}
._1b{width:30.224640px;}
._20{width:31.297680px;}
._2c{width:34.684560px;}
._1e{width:37.476000px;}
._1f{width:38.862000px;}
._22{width:42.128400px;}
._21{width:43.804080px;}
._24{width:45.969600px;}
._23{width:47.272080px;}
._1c{width:48.402000px;}
._27{width:52.581600px;}
._28{width:53.613120px;}
._5{width:59.278320px;}
._8{width:62.765280px;}
._2e{width:68.452560px;}
._2d{width:69.993120px;}
._25{width:72.014640px;}
._26{width:73.480080px;}
._30{width:78.039360px;}
._2f{width:79.130400px;}
._2b{width:98.563440px;}
._2a{width:99.849120px;}
._1a{width:1006.860000px;}
._f{width:1834.296000px;}
._4{width:2067.492480px;}
.fce{color:rgb(33,33,33);}
.fcd{color:rgb(132,150,176);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(13,13,13);}
.fc4{color:rgb(128,128,128);}
.fc5{color:rgb(166,166,166);}
.fcb{color:rgb(34,34,34);}
.fc3{color:rgb(255,0,0);}
.fc6{color:rgb(3,50,255);}
.fc7{color:rgb(50,62,79);}
.fc8{color:rgb(0,112,192);}
.fca{color:rgb(91,155,213);}
.fc9{color:transparent;}
.fcc{color:rgb(0,0,255);}
.fs6{font-size:5.760000px;}
.fsb{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsa{font-size:50.848916px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fse{font-size:84.240000px;}
.fsd{font-size:95.760000px;}
.fs8{font-size:120.240000px;}
.yae{bottom:-14.400000px;}
.yb3{bottom:-12.600000px;}
.ya5{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.yad{bottom:2.340000px;}
.yb5{bottom:2.700000px;}
.yc0{bottom:3.780000px;}
.yb2{bottom:4.140000px;}
.y46{bottom:4.320000px;}
.yb6{bottom:5.040000px;}
.y2b{bottom:5.760000px;}
.yc7{bottom:8.445000px;}
.ybb{bottom:12.420000px;}
.ya4{bottom:15.300000px;}
.yac{bottom:18.000000px;}
.y45{bottom:18.180000px;}
.y83{bottom:18.900000px;}
.y49{bottom:19.260000px;}
.y2a{bottom:19.620000px;}
.y3{bottom:19.800000px;}
.ybf{bottom:21.060000px;}
.y29{bottom:27.180000px;}
.yc6{bottom:28.245000px;}
.yba{bottom:29.520000px;}
.ya3{bottom:30.780000px;}
.ya8{bottom:30.960000px;}
.yab{bottom:33.480000px;}
.y2{bottom:33.840000px;}
.yb1{bottom:35.280000px;}
.ybe{bottom:38.160000px;}
.y28{bottom:42.660000px;}
.ya2{bottom:46.260000px;}
.ya7{bottom:46.440000px;}
.y1{bottom:46.620000px;}
.yb9{bottom:46.800000px;}
.yc5{bottom:48.270000px;}
.yaa{bottom:48.960000px;}
.yb0{bottom:50.760000px;}
.ybd{bottom:55.440000px;}
.y27{bottom:58.140000px;}
.yb8{bottom:64.080000px;}
.yc4{bottom:68.070000px;}
.yd5{bottom:71.280000px;}
.ybc{bottom:72.720000px;}
.y26{bottom:73.800000px;}
.yaf{bottom:76.140000px;}
.y80{bottom:77.760000px;}
.ya9{bottom:79.200000px;}
.y10f{bottom:82.080000px;}
.y183{bottom:83.340000px;}
.y43{bottom:85.680000px;}
.ye3{bottom:86.760000px;}
.y141{bottom:89.100000px;}
.y25{bottom:89.280000px;}
.yd4{bottom:91.080000px;}
.y1bb{bottom:95.040000px;}
.y182{bottom:97.200000px;}
.y7f{bottom:97.920000px;}
.ye2{bottom:99.000000px;}
.y10e{bottom:101.880000px;}
.y140{bottom:102.780000px;}
.y24{bottom:104.760000px;}
.y42{bottom:105.480000px;}
.ya0{bottom:109.260000px;}
.y1ba{bottom:110.520000px;}
.yd3{bottom:110.880000px;}
.y181{bottom:111.060000px;}
.y7e{bottom:117.900000px;}
.y23{bottom:120.270000px;}
.y10d{bottom:121.860000px;}
.y13f{bottom:122.580000px;}
.y41{bottom:125.280000px;}
.y1b9{bottom:126.000000px;}
.y9f{bottom:129.060000px;}
.yd2{bottom:130.680000px;}
.y180{bottom:130.860000px;}
.y22{bottom:135.930000px;}
.y13e{bottom:136.440000px;}
.y7d{bottom:137.700000px;}
.y10c{bottom:141.660000px;}
.y17f{bottom:144.540000px;}
.y40{bottom:145.260000px;}
.y9e{bottom:145.800000px;}
.yd1{bottom:150.510000px;}
.y21{bottom:151.410000px;}
.y2d{bottom:155.190000px;}
.y13d{bottom:156.270000px;}
.y1b8{bottom:157.170000px;}
.y7c{bottom:157.530000px;}
.y17e{bottom:158.430000px;}
.y10b{bottom:161.490000px;}
.y3f{bottom:165.090000px;}
.y20{bottom:166.890000px;}
.yd0{bottom:170.130000px;}
.y1b7{bottom:172.650000px;}
.y7b{bottom:177.330000px;}
.y17d{bottom:178.230000px;}
.y10a{bottom:181.290000px;}
.y1f{bottom:182.370000px;}
.y3e{bottom:184.890000px;}
.y13c{bottom:187.050000px;}
.y1b6{bottom:188.130000px;}
.ycf{bottom:189.930000px;}
.y17c{bottom:192.090000px;}
.y7a{bottom:197.130000px;}
.y1e{bottom:198.030000px;}
.y109{bottom:201.090000px;}
.y1b5{bottom:203.790000px;}
.y3d{bottom:204.690000px;}
.y13b{bottom:206.490000px;}
.yce{bottom:210.090000px;}
.y17b{bottom:211.890000px;}
.y1d{bottom:213.510000px;}
.y79{bottom:217.110000px;}
.y1b4{bottom:219.270000px;}
.y108{bottom:221.070000px;}
.y3c{bottom:224.490000px;}
.y17a{bottom:225.570000px;}
.y13a{bottom:228.810000px;}
.y1c{bottom:228.990000px;}
.ycd{bottom:229.890000px;}
.y78{bottom:236.550000px;}
.y107{bottom:240.870000px;}
.y1b{bottom:244.470000px;}
.y179{bottom:245.370000px;}
.ycc{bottom:249.690000px;}
.y1b3{bottom:250.230000px;}
.y139{bottom:252.030000px;}
.y77{bottom:256.350000px;}
.y178{bottom:259.230000px;}
.y1a{bottom:260.130000px;}
.y106{bottom:260.670000px;}
.y3b{bottom:264.270000px;}
.y1b2{bottom:265.890000px;}
.y138{bottom:268.950000px;}
.ycb{bottom:269.670000px;}
.y177{bottom:273.090000px;}
.y19{bottom:275.610000px;}
.y76{bottom:276.510000px;}
.y105{bottom:280.470000px;}
.y3a{bottom:284.070000px;}
.y137{bottom:286.230000px;}
.y1b1{bottom:287.310000px;}
.yca{bottom:289.470000px;}
.y176{bottom:292.890000px;}
.y75{bottom:296.310000px;}
.y18{bottom:297.570000px;}
.y104{bottom:300.270000px;}
.y136{bottom:303.690000px;}
.y39{bottom:303.870000px;}
.y175{bottom:306.570000px;}
.yc9{bottom:308.910000px;}
.y2c{bottom:310.170000px;}
.y74{bottom:316.290000px;}
.y103{bottom:320.250000px;}
.y174{bottom:320.430000px;}
.y135{bottom:320.970000px;}
.y38{bottom:323.670000px;}
.y1b0{bottom:330.330000px;}
.yc8{bottom:331.230000px;}
.y73{bottom:336.090000px;}
.y134{bottom:338.250000px;}
.y102{bottom:340.050000px;}
.y173{bottom:340.230000px;}
.y37{bottom:343.650000px;}
.yc3{bottom:351.405000px;}
.y1af{bottom:351.930000px;}
.y172{bottom:354.090000px;}
.y133{bottom:355.530000px;}
.y72{bottom:355.890000px;}
.y101{bottom:359.850000px;}
.y36{bottom:363.450000px;}
.y132{bottom:372.810000px;}
.y1ae{bottom:373.530000px;}
.y171{bottom:373.890000px;}
.y71{bottom:375.690000px;}
.y100{bottom:379.650000px;}
.y35{bottom:383.250000px;}
.y170{bottom:387.570000px;}
.y131{bottom:389.730000px;}
.y1ad{bottom:394.950000px;}
.y70{bottom:395.490000px;}
.yff{bottom:399.495000px;}
.y34{bottom:403.095000px;}
.y130{bottom:406.875000px;}
.y16f{bottom:407.415000px;}
.y6f{bottom:415.515000px;}
.y1ac{bottom:416.595000px;}
.yfe{bottom:419.475000px;}
.y16e{bottom:421.275000px;}
.y33{bottom:422.895000px;}
.y12f{bottom:424.515000px;}
.y6e{bottom:434.955000px;}
.y16d{bottom:435.135000px;}
.yc2{bottom:436.035000px;}
.yfd{bottom:439.275000px;}
.y12e{bottom:441.795000px;}
.y32{bottom:442.875000px;}
.y6d{bottom:454.755000px;}
.y16c{bottom:454.935000px;}
.y12d{bottom:458.715000px;}
.yfc{bottom:459.075000px;}
.y31{bottom:462.675000px;}
.y9d{bottom:464.655000px;}
.y16b{bottom:468.615000px;}
.y1ab{bottom:474.555000px;}
.y6c{bottom:474.915000px;}
.y12c{bottom:475.995000px;}
.yfb{bottom:478.875000px;}
.y9c{bottom:482.115000px;}
.y30{bottom:482.475000px;}
.ya6{bottom:486.975000px;}
.ya1{bottom:488.415000px;}
.y12b{bottom:493.635000px;}
.y9b{bottom:493.995000px;}
.y1aa{bottom:494.355000px;}
.y6b{bottom:494.715000px;}
.yfa{bottom:498.675000px;}
.y2f{bottom:501.915000px;}
.y16a{bottom:502.275000px;}
.y9a{bottom:505.875000px;}
.y12a{bottom:510.375000px;}
.y1a9{bottom:514.335000px;}
.y6a{bottom:514.695000px;}
.y169{bottom:516.135000px;}
.y99{bottom:517.755000px;}
.yf9{bottom:518.655000px;}
.y2e{bottom:522.075000px;}
.y129{bottom:527.655000px;}
.y1a8{bottom:534.135000px;}
.y69{bottom:534.495000px;}
.y98{bottom:535.035000px;}
.y17{bottom:535.755000px;}
.y168{bottom:535.935000px;}
.yf8{bottom:538.455000px;}
.y128{bottom:545.295000px;}
.y167{bottom:549.615000px;}
.y97{bottom:551.055000px;}
.y1a7{bottom:553.935000px;}
.y68{bottom:554.295000px;}
.yf7{bottom:558.255000px;}
.y127{bottom:562.575000px;}
.y166{bottom:569.415000px;}
.y1a6{bottom:573.735000px;}
.y67{bottom:574.095000px;}
.yf6{bottom:578.055000px;}
.y126{bottom:579.495000px;}
.y165{bottom:583.275000px;}
.y1a5{bottom:593.535000px;}
.y66{bottom:593.895000px;}
.y125{bottom:596.775000px;}
.yf5{bottom:597.855000px;}
.y164{bottom:603.075000px;}
.y1a4{bottom:613.515000px;}
.y65{bottom:613.875000px;}
.y124{bottom:614.235000px;}
.ye1{bottom:614.775000px;}
.y163{bottom:616.935000px;}
.yf4{bottom:617.835000px;}
.y162{bottom:630.615000px;}
.y123{bottom:631.515000px;}
.y1a3{bottom:633.315000px;}
.y64{bottom:633.675000px;}
.ye0{bottom:633.855000px;}
.yf3{bottom:637.635000px;}
.ydf{bottom:648.105000px;}
.y122{bottom:648.465000px;}
.y161{bottom:650.445000px;}
.y1a2{bottom:653.145000px;}
.y63{bottom:653.505000px;}
.yf2{bottom:657.465000px;}
.yde{bottom:660.345000px;}
.y160{bottom:664.305000px;}
.y121{bottom:665.745000px;}
.y1a1{bottom:672.945000px;}
.y62{bottom:673.305000px;}
.yf1{bottom:677.265000px;}
.y15f{bottom:678.165000px;}
.y120{bottom:683.025000px;}
.y1a0{bottom:692.745000px;}
.y61{bottom:693.105000px;}
.yf0{bottom:697.065000px;}
.y15e{bottom:697.965000px;}
.y11f{bottom:705.165000px;}
.y15d{bottom:711.645000px;}
.y19f{bottom:712.725000px;}
.y60{bottom:713.085000px;}
.yef{bottom:717.045000px;}
.y15c{bottom:725.505000px;}
.y11e{bottom:730.725000px;}
.y19e{bottom:732.525000px;}
.y5f{bottom:732.885000px;}
.yee{bottom:736.845000px;}
.yc1{bottom:740.445000px;}
.y15b{bottom:745.305000px;}
.y11d{bottom:750.525000px;}
.y5e{bottom:752.685000px;}
.yb7{bottom:754.845000px;}
.y19d{bottom:755.205000px;}
.yed{bottom:756.645000px;}
.y15a{bottom:759.165000px;}
.y19c{bottom:769.065000px;}
.y11c{bottom:770.505000px;}
.y5d{bottom:772.125000px;}
.yec{bottom:776.445000px;}
.y159{bottom:778.965000px;}
.y19b{bottom:782.745000px;}
.y11b{bottom:790.305000px;}
.y5c{bottom:791.925000px;}
.y158{bottom:792.645000px;}
.yeb{bottom:796.245000px;}
.y19a{bottom:802.545000px;}
.y157{bottom:806.505000px;}
.y11a{bottom:810.105000px;}
.y5b{bottom:812.265000px;}
.yea{bottom:816.225000px;}
.y199{bottom:816.405000px;}
.y156{bottom:826.305000px;}
.y119{bottom:829.905000px;}
.y198{bottom:830.085000px;}
.y5a{bottom:832.065000px;}
.ye9{bottom:836.025000px;}
.y155{bottom:839.985000px;}
.y96{bottom:840.345000px;}
.yb4{bottom:841.785000px;}
.y118{bottom:849.705000px;}
.y197{bottom:849.885000px;}
.y59{bottom:851.505000px;}
.y16{bottom:851.685000px;}
.ye8{bottom:855.825000px;}
.y95{bottom:858.165000px;}
.y154{bottom:859.785000px;}
.y196{bottom:863.745000px;}
.y117{bottom:869.325000px;}
.y15{bottom:870.585000px;}
.y58{bottom:871.305000px;}
.y153{bottom:873.645000px;}
.y94{bottom:875.445000px;}
.ye7{bottom:875.625000px;}
.y195{bottom:877.605000px;}
.y14{bottom:883.365000px;}
.y116{bottom:890.385000px;}
.y57{bottom:891.105000px;}
.y93{bottom:892.725000px;}
.y152{bottom:893.445000px;}
.ye6{bottom:895.425000px;}
.y194{bottom:897.450000px;}
.y13{bottom:897.810000px;}
.y151{bottom:907.350000px;}
.y12{bottom:908.430000px;}
.y92{bottom:910.050000px;}
.y193{bottom:911.130000px;}
.y56{bottom:912.390000px;}
.y115{bottom:913.290000px;}
.y11{bottom:913.650000px;}
.ye5{bottom:915.450000px;}
.y10{bottom:923.190000px;}
.y192{bottom:924.990000px;}
.y150{bottom:927.150000px;}
.y91{bottom:927.330000px;}
.y114{bottom:933.090000px;}
.y55{bottom:935.250000px;}
.yf{bottom:937.230000px;}
.y14f{bottom:940.830000px;}
.y90{bottom:944.430000px;}
.y191{bottom:944.790000px;}
.y113{bottom:952.890000px;}
.y54{bottom:955.050000px;}
.y190{bottom:958.650000px;}
.ye{bottom:958.830000px;}
.y14e{bottom:960.630000px;}
.y8f{bottom:961.710000px;}
.y112{bottom:972.870000px;}
.y14d{bottom:974.490000px;}
.y53{bottom:974.850000px;}
.y18f{bottom:978.450000px;}
.y8e{bottom:978.990000px;}
.yd{bottom:980.250000px;}
.y18e{bottom:992.130000px;}
.y111{bottom:992.670000px;}
.y14c{bottom:994.290000px;}
.y52{bottom:994.650000px;}
.y8d{bottom:996.270000px;}
.yc{bottom:1000.770000px;}
.y14b{bottom:1008.150000px;}
.ydd{bottom:1009.410000px;}
.y18d{bottom:1011.930000px;}
.y110{bottom:1012.470000px;}
.y8c{bottom:1013.550000px;}
.y51{bottom:1014.630000px;}
.y18c{bottom:1025.790000px;}
.y14a{bottom:1027.950000px;}
.y8b{bottom:1030.830000px;}
.ydc{bottom:1032.270000px;}
.y50{bottom:1034.430000px;}
.yb{bottom:1035.330000px;}
.y18b{bottom:1039.650000px;}
.y149{bottom:1041.630000px;}
.y8a{bottom:1047.930000px;}
.ydb{bottom:1052.070000px;}
.y4f{bottom:1054.230000px;}
.y18a{bottom:1059.450000px;}
.y148{bottom:1061.430000px;}
.y89{bottom:1065.210000px;}
.ya{bottom:1069.890000px;}
.yda{bottom:1072.050000px;}
.y189{bottom:1073.130000px;}
.y4e{bottom:1074.030000px;}
.y147{bottom:1075.290000px;}
.y88{bottom:1082.490000px;}
.y188{bottom:1086.990000px;}
.yd9{bottom:1091.850000px;}
.y4d{bottom:1093.830000px;}
.y146{bottom:1095.090000px;}
.y87{bottom:1099.770000px;}
.y9{bottom:1101.210000px;}
.y187{bottom:1106.790000px;}
.y145{bottom:1108.950000px;}
.yd8{bottom:1111.650000px;}
.y44{bottom:1112.730000px;}
.y4c{bottom:1113.810000px;}
.y86{bottom:1116.690000px;}
.y8{bottom:1117.950000px;}
.y186{bottom:1120.650000px;}
.y144{bottom:1122.630000px;}
.yd7{bottom:1131.450000px;}
.y4b{bottom:1133.610000px;}
.y85{bottom:1133.970000px;}
.y185{bottom:1140.450000px;}
.y143{bottom:1142.430000px;}
.y84{bottom:1151.100000px;}
.yd6{bottom:1151.280000px;}
.ye4{bottom:1153.080000px;}
.y4a{bottom:1153.440000px;}
.y184{bottom:1154.160000px;}
.y7{bottom:1155.960000px;}
.y142{bottom:1156.320000px;}
.y6{bottom:1167.480000px;}
.y82{bottom:1169.460000px;}
.y48{bottom:1172.880000px;}
.y5{bottom:1175.940000px;}
.y81{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y47{bottom:1197.720000px;}
.h6{height:5.650313px;}
.hf{height:17.666016px;}
.h12{height:18.140625px;}
.h16{height:27.705000px;}
.hd{height:29.664141px;}
.hc{height:35.332031px;}
.h3{height:40.985156px;}
.h17{height:42.922699px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h26{height:49.583118px;}
.he{height:52.264673px;}
.h2{height:52.998047px;}
.h1a{height:53.573906px;}
.h8{height:54.421875px;}
.h14{height:55.503468px;}
.h11{height:55.503491px;}
.h1c{height:58.485000px;}
.h15{height:58.651172px;}
.h1d{height:58.665000px;}
.h9{height:60.226875px;}
.h1e{height:61.198500px;}
.h25{height:61.423863px;}
.h19{height:62.211094px;}
.h1f{height:62.998500px;}
.hb{height:66.543750px;}
.h13{height:66.757500px;}
.h1b{height:70.664062px;}
.h5{height:72.562500px;}
.h23{height:83.901000px;}
.h24{height:84.898125px;}
.h21{height:86.220000px;}
.h18{height:93.983203px;}
.ha{height:121.179375px;}
.h22{height:297.390000px;}
.h10{height:310.170000px;}
.h20{height:324.615000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:101.730000px;}
.w4{width:232.050000px;}
.w8{width:249.540000px;}
.w6{width:252.255000px;}
.w7{width:265.879500px;}
.w5{width:270.199500px;}
.wa{width:361.320000px;}
.wc{width:362.040000px;}
.wb{width:382.603500px;}
.w9{width:383.143500px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xd{left:-36.900000px;}
.xc{left:-19.800000px;}
.xb{left:-5.040000px;}
.x0{left:0.000000px;}
.x1b{left:8.134500px;}
.xa{left:10.650000px;}
.x9{left:26.850000px;}
.x8{left:42.510000px;}
.x7{left:58.710000px;}
.x17{left:72.901500px;}
.x6{left:78.150000px;}
.x2{left:81.036000px;}
.x16{left:82.306500px;}
.x11{left:108.036000px;}
.x1f{left:113.076000px;}
.x20{left:158.250000px;}
.x14{left:348.735000px;}
.x13{left:351.975000px;}
.x1a{left:356.820000px;}
.xf{left:359.715000px;}
.x1c{left:377.203500px;}
.x18{left:379.363500px;}
.x12{left:387.975000px;}
.x15{left:400.935000px;}
.x1d{left:410.145000px;}
.x10{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x19{left:456.960000px;}
.xe{left:590.370000px;}
.x4{left:611.790000px;}
.x1e{left:720.150000px;}
.x5{left:721.950000px;}
@media print{
.v4{vertical-align:-55.040000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.239467pt;}
.ls10{letter-spacing:-0.198933pt;}
.ls14{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls5{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls1c{letter-spacing:0.128640pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.239467pt;}
.ls8{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.280320pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.438933pt;}
.lse{letter-spacing:0.456533pt;}
.ls17{letter-spacing:0.800000pt;}
.lsa{letter-spacing:2.080000pt;}
.ls9{letter-spacing:2.720000pt;}
.lsb{letter-spacing:3.360000pt;}
.ls7{letter-spacing:4.106667pt;}
.ls16{letter-spacing:4.640000pt;}
.lsf{letter-spacing:5.920000pt;}
.ls15{letter-spacing:6.560000pt;}
.ls19{letter-spacing:7.840000pt;}
.ls1d{letter-spacing:11.680000pt;}
.ls18{letter-spacing:13.600000pt;}
.ls12{letter-spacing:27.040000pt;}
.ls1b{letter-spacing:47.520000pt;}
.ls6{letter-spacing:56.320000pt;}
.ls4{letter-spacing:56.480000pt;}
.ls20{letter-spacing:61.600000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsd{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws0{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.959467pt;}
.wsf{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.521067pt;}
.ws10{word-spacing:-10.480533pt;}
.ws11{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.718933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws8{word-spacing:-6.720000pt;}
.wsb{word-spacing:0.000000pt;}
.ws7{word-spacing:47.680000pt;}
._19{margin-left:-1.987413pt;}
._3{margin-left:-1.069227pt;}
._1{width:0.965120pt;}
._10{width:1.862400pt;}
._9{width:2.880000pt;}
._a{width:3.936000pt;}
._d{width:4.896000pt;}
._0{width:6.384640pt;}
._2{width:7.416747pt;}
._7{width:8.977280pt;}
._18{width:9.977600pt;}
._b{width:10.992000pt;}
._11{width:12.138880pt;}
._c{width:13.218560pt;}
._17{width:14.227200pt;}
._16{width:15.555200pt;}
._15{width:16.677547pt;}
._14{width:17.848320pt;}
._1d{width:19.056000pt;}
._e{width:20.496000pt;}
._6{width:22.017707pt;}
._29{width:23.155413pt;}
._13{width:24.654507pt;}
._12{width:25.816320pt;}
._1b{width:26.866347pt;}
._20{width:27.820160pt;}
._2c{width:30.830720pt;}
._1e{width:33.312000pt;}
._1f{width:34.544000pt;}
._22{width:37.447467pt;}
._21{width:38.936960pt;}
._24{width:40.861867pt;}
._23{width:42.019627pt;}
._1c{width:43.024000pt;}
._27{width:46.739200pt;}
._28{width:47.656107pt;}
._5{width:52.691840pt;}
._8{width:55.791360pt;}
._2e{width:60.846720pt;}
._2d{width:62.216107pt;}
._25{width:64.013013pt;}
._26{width:65.315627pt;}
._30{width:69.368320pt;}
._2f{width:70.338133pt;}
._2b{width:87.611947pt;}
._2a{width:88.754773pt;}
._1a{width:894.986667pt;}
._f{width:1630.485333pt;}
._4{width:1837.771093pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsa{font-size:45.199037pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fse{font-size:74.880000pt;}
.fsd{font-size:85.120000pt;}
.fs8{font-size:106.880000pt;}
.yae{bottom:-12.800000pt;}
.yb3{bottom:-11.200000pt;}
.ya5{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:2.080000pt;}
.yb5{bottom:2.400000pt;}
.yc0{bottom:3.360000pt;}
.yb2{bottom:3.680000pt;}
.y46{bottom:3.840000pt;}
.yb6{bottom:4.480000pt;}
.y2b{bottom:5.120000pt;}
.yc7{bottom:7.506667pt;}
.ybb{bottom:11.040000pt;}
.ya4{bottom:13.600000pt;}
.yac{bottom:16.000000pt;}
.y45{bottom:16.160000pt;}
.y83{bottom:16.800000pt;}
.y49{bottom:17.120000pt;}
.y2a{bottom:17.440000pt;}
.y3{bottom:17.600000pt;}
.ybf{bottom:18.720000pt;}
.y29{bottom:24.160000pt;}
.yc6{bottom:25.106667pt;}
.yba{bottom:26.240000pt;}
.ya3{bottom:27.360000pt;}
.ya8{bottom:27.520000pt;}
.yab{bottom:29.760000pt;}
.y2{bottom:30.080000pt;}
.yb1{bottom:31.360000pt;}
.ybe{bottom:33.920000pt;}
.y28{bottom:37.920000pt;}
.ya2{bottom:41.120000pt;}
.ya7{bottom:41.280000pt;}
.y1{bottom:41.440000pt;}
.yb9{bottom:41.600000pt;}
.yc5{bottom:42.906667pt;}
.yaa{bottom:43.520000pt;}
.yb0{bottom:45.120000pt;}
.ybd{bottom:49.280000pt;}
.y27{bottom:51.680000pt;}
.yb8{bottom:56.960000pt;}
.yc4{bottom:60.506667pt;}
.yd5{bottom:63.360000pt;}
.ybc{bottom:64.640000pt;}
.y26{bottom:65.600000pt;}
.yaf{bottom:67.680000pt;}
.y80{bottom:69.120000pt;}
.ya9{bottom:70.400000pt;}
.y10f{bottom:72.960000pt;}
.y183{bottom:74.080000pt;}
.y43{bottom:76.160000pt;}
.ye3{bottom:77.120000pt;}
.y141{bottom:79.200000pt;}
.y25{bottom:79.360000pt;}
.yd4{bottom:80.960000pt;}
.y1bb{bottom:84.480000pt;}
.y182{bottom:86.400000pt;}
.y7f{bottom:87.040000pt;}
.ye2{bottom:88.000000pt;}
.y10e{bottom:90.560000pt;}
.y140{bottom:91.360000pt;}
.y24{bottom:93.120000pt;}
.y42{bottom:93.760000pt;}
.ya0{bottom:97.120000pt;}
.y1ba{bottom:98.240000pt;}
.yd3{bottom:98.560000pt;}
.y181{bottom:98.720000pt;}
.y7e{bottom:104.800000pt;}
.y23{bottom:106.906667pt;}
.y10d{bottom:108.320000pt;}
.y13f{bottom:108.960000pt;}
.y41{bottom:111.360000pt;}
.y1b9{bottom:112.000000pt;}
.y9f{bottom:114.720000pt;}
.yd2{bottom:116.160000pt;}
.y180{bottom:116.320000pt;}
.y22{bottom:120.826667pt;}
.y13e{bottom:121.280000pt;}
.y7d{bottom:122.400000pt;}
.y10c{bottom:125.920000pt;}
.y17f{bottom:128.480000pt;}
.y40{bottom:129.120000pt;}
.y9e{bottom:129.600000pt;}
.yd1{bottom:133.786667pt;}
.y21{bottom:134.586667pt;}
.y2d{bottom:137.946667pt;}
.y13d{bottom:138.906667pt;}
.y1b8{bottom:139.706667pt;}
.y7c{bottom:140.026667pt;}
.y17e{bottom:140.826667pt;}
.y10b{bottom:143.546667pt;}
.y3f{bottom:146.746667pt;}
.y20{bottom:148.346667pt;}
.yd0{bottom:151.226667pt;}
.y1b7{bottom:153.466667pt;}
.y7b{bottom:157.626667pt;}
.y17d{bottom:158.426667pt;}
.y10a{bottom:161.146667pt;}
.y1f{bottom:162.106667pt;}
.y3e{bottom:164.346667pt;}
.y13c{bottom:166.266667pt;}
.y1b6{bottom:167.226667pt;}
.ycf{bottom:168.826667pt;}
.y17c{bottom:170.746667pt;}
.y7a{bottom:175.226667pt;}
.y1e{bottom:176.026667pt;}
.y109{bottom:178.746667pt;}
.y1b5{bottom:181.146667pt;}
.y3d{bottom:181.946667pt;}
.y13b{bottom:183.546667pt;}
.yce{bottom:186.746667pt;}
.y17b{bottom:188.346667pt;}
.y1d{bottom:189.786667pt;}
.y79{bottom:192.986667pt;}
.y1b4{bottom:194.906667pt;}
.y108{bottom:196.506667pt;}
.y3c{bottom:199.546667pt;}
.y17a{bottom:200.506667pt;}
.y13a{bottom:203.386667pt;}
.y1c{bottom:203.546667pt;}
.ycd{bottom:204.346667pt;}
.y78{bottom:210.266667pt;}
.y107{bottom:214.106667pt;}
.y1b{bottom:217.306667pt;}
.y179{bottom:218.106667pt;}
.ycc{bottom:221.946667pt;}
.y1b3{bottom:222.426667pt;}
.y139{bottom:224.026667pt;}
.y77{bottom:227.866667pt;}
.y178{bottom:230.426667pt;}
.y1a{bottom:231.226667pt;}
.y106{bottom:231.706667pt;}
.y3b{bottom:234.906667pt;}
.y1b2{bottom:236.346667pt;}
.y138{bottom:239.066667pt;}
.ycb{bottom:239.706667pt;}
.y177{bottom:242.746667pt;}
.y19{bottom:244.986667pt;}
.y76{bottom:245.786667pt;}
.y105{bottom:249.306667pt;}
.y3a{bottom:252.506667pt;}
.y137{bottom:254.426667pt;}
.y1b1{bottom:255.386667pt;}
.yca{bottom:257.306667pt;}
.y176{bottom:260.346667pt;}
.y75{bottom:263.386667pt;}
.y18{bottom:264.506667pt;}
.y104{bottom:266.906667pt;}
.y136{bottom:269.946667pt;}
.y39{bottom:270.106667pt;}
.y175{bottom:272.506667pt;}
.yc9{bottom:274.586667pt;}
.y2c{bottom:275.706667pt;}
.y74{bottom:281.146667pt;}
.y103{bottom:284.666667pt;}
.y174{bottom:284.826667pt;}
.y135{bottom:285.306667pt;}
.y38{bottom:287.706667pt;}
.y1b0{bottom:293.626667pt;}
.yc8{bottom:294.426667pt;}
.y73{bottom:298.746667pt;}
.y134{bottom:300.666667pt;}
.y102{bottom:302.266667pt;}
.y173{bottom:302.426667pt;}
.y37{bottom:305.466667pt;}
.yc3{bottom:312.360000pt;}
.y1af{bottom:312.826667pt;}
.y172{bottom:314.746667pt;}
.y133{bottom:316.026667pt;}
.y72{bottom:316.346667pt;}
.y101{bottom:319.866667pt;}
.y36{bottom:323.066667pt;}
.y132{bottom:331.386667pt;}
.y1ae{bottom:332.026667pt;}
.y171{bottom:332.346667pt;}
.y71{bottom:333.946667pt;}
.y100{bottom:337.466667pt;}
.y35{bottom:340.666667pt;}
.y170{bottom:344.506667pt;}
.y131{bottom:346.426667pt;}
.y1ad{bottom:351.066667pt;}
.y70{bottom:351.546667pt;}
.yff{bottom:355.106667pt;}
.y34{bottom:358.306667pt;}
.y130{bottom:361.666667pt;}
.y16f{bottom:362.146667pt;}
.y6f{bottom:369.346667pt;}
.y1ac{bottom:370.306667pt;}
.yfe{bottom:372.866667pt;}
.y16e{bottom:374.466667pt;}
.y33{bottom:375.906667pt;}
.y12f{bottom:377.346667pt;}
.y6e{bottom:386.626667pt;}
.y16d{bottom:386.786667pt;}
.yc2{bottom:387.586667pt;}
.yfd{bottom:390.466667pt;}
.y12e{bottom:392.706667pt;}
.y32{bottom:393.666667pt;}
.y6d{bottom:404.226667pt;}
.y16c{bottom:404.386667pt;}
.y12d{bottom:407.746667pt;}
.yfc{bottom:408.066667pt;}
.y31{bottom:411.266667pt;}
.y9d{bottom:413.026667pt;}
.y16b{bottom:416.546667pt;}
.y1ab{bottom:421.826667pt;}
.y6c{bottom:422.146667pt;}
.y12c{bottom:423.106667pt;}
.yfb{bottom:425.666667pt;}
.y9c{bottom:428.546667pt;}
.y30{bottom:428.866667pt;}
.ya6{bottom:432.866667pt;}
.ya1{bottom:434.146667pt;}
.y12b{bottom:438.786667pt;}
.y9b{bottom:439.106667pt;}
.y1aa{bottom:439.426667pt;}
.y6b{bottom:439.746667pt;}
.yfa{bottom:443.266667pt;}
.y2f{bottom:446.146667pt;}
.y16a{bottom:446.466667pt;}
.y9a{bottom:449.666667pt;}
.y12a{bottom:453.666667pt;}
.y1a9{bottom:457.186667pt;}
.y6a{bottom:457.506667pt;}
.y169{bottom:458.786667pt;}
.y99{bottom:460.226667pt;}
.yf9{bottom:461.026667pt;}
.y2e{bottom:464.066667pt;}
.y129{bottom:469.026667pt;}
.y1a8{bottom:474.786667pt;}
.y69{bottom:475.106667pt;}
.y98{bottom:475.586667pt;}
.y17{bottom:476.226667pt;}
.y168{bottom:476.386667pt;}
.yf8{bottom:478.626667pt;}
.y128{bottom:484.706667pt;}
.y167{bottom:488.546667pt;}
.y97{bottom:489.826667pt;}
.y1a7{bottom:492.386667pt;}
.y68{bottom:492.706667pt;}
.yf7{bottom:496.226667pt;}
.y127{bottom:500.066667pt;}
.y166{bottom:506.146667pt;}
.y1a6{bottom:509.986667pt;}
.y67{bottom:510.306667pt;}
.yf6{bottom:513.826667pt;}
.y126{bottom:515.106667pt;}
.y165{bottom:518.466667pt;}
.y1a5{bottom:527.586667pt;}
.y66{bottom:527.906667pt;}
.y125{bottom:530.466667pt;}
.yf5{bottom:531.426667pt;}
.y164{bottom:536.066667pt;}
.y1a4{bottom:545.346667pt;}
.y65{bottom:545.666667pt;}
.y124{bottom:545.986667pt;}
.ye1{bottom:546.466667pt;}
.y163{bottom:548.386667pt;}
.yf4{bottom:549.186667pt;}
.y162{bottom:560.546667pt;}
.y123{bottom:561.346667pt;}
.y1a3{bottom:562.946667pt;}
.y64{bottom:563.266667pt;}
.ye0{bottom:563.426667pt;}
.yf3{bottom:566.786667pt;}
.ydf{bottom:576.093333pt;}
.y122{bottom:576.413333pt;}
.y161{bottom:578.173333pt;}
.y1a2{bottom:580.573333pt;}
.y63{bottom:580.893333pt;}
.yf2{bottom:584.413333pt;}
.yde{bottom:586.973333pt;}
.y160{bottom:590.493333pt;}
.y121{bottom:591.773333pt;}
.y1a1{bottom:598.173333pt;}
.y62{bottom:598.493333pt;}
.yf1{bottom:602.013333pt;}
.y15f{bottom:602.813333pt;}
.y120{bottom:607.133333pt;}
.y1a0{bottom:615.773333pt;}
.y61{bottom:616.093333pt;}
.yf0{bottom:619.613333pt;}
.y15e{bottom:620.413333pt;}
.y11f{bottom:626.813333pt;}
.y15d{bottom:632.573333pt;}
.y19f{bottom:633.533333pt;}
.y60{bottom:633.853333pt;}
.yef{bottom:637.373333pt;}
.y15c{bottom:644.893333pt;}
.y11e{bottom:649.533333pt;}
.y19e{bottom:651.133333pt;}
.y5f{bottom:651.453333pt;}
.yee{bottom:654.973333pt;}
.yc1{bottom:658.173333pt;}
.y15b{bottom:662.493333pt;}
.y11d{bottom:667.133333pt;}
.y5e{bottom:669.053333pt;}
.yb7{bottom:670.973333pt;}
.y19d{bottom:671.293333pt;}
.yed{bottom:672.573333pt;}
.y15a{bottom:674.813333pt;}
.y19c{bottom:683.613333pt;}
.y11c{bottom:684.893333pt;}
.y5d{bottom:686.333333pt;}
.yec{bottom:690.173333pt;}
.y159{bottom:692.413333pt;}
.y19b{bottom:695.773333pt;}
.y11b{bottom:702.493333pt;}
.y5c{bottom:703.933333pt;}
.y158{bottom:704.573333pt;}
.yeb{bottom:707.773333pt;}
.y19a{bottom:713.373333pt;}
.y157{bottom:716.893333pt;}
.y11a{bottom:720.093333pt;}
.y5b{bottom:722.013333pt;}
.yea{bottom:725.533333pt;}
.y199{bottom:725.693333pt;}
.y156{bottom:734.493333pt;}
.y119{bottom:737.693333pt;}
.y198{bottom:737.853333pt;}
.y5a{bottom:739.613333pt;}
.ye9{bottom:743.133333pt;}
.y155{bottom:746.653333pt;}
.y96{bottom:746.973333pt;}
.yb4{bottom:748.253333pt;}
.y118{bottom:755.293333pt;}
.y197{bottom:755.453333pt;}
.y59{bottom:756.893333pt;}
.y16{bottom:757.053333pt;}
.ye8{bottom:760.733333pt;}
.y95{bottom:762.813333pt;}
.y154{bottom:764.253333pt;}
.y196{bottom:767.773333pt;}
.y117{bottom:772.733333pt;}
.y15{bottom:773.853333pt;}
.y58{bottom:774.493333pt;}
.y153{bottom:776.573333pt;}
.y94{bottom:778.173333pt;}
.ye7{bottom:778.333333pt;}
.y195{bottom:780.093333pt;}
.y14{bottom:785.213333pt;}
.y116{bottom:791.453333pt;}
.y57{bottom:792.093333pt;}
.y93{bottom:793.533333pt;}
.y152{bottom:794.173333pt;}
.ye6{bottom:795.933333pt;}
.y194{bottom:797.733333pt;}
.y13{bottom:798.053333pt;}
.y151{bottom:806.533333pt;}
.y12{bottom:807.493333pt;}
.y92{bottom:808.933333pt;}
.y193{bottom:809.893333pt;}
.y56{bottom:811.013333pt;}
.y115{bottom:811.813333pt;}
.y11{bottom:812.133333pt;}
.ye5{bottom:813.733333pt;}
.y10{bottom:820.613333pt;}
.y192{bottom:822.213333pt;}
.y150{bottom:824.133333pt;}
.y91{bottom:824.293333pt;}
.y114{bottom:829.413333pt;}
.y55{bottom:831.333333pt;}
.yf{bottom:833.093333pt;}
.y14f{bottom:836.293333pt;}
.y90{bottom:839.493333pt;}
.y191{bottom:839.813333pt;}
.y113{bottom:847.013333pt;}
.y54{bottom:848.933333pt;}
.y190{bottom:852.133333pt;}
.ye{bottom:852.293333pt;}
.y14e{bottom:853.893333pt;}
.y8f{bottom:854.853333pt;}
.y112{bottom:864.773333pt;}
.y14d{bottom:866.213333pt;}
.y53{bottom:866.533333pt;}
.y18f{bottom:869.733333pt;}
.y8e{bottom:870.213333pt;}
.yd{bottom:871.333333pt;}
.y18e{bottom:881.893333pt;}
.y111{bottom:882.373333pt;}
.y14c{bottom:883.813333pt;}
.y52{bottom:884.133333pt;}
.y8d{bottom:885.573333pt;}
.yc{bottom:889.573333pt;}
.y14b{bottom:896.133333pt;}
.ydd{bottom:897.253333pt;}
.y18d{bottom:899.493333pt;}
.y110{bottom:899.973333pt;}
.y8c{bottom:900.933333pt;}
.y51{bottom:901.893333pt;}
.y18c{bottom:911.813333pt;}
.y14a{bottom:913.733333pt;}
.y8b{bottom:916.293333pt;}
.ydc{bottom:917.573333pt;}
.y50{bottom:919.493333pt;}
.yb{bottom:920.293333pt;}
.y18b{bottom:924.133333pt;}
.y149{bottom:925.893333pt;}
.y8a{bottom:931.493333pt;}
.ydb{bottom:935.173333pt;}
.y4f{bottom:937.093333pt;}
.y18a{bottom:941.733333pt;}
.y148{bottom:943.493333pt;}
.y89{bottom:946.853333pt;}
.ya{bottom:951.013333pt;}
.yda{bottom:952.933333pt;}
.y189{bottom:953.893333pt;}
.y4e{bottom:954.693333pt;}
.y147{bottom:955.813333pt;}
.y88{bottom:962.213333pt;}
.y188{bottom:966.213333pt;}
.yd9{bottom:970.533333pt;}
.y4d{bottom:972.293333pt;}
.y146{bottom:973.413333pt;}
.y87{bottom:977.573333pt;}
.y9{bottom:978.853333pt;}
.y187{bottom:983.813333pt;}
.y145{bottom:985.733333pt;}
.yd8{bottom:988.133333pt;}
.y44{bottom:989.093333pt;}
.y4c{bottom:990.053333pt;}
.y86{bottom:992.613333pt;}
.y8{bottom:993.733333pt;}
.y186{bottom:996.133333pt;}
.y144{bottom:997.893333pt;}
.yd7{bottom:1005.733333pt;}
.y4b{bottom:1007.653333pt;}
.y85{bottom:1007.973333pt;}
.y185{bottom:1013.733333pt;}
.y143{bottom:1015.493333pt;}
.y84{bottom:1023.200000pt;}
.yd6{bottom:1023.360000pt;}
.ye4{bottom:1024.960000pt;}
.y4a{bottom:1025.280000pt;}
.y184{bottom:1025.920000pt;}
.y7{bottom:1027.520000pt;}
.y142{bottom:1027.840000pt;}
.y6{bottom:1037.760000pt;}
.y82{bottom:1039.520000pt;}
.y48{bottom:1042.560000pt;}
.y5{bottom:1045.280000pt;}
.y81{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y47{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.hf{height:15.703125pt;}
.h12{height:16.125000pt;}
.h16{height:24.626667pt;}
.hd{height:26.368125pt;}
.hc{height:31.406250pt;}
.h3{height:36.431250pt;}
.h17{height:38.153511pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h26{height:44.073883pt;}
.he{height:46.457487pt;}
.h2{height:47.109375pt;}
.h1a{height:47.621250pt;}
.h8{height:48.375000pt;}
.h14{height:49.336416pt;}
.h11{height:49.336436pt;}
.h1c{height:51.986667pt;}
.h15{height:52.134375pt;}
.h1d{height:52.146667pt;}
.h9{height:53.535000pt;}
.h1e{height:54.398667pt;}
.h25{height:54.598989pt;}
.h19{height:55.298750pt;}
.h1f{height:55.998667pt;}
.hb{height:59.150000pt;}
.h13{height:59.340000pt;}
.h1b{height:62.812500pt;}
.h5{height:64.500000pt;}
.h23{height:74.578667pt;}
.h24{height:75.465000pt;}
.h21{height:76.640000pt;}
.h18{height:83.540625pt;}
.ha{height:107.715000pt;}
.h22{height:264.346667pt;}
.h10{height:275.706667pt;}
.h20{height:288.546667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:90.426667pt;}
.w4{width:206.266667pt;}
.w8{width:221.813333pt;}
.w6{width:224.226667pt;}
.w7{width:236.337333pt;}
.w5{width:240.177333pt;}
.wa{width:321.173333pt;}
.wc{width:321.813333pt;}
.wb{width:340.092000pt;}
.w9{width:340.572000pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xd{left:-32.800000pt;}
.xc{left:-17.600000pt;}
.xb{left:-4.480000pt;}
.x0{left:0.000000pt;}
.x1b{left:7.230667pt;}
.xa{left:9.466667pt;}
.x9{left:23.866667pt;}
.x8{left:37.786667pt;}
.x7{left:52.186667pt;}
.x17{left:64.801333pt;}
.x6{left:69.466667pt;}
.x2{left:72.032000pt;}
.x16{left:73.161333pt;}
.x11{left:96.032000pt;}
.x1f{left:100.512000pt;}
.x20{left:140.666667pt;}
.x14{left:309.986667pt;}
.x13{left:312.866667pt;}
.x1a{left:317.173333pt;}
.xf{left:319.746667pt;}
.x1c{left:335.292000pt;}
.x18{left:337.212000pt;}
.x12{left:344.866667pt;}
.x15{left:356.386667pt;}
.x1d{left:364.573333pt;}
.x10{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x19{left:406.186667pt;}
.xe{left:524.773333pt;}
.x4{left:543.813333pt;}
.x1e{left:640.133333pt;}
.x5{left:641.733333pt;}
}




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