
    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_7e5ae6a19b06f4bfb1e34e64.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_381aab8f0b7e754ac11345b9.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9f90c47ad0f5d1dac0a66eb4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2e4ce1148c67dd9db63b4c25.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9706f146fba2bd38155f7956.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3fafd33bb9bc13eebb46a9af.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5a769e8ded98d1d44ea3f199.woff')format("woff");}.ffa{font-family:ffa;line-height:0.901855;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_d7695ae5d7e4e9bb534b6b8c.woff')format("woff");}.ffb{font-family:ffb;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;}
.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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.208200px;}
.ls7{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018720px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.259800px;}
.lse{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.336000px;}
.ls2{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.511800px;}
.lsd{letter-spacing:0.540000px;}
.ls13{letter-spacing:16.506720px;}
.ls3{letter-spacing:46.026720px;}
.lsf{letter-spacing:315.000000px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.146400px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.479800px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
.wsf{word-spacing:54.240960px;}
.wse{word-spacing:113.280000px;}
.wsd{word-spacing:136.453680px;}
.wsc{word-spacing:169.338000px;}
.ws11{word-spacing:255.359760px;}
.ws10{word-spacing:269.220000px;}
.wsb{word-spacing:449.797680px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1573.637760px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1111.639680px;}
._1e{margin-left:-1078.740000px;}
._1f{margin-left:-979.159680px;}
._8{margin-left:-4.097520px;}
._7{margin-left:-2.768880px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._b{width:2.433360px;}
._6{width:3.482880px;}
._c{width:5.240400px;}
._a{width:6.724080px;}
._9{width:7.917120px;}
._21{width:9.083520px;}
._11{width:10.128240px;}
._10{width:12.031200px;}
._f{width:13.266720px;}
._16{width:16.582320px;}
._d{width:17.748720px;}
._15{width:18.970560px;}
._1a{width:20.050560px;}
._17{width:21.303360px;}
._1d{width:23.306400px;}
._24{width:24.621120px;}
._13{width:25.995600px;}
._12{width:27.489600px;}
._18{width:29.370960px;}
._25{width:30.506400px;}
._14{width:32.657760px;}
._1b{width:34.959600px;}
._20{width:36.149040px;}
._32{width:37.617840px;}
._19{width:39.412800px;}
._e{width:42.369840px;}
._36{width:45.028080px;}
._1c{width:47.836800px;}
._28{width:48.912480px;}
._27{width:50.258160px;}
._35{width:51.458400px;}
._33{width:52.549920px;}
._29{width:55.038960px;}
._30{width:58.146480px;}
._34{width:74.310480px;}
._31{width:81.804240px;}
._26{width:82.827360px;}
._22{width:93.703680px;}
._2d{width:99.300000px;}
._2e{width:109.939776px;}
._2f{width:114.760080px;}
._2c{width:159.478320px;}
._2b{width:185.294160px;}
._2a{width:472.978320px;}
._23{width:845.146080px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:0.690000px;}
.y94{bottom:0.825000px;}
.y97{bottom:1.005000px;}
.y99{bottom:1.770000px;}
.y7d{bottom:5.760000px;}
.y5f{bottom:5.940000px;}
.y7{bottom:6.300000px;}
.y7f{bottom:10.260000px;}
.y8e{bottom:10.290000px;}
.y83{bottom:10.305000px;}
.y81{bottom:10.440000px;}
.y9{bottom:11.520000px;}
.y8{bottom:12.240000px;}
.y5b{bottom:13.860000px;}
.y62{bottom:14.040000px;}
.y9b{bottom:17.970000px;}
.y93{bottom:18.105000px;}
.y96{bottom:18.150000px;}
.yf7{bottom:21.750000px;}
.yef{bottom:21.885000px;}
.y100{bottom:21.930000px;}
.y7c{bottom:25.560000px;}
.y5e{bottom:25.740000px;}
.yff{bottom:28.260000px;}
.ya{bottom:39.780000px;}
.yf5{bottom:43.560000px;}
.yed{bottom:43.740000px;}
.y6{bottom:55.440000px;}
.yf2{bottom:61.200000px;}
.yec{bottom:61.350000px;}
.yfa{bottom:61.380000px;}
.yee{bottom:71.565000px;}
.yf6{bottom:76.245000px;}
.ybf{bottom:81.180000px;}
.y91{bottom:82.800000px;}
.y39{bottom:85.320000px;}
.yfb{bottom:90.285000px;}
.yea{bottom:97.020000px;}
.ybe{bottom:100.980000px;}
.y90{bottom:102.600000px;}
.y38{bottom:105.120000px;}
.yf3{bottom:113.295000px;}
.y118{bottom:114.120000px;}
.ye9{bottom:117.000000px;}
.y8f{bottom:117.360000px;}
.yfc{bottom:119.235000px;}
.ybd{bottom:120.960000px;}
.y37{bottom:124.920000px;}
.y117{bottom:133.920000px;}
.ye8{bottom:136.800000px;}
.ybc{bottom:140.760000px;}
.y8d{bottom:142.560000px;}
.y36{bottom:144.900000px;}
.yfd{bottom:148.140000px;}
.y116{bottom:153.930000px;}
.ye7{bottom:156.630000px;}
.ybb{bottom:160.590000px;}
.y35{bottom:164.730000px;}
.yf4{bottom:165.420000px;}
.y8c{bottom:167.790000px;}
.y6c{bottom:169.770000px;}
.y115{bottom:173.730000px;}
.ye6{bottom:176.430000px;}
.yfe{bottom:177.090000px;}
.yba{bottom:180.390000px;}
.y34{bottom:184.530000px;}
.y6b{bottom:189.570000px;}
.y8b{bottom:192.810000px;}
.y114{bottom:193.530000px;}
.yf8{bottom:194.655000px;}
.ye5{bottom:196.230000px;}
.yf0{bottom:196.740000px;}
.yb9{bottom:200.190000px;}
.y33{bottom:204.330000px;}
.y101{bottom:206.280000px;}
.y6a{bottom:209.550000px;}
.y113{bottom:213.330000px;}
.ye4{bottom:216.210000px;}
.y8a{bottom:218.010000px;}
.yb8{bottom:220.170000px;}
.y32{bottom:224.130000px;}
.y69{bottom:229.350000px;}
.y112{bottom:233.130000px;}
.ye3{bottom:236.010000px;}
.yb7{bottom:239.970000px;}
.y89{bottom:243.030000px;}
.y31{bottom:244.110000px;}
.y68{bottom:249.150000px;}
.y111{bottom:253.110000px;}
.ye2{bottom:255.810000px;}
.yb6{bottom:259.770000px;}
.y30{bottom:263.910000px;}
.y88{bottom:268.230000px;}
.y67{bottom:268.950000px;}
.y110{bottom:272.910000px;}
.ye1{bottom:275.610000px;}
.yb5{bottom:279.570000px;}
.y2f{bottom:283.710000px;}
.y66{bottom:288.750000px;}
.y10f{bottom:292.710000px;}
.y87{bottom:293.430000px;}
.ye0{bottom:295.410000px;}
.yb4{bottom:299.370000px;}
.y2e{bottom:303.510000px;}
.y10e{bottom:312.510000px;}
.ydf{bottom:315.390000px;}
.y86{bottom:318.450000px;}
.yb3{bottom:319.350000px;}
.y65{bottom:321.690000px;}
.y2d{bottom:323.310000px;}
.y10d{bottom:332.310000px;}
.yde{bottom:335.190000px;}
.yb2{bottom:339.150000px;}
.y2c{bottom:343.290000px;}
.y85{bottom:343.650000px;}
.y64{bottom:350.310000px;}
.y10c{bottom:352.290000px;}
.ydd{bottom:354.990000px;}
.yb1{bottom:358.950000px;}
.y2b{bottom:363.090000px;}
.y84{bottom:368.670000px;}
.y10b{bottom:372.090000px;}
.ydc{bottom:374.790000px;}
.yb0{bottom:378.750000px;}
.y63{bottom:379.110000px;}
.y2a{bottom:382.890000px;}
.y10a{bottom:391.890000px;}
.y82{bottom:393.870000px;}
.ydb{bottom:394.590000px;}
.yaf{bottom:398.550000px;}
.y29{bottom:402.735000px;}
.y61{bottom:407.775000px;}
.y109{bottom:411.735000px;}
.yda{bottom:414.615000px;}
.yae{bottom:418.575000px;}
.y80{bottom:418.935000px;}
.y28{bottom:422.535000px;}
.y108{bottom:431.535000px;}
.yd9{bottom:434.415000px;}
.y60{bottom:436.575000px;}
.yad{bottom:438.375000px;}
.y27{bottom:442.515000px;}
.y7e{bottom:444.135000px;}
.y107{bottom:451.515000px;}
.yd8{bottom:454.215000px;}
.yac{bottom:458.175000px;}
.y26{bottom:462.315000px;}
.y5d{bottom:465.195000px;}
.y7b{bottom:470.775000px;}
.y106{bottom:471.315000px;}
.yd7{bottom:474.015000px;}
.yab{bottom:477.975000px;}
.y25{bottom:482.115000px;}
.y105{bottom:491.115000px;}
.yd6{bottom:493.815000px;}
.yaa{bottom:497.775000px;}
.y24{bottom:501.915000px;}
.y5c{bottom:505.695000px;}
.y104{bottom:510.915000px;}
.yd5{bottom:513.795000px;}
.y7a{bottom:517.035000px;}
.ya9{bottom:517.755000px;}
.y23{bottom:521.715000px;}
.y103{bottom:530.715000px;}
.yd4{bottom:533.595000px;}
.y5a{bottom:535.935000px;}
.y79{bottom:536.835000px;}
.ya8{bottom:537.555000px;}
.y22{bottom:541.695000px;}
.y102{bottom:550.695000px;}
.yd3{bottom:553.395000px;}
.y78{bottom:556.635000px;}
.ya7{bottom:557.355000px;}
.y21{bottom:561.495000px;}
.y59{bottom:570.495000px;}
.yd2{bottom:573.195000px;}
.y77{bottom:576.435000px;}
.ya6{bottom:577.155000px;}
.y20{bottom:581.295000px;}
.y58{bottom:590.295000px;}
.yd1{bottom:592.995000px;}
.y76{bottom:596.415000px;}
.ya5{bottom:596.955000px;}
.y1f{bottom:601.095000px;}
.y57{bottom:610.095000px;}
.yd0{bottom:612.975000px;}
.y75{bottom:616.215000px;}
.ya4{bottom:616.935000px;}
.y1e{bottom:620.895000px;}
.y56{bottom:629.895000px;}
.ycf{bottom:632.775000px;}
.y74{bottom:636.015000px;}
.ya3{bottom:636.735000px;}
.y1d{bottom:640.875000px;}
.y55{bottom:649.905000px;}
.yce{bottom:652.605000px;}
.ya2{bottom:653.325000px;}
.yf1{bottom:653.580000px;}
.y73{bottom:655.845000px;}
.y1c{bottom:660.705000px;}
.y54{bottom:669.705000px;}
.ycd{bottom:672.405000px;}
.y72{bottom:675.645000px;}
.y1b{bottom:682.665000px;}
.y53{bottom:689.505000px;}
.ycc{bottom:692.205000px;}
.y71{bottom:695.625000px;}
.y1a{bottom:702.645000px;}
.y52{bottom:709.305000px;}
.ycb{bottom:712.185000px;}
.y70{bottom:715.425000px;}
.y19{bottom:722.445000px;}
.y51{bottom:729.105000px;}
.yca{bottom:731.985000px;}
.y6f{bottom:736.845000px;}
.y18{bottom:742.245000px;}
.y50{bottom:749.085000px;}
.yc9{bottom:751.785000px;}
.y6e{bottom:758.445000px;}
.y17{bottom:762.045000px;}
.y4f{bottom:768.885000px;}
.yc8{bottom:771.585000px;}
.y6d{bottom:774.825000px;}
.y16{bottom:781.845000px;}
.y92{bottom:782.640000px;}
.y4e{bottom:788.685000px;}
.yc7{bottom:791.385000px;}
.y15{bottom:801.825000px;}
.y4d{bottom:808.485000px;}
.yc6{bottom:811.365000px;}
.y14{bottom:821.625000px;}
.y4c{bottom:828.285000px;}
.yc5{bottom:831.165000px;}
.y13{bottom:841.425000px;}
.y4b{bottom:848.265000px;}
.yc4{bottom:850.965000px;}
.y12{bottom:861.225000px;}
.y4a{bottom:868.065000px;}
.yc3{bottom:870.765000px;}
.ya1{bottom:880.305000px;}
.y95{bottom:880.380000px;}
.y49{bottom:887.865000px;}
.y11{bottom:888.765000px;}
.yc2{bottom:890.565000px;}
.ya0{bottom:900.150000px;}
.y48{bottom:907.710000px;}
.yc1{bottom:910.590000px;}
.y10{bottom:913.830000px;}
.y9f{bottom:920.130000px;}
.yc0{bottom:926.970000px;}
.yf9{bottom:927.180000px;}
.y47{bottom:927.510000px;}
.yf{bottom:933.630000px;}
.y9e{bottom:936.510000px;}
.yeb{bottom:936.720000px;}
.y46{bottom:947.490000px;}
.ye{bottom:948.930000px;}
.y98{bottom:966.600000px;}
.y45{bottom:967.290000px;}
.yd{bottom:970.170000px;}
.y44{bottom:987.090000px;}
.yc{bottom:993.570000px;}
.y43{bottom:1006.890000px;}
.yb{bottom:1025.250000px;}
.y42{bottom:1026.690000px;}
.y41{bottom:1046.490000px;}
.y9a{bottom:1047.060000px;}
.y5{bottom:1054.050000px;}
.y40{bottom:1066.470000px;}
.y3f{bottom:1086.270000px;}
.y4{bottom:1087.890000px;}
.y3e{bottom:1106.070000px;}
.y3{bottom:1118.850000px;}
.y9d{bottom:1119.600000px;}
.y3d{bottom:1125.870000px;}
.y3c{bottom:1145.670000px;}
.y2{bottom:1149.660000px;}
.y3b{bottom:1173.780000px;}
.y1{bottom:1181.700000px;}
.y3a{bottom:1194.300000px;}
.h1a{height:15.840000px;}
.h5{height:21.780000px;}
.h15{height:24.300000px;}
.h17{height:24.336000px;}
.h16{height:24.480000px;}
.hc{height:27.147656px;}
.h7{height:27.432422px;}
.hf{height:27.900000px;}
.h12{height:27.936000px;}
.h11{height:28.080000px;}
.h6{height:29.464453px;}
.h1b{height:32.040000px;}
.h18{height:32.220000px;}
.h14{height:39.600000px;}
.h10{height:39.780000px;}
.h13{height:41.493516px;}
.hd{height:41.726953px;}
.h19{height:41.827500px;}
.ha{height:42.164648px;}
.h1f{height:42.266250px;}
.he{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h1c{height:50.273438px;}
.hb{height:53.224453px;}
.h2{height:54.864844px;}
.h8{height:65.884219px;}
.h9{height:67.565039px;}
.h1e{height:221.040000px;}
.h1d{height:223.020000px;}
.h20{height:232.560000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:50.760000px;}
.w6{width:51.336000px;}
.w3{width:55.296000px;}
.wa{width:88.956000px;}
.w8{width:106.380000px;}
.w9{width:110.520000px;}
.wb{width:112.896000px;}
.w5{width:161.310000px;}
.wc{width:202.140000px;}
.wd{width:202.320000px;}
.we{width:365.940000px;}
.w4{width:719.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1c{left:10.905000px;}
.x29{left:32.904000px;}
.x2c{left:40.608000px;}
.x28{left:48.096000px;}
.x1{left:54.179987px;}
.x22{left:55.259987px;}
.x2{left:62.100000px;}
.x2e{left:64.800000px;}
.x9{left:66.599987px;}
.x21{left:74.339987px;}
.x13{left:75.599987px;}
.xa{left:80.279987px;}
.x10{left:88.235987px;}
.x2f{left:89.490000px;}
.x2d{left:99.360000px;}
.x30{left:108.035987px;}
.x2b{left:109.080000px;}
.xc{left:110.915987px;}
.x4{left:118.296000px;}
.xd{left:129.095987px;}
.x2a{left:138.885000px;}
.xe{left:144.755987px;}
.x20{left:171.569987px;}
.x23{left:190.469987px;}
.x14{left:216.570000px;}
.x15{left:268.635000px;}
.x11{left:314.534987px;}
.x16{left:320.115000px;}
.x8{left:345.669000px;}
.x7{left:350.709000px;}
.x1f{left:425.234987px;}
.x6{left:428.829000px;}
.x5{left:442.329000px;}
.xb{left:446.504987px;}
.xf{left:473.144987px;}
.x17{left:494.744987px;}
.x18{left:499.245000px;}
.x27{left:527.144987px;}
.x1e{left:554.040000px;}
.x1d{left:555.840000px;}
.x1b{left:558.000000px;}
.x19{left:610.485000px;}
.x25{left:629.969987px;}
.x26{left:656.069987px;}
.x12{left:678.894000px;}
.x1a{left:700.170000px;}
.x24{left:838.979987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.185067pt;}
.ls7{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016640pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.298667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.454933pt;}
.lsd{letter-spacing:0.480000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls3{letter-spacing:40.912640pt;}
.lsf{letter-spacing:280.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.870933pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
.wsf{word-spacing:48.214187pt;}
.wse{word-spacing:100.693333pt;}
.wsd{word-spacing:121.292160pt;}
.wsc{word-spacing:150.522667pt;}
.ws11{word-spacing:226.986453pt;}
.ws10{word-spacing:239.306667pt;}
.wsb{word-spacing:399.820160pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1398.789120pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-988.124160pt;}
._1e{margin-left:-958.880000pt;}
._1f{margin-left:-870.364160pt;}
._8{margin-left:-3.642240pt;}
._7{margin-left:-2.461227pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._b{width:2.162987pt;}
._6{width:3.095893pt;}
._c{width:4.658133pt;}
._a{width:5.976960pt;}
._9{width:7.037440pt;}
._21{width:8.074240pt;}
._11{width:9.002880pt;}
._10{width:10.694400pt;}
._f{width:11.792640pt;}
._16{width:14.739840pt;}
._d{width:15.776640pt;}
._15{width:16.862720pt;}
._1a{width:17.822720pt;}
._17{width:18.936320pt;}
._1d{width:20.716800pt;}
._24{width:21.885440pt;}
._13{width:23.107200pt;}
._12{width:24.435200pt;}
._18{width:26.107520pt;}
._25{width:27.116800pt;}
._14{width:29.029120pt;}
._1b{width:31.075200pt;}
._20{width:32.132480pt;}
._32{width:33.438080pt;}
._19{width:35.033600pt;}
._e{width:37.662080pt;}
._36{width:40.024960pt;}
._1c{width:42.521600pt;}
._28{width:43.477760pt;}
._27{width:44.673920pt;}
._35{width:45.740800pt;}
._33{width:46.711040pt;}
._29{width:48.923520pt;}
._30{width:51.685760pt;}
._34{width:66.053760pt;}
._31{width:72.714880pt;}
._26{width:73.624320pt;}
._22{width:83.292160pt;}
._2d{width:88.266667pt;}
._2e{width:97.724245pt;}
._2f{width:102.008960pt;}
._2c{width:141.758507pt;}
._2b{width:164.705920pt;}
._2a{width:420.425173pt;}
._23{width:751.240960pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:0.613333pt;}
.y94{bottom:0.733333pt;}
.y97{bottom:0.893333pt;}
.y99{bottom:1.573333pt;}
.y7d{bottom:5.120000pt;}
.y5f{bottom:5.280000pt;}
.y7{bottom:5.600000pt;}
.y7f{bottom:9.120000pt;}
.y8e{bottom:9.146667pt;}
.y83{bottom:9.160000pt;}
.y81{bottom:9.280000pt;}
.y9{bottom:10.240000pt;}
.y8{bottom:10.880000pt;}
.y5b{bottom:12.320000pt;}
.y62{bottom:12.480000pt;}
.y9b{bottom:15.973333pt;}
.y93{bottom:16.093333pt;}
.y96{bottom:16.133333pt;}
.yf7{bottom:19.333333pt;}
.yef{bottom:19.453333pt;}
.y100{bottom:19.493333pt;}
.y7c{bottom:22.720000pt;}
.y5e{bottom:22.880000pt;}
.yff{bottom:25.120000pt;}
.ya{bottom:35.360000pt;}
.yf5{bottom:38.720000pt;}
.yed{bottom:38.880000pt;}
.y6{bottom:49.280000pt;}
.yf2{bottom:54.400000pt;}
.yec{bottom:54.533333pt;}
.yfa{bottom:54.560000pt;}
.yee{bottom:63.613333pt;}
.yf6{bottom:67.773333pt;}
.ybf{bottom:72.160000pt;}
.y91{bottom:73.600000pt;}
.y39{bottom:75.840000pt;}
.yfb{bottom:80.253333pt;}
.yea{bottom:86.240000pt;}
.ybe{bottom:89.760000pt;}
.y90{bottom:91.200000pt;}
.y38{bottom:93.440000pt;}
.yf3{bottom:100.706667pt;}
.y118{bottom:101.440000pt;}
.ye9{bottom:104.000000pt;}
.y8f{bottom:104.320000pt;}
.yfc{bottom:105.986667pt;}
.ybd{bottom:107.520000pt;}
.y37{bottom:111.040000pt;}
.y117{bottom:119.040000pt;}
.ye8{bottom:121.600000pt;}
.ybc{bottom:125.120000pt;}
.y8d{bottom:126.720000pt;}
.y36{bottom:128.800000pt;}
.yfd{bottom:131.680000pt;}
.y116{bottom:136.826667pt;}
.ye7{bottom:139.226667pt;}
.ybb{bottom:142.746667pt;}
.y35{bottom:146.426667pt;}
.yf4{bottom:147.040000pt;}
.y8c{bottom:149.146667pt;}
.y6c{bottom:150.906667pt;}
.y115{bottom:154.426667pt;}
.ye6{bottom:156.826667pt;}
.yfe{bottom:157.413333pt;}
.yba{bottom:160.346667pt;}
.y34{bottom:164.026667pt;}
.y6b{bottom:168.506667pt;}
.y8b{bottom:171.386667pt;}
.y114{bottom:172.026667pt;}
.yf8{bottom:173.026667pt;}
.ye5{bottom:174.426667pt;}
.yf0{bottom:174.880000pt;}
.yb9{bottom:177.946667pt;}
.y33{bottom:181.626667pt;}
.y101{bottom:183.360000pt;}
.y6a{bottom:186.266667pt;}
.y113{bottom:189.626667pt;}
.ye4{bottom:192.186667pt;}
.y8a{bottom:193.786667pt;}
.yb8{bottom:195.706667pt;}
.y32{bottom:199.226667pt;}
.y69{bottom:203.866667pt;}
.y112{bottom:207.226667pt;}
.ye3{bottom:209.786667pt;}
.yb7{bottom:213.306667pt;}
.y89{bottom:216.026667pt;}
.y31{bottom:216.986667pt;}
.y68{bottom:221.466667pt;}
.y111{bottom:224.986667pt;}
.ye2{bottom:227.386667pt;}
.yb6{bottom:230.906667pt;}
.y30{bottom:234.586667pt;}
.y88{bottom:238.426667pt;}
.y67{bottom:239.066667pt;}
.y110{bottom:242.586667pt;}
.ye1{bottom:244.986667pt;}
.yb5{bottom:248.506667pt;}
.y2f{bottom:252.186667pt;}
.y66{bottom:256.666667pt;}
.y10f{bottom:260.186667pt;}
.y87{bottom:260.826667pt;}
.ye0{bottom:262.586667pt;}
.yb4{bottom:266.106667pt;}
.y2e{bottom:269.786667pt;}
.y10e{bottom:277.786667pt;}
.ydf{bottom:280.346667pt;}
.y86{bottom:283.066667pt;}
.yb3{bottom:283.866667pt;}
.y65{bottom:285.946667pt;}
.y2d{bottom:287.386667pt;}
.y10d{bottom:295.386667pt;}
.yde{bottom:297.946667pt;}
.yb2{bottom:301.466667pt;}
.y2c{bottom:305.146667pt;}
.y85{bottom:305.466667pt;}
.y64{bottom:311.386667pt;}
.y10c{bottom:313.146667pt;}
.ydd{bottom:315.546667pt;}
.yb1{bottom:319.066667pt;}
.y2b{bottom:322.746667pt;}
.y84{bottom:327.706667pt;}
.y10b{bottom:330.746667pt;}
.ydc{bottom:333.146667pt;}
.yb0{bottom:336.666667pt;}
.y63{bottom:336.986667pt;}
.y2a{bottom:340.346667pt;}
.y10a{bottom:348.346667pt;}
.y82{bottom:350.106667pt;}
.ydb{bottom:350.746667pt;}
.yaf{bottom:354.266667pt;}
.y29{bottom:357.986667pt;}
.y61{bottom:362.466667pt;}
.y109{bottom:365.986667pt;}
.yda{bottom:368.546667pt;}
.yae{bottom:372.066667pt;}
.y80{bottom:372.386667pt;}
.y28{bottom:375.586667pt;}
.y108{bottom:383.586667pt;}
.yd9{bottom:386.146667pt;}
.y60{bottom:388.066667pt;}
.yad{bottom:389.666667pt;}
.y27{bottom:393.346667pt;}
.y7e{bottom:394.786667pt;}
.y107{bottom:401.346667pt;}
.yd8{bottom:403.746667pt;}
.yac{bottom:407.266667pt;}
.y26{bottom:410.946667pt;}
.y5d{bottom:413.506667pt;}
.y7b{bottom:418.466667pt;}
.y106{bottom:418.946667pt;}
.yd7{bottom:421.346667pt;}
.yab{bottom:424.866667pt;}
.y25{bottom:428.546667pt;}
.y105{bottom:436.546667pt;}
.yd6{bottom:438.946667pt;}
.yaa{bottom:442.466667pt;}
.y24{bottom:446.146667pt;}
.y5c{bottom:449.506667pt;}
.y104{bottom:454.146667pt;}
.yd5{bottom:456.706667pt;}
.y7a{bottom:459.586667pt;}
.ya9{bottom:460.226667pt;}
.y23{bottom:463.746667pt;}
.y103{bottom:471.746667pt;}
.yd4{bottom:474.306667pt;}
.y5a{bottom:476.386667pt;}
.y79{bottom:477.186667pt;}
.ya8{bottom:477.826667pt;}
.y22{bottom:481.506667pt;}
.y102{bottom:489.506667pt;}
.yd3{bottom:491.906667pt;}
.y78{bottom:494.786667pt;}
.ya7{bottom:495.426667pt;}
.y21{bottom:499.106667pt;}
.y59{bottom:507.106667pt;}
.yd2{bottom:509.506667pt;}
.y77{bottom:512.386667pt;}
.ya6{bottom:513.026667pt;}
.y20{bottom:516.706667pt;}
.y58{bottom:524.706667pt;}
.yd1{bottom:527.106667pt;}
.y76{bottom:530.146667pt;}
.ya5{bottom:530.626667pt;}
.y1f{bottom:534.306667pt;}
.y57{bottom:542.306667pt;}
.yd0{bottom:544.866667pt;}
.y75{bottom:547.746667pt;}
.ya4{bottom:548.386667pt;}
.y1e{bottom:551.906667pt;}
.y56{bottom:559.906667pt;}
.ycf{bottom:562.466667pt;}
.y74{bottom:565.346667pt;}
.ya3{bottom:565.986667pt;}
.y1d{bottom:569.666667pt;}
.y55{bottom:577.693333pt;}
.yce{bottom:580.093333pt;}
.ya2{bottom:580.733333pt;}
.yf1{bottom:580.960000pt;}
.y73{bottom:582.973333pt;}
.y1c{bottom:587.293333pt;}
.y54{bottom:595.293333pt;}
.ycd{bottom:597.693333pt;}
.y72{bottom:600.573333pt;}
.y1b{bottom:606.813333pt;}
.y53{bottom:612.893333pt;}
.ycc{bottom:615.293333pt;}
.y71{bottom:618.333333pt;}
.y1a{bottom:624.573333pt;}
.y52{bottom:630.493333pt;}
.ycb{bottom:633.053333pt;}
.y70{bottom:635.933333pt;}
.y19{bottom:642.173333pt;}
.y51{bottom:648.093333pt;}
.yca{bottom:650.653333pt;}
.y6f{bottom:654.973333pt;}
.y18{bottom:659.773333pt;}
.y50{bottom:665.853333pt;}
.yc9{bottom:668.253333pt;}
.y6e{bottom:674.173333pt;}
.y17{bottom:677.373333pt;}
.y4f{bottom:683.453333pt;}
.yc8{bottom:685.853333pt;}
.y6d{bottom:688.733333pt;}
.y16{bottom:694.973333pt;}
.y92{bottom:695.680000pt;}
.y4e{bottom:701.053333pt;}
.yc7{bottom:703.453333pt;}
.y15{bottom:712.733333pt;}
.y4d{bottom:718.653333pt;}
.yc6{bottom:721.213333pt;}
.y14{bottom:730.333333pt;}
.y4c{bottom:736.253333pt;}
.yc5{bottom:738.813333pt;}
.y13{bottom:747.933333pt;}
.y4b{bottom:754.013333pt;}
.yc4{bottom:756.413333pt;}
.y12{bottom:765.533333pt;}
.y4a{bottom:771.613333pt;}
.yc3{bottom:774.013333pt;}
.ya1{bottom:782.493333pt;}
.y95{bottom:782.560000pt;}
.y49{bottom:789.213333pt;}
.y11{bottom:790.013333pt;}
.yc2{bottom:791.613333pt;}
.ya0{bottom:800.133333pt;}
.y48{bottom:806.853333pt;}
.yc1{bottom:809.413333pt;}
.y10{bottom:812.293333pt;}
.y9f{bottom:817.893333pt;}
.yc0{bottom:823.973333pt;}
.yf9{bottom:824.160000pt;}
.y47{bottom:824.453333pt;}
.yf{bottom:829.893333pt;}
.y9e{bottom:832.453333pt;}
.yeb{bottom:832.640000pt;}
.y46{bottom:842.213333pt;}
.ye{bottom:843.493333pt;}
.y98{bottom:859.200000pt;}
.y45{bottom:859.813333pt;}
.yd{bottom:862.373333pt;}
.y44{bottom:877.413333pt;}
.yc{bottom:883.173333pt;}
.y43{bottom:895.013333pt;}
.yb{bottom:911.333333pt;}
.y42{bottom:912.613333pt;}
.y41{bottom:930.213333pt;}
.y9a{bottom:930.720000pt;}
.y5{bottom:936.933333pt;}
.y40{bottom:947.973333pt;}
.y3f{bottom:965.573333pt;}
.y4{bottom:967.013333pt;}
.y3e{bottom:983.173333pt;}
.y3{bottom:994.533333pt;}
.y9d{bottom:995.200000pt;}
.y3d{bottom:1000.773333pt;}
.y3c{bottom:1018.373333pt;}
.y2{bottom:1021.920000pt;}
.y3b{bottom:1043.360000pt;}
.y1{bottom:1050.400000pt;}
.y3a{bottom:1061.600000pt;}
.h1a{height:14.080000pt;}
.h5{height:19.360000pt;}
.h15{height:21.600000pt;}
.h17{height:21.632000pt;}
.h16{height:21.760000pt;}
.hc{height:24.131250pt;}
.h7{height:24.384375pt;}
.hf{height:24.800000pt;}
.h12{height:24.832000pt;}
.h11{height:24.960000pt;}
.h6{height:26.190625pt;}
.h1b{height:28.480000pt;}
.h18{height:28.640000pt;}
.h14{height:35.200000pt;}
.h10{height:35.360000pt;}
.h13{height:36.883125pt;}
.hd{height:37.090625pt;}
.h19{height:37.180000pt;}
.ha{height:37.479688pt;}
.h1f{height:37.570000pt;}
.he{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h1c{height:44.687500pt;}
.hb{height:47.310625pt;}
.h2{height:48.768750pt;}
.h8{height:58.563750pt;}
.h9{height:60.057813pt;}
.h1e{height:196.480000pt;}
.h1d{height:198.240000pt;}
.h20{height:206.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:45.120000pt;}
.w6{width:45.632000pt;}
.w3{width:49.152000pt;}
.wa{width:79.072000pt;}
.w8{width:94.560000pt;}
.w9{width:98.240000pt;}
.wb{width:100.352000pt;}
.w5{width:143.386667pt;}
.wc{width:179.680000pt;}
.wd{width:179.840000pt;}
.we{width:325.280000pt;}
.w4{width:639.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1c{left:9.693333pt;}
.x29{left:29.248000pt;}
.x2c{left:36.096000pt;}
.x28{left:42.752000pt;}
.x1{left:48.159988pt;}
.x22{left:49.119988pt;}
.x2{left:55.200000pt;}
.x2e{left:57.600000pt;}
.x9{left:59.199988pt;}
.x21{left:66.079988pt;}
.x13{left:67.199988pt;}
.xa{left:71.359988pt;}
.x10{left:78.431988pt;}
.x2f{left:79.546667pt;}
.x2d{left:88.320000pt;}
.x30{left:96.031988pt;}
.x2b{left:96.960000pt;}
.xc{left:98.591988pt;}
.x4{left:105.152000pt;}
.xd{left:114.751988pt;}
.x2a{left:123.453333pt;}
.xe{left:128.671988pt;}
.x20{left:152.506655pt;}
.x23{left:169.306655pt;}
.x14{left:192.506667pt;}
.x15{left:238.786667pt;}
.x11{left:279.586655pt;}
.x16{left:284.546667pt;}
.x8{left:307.261333pt;}
.x7{left:311.741333pt;}
.x1f{left:377.986655pt;}
.x6{left:381.181333pt;}
.x5{left:393.181333pt;}
.xb{left:396.893322pt;}
.xf{left:420.573322pt;}
.x17{left:439.773322pt;}
.x18{left:443.773333pt;}
.x27{left:468.573322pt;}
.x1e{left:492.480000pt;}
.x1d{left:494.080000pt;}
.x1b{left:496.000000pt;}
.x19{left:542.653333pt;}
.x25{left:559.973322pt;}
.x26{left:583.173322pt;}
.x12{left:603.461333pt;}
.x1a{left:622.373333pt;}
.x24{left:745.759988pt;}
}




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