
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c5a1a95030a9c916e1979a75.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945312;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_036d70d0fc9aaa59f8898385.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_04d81c64c1ae1e00635bfc97.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3f84c1c2822cf8900c3f0f09.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f7b974a84e686d349a2b936e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061035;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_76f7587e7eded3ccac9e3078.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_257f84bd01421faee59af7e3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_466bac9d3e78ef731a7947ff.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_113ee8707133eb4f97760f90.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4c1417b40403a5149f831b6d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128418;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_8d505aabcf2f0e5d28d2c378.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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_8847045463bc8789369667c5.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_d39dd2421eaa4ddae6764c51.woff2')format("woff");}.fff{font-family:fff;line-height:1.035156;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_91e9b0549a4f36cbe7db092b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-33.120000px;}
.v4{vertical-align:-30.240000px;}
.v5{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.640000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.lsa{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.515400px;}
.lse{letter-spacing:-0.495600px;}
.lsd{letter-spacing:-0.465000px;}
.ls19{letter-spacing:-0.457800px;}
.lsf{letter-spacing:-0.449400px;}
.ls6{letter-spacing:-0.334200px;}
.ls7{letter-spacing:-0.308400px;}
.ls12{letter-spacing:-0.023040px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.083400px;}
.ls21{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.222000px;}
.ls9{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.403200px;}
.ls17{letter-spacing:0.457920px;}
.ls16{letter-spacing:0.493920px;}
.ls10{letter-spacing:0.495600px;}
.ls14{letter-spacing:0.529920px;}
.ls2{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.840000px;}
.ls11{letter-spacing:1.440000px;}
.ls13{letter-spacing:1.464000px;}
.ls1e{letter-spacing:2.384640px;}
.ls1f{letter-spacing:2.396640px;}
.ls3{letter-spacing:22.469760px;}
.ls20{letter-spacing:33.120000px;}
.ls1c{letter-spacing:36.944640px;}
.ls1d{letter-spacing:36.956640px;}
.ls22{letter-spacing:41.760000px;}
.ls1a{letter-spacing:198.876000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-66.240000px;}
.ws7{word-spacing:-54.720000px;}
.ws14{word-spacing:-18.744000px;}
.ws5{word-spacing:-18.288000px;}
.ws15{word-spacing:-17.303040px;}
.ws13{word-spacing:-17.280000px;}
.ws4{word-spacing:-17.190600px;}
.ws12{word-spacing:-16.830600px;}
.ws11{word-spacing:-16.784400px;}
.ws6{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.102200px;}
.ws16{word-spacing:-15.948000px;}
.ws18{word-spacing:-15.120000px;}
.ws19{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.238600px;}
.ws3{word-spacing:-14.057400px;}
.wsa{word-spacing:-13.680000px;}
.ws9{word-spacing:-12.600000px;}
.ws8{word-spacing:-12.240000px;}
.ws10{word-spacing:-11.880000px;}
.wsf{word-spacing:-11.160000px;}
.wse{word-spacing:-10.695000px;}
.wsb{word-spacing:-10.676400px;}
.wsc{word-spacing:-10.454400px;}
.ws17{word-spacing:-10.440000px;}
.wsd{word-spacing:0.000000px;}
._8{margin-left:-2.553120px;}
._2{margin-left:-1.523520px;}
._1{width:1.002240px;}
._0{width:2.338560px;}
._4{width:3.431520px;}
._9{width:4.517280px;}
._7{width:5.820480px;}
._f{width:7.264800px;}
._10{width:8.516160px;}
._1f{width:9.809760px;}
._20{width:11.576640px;}
._d{width:12.781440px;}
._c{width:13.976640px;}
._1a{width:15.043680px;}
._14{width:16.303680px;}
._11{width:18.433440px;}
._12{width:19.494720px;}
._e{width:20.666880px;}
._b{width:22.106880px;}
._35{width:23.163840px;}
._a{width:24.230880px;}
._2c{width:25.950240px;}
._5{width:27.357120px;}
._6{width:29.145600px;}
._26{width:30.549600px;}
._27{width:31.795200px;}
._31{width:33.940800px;}
._1d{width:35.291520px;}
._1e{width:36.360000px;}
._28{width:38.364480px;}
._34{width:39.470400px;}
._19{width:41.267520px;}
._18{width:43.161120px;}
._23{width:44.984400px;}
._21{width:47.073600px;}
._22{width:48.284640px;}
._24{width:49.357440px;}
._1b{width:50.993280px;}
._3a{width:52.161600px;}
._1c{width:53.252880px;}
._25{width:54.679680px;}
._17{width:56.128320px;}
._2f{width:57.496320px;}
._2e{width:58.887360px;}
._38{width:60.894720px;}
._39{width:62.852160px;}
._47{width:64.841760px;}
._4e{width:66.600000px;}
._4a{width:68.428800px;}
._49{width:69.855840px;}
._45{width:71.887680px;}
._46{width:73.815840px;}
._50{width:77.624640px;}
._3c{width:83.016000px;}
._32{width:85.428000px;}
._33{width:86.848320px;}
._2d{width:88.261920px;}
._36{width:89.308800px;}
._4c{width:92.892960px;}
._37{width:93.974400px;}
._4d{width:97.807680px;}
._15{width:101.113920px;}
._16{width:102.198240px;}
._2b{width:107.003520px;}
._3b{width:108.778080px;}
._4b{width:114.395040px;}
._29{width:117.918720px;}
._2a{width:119.511360px;}
._4f{width:126.184320px;}
._13{width:132.399840px;}
._44{width:134.267040px;}
._48{width:151.610400px;}
._42{width:153.891360px;}
._43{width:155.647200px;}
._3e{width:166.579200px;}
._3d{width:167.987520px;}
._40{width:254.885760px;}
._3f{width:286.646400px;}
._41{width:339.927840px;}
._51{width:757.716000px;}
._3{width:781.625760px;}
._52{width:883.176000px;}
._30{width:2593.176000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.760000px;}
.fs9{font-size:44.640000px;}
.fs5{font-size:47.520000px;}
.fs8{font-size:50.400000px;}
.fs7{font-size:54.720000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:80.640000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y63{bottom:2.505000px;}
.y2{bottom:2.520000px;}
.y4a{bottom:2.880000px;}
.y53{bottom:3.240000px;}
.y15{bottom:3.585000px;}
.y6{bottom:3.960000px;}
.yb{bottom:4.320000px;}
.y35{bottom:5.025000px;}
.y38{bottom:5.385000px;}
.y41{bottom:5.400000px;}
.y3e{bottom:5.745000px;}
.yc{bottom:5.760000px;}
.y45{bottom:6.120000px;}
.y40{bottom:6.150000px;}
.y3d{bottom:6.465000px;}
.y43{bottom:6.480000px;}
.y6a{bottom:7.915500px;}
.yd2{bottom:9.345000px;}
.yc1{bottom:9.360000px;}
.yce{bottom:9.375000px;}
.yc3{bottom:9.405000px;}
.y31{bottom:9.705000px;}
.ybd{bottom:9.720000px;}
.yfc{bottom:9.735000px;}
.ye1{bottom:9.750000px;}
.yb2{bottom:10.065000px;}
.ya6{bottom:10.425000px;}
.yb7{bottom:10.440000px;}
.yad{bottom:10.470000px;}
.yac{bottom:11.505000px;}
.yb0{bottom:11.865000px;}
.yf3{bottom:11.880000px;}
.ye5{bottom:12.225000px;}
.y5a{bottom:14.025000px;}
.ya5{bottom:15.105000px;}
.ydc{bottom:15.465000px;}
.y9e{bottom:15.840000px;}
.yaa{bottom:16.185000px;}
.y62{bottom:16.545000px;}
.y9f{bottom:16.560000px;}
.ya3{bottom:17.280000px;}
.y5e{bottom:17.625000px;}
.yd8{bottom:17.640000px;}
.yd9{bottom:18.000000px;}
.y49{bottom:18.360000px;}
.y13{bottom:18.705000px;}
.y56{bottom:18.720000px;}
.y52{bottom:19.080000px;}
.y34{bottom:23.025000px;}
.y5{bottom:23.040000px;}
.y37{bottom:23.385000px;}
.y6d{bottom:23.400000px;}
.y69{bottom:28.075500px;}
.y59{bottom:29.505000px;}
.y5d{bottom:29.865000px;}
.y61{bottom:30.585000px;}
.y55{bottom:30.960000px;}
.y65{bottom:33.115500px;}
.y48{bottom:34.200000px;}
.y51{bottom:34.245000px;}
.y30{bottom:34.545000px;}
.ybc{bottom:34.560000px;}
.yd0{bottom:34.905000px;}
.ye9{bottom:34.920000px;}
.yfa{bottom:35.625000px;}
.yc6{bottom:35.640000px;}
.ycb{bottom:35.655000px;}
.y100{bottom:35.670000px;}
.yb5{bottom:37.080000px;}
.y33{bottom:40.665000px;}
.y4{bottom:42.480000px;}
.yd7{bottom:42.840000px;}
.y60{bottom:44.625000px;}
.y58{bottom:45.375000px;}
.y12{bottom:45.735000px;}
.y68{bottom:48.229500px;}
.y50{bottom:49.005000px;}
.y47{bottom:49.680000px;}
.y9{bottom:51.120000px;}
.y70{bottom:58.320000px;}
.yef{bottom:58.680000px;}
.y2f{bottom:59.055000px;}
.ybb{bottom:59.070000px;}
.yf6{bottom:60.120000px;}
.ybf{bottom:60.165000px;}
.yc5{bottom:60.480000px;}
.yca{bottom:60.495000px;}
.yff{bottom:60.510000px;}
.y57{bottom:60.855000px;}
.y5f{bottom:61.185000px;}
.y5c{bottom:62.625000px;}
.yf1{bottom:63.045000px;}
.y6c{bottom:63.360000px;}
.y3{bottom:63.390000px;}
.y4f{bottom:63.765000px;}
.y11{bottom:64.095000px;}
.y67{bottom:68.389500px;}
.ye3{bottom:69.825000px;}
.yde{bottom:69.870000px;}
.yae{bottom:70.545000px;}
.ya8{bottom:70.590000px;}
.y8{bottom:70.920000px;}
.ydb{bottom:74.175000px;}
.ya1{bottom:75.255000px;}
.y6f{bottom:78.156000px;}
.yee{bottom:83.550000px;}
.y2e{bottom:83.895000px;}
.y66{bottom:85.714500px;}
.y10{bottom:93.975000px;}
.y2d{bottom:108.375000px;}
.y64{bottom:116.320500px;}
.yf{bottom:124.215000px;}
.y105{bottom:131.076000px;}
.y2c{bottom:133.215000px;}
.y10d{bottom:135.756000px;}
.y96{bottom:136.116000px;}
.y9b{bottom:136.476000px;}
.y4e{bottom:136.485000px;}
.y106{bottom:147.276000px;}
.yd6{bottom:150.510000px;}
.y4d{bottom:151.965000px;}
.ye{bottom:154.500000px;}
.y104{bottom:156.630000px;}
.y2b{bottom:157.695000px;}
.y95{bottom:161.670000px;}
.y9a{bottom:162.030000px;}
.y4c{bottom:167.475000px;}
.yd5{bottom:176.430000px;}
.y103{bottom:182.550000px;}
.y2a{bottom:182.580000px;}
.y109{bottom:187.590000px;}
.y94{bottom:187.950000px;}
.yfe{bottom:198.405000px;}
.yd4{bottom:202.035000px;}
.y29{bottom:207.060000px;}
.y10c{bottom:213.555000px;}
.y93{bottom:213.915000px;}
.y5b{bottom:215.730000px;}
.y102{bottom:224.010000px;}
.yd3{bottom:227.955000px;}
.y28{bottom:231.900000px;}
.y10b{bottom:239.115000px;}
.y92{bottom:239.475000px;}
.ycf{bottom:244.170000px;}
.y101{bottom:249.210000px;}
.y27{bottom:256.380000px;}
.y10a{bottom:265.035000px;}
.y91{bottom:265.395000px;}
.yd1{bottom:269.730000px;}
.yf9{bottom:274.770000px;}
.y26{bottom:281.220000px;}
.y16{bottom:290.610000px;}
.y90{bottom:291.315000px;}
.yc9{bottom:294.930000px;}
.yfd{bottom:299.970000px;}
.y25{bottom:305.730000px;}
.y8f{bottom:316.875000px;}
.ycd{bottom:320.490000px;}
.yfb{bottom:325.530000px;}
.y24{bottom:330.570000px;}
.y8e{bottom:342.825000px;}
.ycc{bottom:345.705000px;}
.yf5{bottom:351.105000px;}
.y23{bottom:354.690000px;}
.y54{bottom:363.705000px;}
.y8d{bottom:368.385000px;}
.yc4{bottom:371.265000px;}
.yf8{bottom:376.305000px;}
.y22{bottom:376.650000px;}
.y8c{bottom:394.305000px;}
.yc8{bottom:396.465000px;}
.y21{bottom:398.610000px;}
.yf7{bottom:401.865000px;}
.y4b{bottom:417.345000px;}
.y8b{bottom:420.225000px;}
.y20{bottom:420.240000px;}
.yc7{bottom:422.025000px;}
.yf0{bottom:427.065000px;}
.y1f{bottom:442.560000px;}
.y99{bottom:445.425000px;}
.y8a{bottom:445.785000px;}
.ybe{bottom:447.585000px;}
.yf4{bottom:452.670000px;}
.y1e{bottom:464.160000px;}
.y98{bottom:471.390000px;}
.y89{bottom:471.750000px;}
.yc2{bottom:472.830000px;}
.yf2{bottom:478.230000px;}
.y1d{bottom:486.120000px;}
.y88{bottom:497.670000px;}
.yc0{bottom:498.390000px;}
.yed{bottom:505.950000px;}
.y1c{bottom:508.080000px;}
.y87{bottom:523.230000px;}
.yba{bottom:523.590000px;}
.y1b{bottom:529.680000px;}
.y86{bottom:549.150000px;}
.y1a{bottom:551.685000px;}
.y19{bottom:573.285000px;}
.y108{bottom:574.710000px;}
.y85{bottom:575.070000px;}
.y18{bottom:595.245000px;}
.y46{bottom:597.060000px;}
.y107{bottom:600.300000px;}
.y84{bottom:600.660000px;}
.yb9{bottom:608.940000px;}
.yec{bottom:615.420000px;}
.y17{bottom:616.845000px;}
.y83{bottom:626.580000px;}
.yb8{bottom:634.500000px;}
.yeb{bottom:641.340000px;}
.yb4{bottom:650.700000px;}
.y82{bottom:652.140000px;}
.ye8{bottom:657.540000px;}
.y44{bottom:659.340000px;}
.y42{bottom:676.980000px;}
.yb6{bottom:677.340000px;}
.y81{bottom:678.060000px;}
.yea{bottom:683.100000px;}
.y3f{bottom:694.980000px;}
.y80{bottom:704.010000px;}
.yb3{bottom:704.025000px;}
.ye7{bottom:708.345000px;}
.y3c{bottom:712.665000px;}
.y7f{bottom:729.570000px;}
.y3b{bottom:730.665000px;}
.ye2{bottom:733.905000px;}
.y7e{bottom:755.490000px;}
.yb1{bottom:756.945000px;}
.ye6{bottom:759.465000px;}
.y3a{bottom:766.305000px;}
.y7d{bottom:781.410000px;}
.y39{bottom:784.305000px;}
.yaf{bottom:789.345000px;}
.ye4{bottom:791.505000px;}
.y36{bottom:801.945000px;}
.y7c{bottom:806.970000px;}
.ya7{bottom:817.425000px;}
.ydd{bottom:819.585000px;}
.y7b{bottom:832.935000px;}
.y32{bottom:837.990000px;}
.yab{bottom:844.110000px;}
.ye0{bottom:845.190000px;}
.y7a{bottom:858.495000px;}
.ya9{bottom:871.830000px;}
.ydf{bottom:872.910000px;}
.y79{bottom:884.415000px;}
.y14{bottom:891.270000px;}
.ya0{bottom:904.230000px;}
.yda{bottom:905.670000px;}
.y78{bottom:910.335000px;}
.yd{bottom:922.590000px;}
.ya4{bottom:930.870000px;}
.y77{bottom:935.895000px;}
.y76{bottom:961.845000px;}
.ya2{bottom:962.205000px;}
.y75{bottom:987.765000px;}
.y9d{bottom:995.685000px;}
.y74{bottom:1013.325000px;}
.y73{bottom:1039.245000px;}
.y9c{bottom:1064.445000px;}
.y72{bottom:1064.805000px;}
.y97{bottom:1090.410000px;}
.y71{bottom:1090.770000px;}
.ya{bottom:1096.170000px;}
.y6e{bottom:1110.570000px;}
.y7{bottom:1122.090000px;}
.y6b{bottom:1126.050000px;}
.y1{bottom:1137.570000px;}
.h17{height:17.625000px;}
.h1d{height:17.640000px;}
.h1b{height:17.676000px;}
.h18{height:17.985000px;}
.h1c{height:18.000000px;}
.h7{height:21.225000px;}
.h41{height:24.465000px;}
.h46{height:24.480000px;}
.h43{height:24.510000px;}
.h4e{height:24.516000px;}
.h42{height:24.825000px;}
.h4f{height:24.840000px;}
.h4b{height:24.861000px;}
.h52{height:24.870000px;}
.h3a{height:25.545000px;}
.h33{height:25.905000px;}
.h3d{height:25.920000px;}
.h37{height:25.941000px;}
.h3c{height:25.956000px;}
.h36{height:26.985000px;}
.h39{height:27.345000px;}
.h32{height:30.600000px;}
.hd{height:31.305000px;}
.h35{height:31.665000px;}
.h31{height:32.745000px;}
.h19{height:35.625000px;}
.h16{height:36.021000px;}
.h25{height:40.048594px;}
.h24{height:40.234219px;}
.h27{height:46.116563px;}
.hc{height:47.891250px;}
.h47{height:50.025000px;}
.h4d{height:50.076000px;}
.h1a{height:50.793750px;}
.h3b{height:52.596000px;}
.h15{height:53.265000px;}
.h21{height:53.625000px;}
.h1f{height:53.677969px;}
.hf{height:53.704687px;}
.he{height:55.147500px;}
.h5{height:56.084062px;}
.h2d{height:57.945000px;}
.h4{height:58.888125px;}
.h14{height:60.450469px;}
.h8{height:60.960938px;}
.h1e{height:62.280000px;}
.h2a{height:63.078750px;}
.h11{height:64.978594px;}
.h13{height:65.010937px;}
.h6{height:65.837812px;}
.h3{height:65.884219px;}
.h12{height:66.757500px;}
.h56{height:67.803750px;}
.h48{height:67.824844px;}
.h28{height:67.837500px;}
.h2b{height:69.660000px;}
.h2e{height:70.773750px;}
.h55{height:71.044468px;}
.h3f{height:72.326250px;}
.h22{height:73.080000px;}
.h29{height:74.051719px;}
.h2c{height:74.171719px;}
.h3e{height:74.190000px;}
.h23{height:74.865000px;}
.h53{height:75.225000px;}
.h2f{height:75.228750px;}
.h40{height:75.270000px;}
.h44{height:75.585000px;}
.h45{height:75.600000px;}
.h54{height:75.621000px;}
.h51{height:78.150000px;}
.hb{height:81.011250px;}
.ha{height:81.270000px;}
.h2{height:82.830000px;}
.h4c{height:84.945000px;}
.h4a{height:84.981000px;}
.h38{height:86.025000px;}
.h34{height:86.061000px;}
.h49{height:89.280000px;}
.h30{height:90.720000px;}
.h50{height:98.670000px;}
.h26{height:99.391500px;}
.h9{height:173.565000px;}
.h20{height:179.715000px;}
.h10{height:631.965000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:47.542500px;}
.w12{width:52.897500px;}
.w1d{width:59.760000px;}
.wb{width:63.360000px;}
.w1c{width:64.462500px;}
.w1e{width:66.945000px;}
.wd{width:66.990000px;}
.w13{width:73.440000px;}
.w18{width:76.305000px;}
.w9{width:82.462500px;}
.wa{width:95.400000px;}
.we{width:95.436000px;}
.w1f{width:96.870000px;}
.w10{width:100.440000px;}
.w15{width:100.470000px;}
.wf{width:100.821000px;}
.w17{width:106.920000px;}
.w20{width:107.301000px;}
.w14{width:107.310000px;}
.w1a{width:113.781000px;}
.w19{width:113.832000px;}
.w2{width:115.222500px;}
.w16{width:120.672000px;}
.w1b{width:120.960000px;}
.wc{width:124.230000px;}
.w4{width:157.005000px;}
.w7{width:178.245000px;}
.w8{width:515.370000px;}
.w5{width:536.250000px;}
.w3{width:578.385000px;}
.w6{width:693.270000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.920000px;}
.x9{left:14.386500px;}
.x5{left:27.735000px;}
.x1a{left:36.382500px;}
.x14{left:38.902500px;}
.x4{left:42.135000px;}
.xc{left:45.742500px;}
.x10{left:86.785500px;}
.x16{left:88.945500px;}
.x2{left:97.585500px;}
.x15{left:98.665500px;}
.x1{left:100.129500px;}
.x18{left:101.185500px;}
.x7{left:108.036000px;}
.x2b{left:113.076000px;}
.x6{left:114.900000px;}
.x32{left:119.916000px;}
.x17{left:123.535500px;}
.x19{left:129.295500px;}
.x1b{left:133.975500px;}
.xf{left:146.935500px;}
.x24{left:149.134500px;}
.x3b{left:150.555000px;}
.x1f{left:154.155000px;}
.x1c{left:162.075000px;}
.x33{left:165.690000px;}
.x2d{left:167.130000px;}
.x13{left:169.975500px;}
.x12{left:182.610000px;}
.x25{left:203.130000px;}
.x3{left:215.010000px;}
.x34{left:226.545000px;}
.xd{left:231.580500px;}
.xe{left:233.380500px;}
.xa{left:257.145000px;}
.x11{left:278.025000px;}
.x35{left:294.225000px;}
.x2e{left:308.265000px;}
.x20{left:358.350000px;}
.x2f{left:375.990000px;}
.x26{left:385.350000px;}
.x36{left:392.190000px;}
.x2c{left:415.980000px;}
.x21{left:426.060000px;}
.x2a{left:445.500000px;}
.x1d{left:473.580000px;}
.x27{left:486.540000px;}
.x39{left:489.090000px;}
.x30{left:490.905000px;}
.x37{left:506.745000px;}
.x3a{left:516.090000px;}
.x22{left:522.225000px;}
.x1e{left:527.610000px;}
.x31{left:605.430000px;}
.x28{left:608.310000px;}
.x38{left:614.790000px;}
.x23{left:623.790000px;}
.x29{left:716.325000px;}
.x8{left:751.965000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v4{vertical-align:-26.880000pt;}
.v5{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.680000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.lsa{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.458133pt;}
.lse{letter-spacing:-0.440533pt;}
.lsd{letter-spacing:-0.413333pt;}
.ls19{letter-spacing:-0.406933pt;}
.lsf{letter-spacing:-0.399467pt;}
.ls6{letter-spacing:-0.297067pt;}
.ls7{letter-spacing:-0.274133pt;}
.ls12{letter-spacing:-0.020480pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.074133pt;}
.ls21{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.197333pt;}
.ls9{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.358400pt;}
.ls17{letter-spacing:0.407040pt;}
.ls16{letter-spacing:0.439040pt;}
.ls10{letter-spacing:0.440533pt;}
.ls14{letter-spacing:0.471040pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.746667pt;}
.ls11{letter-spacing:1.280000pt;}
.ls13{letter-spacing:1.301333pt;}
.ls1e{letter-spacing:2.119680pt;}
.ls1f{letter-spacing:2.130347pt;}
.ls3{letter-spacing:19.973120pt;}
.ls20{letter-spacing:29.440000pt;}
.ls1c{letter-spacing:32.839680pt;}
.ls1d{letter-spacing:32.850347pt;}
.ls22{letter-spacing:37.120000pt;}
.ls1a{letter-spacing:176.778667pt;}
.ws2{word-spacing:-58.880000pt;}
.ws7{word-spacing:-48.640000pt;}
.ws14{word-spacing:-16.661333pt;}
.ws5{word-spacing:-16.256000pt;}
.ws15{word-spacing:-15.380480pt;}
.ws13{word-spacing:-15.360000pt;}
.ws4{word-spacing:-15.280533pt;}
.ws12{word-spacing:-14.960533pt;}
.ws11{word-spacing:-14.919467pt;}
.ws6{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.313067pt;}
.ws16{word-spacing:-14.176000pt;}
.ws18{word-spacing:-13.440000pt;}
.ws19{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.656533pt;}
.ws3{word-spacing:-12.495467pt;}
.wsa{word-spacing:-12.160000pt;}
.ws9{word-spacing:-11.200000pt;}
.ws8{word-spacing:-10.880000pt;}
.ws10{word-spacing:-10.560000pt;}
.wsf{word-spacing:-9.920000pt;}
.wse{word-spacing:-9.506667pt;}
.wsb{word-spacing:-9.490133pt;}
.wsc{word-spacing:-9.292800pt;}
.ws17{word-spacing:-9.280000pt;}
.wsd{word-spacing:0.000000pt;}
._8{margin-left:-2.269440pt;}
._2{margin-left:-1.354240pt;}
._1{width:0.890880pt;}
._0{width:2.078720pt;}
._4{width:3.050240pt;}
._9{width:4.015360pt;}
._7{width:5.173760pt;}
._f{width:6.457600pt;}
._10{width:7.569920pt;}
._1f{width:8.719787pt;}
._20{width:10.290347pt;}
._d{width:11.361280pt;}
._c{width:12.423680pt;}
._1a{width:13.372160pt;}
._14{width:14.492160pt;}
._11{width:16.385280pt;}
._12{width:17.328640pt;}
._e{width:18.370560pt;}
._b{width:19.650560pt;}
._35{width:20.590080pt;}
._a{width:21.538560pt;}
._2c{width:23.066880pt;}
._5{width:24.317440pt;}
._6{width:25.907200pt;}
._26{width:27.155200pt;}
._27{width:28.262400pt;}
._31{width:30.169600pt;}
._1d{width:31.370240pt;}
._1e{width:32.320000pt;}
._28{width:34.101760pt;}
._34{width:35.084800pt;}
._19{width:36.682240pt;}
._18{width:38.365440pt;}
._23{width:39.986133pt;}
._21{width:41.843200pt;}
._22{width:42.919680pt;}
._24{width:43.873280pt;}
._1b{width:45.327360pt;}
._3a{width:46.365867pt;}
._1c{width:47.335893pt;}
._25{width:48.604160pt;}
._17{width:49.891840pt;}
._2f{width:51.107840pt;}
._2e{width:52.344320pt;}
._38{width:54.128640pt;}
._39{width:55.868587pt;}
._47{width:57.637120pt;}
._4e{width:59.200000pt;}
._4a{width:60.825600pt;}
._49{width:62.094080pt;}
._45{width:63.900160pt;}
._46{width:65.614080pt;}
._50{width:68.999680pt;}
._3c{width:73.792000pt;}
._32{width:75.936000pt;}
._33{width:77.198507pt;}
._2d{width:78.455040pt;}
._36{width:79.385600pt;}
._4c{width:82.571520pt;}
._37{width:83.532800pt;}
._4d{width:86.940160pt;}
._15{width:89.879040pt;}
._16{width:90.842880pt;}
._2b{width:95.114240pt;}
._3b{width:96.691627pt;}
._4b{width:101.684480pt;}
._29{width:104.816640pt;}
._2a{width:106.232320pt;}
._4f{width:112.163840pt;}
._13{width:117.688747pt;}
._44{width:119.348480pt;}
._48{width:134.764800pt;}
._42{width:136.792320pt;}
._43{width:138.353067pt;}
._3e{width:148.070400pt;}
._3d{width:149.322240pt;}
._40{width:226.565120pt;}
._3f{width:254.796800pt;}
._41{width:302.158080pt;}
._51{width:673.525333pt;}
._3{width:694.778453pt;}
._52{width:785.045333pt;}
._30{width:2305.045333pt;}
.fsa{font-size:37.120000pt;}
.fs9{font-size:39.680000pt;}
.fs5{font-size:42.240000pt;}
.fs8{font-size:44.800000pt;}
.fs7{font-size:48.640000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:71.680000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:2.226667pt;}
.y2{bottom:2.240000pt;}
.y4a{bottom:2.560000pt;}
.y53{bottom:2.880000pt;}
.y15{bottom:3.186667pt;}
.y6{bottom:3.520000pt;}
.yb{bottom:3.840000pt;}
.y35{bottom:4.466667pt;}
.y38{bottom:4.786667pt;}
.y41{bottom:4.800000pt;}
.y3e{bottom:5.106667pt;}
.yc{bottom:5.120000pt;}
.y45{bottom:5.440000pt;}
.y40{bottom:5.466667pt;}
.y3d{bottom:5.746667pt;}
.y43{bottom:5.760000pt;}
.y6a{bottom:7.036000pt;}
.yd2{bottom:8.306667pt;}
.yc1{bottom:8.320000pt;}
.yce{bottom:8.333333pt;}
.yc3{bottom:8.360000pt;}
.y31{bottom:8.626667pt;}
.ybd{bottom:8.640000pt;}
.yfc{bottom:8.653333pt;}
.ye1{bottom:8.666667pt;}
.yb2{bottom:8.946667pt;}
.ya6{bottom:9.266667pt;}
.yb7{bottom:9.280000pt;}
.yad{bottom:9.306667pt;}
.yac{bottom:10.226667pt;}
.yb0{bottom:10.546667pt;}
.yf3{bottom:10.560000pt;}
.ye5{bottom:10.866667pt;}
.y5a{bottom:12.466667pt;}
.ya5{bottom:13.426667pt;}
.ydc{bottom:13.746667pt;}
.y9e{bottom:14.080000pt;}
.yaa{bottom:14.386667pt;}
.y62{bottom:14.706667pt;}
.y9f{bottom:14.720000pt;}
.ya3{bottom:15.360000pt;}
.y5e{bottom:15.666667pt;}
.yd8{bottom:15.680000pt;}
.yd9{bottom:16.000000pt;}
.y49{bottom:16.320000pt;}
.y13{bottom:16.626667pt;}
.y56{bottom:16.640000pt;}
.y52{bottom:16.960000pt;}
.y34{bottom:20.466667pt;}
.y5{bottom:20.480000pt;}
.y37{bottom:20.786667pt;}
.y6d{bottom:20.800000pt;}
.y69{bottom:24.956000pt;}
.y59{bottom:26.226667pt;}
.y5d{bottom:26.546667pt;}
.y61{bottom:27.186667pt;}
.y55{bottom:27.520000pt;}
.y65{bottom:29.436000pt;}
.y48{bottom:30.400000pt;}
.y51{bottom:30.440000pt;}
.y30{bottom:30.706667pt;}
.ybc{bottom:30.720000pt;}
.yd0{bottom:31.026667pt;}
.ye9{bottom:31.040000pt;}
.yfa{bottom:31.666667pt;}
.yc6{bottom:31.680000pt;}
.ycb{bottom:31.693333pt;}
.y100{bottom:31.706667pt;}
.yb5{bottom:32.960000pt;}
.y33{bottom:36.146667pt;}
.y4{bottom:37.760000pt;}
.yd7{bottom:38.080000pt;}
.y60{bottom:39.666667pt;}
.y58{bottom:40.333333pt;}
.y12{bottom:40.653333pt;}
.y68{bottom:42.870667pt;}
.y50{bottom:43.560000pt;}
.y47{bottom:44.160000pt;}
.y9{bottom:45.440000pt;}
.y70{bottom:51.840000pt;}
.yef{bottom:52.160000pt;}
.y2f{bottom:52.493333pt;}
.ybb{bottom:52.506667pt;}
.yf6{bottom:53.440000pt;}
.ybf{bottom:53.480000pt;}
.yc5{bottom:53.760000pt;}
.yca{bottom:53.773333pt;}
.yff{bottom:53.786667pt;}
.y57{bottom:54.093333pt;}
.y5f{bottom:54.386667pt;}
.y5c{bottom:55.666667pt;}
.yf1{bottom:56.040000pt;}
.y6c{bottom:56.320000pt;}
.y3{bottom:56.346667pt;}
.y4f{bottom:56.680000pt;}
.y11{bottom:56.973333pt;}
.y67{bottom:60.790667pt;}
.ye3{bottom:62.066667pt;}
.yde{bottom:62.106667pt;}
.yae{bottom:62.706667pt;}
.ya8{bottom:62.746667pt;}
.y8{bottom:63.040000pt;}
.ydb{bottom:65.933333pt;}
.ya1{bottom:66.893333pt;}
.y6f{bottom:69.472000pt;}
.yee{bottom:74.266667pt;}
.y2e{bottom:74.573333pt;}
.y66{bottom:76.190667pt;}
.y10{bottom:83.533333pt;}
.y2d{bottom:96.333333pt;}
.y64{bottom:103.396000pt;}
.yf{bottom:110.413333pt;}
.y105{bottom:116.512000pt;}
.y2c{bottom:118.413333pt;}
.y10d{bottom:120.672000pt;}
.y96{bottom:120.992000pt;}
.y9b{bottom:121.312000pt;}
.y4e{bottom:121.320000pt;}
.y106{bottom:130.912000pt;}
.yd6{bottom:133.786667pt;}
.y4d{bottom:135.080000pt;}
.ye{bottom:137.333333pt;}
.y104{bottom:139.226667pt;}
.y2b{bottom:140.173333pt;}
.y95{bottom:143.706667pt;}
.y9a{bottom:144.026667pt;}
.y4c{bottom:148.866667pt;}
.yd5{bottom:156.826667pt;}
.y103{bottom:162.266667pt;}
.y2a{bottom:162.293333pt;}
.y109{bottom:166.746667pt;}
.y94{bottom:167.066667pt;}
.yfe{bottom:176.360000pt;}
.yd4{bottom:179.586667pt;}
.y29{bottom:184.053333pt;}
.y10c{bottom:189.826667pt;}
.y93{bottom:190.146667pt;}
.y5b{bottom:191.760000pt;}
.y102{bottom:199.120000pt;}
.yd3{bottom:202.626667pt;}
.y28{bottom:206.133333pt;}
.y10b{bottom:212.546667pt;}
.y92{bottom:212.866667pt;}
.ycf{bottom:217.040000pt;}
.y101{bottom:221.520000pt;}
.y27{bottom:227.893333pt;}
.y10a{bottom:235.586667pt;}
.y91{bottom:235.906667pt;}
.yd1{bottom:239.760000pt;}
.yf9{bottom:244.240000pt;}
.y26{bottom:249.973333pt;}
.y16{bottom:258.320000pt;}
.y90{bottom:258.946667pt;}
.yc9{bottom:262.160000pt;}
.yfd{bottom:266.640000pt;}
.y25{bottom:271.760000pt;}
.y8f{bottom:281.666667pt;}
.ycd{bottom:284.880000pt;}
.yfb{bottom:289.360000pt;}
.y24{bottom:293.840000pt;}
.y8e{bottom:304.733333pt;}
.ycc{bottom:307.293333pt;}
.yf5{bottom:312.093333pt;}
.y23{bottom:315.280000pt;}
.y54{bottom:323.293333pt;}
.y8d{bottom:327.453333pt;}
.yc4{bottom:330.013333pt;}
.yf8{bottom:334.493333pt;}
.y22{bottom:334.800000pt;}
.y8c{bottom:350.493333pt;}
.yc8{bottom:352.413333pt;}
.y21{bottom:354.320000pt;}
.yf7{bottom:357.213333pt;}
.y4b{bottom:370.973333pt;}
.y8b{bottom:373.533333pt;}
.y20{bottom:373.546667pt;}
.yc7{bottom:375.133333pt;}
.yf0{bottom:379.613333pt;}
.y1f{bottom:393.386667pt;}
.y99{bottom:395.933333pt;}
.y8a{bottom:396.253333pt;}
.ybe{bottom:397.853333pt;}
.yf4{bottom:402.373333pt;}
.y1e{bottom:412.586667pt;}
.y98{bottom:419.013333pt;}
.y89{bottom:419.333333pt;}
.yc2{bottom:420.293333pt;}
.yf2{bottom:425.093333pt;}
.y1d{bottom:432.106667pt;}
.y88{bottom:442.373333pt;}
.yc0{bottom:443.013333pt;}
.yed{bottom:449.733333pt;}
.y1c{bottom:451.626667pt;}
.y87{bottom:465.093333pt;}
.yba{bottom:465.413333pt;}
.y1b{bottom:470.826667pt;}
.y86{bottom:488.133333pt;}
.y1a{bottom:490.386667pt;}
.y19{bottom:509.586667pt;}
.y108{bottom:510.853333pt;}
.y85{bottom:511.173333pt;}
.y18{bottom:529.106667pt;}
.y46{bottom:530.720000pt;}
.y107{bottom:533.600000pt;}
.y84{bottom:533.920000pt;}
.yb9{bottom:541.280000pt;}
.yec{bottom:547.040000pt;}
.y17{bottom:548.306667pt;}
.y83{bottom:556.960000pt;}
.yb8{bottom:564.000000pt;}
.yeb{bottom:570.080000pt;}
.yb4{bottom:578.400000pt;}
.y82{bottom:579.680000pt;}
.ye8{bottom:584.480000pt;}
.y44{bottom:586.080000pt;}
.y42{bottom:601.760000pt;}
.yb6{bottom:602.080000pt;}
.y81{bottom:602.720000pt;}
.yea{bottom:607.200000pt;}
.y3f{bottom:617.760000pt;}
.y80{bottom:625.786667pt;}
.yb3{bottom:625.800000pt;}
.ye7{bottom:629.640000pt;}
.y3c{bottom:633.480000pt;}
.y7f{bottom:648.506667pt;}
.y3b{bottom:649.480000pt;}
.ye2{bottom:652.360000pt;}
.y7e{bottom:671.546667pt;}
.yb1{bottom:672.840000pt;}
.ye6{bottom:675.080000pt;}
.y3a{bottom:681.160000pt;}
.y7d{bottom:694.586667pt;}
.y39{bottom:697.160000pt;}
.yaf{bottom:701.640000pt;}
.ye4{bottom:703.560000pt;}
.y36{bottom:712.840000pt;}
.y7c{bottom:717.306667pt;}
.ya7{bottom:726.600000pt;}
.ydd{bottom:728.520000pt;}
.y7b{bottom:740.386667pt;}
.y32{bottom:744.880000pt;}
.yab{bottom:750.320000pt;}
.ye0{bottom:751.280000pt;}
.y7a{bottom:763.106667pt;}
.ya9{bottom:774.960000pt;}
.ydf{bottom:775.920000pt;}
.y79{bottom:786.146667pt;}
.y14{bottom:792.240000pt;}
.ya0{bottom:803.760000pt;}
.yda{bottom:805.040000pt;}
.y78{bottom:809.186667pt;}
.yd{bottom:820.080000pt;}
.ya4{bottom:827.440000pt;}
.y77{bottom:831.906667pt;}
.y76{bottom:854.973333pt;}
.ya2{bottom:855.293333pt;}
.y75{bottom:878.013333pt;}
.y9d{bottom:885.053333pt;}
.y74{bottom:900.733333pt;}
.y73{bottom:923.773333pt;}
.y9c{bottom:946.173333pt;}
.y72{bottom:946.493333pt;}
.y97{bottom:969.253333pt;}
.y71{bottom:969.573333pt;}
.ya{bottom:974.373333pt;}
.y6e{bottom:987.173333pt;}
.y7{bottom:997.413333pt;}
.y6b{bottom:1000.933333pt;}
.y1{bottom:1011.173333pt;}
.h17{height:15.666667pt;}
.h1d{height:15.680000pt;}
.h1b{height:15.712000pt;}
.h18{height:15.986667pt;}
.h1c{height:16.000000pt;}
.h7{height:18.866667pt;}
.h41{height:21.746667pt;}
.h46{height:21.760000pt;}
.h43{height:21.786667pt;}
.h4e{height:21.792000pt;}
.h42{height:22.066667pt;}
.h4f{height:22.080000pt;}
.h4b{height:22.098667pt;}
.h52{height:22.106667pt;}
.h3a{height:22.706667pt;}
.h33{height:23.026667pt;}
.h3d{height:23.040000pt;}
.h37{height:23.058667pt;}
.h3c{height:23.072000pt;}
.h36{height:23.986667pt;}
.h39{height:24.306667pt;}
.h32{height:27.200000pt;}
.hd{height:27.826667pt;}
.h35{height:28.146667pt;}
.h31{height:29.106667pt;}
.h19{height:31.666667pt;}
.h16{height:32.018667pt;}
.h25{height:35.598750pt;}
.h24{height:35.763750pt;}
.h27{height:40.992500pt;}
.hc{height:42.570000pt;}
.h47{height:44.466667pt;}
.h4d{height:44.512000pt;}
.h1a{height:45.150000pt;}
.h3b{height:46.752000pt;}
.h15{height:47.346667pt;}
.h21{height:47.666667pt;}
.h1f{height:47.713750pt;}
.hf{height:47.737500pt;}
.he{height:49.020000pt;}
.h5{height:49.852500pt;}
.h2d{height:51.506667pt;}
.h4{height:52.345000pt;}
.h14{height:53.733750pt;}
.h8{height:54.187500pt;}
.h1e{height:55.360000pt;}
.h2a{height:56.070000pt;}
.h11{height:57.758750pt;}
.h13{height:57.787500pt;}
.h6{height:58.522500pt;}
.h3{height:58.563750pt;}
.h12{height:59.340000pt;}
.h56{height:60.270000pt;}
.h48{height:60.288750pt;}
.h28{height:60.300000pt;}
.h2b{height:61.920000pt;}
.h2e{height:62.910000pt;}
.h55{height:63.150638pt;}
.h3f{height:64.290000pt;}
.h22{height:64.960000pt;}
.h29{height:65.823750pt;}
.h2c{height:65.930417pt;}
.h3e{height:65.946667pt;}
.h23{height:66.546667pt;}
.h53{height:66.866667pt;}
.h2f{height:66.870000pt;}
.h40{height:66.906667pt;}
.h44{height:67.186667pt;}
.h45{height:67.200000pt;}
.h54{height:67.218667pt;}
.h51{height:69.466667pt;}
.hb{height:72.010000pt;}
.ha{height:72.240000pt;}
.h2{height:73.626667pt;}
.h4c{height:75.506667pt;}
.h4a{height:75.538667pt;}
.h38{height:76.466667pt;}
.h34{height:76.498667pt;}
.h49{height:79.360000pt;}
.h30{height:80.640000pt;}
.h50{height:87.706667pt;}
.h26{height:88.348000pt;}
.h9{height:154.280000pt;}
.h20{height:159.746667pt;}
.h10{height:561.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:42.260000pt;}
.w12{width:47.020000pt;}
.w1d{width:53.120000pt;}
.wb{width:56.320000pt;}
.w1c{width:57.300000pt;}
.w1e{width:59.506667pt;}
.wd{width:59.546667pt;}
.w13{width:65.280000pt;}
.w18{width:67.826667pt;}
.w9{width:73.300000pt;}
.wa{width:84.800000pt;}
.we{width:84.832000pt;}
.w1f{width:86.106667pt;}
.w10{width:89.280000pt;}
.w15{width:89.306667pt;}
.wf{width:89.618667pt;}
.w17{width:95.040000pt;}
.w20{width:95.378667pt;}
.w14{width:95.386667pt;}
.w1a{width:101.138667pt;}
.w19{width:101.184000pt;}
.w2{width:102.420000pt;}
.w16{width:107.264000pt;}
.w1b{width:107.520000pt;}
.wc{width:110.426667pt;}
.w4{width:139.560000pt;}
.w7{width:158.440000pt;}
.w8{width:458.106667pt;}
.w5{width:476.666667pt;}
.w3{width:514.120000pt;}
.w6{width:616.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.040000pt;}
.x9{left:12.788000pt;}
.x5{left:24.653333pt;}
.x1a{left:32.340000pt;}
.x14{left:34.580000pt;}
.x4{left:37.453333pt;}
.xc{left:40.660000pt;}
.x10{left:77.142667pt;}
.x16{left:79.062667pt;}
.x2{left:86.742667pt;}
.x15{left:87.702667pt;}
.x1{left:89.004000pt;}
.x18{left:89.942667pt;}
.x7{left:96.032000pt;}
.x2b{left:100.512000pt;}
.x6{left:102.133333pt;}
.x32{left:106.592000pt;}
.x17{left:109.809333pt;}
.x19{left:114.929333pt;}
.x1b{left:119.089333pt;}
.xf{left:130.609333pt;}
.x24{left:132.564000pt;}
.x3b{left:133.826667pt;}
.x1f{left:137.026667pt;}
.x1c{left:144.066667pt;}
.x33{left:147.280000pt;}
.x2d{left:148.560000pt;}
.x13{left:151.089333pt;}
.x12{left:162.320000pt;}
.x25{left:180.560000pt;}
.x3{left:191.120000pt;}
.x34{left:201.373333pt;}
.xd{left:205.849333pt;}
.xe{left:207.449333pt;}
.xa{left:228.573333pt;}
.x11{left:247.133333pt;}
.x35{left:261.533333pt;}
.x2e{left:274.013333pt;}
.x20{left:318.533333pt;}
.x2f{left:334.213333pt;}
.x26{left:342.533333pt;}
.x36{left:348.613333pt;}
.x2c{left:369.760000pt;}
.x21{left:378.720000pt;}
.x2a{left:396.000000pt;}
.x1d{left:420.960000pt;}
.x27{left:432.480000pt;}
.x39{left:434.746667pt;}
.x30{left:436.360000pt;}
.x37{left:450.440000pt;}
.x3a{left:458.746667pt;}
.x22{left:464.200000pt;}
.x1e{left:468.986667pt;}
.x31{left:538.160000pt;}
.x28{left:540.720000pt;}
.x38{left:546.480000pt;}
.x23{left:554.480000pt;}
.x29{left:636.733333pt;}
.x8{left:668.413333pt;}
}




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