
    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_8cd78c868f4898aaa546ad3e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087891;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_45ea93f05330752821fc97b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_b00d30b9c91448cb318188ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_22a6a56bed0c15f4fe8ee2f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081055;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_085536acdc70b514cc6bd407.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.081055;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_ce8aba31f0b098919b9d9f2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.087891;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_772a94447e68d56dcacaa00f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.089844;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_1a2d0062d8cde9acbc07d41c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_7a7ebead32a1fae14dcfd82b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.089844;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_ef5f6ed86582480eefbb9d37.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.087891;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_8d9972d8f286f5be491656d1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_229cc76579bf1e6c36a27050.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.087891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_97e5f03d75a4176c062eef55.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7073ea60856472b47289971e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a8e3d8bffcd4a18569ea090b.woff2')format("woff");}.fff{font-family:fff;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b88902b663dbb220066ba24b.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_96d9a6ca54b749268144bd71.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1755433d07629e8a7ac29d54.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.682617;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:ff13;src:url('chunks/assets/font_1eb02bb9a23c3234e3440fa7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.682617;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;}
.ls3{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.588000px;}
.ls0{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.624000px;}
.ls15{letter-spacing:0.660000px;}
.ls6{letter-spacing:0.840000px;}
.ls4{letter-spacing:0.960000px;}
.lsf{letter-spacing:1.500000px;}
.ls9{letter-spacing:9.648000px;}
.lse{letter-spacing:20.820000px;}
.ls8{letter-spacing:21.312000px;}
.ls7{letter-spacing:31.290000px;}
.ls13{letter-spacing:50.652000px;}
.ls14{letter-spacing:52.440000px;}
.ls11{letter-spacing:55.320000px;}
.ls12{letter-spacing:59.652000px;}
.ls10{letter-spacing:64.320000px;}
.lsb{letter-spacing:70.320000px;}
.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;}
}
.wsb{word-spacing:-66.000000px;}
.wsa{word-spacing:-60.000000px;}
.ws6{word-spacing:-23.160000px;}
.ws7{word-spacing:-18.528000px;}
.ws8{word-spacing:-17.052000px;}
.ws2{word-spacing:-13.140000px;}
.ws4{word-spacing:-13.020000px;}
.wse{word-spacing:-12.840000px;}
.ws0{word-spacing:-12.180000px;}
.ws9{word-spacing:-11.820000px;}
.ws3{word-spacing:-11.640000px;}
.ws1{word-spacing:-11.520000px;}
.wsc{word-spacing:-0.066000px;}
.wsd{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-7.200000px;}
._5{margin-left:-5.400000px;}
._4{margin-left:-4.380000px;}
._1{margin-left:-3.060000px;}
._0{margin-left:-1.080000px;}
._2{width:1.560000px;}
._3{width:2.610000px;}
._7{width:4.110000px;}
._c{width:6.000000px;}
._d{width:7.110000px;}
._8{width:10.200000px;}
._10{width:11.328000px;}
._9{width:15.360000px;}
._a{width:18.000000px;}
._f{width:19.020000px;}
._e{width:20.100000px;}
._11{width:27.612000px;}
._12{width:29.484000px;}
._b{width:38.280000px;}
.fc4{color:rgb(50,35,0);}
.fc3{color:rgb(20,120,100);}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:3.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.125000px;}
.yc7{bottom:6.735000px;}
.y10{bottom:6.750000px;}
.y8b{bottom:6.765000px;}
.yd0{bottom:6.795000px;}
.y88{bottom:7.110000px;}
.yde{bottom:7.117500px;}
.yd{bottom:7.125000px;}
.y19{bottom:7.155000px;}
.y9d{bottom:7.170000px;}
.y28{bottom:7.485000px;}
.y2c{bottom:7.500000px;}
.y34{bottom:7.875000px;}
.y32{bottom:7.890000px;}
.y6{bottom:8.250000px;}
.y31{bottom:8.265000px;}
.y19f{bottom:8.280000px;}
.y2{bottom:18.045000px;}
.y75{bottom:18.750000px;}
.y7e{bottom:18.757500px;}
.y43{bottom:19.125000px;}
.y78{bottom:19.155000px;}
.y3f{bottom:27.405000px;}
.y87{bottom:28.110000px;}
.y22{bottom:28.125000px;}
.yc0{bottom:28.132500px;}
.y8f{bottom:28.155000px;}
.ydd{bottom:28.162500px;}
.y94{bottom:28.170000px;}
.y97{bottom:28.500000px;}
.y9c{bottom:28.545000px;}
.yb{bottom:33.405000px;}
.y7c{bottom:40.125000px;}
.y42{bottom:40.155000px;}
.yc3{bottom:49.125000px;}
.y99{bottom:49.155000px;}
.ya0{bottom:49.170000px;}
.yc6{bottom:49.485000px;}
.y19d{bottom:49.492500px;}
.y21{bottom:49.500000px;}
.y86{bottom:49.530000px;}
.ydc{bottom:49.537500px;}
.ycf{bottom:49.545000px;}
.y7{bottom:57.037500px;}
.y41{bottom:61.530000px;}
.ya6{bottom:70.500000px;}
.yba{bottom:70.530000px;}
.ydb{bottom:70.537500px;}
.yce{bottom:70.545000px;}
.y20{bottom:70.875000px;}
.yca{bottom:70.905000px;}
.y9b{bottom:70.920000px;}
.y5{bottom:71.287500px;}
.y40{bottom:82.905000px;}
.ycc{bottom:91.530000px;}
.yda{bottom:91.912500px;}
.ya5{bottom:91.920000px;}
.y19c{bottom:112.537500px;}
.yc9{bottom:113.280000px;}
.yd9{bottom:113.287500px;}
.yd6{bottom:113.295000px;}
.y59{bottom:115.162500px;}
.y33{bottom:128.287500px;}
.ybf{bottom:129.037500px;}
.y7f{bottom:130.537500px;}
.y186{bottom:132.412500px;}
.yd8{bottom:134.287500px;}
.yd5{bottom:134.325000px;}
.y102{bottom:134.662500px;}
.y7d{bottom:145.537500px;}
.y148{bottom:146.287500px;}
.yd7{bottom:148.162500px;}
.y58{bottom:148.537500px;}
.y126{bottom:148.912500px;}
.y30{bottom:151.530000px;}
.y185{bottom:153.795000px;}
.y101{bottom:155.655000px;}
.yd4{bottom:155.700000px;}
.y147{bottom:167.295000px;}
.y57{bottom:169.920000px;}
.y125{bottom:170.295000px;}
.ybe{bottom:172.155000px;}
.yd3{bottom:176.700000px;}
.y100{bottom:177.075000px;}
.y7b{bottom:179.325000px;}
.y168{bottom:187.200000px;}
.y184{bottom:187.950000px;}
.y56{bottom:190.950000px;}
.y2f{bottom:193.950000px;}
.y146{bottom:199.200000px;}
.y124{bottom:204.450000px;}
.y183{bottom:208.950000px;}
.yff{bottom:210.450000px;}
.ybd{bottom:215.325000px;}
.y9f{bottom:215.700000px;}
.y19b{bottom:219.450000px;}
.y167{bottom:220.575000px;}
.y55{bottom:224.325000px;}
.y123{bottom:225.825000px;}
.y2e{bottom:227.325000px;}
.y7a{bottom:234.450000px;}
.y182{bottom:239.325000px;}
.y145{bottom:240.450000px;}
.y2d{bottom:242.325000px;}
.yfe{bottom:244.575000px;}
.y122{bottom:247.200000px;}
.y166{bottom:253.950000px;}
.y54{bottom:255.825000px;}
.y9e{bottom:258.825000px;}
.y144{bottom:261.825000px;}
.y2b{bottom:265.575000px;}
.yfd{bottom:265.950000px;}
.y79{bottom:268.575000px;}
.y165{bottom:274.950000px;}
.y181{bottom:278.325000px;}
.ybc{bottom:279.825000px;}
.y121{bottom:281.325000px;}
.y143{bottom:282.825000px;}
.y2a{bottom:288.825000px;}
.y164{bottom:296.325000px;}
.yd2{bottom:297.450000px;}
.yfc{bottom:299.700000px;}
.y9a{bottom:301.950000px;}
.y77{bottom:302.325000px;}
.y142{bottom:304.230000px;}
.y53{bottom:304.605000px;}
.y19a{bottom:304.995000px;}
.y180{bottom:309.120000px;}
.y29{bottom:310.620000px;}
.y120{bottom:315.495000px;}
.yfb{bottom:321.480000px;}
.ybb{bottom:322.995000px;}
.y141{bottom:325.620000px;}
.y199{bottom:328.245000px;}
.y163{bottom:329.370000px;}
.y27{bottom:333.870000px;}
.y11f{bottom:334.980000px;}
.y76{bottom:336.495000px;}
.y140{bottom:346.620000px;}
.y17f{bottom:348.105000px;}
.yfa{bottom:355.230000px;}
.y26{bottom:357.120000px;}
.y162{bottom:362.745000px;}
.yb9{bottom:366.120000px;}
.y52{bottom:366.870000px;}
.y13f{bottom:367.980000px;}
.y17e{bottom:369.495000px;}
.y74{bottom:370.620000px;}
.y11e{bottom:375.480000px;}
.yf9{bottom:376.620000px;}
.y25{bottom:379.245000px;}
.y161{bottom:383.745000px;}
.y98{bottom:387.870000px;}
.y198{bottom:392.745000px;}
.y11d{bottom:395.355000px;}
.y51{bottom:399.870000px;}
.y13e{bottom:402.495000px;}
.y17d{bottom:403.245000px;}
.y73{bottom:404.370000px;}
.yf8{bottom:410.745000px;}
.y160{bottom:417.120000px;}
.y24{bottom:420.120000px;}
.y50{bottom:421.245000px;}
.y17c{bottom:424.995000px;}
.y11c{bottom:431.400000px;}
.yf7{bottom:432.150000px;}
.y197{bottom:436.275000px;}
.y4f{bottom:442.650000px;}
.y13d{bottom:444.900000px;}
.y15f{bottom:450.525000px;}
.yf6{bottom:451.650000px;}
.y96{bottom:452.025000px;}
.y11b{bottom:452.775000px;}
.y23{bottom:453.150000px;}
.y17b{bottom:458.775000px;}
.y1f{bottom:468.150000px;}
.yb8{bottom:470.775000px;}
.y15e{bottom:471.525000px;}
.yf5{bottom:471.900000px;}
.y4e{bottom:475.650000px;}
.y72{bottom:478.650000px;}
.yd1{bottom:489.150000px;}
.y11a{bottom:490.275000px;}
.yb7{bottom:491.775000px;}
.yf4{bottom:492.150000px;}
.y15d{bottom:492.900000px;}
.y95{bottom:495.525000px;}
.y4d{bottom:497.025000px;}
.y71{bottom:499.650000px;}
.y13c{bottom:507.150000px;}
.y119{bottom:508.275000px;}
.yb6{bottom:512.025000px;}
.y17a{bottom:513.150000px;}
.y15c{bottom:525.900000px;}
.y118{bottom:526.650000px;}
.yf3{bottom:527.775000px;}
.y4c{bottom:530.025000px;}
.y70{bottom:533.025000px;}
.yb5{bottom:533.400000px;}
.y179{bottom:534.525000px;}
.y93{bottom:538.650000px;}
.y13b{bottom:540.150000px;}
.y196{bottom:540.525000px;}
.y117{bottom:545.025000px;}
.ycd{bottom:553.650000px;}
.y6f{bottom:554.400000px;}
.yb4{bottom:555.150000px;}
.y178{bottom:555.525000px;}
.y15b{bottom:559.275000px;}
.yf2{bottom:560.820000px;}
.y13a{bottom:561.570000px;}
.y4b{bottom:563.445000px;}
.y1e{bottom:572.820000px;}
.y195{bottom:573.945000px;}
.y6e{bottom:575.445000px;}
.yb3{bottom:576.570000px;}
.y177{bottom:576.945000px;}
.y92{bottom:581.820000px;}
.y139{bottom:582.570000px;}
.y4a{bottom:584.445000px;}
.y1d{bottom:587.820000px;}
.y15a{bottom:592.320000px;}
.yf1{bottom:594.195000px;}
.y6d{bottom:596.820000px;}
.y176{bottom:597.945000px;}
.yb2{bottom:598.320000px;}
.y116{bottom:600.195000px;}
.y91{bottom:605.070000px;}
.y49{bottom:605.820000px;}
.y194{bottom:606.945000px;}
.y1c{bottom:609.945000px;}
.yf0{bottom:615.570000px;}
.y138{bottom:615.945000px;}
.y6c{bottom:617.820000px;}
.y115{bottom:618.195000px;}
.yb1{bottom:620.070000px;}
.y159{bottom:625.695000px;}
.y90{bottom:628.320000px;}
.y193{bottom:628.695000px;}
.y1b{bottom:631.695000px;}
.y48{bottom:638.820000px;}
.y6b{bottom:639.195000px;}
.yb0{bottom:641.445000px;}
.y158{bottom:646.695000px;}
.yef{bottom:648.570000px;}
.y137{bottom:648.945000px;}
.y114{bottom:651.570000px;}
.y47{bottom:660.195000px;}
.ycb{bottom:660.570000px;}
.y192{bottom:662.445000px;}
.yaf{bottom:663.195000px;}
.y175{bottom:666.945000px;}
.y157{bottom:668.070000px;}
.yee{bottom:669.945000px;}
.y136{bottom:670.320000px;}
.y8e{bottom:671.445000px;}
.y1a{bottom:672.570000px;}
.y113{bottom:672.945000px;}
.y46{bottom:681.570000px;}
.y191{bottom:683.820000px;}
.yae{bottom:684.570000px;}
.y18{bottom:687.570000px;}
.y174{bottom:688.350000px;}
.y135{bottom:691.350000px;}
.y112{bottom:692.100000px;}
.y156{bottom:701.475000px;}
.y6a{bottom:702.600000px;}
.yed{bottom:702.975000px;}
.yad{bottom:706.350000px;}
.y17{bottom:709.725000px;}
.y111{bottom:710.475000px;}
.y8d{bottom:714.600000px;}
.y45{bottom:716.100000px;}
.y190{bottom:717.975000px;}
.y134{bottom:721.725000px;}
.y173{bottom:722.850000px;}
.yac{bottom:727.725000px;}
.y110{bottom:728.850000px;}
.y16{bottom:731.475000px;}
.y69{bottom:732.975000px;}
.yec{bottom:736.350000px;}
.y18f{bottom:739.350000px;}
.y10f{bottom:746.850000px;}
.yab{bottom:749.475000px;}
.y15{bottom:753.600000px;}
.y172{bottom:756.975000px;}
.y8c{bottom:757.725000px;}
.y133{bottom:760.350000px;}
.y18e{bottom:760.725000px;}
.y10e{bottom:765.225000px;}
.yc8{bottom:767.100000px;}
.yeb{bottom:770.475000px;}
.y68{bottom:771.600000px;}
.yaa{bottom:772.725000px;}
.y155{bottom:774.600000px;}
.y44{bottom:777.975000px;}
.y10d{bottom:783.600000px;}
.y171{bottom:790.725000px;}
.yea{bottom:791.850000px;}
.y3e{bottom:792.225000px;}
.y67{bottom:792.975000px;}
.y132{bottom:793.725000px;}
.y14{bottom:794.475000px;}
.ya9{bottom:795.975000px;}
.y10c{bottom:801.975000px;}
.y154{bottom:807.600000px;}
.y13{bottom:809.475000px;}
.y170{bottom:812.475000px;}
.y66{bottom:813.975000px;}
.y131{bottom:814.725000px;}
.y18d{bottom:816.225000px;}
.ya8{bottom:818.895000px;}
.y10b{bottom:820.395000px;}
.ye9{bottom:821.895000px;}
.y8a{bottom:822.255000px;}
.y12{bottom:831.630000px;}
.y10a{bottom:838.770000px;}
.ya7{bottom:839.880000px;}
.y153{bottom:841.005000px;}
.y130{bottom:844.755000px;}
.y16f{bottom:846.270000px;}
.y65{bottom:847.380000px;}
.y18c{bottom:850.005000px;}
.y11{bottom:853.380000px;}
.ya4{bottom:854.880000px;}
.ye8{bottom:860.505000px;}
.y152{bottom:862.005000px;}
.y89{bottom:865.380000px;}
.y16e{bottom:867.630000px;}
.y18b{bottom:871.380000px;}
.y109{bottom:871.755000px;}
.yf{bottom:875.505000px;}
.y64{bottom:880.380000px;}
.ye7{bottom:881.880000px;}
.y151{bottom:883.380000px;}
.y12f{bottom:883.755000px;}
.y108{bottom:893.130000px;}
.y1a1{bottom:895.005000px;}
.yc5{bottom:895.395000px;}
.ye{bottom:897.255000px;}
.y18a{bottom:901.380000px;}
.y63{bottom:901.755000px;}
.ye6{bottom:902.880000px;}
.y150{bottom:904.380000px;}
.y12e{bottom:905.130000px;}
.y3d{bottom:908.130000px;}
.y85{bottom:908.520000px;}
.yc{bottom:919.380000px;}
.y62{bottom:923.130000px;}
.ye5{bottom:924.255000px;}
.y14f{bottom:925.755000px;}
.y107{bottom:927.255000px;}
.y16d{bottom:935.130000px;}
.y1a0{bottom:938.520000px;}
.y12d{bottom:939.255000px;}
.y189{bottom:940.005000px;}
.y3c{bottom:941.505000px;}
.ya{bottom:941.520000px;}
.y14e{bottom:947.175000px;}
.y61{bottom:956.175000px;}
.ye4{bottom:957.675000px;}
.yc4{bottom:959.925000px;}
.y12c{bottom:960.675000px;}
.ya3{bottom:961.800000px;}
.y3b{bottom:962.550000px;}
.y188{bottom:973.425000px;}
.ye3{bottom:978.675000px;}
.y14d{bottom:980.175000px;}
.y3a{bottom:983.925000px;}
.y16c{bottom:986.175000px;}
.y60{bottom:989.550000px;}
.y84{bottom:991.800000px;}
.y12b{bottom:994.800000px;}
.y106{bottom:995.550000px;}
.ye2{bottom:1000.050000px;}
.y14c{bottom:1001.550000px;}
.yc2{bottom:1003.050000px;}
.y9{bottom:1008.675000px;}
.y5f{bottom:1010.550000px;}
.y12a{bottom:1016.175000px;}
.y39{bottom:1016.925000px;}
.ye1{bottom:1021.050000px;}
.y14b{bottom:1022.550000px;}
.y83{bottom:1025.175000px;}
.ya2{bottom:1026.300000px;}
.y8{bottom:1037.925000px;}
.ye0{bottom:1042.425000px;}
.y5e{bottom:1043.925000px;}
.y82{bottom:1046.175000px;}
.y38{bottom:1050.300000px;}
.y105{bottom:1051.425000px;}
.y14a{bottom:1064.925000px;}
.y19e{bottom:1067.175000px;}
.y81{bottom:1067.550000px;}
.ydf{bottom:1075.455000px;}
.y5d{bottom:1076.955000px;}
.y16b{bottom:1079.580000px;}
.y37{bottom:1083.330000px;}
.y129{bottom:1084.455000px;}
.y104{bottom:1085.205000px;}
.y149{bottom:1086.330000px;}
.yc1{bottom:1088.580000px;}
.ya1{bottom:1090.455000px;}
.y5c{bottom:1098.330000px;}
.y80{bottom:1099.080000px;}
.y16a{bottom:1100.955000px;}
.y187{bottom:1105.830000px;}
.y103{bottom:1106.580000px;}
.y36{bottom:1116.705000px;}
.y128{bottom:1118.580000px;}
.y5b{bottom:1119.330000px;}
.y35{bottom:1131.705000px;}
.y169{bottom:1132.455000px;}
.y127{bottom:1139.955000px;}
.y5a{bottom:1140.705000px;}
.y4{bottom:1177.455000px;}
.y1{bottom:1191.705000px;}
.h2{height:2.592773px;}
.h10{height:2.600098px;}
.h1{height:18.037500px;}
.h8{height:21.000000px;}
.hd{height:21.037500px;}
.ha{height:21.360000px;}
.h7{height:21.375000px;}
.h9{height:21.412500px;}
.h4{height:22.500000px;}
.he{height:22.537500px;}
.h15{height:33.000000px;}
.h19{height:33.037500px;}
.h16{height:33.375000px;}
.h17{height:33.412500px;}
.h1b{height:42.375000px;}
.h1d{height:42.412500px;}
.h1e{height:42.750000px;}
.h6{height:47.647500px;}
.h5{height:51.796875px;}
.hc{height:51.855469px;}
.h3{height:52.001953px;}
.h18{height:54.375000px;}
.h14{height:54.412500px;}
.h2b{height:57.202148px;}
.h26{height:61.670545px;}
.h2d{height:63.375000px;}
.h1f{height:63.412500px;}
.h21{height:63.750000px;}
.h1a{height:63.772500px;}
.h1c{height:63.787500px;}
.h23{height:65.645508px;}
.h2a{height:67.837600px;}
.h24{height:84.787500px;}
.hb{height:85.125000px;}
.h20{height:85.162500px;}
.h13{height:86.338763px;}
.hf{height:97.162500px;}
.h12{height:98.672872px;}
.h2c{height:104.003906px;}
.h27{height:105.787500px;}
.h22{height:106.162500px;}
.h11{height:124.921875px;}
.h25{height:127.537500px;}
.h29{height:148.537500px;}
.h28{height:190.950000px;}
.h0{height:1263.000000px;}
.w20{width:70.500000px;}
.w1f{width:70.537500px;}
.w23{width:75.787500px;}
.w1e{width:77.287500px;}
.w12{width:79.912500px;}
.w22{width:88.537500px;}
.w19{width:90.412500px;}
.w1b{width:98.287500px;}
.w13{width:100.537500px;}
.w1a{width:106.912500px;}
.w1c{width:112.200000px;}
.wf{width:150.075000px;}
.wd{width:208.995000px;}
.w9{width:210.480000px;}
.wb{width:211.620000px;}
.w21{width:219.825000px;}
.w7{width:222.120000px;}
.w24{width:223.980000px;}
.w6{width:225.450000px;}
.w5{width:225.495000px;}
.w25{width:228.075000px;}
.w10{width:240.105000px;}
.w14{width:256.995000px;}
.w1d{width:275.745000px;}
.w11{width:283.995000px;}
.w15{width:290.025000px;}
.w17{width:316.275000px;}
.w18{width:321.150000px;}
.w2{width:327.150000px;}
.w3{width:350.025000px;}
.w16{width:360.900000px;}
.w26{width:450.945000px;}
.w8{width:452.820000px;}
.wc{width:463.320000px;}
.wa{width:464.445000px;}
.we{width:465.945000px;}
.w4{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.250000px;}
.x22{left:104.670000px;}
.x1{left:108.037500px;}
.x1b{left:111.082500px;}
.x1c{left:135.074987px;}
.x21{left:140.324987px;}
.x13{left:162.074987px;}
.xe{left:189.450000px;}
.x20{left:216.074987px;}
.x6{left:226.230000px;}
.xc{left:259.620000px;}
.xf{left:290.745000px;}
.xb{left:318.525000px;}
.x9{left:320.025000px;}
.xa{left:321.150000px;}
.x8{left:331.650000px;}
.x4{left:333.525000px;}
.x11{left:341.407500px;}
.x14{left:430.695000px;}
.x3{left:435.195000px;}
.x12{left:468.945000px;}
.xd{left:500.475000px;}
.x15{left:521.850000px;}
.x1d{left:539.100000px;}
.x10{left:548.475000px;}
.x5{left:558.975000px;}
.x23{left:562.350000px;}
.x7{left:588.269987px;}
.x18{left:608.145000px;}
.x1e{left:628.020000px;}
.x16{left:629.520000px;}
.x19{left:685.800000px;}
.x1f{left:704.550000px;}
.x17{left:728.550000px;}
.x1a{left:757.095000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.522667pt;}
.ls0{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.554667pt;}
.ls15{letter-spacing:0.586667pt;}
.ls6{letter-spacing:0.746667pt;}
.ls4{letter-spacing:0.853333pt;}
.lsf{letter-spacing:1.333333pt;}
.ls9{letter-spacing:8.576000pt;}
.lse{letter-spacing:18.506667pt;}
.ls8{letter-spacing:18.944000pt;}
.ls7{letter-spacing:27.813333pt;}
.ls13{letter-spacing:45.024000pt;}
.ls14{letter-spacing:46.613333pt;}
.ls11{letter-spacing:49.173333pt;}
.ls12{letter-spacing:53.024000pt;}
.ls10{letter-spacing:57.173333pt;}
.lsb{letter-spacing:62.506667pt;}
.wsb{word-spacing:-58.666667pt;}
.wsa{word-spacing:-53.333333pt;}
.ws6{word-spacing:-20.586667pt;}
.ws7{word-spacing:-16.469333pt;}
.ws8{word-spacing:-15.157333pt;}
.ws2{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.573333pt;}
.wse{word-spacing:-11.413333pt;}
.ws0{word-spacing:-10.826667pt;}
.ws9{word-spacing:-10.506667pt;}
.ws3{word-spacing:-10.346667pt;}
.ws1{word-spacing:-10.240000pt;}
.wsc{word-spacing:-0.058667pt;}
.wsd{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-6.400000pt;}
._5{margin-left:-4.800000pt;}
._4{margin-left:-3.893333pt;}
._1{margin-left:-2.720000pt;}
._0{margin-left:-0.960000pt;}
._2{width:1.386667pt;}
._3{width:2.320000pt;}
._7{width:3.653333pt;}
._c{width:5.333333pt;}
._d{width:6.320000pt;}
._8{width:9.066667pt;}
._10{width:10.069333pt;}
._9{width:13.653333pt;}
._a{width:16.000000pt;}
._f{width:16.906667pt;}
._e{width:17.866667pt;}
._11{width:24.544000pt;}
._12{width:26.208000pt;}
._b{width:34.026667pt;}
.fs0{font-size:2.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.666667pt;}
.yc7{bottom:5.986667pt;}
.y10{bottom:6.000000pt;}
.y8b{bottom:6.013333pt;}
.yd0{bottom:6.040000pt;}
.y88{bottom:6.320000pt;}
.yde{bottom:6.326667pt;}
.yd{bottom:6.333333pt;}
.y19{bottom:6.360000pt;}
.y9d{bottom:6.373333pt;}
.y28{bottom:6.653333pt;}
.y2c{bottom:6.666667pt;}
.y34{bottom:7.000000pt;}
.y32{bottom:7.013333pt;}
.y6{bottom:7.333333pt;}
.y31{bottom:7.346667pt;}
.y19f{bottom:7.360000pt;}
.y2{bottom:16.040000pt;}
.y75{bottom:16.666667pt;}
.y7e{bottom:16.673333pt;}
.y43{bottom:17.000000pt;}
.y78{bottom:17.026667pt;}
.y3f{bottom:24.360000pt;}
.y87{bottom:24.986667pt;}
.y22{bottom:25.000000pt;}
.yc0{bottom:25.006667pt;}
.y8f{bottom:25.026667pt;}
.ydd{bottom:25.033333pt;}
.y94{bottom:25.040000pt;}
.y97{bottom:25.333333pt;}
.y9c{bottom:25.373333pt;}
.yb{bottom:29.693333pt;}
.y7c{bottom:35.666667pt;}
.y42{bottom:35.693333pt;}
.yc3{bottom:43.666667pt;}
.y99{bottom:43.693333pt;}
.ya0{bottom:43.706667pt;}
.yc6{bottom:43.986667pt;}
.y19d{bottom:43.993333pt;}
.y21{bottom:44.000000pt;}
.y86{bottom:44.026667pt;}
.ydc{bottom:44.033333pt;}
.ycf{bottom:44.040000pt;}
.y7{bottom:50.700000pt;}
.y41{bottom:54.693333pt;}
.ya6{bottom:62.666667pt;}
.yba{bottom:62.693333pt;}
.ydb{bottom:62.700000pt;}
.yce{bottom:62.706667pt;}
.y20{bottom:63.000000pt;}
.yca{bottom:63.026667pt;}
.y9b{bottom:63.040000pt;}
.y5{bottom:63.366667pt;}
.y40{bottom:73.693333pt;}
.ycc{bottom:81.360000pt;}
.yda{bottom:81.700000pt;}
.ya5{bottom:81.706667pt;}
.y19c{bottom:100.033333pt;}
.yc9{bottom:100.693333pt;}
.yd9{bottom:100.700000pt;}
.yd6{bottom:100.706667pt;}
.y59{bottom:102.366667pt;}
.y33{bottom:114.033333pt;}
.ybf{bottom:114.700000pt;}
.y7f{bottom:116.033333pt;}
.y186{bottom:117.700000pt;}
.yd8{bottom:119.366667pt;}
.yd5{bottom:119.400000pt;}
.y102{bottom:119.700000pt;}
.y7d{bottom:129.366667pt;}
.y148{bottom:130.033333pt;}
.yd7{bottom:131.700000pt;}
.y58{bottom:132.033333pt;}
.y126{bottom:132.366667pt;}
.y30{bottom:134.693333pt;}
.y185{bottom:136.706667pt;}
.y101{bottom:138.360000pt;}
.yd4{bottom:138.400000pt;}
.y147{bottom:148.706667pt;}
.y57{bottom:151.040000pt;}
.y125{bottom:151.373333pt;}
.ybe{bottom:153.026667pt;}
.yd3{bottom:157.066667pt;}
.y100{bottom:157.400000pt;}
.y7b{bottom:159.400000pt;}
.y168{bottom:166.400000pt;}
.y184{bottom:167.066667pt;}
.y56{bottom:169.733333pt;}
.y2f{bottom:172.400000pt;}
.y146{bottom:177.066667pt;}
.y124{bottom:181.733333pt;}
.y183{bottom:185.733333pt;}
.yff{bottom:187.066667pt;}
.ybd{bottom:191.400000pt;}
.y9f{bottom:191.733333pt;}
.y19b{bottom:195.066667pt;}
.y167{bottom:196.066667pt;}
.y55{bottom:199.400000pt;}
.y123{bottom:200.733333pt;}
.y2e{bottom:202.066667pt;}
.y7a{bottom:208.400000pt;}
.y182{bottom:212.733333pt;}
.y145{bottom:213.733333pt;}
.y2d{bottom:215.400000pt;}
.yfe{bottom:217.400000pt;}
.y122{bottom:219.733333pt;}
.y166{bottom:225.733333pt;}
.y54{bottom:227.400000pt;}
.y9e{bottom:230.066667pt;}
.y144{bottom:232.733333pt;}
.y2b{bottom:236.066667pt;}
.yfd{bottom:236.400000pt;}
.y79{bottom:238.733333pt;}
.y165{bottom:244.400000pt;}
.y181{bottom:247.400000pt;}
.ybc{bottom:248.733333pt;}
.y121{bottom:250.066667pt;}
.y143{bottom:251.400000pt;}
.y2a{bottom:256.733333pt;}
.y164{bottom:263.400000pt;}
.yd2{bottom:264.400000pt;}
.yfc{bottom:266.400000pt;}
.y9a{bottom:268.400000pt;}
.y77{bottom:268.733333pt;}
.y142{bottom:270.426667pt;}
.y53{bottom:270.760000pt;}
.y19a{bottom:271.106667pt;}
.y180{bottom:274.773333pt;}
.y29{bottom:276.106667pt;}
.y120{bottom:280.440000pt;}
.yfb{bottom:285.760000pt;}
.ybb{bottom:287.106667pt;}
.y141{bottom:289.440000pt;}
.y199{bottom:291.773333pt;}
.y163{bottom:292.773333pt;}
.y27{bottom:296.773333pt;}
.y11f{bottom:297.760000pt;}
.y76{bottom:299.106667pt;}
.y140{bottom:308.106667pt;}
.y17f{bottom:309.426667pt;}
.yfa{bottom:315.760000pt;}
.y26{bottom:317.440000pt;}
.y162{bottom:322.440000pt;}
.yb9{bottom:325.440000pt;}
.y52{bottom:326.106667pt;}
.y13f{bottom:327.093333pt;}
.y17e{bottom:328.440000pt;}
.y74{bottom:329.440000pt;}
.y11e{bottom:333.760000pt;}
.yf9{bottom:334.773333pt;}
.y25{bottom:337.106667pt;}
.y161{bottom:341.106667pt;}
.y98{bottom:344.773333pt;}
.y198{bottom:349.106667pt;}
.y11d{bottom:351.426667pt;}
.y51{bottom:355.440000pt;}
.y13e{bottom:357.773333pt;}
.y17d{bottom:358.440000pt;}
.y73{bottom:359.440000pt;}
.yf8{bottom:365.106667pt;}
.y160{bottom:370.773333pt;}
.y24{bottom:373.440000pt;}
.y50{bottom:374.440000pt;}
.y17c{bottom:377.773333pt;}
.y11c{bottom:383.466667pt;}
.yf7{bottom:384.133333pt;}
.y197{bottom:387.800000pt;}
.y4f{bottom:393.466667pt;}
.y13d{bottom:395.466667pt;}
.y15f{bottom:400.466667pt;}
.yf6{bottom:401.466667pt;}
.y96{bottom:401.800000pt;}
.y11b{bottom:402.466667pt;}
.y23{bottom:402.800000pt;}
.y17b{bottom:407.800000pt;}
.y1f{bottom:416.133333pt;}
.yb8{bottom:418.466667pt;}
.y15e{bottom:419.133333pt;}
.yf5{bottom:419.466667pt;}
.y4e{bottom:422.800000pt;}
.y72{bottom:425.466667pt;}
.yd1{bottom:434.800000pt;}
.y11a{bottom:435.800000pt;}
.yb7{bottom:437.133333pt;}
.yf4{bottom:437.466667pt;}
.y15d{bottom:438.133333pt;}
.y95{bottom:440.466667pt;}
.y4d{bottom:441.800000pt;}
.y71{bottom:444.133333pt;}
.y13c{bottom:450.800000pt;}
.y119{bottom:451.800000pt;}
.yb6{bottom:455.133333pt;}
.y17a{bottom:456.133333pt;}
.y15c{bottom:467.466667pt;}
.y118{bottom:468.133333pt;}
.yf3{bottom:469.133333pt;}
.y4c{bottom:471.133333pt;}
.y70{bottom:473.800000pt;}
.yb5{bottom:474.133333pt;}
.y179{bottom:475.133333pt;}
.y93{bottom:478.800000pt;}
.y13b{bottom:480.133333pt;}
.y196{bottom:480.466667pt;}
.y117{bottom:484.466667pt;}
.ycd{bottom:492.133333pt;}
.y6f{bottom:492.800000pt;}
.yb4{bottom:493.466667pt;}
.y178{bottom:493.800000pt;}
.y15b{bottom:497.133333pt;}
.yf2{bottom:498.506667pt;}
.y13a{bottom:499.173333pt;}
.y4b{bottom:500.840000pt;}
.y1e{bottom:509.173333pt;}
.y195{bottom:510.173333pt;}
.y6e{bottom:511.506667pt;}
.yb3{bottom:512.506667pt;}
.y177{bottom:512.840000pt;}
.y92{bottom:517.173333pt;}
.y139{bottom:517.840000pt;}
.y4a{bottom:519.506667pt;}
.y1d{bottom:522.506667pt;}
.y15a{bottom:526.506667pt;}
.yf1{bottom:528.173333pt;}
.y6d{bottom:530.506667pt;}
.y176{bottom:531.506667pt;}
.yb2{bottom:531.840000pt;}
.y116{bottom:533.506667pt;}
.y91{bottom:537.840000pt;}
.y49{bottom:538.506667pt;}
.y194{bottom:539.506667pt;}
.y1c{bottom:542.173333pt;}
.yf0{bottom:547.173333pt;}
.y138{bottom:547.506667pt;}
.y6c{bottom:549.173333pt;}
.y115{bottom:549.506667pt;}
.yb1{bottom:551.173333pt;}
.y159{bottom:556.173333pt;}
.y90{bottom:558.506667pt;}
.y193{bottom:558.840000pt;}
.y1b{bottom:561.506667pt;}
.y48{bottom:567.840000pt;}
.y6b{bottom:568.173333pt;}
.yb0{bottom:570.173333pt;}
.y158{bottom:574.840000pt;}
.yef{bottom:576.506667pt;}
.y137{bottom:576.840000pt;}
.y114{bottom:579.173333pt;}
.y47{bottom:586.840000pt;}
.ycb{bottom:587.173333pt;}
.y192{bottom:588.840000pt;}
.yaf{bottom:589.506667pt;}
.y175{bottom:592.840000pt;}
.y157{bottom:593.840000pt;}
.yee{bottom:595.506667pt;}
.y136{bottom:595.840000pt;}
.y8e{bottom:596.840000pt;}
.y1a{bottom:597.840000pt;}
.y113{bottom:598.173333pt;}
.y46{bottom:605.840000pt;}
.y191{bottom:607.840000pt;}
.yae{bottom:608.506667pt;}
.y18{bottom:611.173333pt;}
.y174{bottom:611.866667pt;}
.y135{bottom:614.533333pt;}
.y112{bottom:615.200000pt;}
.y156{bottom:623.533333pt;}
.y6a{bottom:624.533333pt;}
.yed{bottom:624.866667pt;}
.yad{bottom:627.866667pt;}
.y17{bottom:630.866667pt;}
.y111{bottom:631.533333pt;}
.y8d{bottom:635.200000pt;}
.y45{bottom:636.533333pt;}
.y190{bottom:638.200000pt;}
.y134{bottom:641.533333pt;}
.y173{bottom:642.533333pt;}
.yac{bottom:646.866667pt;}
.y110{bottom:647.866667pt;}
.y16{bottom:650.200000pt;}
.y69{bottom:651.533333pt;}
.yec{bottom:654.533333pt;}
.y18f{bottom:657.200000pt;}
.y10f{bottom:663.866667pt;}
.yab{bottom:666.200000pt;}
.y15{bottom:669.866667pt;}
.y172{bottom:672.866667pt;}
.y8c{bottom:673.533333pt;}
.y133{bottom:675.866667pt;}
.y18e{bottom:676.200000pt;}
.y10e{bottom:680.200000pt;}
.yc8{bottom:681.866667pt;}
.yeb{bottom:684.866667pt;}
.y68{bottom:685.866667pt;}
.yaa{bottom:686.866667pt;}
.y155{bottom:688.533333pt;}
.y44{bottom:691.533333pt;}
.y10d{bottom:696.533333pt;}
.y171{bottom:702.866667pt;}
.yea{bottom:703.866667pt;}
.y3e{bottom:704.200000pt;}
.y67{bottom:704.866667pt;}
.y132{bottom:705.533333pt;}
.y14{bottom:706.200000pt;}
.ya9{bottom:707.533333pt;}
.y10c{bottom:712.866667pt;}
.y154{bottom:717.866667pt;}
.y13{bottom:719.533333pt;}
.y170{bottom:722.200000pt;}
.y66{bottom:723.533333pt;}
.y131{bottom:724.200000pt;}
.y18d{bottom:725.533333pt;}
.ya8{bottom:727.906667pt;}
.y10b{bottom:729.240000pt;}
.ye9{bottom:730.573333pt;}
.y8a{bottom:730.893333pt;}
.y12{bottom:739.226667pt;}
.y10a{bottom:745.573333pt;}
.ya7{bottom:746.560000pt;}
.y153{bottom:747.560000pt;}
.y130{bottom:750.893333pt;}
.y16f{bottom:752.240000pt;}
.y65{bottom:753.226667pt;}
.y18c{bottom:755.560000pt;}
.y11{bottom:758.560000pt;}
.ya4{bottom:759.893333pt;}
.ye8{bottom:764.893333pt;}
.y152{bottom:766.226667pt;}
.y89{bottom:769.226667pt;}
.y16e{bottom:771.226667pt;}
.y18b{bottom:774.560000pt;}
.y109{bottom:774.893333pt;}
.yf{bottom:778.226667pt;}
.y64{bottom:782.560000pt;}
.ye7{bottom:783.893333pt;}
.y151{bottom:785.226667pt;}
.y12f{bottom:785.560000pt;}
.y108{bottom:793.893333pt;}
.y1a1{bottom:795.560000pt;}
.yc5{bottom:795.906667pt;}
.ye{bottom:797.560000pt;}
.y18a{bottom:801.226667pt;}
.y63{bottom:801.560000pt;}
.ye6{bottom:802.560000pt;}
.y150{bottom:803.893333pt;}
.y12e{bottom:804.560000pt;}
.y3d{bottom:807.226667pt;}
.y85{bottom:807.573333pt;}
.yc{bottom:817.226667pt;}
.y62{bottom:820.560000pt;}
.ye5{bottom:821.560000pt;}
.y14f{bottom:822.893333pt;}
.y107{bottom:824.226667pt;}
.y16d{bottom:831.226667pt;}
.y1a0{bottom:834.240000pt;}
.y12d{bottom:834.893333pt;}
.y189{bottom:835.560000pt;}
.y3c{bottom:836.893333pt;}
.ya{bottom:836.906667pt;}
.y14e{bottom:841.933333pt;}
.y61{bottom:849.933333pt;}
.ye4{bottom:851.266667pt;}
.yc4{bottom:853.266667pt;}
.y12c{bottom:853.933333pt;}
.ya3{bottom:854.933333pt;}
.y3b{bottom:855.600000pt;}
.y188{bottom:865.266667pt;}
.ye3{bottom:869.933333pt;}
.y14d{bottom:871.266667pt;}
.y3a{bottom:874.600000pt;}
.y16c{bottom:876.600000pt;}
.y60{bottom:879.600000pt;}
.y84{bottom:881.600000pt;}
.y12b{bottom:884.266667pt;}
.y106{bottom:884.933333pt;}
.ye2{bottom:888.933333pt;}
.y14c{bottom:890.266667pt;}
.yc2{bottom:891.600000pt;}
.y9{bottom:896.600000pt;}
.y5f{bottom:898.266667pt;}
.y12a{bottom:903.266667pt;}
.y39{bottom:903.933333pt;}
.ye1{bottom:907.600000pt;}
.y14b{bottom:908.933333pt;}
.y83{bottom:911.266667pt;}
.ya2{bottom:912.266667pt;}
.y8{bottom:922.600000pt;}
.ye0{bottom:926.600000pt;}
.y5e{bottom:927.933333pt;}
.y82{bottom:929.933333pt;}
.y38{bottom:933.600000pt;}
.y105{bottom:934.600000pt;}
.y14a{bottom:946.600000pt;}
.y19e{bottom:948.600000pt;}
.y81{bottom:948.933333pt;}
.ydf{bottom:955.960000pt;}
.y5d{bottom:957.293333pt;}
.y16b{bottom:959.626667pt;}
.y37{bottom:962.960000pt;}
.y129{bottom:963.960000pt;}
.y104{bottom:964.626667pt;}
.y149{bottom:965.626667pt;}
.yc1{bottom:967.626667pt;}
.ya1{bottom:969.293333pt;}
.y5c{bottom:976.293333pt;}
.y80{bottom:976.960000pt;}
.y16a{bottom:978.626667pt;}
.y187{bottom:982.960000pt;}
.y103{bottom:983.626667pt;}
.y36{bottom:992.626667pt;}
.y128{bottom:994.293333pt;}
.y5b{bottom:994.960000pt;}
.y35{bottom:1005.960000pt;}
.y169{bottom:1006.626667pt;}
.y127{bottom:1013.293333pt;}
.y5a{bottom:1013.960000pt;}
.y4{bottom:1046.626667pt;}
.y1{bottom:1059.293333pt;}
.h2{height:2.304688pt;}
.h10{height:2.311198pt;}
.h1{height:16.033333pt;}
.h8{height:18.666667pt;}
.hd{height:18.700000pt;}
.ha{height:18.986667pt;}
.h7{height:19.000000pt;}
.h9{height:19.033333pt;}
.h4{height:20.000000pt;}
.he{height:20.033333pt;}
.h15{height:29.333333pt;}
.h19{height:29.366667pt;}
.h16{height:29.666667pt;}
.h17{height:29.700000pt;}
.h1b{height:37.666667pt;}
.h1d{height:37.700000pt;}
.h1e{height:38.000000pt;}
.h6{height:42.353333pt;}
.h5{height:46.041667pt;}
.hc{height:46.093750pt;}
.h3{height:46.223958pt;}
.h18{height:48.333333pt;}
.h14{height:48.366667pt;}
.h2b{height:50.846354pt;}
.h26{height:54.818262pt;}
.h2d{height:56.333333pt;}
.h1f{height:56.366667pt;}
.h21{height:56.666667pt;}
.h1a{height:56.686667pt;}
.h1c{height:56.700000pt;}
.h23{height:58.351562pt;}
.h2a{height:60.300089pt;}
.h24{height:75.366667pt;}
.hb{height:75.666667pt;}
.h20{height:75.700000pt;}
.h13{height:76.745567pt;}
.hf{height:86.366667pt;}
.h12{height:87.709220pt;}
.h2c{height:92.447917pt;}
.h27{height:94.033333pt;}
.h22{height:94.366667pt;}
.h11{height:111.041667pt;}
.h25{height:113.366667pt;}
.h29{height:132.033333pt;}
.h28{height:169.733333pt;}
.h0{height:1122.666667pt;}
.w20{width:62.666667pt;}
.w1f{width:62.700000pt;}
.w23{width:67.366667pt;}
.w1e{width:68.700000pt;}
.w12{width:71.033333pt;}
.w22{width:78.700000pt;}
.w19{width:80.366667pt;}
.w1b{width:87.366667pt;}
.w13{width:89.366667pt;}
.w1a{width:95.033333pt;}
.w1c{width:99.733333pt;}
.wf{width:133.400000pt;}
.wd{width:185.773333pt;}
.w9{width:187.093333pt;}
.wb{width:188.106667pt;}
.w21{width:195.400000pt;}
.w7{width:197.440000pt;}
.w24{width:199.093333pt;}
.w6{width:200.400000pt;}
.w5{width:200.440000pt;}
.w25{width:202.733333pt;}
.w10{width:213.426667pt;}
.w14{width:228.440000pt;}
.w1d{width:245.106667pt;}
.w11{width:252.440000pt;}
.w15{width:257.800000pt;}
.w17{width:281.133333pt;}
.w18{width:285.466667pt;}
.w2{width:290.800000pt;}
.w3{width:311.133333pt;}
.w16{width:320.800000pt;}
.w26{width:400.840000pt;}
.w8{width:402.506667pt;}
.wc{width:411.840000pt;}
.wa{width:412.840000pt;}
.we{width:414.173333pt;}
.w4{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.333333pt;}
.x22{left:93.040000pt;}
.x1{left:96.033333pt;}
.x1b{left:98.740000pt;}
.x1c{left:120.066655pt;}
.x21{left:124.733322pt;}
.x13{left:144.066655pt;}
.xe{left:168.400000pt;}
.x20{left:192.066655pt;}
.x6{left:201.093333pt;}
.xc{left:230.773333pt;}
.xf{left:258.440000pt;}
.xb{left:283.133333pt;}
.x9{left:284.466667pt;}
.xa{left:285.466667pt;}
.x8{left:294.800000pt;}
.x4{left:296.466667pt;}
.x11{left:303.473333pt;}
.x14{left:382.840000pt;}
.x3{left:386.840000pt;}
.x12{left:416.840000pt;}
.xd{left:444.866667pt;}
.x15{left:463.866667pt;}
.x1d{left:479.200000pt;}
.x10{left:487.533333pt;}
.x5{left:496.866667pt;}
.x23{left:499.866667pt;}
.x7{left:522.906655pt;}
.x18{left:540.573333pt;}
.x1e{left:558.240000pt;}
.x16{left:559.573333pt;}
.x19{left:609.600000pt;}
.x1f{left:626.266667pt;}
.x17{left:647.600000pt;}
.x1a{left:672.973333pt;}
}




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