
    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_efebfb91dcd49e88c35c2d7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_d77b91c6f38d26b23578fbbe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.805176;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_c7d211361ae7c3aea91a73da.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_89b3010f763fa551dc8d5c66.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_e8fb9533fd93551b042d071a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_35535fe902524bc6afaae83e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_0a99068596502d5460ed349c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_49d9ecec3921634285186223.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986328;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_f2daad1f88a3f0c22ff2e088.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986328;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_c43041b88d2f970930dd8ad7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.805176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_154ace846172e48e567cca3e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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:ffc;src:url('chunks/assets/font_ecb990a94db30aee4614661b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100098;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:ffd;src:url('chunks/assets/font_1cfa01ba855ce7384a87ed8a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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:ff10;src:url('chunks/assets/font_a9de86baca741e563547209a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.040039;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);}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.460200px;}
.ls13{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.540000px;}
.ls1{letter-spacing:4.170240px;}
.ls12{letter-spacing:9.540000px;}
.ls2{letter-spacing:14.585760px;}
.ls11{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.ls8{letter-spacing:64.026720px;}
.ls3{letter-spacing:111.060000px;}
.ls5{letter-spacing:111.204000px;}
.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;}
}
.ws5{word-spacing:-63.360000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.ws7{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.146400px;}
.ws8{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.479800px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._34{margin-left:-8.153760px;}
._4{margin-left:-7.049280px;}
._c{margin-left:-5.816160px;}
._6{margin-left:-4.366080px;}
._14{margin-left:-3.336720px;}
._9{margin-left:-2.332800px;}
._0{margin-left:-1.224000px;}
._5{width:1.071840px;}
._1{width:2.184000px;}
._7{width:3.466080px;}
._3{width:4.979520px;}
._11{width:6.050160px;}
._8{width:7.171200px;}
._b{width:8.848320px;}
._10{width:9.979920px;}
._1c{width:11.275200px;}
._19{width:12.473280px;}
._15{width:13.572720px;}
._a{width:16.676640px;}
._13{width:18.047520px;}
._12{width:19.840320px;}
._18{width:21.158880px;}
._1b{width:22.170960px;}
._1e{width:23.433600px;}
._2b{width:24.680880px;}
._21{width:25.816320px;}
._20{width:27.134880px;}
._2a{width:28.150800px;}
._d{width:29.282400px;}
._24{width:30.365520px;}
._16{width:32.031360px;}
._17{width:33.075600px;}
._36{width:34.100640px;}
._25{width:35.138880px;}
._2f{width:36.569280px;}
._22{width:37.712400px;}
._23{width:39.561120px;}
._2c{width:41.413680px;}
._1f{width:42.429600px;}
._29{width:43.899360px;}
._26{width:44.910720px;}
._27{width:46.110720px;}
._1a{width:47.656320px;}
._28{width:49.554000px;}
._33{width:52.110720px;}
._2d{width:53.903520px;}
._2e{width:56.159520px;}
._1d{width:57.504000px;}
._e{width:59.162400px;}
._39{width:60.540720px;}
._37{width:61.720800px;}
._3d{width:64.249680px;}
._3c{width:65.381280px;}
._32{width:68.066640px;}
._31{width:69.441120px;}
._3f{width:70.458480px;}
._3a{width:72.773040px;}
._41{width:82.867680px;}
._40{width:83.903040px;}
._f{width:107.687520px;}
._30{width:111.204000px;}
._3e{width:137.571360px;}
._38{width:164.638800px;}
._35{width:167.865840px;}
._3b{width:177.789840px;}
._2{width:303.508320px;}
.fc3{color:transparent;}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.720000px;}
.y125{bottom:3.240000px;}
.y20{bottom:5.760000px;}
.y14d{bottom:5.940000px;}
.ye7{bottom:6.660000px;}
.yf8{bottom:6.840000px;}
.yea{bottom:7.200000px;}
.y11{bottom:7.560000px;}
.y107{bottom:7.590000px;}
.y134{bottom:8.460000px;}
.y139{bottom:8.640000px;}
.y13d{bottom:8.820000px;}
.y109{bottom:9.540000px;}
.y123{bottom:11.880000px;}
.y6{bottom:13.680000px;}
.y122{bottom:17.100000px;}
.y14a{bottom:19.260000px;}
.y124{bottom:20.340000px;}
.yef{bottom:20.700000px;}
.yf7{bottom:20.730000px;}
.y136{bottom:21.060000px;}
.ye9{bottom:21.240000px;}
.y10d{bottom:22.500000px;}
.y13a{bottom:22.680000px;}
.y1f{bottom:25.560000px;}
.yf4{bottom:27.900000px;}
.ye5{bottom:27.945000px;}
.y157{bottom:28.620000px;}
.y15b{bottom:28.980000px;}
.y15f{bottom:29.160000px;}
.y137{bottom:35.100000px;}
.y149{bottom:36.540000px;}
.yf3{bottom:41.940000px;}
.y5{bottom:45.000000px;}
.y1e{bottom:45.540000px;}
.y159{bottom:46.260000px;}
.y15d{bottom:46.485000px;}
.y133{bottom:65.160000px;}
.y1d{bottom:65.340000px;}
.y9{bottom:68.580000px;}
.y4{bottom:76.320000px;}
.yc1{bottom:79.200000px;}
.y1c{bottom:85.140000px;}
.y32{bottom:93.060000px;}
.yb9{bottom:93.780000px;}
.y7a{bottom:99.180000px;}
.ye2{bottom:102.780000px;}
.y39{bottom:104.400000px;}
.y1b{bottom:104.940000px;}
.y180{bottom:107.640000px;}
.y3{bottom:107.670000px;}
.y66{bottom:108.180000px;}
.ya3{bottom:111.780000px;}
.y31{bottom:116.460000px;}
.yb8{bottom:117.180000px;}
.ydc{bottom:120.780000px;}
.y120{bottom:121.140000px;}
.y19e{bottom:122.040000px;}
.y155{bottom:124.380000px;}
.y1a{bottom:124.770000px;}
.ye1{bottom:126.180000px;}
.y38{bottom:127.800000px;}
.y17f{bottom:131.040000px;}
.y65{bottom:131.580000px;}
.ya2{bottom:135.180000px;}
.yf6{bottom:136.980000px;}
.y2{bottom:139.350000px;}
.y30{bottom:139.860000px;}
.yb7{bottom:140.580000px;}
.ydb{bottom:144.180000px;}
.y11f{bottom:144.540000px;}
.y19{bottom:144.750000px;}
.y19d{bottom:145.440000px;}
.y154{bottom:147.780000px;}
.ye3{bottom:149.580000px;}
.y37{bottom:151.200000px;}
.y17e{bottom:154.470000px;}
.y64{bottom:155.010000px;}
.yf5{bottom:157.710000px;}
.ya1{bottom:158.610000px;}
.y2f{bottom:163.290000px;}
.yc0{bottom:164.010000px;}
.y18{bottom:164.550000px;}
.yda{bottom:167.610000px;}
.y11e{bottom:167.970000px;}
.y19c{bottom:168.870000px;}
.y153{bottom:171.210000px;}
.yb6{bottom:173.010000px;}
.y36{bottom:174.630000px;}
.y17d{bottom:177.870000px;}
.y63{bottom:178.410000px;}
.yf2{bottom:178.950000px;}
.ya0{bottom:182.010000px;}
.y17{bottom:184.350000px;}
.y2e{bottom:186.690000px;}
.ybf{bottom:187.410000px;}
.yd9{bottom:191.010000px;}
.y11d{bottom:191.370000px;}
.y19b{bottom:192.270000px;}
.y152{bottom:194.610000px;}
.yb5{bottom:196.410000px;}
.y35{bottom:198.030000px;}
.y17c{bottom:201.270000px;}
.y62{bottom:201.810000px;}
.y16{bottom:204.150000px;}
.y9f{bottom:205.410000px;}
.y2d{bottom:210.090000px;}
.ybe{bottom:210.810000px;}
.yd8{bottom:214.410000px;}
.y11c{bottom:214.770000px;}
.y19a{bottom:215.670000px;}
.y151{bottom:218.010000px;}
.yb4{bottom:219.810000px;}
.yf1{bottom:220.890000px;}
.y34{bottom:221.430000px;}
.y15{bottom:223.950000px;}
.y17b{bottom:224.670000px;}
.y61{bottom:225.210000px;}
.y9e{bottom:228.810000px;}
.y11a{bottom:229.170000px;}
.ybd{bottom:234.210000px;}
.y150{bottom:235.830000px;}
.yd7{bottom:237.810000px;}
.y11b{bottom:238.170000px;}
.y199{bottom:239.070000px;}
.yf0{bottom:241.590000px;}
.y2c{bottom:242.490000px;}
.yb3{bottom:243.210000px;}
.y14{bottom:243.930000px;}
.y33{bottom:244.830000px;}
.y17a{bottom:248.070000px;}
.y60{bottom:248.610000px;}
.y9d{bottom:252.210000px;}
.ybc{bottom:257.610000px;}
.y14f{bottom:259.410000px;}
.yd6{bottom:261.210000px;}
.y119{bottom:261.570000px;}
.y198{bottom:262.470000px;}
.yee{bottom:262.830000px;}
.y13{bottom:263.730000px;}
.yb2{bottom:266.610000px;}
.y179{bottom:271.470000px;}
.y79{bottom:272.010000px;}
.y9c{bottom:275.610000px;}
.y2b{bottom:277.230000px;}
.y5f{bottom:281.010000px;}
.y14e{bottom:282.990000px;}
.yed{bottom:283.530000px;}
.yd5{bottom:284.610000px;}
.y118{bottom:284.970000px;}
.y197{bottom:285.870000px;}
.yb1{bottom:290.010000px;}
.y178{bottom:294.870000px;}
.y78{bottom:295.410000px;}
.y9b{bottom:299.010000px;}
.y2a{bottom:300.630000px;}
.y5e{bottom:304.410000px;}
.yec{bottom:304.770000px;}
.y14c{bottom:306.570000px;}
.yd4{bottom:308.010000px;}
.y117{bottom:308.370000px;}
.y196{bottom:309.270000px;}
.yb0{bottom:313.410000px;}
.y177{bottom:318.270000px;}
.y77{bottom:318.810000px;}
.y9a{bottom:322.410000px;}
.y29{bottom:324.030000px;}
.yeb{bottom:325.470000px;}
.y5d{bottom:327.810000px;}
.y14b{bottom:330.330000px;}
.yd3{bottom:330.870000px;}
.y1a0{bottom:331.410000px;}
.y116{bottom:331.770000px;}
.y195{bottom:332.670000px;}
.yaf{bottom:336.810000px;}
.y176{bottom:341.670000px;}
.y76{bottom:342.210000px;}
.y99{bottom:345.810000px;}
.ye8{bottom:346.170000px;}
.y28{bottom:347.430000px;}
.y5c{bottom:351.210000px;}
.y148{bottom:353.910000px;}
.yd2{bottom:354.810000px;}
.y115{bottom:355.170000px;}
.y194{bottom:356.070000px;}
.yae{bottom:360.210000px;}
.y175{bottom:365.070000px;}
.ye6{bottom:367.410000px;}
.y98{bottom:369.210000px;}
.y27{bottom:370.830000px;}
.y5b{bottom:374.610000px;}
.yd1{bottom:378.210000px;}
.y114{bottom:378.570000px;}
.y193{bottom:379.470000px;}
.yad{bottom:383.610000px;}
.y174{bottom:388.470000px;}
.ye4{bottom:389.550000px;}
.y97{bottom:392.610000px;}
.y26{bottom:394.230000px;}
.y5a{bottom:398.010000px;}
.yd0{bottom:401.115000px;}
.y19f{bottom:401.655000px;}
.y113{bottom:402.015000px;}
.y192{bottom:402.915000px;}
.yac{bottom:407.055000px;}
.y173{bottom:411.915000px;}
.y96{bottom:416.055000px;}
.y25{bottom:417.675000px;}
.y59{bottom:421.455000px;}
.ycf{bottom:425.055000px;}
.y112{bottom:425.415000px;}
.y191{bottom:426.315000px;}
.y147{bottom:428.655000px;}
.yab{bottom:430.455000px;}
.y172{bottom:435.315000px;}
.y95{bottom:439.455000px;}
.y24{bottom:441.075000px;}
.y58{bottom:444.855000px;}
.yce{bottom:448.455000px;}
.y111{bottom:448.815000px;}
.y190{bottom:449.715000px;}
.y146{bottom:452.055000px;}
.yaa{bottom:453.855000px;}
.y94{bottom:462.855000px;}
.y23{bottom:464.475000px;}
.y171{bottom:467.715000px;}
.y57{bottom:468.255000px;}
.ycd{bottom:471.315000px;}
.ye0{bottom:471.855000px;}
.y110{bottom:472.215000px;}
.y18f{bottom:473.115000px;}
.y145{bottom:475.455000px;}
.ya9{bottom:477.255000px;}
.y93{bottom:486.255000px;}
.y22{bottom:487.875000px;}
.y170{bottom:491.115000px;}
.y56{bottom:491.655000px;}
.ycc{bottom:495.255000px;}
.y10f{bottom:495.615000px;}
.y18e{bottom:496.515000px;}
.y144{bottom:498.855000px;}
.ybb{bottom:500.655000px;}
.y92{bottom:509.655000px;}
.y21{bottom:511.275000px;}
.y16f{bottom:514.515000px;}
.y55{bottom:515.055000px;}
.ycb{bottom:518.655000px;}
.y10e{bottom:519.015000px;}
.y18d{bottom:519.915000px;}
.y143{bottom:522.255000px;}
.yba{bottom:524.055000px;}
.y12{bottom:529.095000px;}
.y91{bottom:533.055000px;}
.y10c{bottom:536.835000px;}
.y16e{bottom:537.915000px;}
.y75{bottom:538.455000px;}
.yca{bottom:541.515000px;}
.ydf{bottom:542.055000px;}
.y18c{bottom:543.315000px;}
.y142{bottom:545.655000px;}
.y54{bottom:547.455000px;}
.y90{bottom:556.455000px;}
.y16d{bottom:561.315000px;}
.y74{bottom:561.855000px;}
.yc9{bottom:565.455000px;}
.y18b{bottom:566.715000px;}
.y141{bottom:569.055000px;}
.y53{bottom:570.855000px;}
.y10b{bottom:573.375000px;}
.y8f{bottom:579.855000px;}
.y16c{bottom:584.715000px;}
.y73{bottom:585.255000px;}
.yc8{bottom:588.855000px;}
.y18a{bottom:590.115000px;}
.y140{bottom:592.455000px;}
.y52{bottom:594.255000px;}
.y10a{bottom:596.955000px;}
.y8e{bottom:603.255000px;}
.y16b{bottom:608.115000px;}
.y72{bottom:608.655000px;}
.yc7{bottom:611.715000px;}
.yde{bottom:612.255000px;}
.y189{bottom:613.515000px;}
.y13f{bottom:615.855000px;}
.y51{bottom:617.655000px;}
.y108{bottom:620.355000px;}
.y8d{bottom:626.655000px;}
.y16a{bottom:631.515000px;}
.y71{bottom:632.055000px;}
.yc6{bottom:635.655000px;}
.y13e{bottom:639.255000px;}
.y50{bottom:641.055000px;}
.y106{bottom:644.655000px;}
.y188{bottom:645.915000px;}
.y8c{bottom:650.085000px;}
.y169{bottom:654.945000px;}
.y70{bottom:655.485000px;}
.y13c{bottom:657.825000px;}
.yc5{bottom:659.085000px;}
.y4f{bottom:664.485000px;}
.y187{bottom:669.345000px;}
.y105{bottom:673.305000px;}
.y8b{bottom:673.485000px;}
.y168{bottom:678.345000px;}
.y6f{bottom:678.885000px;}
.y13b{bottom:680.685000px;}
.yc4{bottom:681.945000px;}
.ydd{bottom:682.485000px;}
.y4e{bottom:687.885000px;}
.y186{bottom:692.745000px;}
.y104{bottom:696.705000px;}
.ya8{bottom:696.885000px;}
.y167{bottom:701.745000px;}
.y138{bottom:703.365000px;}
.y8a{bottom:705.885000px;}
.y4d{bottom:711.285000px;}
.y185{bottom:716.145000px;}
.y103{bottom:720.105000px;}
.ya7{bottom:720.285000px;}
.y166{bottom:725.145000px;}
.y135{bottom:726.045000px;}
.y89{bottom:729.285000px;}
.y4c{bottom:734.685000px;}
.y184{bottom:739.545000px;}
.y102{bottom:743.505000px;}
.ya6{bottom:743.685000px;}
.y165{bottom:748.545000px;}
.yc3{bottom:752.145000px;}
.y88{bottom:752.685000px;}
.y4b{bottom:758.085000px;}
.y132{bottom:761.145000px;}
.y183{bottom:762.945000px;}
.y101{bottom:766.905000px;}
.ya5{bottom:767.085000px;}
.y164{bottom:771.945000px;}
.y87{bottom:776.085000px;}
.y4a{bottom:781.485000px;}
.y182{bottom:786.345000px;}
.y100{bottom:790.305000px;}
.ya4{bottom:790.485000px;}
.y163{bottom:795.345000px;}
.y86{bottom:799.485000px;}
.y6e{bottom:804.885000px;}
.y10{bottom:807.585000px;}
.y181{bottom:809.745000px;}
.yff{bottom:813.705000px;}
.y49{bottom:813.885000px;}
.y162{bottom:818.745000px;}
.y85{bottom:822.885000px;}
.y6d{bottom:828.105000px;}
.y131{bottom:834.045000px;}
.y48{bottom:837.105000px;}
.yf{bottom:840.705000px;}
.y161{bottom:842.145000px;}
.y84{bottom:846.105000px;}
.yc2{bottom:846.285000px;}
.y6c{bottom:851.505000px;}
.y130{bottom:857.445000px;}
.y47{bottom:860.505000px;}
.y160{bottom:865.545000px;}
.ye{bottom:869.325000px;}
.y83{bottom:869.505000px;}
.y6b{bottom:874.905000px;}
.y12f{bottom:880.845000px;}
.y46{bottom:883.905000px;}
.y15c{bottom:884.085000px;}
.yd{bottom:886.965000px;}
.y82{bottom:892.905000px;}
.y6a{bottom:898.350000px;}
.y15e{bottom:901.410000px;}
.y12e{bottom:904.290000px;}
.y45{bottom:907.350000px;}
.yc{bottom:910.950000px;}
.y81{bottom:916.350000px;}
.y69{bottom:921.750000px;}
.y12d{bottom:927.690000px;}
.y44{bottom:930.750000px;}
.y80{bottom:939.750000px;}
.yb{bottom:942.810000px;}
.y158{bottom:944.610000px;}
.y12c{bottom:951.090000px;}
.y43{bottom:954.150000px;}
.y15a{bottom:961.890000px;}
.y7f{bottom:963.150000px;}
.y12b{bottom:974.490000px;}
.y42{bottom:977.550000px;}
.y7e{bottom:986.550000px;}
.ya{bottom:989.610000px;}
.yfe{bottom:996.090000px;}
.y12a{bottom:997.890000px;}
.y41{bottom:1000.950000px;}
.y156{bottom:1006.350000px;}
.y7d{bottom:1009.950000px;}
.y129{bottom:1015.710000px;}
.yfd{bottom:1016.790000px;}
.y40{bottom:1024.350000px;}
.y8{bottom:1026.870000px;}
.y128{bottom:1032.990000px;}
.y7c{bottom:1033.350000px;}
.yfc{bottom:1038.030000px;}
.y1{bottom:1040.730000px;}
.y3f{bottom:1047.750000px;}
.y127{bottom:1050.270000px;}
.y7b{bottom:1056.750000px;}
.yfb{bottom:1058.730000px;}
.y126{bottom:1067.550000px;}
.y68{bottom:1071.150000px;}
.yfa{bottom:1079.970000px;}
.y3e{bottom:1080.150000px;}
.y121{bottom:1085.550000px;}
.y67{bottom:1094.550000px;}
.yf9{bottom:1100.670000px;}
.y3d{bottom:1103.550000px;}
.y3c{bottom:1126.950000px;}
.y3b{bottom:1159.920000px;}
.y3a{bottom:1182.780000px;}
.h1e{height:17.280000px;}
.h2a{height:17.316000px;}
.h15{height:20.700000px;}
.h18{height:20.736000px;}
.h16{height:21.240000px;}
.h19{height:21.636000px;}
.h24{height:22.500000px;}
.h21{height:22.680000px;}
.h22{height:22.860000px;}
.h1b{height:23.400000px;}
.h1a{height:23.580000px;}
.hc{height:26.100000px;}
.hb{height:32.425313px;}
.h1d{height:34.380000px;}
.h20{height:35.100000px;}
.h1c{height:36.540000px;}
.h6{height:40.842773px;}
.h17{height:41.940000px;}
.h14{height:41.976000px;}
.hf{height:42.164648px;}
.h25{height:42.660000px;}
.h27{height:43.020000px;}
.h29{height:43.200000px;}
.h10{height:45.024258px;}
.h12{height:45.199336px;}
.h7{height:47.933437px;}
.h4{height:48.774375px;}
.h2b{height:49.255313px;}
.h9{height:49.838906px;}
.h11{height:50.100469px;}
.h13{height:51.706406px;}
.h3{height:53.015625px;}
.ha{height:53.224453px;}
.hd{height:53.305313px;}
.h26{height:60.300000px;}
.h28{height:60.516000px;}
.h5{height:62.028281px;}
.h1f{height:65.160000px;}
.h23{height:66.636000px;}
.h8{height:67.565039px;}
.h2{height:158.250000px;}
.he{height:277.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:104.796000px;}
.w10{width:107.136000px;}
.w22{width:110.736000px;}
.w1c{width:111.276000px;}
.w28{width:113.616000px;}
.w20{width:116.100000px;}
.wa{width:121.176000px;}
.w26{width:122.760000px;}
.w27{width:122.796000px;}
.wf{width:123.156000px;}
.w1f{width:129.276000px;}
.w1e{width:129.456000px;}
.w1b{width:138.636000px;}
.w17{width:139.716000px;}
.w9{width:141.660000px;}
.w21{width:144.216000px;}
.w19{width:144.900000px;}
.w1a{width:145.836000px;}
.w3{width:146.736000px;}
.wd{width:146.916000px;}
.we{width:151.410000px;}
.w1d{width:155.370000px;}
.w25{width:163.110000px;}
.w7{width:163.290000px;}
.w8{width:168.510000px;}
.w11{width:173.370000px;}
.w12{width:186.870000px;}
.w13{width:195.690000px;}
.wb{width:202.530000px;}
.w16{width:202.710000px;}
.w15{width:213.510000px;}
.w18{width:228.135000px;}
.w23{width:246.315000px;}
.wc{width:347.115000px;}
.w24{width:522.285000px;}
.w6{width:616.830000px;}
.w2{width:637.890000px;}
.w5{width:780.120000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:1.080000px;}
.x2{left:8.100000px;}
.x1d{left:22.140000px;}
.x1{left:54.180000px;}
.x5{left:56.520000px;}
.x12{left:62.280000px;}
.xb{left:80.999987px;}
.x8{left:85.535987px;}
.xc{left:108.035987px;}
.xe{left:129.636000px;}
.x4{left:138.630000px;}
.x16{left:169.770000px;}
.x22{left:209.370000px;}
.x1c{left:290.415000px;}
.xf{left:298.155000px;}
.x26{left:308.595000px;}
.xa{left:339.014987px;}
.x17{left:343.155000px;}
.x1a{left:383.295000px;}
.x13{left:409.395000px;}
.x1e{left:435.315000px;}
.x10{left:439.815000px;}
.x7{left:462.524987px;}
.x23{left:468.105000px;}
.x27{left:471.705000px;}
.x2a{left:489.524987px;}
.xd{left:494.024987px;}
.x2b{left:516.524987px;}
.x18{left:530.025000px;}
.x14{left:556.305000px;}
.x11{left:560.985000px;}
.x1f{left:581.145000px;}
.x24{left:584.205000px;}
.x1b{left:586.005000px;}
.x28{left:594.465000px;}
.x6{left:673.350000px;}
.x3{left:692.070000px;}
.x15{left:707.730000px;}
.x29{left:717.270000px;}
.x20{left:719.610000px;}
.x19{left:725.730000px;}
.x25{left:728.430000px;}
.x9{left:757.949987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.409067pt;}
.ls13{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.480000pt;}
.ls1{letter-spacing:3.706880pt;}
.ls12{letter-spacing:8.480000pt;}
.ls2{letter-spacing:12.965120pt;}
.ls11{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls8{letter-spacing:56.912640pt;}
.ls3{letter-spacing:98.720000pt;}
.ls5{letter-spacing:98.848000pt;}
.ws5{word-spacing:-56.320000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.ws7{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.wsc{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.870933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._34{margin-left:-7.247787pt;}
._4{margin-left:-6.266027pt;}
._c{margin-left:-5.169920pt;}
._6{margin-left:-3.880960pt;}
._14{margin-left:-2.965973pt;}
._9{margin-left:-2.073600pt;}
._0{margin-left:-1.088000pt;}
._5{width:0.952747pt;}
._1{width:1.941333pt;}
._7{width:3.080960pt;}
._3{width:4.426240pt;}
._11{width:5.377920pt;}
._8{width:6.374400pt;}
._b{width:7.865173pt;}
._10{width:8.871040pt;}
._1c{width:10.022400pt;}
._19{width:11.087360pt;}
._15{width:12.064640pt;}
._a{width:14.823680pt;}
._13{width:16.042240pt;}
._12{width:17.635840pt;}
._18{width:18.807893pt;}
._1b{width:19.707520pt;}
._1e{width:20.829867pt;}
._2b{width:21.938560pt;}
._21{width:22.947840pt;}
._20{width:24.119893pt;}
._2a{width:25.022933pt;}
._d{width:26.028800pt;}
._24{width:26.991573pt;}
._16{width:28.472320pt;}
._17{width:29.400533pt;}
._36{width:30.311680pt;}
._25{width:31.234560pt;}
._2f{width:32.506027pt;}
._22{width:33.522133pt;}
._23{width:35.165440pt;}
._2c{width:36.812160pt;}
._1f{width:37.715200pt;}
._29{width:39.021653pt;}
._26{width:39.920640pt;}
._27{width:40.987307pt;}
._1a{width:42.361173pt;}
._28{width:44.048000pt;}
._33{width:46.320640pt;}
._2d{width:47.914240pt;}
._2e{width:49.919573pt;}
._1d{width:51.114667pt;}
._e{width:52.588800pt;}
._39{width:53.813973pt;}
._37{width:54.862933pt;}
._3d{width:57.110827pt;}
._3c{width:58.116693pt;}
._32{width:60.503680pt;}
._31{width:61.725440pt;}
._3f{width:62.629760pt;}
._3a{width:64.687147pt;}
._41{width:73.660160pt;}
._40{width:74.580480pt;}
._f{width:95.722240pt;}
._30{width:98.848000pt;}
._3e{width:122.285653pt;}
._38{width:146.345600pt;}
._35{width:149.214080pt;}
._3b{width:158.035413pt;}
._2{width:269.785173pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.640000pt;}
.y125{bottom:2.880000pt;}
.y20{bottom:5.120000pt;}
.y14d{bottom:5.280000pt;}
.ye7{bottom:5.920000pt;}
.yf8{bottom:6.080000pt;}
.yea{bottom:6.400000pt;}
.y11{bottom:6.720000pt;}
.y107{bottom:6.746667pt;}
.y134{bottom:7.520000pt;}
.y139{bottom:7.680000pt;}
.y13d{bottom:7.840000pt;}
.y109{bottom:8.480000pt;}
.y123{bottom:10.560000pt;}
.y6{bottom:12.160000pt;}
.y122{bottom:15.200000pt;}
.y14a{bottom:17.120000pt;}
.y124{bottom:18.080000pt;}
.yef{bottom:18.400000pt;}
.yf7{bottom:18.426667pt;}
.y136{bottom:18.720000pt;}
.ye9{bottom:18.880000pt;}
.y10d{bottom:20.000000pt;}
.y13a{bottom:20.160000pt;}
.y1f{bottom:22.720000pt;}
.yf4{bottom:24.800000pt;}
.ye5{bottom:24.840000pt;}
.y157{bottom:25.440000pt;}
.y15b{bottom:25.760000pt;}
.y15f{bottom:25.920000pt;}
.y137{bottom:31.200000pt;}
.y149{bottom:32.480000pt;}
.yf3{bottom:37.280000pt;}
.y5{bottom:40.000000pt;}
.y1e{bottom:40.480000pt;}
.y159{bottom:41.120000pt;}
.y15d{bottom:41.320000pt;}
.y133{bottom:57.920000pt;}
.y1d{bottom:58.080000pt;}
.y9{bottom:60.960000pt;}
.y4{bottom:67.840000pt;}
.yc1{bottom:70.400000pt;}
.y1c{bottom:75.680000pt;}
.y32{bottom:82.720000pt;}
.yb9{bottom:83.360000pt;}
.y7a{bottom:88.160000pt;}
.ye2{bottom:91.360000pt;}
.y39{bottom:92.800000pt;}
.y1b{bottom:93.280000pt;}
.y180{bottom:95.680000pt;}
.y3{bottom:95.706667pt;}
.y66{bottom:96.160000pt;}
.ya3{bottom:99.360000pt;}
.y31{bottom:103.520000pt;}
.yb8{bottom:104.160000pt;}
.ydc{bottom:107.360000pt;}
.y120{bottom:107.680000pt;}
.y19e{bottom:108.480000pt;}
.y155{bottom:110.560000pt;}
.y1a{bottom:110.906667pt;}
.ye1{bottom:112.160000pt;}
.y38{bottom:113.600000pt;}
.y17f{bottom:116.480000pt;}
.y65{bottom:116.960000pt;}
.ya2{bottom:120.160000pt;}
.yf6{bottom:121.760000pt;}
.y2{bottom:123.866667pt;}
.y30{bottom:124.320000pt;}
.yb7{bottom:124.960000pt;}
.ydb{bottom:128.160000pt;}
.y11f{bottom:128.480000pt;}
.y19{bottom:128.666667pt;}
.y19d{bottom:129.280000pt;}
.y154{bottom:131.360000pt;}
.ye3{bottom:132.960000pt;}
.y37{bottom:134.400000pt;}
.y17e{bottom:137.306667pt;}
.y64{bottom:137.786667pt;}
.yf5{bottom:140.186667pt;}
.ya1{bottom:140.986667pt;}
.y2f{bottom:145.146667pt;}
.yc0{bottom:145.786667pt;}
.y18{bottom:146.266667pt;}
.yda{bottom:148.986667pt;}
.y11e{bottom:149.306667pt;}
.y19c{bottom:150.106667pt;}
.y153{bottom:152.186667pt;}
.yb6{bottom:153.786667pt;}
.y36{bottom:155.226667pt;}
.y17d{bottom:158.106667pt;}
.y63{bottom:158.586667pt;}
.yf2{bottom:159.066667pt;}
.ya0{bottom:161.786667pt;}
.y17{bottom:163.866667pt;}
.y2e{bottom:165.946667pt;}
.ybf{bottom:166.586667pt;}
.yd9{bottom:169.786667pt;}
.y11d{bottom:170.106667pt;}
.y19b{bottom:170.906667pt;}
.y152{bottom:172.986667pt;}
.yb5{bottom:174.586667pt;}
.y35{bottom:176.026667pt;}
.y17c{bottom:178.906667pt;}
.y62{bottom:179.386667pt;}
.y16{bottom:181.466667pt;}
.y9f{bottom:182.586667pt;}
.y2d{bottom:186.746667pt;}
.ybe{bottom:187.386667pt;}
.yd8{bottom:190.586667pt;}
.y11c{bottom:190.906667pt;}
.y19a{bottom:191.706667pt;}
.y151{bottom:193.786667pt;}
.yb4{bottom:195.386667pt;}
.yf1{bottom:196.346667pt;}
.y34{bottom:196.826667pt;}
.y15{bottom:199.066667pt;}
.y17b{bottom:199.706667pt;}
.y61{bottom:200.186667pt;}
.y9e{bottom:203.386667pt;}
.y11a{bottom:203.706667pt;}
.ybd{bottom:208.186667pt;}
.y150{bottom:209.626667pt;}
.yd7{bottom:211.386667pt;}
.y11b{bottom:211.706667pt;}
.y199{bottom:212.506667pt;}
.yf0{bottom:214.746667pt;}
.y2c{bottom:215.546667pt;}
.yb3{bottom:216.186667pt;}
.y14{bottom:216.826667pt;}
.y33{bottom:217.626667pt;}
.y17a{bottom:220.506667pt;}
.y60{bottom:220.986667pt;}
.y9d{bottom:224.186667pt;}
.ybc{bottom:228.986667pt;}
.y14f{bottom:230.586667pt;}
.yd6{bottom:232.186667pt;}
.y119{bottom:232.506667pt;}
.y198{bottom:233.306667pt;}
.yee{bottom:233.626667pt;}
.y13{bottom:234.426667pt;}
.yb2{bottom:236.986667pt;}
.y179{bottom:241.306667pt;}
.y79{bottom:241.786667pt;}
.y9c{bottom:244.986667pt;}
.y2b{bottom:246.426667pt;}
.y5f{bottom:249.786667pt;}
.y14e{bottom:251.546667pt;}
.yed{bottom:252.026667pt;}
.yd5{bottom:252.986667pt;}
.y118{bottom:253.306667pt;}
.y197{bottom:254.106667pt;}
.yb1{bottom:257.786667pt;}
.y178{bottom:262.106667pt;}
.y78{bottom:262.586667pt;}
.y9b{bottom:265.786667pt;}
.y2a{bottom:267.226667pt;}
.y5e{bottom:270.586667pt;}
.yec{bottom:270.906667pt;}
.y14c{bottom:272.506667pt;}
.yd4{bottom:273.786667pt;}
.y117{bottom:274.106667pt;}
.y196{bottom:274.906667pt;}
.yb0{bottom:278.586667pt;}
.y177{bottom:282.906667pt;}
.y77{bottom:283.386667pt;}
.y9a{bottom:286.586667pt;}
.y29{bottom:288.026667pt;}
.yeb{bottom:289.306667pt;}
.y5d{bottom:291.386667pt;}
.y14b{bottom:293.626667pt;}
.yd3{bottom:294.106667pt;}
.y1a0{bottom:294.586667pt;}
.y116{bottom:294.906667pt;}
.y195{bottom:295.706667pt;}
.yaf{bottom:299.386667pt;}
.y176{bottom:303.706667pt;}
.y76{bottom:304.186667pt;}
.y99{bottom:307.386667pt;}
.ye8{bottom:307.706667pt;}
.y28{bottom:308.826667pt;}
.y5c{bottom:312.186667pt;}
.y148{bottom:314.586667pt;}
.yd2{bottom:315.386667pt;}
.y115{bottom:315.706667pt;}
.y194{bottom:316.506667pt;}
.yae{bottom:320.186667pt;}
.y175{bottom:324.506667pt;}
.ye6{bottom:326.586667pt;}
.y98{bottom:328.186667pt;}
.y27{bottom:329.626667pt;}
.y5b{bottom:332.986667pt;}
.yd1{bottom:336.186667pt;}
.y114{bottom:336.506667pt;}
.y193{bottom:337.306667pt;}
.yad{bottom:340.986667pt;}
.y174{bottom:345.306667pt;}
.ye4{bottom:346.266667pt;}
.y97{bottom:348.986667pt;}
.y26{bottom:350.426667pt;}
.y5a{bottom:353.786667pt;}
.yd0{bottom:356.546667pt;}
.y19f{bottom:357.026667pt;}
.y113{bottom:357.346667pt;}
.y192{bottom:358.146667pt;}
.yac{bottom:361.826667pt;}
.y173{bottom:366.146667pt;}
.y96{bottom:369.826667pt;}
.y25{bottom:371.266667pt;}
.y59{bottom:374.626667pt;}
.ycf{bottom:377.826667pt;}
.y112{bottom:378.146667pt;}
.y191{bottom:378.946667pt;}
.y147{bottom:381.026667pt;}
.yab{bottom:382.626667pt;}
.y172{bottom:386.946667pt;}
.y95{bottom:390.626667pt;}
.y24{bottom:392.066667pt;}
.y58{bottom:395.426667pt;}
.yce{bottom:398.626667pt;}
.y111{bottom:398.946667pt;}
.y190{bottom:399.746667pt;}
.y146{bottom:401.826667pt;}
.yaa{bottom:403.426667pt;}
.y94{bottom:411.426667pt;}
.y23{bottom:412.866667pt;}
.y171{bottom:415.746667pt;}
.y57{bottom:416.226667pt;}
.ycd{bottom:418.946667pt;}
.ye0{bottom:419.426667pt;}
.y110{bottom:419.746667pt;}
.y18f{bottom:420.546667pt;}
.y145{bottom:422.626667pt;}
.ya9{bottom:424.226667pt;}
.y93{bottom:432.226667pt;}
.y22{bottom:433.666667pt;}
.y170{bottom:436.546667pt;}
.y56{bottom:437.026667pt;}
.ycc{bottom:440.226667pt;}
.y10f{bottom:440.546667pt;}
.y18e{bottom:441.346667pt;}
.y144{bottom:443.426667pt;}
.ybb{bottom:445.026667pt;}
.y92{bottom:453.026667pt;}
.y21{bottom:454.466667pt;}
.y16f{bottom:457.346667pt;}
.y55{bottom:457.826667pt;}
.ycb{bottom:461.026667pt;}
.y10e{bottom:461.346667pt;}
.y18d{bottom:462.146667pt;}
.y143{bottom:464.226667pt;}
.yba{bottom:465.826667pt;}
.y12{bottom:470.306667pt;}
.y91{bottom:473.826667pt;}
.y10c{bottom:477.186667pt;}
.y16e{bottom:478.146667pt;}
.y75{bottom:478.626667pt;}
.yca{bottom:481.346667pt;}
.ydf{bottom:481.826667pt;}
.y18c{bottom:482.946667pt;}
.y142{bottom:485.026667pt;}
.y54{bottom:486.626667pt;}
.y90{bottom:494.626667pt;}
.y16d{bottom:498.946667pt;}
.y74{bottom:499.426667pt;}
.yc9{bottom:502.626667pt;}
.y18b{bottom:503.746667pt;}
.y141{bottom:505.826667pt;}
.y53{bottom:507.426667pt;}
.y10b{bottom:509.666667pt;}
.y8f{bottom:515.426667pt;}
.y16c{bottom:519.746667pt;}
.y73{bottom:520.226667pt;}
.yc8{bottom:523.426667pt;}
.y18a{bottom:524.546667pt;}
.y140{bottom:526.626667pt;}
.y52{bottom:528.226667pt;}
.y10a{bottom:530.626667pt;}
.y8e{bottom:536.226667pt;}
.y16b{bottom:540.546667pt;}
.y72{bottom:541.026667pt;}
.yc7{bottom:543.746667pt;}
.yde{bottom:544.226667pt;}
.y189{bottom:545.346667pt;}
.y13f{bottom:547.426667pt;}
.y51{bottom:549.026667pt;}
.y108{bottom:551.426667pt;}
.y8d{bottom:557.026667pt;}
.y16a{bottom:561.346667pt;}
.y71{bottom:561.826667pt;}
.yc6{bottom:565.026667pt;}
.y13e{bottom:568.226667pt;}
.y50{bottom:569.826667pt;}
.y106{bottom:573.026667pt;}
.y188{bottom:574.146667pt;}
.y8c{bottom:577.853333pt;}
.y169{bottom:582.173333pt;}
.y70{bottom:582.653333pt;}
.y13c{bottom:584.733333pt;}
.yc5{bottom:585.853333pt;}
.y4f{bottom:590.653333pt;}
.y187{bottom:594.973333pt;}
.y105{bottom:598.493333pt;}
.y8b{bottom:598.653333pt;}
.y168{bottom:602.973333pt;}
.y6f{bottom:603.453333pt;}
.y13b{bottom:605.053333pt;}
.yc4{bottom:606.173333pt;}
.ydd{bottom:606.653333pt;}
.y4e{bottom:611.453333pt;}
.y186{bottom:615.773333pt;}
.y104{bottom:619.293333pt;}
.ya8{bottom:619.453333pt;}
.y167{bottom:623.773333pt;}
.y138{bottom:625.213333pt;}
.y8a{bottom:627.453333pt;}
.y4d{bottom:632.253333pt;}
.y185{bottom:636.573333pt;}
.y103{bottom:640.093333pt;}
.ya7{bottom:640.253333pt;}
.y166{bottom:644.573333pt;}
.y135{bottom:645.373333pt;}
.y89{bottom:648.253333pt;}
.y4c{bottom:653.053333pt;}
.y184{bottom:657.373333pt;}
.y102{bottom:660.893333pt;}
.ya6{bottom:661.053333pt;}
.y165{bottom:665.373333pt;}
.yc3{bottom:668.573333pt;}
.y88{bottom:669.053333pt;}
.y4b{bottom:673.853333pt;}
.y132{bottom:676.573333pt;}
.y183{bottom:678.173333pt;}
.y101{bottom:681.693333pt;}
.ya5{bottom:681.853333pt;}
.y164{bottom:686.173333pt;}
.y87{bottom:689.853333pt;}
.y4a{bottom:694.653333pt;}
.y182{bottom:698.973333pt;}
.y100{bottom:702.493333pt;}
.ya4{bottom:702.653333pt;}
.y163{bottom:706.973333pt;}
.y86{bottom:710.653333pt;}
.y6e{bottom:715.453333pt;}
.y10{bottom:717.853333pt;}
.y181{bottom:719.773333pt;}
.yff{bottom:723.293333pt;}
.y49{bottom:723.453333pt;}
.y162{bottom:727.773333pt;}
.y85{bottom:731.453333pt;}
.y6d{bottom:736.093333pt;}
.y131{bottom:741.373333pt;}
.y48{bottom:744.093333pt;}
.yf{bottom:747.293333pt;}
.y161{bottom:748.573333pt;}
.y84{bottom:752.093333pt;}
.yc2{bottom:752.253333pt;}
.y6c{bottom:756.893333pt;}
.y130{bottom:762.173333pt;}
.y47{bottom:764.893333pt;}
.y160{bottom:769.373333pt;}
.ye{bottom:772.733333pt;}
.y83{bottom:772.893333pt;}
.y6b{bottom:777.693333pt;}
.y12f{bottom:782.973333pt;}
.y46{bottom:785.693333pt;}
.y15c{bottom:785.853333pt;}
.yd{bottom:788.413333pt;}
.y82{bottom:793.693333pt;}
.y6a{bottom:798.533333pt;}
.y15e{bottom:801.253333pt;}
.y12e{bottom:803.813333pt;}
.y45{bottom:806.533333pt;}
.yc{bottom:809.733333pt;}
.y81{bottom:814.533333pt;}
.y69{bottom:819.333333pt;}
.y12d{bottom:824.613333pt;}
.y44{bottom:827.333333pt;}
.y80{bottom:835.333333pt;}
.yb{bottom:838.053333pt;}
.y158{bottom:839.653333pt;}
.y12c{bottom:845.413333pt;}
.y43{bottom:848.133333pt;}
.y15a{bottom:855.013333pt;}
.y7f{bottom:856.133333pt;}
.y12b{bottom:866.213333pt;}
.y42{bottom:868.933333pt;}
.y7e{bottom:876.933333pt;}
.ya{bottom:879.653333pt;}
.yfe{bottom:885.413333pt;}
.y12a{bottom:887.013333pt;}
.y41{bottom:889.733333pt;}
.y156{bottom:894.533333pt;}
.y7d{bottom:897.733333pt;}
.y129{bottom:902.853333pt;}
.yfd{bottom:903.813333pt;}
.y40{bottom:910.533333pt;}
.y8{bottom:912.773333pt;}
.y128{bottom:918.213333pt;}
.y7c{bottom:918.533333pt;}
.yfc{bottom:922.693333pt;}
.y1{bottom:925.093333pt;}
.y3f{bottom:931.333333pt;}
.y127{bottom:933.573333pt;}
.y7b{bottom:939.333333pt;}
.yfb{bottom:941.093333pt;}
.y126{bottom:948.933333pt;}
.y68{bottom:952.133333pt;}
.yfa{bottom:959.973333pt;}
.y3e{bottom:960.133333pt;}
.y121{bottom:964.933333pt;}
.y67{bottom:972.933333pt;}
.yf9{bottom:978.373333pt;}
.y3d{bottom:980.933333pt;}
.y3c{bottom:1001.733333pt;}
.y3b{bottom:1031.040000pt;}
.y3a{bottom:1051.360000pt;}
.h1e{height:15.360000pt;}
.h2a{height:15.392000pt;}
.h15{height:18.400000pt;}
.h18{height:18.432000pt;}
.h16{height:18.880000pt;}
.h19{height:19.232000pt;}
.h24{height:20.000000pt;}
.h21{height:20.160000pt;}
.h22{height:20.320000pt;}
.h1b{height:20.800000pt;}
.h1a{height:20.960000pt;}
.hc{height:23.200000pt;}
.hb{height:28.822500pt;}
.h1d{height:30.560000pt;}
.h20{height:31.200000pt;}
.h1c{height:32.480000pt;}
.h6{height:36.304688pt;}
.h17{height:37.280000pt;}
.h14{height:37.312000pt;}
.hf{height:37.479688pt;}
.h25{height:37.920000pt;}
.h27{height:38.240000pt;}
.h29{height:38.400000pt;}
.h10{height:40.021563pt;}
.h12{height:40.177188pt;}
.h7{height:42.607500pt;}
.h4{height:43.355000pt;}
.h2b{height:43.782500pt;}
.h9{height:44.301250pt;}
.h11{height:44.533750pt;}
.h13{height:45.961250pt;}
.h3{height:47.125000pt;}
.ha{height:47.310625pt;}
.hd{height:47.382500pt;}
.h26{height:53.600000pt;}
.h28{height:53.792000pt;}
.h5{height:55.136250pt;}
.h1f{height:57.920000pt;}
.h23{height:59.232000pt;}
.h8{height:60.057813pt;}
.h2{height:140.666667pt;}
.he{height:246.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:93.152000pt;}
.w10{width:95.232000pt;}
.w22{width:98.432000pt;}
.w1c{width:98.912000pt;}
.w28{width:100.992000pt;}
.w20{width:103.200000pt;}
.wa{width:107.712000pt;}
.w26{width:109.120000pt;}
.w27{width:109.152000pt;}
.wf{width:109.472000pt;}
.w1f{width:114.912000pt;}
.w1e{width:115.072000pt;}
.w1b{width:123.232000pt;}
.w17{width:124.192000pt;}
.w9{width:125.920000pt;}
.w21{width:128.192000pt;}
.w19{width:128.800000pt;}
.w1a{width:129.632000pt;}
.w3{width:130.432000pt;}
.wd{width:130.592000pt;}
.we{width:134.586667pt;}
.w1d{width:138.106667pt;}
.w25{width:144.986667pt;}
.w7{width:145.146667pt;}
.w8{width:149.786667pt;}
.w11{width:154.106667pt;}
.w12{width:166.106667pt;}
.w13{width:173.946667pt;}
.wb{width:180.026667pt;}
.w16{width:180.186667pt;}
.w15{width:189.786667pt;}
.w18{width:202.786667pt;}
.w23{width:218.946667pt;}
.wc{width:308.546667pt;}
.w24{width:464.253333pt;}
.w6{width:548.293333pt;}
.w2{width:567.013333pt;}
.w5{width:693.440000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:0.960000pt;}
.x2{left:7.200000pt;}
.x1d{left:19.680000pt;}
.x1{left:48.160000pt;}
.x5{left:50.240000pt;}
.x12{left:55.360000pt;}
.xb{left:71.999988pt;}
.x8{left:76.031988pt;}
.xc{left:96.031988pt;}
.xe{left:115.232000pt;}
.x4{left:123.226667pt;}
.x16{left:150.906667pt;}
.x22{left:186.106667pt;}
.x1c{left:258.146667pt;}
.xf{left:265.026667pt;}
.x26{left:274.306667pt;}
.xa{left:301.346655pt;}
.x17{left:305.026667pt;}
.x1a{left:340.706667pt;}
.x13{left:363.906667pt;}
.x1e{left:386.946667pt;}
.x10{left:390.946667pt;}
.x7{left:411.133322pt;}
.x23{left:416.093333pt;}
.x27{left:419.293333pt;}
.x2a{left:435.133322pt;}
.xd{left:439.133322pt;}
.x2b{left:459.133322pt;}
.x18{left:471.133333pt;}
.x14{left:494.493333pt;}
.x11{left:498.653333pt;}
.x1f{left:516.573333pt;}
.x24{left:519.293333pt;}
.x1b{left:520.893333pt;}
.x28{left:528.413333pt;}
.x6{left:598.533333pt;}
.x3{left:615.173333pt;}
.x15{left:629.093333pt;}
.x29{left:637.573333pt;}
.x20{left:639.653333pt;}
.x19{left:645.093333pt;}
.x25{left:647.493333pt;}
.x9{left:673.733322pt;}
}




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