
    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_9ceeb00df43499e63c4ec84c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_a0ef57119cd4b4ea07340d57.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_91c1634c2cfb9989abe3f774.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113770;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_678e6e359a1dc7edd94e83f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.118164;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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691406;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_67dc39e63a9f59452d1b101c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113770;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_464ff868e2e53281fe8c570d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_52de626aeff0d7c399a50cae.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_fff16e00c90798ffca5d867a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_696218a85878ab7f09071bef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.979980;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_dacbe26cf9dd1c714dde62c9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.118164;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.760000px;}
.ls1e{letter-spacing:-0.978000px;}
.ls19{letter-spacing:-0.948000px;}
.ls7{letter-spacing:-0.726000px;}
.ls12{letter-spacing:-0.395400px;}
.ls3{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.256800px;}
.ls18{letter-spacing:-0.241200px;}
.lsb{letter-spacing:-0.228000px;}
.ls1b{letter-spacing:-0.223800px;}
.ls10{letter-spacing:-0.151200px;}
.ls14{letter-spacing:-0.138000px;}
.ls1c{letter-spacing:-0.122400px;}
.lsa{letter-spacing:-0.083400px;}
.lsf{letter-spacing:-0.070800px;}
.ls1{letter-spacing:-0.048240px;}
.ls1f{letter-spacing:-0.006480px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.035280px;}
.ls16{letter-spacing:0.041760px;}
.ls17{letter-spacing:0.048240px;}
.ls1a{letter-spacing:0.090600px;}
.ls4{letter-spacing:0.188400px;}
.ls11{letter-spacing:0.188640px;}
.ls2{letter-spacing:0.324600px;}
.ls6{letter-spacing:0.360000px;}
.lse{letter-spacing:2.348640px;}
.ls1d{letter-spacing:5.228640px;}
.lsd{letter-spacing:109.808640px;}
.ls9{letter-spacing:110.528640px;}
.lsc{letter-spacing:113.408640px;}
.ls8{letter-spacing:114.128640px;}
.ls15{letter-spacing:153.548640px;}
.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;}
}
.wsc{word-spacing:-48.240000px;}
.ws3{word-spacing:-18.414720px;}
.ws6{word-spacing:-14.571360px;}
.ws4{word-spacing:-14.211360px;}
.ws0{word-spacing:-14.163120px;}
.ws8{word-spacing:-14.140560px;}
.ws5{word-spacing:-14.127960px;}
.wsa{word-spacing:-14.073360px;}
.ws9{word-spacing:-14.060160px;}
.ws7{word-spacing:-13.983360px;}
.wsb{word-spacing:-13.970160px;}
.wsf{word-spacing:-13.954560px;}
.ws1{word-spacing:-13.851360px;}
.wse{word-spacing:-13.288320px;}
.wsd{word-spacing:-13.186920px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.188000px;}
._1{width:1.668000px;}
._3{width:3.118320px;}
._4{width:4.447440px;}
._a{width:5.572080px;}
._8{width:7.220160px;}
._7{width:8.281440px;}
._5{width:9.610560px;}
._6{width:11.195280px;}
._b{width:12.319920px;}
._c{width:15.397200px;}
._9{width:16.562880px;}
._d{width:17.769840px;}
._e{width:19.202640px;}
._f{width:21.010320px;}
._2{width:22.697280px;}
._12{width:24.400560px;}
._10{width:26.326800px;}
._11{width:27.738240px;}
._1c{width:28.829040px;}
._16{width:29.957040px;}
._15{width:32.363280px;}
._13{width:33.432480px;}
._14{width:34.557120px;}
._17{width:38.135520px;}
._18{width:39.230880px;}
._19{width:40.231440px;}
._1a{width:41.379600px;}
._1d{width:100.655280px;}
._1f{width:110.951280px;}
._1e{width:111.965040px;}
._1b{width:154.126800px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:20.880000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:33.120000px;}
.fs6{font-size:36.000000px;}
.fs4{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y121{bottom:6.120000px;}
.y133{bottom:6.285000px;}
.y117{bottom:6.300000px;}
.y11c{bottom:6.330000px;}
.y134{bottom:14.385000px;}
.y132{bottom:22.305000px;}
.y116{bottom:22.320000px;}
.y115{bottom:38.340000px;}
.y2{bottom:57.060000px;}
.y111{bottom:194.040000px;}
.y193{bottom:200.880000px;}
.y136{bottom:201.780000px;}
.y15f{bottom:203.400000px;}
.y55{bottom:203.580000px;}
.y80{bottom:203.760000px;}
.y186{bottom:205.920000px;}
.y24{bottom:206.100000px;}
.y110{bottom:207.900000px;}
.ya3{bottom:211.860000px;}
.y1a9{bottom:213.120000px;}
.y174{bottom:213.840000px;}
.y19b{bottom:216.900000px;}
.y135{bottom:217.800000px;}
.y54{bottom:218.340000px;}
.y1b6{bottom:219.990000px;}
.y15e{bottom:220.350000px;}
.y23{bottom:220.890000px;}
.y10f{bottom:221.790000px;}
.y185{bottom:222.870000px;}
.yd7{bottom:224.850000px;}
.yc0{bottom:226.830000px;}
.ya2{bottom:228.810000px;}
.y1a8{bottom:230.070000px;}
.y173{bottom:230.970000px;}
.y53{bottom:233.310000px;}
.y19a{bottom:233.850000px;}
.y131{bottom:235.305000px;}
.y10e{bottom:235.470000px;}
.y7f{bottom:235.830000px;}
.y1b5{bottom:236.910000px;}
.y15d{bottom:237.450000px;}
.yee{bottom:237.810000px;}
.y184{bottom:239.970000px;}
.y178{bottom:241.950000px;}
.ybf{bottom:243.930000px;}
.ya1{bottom:245.910000px;}
.y22{bottom:246.990000px;}
.y172{bottom:247.890000px;}
.y52{bottom:248.070000px;}
.y10d{bottom:249.330000px;}
.y192{bottom:249.870000px;}
.y199{bottom:250.950000px;}
.y1b9{bottom:251.850000px;}
.y7e{bottom:252.930000px;}
.y103{bottom:254.910000px;}
.yd6{bottom:256.890000px;}
.ybe{bottom:260.850000px;}
.y1a7{bottom:262.110000px;}
.y51{bottom:262.830000px;}
.y10c{bottom:263.190000px;}
.y21{bottom:263.910000px;}
.y171{bottom:264.990000px;}
.y191{bottom:266.970000px;}
.y198{bottom:267.870000px;}
.y1b4{bottom:268.950000px;}
.y15c{bottom:269.310000px;}
.yed{bottom:269.850000px;}
.y102{bottom:271.830000px;}
.yd5{bottom:273.810000px;}
.y130{bottom:275.070000px;}
.y10b{bottom:276.870000px;}
.y50{bottom:277.590000px;}
.y20{bottom:278.670000px;}
.y170{bottom:281.910000px;}
.y10a{bottom:282.810000px;}
.y190{bottom:283.890000px;}
.y7d{bottom:284.970000px;}
.y1b3{bottom:285.870000px;}
.y15b{bottom:286.410000px;}
.yec{bottom:286.950000px;}
.y163{bottom:288.930000px;}
.yd4{bottom:290.910000px;}
.y12f{bottom:291.090000px;}
.y109{bottom:291.990000px;}
.y4f{bottom:292.350000px;}
.ybd{bottom:292.890000px;}
.y1f{bottom:293.610000px;}
.y1a6{bottom:294.150000px;}
.ya0{bottom:294.870000px;}
.y16f{bottom:298.830000px;}
.y18f{bottom:300.990000px;}
.y7c{bottom:301.890000px;}
.y15a{bottom:303.330000px;}
.yeb{bottom:303.870000px;}
.y183{bottom:305.850000px;}
.y4e{bottom:307.110000px;}
.yd3{bottom:307.830000px;}
.y1e{bottom:308.370000px;}
.ybc{bottom:309.990000px;}
.y9f{bottom:311.970000px;}
.y18e{bottom:317.910000px;}
.y7b{bottom:318.810000px;}
.y159{bottom:320.430000px;}
.yea{bottom:320.970000px;}
.y4d{bottom:321.870000px;}
.y182{bottom:322.950000px;}
.yd2{bottom:324.930000px;}
.y1a5{bottom:326.190000px;}
.ybb{bottom:326.910000px;}
.y9e{bottom:328.890000px;}
.y16e{bottom:330.870000px;}
.y18d{bottom:335.010000px;}
.y101{bottom:335.910000px;}
.y4c{bottom:336.810000px;}
.y158{bottom:337.350000px;}
.ye9{bottom:337.890000px;}
.y12e{bottom:338.430000px;}
.y181{bottom:339.870000px;}
.y1d{bottom:340.410000px;}
.yd1{bottom:341.850000px;}
.yba{bottom:343.830000px;}
.y9d{bottom:345.990000px;}
.y16d{bottom:347.970000px;}
.y1b8{bottom:349.950000px;}
.y7a{bottom:350.850000px;}
.y4b{bottom:351.570000px;}
.y18c{bottom:351.930000px;}
.y197{bottom:352.830000px;}
.ye8{bottom:354.990000px;}
.y1c{bottom:355.170000px;}
.y12d{bottom:355.350000px;}
.y180{bottom:356.970000px;}
.y1a4{bottom:358.050000px;}
.yd0{bottom:358.950000px;}
.yb9{bottom:360.930000px;}
.y9c{bottom:362.910000px;}
.y16c{bottom:364.890000px;}
.y4a{bottom:366.330000px;}
.y1b2{bottom:366.870000px;}
.y79{bottom:367.950000px;}
.y18b{bottom:368.850000px;}
.y157{bottom:369.390000px;}
.y1b{bottom:369.930000px;}
.ye7{bottom:371.910000px;}
.y17f{bottom:373.890000px;}
.ycf{bottom:375.870000px;}
.yb8{bottom:377.850000px;}
.y9b{bottom:380.010000px;}
.y49{bottom:381.090000px;}
.y1b1{bottom:383.970000px;}
.y1a{bottom:384.690000px;}
.y78{bottom:384.870000px;}
.y156{bottom:386.490000px;}
.y196{bottom:386.850000px;}
.y12c{bottom:387.390000px;}
.ye6{bottom:388.830000px;}
.y1a3{bottom:390.090000px;}
.y17e{bottom:390.990000px;}
.yce{bottom:392.970000px;}
.yb7{bottom:394.950000px;}
.y48{bottom:395.850000px;}
.y9a{bottom:396.930000px;}
.y18a{bottom:400.890000px;}
.y77{bottom:401.970000px;}
.y155{bottom:403.410000px;}
.y195{bottom:403.950000px;}
.ye5{bottom:405.930000px;}
.y17d{bottom:407.910000px;}
.ycd{bottom:409.890000px;}
.y47{bottom:410.610000px;}
.yb6{bottom:411.870000px;}
.y99{bottom:413.850000px;}
.y1b7{bottom:416.010000px;}
.y1b0{bottom:417.990000px;}
.y76{bottom:418.890000px;}
.y12b{bottom:419.430000px;}
.y154{bottom:420.330000px;}
.y194{bottom:420.870000px;}
.y1a2{bottom:422.130000px;}
.ye4{bottom:422.850000px;}
.y17c{bottom:425.010000px;}
.y46{bottom:425.370000px;}
.ycc{bottom:426.990000px;}
.yb5{bottom:428.970000px;}
.y16b{bottom:430.950000px;}
.y108{bottom:432.030000px;}
.y189{bottom:432.930000px;}
.y75{bottom:435.990000px;}
.y153{bottom:437.430000px;}
.y19{bottom:439.050000px;}
.y1a1{bottom:439.230000px;}
.y106{bottom:439.950000px;}
.y45{bottom:440.310000px;}
.ycb{bottom:443.910000px;}
.y98{bottom:445.890000px;}
.y16a{bottom:447.870000px;}
.y1af{bottom:449.850000px;}
.y12a{bottom:451.515000px;}
.y74{bottom:452.955000px;}
.y152{bottom:454.395000px;}
.ye3{bottom:454.935000px;}
.y44{bottom:455.115000px;}
.y1a0{bottom:456.195000px;}
.y105{bottom:456.915000px;}
.yb4{bottom:461.055000px;}
.y97{bottom:463.035000px;}
.y188{bottom:465.015000px;}
.y1ae{bottom:466.995000px;}
.y129{bottom:468.435000px;}
.y43{bottom:469.875000px;}
.y73{bottom:470.055000px;}
.y18{bottom:471.315000px;}
.y151{bottom:471.495000px;}
.ye2{bottom:472.035000px;}
.y104{bottom:474.015000px;}
.yca{bottom:477.975000px;}
.y96{bottom:479.955000px;}
.y187{bottom:481.935000px;}
.y42{bottom:484.635000px;}
.y128{bottom:485.535000px;}
.y72{bottom:486.975000px;}
.y17{bottom:488.235000px;}
.ye1{bottom:488.955000px;}
.y162{bottom:490.935000px;}
.yb3{bottom:492.915000px;}
.y177{bottom:494.895000px;}
.y95{bottom:497.055000px;}
.y1ad{bottom:499.035000px;}
.y41{bottom:499.395000px;}
.y127{bottom:502.455000px;}
.y150{bottom:503.535000px;}
.y71{bottom:503.895000px;}
.y19f{bottom:505.155000px;}
.y16{bottom:505.335000px;}
.ye0{bottom:506.055000px;}
.y161{bottom:508.035000px;}
.yb2{bottom:510.015000px;}
.y176{bottom:511.995000px;}
.y94{bottom:513.975000px;}
.y1ac{bottom:515.955000px;}
.y126{bottom:519.555000px;}
.y14f{bottom:520.455000px;}
.y70{bottom:520.995000px;}
.ydf{bottom:522.975000px;}
.y160{bottom:524.955000px;}
.yb1{bottom:526.935000px;}
.y175{bottom:528.915000px;}
.y40{bottom:529.275000px;}
.y93{bottom:531.075000px;}
.y125{bottom:536.475000px;}
.y15{bottom:537.195000px;}
.y14e{bottom:537.555000px;}
.y6f{bottom:537.915000px;}
.yde{bottom:539.895000px;}
.yc9{bottom:542.055000px;}
.y3f{bottom:544.035000px;}
.y169{bottom:546.015000px;}
.y1ab{bottom:547.995000px;}
.y165{bottom:553.035000px;}
.y124{bottom:553.575000px;}
.y14{bottom:554.295000px;}
.y14d{bottom:554.475000px;}
.y6e{bottom:555.015000px;}
.ydd{bottom:556.995000px;}
.yc8{bottom:558.975000px;}
.yb0{bottom:560.955000px;}
.y92{bottom:562.935000px;}
.y1aa{bottom:564.915000px;}
.y164{bottom:569.955000px;}
.y123{bottom:570.495000px;}
.y13{bottom:571.215000px;}
.y14c{bottom:571.575000px;}
.y6d{bottom:571.935000px;}
.y3e{bottom:573.735000px;}
.ydc{bottom:573.915000px;}
.yc7{bottom:576.075000px;}
.y91{bottom:580.035000px;}
.y19e{bottom:586.155000px;}
.y100{bottom:587.055000px;}
.y12{bottom:588.315000px;}
.y3d{bottom:588.495000px;}
.y6c{bottom:589.035000px;}
.ydb{bottom:591.015000px;}
.yaf{bottom:592.995000px;}
.y107{bottom:594.975000px;}
.y90{bottom:596.955000px;}
.y122{bottom:601.995000px;}
.y19d{bottom:603.255000px;}
.y14b{bottom:603.435000px;}
.yff{bottom:603.975000px;}
.y11{bottom:605.235000px;}
.y6b{bottom:605.955000px;}
.y17b{bottom:607.935000px;}
.yae{bottom:609.915000px;}
.y168{bottom:612.075000px;}
.y120{bottom:613.515000px;}
.y8f{bottom:614.055000px;}
.y3c{bottom:618.375000px;}
.yfe{bottom:621.075000px;}
.y10{bottom:622.335000px;}
.y6a{bottom:623.055000px;}
.y17a{bottom:625.035000px;}
.yad{bottom:627.015000px;}
.y167{bottom:628.995000px;}
.y11f{bottom:629.355000px;}
.y19c{bottom:632.955000px;}
.y3b{bottom:633.135000px;}
.y14a{bottom:635.475000px;}
.yfd{bottom:637.995000px;}
.yf{bottom:639.255000px;}
.y69{bottom:639.975000px;}
.y179{bottom:641.955000px;}
.yac{bottom:643.935000px;}
.y11e{bottom:645.375000px;}
.y8e{bottom:646.095000px;}
.y3a{bottom:647.895000px;}
.yfc{bottom:654.915000px;}
.ye{bottom:656.355000px;}
.y68{bottom:657.075000px;}
.yc6{bottom:659.055000px;}
.yab{bottom:661.035000px;}
.y11d{bottom:661.395000px;}
.y39{bottom:662.655000px;}
.y166{bottom:663.015000px;}
.y149{bottom:667.515000px;}
.yfb{bottom:672.015000px;}
.yd{bottom:673.275000px;}
.y67{bottom:673.995000px;}
.yc5{bottom:675.975000px;}
.y38{bottom:677.415000px;}
.y8d{bottom:677.955000px;}
.y148{bottom:684.465000px;}
.yfa{bottom:688.965000px;}
.yc{bottom:690.225000px;}
.y66{bottom:691.125000px;}
.y37{bottom:692.385000px;}
.yc4{bottom:693.105000px;}
.y11b{bottom:693.465000px;}
.yaa{bottom:695.085000px;}
.y147{bottom:701.565000px;}
.yf9{bottom:706.065000px;}
.y36{bottom:707.145000px;}
.y65{bottom:708.045000px;}
.y11a{bottom:709.485000px;}
.y8c{bottom:710.025000px;}
.ya9{bottom:712.005000px;}
.y146{bottom:718.485000px;}
.yb{bottom:720.105000px;}
.y35{bottom:721.905000px;}
.yf8{bottom:722.985000px;}
.y64{bottom:724.965000px;}
.y119{bottom:725.505000px;}
.y8b{bottom:727.125000px;}
.ya8{bottom:729.105000px;}
.y145{bottom:735.585000px;}
.y34{bottom:736.665000px;}
.yf7{bottom:740.085000px;}
.y118{bottom:741.525000px;}
.y63{bottom:742.065000px;}
.y8a{bottom:744.045000px;}
.ya7{bottom:746.025000px;}
.ya{bottom:749.265000px;}
.y33{bottom:751.425000px;}
.yf6{bottom:757.005000px;}
.yda{bottom:758.985000px;}
.y89{bottom:761.145000px;}
.ya6{bottom:763.125000px;}
.y32{bottom:766.185000px;}
.y144{bottom:767.085000px;}
.y62{bottom:774.105000px;}
.yd9{bottom:776.085000px;}
.y88{bottom:778.065000px;}
.y143{bottom:778.425000px;}
.y9{bottom:780.945000px;}
.yf5{bottom:789.045000px;}
.y61{bottom:791.025000px;}
.yd8{bottom:793.005000px;}
.y142{bottom:794.445000px;}
.y87{bottom:794.985000px;}
.y31{bottom:795.885000px;}
.yf4{bottom:806.145000px;}
.y60{bottom:808.125000px;}
.yc3{bottom:810.105000px;}
.y141{bottom:810.465000px;}
.y30{bottom:810.645000px;}
.y8{bottom:810.825000px;}
.y114{bottom:814.785000px;}
.yf3{bottom:823.065000px;}
.y5f{bottom:825.045000px;}
.y2f{bottom:825.405000px;}
.y140{bottom:826.485000px;}
.y86{bottom:827.025000px;}
.y113{bottom:830.805000px;}
.y7{bottom:832.965000px;}
.yf2{bottom:839.985000px;}
.y5e{bottom:842.145000px;}
.y13f{bottom:842.505000px;}
.y85{bottom:844.125000px;}
.y112{bottom:846.825000px;}
.yf1{bottom:857.085000px;}
.y2e{bottom:857.445000px;}
.y13e{bottom:858.525000px;}
.y5d{bottom:859.065000px;}
.y84{bottom:861.045000px;}
.y6{bottom:863.925000px;}
.yf0{bottom:874.005000px;}
.y13d{bottom:874.545000px;}
.y5c{bottom:876.165000px;}
.y83{bottom:878.145000px;}
.y2d{bottom:887.145000px;}
.y13c{bottom:890.565000px;}
.yef{bottom:891.105000px;}
.y5b{bottom:893.085000px;}
.yc2{bottom:895.065000px;}
.y5{bottom:901.365000px;}
.y2c{bottom:901.905000px;}
.y13b{bottom:906.585000px;}
.ya5{bottom:908.025000px;}
.y5a{bottom:910.005000px;}
.yc1{bottom:912.165000px;}
.y13a{bottom:922.650000px;}
.ya4{bottom:925.170000px;}
.y59{bottom:927.150000px;}
.y2b{bottom:931.830000px;}
.y4{bottom:932.910000px;}
.y139{bottom:938.490000px;}
.y82{bottom:942.090000px;}
.y58{bottom:944.070000px;}
.y2a{bottom:946.590000px;}
.y138{bottom:954.510000px;}
.y81{bottom:959.190000px;}
.y29{bottom:961.350000px;}
.y3{bottom:964.230000px;}
.y137{bottom:970.530000px;}
.y28{bottom:976.110000px;}
.y27{bottom:1163.160000px;}
.y57{bottom:1171.980000px;}
.y26{bottom:1185.840000px;}
.y1{bottom:1192.860000px;}
.y56{bottom:1195.380000px;}
.y25{bottom:1202.580000px;}
.h18{height:15.825000px;}
.h17{height:16.005000px;}
.h15{height:16.020000px;}
.h1b{height:16.042500px;}
.h16{height:16.050000px;}
.h1a{height:16.056000px;}
.h10{height:29.254922px;}
.h11{height:31.539375px;}
.hb{height:31.798828px;}
.h19{height:32.025000px;}
.h6{height:34.020000px;}
.h7{height:38.340000px;}
.h13{height:42.610430px;}
.h8{height:45.154336px;}
.ha{height:45.184219px;}
.h9{height:45.403945px;}
.h14{height:48.060000px;}
.h4{height:49.680000px;}
.h2{height:50.308594px;}
.h12{height:50.312812px;}
.h5{height:52.786055px;}
.he{height:53.316562px;}
.hc{height:58.509844px;}
.hd{height:63.597656px;}
.h3{height:81.000000px;}
.h1{height:1263.000000px;}
.hf{height:1263.057990px;}
.h0{height:1263.060000px;}
.w3{width:100.800000px;}
.w5{width:100.965000px;}
.w4{width:101.016000px;}
.w2{width:892.438125px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1a{left:14.940000px;}
.x19{left:16.020000px;}
.x1c{left:17.460000px;}
.x1b{left:21.060000px;}
.xd{left:23.580000px;}
.xe{left:24.840000px;}
.x1d{left:26.100000px;}
.xf{left:27.180000px;}
.x17{left:28.980000px;}
.x1e{left:30.420000px;}
.x14{left:32.400000px;}
.x16{left:33.840000px;}
.x13{left:34.920000px;}
.x15{left:36.360000px;}
.x11{left:38.520000px;}
.x18{left:50.385000px;}
.x1{left:212.610000px;}
.x1f{left:214.410000px;}
.x3{left:216.750000px;}
.x2{left:246.270000px;}
.x7{left:255.090000px;}
.x8{left:265.710000px;}
.x22{left:276.330000px;}
.x21{left:284.115000px;}
.x4{left:292.395000px;}
.xc{left:305.535000px;}
.x9{left:396.613125px;}
.xa{left:400.755000px;}
.x10{left:406.335000px;}
.xb{left:428.655000px;}
.x23{left:456.915000px;}
.x12{left:507.360000px;}
.x20{left:532.725000px;}
.x6{left:541.005000px;}
.x5{left:701.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.120000pt;}
.ls1e{letter-spacing:-0.869333pt;}
.ls19{letter-spacing:-0.842667pt;}
.ls7{letter-spacing:-0.645333pt;}
.ls12{letter-spacing:-0.351467pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.228267pt;}
.ls18{letter-spacing:-0.214400pt;}
.lsb{letter-spacing:-0.202667pt;}
.ls1b{letter-spacing:-0.198933pt;}
.ls10{letter-spacing:-0.134400pt;}
.ls14{letter-spacing:-0.122667pt;}
.ls1c{letter-spacing:-0.108800pt;}
.lsa{letter-spacing:-0.074133pt;}
.lsf{letter-spacing:-0.062933pt;}
.ls1{letter-spacing:-0.042880pt;}
.ls1f{letter-spacing:-0.005760pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.031360pt;}
.ls16{letter-spacing:0.037120pt;}
.ls17{letter-spacing:0.042880pt;}
.ls1a{letter-spacing:0.080533pt;}
.ls4{letter-spacing:0.167467pt;}
.ls11{letter-spacing:0.167680pt;}
.ls2{letter-spacing:0.288533pt;}
.ls6{letter-spacing:0.320000pt;}
.lse{letter-spacing:2.087680pt;}
.ls1d{letter-spacing:4.647680pt;}
.lsd{letter-spacing:97.607680pt;}
.ls9{letter-spacing:98.247680pt;}
.lsc{letter-spacing:100.807680pt;}
.ls8{letter-spacing:101.447680pt;}
.ls15{letter-spacing:136.487680pt;}
.wsc{word-spacing:-42.880000pt;}
.ws3{word-spacing:-16.368640pt;}
.ws6{word-spacing:-12.952320pt;}
.ws4{word-spacing:-12.632320pt;}
.ws0{word-spacing:-12.589440pt;}
.ws8{word-spacing:-12.569387pt;}
.ws5{word-spacing:-12.558187pt;}
.wsa{word-spacing:-12.509653pt;}
.ws9{word-spacing:-12.497920pt;}
.ws7{word-spacing:-12.429653pt;}
.wsb{word-spacing:-12.417920pt;}
.wsf{word-spacing:-12.404053pt;}
.ws1{word-spacing:-12.312320pt;}
.wse{word-spacing:-11.811840pt;}
.wsd{word-spacing:-11.721707pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.482667pt;}
._3{width:2.771840pt;}
._4{width:3.953280pt;}
._a{width:4.952960pt;}
._8{width:6.417920pt;}
._7{width:7.361280pt;}
._5{width:8.542720pt;}
._6{width:9.951360pt;}
._b{width:10.951040pt;}
._c{width:13.686400pt;}
._9{width:14.722560pt;}
._d{width:15.795413pt;}
._e{width:17.069013pt;}
._f{width:18.675840pt;}
._2{width:20.175360pt;}
._12{width:21.689387pt;}
._10{width:23.401600pt;}
._11{width:24.656213pt;}
._1c{width:25.625813pt;}
._16{width:26.628480pt;}
._15{width:28.767360pt;}
._13{width:29.717760pt;}
._14{width:30.717440pt;}
._17{width:33.898240pt;}
._18{width:34.871893pt;}
._19{width:35.761280pt;}
._1a{width:36.781867pt;}
._1d{width:89.471360pt;}
._1f{width:98.623360pt;}
._1e{width:99.524480pt;}
._1b{width:137.001600pt;}
.fsa{font-size:18.560000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:29.440000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y121{bottom:5.440000pt;}
.y133{bottom:5.586667pt;}
.y117{bottom:5.600000pt;}
.y11c{bottom:5.626667pt;}
.y134{bottom:12.786667pt;}
.y132{bottom:19.826667pt;}
.y116{bottom:19.840000pt;}
.y115{bottom:34.080000pt;}
.y2{bottom:50.720000pt;}
.y111{bottom:172.480000pt;}
.y193{bottom:178.560000pt;}
.y136{bottom:179.360000pt;}
.y15f{bottom:180.800000pt;}
.y55{bottom:180.960000pt;}
.y80{bottom:181.120000pt;}
.y186{bottom:183.040000pt;}
.y24{bottom:183.200000pt;}
.y110{bottom:184.800000pt;}
.ya3{bottom:188.320000pt;}
.y1a9{bottom:189.440000pt;}
.y174{bottom:190.080000pt;}
.y19b{bottom:192.800000pt;}
.y135{bottom:193.600000pt;}
.y54{bottom:194.080000pt;}
.y1b6{bottom:195.546667pt;}
.y15e{bottom:195.866667pt;}
.y23{bottom:196.346667pt;}
.y10f{bottom:197.146667pt;}
.y185{bottom:198.106667pt;}
.yd7{bottom:199.866667pt;}
.yc0{bottom:201.626667pt;}
.ya2{bottom:203.386667pt;}
.y1a8{bottom:204.506667pt;}
.y173{bottom:205.306667pt;}
.y53{bottom:207.386667pt;}
.y19a{bottom:207.866667pt;}
.y131{bottom:209.160000pt;}
.y10e{bottom:209.306667pt;}
.y7f{bottom:209.626667pt;}
.y1b5{bottom:210.586667pt;}
.y15d{bottom:211.066667pt;}
.yee{bottom:211.386667pt;}
.y184{bottom:213.306667pt;}
.y178{bottom:215.066667pt;}
.ybf{bottom:216.826667pt;}
.ya1{bottom:218.586667pt;}
.y22{bottom:219.546667pt;}
.y172{bottom:220.346667pt;}
.y52{bottom:220.506667pt;}
.y10d{bottom:221.626667pt;}
.y192{bottom:222.106667pt;}
.y199{bottom:223.066667pt;}
.y1b9{bottom:223.866667pt;}
.y7e{bottom:224.826667pt;}
.y103{bottom:226.586667pt;}
.yd6{bottom:228.346667pt;}
.ybe{bottom:231.866667pt;}
.y1a7{bottom:232.986667pt;}
.y51{bottom:233.626667pt;}
.y10c{bottom:233.946667pt;}
.y21{bottom:234.586667pt;}
.y171{bottom:235.546667pt;}
.y191{bottom:237.306667pt;}
.y198{bottom:238.106667pt;}
.y1b4{bottom:239.066667pt;}
.y15c{bottom:239.386667pt;}
.yed{bottom:239.866667pt;}
.y102{bottom:241.626667pt;}
.yd5{bottom:243.386667pt;}
.y130{bottom:244.506667pt;}
.y10b{bottom:246.106667pt;}
.y50{bottom:246.746667pt;}
.y20{bottom:247.706667pt;}
.y170{bottom:250.586667pt;}
.y10a{bottom:251.386667pt;}
.y190{bottom:252.346667pt;}
.y7d{bottom:253.306667pt;}
.y1b3{bottom:254.106667pt;}
.y15b{bottom:254.586667pt;}
.yec{bottom:255.066667pt;}
.y163{bottom:256.826667pt;}
.yd4{bottom:258.586667pt;}
.y12f{bottom:258.746667pt;}
.y109{bottom:259.546667pt;}
.y4f{bottom:259.866667pt;}
.ybd{bottom:260.346667pt;}
.y1f{bottom:260.986667pt;}
.y1a6{bottom:261.466667pt;}
.ya0{bottom:262.106667pt;}
.y16f{bottom:265.626667pt;}
.y18f{bottom:267.546667pt;}
.y7c{bottom:268.346667pt;}
.y15a{bottom:269.626667pt;}
.yeb{bottom:270.106667pt;}
.y183{bottom:271.866667pt;}
.y4e{bottom:272.986667pt;}
.yd3{bottom:273.626667pt;}
.y1e{bottom:274.106667pt;}
.ybc{bottom:275.546667pt;}
.y9f{bottom:277.306667pt;}
.y18e{bottom:282.586667pt;}
.y7b{bottom:283.386667pt;}
.y159{bottom:284.826667pt;}
.yea{bottom:285.306667pt;}
.y4d{bottom:286.106667pt;}
.y182{bottom:287.066667pt;}
.yd2{bottom:288.826667pt;}
.y1a5{bottom:289.946667pt;}
.ybb{bottom:290.586667pt;}
.y9e{bottom:292.346667pt;}
.y16e{bottom:294.106667pt;}
.y18d{bottom:297.786667pt;}
.y101{bottom:298.586667pt;}
.y4c{bottom:299.386667pt;}
.y158{bottom:299.866667pt;}
.ye9{bottom:300.346667pt;}
.y12e{bottom:300.826667pt;}
.y181{bottom:302.106667pt;}
.y1d{bottom:302.586667pt;}
.yd1{bottom:303.866667pt;}
.yba{bottom:305.626667pt;}
.y9d{bottom:307.546667pt;}
.y16d{bottom:309.306667pt;}
.y1b8{bottom:311.066667pt;}
.y7a{bottom:311.866667pt;}
.y4b{bottom:312.506667pt;}
.y18c{bottom:312.826667pt;}
.y197{bottom:313.626667pt;}
.ye8{bottom:315.546667pt;}
.y1c{bottom:315.706667pt;}
.y12d{bottom:315.866667pt;}
.y180{bottom:317.306667pt;}
.y1a4{bottom:318.266667pt;}
.yd0{bottom:319.066667pt;}
.yb9{bottom:320.826667pt;}
.y9c{bottom:322.586667pt;}
.y16c{bottom:324.346667pt;}
.y4a{bottom:325.626667pt;}
.y1b2{bottom:326.106667pt;}
.y79{bottom:327.066667pt;}
.y18b{bottom:327.866667pt;}
.y157{bottom:328.346667pt;}
.y1b{bottom:328.826667pt;}
.ye7{bottom:330.586667pt;}
.y17f{bottom:332.346667pt;}
.ycf{bottom:334.106667pt;}
.yb8{bottom:335.866667pt;}
.y9b{bottom:337.786667pt;}
.y49{bottom:338.746667pt;}
.y1b1{bottom:341.306667pt;}
.y1a{bottom:341.946667pt;}
.y78{bottom:342.106667pt;}
.y156{bottom:343.546667pt;}
.y196{bottom:343.866667pt;}
.y12c{bottom:344.346667pt;}
.ye6{bottom:345.626667pt;}
.y1a3{bottom:346.746667pt;}
.y17e{bottom:347.546667pt;}
.yce{bottom:349.306667pt;}
.yb7{bottom:351.066667pt;}
.y48{bottom:351.866667pt;}
.y9a{bottom:352.826667pt;}
.y18a{bottom:356.346667pt;}
.y77{bottom:357.306667pt;}
.y155{bottom:358.586667pt;}
.y195{bottom:359.066667pt;}
.ye5{bottom:360.826667pt;}
.y17d{bottom:362.586667pt;}
.ycd{bottom:364.346667pt;}
.y47{bottom:364.986667pt;}
.yb6{bottom:366.106667pt;}
.y99{bottom:367.866667pt;}
.y1b7{bottom:369.786667pt;}
.y1b0{bottom:371.546667pt;}
.y76{bottom:372.346667pt;}
.y12b{bottom:372.826667pt;}
.y154{bottom:373.626667pt;}
.y194{bottom:374.106667pt;}
.y1a2{bottom:375.226667pt;}
.ye4{bottom:375.866667pt;}
.y17c{bottom:377.786667pt;}
.y46{bottom:378.106667pt;}
.ycc{bottom:379.546667pt;}
.yb5{bottom:381.306667pt;}
.y16b{bottom:383.066667pt;}
.y108{bottom:384.026667pt;}
.y189{bottom:384.826667pt;}
.y75{bottom:387.546667pt;}
.y153{bottom:388.826667pt;}
.y19{bottom:390.266667pt;}
.y1a1{bottom:390.426667pt;}
.y106{bottom:391.066667pt;}
.y45{bottom:391.386667pt;}
.ycb{bottom:394.586667pt;}
.y98{bottom:396.346667pt;}
.y16a{bottom:398.106667pt;}
.y1af{bottom:399.866667pt;}
.y12a{bottom:401.346667pt;}
.y74{bottom:402.626667pt;}
.y152{bottom:403.906667pt;}
.ye3{bottom:404.386667pt;}
.y44{bottom:404.546667pt;}
.y1a0{bottom:405.506667pt;}
.y105{bottom:406.146667pt;}
.yb4{bottom:409.826667pt;}
.y97{bottom:411.586667pt;}
.y188{bottom:413.346667pt;}
.y1ae{bottom:415.106667pt;}
.y129{bottom:416.386667pt;}
.y43{bottom:417.666667pt;}
.y73{bottom:417.826667pt;}
.y18{bottom:418.946667pt;}
.y151{bottom:419.106667pt;}
.ye2{bottom:419.586667pt;}
.y104{bottom:421.346667pt;}
.yca{bottom:424.866667pt;}
.y96{bottom:426.626667pt;}
.y187{bottom:428.386667pt;}
.y42{bottom:430.786667pt;}
.y128{bottom:431.586667pt;}
.y72{bottom:432.866667pt;}
.y17{bottom:433.986667pt;}
.ye1{bottom:434.626667pt;}
.y162{bottom:436.386667pt;}
.yb3{bottom:438.146667pt;}
.y177{bottom:439.906667pt;}
.y95{bottom:441.826667pt;}
.y1ad{bottom:443.586667pt;}
.y41{bottom:443.906667pt;}
.y127{bottom:446.626667pt;}
.y150{bottom:447.586667pt;}
.y71{bottom:447.906667pt;}
.y19f{bottom:449.026667pt;}
.y16{bottom:449.186667pt;}
.ye0{bottom:449.826667pt;}
.y161{bottom:451.586667pt;}
.yb2{bottom:453.346667pt;}
.y176{bottom:455.106667pt;}
.y94{bottom:456.866667pt;}
.y1ac{bottom:458.626667pt;}
.y126{bottom:461.826667pt;}
.y14f{bottom:462.626667pt;}
.y70{bottom:463.106667pt;}
.ydf{bottom:464.866667pt;}
.y160{bottom:466.626667pt;}
.yb1{bottom:468.386667pt;}
.y175{bottom:470.146667pt;}
.y40{bottom:470.466667pt;}
.y93{bottom:472.066667pt;}
.y125{bottom:476.866667pt;}
.y15{bottom:477.506667pt;}
.y14e{bottom:477.826667pt;}
.y6f{bottom:478.146667pt;}
.yde{bottom:479.906667pt;}
.yc9{bottom:481.826667pt;}
.y3f{bottom:483.586667pt;}
.y169{bottom:485.346667pt;}
.y1ab{bottom:487.106667pt;}
.y165{bottom:491.586667pt;}
.y124{bottom:492.066667pt;}
.y14{bottom:492.706667pt;}
.y14d{bottom:492.866667pt;}
.y6e{bottom:493.346667pt;}
.ydd{bottom:495.106667pt;}
.yc8{bottom:496.866667pt;}
.yb0{bottom:498.626667pt;}
.y92{bottom:500.386667pt;}
.y1aa{bottom:502.146667pt;}
.y164{bottom:506.626667pt;}
.y123{bottom:507.106667pt;}
.y13{bottom:507.746667pt;}
.y14c{bottom:508.066667pt;}
.y6d{bottom:508.386667pt;}
.y3e{bottom:509.986667pt;}
.ydc{bottom:510.146667pt;}
.yc7{bottom:512.066667pt;}
.y91{bottom:515.586667pt;}
.y19e{bottom:521.026667pt;}
.y100{bottom:521.826667pt;}
.y12{bottom:522.946667pt;}
.y3d{bottom:523.106667pt;}
.y6c{bottom:523.586667pt;}
.ydb{bottom:525.346667pt;}
.yaf{bottom:527.106667pt;}
.y107{bottom:528.866667pt;}
.y90{bottom:530.626667pt;}
.y122{bottom:535.106667pt;}
.y19d{bottom:536.226667pt;}
.y14b{bottom:536.386667pt;}
.yff{bottom:536.866667pt;}
.y11{bottom:537.986667pt;}
.y6b{bottom:538.626667pt;}
.y17b{bottom:540.386667pt;}
.yae{bottom:542.146667pt;}
.y168{bottom:544.066667pt;}
.y120{bottom:545.346667pt;}
.y8f{bottom:545.826667pt;}
.y3c{bottom:549.666667pt;}
.yfe{bottom:552.066667pt;}
.y10{bottom:553.186667pt;}
.y6a{bottom:553.826667pt;}
.y17a{bottom:555.586667pt;}
.yad{bottom:557.346667pt;}
.y167{bottom:559.106667pt;}
.y11f{bottom:559.426667pt;}
.y19c{bottom:562.626667pt;}
.y3b{bottom:562.786667pt;}
.y14a{bottom:564.866667pt;}
.yfd{bottom:567.106667pt;}
.yf{bottom:568.226667pt;}
.y69{bottom:568.866667pt;}
.y179{bottom:570.626667pt;}
.yac{bottom:572.386667pt;}
.y11e{bottom:573.666667pt;}
.y8e{bottom:574.306667pt;}
.y3a{bottom:575.906667pt;}
.yfc{bottom:582.146667pt;}
.ye{bottom:583.426667pt;}
.y68{bottom:584.066667pt;}
.yc6{bottom:585.826667pt;}
.yab{bottom:587.586667pt;}
.y11d{bottom:587.906667pt;}
.y39{bottom:589.026667pt;}
.y166{bottom:589.346667pt;}
.y149{bottom:593.346667pt;}
.yfb{bottom:597.346667pt;}
.yd{bottom:598.466667pt;}
.y67{bottom:599.106667pt;}
.yc5{bottom:600.866667pt;}
.y38{bottom:602.146667pt;}
.y8d{bottom:602.626667pt;}
.y148{bottom:608.413333pt;}
.yfa{bottom:612.413333pt;}
.yc{bottom:613.533333pt;}
.y66{bottom:614.333333pt;}
.y37{bottom:615.453333pt;}
.yc4{bottom:616.093333pt;}
.y11b{bottom:616.413333pt;}
.yaa{bottom:617.853333pt;}
.y147{bottom:623.613333pt;}
.yf9{bottom:627.613333pt;}
.y36{bottom:628.573333pt;}
.y65{bottom:629.373333pt;}
.y11a{bottom:630.653333pt;}
.y8c{bottom:631.133333pt;}
.ya9{bottom:632.893333pt;}
.y146{bottom:638.653333pt;}
.yb{bottom:640.093333pt;}
.y35{bottom:641.693333pt;}
.yf8{bottom:642.653333pt;}
.y64{bottom:644.413333pt;}
.y119{bottom:644.893333pt;}
.y8b{bottom:646.333333pt;}
.ya8{bottom:648.093333pt;}
.y145{bottom:653.853333pt;}
.y34{bottom:654.813333pt;}
.yf7{bottom:657.853333pt;}
.y118{bottom:659.133333pt;}
.y63{bottom:659.613333pt;}
.y8a{bottom:661.373333pt;}
.ya7{bottom:663.133333pt;}
.ya{bottom:666.013333pt;}
.y33{bottom:667.933333pt;}
.yf6{bottom:672.893333pt;}
.yda{bottom:674.653333pt;}
.y89{bottom:676.573333pt;}
.ya6{bottom:678.333333pt;}
.y32{bottom:681.053333pt;}
.y144{bottom:681.853333pt;}
.y62{bottom:688.093333pt;}
.yd9{bottom:689.853333pt;}
.y88{bottom:691.613333pt;}
.y143{bottom:691.933333pt;}
.y9{bottom:694.173333pt;}
.yf5{bottom:701.373333pt;}
.y61{bottom:703.133333pt;}
.yd8{bottom:704.893333pt;}
.y142{bottom:706.173333pt;}
.y87{bottom:706.653333pt;}
.y31{bottom:707.453333pt;}
.yf4{bottom:716.573333pt;}
.y60{bottom:718.333333pt;}
.yc3{bottom:720.093333pt;}
.y141{bottom:720.413333pt;}
.y30{bottom:720.573333pt;}
.y8{bottom:720.733333pt;}
.y114{bottom:724.253333pt;}
.yf3{bottom:731.613333pt;}
.y5f{bottom:733.373333pt;}
.y2f{bottom:733.693333pt;}
.y140{bottom:734.653333pt;}
.y86{bottom:735.133333pt;}
.y113{bottom:738.493333pt;}
.y7{bottom:740.413333pt;}
.yf2{bottom:746.653333pt;}
.y5e{bottom:748.573333pt;}
.y13f{bottom:748.893333pt;}
.y85{bottom:750.333333pt;}
.y112{bottom:752.733333pt;}
.yf1{bottom:761.853333pt;}
.y2e{bottom:762.173333pt;}
.y13e{bottom:763.133333pt;}
.y5d{bottom:763.613333pt;}
.y84{bottom:765.373333pt;}
.y6{bottom:767.933333pt;}
.yf0{bottom:776.893333pt;}
.y13d{bottom:777.373333pt;}
.y5c{bottom:778.813333pt;}
.y83{bottom:780.573333pt;}
.y2d{bottom:788.573333pt;}
.y13c{bottom:791.613333pt;}
.yef{bottom:792.093333pt;}
.y5b{bottom:793.853333pt;}
.yc2{bottom:795.613333pt;}
.y5{bottom:801.213333pt;}
.y2c{bottom:801.693333pt;}
.y13b{bottom:805.853333pt;}
.ya5{bottom:807.133333pt;}
.y5a{bottom:808.893333pt;}
.yc1{bottom:810.813333pt;}
.y13a{bottom:820.133333pt;}
.ya4{bottom:822.373333pt;}
.y59{bottom:824.133333pt;}
.y2b{bottom:828.293333pt;}
.y4{bottom:829.253333pt;}
.y139{bottom:834.213333pt;}
.y82{bottom:837.413333pt;}
.y58{bottom:839.173333pt;}
.y2a{bottom:841.413333pt;}
.y138{bottom:848.453333pt;}
.y81{bottom:852.613333pt;}
.y29{bottom:854.533333pt;}
.y3{bottom:857.093333pt;}
.y137{bottom:862.693333pt;}
.y28{bottom:867.653333pt;}
.y27{bottom:1033.920000pt;}
.y57{bottom:1041.760000pt;}
.y26{bottom:1054.080000pt;}
.y1{bottom:1060.320000pt;}
.y56{bottom:1062.560000pt;}
.y25{bottom:1068.960000pt;}
.h18{height:14.066667pt;}
.h17{height:14.226667pt;}
.h15{height:14.240000pt;}
.h1b{height:14.260000pt;}
.h16{height:14.266667pt;}
.h1a{height:14.272000pt;}
.h10{height:26.004375pt;}
.h11{height:28.035000pt;}
.hb{height:28.265625pt;}
.h19{height:28.466667pt;}
.h6{height:30.240000pt;}
.h7{height:34.080000pt;}
.h13{height:37.875937pt;}
.h8{height:40.137187pt;}
.ha{height:40.163750pt;}
.h9{height:40.359063pt;}
.h14{height:42.720000pt;}
.h4{height:44.160000pt;}
.h2{height:44.718750pt;}
.h12{height:44.722500pt;}
.h5{height:46.920938pt;}
.he{height:47.392500pt;}
.hc{height:52.008750pt;}
.hd{height:56.531250pt;}
.h3{height:72.000000pt;}
.h1{height:1122.666667pt;}
.hf{height:1122.718213pt;}
.h0{height:1122.720000pt;}
.w3{width:89.600000pt;}
.w5{width:89.746667pt;}
.w4{width:89.792000pt;}
.w2{width:793.278333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1a{left:13.280000pt;}
.x19{left:14.240000pt;}
.x1c{left:15.520000pt;}
.x1b{left:18.720000pt;}
.xd{left:20.960000pt;}
.xe{left:22.080000pt;}
.x1d{left:23.200000pt;}
.xf{left:24.160000pt;}
.x17{left:25.760000pt;}
.x1e{left:27.040000pt;}
.x14{left:28.800000pt;}
.x16{left:30.080000pt;}
.x13{left:31.040000pt;}
.x15{left:32.320000pt;}
.x11{left:34.240000pt;}
.x18{left:44.786667pt;}
.x1{left:188.986667pt;}
.x1f{left:190.586667pt;}
.x3{left:192.666667pt;}
.x2{left:218.906667pt;}
.x7{left:226.746667pt;}
.x8{left:236.186667pt;}
.x22{left:245.626667pt;}
.x21{left:252.546667pt;}
.x4{left:259.906667pt;}
.xc{left:271.586667pt;}
.x9{left:352.545000pt;}
.xa{left:356.226667pt;}
.x10{left:361.186667pt;}
.xb{left:381.026667pt;}
.x23{left:406.146667pt;}
.x12{left:450.986667pt;}
.x20{left:473.533333pt;}
.x6{left:480.893333pt;}
.x5{left:623.333333pt;}
}




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