
    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_5fb9f7027dc74de3c752f275.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8194def765fd7e734955fbca.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bfc53bf5fa0d0fcc537430aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_50ff5b3193423911189b3fc5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ecf5d23d02e2e11b3e26cf67.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0ab1df12bf771d3fbc1a95fa.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_25255edbf0c3b6bb6fcdeb36.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_704c05bcdab3ee09590be71c.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_67e1f5e0c2b284fa20d5ba26.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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);}
.v1{vertical-align:-118.980000px;}
.v3{vertical-align:-110.160000px;}
.v4{vertical-align:-108.000000px;}
.v2{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.900000px;}
.ls2e{letter-spacing:-0.690000px;}
.ls16{letter-spacing:-0.684000px;}
.ls1f{letter-spacing:-0.378600px;}
.ls28{letter-spacing:-0.369600px;}
.ls1d{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.350400px;}
.ls1a{letter-spacing:-0.341400px;}
.lsc{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.037440px;}
.ls17{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.037440px;}
.ls19{letter-spacing:0.172080px;}
.lsd{letter-spacing:0.252720px;}
.ls9{letter-spacing:0.341400px;}
.ls21{letter-spacing:0.350400px;}
.ls7{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.684000px;}
.ls22{letter-spacing:0.756000px;}
.ls18{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.980000px;}
.ls24{letter-spacing:4.860000px;}
.ls27{letter-spacing:10.620000px;}
.ls2c{letter-spacing:11.141280px;}
.lsa{letter-spacing:14.741280px;}
.ls2b{letter-spacing:15.437280px;}
.ls5{letter-spacing:19.037280px;}
.ls10{letter-spacing:19.061280px;}
.ls23{letter-spacing:21.197280px;}
.ls20{letter-spacing:21.221280px;}
.ls13{letter-spacing:28.421280px;}
.ls2d{letter-spacing:32.717280px;}
.ls12{letter-spacing:32.741280px;}
.lsf{letter-spacing:56.477280px;}
.lse{letter-spacing:56.501280px;}
.ls4{letter-spacing:87.084000px;}
.ls29{letter-spacing:190.740000px;}
.ls15{letter-spacing:191.460000px;}
.ls11{letter-spacing:298.740000px;}
.ls3{letter-spacing:663.060000px;}
.ls0{letter-spacing:956.820000px;}
.ls14{letter-spacing:1240.680000px;}
.ls2a{letter-spacing:1402.680000px;}
.ls1{letter-spacing:1422.120000px;}
.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:-21.420000px;}
.wsa{word-spacing:-21.401400px;}
.ws2{word-spacing:-21.097440px;}
.ws4{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.031920px;}
.ws8{word-spacing:-21.022560px;}
.ws6{word-spacing:-20.718600px;}
.ws7{word-spacing:-20.709600px;}
.ws9{word-spacing:-20.681400px;}
.ws0{word-spacing:0.000000px;}
._19{margin-left:-9.738240px;}
._6{margin-left:-2.106000px;}
._0{margin-left:-1.010880px;}
._1{width:1.053360px;}
._2{width:2.471520px;}
._3{width:3.948720px;}
._4{width:5.932080px;}
._5{width:7.042560px;}
._d{width:8.818320px;}
._10{width:9.826320px;}
._c{width:10.949760px;}
._b{width:11.962080px;}
._e{width:13.553760px;}
._f{width:14.831040px;}
._9{width:16.012080px;}
._a{width:17.178480px;}
._11{width:18.328080px;}
._18{width:19.709520px;}
._17{width:22.263840px;}
._13{width:23.284800px;}
._12{width:24.328080px;}
._15{width:25.574400px;}
._1b{width:27.164160px;}
._1d{width:28.304640px;}
._1c{width:29.414160px;}
._8{width:30.745680px;}
._7{width:31.864080px;}
._20{width:33.022080px;}
._1e{width:34.622640px;}
._1f{width:35.988960px;}
._21{width:37.682880px;}
._14{width:66.024000px;}
._16{width:169.680000px;}
._1a{width:191.460000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.500000px;}
.y66{bottom:4.665000px;}
.y60{bottom:4.680000px;}
.ya4{bottom:4.860000px;}
.ya1{bottom:5.025000px;}
.y30{bottom:5.040000px;}
.yf5{bottom:5.055000px;}
.yb8{bottom:5.205000px;}
.yc0{bottom:5.220000px;}
.y92{bottom:5.235000px;}
.y7e{bottom:28.620000px;}
.y73{bottom:28.785000px;}
.y5f{bottom:28.800000px;}
.ya3{bottom:28.980000px;}
.ya0{bottom:29.145000px;}
.y3e{bottom:29.160000px;}
.yf4{bottom:29.175000px;}
.y2f{bottom:29.190000px;}
.yb7{bottom:29.325000px;}
.ybf{bottom:29.340000px;}
.y91{bottom:29.355000px;}
.yd3{bottom:29.370000px;}
.yff{bottom:29.385000px;}
.y2{bottom:52.920000px;}
.y7d{bottom:52.950000px;}
.yd5{bottom:53.130000px;}
.y65{bottom:53.265000px;}
.y4a{bottom:53.280000px;}
.yf3{bottom:53.295000px;}
.y2e{bottom:53.310000px;}
.yb6{bottom:53.445000px;}
.y90{bottom:53.475000px;}
.y3d{bottom:53.490000px;}
.yfe{bottom:53.505000px;}
.y1{bottom:57.600000px;}
.yce{bottom:77.250000px;}
.y64{bottom:77.385000px;}
.y49{bottom:77.400000px;}
.y2d{bottom:77.430000px;}
.yb5{bottom:77.565000px;}
.y8e{bottom:77.580000px;}
.y3c{bottom:77.610000px;}
.yf2{bottom:77.625000px;}
.yd2{bottom:101.370000px;}
.y112{bottom:101.385000px;}
.y63{bottom:101.505000px;}
.y48{bottom:101.520000px;}
.y2c{bottom:101.550000px;}
.y9f{bottom:101.685000px;}
.y3b{bottom:101.730000px;}
.yf1{bottom:101.745000px;}
.y41{bottom:125.490000px;}
.y111{bottom:125.505000px;}
.y88{bottom:125.625000px;}
.y5d{bottom:125.670000px;}
.y9e{bottom:125.805000px;}
.y2b{bottom:125.850000px;}
.yf0{bottom:125.865000px;}
.yba{bottom:128.160000px;}
.yc8{bottom:129.780000px;}
.ya2{bottom:130.860000px;}
.y10f{bottom:131.760000px;}
.ye4{bottom:133.200000px;}
.y76{bottom:135.180000px;}
.yab{bottom:135.900000px;}
.y31{bottom:136.620000px;}
.y54{bottom:140.580000px;}
.y8b{bottom:140.940000px;}
.y55{bottom:147.060000px;}
.ybe{bottom:149.610000px;}
.y9d{bottom:149.925000px;}
.y2a{bottom:149.970000px;}
.yef{bottom:149.985000px;}
.y19{bottom:150.480000px;}
.y18{bottom:155.880000px;}
.ycf{bottom:160.740000px;}
.y53{bottom:164.700000px;}
.y8a{bottom:165.060000px;}
.yf8{bottom:173.730000px;}
.y29{bottom:174.090000px;}
.yee{bottom:174.105000px;}
.yb4{bottom:174.270000px;}
.y10b{bottom:174.300000px;}
.y17{bottom:180.030000px;}
.y95{bottom:180.045000px;}
.yd6{bottom:184.905000px;}
.y52{bottom:188.850000px;}
.y89{bottom:189.210000px;}
.y62{bottom:197.850000px;}
.y106{bottom:198.030000px;}
.y3a{bottom:198.210000px;}
.yed{bottom:198.225000px;}
.y28{bottom:198.255000px;}
.yb3{bottom:198.390000px;}
.yaa{bottom:198.420000px;}
.yd1{bottom:198.435000px;}
.yfd{bottom:198.450000px;}
.y16{bottom:204.150000px;}
.y7f{bottom:209.205000px;}
.y51{bottom:213.150000px;}
.yc7{bottom:213.510000px;}
.yf7{bottom:222.015000px;}
.y7a{bottom:222.195000px;}
.y47{bottom:222.330000px;}
.yec{bottom:222.345000px;}
.y27{bottom:222.375000px;}
.yb2{bottom:222.510000px;}
.ya9{bottom:222.540000px;}
.y39{bottom:222.555000px;}
.yfc{bottom:222.570000px;}
.ybd{bottom:222.735000px;}
.y15{bottom:228.270000px;}
.ycd{bottom:233.325000px;}
.y50{bottom:237.270000px;}
.yc6{bottom:237.630000px;}
.yf6{bottom:246.315000px;}
.y46{bottom:246.450000px;}
.y5c{bottom:246.495000px;}
.y9c{bottom:246.630000px;}
.ya8{bottom:246.660000px;}
.y38{bottom:246.675000px;}
.yeb{bottom:246.690000px;}
.y105{bottom:246.855000px;}
.ybc{bottom:250.275000px;}
.y14{bottom:252.570000px;}
.y4f{bottom:261.390000px;}
.yc5{bottom:261.750000px;}
.yaf{bottom:270.435000px;}
.y45{bottom:270.570000px;}
.y5b{bottom:270.615000px;}
.y9b{bottom:270.750000px;}
.ya7{bottom:270.780000px;}
.y26{bottom:270.795000px;}
.yea{bottom:270.810000px;}
.y104{bottom:274.575000px;}
.y13{bottom:276.690000px;}
.ybb{bottom:277.815000px;}
.y107{bottom:281.565000px;}
.y4e{bottom:285.510000px;}
.yc4{bottom:285.870000px;}
.y87{bottom:294.540000px;}
.yae{bottom:294.555000px;}
.y9a{bottom:294.870000px;}
.ya6{bottom:294.900000px;}
.y25{bottom:294.915000px;}
.ye9{bottom:294.930000px;}
.y12{bottom:300.810000px;}
.ya5{bottom:305.685000px;}
.y4d{bottom:309.630000px;}
.yc3{bottom:309.990000px;}
.y7c{bottom:318.495000px;}
.y99{bottom:318.660000px;}
.yc1{bottom:318.675000px;}
.y86{bottom:319.020000px;}
.y24{bottom:319.035000px;}
.ye1{bottom:319.200000px;}
.y11{bottom:324.930000px;}
.y10a{bottom:329.805000px;}
.y4c{bottom:333.750000px;}
.yc2{bottom:334.110000px;}
.y98{bottom:342.780000px;}
.y7b{bottom:342.795000px;}
.y85{bottom:343.140000px;}
.y23{bottom:343.155000px;}
.ye0{bottom:343.320000px;}
.yd0{bottom:343.365000px;}
.y10{bottom:349.095000px;}
.y4b{bottom:357.915000px;}
.y115{bottom:358.275000px;}
.y78{bottom:366.945000px;}
.y40{bottom:367.125000px;}
.y84{bottom:367.260000px;}
.y44{bottom:367.275000px;}
.y22{bottom:367.305000px;}
.ydf{bottom:367.440000px;}
.y37{bottom:367.485000px;}
.yf{bottom:373.215000px;}
.y43{bottom:378.255000px;}
.y6d{bottom:382.215000px;}
.y114{bottom:382.575000px;}
.y77{bottom:391.065000px;}
.y83{bottom:391.380000px;}
.y21{bottom:391.425000px;}
.yde{bottom:391.560000px;}
.y36{bottom:391.605000px;}
.y97{bottom:391.740000px;}
.ye{bottom:397.515000px;}
.y6c{bottom:406.335000px;}
.y113{bottom:406.695000px;}
.yb0{bottom:415.365000px;}
.y82{bottom:415.500000px;}
.y5a{bottom:415.545000px;}
.ydd{bottom:415.680000px;}
.y20{bottom:415.725000px;}
.y96{bottom:418.740000px;}
.y110{bottom:418.785000px;}
.yd{bottom:421.635000px;}
.ye8{bottom:426.480000px;}
.ye7{bottom:426.495000px;}
.y6b{bottom:430.455000px;}
.y103{bottom:430.815000px;}
.ydc{bottom:439.440000px;}
.y5e{bottom:439.485000px;}
.y81{bottom:439.620000px;}
.y59{bottom:439.665000px;}
.y1f{bottom:439.845000px;}
.yad{bottom:450.615000px;}
.y6a{bottom:454.575000px;}
.y102{bottom:454.935000px;}
.y71{bottom:463.605000px;}
.ydb{bottom:463.920000px;}
.y1e{bottom:463.965000px;}
.yc{bottom:469.875000px;}
.yfb{bottom:474.720000px;}
.yfa{bottom:474.735000px;}
.y69{bottom:478.695000px;}
.yb9{bottom:479.055000px;}
.y6f{bottom:487.725000px;}
.y1d{bottom:488.085000px;}
.yda{bottom:488.265000px;}
.yb{bottom:493.995000px;}
.yb1{bottom:498.900000px;}
.y68{bottom:502.845000px;}
.y101{bottom:503.205000px;}
.y70{bottom:511.845000px;}
.y1c{bottom:511.890000px;}
.y35{bottom:512.205000px;}
.yd9{bottom:512.385000px;}
.y58{bottom:512.430000px;}
.y67{bottom:527.145000px;}
.y100{bottom:527.505000px;}
.ya{bottom:530.205000px;}
.y80{bottom:535.785000px;}
.ye6{bottom:536.010000px;}
.yf9{bottom:536.190000px;}
.yac{bottom:536.325000px;}
.ycc{bottom:536.370000px;}
.yd8{bottom:536.505000px;}
.y34{bottom:536.550000px;}
.y1b{bottom:537.090000px;}
.y6e{bottom:540.150000px;}
.y61{bottom:547.320000px;}
.y75{bottom:551.625000px;}
.y79{bottom:560.310000px;}
.yd7{bottom:560.625000px;}
.y3f{bottom:560.670000px;}
.ycb{bottom:561.390000px;}
.ye2{bottom:564.270000px;}
.y9{bottom:566.565000px;}
.y57{bottom:567.690000px;}
.y74{bottom:575.745000px;}
.y42{bottom:584.430000px;}
.y33{bottom:584.790000px;}
.yca{bottom:588.390000px;}
.y1a{bottom:591.810000px;}
.y56{bottom:595.230000px;}
.y72{bottom:595.560000px;}
.y10e{bottom:599.865000px;}
.y8{bottom:602.745000px;}
.yd4{bottom:608.550000px;}
.y32{bottom:608.910000px;}
.ye5{bottom:611.970000px;}
.yc9{bottom:615.390000px;}
.ye3{bottom:619.680000px;}
.y10d{bottom:623.625000px;}
.y94{bottom:623.985000px;}
.y10c{bottom:643.800000px;}
.y93{bottom:647.745000px;}
.y8f{bottom:667.935000px;}
.y8d{bottom:667.950000px;}
.y7{bottom:673.530000px;}
.y109{bottom:692.235000px;}
.y108{bottom:692.250000px;}
.y6{bottom:697.650000px;}
.y5{bottom:721.770000px;}
.y4{bottom:745.890000px;}
.y8c{bottom:746.250000px;}
.h3{height:20.700000px;}
.h2d{height:24.120000px;}
.h2f{height:48.276000px;}
.h30{height:48.285000px;}
.h19{height:48.456000px;}
.h1a{height:48.465000px;}
.h2{height:70.664062px;}
.h3c{height:72.351000px;}
.h3d{height:72.360000px;}
.h1e{height:72.396000px;}
.h1f{height:72.405000px;}
.h10{height:75.519844px;}
.h13{height:82.635820px;}
.h8{height:82.676953px;}
.h4{height:84.898125px;}
.h25{height:85.052461px;}
.ha{height:86.585445px;}
.h7{height:93.983203px;}
.h6{height:96.508125px;}
.h15{height:96.651000px;}
.h16{height:96.660000px;}
.h2a{height:96.696000px;}
.h2b{height:96.705000px;}
.h42{height:120.802500px;}
.h31{height:144.922500px;}
.h3a{height:144.936000px;}
.h3b{height:144.945000px;}
.h11{height:169.035000px;}
.h1c{height:169.050000px;}
.h1d{height:169.065000px;}
.h40{height:193.170000px;}
.h41{height:193.185000px;}
.he{height:217.290000px;}
.h22{height:265.710000px;}
.h38{height:289.860000px;}
.h37{height:289.875000px;}
.h23{height:296.880000px;}
.h24{height:296.895000px;}
.h20{height:313.980000px;}
.h21{height:313.995000px;}
.h35{height:338.100000px;}
.h36{height:338.115000px;}
.h45{height:362.265000px;}
.h46{height:362.280000px;}
.hb{height:386.340000px;}
.hc{height:386.355000px;}
.h12{height:410.505000px;}
.h26{height:410.685000px;}
.h27{height:410.700000px;}
.h3f{height:434.790000px;}
.h17{height:438.180000px;}
.h18{height:438.195000px;}
.h43{height:438.225000px;}
.h44{height:438.240000px;}
.h1b{height:458.910000px;}
.h47{height:458.925000px;}
.h48{height:458.940000px;}
.h39{height:483.030000px;}
.h32{height:483.045000px;}
.h33{height:483.060000px;}
.h29{height:531.270000px;}
.h14{height:555.390000px;}
.h3e{height:555.435000px;}
.h2e{height:579.690000px;}
.hf{height:589.995000px;}
.h2c{height:603.855000px;}
.h5{height:614.115000px;}
.hd{height:617.535000px;}
.h9{height:627.975000px;}
.h34{height:631.395000px;}
.h28{height:634.815000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w2{width:9.000000px;}
.w4{width:18.000000px;}
.w3{width:1059.975000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:4.860000px;}
.x14{left:7.740000px;}
.x1d{left:22.320000px;}
.xb{left:31.896000px;}
.x17{left:34.776000px;}
.x1e{left:48.816000px;}
.x11{left:57.810000px;}
.xc{left:58.890000px;}
.x1c{left:60.690000px;}
.x18{left:61.770000px;}
.x23{left:65.190000px;}
.x10{left:84.810000px;}
.xe{left:85.890000px;}
.x22{left:87.690000px;}
.x12{left:89.310000px;}
.x13{left:98.640000px;}
.x9{left:101.520000px;}
.x1{left:106.380000px;}
.xd{left:112.890000px;}
.x1f{left:115.770000px;}
.x21{left:134.310000px;}
.x16{left:140.610000px;}
.x20{left:241.590000px;}
.x1b{left:250.590000px;}
.x4{left:275.790000px;}
.x3{left:294.510000px;}
.x1a{left:340.995000px;}
.x19{left:342.795000px;}
.x24{left:349.635000px;}
.x6{left:391.350000px;}
.x25{left:444.315000px;}
.x7{left:489.135000px;}
.x8{left:520.995000px;}
.x15{left:529.995000px;}
.xf{left:622.515000px;}
.x2{left:627.015000px;}
.x5{left:631.515000px;}
@media print{
.v1{vertical-align:-105.760000pt;}
.v3{vertical-align:-97.920000pt;}
.v4{vertical-align:-96.000000pt;}
.v2{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.800000pt;}
.ls2e{letter-spacing:-0.613333pt;}
.ls16{letter-spacing:-0.608000pt;}
.ls1f{letter-spacing:-0.336533pt;}
.ls28{letter-spacing:-0.328533pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.311467pt;}
.ls1a{letter-spacing:-0.303467pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.033280pt;}
.ls17{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.033280pt;}
.ls19{letter-spacing:0.152960pt;}
.lsd{letter-spacing:0.224640pt;}
.ls9{letter-spacing:0.303467pt;}
.ls21{letter-spacing:0.311467pt;}
.ls7{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.608000pt;}
.ls22{letter-spacing:0.672000pt;}
.ls18{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.760000pt;}
.ls24{letter-spacing:4.320000pt;}
.ls27{letter-spacing:9.440000pt;}
.ls2c{letter-spacing:9.903360pt;}
.lsa{letter-spacing:13.103360pt;}
.ls2b{letter-spacing:13.722027pt;}
.ls5{letter-spacing:16.922027pt;}
.ls10{letter-spacing:16.943360pt;}
.ls23{letter-spacing:18.842027pt;}
.ls20{letter-spacing:18.863360pt;}
.ls13{letter-spacing:25.263360pt;}
.ls2d{letter-spacing:29.082027pt;}
.ls12{letter-spacing:29.103360pt;}
.lsf{letter-spacing:50.202027pt;}
.lse{letter-spacing:50.223360pt;}
.ls4{letter-spacing:77.408000pt;}
.ls29{letter-spacing:169.546667pt;}
.ls15{letter-spacing:170.186667pt;}
.ls11{letter-spacing:265.546667pt;}
.ls3{letter-spacing:589.386667pt;}
.ls0{letter-spacing:850.506667pt;}
.ls14{letter-spacing:1102.826667pt;}
.ls2a{letter-spacing:1246.826667pt;}
.ls1{letter-spacing:1264.106667pt;}
.ws1{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.753280pt;}
.ws4{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.695040pt;}
.ws8{word-spacing:-18.686720pt;}
.ws6{word-spacing:-18.416533pt;}
.ws7{word-spacing:-18.408533pt;}
.ws9{word-spacing:-18.383467pt;}
.ws0{word-spacing:0.000000pt;}
._19{margin-left:-8.656213pt;}
._6{margin-left:-1.872000pt;}
._0{margin-left:-0.898560pt;}
._1{width:0.936320pt;}
._2{width:2.196907pt;}
._3{width:3.509973pt;}
._4{width:5.272960pt;}
._5{width:6.260053pt;}
._d{width:7.838507pt;}
._10{width:8.734507pt;}
._c{width:9.733120pt;}
._b{width:10.632960pt;}
._e{width:12.047787pt;}
._f{width:13.183147pt;}
._9{width:14.232960pt;}
._a{width:15.269760pt;}
._11{width:16.291627pt;}
._18{width:17.519573pt;}
._17{width:19.790080pt;}
._13{width:20.697600pt;}
._12{width:21.624960pt;}
._15{width:22.732800pt;}
._1b{width:24.145920pt;}
._1d{width:25.159680pt;}
._1c{width:26.145920pt;}
._8{width:27.329493pt;}
._7{width:28.323627pt;}
._20{width:29.352960pt;}
._1e{width:30.775680pt;}
._1f{width:31.990187pt;}
._21{width:33.495893pt;}
._14{width:58.688000pt;}
._16{width:150.826667pt;}
._1a{width:170.186667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.000000pt;}
.y66{bottom:4.146667pt;}
.y60{bottom:4.160000pt;}
.ya4{bottom:4.320000pt;}
.ya1{bottom:4.466667pt;}
.y30{bottom:4.480000pt;}
.yf5{bottom:4.493333pt;}
.yb8{bottom:4.626667pt;}
.yc0{bottom:4.640000pt;}
.y92{bottom:4.653333pt;}
.y7e{bottom:25.440000pt;}
.y73{bottom:25.586667pt;}
.y5f{bottom:25.600000pt;}
.ya3{bottom:25.760000pt;}
.ya0{bottom:25.906667pt;}
.y3e{bottom:25.920000pt;}
.yf4{bottom:25.933333pt;}
.y2f{bottom:25.946667pt;}
.yb7{bottom:26.066667pt;}
.ybf{bottom:26.080000pt;}
.y91{bottom:26.093333pt;}
.yd3{bottom:26.106667pt;}
.yff{bottom:26.120000pt;}
.y2{bottom:47.040000pt;}
.y7d{bottom:47.066667pt;}
.yd5{bottom:47.226667pt;}
.y65{bottom:47.346667pt;}
.y4a{bottom:47.360000pt;}
.yf3{bottom:47.373333pt;}
.y2e{bottom:47.386667pt;}
.yb6{bottom:47.506667pt;}
.y90{bottom:47.533333pt;}
.y3d{bottom:47.546667pt;}
.yfe{bottom:47.560000pt;}
.y1{bottom:51.200000pt;}
.yce{bottom:68.666667pt;}
.y64{bottom:68.786667pt;}
.y49{bottom:68.800000pt;}
.y2d{bottom:68.826667pt;}
.yb5{bottom:68.946667pt;}
.y8e{bottom:68.960000pt;}
.y3c{bottom:68.986667pt;}
.yf2{bottom:69.000000pt;}
.yd2{bottom:90.106667pt;}
.y112{bottom:90.120000pt;}
.y63{bottom:90.226667pt;}
.y48{bottom:90.240000pt;}
.y2c{bottom:90.266667pt;}
.y9f{bottom:90.386667pt;}
.y3b{bottom:90.426667pt;}
.yf1{bottom:90.440000pt;}
.y41{bottom:111.546667pt;}
.y111{bottom:111.560000pt;}
.y88{bottom:111.666667pt;}
.y5d{bottom:111.706667pt;}
.y9e{bottom:111.826667pt;}
.y2b{bottom:111.866667pt;}
.yf0{bottom:111.880000pt;}
.yba{bottom:113.920000pt;}
.yc8{bottom:115.360000pt;}
.ya2{bottom:116.320000pt;}
.y10f{bottom:117.120000pt;}
.ye4{bottom:118.400000pt;}
.y76{bottom:120.160000pt;}
.yab{bottom:120.800000pt;}
.y31{bottom:121.440000pt;}
.y54{bottom:124.960000pt;}
.y8b{bottom:125.280000pt;}
.y55{bottom:130.720000pt;}
.ybe{bottom:132.986667pt;}
.y9d{bottom:133.266667pt;}
.y2a{bottom:133.306667pt;}
.yef{bottom:133.320000pt;}
.y19{bottom:133.760000pt;}
.y18{bottom:138.560000pt;}
.ycf{bottom:142.880000pt;}
.y53{bottom:146.400000pt;}
.y8a{bottom:146.720000pt;}
.yf8{bottom:154.426667pt;}
.y29{bottom:154.746667pt;}
.yee{bottom:154.760000pt;}
.yb4{bottom:154.906667pt;}
.y10b{bottom:154.933333pt;}
.y17{bottom:160.026667pt;}
.y95{bottom:160.040000pt;}
.yd6{bottom:164.360000pt;}
.y52{bottom:167.866667pt;}
.y89{bottom:168.186667pt;}
.y62{bottom:175.866667pt;}
.y106{bottom:176.026667pt;}
.y3a{bottom:176.186667pt;}
.yed{bottom:176.200000pt;}
.y28{bottom:176.226667pt;}
.yb3{bottom:176.346667pt;}
.yaa{bottom:176.373333pt;}
.yd1{bottom:176.386667pt;}
.yfd{bottom:176.400000pt;}
.y16{bottom:181.466667pt;}
.y7f{bottom:185.960000pt;}
.y51{bottom:189.466667pt;}
.yc7{bottom:189.786667pt;}
.yf7{bottom:197.346667pt;}
.y7a{bottom:197.506667pt;}
.y47{bottom:197.626667pt;}
.yec{bottom:197.640000pt;}
.y27{bottom:197.666667pt;}
.yb2{bottom:197.786667pt;}
.ya9{bottom:197.813333pt;}
.y39{bottom:197.826667pt;}
.yfc{bottom:197.840000pt;}
.ybd{bottom:197.986667pt;}
.y15{bottom:202.906667pt;}
.ycd{bottom:207.400000pt;}
.y50{bottom:210.906667pt;}
.yc6{bottom:211.226667pt;}
.yf6{bottom:218.946667pt;}
.y46{bottom:219.066667pt;}
.y5c{bottom:219.106667pt;}
.y9c{bottom:219.226667pt;}
.ya8{bottom:219.253333pt;}
.y38{bottom:219.266667pt;}
.yeb{bottom:219.280000pt;}
.y105{bottom:219.426667pt;}
.ybc{bottom:222.466667pt;}
.y14{bottom:224.506667pt;}
.y4f{bottom:232.346667pt;}
.yc5{bottom:232.666667pt;}
.yaf{bottom:240.386667pt;}
.y45{bottom:240.506667pt;}
.y5b{bottom:240.546667pt;}
.y9b{bottom:240.666667pt;}
.ya7{bottom:240.693333pt;}
.y26{bottom:240.706667pt;}
.yea{bottom:240.720000pt;}
.y104{bottom:244.066667pt;}
.y13{bottom:245.946667pt;}
.ybb{bottom:246.946667pt;}
.y107{bottom:250.280000pt;}
.y4e{bottom:253.786667pt;}
.yc4{bottom:254.106667pt;}
.y87{bottom:261.813333pt;}
.yae{bottom:261.826667pt;}
.y9a{bottom:262.106667pt;}
.ya6{bottom:262.133333pt;}
.y25{bottom:262.146667pt;}
.ye9{bottom:262.160000pt;}
.y12{bottom:267.386667pt;}
.ya5{bottom:271.720000pt;}
.y4d{bottom:275.226667pt;}
.yc3{bottom:275.546667pt;}
.y7c{bottom:283.106667pt;}
.y99{bottom:283.253333pt;}
.yc1{bottom:283.266667pt;}
.y86{bottom:283.573333pt;}
.y24{bottom:283.586667pt;}
.ye1{bottom:283.733333pt;}
.y11{bottom:288.826667pt;}
.y10a{bottom:293.160000pt;}
.y4c{bottom:296.666667pt;}
.yc2{bottom:296.986667pt;}
.y98{bottom:304.693333pt;}
.y7b{bottom:304.706667pt;}
.y85{bottom:305.013333pt;}
.y23{bottom:305.026667pt;}
.ye0{bottom:305.173333pt;}
.yd0{bottom:305.213333pt;}
.y10{bottom:310.306667pt;}
.y4b{bottom:318.146667pt;}
.y115{bottom:318.466667pt;}
.y78{bottom:326.173333pt;}
.y40{bottom:326.333333pt;}
.y84{bottom:326.453333pt;}
.y44{bottom:326.466667pt;}
.y22{bottom:326.493333pt;}
.ydf{bottom:326.613333pt;}
.y37{bottom:326.653333pt;}
.yf{bottom:331.746667pt;}
.y43{bottom:336.226667pt;}
.y6d{bottom:339.746667pt;}
.y114{bottom:340.066667pt;}
.y77{bottom:347.613333pt;}
.y83{bottom:347.893333pt;}
.y21{bottom:347.933333pt;}
.yde{bottom:348.053333pt;}
.y36{bottom:348.093333pt;}
.y97{bottom:348.213333pt;}
.ye{bottom:353.346667pt;}
.y6c{bottom:361.186667pt;}
.y113{bottom:361.506667pt;}
.yb0{bottom:369.213333pt;}
.y82{bottom:369.333333pt;}
.y5a{bottom:369.373333pt;}
.ydd{bottom:369.493333pt;}
.y20{bottom:369.533333pt;}
.y96{bottom:372.213333pt;}
.y110{bottom:372.253333pt;}
.yd{bottom:374.786667pt;}
.ye8{bottom:379.093333pt;}
.ye7{bottom:379.106667pt;}
.y6b{bottom:382.626667pt;}
.y103{bottom:382.946667pt;}
.ydc{bottom:390.613333pt;}
.y5e{bottom:390.653333pt;}
.y81{bottom:390.773333pt;}
.y59{bottom:390.813333pt;}
.y1f{bottom:390.973333pt;}
.yad{bottom:400.546667pt;}
.y6a{bottom:404.066667pt;}
.y102{bottom:404.386667pt;}
.y71{bottom:412.093333pt;}
.ydb{bottom:412.373333pt;}
.y1e{bottom:412.413333pt;}
.yc{bottom:417.666667pt;}
.yfb{bottom:421.973333pt;}
.yfa{bottom:421.986667pt;}
.y69{bottom:425.506667pt;}
.yb9{bottom:425.826667pt;}
.y6f{bottom:433.533333pt;}
.y1d{bottom:433.853333pt;}
.yda{bottom:434.013333pt;}
.yb{bottom:439.106667pt;}
.yb1{bottom:443.466667pt;}
.y68{bottom:446.973333pt;}
.y101{bottom:447.293333pt;}
.y70{bottom:454.973333pt;}
.y1c{bottom:455.013333pt;}
.y35{bottom:455.293333pt;}
.yd9{bottom:455.453333pt;}
.y58{bottom:455.493333pt;}
.y67{bottom:468.573333pt;}
.y100{bottom:468.893333pt;}
.ya{bottom:471.293333pt;}
.y80{bottom:476.253333pt;}
.ye6{bottom:476.453333pt;}
.yf9{bottom:476.613333pt;}
.yac{bottom:476.733333pt;}
.ycc{bottom:476.773333pt;}
.yd8{bottom:476.893333pt;}
.y34{bottom:476.933333pt;}
.y1b{bottom:477.413333pt;}
.y6e{bottom:480.133333pt;}
.y61{bottom:486.506667pt;}
.y75{bottom:490.333333pt;}
.y79{bottom:498.053333pt;}
.yd7{bottom:498.333333pt;}
.y3f{bottom:498.373333pt;}
.ycb{bottom:499.013333pt;}
.ye2{bottom:501.573333pt;}
.y9{bottom:503.613333pt;}
.y57{bottom:504.613333pt;}
.y74{bottom:511.773333pt;}
.y42{bottom:519.493333pt;}
.y33{bottom:519.813333pt;}
.yca{bottom:523.013333pt;}
.y1a{bottom:526.053333pt;}
.y56{bottom:529.093333pt;}
.y72{bottom:529.386667pt;}
.y10e{bottom:533.213333pt;}
.y8{bottom:535.773333pt;}
.yd4{bottom:540.933333pt;}
.y32{bottom:541.253333pt;}
.ye5{bottom:543.973333pt;}
.yc9{bottom:547.013333pt;}
.ye3{bottom:550.826667pt;}
.y10d{bottom:554.333333pt;}
.y94{bottom:554.653333pt;}
.y10c{bottom:572.266667pt;}
.y93{bottom:575.773333pt;}
.y8f{bottom:593.720000pt;}
.y8d{bottom:593.733333pt;}
.y7{bottom:598.693333pt;}
.y109{bottom:615.320000pt;}
.y108{bottom:615.333333pt;}
.y6{bottom:620.133333pt;}
.y5{bottom:641.573333pt;}
.y4{bottom:663.013333pt;}
.y8c{bottom:663.333333pt;}
.h3{height:18.400000pt;}
.h2d{height:21.440000pt;}
.h2f{height:42.912000pt;}
.h30{height:42.920000pt;}
.h19{height:43.072000pt;}
.h1a{height:43.080000pt;}
.h2{height:62.812500pt;}
.h3c{height:64.312000pt;}
.h3d{height:64.320000pt;}
.h1e{height:64.352000pt;}
.h1f{height:64.360000pt;}
.h10{height:67.128750pt;}
.h13{height:73.454062pt;}
.h8{height:73.490625pt;}
.h4{height:75.465000pt;}
.h25{height:75.602187pt;}
.ha{height:76.964840pt;}
.h7{height:83.540625pt;}
.h6{height:85.785000pt;}
.h15{height:85.912000pt;}
.h16{height:85.920000pt;}
.h2a{height:85.952000pt;}
.h2b{height:85.960000pt;}
.h42{height:107.380000pt;}
.h31{height:128.820000pt;}
.h3a{height:128.832000pt;}
.h3b{height:128.840000pt;}
.h11{height:150.253333pt;}
.h1c{height:150.266667pt;}
.h1d{height:150.280000pt;}
.h40{height:171.706667pt;}
.h41{height:171.720000pt;}
.he{height:193.146667pt;}
.h22{height:236.186667pt;}
.h38{height:257.653333pt;}
.h37{height:257.666667pt;}
.h23{height:263.893333pt;}
.h24{height:263.906667pt;}
.h20{height:279.093333pt;}
.h21{height:279.106667pt;}
.h35{height:300.533333pt;}
.h36{height:300.546667pt;}
.h45{height:322.013333pt;}
.h46{height:322.026667pt;}
.hb{height:343.413333pt;}
.hc{height:343.426667pt;}
.h12{height:364.893333pt;}
.h26{height:365.053333pt;}
.h27{height:365.066667pt;}
.h3f{height:386.480000pt;}
.h17{height:389.493333pt;}
.h18{height:389.506667pt;}
.h43{height:389.533333pt;}
.h44{height:389.546667pt;}
.h1b{height:407.920000pt;}
.h47{height:407.933333pt;}
.h48{height:407.946667pt;}
.h39{height:429.360000pt;}
.h32{height:429.373333pt;}
.h33{height:429.386667pt;}
.h29{height:472.240000pt;}
.h14{height:493.680000pt;}
.h3e{height:493.720000pt;}
.h2e{height:515.280000pt;}
.hf{height:524.440000pt;}
.h2c{height:536.760000pt;}
.h5{height:545.880000pt;}
.hd{height:548.920000pt;}
.h9{height:558.200000pt;}
.h34{height:561.240000pt;}
.h28{height:564.280000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w2{width:8.000000pt;}
.w4{width:16.000000pt;}
.w3{width:942.200000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:4.320000pt;}
.x14{left:6.880000pt;}
.x1d{left:19.840000pt;}
.xb{left:28.352000pt;}
.x17{left:30.912000pt;}
.x1e{left:43.392000pt;}
.x11{left:51.386667pt;}
.xc{left:52.346667pt;}
.x1c{left:53.946667pt;}
.x18{left:54.906667pt;}
.x23{left:57.946667pt;}
.x10{left:75.386667pt;}
.xe{left:76.346667pt;}
.x22{left:77.946667pt;}
.x12{left:79.386667pt;}
.x13{left:87.680000pt;}
.x9{left:90.240000pt;}
.x1{left:94.560000pt;}
.xd{left:100.346667pt;}
.x1f{left:102.906667pt;}
.x21{left:119.386667pt;}
.x16{left:124.986667pt;}
.x20{left:214.746667pt;}
.x1b{left:222.746667pt;}
.x4{left:245.146667pt;}
.x3{left:261.786667pt;}
.x1a{left:303.106667pt;}
.x19{left:304.706667pt;}
.x24{left:310.786667pt;}
.x6{left:347.866667pt;}
.x25{left:394.946667pt;}
.x7{left:434.786667pt;}
.x8{left:463.106667pt;}
.x15{left:471.106667pt;}
.xf{left:553.346667pt;}
.x2{left:557.346667pt;}
.x5{left:561.346667pt;}
}




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