
    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_8b1fa54210e9349fe339cb47.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_3cf14e772eb7a8ac7e57aea4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_63f0eb85978637b4e32f1cb9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a84e59b7ab9c477175178613.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_14ddc3cb21cf5ae1b9ac820d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957031;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_918e682982284ddc29eee584.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_68d33cbab2297bf4fc4e4a9e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.957031;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_88bed61717d0ccacabecd3f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3cb426ce875f10dc118ed1c0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3e5a61e4ceb6c80f2071716e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.095703;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_6329545a0bd9b9b755016f80.woff2')format("woff");}.fff{font-family:fff;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls7{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.206000px;}
.lsb{letter-spacing:-1.068000px;}
.lse{letter-spacing:-0.966000px;}
.ls22{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.768000px;}
.lsf{letter-spacing:-0.732000px;}
.ls1f{letter-spacing:-0.612000px;}
.ls1c{letter-spacing:-0.596400px;}
.lsa{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.463800px;}
.ls20{letter-spacing:-0.457800px;}
.ls5{letter-spacing:-0.454800px;}
.ls9{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.322800px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.040320px;}
.ls19{letter-spacing:0.080640px;}
.ls18{letter-spacing:0.200640px;}
.ls8{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.305280px;}
.ls1e{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.429000px;}
.ls21{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.535680px;}
.ls0{letter-spacing:0.593280px;}
.ls10{letter-spacing:0.708000px;}
.ls11{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.900000px;}
.ls1a{letter-spacing:40.637280px;}
.ls1b{letter-spacing:55.186560px;}
.ls14{letter-spacing:63.838560px;}
.ls1d{letter-spacing:141.425280px;}
.ls2{letter-spacing:144.461280px;}
.ls12{letter-spacing:161.741280px;}
.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;}
}
.ws13{word-spacing:-60.480000px;}
.ws19{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.064000px;}
.ws16{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.488000px;}
.ws17{word-spacing:-16.102200px;}
.ws14{word-spacing:-15.963600px;}
.ws6{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.399240px;}
.ws11{word-spacing:-14.970240px;}
.ws12{word-spacing:-14.647440px;}
.ws1{word-spacing:-14.515440px;}
.ws2{word-spacing:-14.506440px;}
.ws3{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.074720px;}
.wse{word-spacing:-12.366720px;}
.ws4{word-spacing:-12.240000px;}
.wsd{word-spacing:-11.634720px;}
.wsa{word-spacing:-11.598720px;}
.wsc{word-spacing:-11.400720px;}
.ws9{word-spacing:-11.298720px;}
.wsb{word-spacing:-11.160720px;}
.ws15{word-spacing:-0.060480px;}
.ws10{word-spacing:0.000000px;}
._18{margin-left:-4.256640px;}
._3{margin-left:-2.931840px;}
._0{margin-left:-1.483200px;}
._1{width:1.112880px;}
._4{width:2.144400px;}
._b{width:4.105680px;}
._a{width:5.316480px;}
._e{width:7.058880px;}
._8{width:8.478720px;}
._7{width:9.590400px;}
._9{width:10.765920px;}
._2{width:12.068640px;}
._19{width:13.113360px;}
._13{width:14.153520px;}
._12{width:15.301440px;}
._1a{width:17.561520px;}
._14{width:18.648480px;}
._11{width:19.857600px;}
._c{width:21.329280px;}
._d{width:22.613760px;}
._15{width:24.203520px;}
._1b{width:29.093760px;}
._16{width:30.389760px;}
._17{width:31.560720px;}
._1f{width:33.543360px;}
._1e{width:39.214080px;}
._f{width:40.233600px;}
._10{width:41.558400px;}
._6{width:47.445120px;}
._5{width:49.348800px;}
._1d{width:71.238480px;}
._1c{width:72.743040px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(46,116,181);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs4{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:80.640000px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yb0{bottom:3.600000px;}
.ybb{bottom:3.645000px;}
.y4{bottom:4.320000px;}
.y2{bottom:5.040000px;}
.yb6{bottom:22.320000px;}
.yba{bottom:22.365000px;}
.yaf{bottom:22.680000px;}
.yd3{bottom:22.725000px;}
.ybe{bottom:37.794000px;}
.ybd{bottom:37.800000px;}
.yda{bottom:41.394000px;}
.yb5{bottom:41.400000px;}
.yb9{bottom:41.445000px;}
.yc4{bottom:41.760000px;}
.yd2{bottom:41.805000px;}
.yb8{bottom:56.925000px;}
.yd9{bottom:60.474000px;}
.yb4{bottom:60.480000px;}
.yca{bottom:60.525000px;}
.yc6{bottom:60.870000px;}
.yd8{bottom:75.999000px;}
.yd0{bottom:79.200000px;}
.yc3{bottom:79.560000px;}
.yb3{bottom:79.590000px;}
.yc9{bottom:79.605000px;}
.y3{bottom:82.116000px;}
.yc8{bottom:94.725000px;}
.yd5{bottom:95.070000px;}
.y6{bottom:97.596000px;}
.yce{bottom:98.280000px;}
.yb2{bottom:98.310000px;}
.yc2{bottom:98.685000px;}
.y94{bottom:110.556000px;}
.y136{bottom:111.276000px;}
.ycd{bottom:113.790000px;}
.yc1{bottom:114.165000px;}
.ydd{bottom:117.405000px;}
.y77{bottom:119.196000px;}
.y11c{bottom:120.636000px;}
.yd7{bottom:122.796000px;}
.y93{bottom:129.636000px;}
.ydc{bottom:136.485000px;}
.y56{bottom:138.276000px;}
.y2e{bottom:142.596000px;}
.y161{bottom:145.836000px;}
.y92{bottom:148.716000px;}
.ybc{bottom:157.710000px;}
.y55{bottom:160.230000px;}
.y76{bottom:160.590000px;}
.y2d{bottom:161.670000px;}
.y91{bottom:167.430000px;}
.yf9{bottom:167.790000px;}
.y160{bottom:174.270000px;}
.y11b{bottom:179.670000px;}
.y2c{bottom:180.750000px;}
.y54{bottom:181.830000px;}
.yf8{bottom:186.510000px;}
.yb7{bottom:196.590000px;}
.y11a{bottom:198.795000px;}
.yd6{bottom:199.515000px;}
.y2b{bottom:199.875000px;}
.y75{bottom:200.595000px;}
.y53{bottom:203.835000px;}
.yf7{bottom:205.635000px;}
.y90{bottom:207.435000px;}
.y135{bottom:209.955000px;}
.y119{bottom:217.875000px;}
.y15f{bottom:223.635000px;}
.yf6{bottom:224.715000px;}
.y149{bottom:225.435000px;}
.y52{bottom:225.795000px;}
.y118{bottom:236.955000px;}
.yd4{bottom:238.035000px;}
.y134{bottom:238.755000px;}
.y74{bottom:240.555000px;}
.y2a{bottom:241.995000px;}
.yf5{bottom:243.795000px;}
.y8f{bottom:247.395000px;}
.y15e{bottom:252.075000px;}
.y148{bottom:253.875000px;}
.yb1{bottom:254.235000px;}
.y117{bottom:255.675000px;}
.yf4{bottom:262.515000px;}
.y8e{bottom:266.475000px;}
.y133{bottom:267.195000px;}
.y51{bottom:268.635000px;}
.y73{bottom:280.515000px;}
.yf3{bottom:281.595000px;}
.y29{bottom:282.315000px;}
.y8d{bottom:285.555000px;}
.y50{bottom:290.235000px;}
.y116{bottom:295.635000px;}
.yf2{bottom:300.675000px;}
.y28{bottom:301.395000px;}
.y15d{bottom:301.755000px;}
.y8c{bottom:304.635000px;}
.y147{bottom:310.755000px;}
.y4f{bottom:312.195000px;}
.y72{bottom:320.475000px;}
.y8b{bottom:323.385000px;}
.y132{bottom:324.105000px;}
.y15c{bottom:330.225000px;}
.y4e{bottom:333.825000px;}
.y115{bottom:335.625000px;}
.yf1{bottom:340.305000px;}
.y27{bottom:341.385000px;}
.y131{bottom:352.545000px;}
.y4d{bottom:355.785000px;}
.y175{bottom:358.665000px;}
.y26{bottom:360.465000px;}
.y8a{bottom:363.345000px;}
.yae{bottom:368.745000px;}
.y114{bottom:375.585000px;}
.y4c{bottom:377.745000px;}
.y25{bottom:379.185000px;}
.y15b{bottom:379.545000px;}
.yf0{bottom:380.265000px;}
.y130{bottom:380.985000px;}
.y113{bottom:394.665000px;}
.y174{bottom:398.985000px;}
.y4b{bottom:399.345000px;}
.y71{bottom:403.305000px;}
.y146{bottom:409.785000px;}
.y112{bottom:413.745000px;}
.y24{bottom:419.145000px;}
.y173{bottom:420.225000px;}
.y89{bottom:422.385000px;}
.y70{bottom:425.265000px;}
.y15a{bottom:428.865000px;}
.yd1{bottom:429.225000px;}
.y12f{bottom:430.305000px;}
.yad{bottom:432.105000px;}
.y111{bottom:432.465000px;}
.y23{bottom:438.225000px;}
.yef{bottom:439.305000px;}
.y4a{bottom:442.185000px;}
.y6f{bottom:446.865000px;}
.y110{bottom:451.590000px;}
.yac{bottom:453.390000px;}
.y22{bottom:457.350000px;}
.y172{bottom:461.310000px;}
.y88{bottom:462.390000px;}
.y49{bottom:464.190000px;}
.y145{bottom:466.710000px;}
.y6e{bottom:468.870000px;}
.y21{bottom:476.430000px;}
.yee{bottom:479.310000px;}
.y12e{bottom:480.030000px;}
.y171{bottom:482.550000px;}
.y48{bottom:485.790000px;}
.ycf{bottom:487.230000px;}
.y6d{bottom:490.830000px;}
.y10f{bottom:491.550000px;}
.yab{bottom:494.790000px;}
.y20{bottom:495.150000px;}
.yed{bottom:498.390000px;}
.y87{bottom:503.070000px;}
.y47{bottom:507.750000px;}
.y12d{bottom:508.470000px;}
.y6c{bottom:512.430000px;}
.y1f{bottom:514.230000px;}
.y159{bottom:514.590000px;}
.yec{bottom:517.470000px;}
.y144{bottom:523.590000px;}
.y170{bottom:523.950000px;}
.y46{bottom:529.710000px;}
.y10e{bottom:531.510000px;}
.y1e{bottom:533.310000px;}
.y6b{bottom:534.390000px;}
.yaa{bottom:536.550000px;}
.y12c{bottom:536.910000px;}
.y158{bottom:543.030000px;}
.y16f{bottom:544.830000px;}
.y86{bottom:547.350000px;}
.y45{bottom:551.310000px;}
.y1d{bottom:552.030000px;}
.yeb{bottom:557.430000px;}
.y12b{bottom:565.350000px;}
.y10d{bottom:571.470000px;}
.y44{bottom:573.270000px;}
.y6a{bottom:577.260000px;}
.ya9{bottom:577.980000px;}
.y143{bottom:580.500000px;}
.y16e{bottom:586.260000px;}
.y10c{bottom:590.580000px;}
.y85{bottom:591.660000px;}
.y1c{bottom:592.020000px;}
.y12a{bottom:593.820000px;}
.y43{bottom:594.900000px;}
.ya8{bottom:597.060000px;}
.yea{bottom:597.420000px;}
.y157{bottom:599.940000px;}
.ycc{bottom:601.740000px;}
.y16d{bottom:607.500000px;}
.y10b{bottom:609.660000px;}
.y1b{bottom:611.100000px;}
.ya7{bottom:615.780000px;}
.ye9{bottom:616.860000px;}
.y69{bottom:620.100000px;}
.y129{bottom:622.260000px;}
.y10a{bottom:628.380000px;}
.y1a{bottom:630.180000px;}
.ya6{bottom:634.860000px;}
.y84{bottom:635.940000px;}
.y42{bottom:637.740000px;}
.y68{bottom:641.700000px;}
.y109{bottom:647.460000px;}
.y16c{bottom:648.540000px;}
.y19{bottom:649.260000px;}
.y128{bottom:650.700000px;}
.ya5{bottom:653.940000px;}
.ye8{bottom:657.180000px;}
.y41{bottom:659.700000px;}
.y67{bottom:663.660000px;}
.y18{bottom:667.980000px;}
.y16b{bottom:669.780000px;}
.ya4{bottom:672.660000px;}
.ye7{bottom:676.260000px;}
.y156{bottom:677.700000px;}
.y127{bottom:679.140000px;}
.y142{bottom:679.500000px;}
.y83{bottom:680.220000px;}
.y40{bottom:681.660000px;}
.y66{bottom:685.620000px;}
.y108{bottom:687.420000px;}
.ya3{bottom:691.740000px;}
.y3f{bottom:703.290000px;}
.y155{bottom:706.170000px;}
.y65{bottom:707.250000px;}
.y141{bottom:707.970000px;}
.y17{bottom:709.410000px;}
.y16a{bottom:711.210000px;}
.ycb{bottom:716.250000px;}
.y82{bottom:724.530000px;}
.y3e{bottom:725.250000px;}
.y107{bottom:727.410000px;}
.y126{bottom:728.490000px;}
.ya2{bottom:731.730000px;}
.y169{bottom:732.090000px;}
.y154{bottom:734.610000px;}
.y140{bottom:736.410000px;}
.y16{bottom:741.810000px;}
.y106{bottom:746.490000px;}
.y3d{bottom:746.850000px;}
.y64{bottom:750.450000px;}
.ya1{bottom:750.810000px;}
.y168{bottom:752.970000px;}
.ye6{bottom:756.210000px;}
.y15{bottom:762.330000px;}
.y153{bottom:763.050000px;}
.y13f{bottom:764.850000px;}
.y105{bottom:765.570000px;}
.y81{bottom:768.810000px;}
.ya0{bottom:769.890000px;}
.ye5{bottom:774.930000px;}
.y125{bottom:778.170000px;}
.y14{bottom:784.290000px;}
.y3c{bottom:787.890000px;}
.y9f{bottom:788.610000px;}
.y152{bottom:791.490000px;}
.y13e{bottom:793.290000px;}
.y63{bottom:794.010000px;}
.y167{bottom:794.370000px;}
.y104{bottom:805.530000px;}
.y124{bottom:806.610000px;}
.y9e{bottom:807.690000px;}
.yc7{bottom:812.010000px;}
.y80{bottom:813.090000px;}
.y166{bottom:815.250000px;}
.y13d{bottom:821.730000px;}
.y13{bottom:826.050000px;}
.y9d{bottom:826.815000px;}
.y3b{bottom:828.255000px;}
.ye4{bottom:831.855000px;}
.y123{bottom:835.095000px;}
.y62{bottom:837.255000px;}
.y151{bottom:841.215000px;}
.y103{bottom:845.175000px;}
.ye3{bottom:850.935000px;}
.y12{bottom:852.015000px;}
.y165{bottom:856.695000px;}
.y7f{bottom:857.415000px;}
.y61{bottom:858.855000px;}
.y102{bottom:864.255000px;}
.y3a{bottom:868.935000px;}
.y150{bottom:869.655000px;}
.ye2{bottom:870.015000px;}
.y13c{bottom:871.455000px;}
.y164{bottom:877.575000px;}
.y60{bottom:880.815000px;}
.y101{bottom:883.335000px;}
.y122{bottom:885.855000px;}
.ye1{bottom:889.095000px;}
.y14f{bottom:898.095000px;}
.y7e{bottom:901.335000px;}
.y5f{bottom:902.775000px;}
.yc5{bottom:907.455000px;}
.ye0{bottom:907.815000px;}
.y11{bottom:908.535000px;}
.y39{bottom:909.255000px;}
.y13b{bottom:920.775000px;}
.y100{bottom:923.295000px;}
.y121{bottom:926.175000px;}
.y14e{bottom:926.535000px;}
.ydf{bottom:926.895000px;}
.y9c{bottom:928.335000px;}
.yff{bottom:942.375000px;}
.y120{bottom:945.255000px;}
.y5e{bottom:945.615000px;}
.y9b{bottom:947.415000px;}
.y38{bottom:949.215000px;}
.y7d{bottom:953.205000px;}
.y163{bottom:956.805000px;}
.yfe{bottom:961.485000px;}
.y11f{bottom:964.365000px;}
.y9a{bottom:966.165000px;}
.yde{bottom:966.885000px;}
.y5d{bottom:967.245000px;}
.y37{bottom:968.325000px;}
.y10{bottom:969.045000px;}
.y14d{bottom:975.885000px;}
.y13a{bottom:977.685000px;}
.yf{bottom:980.205000px;}
.yc0{bottom:984.165000px;}
.y7c{bottom:984.525000px;}
.y99{bottom:985.245000px;}
.y36{bottom:987.405000px;}
.y5c{bottom:989.205000px;}
.ydb{bottom:1003.965000px;}
.y98{bottom:1004.325000px;}
.y139{bottom:1006.125000px;}
.ye{bottom:1006.485000px;}
.y5b{bottom:1010.805000px;}
.y7b{bottom:1015.485000px;}
.yfd{bottom:1017.285000px;}
.y97{bottom:1023.405000px;}
.y35{bottom:1027.365000px;}
.yd{bottom:1029.525000px;}
.y14c{bottom:1032.765000px;}
.y138{bottom:1034.565000px;}
.yfc{bottom:1037.085000px;}
.y11e{bottom:1042.125000px;}
.y34{bottom:1046.445000px;}
.yc{bottom:1051.485000px;}
.y5a{bottom:1053.645000px;}
.yfb{bottom:1056.885000px;}
.y11d{bottom:1061.205000px;}
.y96{bottom:1063.005000px;}
.y33{bottom:1065.165000px;}
.yb{bottom:1073.445000px;}
.y59{bottom:1075.605000px;}
.y7a{bottom:1077.405000px;}
.y32{bottom:1084.290000px;}
.y14b{bottom:1090.050000px;}
.ya{bottom:1090.770000px;}
.y137{bottom:1091.490000px;}
.y58{bottom:1097.610000px;}
.ybf{bottom:1099.050000px;}
.yfa{bottom:1101.210000px;}
.y95{bottom:1103.010000px;}
.y31{bottom:1103.370000px;}
.y9{bottom:1108.050000px;}
.y79{bottom:1108.770000px;}
.y162{bottom:1112.730000px;}
.y57{bottom:1119.210000px;}
.y30{bottom:1122.090000px;}
.y8{bottom:1125.330000px;}
.y78{bottom:1139.730000px;}
.y14a{bottom:1140.810000px;}
.y2f{bottom:1141.170000px;}
.y7{bottom:1142.610000px;}
.y1{bottom:1188.330000px;}
.y5{bottom:1206.000000px;}
.h4{height:18.000000px;}
.h1f{height:19.080000px;}
.h2{height:19.836000px;}
.ha{height:22.960547px;}
.h14{height:37.800000px;}
.h9{height:41.547656px;}
.hb{height:45.921094px;}
.h5{height:48.013594px;}
.hf{height:49.097812px;}
.h6{height:53.067656px;}
.h12{height:53.367188px;}
.h17{height:56.880000px;}
.h16{height:56.916000px;}
.he{height:58.121719px;}
.h20{height:58.283437px;}
.h13{height:59.771250px;}
.hd{height:61.192969px;}
.h10{height:63.070312px;}
.h11{height:63.175781px;}
.h21{height:63.351562px;}
.h8{height:65.884219px;}
.h3{height:67.824844px;}
.h7{height:73.722656px;}
.h19{height:75.996000px;}
.hc{height:85.518281px;}
.h1c{height:94.680000px;}
.h1a{height:94.716000px;}
.h1b{height:95.040000px;}
.h1d{height:95.076000px;}
.h15{height:113.796000px;}
.h18{height:114.156000px;}
.h1e{height:151.950000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:37.800000px;}
.wd{width:52.560000px;}
.wc{width:60.876000px;}
.wb{width:66.276000px;}
.wa{width:110.196000px;}
.we{width:132.912000px;}
.w7{width:135.036000px;}
.w6{width:139.392000px;}
.w3{width:142.632000px;}
.w8{width:197.355000px;}
.w9{width:205.635000px;}
.w2{width:558.930000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x5{left:4.680000px;}
.x19{left:7.920000px;}
.x18{left:9.360000px;}
.x17{left:11.880000px;}
.x1c{left:16.560000px;}
.x21{left:21.960000px;}
.x12{left:25.920000px;}
.x1f{left:27.720000px;}
.x15{left:33.480000px;}
.x13{left:36.000000px;}
.x10{left:45.399000px;}
.x3{left:104.796000px;}
.x6{left:106.235987px;}
.xb{left:128.195987px;}
.xe{left:133.235987px;}
.xf{left:160.274987px;}
.x1{left:167.115000px;}
.x1a{left:187.274987px;}
.x1b{left:214.274987px;}
.x1d{left:217.875000px;}
.x7{left:218.954987px;}
.xd{left:225.794987px;}
.x11{left:247.065000px;}
.xc{left:248.504987px;}
.xa{left:283.784987px;}
.x1e{left:284.865000px;}
.x20{left:346.470000px;}
.x9{left:350.069987px;}
.x14{left:382.830000px;}
.x8{left:386.069987px;}
.x22{left:399.750000px;}
.x23{left:446.579987px;}
.x16{left:580.890000px;}
.x4{left:755.565000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls7{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.072000pt;}
.lsb{letter-spacing:-0.949333pt;}
.lse{letter-spacing:-0.858667pt;}
.ls22{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.682667pt;}
.lsf{letter-spacing:-0.650667pt;}
.ls1f{letter-spacing:-0.544000pt;}
.ls1c{letter-spacing:-0.530133pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls20{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:-0.404267pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.286933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.035840pt;}
.ls19{letter-spacing:0.071680pt;}
.ls18{letter-spacing:0.178347pt;}
.ls8{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.271360pt;}
.ls1e{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.381333pt;}
.ls21{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.476160pt;}
.ls0{letter-spacing:0.527360pt;}
.ls10{letter-spacing:0.629333pt;}
.ls11{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:36.122027pt;}
.ls1b{letter-spacing:49.054720pt;}
.ls14{letter-spacing:56.745387pt;}
.ls1d{letter-spacing:125.711360pt;}
.ls2{letter-spacing:128.410027pt;}
.ls12{letter-spacing:143.770027pt;}
.ws13{word-spacing:-53.760000pt;}
.ws19{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.168000pt;}
.ws16{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.656000pt;}
.ws17{word-spacing:-14.313067pt;}
.ws14{word-spacing:-14.189867pt;}
.ws6{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.688213pt;}
.ws11{word-spacing:-13.306880pt;}
.ws12{word-spacing:-13.019947pt;}
.ws1{word-spacing:-12.902613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws3{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.621973pt;}
.wse{word-spacing:-10.992640pt;}
.ws4{word-spacing:-10.880000pt;}
.wsd{word-spacing:-10.341973pt;}
.wsa{word-spacing:-10.309973pt;}
.wsc{word-spacing:-10.133973pt;}
.ws9{word-spacing:-10.043307pt;}
.wsb{word-spacing:-9.920640pt;}
.ws15{word-spacing:-0.053760pt;}
.ws10{word-spacing:0.000000pt;}
._18{margin-left:-3.783680pt;}
._3{margin-left:-2.606080pt;}
._0{margin-left:-1.318400pt;}
._1{width:0.989227pt;}
._4{width:1.906133pt;}
._b{width:3.649493pt;}
._a{width:4.725760pt;}
._e{width:6.274560pt;}
._8{width:7.536640pt;}
._7{width:8.524800pt;}
._9{width:9.569707pt;}
._2{width:10.727680pt;}
._19{width:11.656320pt;}
._13{width:12.580907pt;}
._12{width:13.601280pt;}
._1a{width:15.610240pt;}
._14{width:16.576427pt;}
._11{width:17.651200pt;}
._c{width:18.959360pt;}
._d{width:20.101120pt;}
._15{width:21.514240pt;}
._1b{width:25.861120pt;}
._16{width:27.013120pt;}
._17{width:28.053973pt;}
._1f{width:29.816320pt;}
._1e{width:34.856960pt;}
._f{width:35.763200pt;}
._10{width:36.940800pt;}
._6{width:42.173440pt;}
._5{width:43.865600pt;}
._1d{width:63.323093pt;}
._1c{width:64.660480pt;}
.fs4{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:71.680000pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:3.200000pt;}
.ybb{bottom:3.240000pt;}
.y4{bottom:3.840000pt;}
.y2{bottom:4.480000pt;}
.yb6{bottom:19.840000pt;}
.yba{bottom:19.880000pt;}
.yaf{bottom:20.160000pt;}
.yd3{bottom:20.200000pt;}
.ybe{bottom:33.594667pt;}
.ybd{bottom:33.600000pt;}
.yda{bottom:36.794667pt;}
.yb5{bottom:36.800000pt;}
.yb9{bottom:36.840000pt;}
.yc4{bottom:37.120000pt;}
.yd2{bottom:37.160000pt;}
.yb8{bottom:50.600000pt;}
.yd9{bottom:53.754667pt;}
.yb4{bottom:53.760000pt;}
.yca{bottom:53.800000pt;}
.yc6{bottom:54.106667pt;}
.yd8{bottom:67.554667pt;}
.yd0{bottom:70.400000pt;}
.yc3{bottom:70.720000pt;}
.yb3{bottom:70.746667pt;}
.yc9{bottom:70.760000pt;}
.y3{bottom:72.992000pt;}
.yc8{bottom:84.200000pt;}
.yd5{bottom:84.506667pt;}
.y6{bottom:86.752000pt;}
.yce{bottom:87.360000pt;}
.yb2{bottom:87.386667pt;}
.yc2{bottom:87.720000pt;}
.y94{bottom:98.272000pt;}
.y136{bottom:98.912000pt;}
.ycd{bottom:101.146667pt;}
.yc1{bottom:101.480000pt;}
.ydd{bottom:104.360000pt;}
.y77{bottom:105.952000pt;}
.y11c{bottom:107.232000pt;}
.yd7{bottom:109.152000pt;}
.y93{bottom:115.232000pt;}
.ydc{bottom:121.320000pt;}
.y56{bottom:122.912000pt;}
.y2e{bottom:126.752000pt;}
.y161{bottom:129.632000pt;}
.y92{bottom:132.192000pt;}
.ybc{bottom:140.186667pt;}
.y55{bottom:142.426667pt;}
.y76{bottom:142.746667pt;}
.y2d{bottom:143.706667pt;}
.y91{bottom:148.826667pt;}
.yf9{bottom:149.146667pt;}
.y160{bottom:154.906667pt;}
.y11b{bottom:159.706667pt;}
.y2c{bottom:160.666667pt;}
.y54{bottom:161.626667pt;}
.yf8{bottom:165.786667pt;}
.yb7{bottom:174.746667pt;}
.y11a{bottom:176.706667pt;}
.yd6{bottom:177.346667pt;}
.y2b{bottom:177.666667pt;}
.y75{bottom:178.306667pt;}
.y53{bottom:181.186667pt;}
.yf7{bottom:182.786667pt;}
.y90{bottom:184.386667pt;}
.y135{bottom:186.626667pt;}
.y119{bottom:193.666667pt;}
.y15f{bottom:198.786667pt;}
.yf6{bottom:199.746667pt;}
.y149{bottom:200.386667pt;}
.y52{bottom:200.706667pt;}
.y118{bottom:210.626667pt;}
.yd4{bottom:211.586667pt;}
.y134{bottom:212.226667pt;}
.y74{bottom:213.826667pt;}
.y2a{bottom:215.106667pt;}
.yf5{bottom:216.706667pt;}
.y8f{bottom:219.906667pt;}
.y15e{bottom:224.066667pt;}
.y148{bottom:225.666667pt;}
.yb1{bottom:225.986667pt;}
.y117{bottom:227.266667pt;}
.yf4{bottom:233.346667pt;}
.y8e{bottom:236.866667pt;}
.y133{bottom:237.506667pt;}
.y51{bottom:238.786667pt;}
.y73{bottom:249.346667pt;}
.yf3{bottom:250.306667pt;}
.y29{bottom:250.946667pt;}
.y8d{bottom:253.826667pt;}
.y50{bottom:257.986667pt;}
.y116{bottom:262.786667pt;}
.yf2{bottom:267.266667pt;}
.y28{bottom:267.906667pt;}
.y15d{bottom:268.226667pt;}
.y8c{bottom:270.786667pt;}
.y147{bottom:276.226667pt;}
.y4f{bottom:277.506667pt;}
.y72{bottom:284.866667pt;}
.y8b{bottom:287.453333pt;}
.y132{bottom:288.093333pt;}
.y15c{bottom:293.533333pt;}
.y4e{bottom:296.733333pt;}
.y115{bottom:298.333333pt;}
.yf1{bottom:302.493333pt;}
.y27{bottom:303.453333pt;}
.y131{bottom:313.373333pt;}
.y4d{bottom:316.253333pt;}
.y175{bottom:318.813333pt;}
.y26{bottom:320.413333pt;}
.y8a{bottom:322.973333pt;}
.yae{bottom:327.773333pt;}
.y114{bottom:333.853333pt;}
.y4c{bottom:335.773333pt;}
.y25{bottom:337.053333pt;}
.y15b{bottom:337.373333pt;}
.yf0{bottom:338.013333pt;}
.y130{bottom:338.653333pt;}
.y113{bottom:350.813333pt;}
.y174{bottom:354.653333pt;}
.y4b{bottom:354.973333pt;}
.y71{bottom:358.493333pt;}
.y146{bottom:364.253333pt;}
.y112{bottom:367.773333pt;}
.y24{bottom:372.573333pt;}
.y173{bottom:373.533333pt;}
.y89{bottom:375.453333pt;}
.y70{bottom:378.013333pt;}
.y15a{bottom:381.213333pt;}
.yd1{bottom:381.533333pt;}
.y12f{bottom:382.493333pt;}
.yad{bottom:384.093333pt;}
.y111{bottom:384.413333pt;}
.y23{bottom:389.533333pt;}
.yef{bottom:390.493333pt;}
.y4a{bottom:393.053333pt;}
.y6f{bottom:397.213333pt;}
.y110{bottom:401.413333pt;}
.yac{bottom:403.013333pt;}
.y22{bottom:406.533333pt;}
.y172{bottom:410.053333pt;}
.y88{bottom:411.013333pt;}
.y49{bottom:412.613333pt;}
.y145{bottom:414.853333pt;}
.y6e{bottom:416.773333pt;}
.y21{bottom:423.493333pt;}
.yee{bottom:426.053333pt;}
.y12e{bottom:426.693333pt;}
.y171{bottom:428.933333pt;}
.y48{bottom:431.813333pt;}
.ycf{bottom:433.093333pt;}
.y6d{bottom:436.293333pt;}
.y10f{bottom:436.933333pt;}
.yab{bottom:439.813333pt;}
.y20{bottom:440.133333pt;}
.yed{bottom:443.013333pt;}
.y87{bottom:447.173333pt;}
.y47{bottom:451.333333pt;}
.y12d{bottom:451.973333pt;}
.y6c{bottom:455.493333pt;}
.y1f{bottom:457.093333pt;}
.y159{bottom:457.413333pt;}
.yec{bottom:459.973333pt;}
.y144{bottom:465.413333pt;}
.y170{bottom:465.733333pt;}
.y46{bottom:470.853333pt;}
.y10e{bottom:472.453333pt;}
.y1e{bottom:474.053333pt;}
.y6b{bottom:475.013333pt;}
.yaa{bottom:476.933333pt;}
.y12c{bottom:477.253333pt;}
.y158{bottom:482.693333pt;}
.y16f{bottom:484.293333pt;}
.y86{bottom:486.533333pt;}
.y45{bottom:490.053333pt;}
.y1d{bottom:490.693333pt;}
.yeb{bottom:495.493333pt;}
.y12b{bottom:502.533333pt;}
.y10d{bottom:507.973333pt;}
.y44{bottom:509.573333pt;}
.y6a{bottom:513.120000pt;}
.ya9{bottom:513.760000pt;}
.y143{bottom:516.000000pt;}
.y16e{bottom:521.120000pt;}
.y10c{bottom:524.960000pt;}
.y85{bottom:525.920000pt;}
.y1c{bottom:526.240000pt;}
.y12a{bottom:527.840000pt;}
.y43{bottom:528.800000pt;}
.ya8{bottom:530.720000pt;}
.yea{bottom:531.040000pt;}
.y157{bottom:533.280000pt;}
.ycc{bottom:534.880000pt;}
.y16d{bottom:540.000000pt;}
.y10b{bottom:541.920000pt;}
.y1b{bottom:543.200000pt;}
.ya7{bottom:547.360000pt;}
.ye9{bottom:548.320000pt;}
.y69{bottom:551.200000pt;}
.y129{bottom:553.120000pt;}
.y10a{bottom:558.560000pt;}
.y1a{bottom:560.160000pt;}
.ya6{bottom:564.320000pt;}
.y84{bottom:565.280000pt;}
.y42{bottom:566.880000pt;}
.y68{bottom:570.400000pt;}
.y109{bottom:575.520000pt;}
.y16c{bottom:576.480000pt;}
.y19{bottom:577.120000pt;}
.y128{bottom:578.400000pt;}
.ya5{bottom:581.280000pt;}
.ye8{bottom:584.160000pt;}
.y41{bottom:586.400000pt;}
.y67{bottom:589.920000pt;}
.y18{bottom:593.760000pt;}
.y16b{bottom:595.360000pt;}
.ya4{bottom:597.920000pt;}
.ye7{bottom:601.120000pt;}
.y156{bottom:602.400000pt;}
.y127{bottom:603.680000pt;}
.y142{bottom:604.000000pt;}
.y83{bottom:604.640000pt;}
.y40{bottom:605.920000pt;}
.y66{bottom:609.440000pt;}
.y108{bottom:611.040000pt;}
.ya3{bottom:614.880000pt;}
.y3f{bottom:625.146667pt;}
.y155{bottom:627.706667pt;}
.y65{bottom:628.666667pt;}
.y141{bottom:629.306667pt;}
.y17{bottom:630.586667pt;}
.y16a{bottom:632.186667pt;}
.ycb{bottom:636.666667pt;}
.y82{bottom:644.026667pt;}
.y3e{bottom:644.666667pt;}
.y107{bottom:646.586667pt;}
.y126{bottom:647.546667pt;}
.ya2{bottom:650.426667pt;}
.y169{bottom:650.746667pt;}
.y154{bottom:652.986667pt;}
.y140{bottom:654.586667pt;}
.y16{bottom:659.386667pt;}
.y106{bottom:663.546667pt;}
.y3d{bottom:663.866667pt;}
.y64{bottom:667.066667pt;}
.ya1{bottom:667.386667pt;}
.y168{bottom:669.306667pt;}
.ye6{bottom:672.186667pt;}
.y15{bottom:677.626667pt;}
.y153{bottom:678.266667pt;}
.y13f{bottom:679.866667pt;}
.y105{bottom:680.506667pt;}
.y81{bottom:683.386667pt;}
.ya0{bottom:684.346667pt;}
.ye5{bottom:688.826667pt;}
.y125{bottom:691.706667pt;}
.y14{bottom:697.146667pt;}
.y3c{bottom:700.346667pt;}
.y9f{bottom:700.986667pt;}
.y152{bottom:703.546667pt;}
.y13e{bottom:705.146667pt;}
.y63{bottom:705.786667pt;}
.y167{bottom:706.106667pt;}
.y104{bottom:716.026667pt;}
.y124{bottom:716.986667pt;}
.y9e{bottom:717.946667pt;}
.yc7{bottom:721.786667pt;}
.y80{bottom:722.746667pt;}
.y166{bottom:724.666667pt;}
.y13d{bottom:730.426667pt;}
.y13{bottom:734.266667pt;}
.y9d{bottom:734.946667pt;}
.y3b{bottom:736.226667pt;}
.ye4{bottom:739.426667pt;}
.y123{bottom:742.306667pt;}
.y62{bottom:744.226667pt;}
.y151{bottom:747.746667pt;}
.y103{bottom:751.266667pt;}
.ye3{bottom:756.386667pt;}
.y12{bottom:757.346667pt;}
.y165{bottom:761.506667pt;}
.y7f{bottom:762.146667pt;}
.y61{bottom:763.426667pt;}
.y102{bottom:768.226667pt;}
.y3a{bottom:772.386667pt;}
.y150{bottom:773.026667pt;}
.ye2{bottom:773.346667pt;}
.y13c{bottom:774.626667pt;}
.y164{bottom:780.066667pt;}
.y60{bottom:782.946667pt;}
.y101{bottom:785.186667pt;}
.y122{bottom:787.426667pt;}
.ye1{bottom:790.306667pt;}
.y14f{bottom:798.306667pt;}
.y7e{bottom:801.186667pt;}
.y5f{bottom:802.466667pt;}
.yc5{bottom:806.626667pt;}
.ye0{bottom:806.946667pt;}
.y11{bottom:807.586667pt;}
.y39{bottom:808.226667pt;}
.y13b{bottom:818.466667pt;}
.y100{bottom:820.706667pt;}
.y121{bottom:823.266667pt;}
.y14e{bottom:823.586667pt;}
.ydf{bottom:823.906667pt;}
.y9c{bottom:825.186667pt;}
.yff{bottom:837.666667pt;}
.y120{bottom:840.226667pt;}
.y5e{bottom:840.546667pt;}
.y9b{bottom:842.146667pt;}
.y38{bottom:843.746667pt;}
.y7d{bottom:847.293333pt;}
.y163{bottom:850.493333pt;}
.yfe{bottom:854.653333pt;}
.y11f{bottom:857.213333pt;}
.y9a{bottom:858.813333pt;}
.yde{bottom:859.453333pt;}
.y5d{bottom:859.773333pt;}
.y37{bottom:860.733333pt;}
.y10{bottom:861.373333pt;}
.y14d{bottom:867.453333pt;}
.y13a{bottom:869.053333pt;}
.yf{bottom:871.293333pt;}
.yc0{bottom:874.813333pt;}
.y7c{bottom:875.133333pt;}
.y99{bottom:875.773333pt;}
.y36{bottom:877.693333pt;}
.y5c{bottom:879.293333pt;}
.ydb{bottom:892.413333pt;}
.y98{bottom:892.733333pt;}
.y139{bottom:894.333333pt;}
.ye{bottom:894.653333pt;}
.y5b{bottom:898.493333pt;}
.y7b{bottom:902.653333pt;}
.yfd{bottom:904.253333pt;}
.y97{bottom:909.693333pt;}
.y35{bottom:913.213333pt;}
.yd{bottom:915.133333pt;}
.y14c{bottom:918.013333pt;}
.y138{bottom:919.613333pt;}
.yfc{bottom:921.853333pt;}
.y11e{bottom:926.333333pt;}
.y34{bottom:930.173333pt;}
.yc{bottom:934.653333pt;}
.y5a{bottom:936.573333pt;}
.yfb{bottom:939.453333pt;}
.y11d{bottom:943.293333pt;}
.y96{bottom:944.893333pt;}
.y33{bottom:946.813333pt;}
.yb{bottom:954.173333pt;}
.y59{bottom:956.093333pt;}
.y7a{bottom:957.693333pt;}
.y32{bottom:963.813333pt;}
.y14b{bottom:968.933333pt;}
.ya{bottom:969.573333pt;}
.y137{bottom:970.213333pt;}
.y58{bottom:975.653333pt;}
.ybf{bottom:976.933333pt;}
.yfa{bottom:978.853333pt;}
.y95{bottom:980.453333pt;}
.y31{bottom:980.773333pt;}
.y9{bottom:984.933333pt;}
.y79{bottom:985.573333pt;}
.y162{bottom:989.093333pt;}
.y57{bottom:994.853333pt;}
.y30{bottom:997.413333pt;}
.y8{bottom:1000.293333pt;}
.y78{bottom:1013.093333pt;}
.y14a{bottom:1014.053333pt;}
.y2f{bottom:1014.373333pt;}
.y7{bottom:1015.653333pt;}
.y1{bottom:1056.293333pt;}
.y5{bottom:1072.000000pt;}
.h4{height:16.000000pt;}
.h1f{height:16.960000pt;}
.h2{height:17.632000pt;}
.ha{height:20.409375pt;}
.h14{height:33.600000pt;}
.h9{height:36.931250pt;}
.hb{height:40.818750pt;}
.h5{height:42.678750pt;}
.hf{height:43.642500pt;}
.h6{height:47.171250pt;}
.h12{height:47.437500pt;}
.h17{height:50.560000pt;}
.h16{height:50.592000pt;}
.he{height:51.663750pt;}
.h20{height:51.807500pt;}
.h13{height:53.130000pt;}
.hd{height:54.393750pt;}
.h10{height:56.062500pt;}
.h11{height:56.156250pt;}
.h21{height:56.312500pt;}
.h8{height:58.563750pt;}
.h3{height:60.288750pt;}
.h7{height:65.531250pt;}
.h19{height:67.552000pt;}
.hc{height:76.016250pt;}
.h1c{height:84.160000pt;}
.h1a{height:84.192000pt;}
.h1b{height:84.480000pt;}
.h1d{height:84.512000pt;}
.h15{height:101.152000pt;}
.h18{height:101.472000pt;}
.h1e{height:135.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:33.600000pt;}
.wd{width:46.720000pt;}
.wc{width:54.112000pt;}
.wb{width:58.912000pt;}
.wa{width:97.952000pt;}
.we{width:118.144000pt;}
.w7{width:120.032000pt;}
.w6{width:123.904000pt;}
.w3{width:126.784000pt;}
.w8{width:175.426667pt;}
.w9{width:182.786667pt;}
.w2{width:496.826667pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x5{left:4.160000pt;}
.x19{left:7.040000pt;}
.x18{left:8.320000pt;}
.x17{left:10.560000pt;}
.x1c{left:14.720000pt;}
.x21{left:19.520000pt;}
.x12{left:23.040000pt;}
.x1f{left:24.640000pt;}
.x15{left:29.760000pt;}
.x13{left:32.000000pt;}
.x10{left:40.354667pt;}
.x3{left:93.152000pt;}
.x6{left:94.431988pt;}
.xb{left:113.951988pt;}
.xe{left:118.431988pt;}
.xf{left:142.466655pt;}
.x1{left:148.546667pt;}
.x1a{left:166.466655pt;}
.x1b{left:190.466655pt;}
.x1d{left:193.666667pt;}
.x7{left:194.626655pt;}
.xd{left:200.706655pt;}
.x11{left:219.613333pt;}
.xc{left:220.893322pt;}
.xa{left:252.253322pt;}
.x1e{left:253.213333pt;}
.x20{left:307.973333pt;}
.x9{left:311.173322pt;}
.x14{left:340.293333pt;}
.x8{left:343.173322pt;}
.x22{left:355.333333pt;}
.x23{left:396.959988pt;}
.x16{left:516.346667pt;}
.x4{left:671.613333pt;}
}




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