
    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_eda46c7516c685b53b4d39c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959473;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_3566387c6e2b61e690f13f51.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101074;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_fde47388adbdd4482e1d7591.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_42aae8c0fc74ca4fc3227631.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.674805;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_587e00e3911bcfc4a4152368.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_e3d1f220b2a4dcd5f57a5ab5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_0e83c0f287895312abc74e38.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861328;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_92da7efb3a2d4928a6be6d10.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.405120px;}
.v1{vertical-align:30.240000px;}
.ls24{letter-spacing:-0.993600px;}
.ls2e{letter-spacing:-0.927360px;}
.ls3b{letter-spacing:-0.861120px;}
.ls2b{letter-spacing:-0.794880px;}
.ls19{letter-spacing:-0.662400px;}
.ls6{letter-spacing:-0.596160px;}
.ls13{letter-spacing:-0.537840px;}
.ls33{letter-spacing:-0.397440px;}
.ls11{letter-spacing:-0.358560px;}
.ls5{letter-spacing:-0.331200px;}
.ls37{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.264960px;}
.ls7{letter-spacing:-0.240480px;}
.ls12{letter-spacing:-0.239040px;}
.lsa{letter-spacing:-0.198720px;}
.ls2c{letter-spacing:-0.179280px;}
.ls17{letter-spacing:-0.162000px;}
.ls18{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.119520px;}
.ls16{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.066240px;}
.ls1a{letter-spacing:-0.059760px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.032400px;}
.ls2a{letter-spacing:0.052560px;}
.ls2{letter-spacing:0.059760px;}
.lsb{letter-spacing:0.066240px;}
.ls1{letter-spacing:0.132480px;}
.ls36{letter-spacing:0.146880px;}
.lsd{letter-spacing:0.179280px;}
.ls39{letter-spacing:0.198720px;}
.ls35{letter-spacing:0.262080px;}
.ls25{letter-spacing:0.264960px;}
.ls26{letter-spacing:0.279292px;}
.ls10{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.324000px;}
.ls3d{letter-spacing:0.331200px;}
.ls23{letter-spacing:0.463680px;}
.lse{letter-spacing:0.478080px;}
.ls31{letter-spacing:0.717120px;}
.ls2d{letter-spacing:0.728640px;}
.ls1d{letter-spacing:2.185920px;}
.ls20{letter-spacing:2.848320px;}
.ls3c{letter-spacing:3.481920px;}
.ls30{letter-spacing:3.576960px;}
.ls32{letter-spacing:3.764880px;}
.ls15{letter-spacing:4.305600px;}
.ls3a{letter-spacing:5.034240px;}
.ls22{letter-spacing:5.762880px;}
.ls1e{letter-spacing:7.220160px;}
.ls21{letter-spacing:8.246880px;}
.ls1f{letter-spacing:9.339840px;}
.ls1c{letter-spacing:10.797120px;}
.ls27{letter-spacing:11.525760px;}
.ls38{letter-spacing:12.254400px;}
.ls2f{letter-spacing:12.983040px;}
.ls3f{letter-spacing:18.745920px;}
.ls3{letter-spacing:23.963760px;}
.ls28{letter-spacing:57.070800px;}
.ls34{letter-spacing:97.902720px;}
.ls29{letter-spacing:165.057120px;}
.ls3e{letter-spacing:1635.984000px;}
.ls14{letter-spacing:1661.202000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.060000px;}
.ws34{word-spacing:-17.735065px;}
.ws30{word-spacing:-16.824960px;}
.ws5{word-spacing:-16.692480px;}
.ws25{word-spacing:-16.626240px;}
.ws1c{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.493760px;}
.ws4{word-spacing:-16.361280px;}
.ws2f{word-spacing:-16.295040px;}
.ws4a{word-spacing:-16.162560px;}
.ws1{word-spacing:-15.963840px;}
.ws55{word-spacing:-15.897600px;}
.ws37{word-spacing:-15.765120px;}
.ws63{word-spacing:-15.698880px;}
.ws3f{word-spacing:-15.632640px;}
.ws3b{word-spacing:-15.238800px;}
.ws38{word-spacing:-15.119280px;}
.ws7{word-spacing:-14.999760px;}
.ws8{word-spacing:-14.940000px;}
.ws3a{word-spacing:-14.760720px;}
.ws27{word-spacing:-14.700960px;}
.ws39{word-spacing:-14.581440px;}
.ws59{word-spacing:-13.500000px;}
.ws1d{word-spacing:-13.446000px;}
.ws24{word-spacing:-13.392000px;}
.ws26{word-spacing:-12.441600px;}
.ws2{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.ws2a{word-spacing:-5.762880px;}
.ws15{word-spacing:-0.478080px;}
.ws2b{word-spacing:-0.463680px;}
.ws65{word-spacing:-0.331200px;}
.ws17{word-spacing:-0.298800px;}
.ws5a{word-spacing:-0.264960px;}
.ws13{word-spacing:-0.179280px;}
.ws28{word-spacing:-0.162000px;}
.ws36{word-spacing:-0.132480px;}
.ws54{word-spacing:-0.119520px;}
.ws10{word-spacing:-0.066240px;}
.ws14{word-spacing:-0.059760px;}
.wsa{word-spacing:0.000000px;}
.wsd{word-spacing:0.066240px;}
.wsc{word-spacing:0.072000px;}
.ws1f{word-spacing:0.108000px;}
.ws16{word-spacing:0.119520px;}
.ws21{word-spacing:0.132480px;}
.ws20{word-spacing:0.162000px;}
.ws52{word-spacing:0.179280px;}
.wsf{word-spacing:0.198720px;}
.ws1a{word-spacing:0.239040px;}
.ws11{word-spacing:0.264960px;}
.ws5c{word-spacing:0.270000px;}
.ws3e{word-spacing:0.298800px;}
.ws9{word-spacing:0.331200px;}
.ws19{word-spacing:0.358560px;}
.ws5b{word-spacing:0.397440px;}
.ws4f{word-spacing:0.418320px;}
.wsb{word-spacing:0.480960px;}
.ws1b{word-spacing:0.537840px;}
.ws23{word-spacing:0.662400px;}
.ws3d{word-spacing:0.794880px;}
.ws5e{word-spacing:0.861120px;}
.ws45{word-spacing:0.927360px;}
.ws2c{word-spacing:0.993600px;}
.ws49{word-spacing:1.391040px;}
.ws40{word-spacing:1.523520px;}
.ws51{word-spacing:1.852560px;}
.ws61{word-spacing:2.252160px;}
.ws50{word-spacing:2.270880px;}
.wse{word-spacing:2.384640px;}
.ws62{word-spacing:2.450880px;}
.ws43{word-spacing:2.848320px;}
.ws22{word-spacing:2.980800px;}
.ws44{word-spacing:3.179520px;}
.ws18{word-spacing:3.466080px;}
.ws48{word-spacing:3.510720px;}
.ws53{word-spacing:3.585600px;}
.ws5d{word-spacing:3.643200px;}
.ws4e{word-spacing:3.775680px;}
.ws58{word-spacing:3.841920px;}
.ws41{word-spacing:4.504320px;}
.ws56{word-spacing:4.901760px;}
.ws47{word-spacing:5.696640px;}
.ws2d{word-spacing:5.829120px;}
.ws31{word-spacing:5.961600px;}
.ws4b{word-spacing:6.027840px;}
.ws46{word-spacing:6.425280px;}
.ws29{word-spacing:7.286400px;}
.ws2e{word-spacing:7.828560px;}
.ws57{word-spacing:8.544960px;}
.ws64{word-spacing:8.677440px;}
.ws5f{word-spacing:8.809920px;}
.ws42{word-spacing:10.002240px;}
.ws6a{word-spacing:10.333440px;}
.ws3c{word-spacing:11.062080px;}
.ws4d{word-spacing:12.320640px;}
.ws12{word-spacing:12.519360px;}
.ws4c{word-spacing:12.916800px;}
.ws32{word-spacing:13.976640px;}
.ws66{word-spacing:19.010880px;}
.ws60{word-spacing:21.660480px;}
.ws69{word-spacing:38.021760px;}
.ws68{word-spacing:38.352960px;}
.ws67{word-spacing:38.419200px;}
.ws33{word-spacing:51.402240px;}
.ws1e{word-spacing:147.182904px;}
.ws35{word-spacing:487.157544px;}
._d{margin-left:-13.711680px;}
._11{margin-left:-6.027840px;}
._10{margin-left:-4.983984px;}
._4{margin-left:-1.563264px;}
._0{width:1.134576px;}
._5{width:2.424384px;}
._1{width:3.490848px;}
._7{width:4.586688px;}
._e{width:5.713632px;}
._8{width:6.882336px;}
._9{width:7.909056px;}
._a{width:9.621360px;}
._f{width:10.918224px;}
._6{width:11.985696px;}
._16{width:13.454208px;}
._14{width:15.220080px;}
._3{width:18.171504px;}
._2{width:19.572048px;}
._1c{width:21.130560px;}
._b{width:22.655016px;}
._c{width:23.758992px;}
._1b{width:29.590272px;}
._1a{width:30.814848px;}
._1d{width:38.203488px;}
._1e{width:43.426944px;}
._1f{width:44.738496px;}
._17{width:62.693424px;}
._13{width:65.464992px;}
._12{width:83.469024px;}
._15{width:116.756400px;}
._19{width:165.057120px;}
._18{width:208.383120px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:69.823091px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.960000px;}
.y81{bottom:4.140000px;}
.y55{bottom:4.320000px;}
.y5a{bottom:4.500000px;}
.ya3{bottom:22.860000px;}
.y7f{bottom:37.980000px;}
.y53{bottom:41.580000px;}
.y57{bottom:60.120000px;}
.y9f{bottom:233.792280px;}
.y1e{bottom:233.806140px;}
.y4e{bottom:233.813160px;}
.y32{bottom:234.488880px;}
.y8f{bottom:237.155040px;}
.ye1{bottom:237.600000px;}
.ybb{bottom:241.866000px;}
.y9e{bottom:250.525080px;}
.y1d{bottom:250.538940px;}
.y4d{bottom:250.545960px;}
.ye2{bottom:250.920000px;}
.ycc{bottom:256.842720px;}
.y6a{bottom:257.550480px;}
.y8a{bottom:259.020000px;}
.y6e{bottom:261.360000px;}
.y31{bottom:262.210320px;}
.y8e{bottom:265.058640px;}
.y9d{bottom:267.452100px;}
.y1c{bottom:267.465960px;}
.y4c{bottom:267.472980px;}
.yba{bottom:269.769600px;}
.y89{bottom:276.120000px;}
.y9c{bottom:284.379120px;}
.y1b{bottom:284.392980px;}
.ycb{bottom:284.564160px;}
.y69{bottom:285.454080px;}
.y3f{bottom:285.670650px;}
.y4b{bottom:288.180000px;}
.y6d{bottom:289.256400px;}
.y88{bottom:291.060000px;}
.y8d{bottom:292.780080px;}
.ye0{bottom:292.800960px;}
.yb9{bottom:297.673200px;}
.y9b{bottom:301.306140px;}
.y4f{bottom:302.760000px;}
.y1a{bottom:305.100000px;}
.y3e{bottom:308.649600px;}
.y87{bottom:308.700000px;}
.yca{bottom:312.467760px;}
.y68{bottom:313.175520px;}
.y6c{bottom:317.160000px;}
.y9a{bottom:318.038940px;}
.y1f{bottom:318.420000px;}
.y8c{bottom:320.683680px;}
.ydf{bottom:320.704560px;}
.yb8{bottom:325.576800px;}
.y86{bottom:326.340000px;}
.y33{bottom:328.221000px;}
.yc9{bottom:330.832800px;}
.y99{bottom:334.965960px;}
.y6b{bottom:340.522560px;}
.y19{bottom:340.860960px;}
.y67{bottom:341.079120px;}
.y85{bottom:343.980000px;}
.y8b{bottom:348.587280px;}
.yde{bottom:348.608160px;}
.y4a{bottom:348.658560px;}
.yc8{bottom:349.380000px;}
.y98{bottom:351.892980px;}
.yb7{bottom:353.298240px;}
.y34{bottom:356.607000px;}
.y7b{bottom:359.190300px;}
.y83{bottom:361.620000px;}
.yc7{bottom:367.927200px;}
.y18{bottom:368.764560px;}
.y66{bottom:368.982720px;}
.y97{bottom:372.600000px;}
.y49{bottom:376.308720px;}
.ydd{bottom:376.329600px;}
.y82{bottom:379.260000px;}
.yb6{bottom:381.201840px;}
.y35{bottom:384.993000px;}
.ya0{bottom:385.920000px;}
.yc6{bottom:386.640000px;}
.y7a{bottom:390.812460px;}
.y17{bottom:396.668160px;}
.y65{bottom:396.704160px;}
.y7e{bottom:397.260000px;}
.yc5{bottom:401.580000px;}
.y48{bottom:404.212320px;}
.ydc{bottom:404.233200px;}
.yb5{bottom:409.105440px;}
.y6f{bottom:410.324100px;}
.y36{bottom:413.379000px;}
.y80{bottom:418.320000px;}
.y7d{bottom:418.327020px;}
.yc4{bottom:420.840000px;}
.y16{bottom:424.571760px;}
.y64{bottom:424.607760px;}
.y47{bottom:432.115920px;}
.ydb{bottom:432.136800px;}
.y96{bottom:432.159120px;}
.y70{bottom:434.093640px;}
.yb4{bottom:436.826880px;}
.y37{bottom:441.765000px;}
.y63{bottom:442.972800px;}
.y15{bottom:452.293200px;}
.y71{bottom:457.863180px;}
.yc3{bottom:458.640000px;}
.y46{bottom:459.837360px;}
.yda{bottom:459.858240px;}
.y95{bottom:459.880560px;}
.y7c{bottom:461.160000px;}
.y62{bottom:461.520000px;}
.yb3{bottom:464.730480px;}
.y38{bottom:470.151000px;}
.y61{bottom:476.460000px;}
.yc2{bottom:478.080000px;}
.y14{bottom:480.196800px;}
.y72{bottom:481.632720px;}
.y45{bottom:487.740960px;}
.yd9{bottom:487.761840px;}
.y94{bottom:487.784160px;}
.yb2{bottom:492.634080px;}
.y60{bottom:495.900000px;}
.yc1{bottom:497.340000px;}
.y39{bottom:498.537000px;}
.y73{bottom:505.402260px;}
.y13{bottom:508.100400px;}
.y5f{bottom:515.160000px;}
.y44{bottom:515.644560px;}
.yd8{bottom:515.665440px;}
.y93{bottom:515.687760px;}
.yc0{bottom:516.600000px;}
.yb1{bottom:520.355520px;}
.y3a{bottom:526.923000px;}
.y74{bottom:529.171800px;}
.y5e{bottom:534.420000px;}
.y12{bottom:535.821840px;}
.ybf{bottom:536.040000px;}
.y43{bottom:543.366000px;}
.yd7{bottom:543.386880px;}
.y92{bottom:543.409200px;}
.yb0{bottom:548.259120px;}
.y75{bottom:552.941340px;}
.y5d{bottom:553.860000px;}
.ybe{bottom:555.300000px;}
.y3b{bottom:555.309000px;}
.y11{bottom:563.725440px;}
.y42{bottom:571.269600px;}
.yd6{bottom:571.290480px;}
.y91{bottom:571.312800px;}
.y5c{bottom:573.120000px;}
.ybd{bottom:574.560000px;}
.yaf{bottom:576.162720px;}
.y76{bottom:576.710880px;}
.y3c{bottom:583.695000px;}
.y10{bottom:591.629040px;}
.y5b{bottom:592.380000px;}
.ybc{bottom:594.000000px;}
.y41{bottom:599.173200px;}
.yd5{bottom:599.194080px;}
.y90{bottom:599.216400px;}
.y77{bottom:600.480420px;}
.yae{bottom:603.884160px;}
.y56{bottom:611.640000px;}
.y3d{bottom:612.081000px;}
.yf{bottom:619.350480px;}
.y78{bottom:624.249960px;}
.y40{bottom:627.076800px;}
.yd4{bottom:627.097680px;}
.yad{bottom:631.787760px;}
.y59{bottom:634.672800px;}
.ye{bottom:647.254080px;}
.y79{bottom:648.019500px;}
.yac{bottom:650.152800px;}
.y58{bottom:653.220000px;}
.y30{bottom:654.798240px;}
.yd3{bottom:654.819120px;}
.yab{bottom:668.700000px;}
.yd{bottom:675.157680px;}
.y2f{bottom:682.701840px;}
.yd2{bottom:682.722720px;}
.y52{bottom:686.700000px;}
.yaa{bottom:687.247200px;}
.yc{bottom:702.879120px;}
.ya9{bottom:705.960000px;}
.y54{bottom:709.560000px;}
.y2e{bottom:710.605440px;}
.yd1{bottom:710.626320px;}
.ya8{bottom:720.900000px;}
.yb{bottom:730.782720px;}
.y2d{bottom:738.326880px;}
.yd0{bottom:738.347760px;}
.ya7{bottom:740.160000px;}
.y51{bottom:747.501120px;}
.ya{bottom:758.686320px;}
.ya6{bottom:759.420000px;}
.y50{bottom:766.048320px;}
.y2c{bottom:766.230480px;}
.ycf{bottom:766.251360px;}
.ya5{bottom:778.860000px;}
.y9{bottom:786.407760px;}
.y2b{bottom:794.134080px;}
.yce{bottom:794.154960px;}
.ya2{bottom:798.120000px;}
.ya1{bottom:811.787040px;}
.ya4{bottom:811.800000px;}
.y8{bottom:814.311360px;}
.y2a{bottom:821.855520px;}
.ycd{bottom:821.876400px;}
.y7{bottom:842.214960px;}
.y29{bottom:849.759120px;}
.y6{bottom:870.118560px;}
.y28{bottom:877.662720px;}
.y5{bottom:897.840000px;}
.y27{bottom:905.384160px;}
.y4{bottom:926.820000px;}
.y26{bottom:933.287760px;}
.y3{bottom:957.240000px;}
.y25{bottom:961.191360px;}
.y24{bottom:988.912800px;}
.y2{bottom:997.560000px;}
.y23{bottom:1016.816400px;}
.y1{bottom:1040.940000px;}
.y22{bottom:1044.720000px;}
.y21{bottom:1076.580000px;}
.y20{bottom:1094.040000px;}
.h1d{height:16.740000px;}
.h1f{height:16.920000px;}
.h1e{height:16.921500px;}
.h1c{height:17.280000px;}
.h15{height:18.540000px;}
.h16{height:18.541500px;}
.h17{height:18.720000px;}
.h9{height:34.893984px;}
.h21{height:37.080000px;}
.hc{height:37.599609px;}
.hf{height:41.405977px;}
.h12{height:41.610234px;}
.h7{height:44.149219px;}
.hb{height:45.193359px;}
.h10{height:45.667969px;}
.h6{height:46.122187px;}
.ha{height:50.013984px;}
.h1a{height:50.539219px;}
.h1b{height:50.760000px;}
.hd{height:54.499219px;}
.h8{height:55.437187px;}
.h22{height:55.520708px;}
.h20{height:55.609987px;}
.h11{height:55.722307px;}
.h13{height:55.800000px;}
.he{height:56.019375px;}
.h19{height:58.435927px;}
.h2{height:58.655391px;}
.h4{height:60.890625px;}
.h5{height:65.556562px;}
.h14{height:74.338500px;}
.h3{height:101.687344px;}
.h18{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:46.440000px;}
.w2{width:48.420000px;}
.we{width:49.500000px;}
.w17{width:52.380000px;}
.w9{width:62.998500px;}
.wf{width:63.000000px;}
.wc{width:63.180000px;}
.w7{width:66.420000px;}
.w14{width:69.301500px;}
.w1a{width:72.900000px;}
.w1f{width:73.258500px;}
.wb{width:73.620000px;}
.w5{width:73.621500px;}
.w16{width:73.800000px;}
.w1d{width:75.600000px;}
.w13{width:81.900000px;}
.w19{width:82.800000px;}
.wa{width:84.240000px;}
.w12{width:84.421500px;}
.w18{width:85.678500px;}
.w1e{width:87.298500px;}
.w8{width:88.740000px;}
.w10{width:90.900000px;}
.w1b{width:94.140000px;}
.w20{width:94.500000px;}
.w22{width:110.160000px;}
.w23{width:116.100000px;}
.w24{width:119.521500px;}
.w6{width:137.520000px;}
.w4{width:147.960000px;}
.w3{width:155.880000px;}
.w21{width:205.020000px;}
.w15{width:414.000000px;}
.wd{width:428.401500px;}
.w11{width:892.965000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x35{left:9.540000px;}
.x33{left:12.420000px;}
.x34{left:16.920000px;}
.x2e{left:19.440000px;}
.x1c{left:24.480000px;}
.x22{left:27.180000px;}
.x30{left:30.780000px;}
.x21{left:32.220000px;}
.x20{left:34.920000px;}
.x23{left:39.960000px;}
.x1f{left:41.940000px;}
.x1e{left:48.600000px;}
.x24{left:49.680000px;}
.x3d{left:71.460000px;}
.x46{left:75.600000px;}
.x3e{left:77.580000px;}
.x43{left:79.200000px;}
.x3f{left:80.640000px;}
.x47{left:81.720000px;}
.x44{left:85.320000px;}
.x40{left:86.940000px;}
.x45{left:88.380000px;}
.x41{left:93.060000px;}
.x42{left:96.120000px;}
.xc{left:170.820000px;}
.x6{left:178.552080px;}
.x9{left:180.872970px;}
.x8{left:188.477430px;}
.x27{left:195.925230px;}
.x7{left:203.686350px;}
.x26{left:211.134150px;}
.xe{left:219.960000px;}
.x1b{left:221.040000px;}
.x13{left:227.700000px;}
.x5{left:231.660000px;}
.x3{left:234.360000px;}
.xa{left:245.294250px;}
.x2c{left:253.440000px;}
.x2{left:279.180000px;}
.x1d{left:284.940000px;}
.x14{left:287.100000px;}
.x29{left:292.321200px;}
.x15{left:294.840000px;}
.x36{left:303.840000px;}
.x28{left:314.175330px;}
.x2d{left:323.460000px;}
.x4{left:339.120000px;}
.xf{left:376.740000px;}
.x16{left:384.300000px;}
.x3a{left:390.240000px;}
.x1{left:392.040000px;}
.x2f{left:397.980000px;}
.xb{left:399.404400px;}
.x17{left:440.460000px;}
.x18{left:448.200000px;}
.x31{left:472.320000px;}
.x37{left:478.440000px;}
.x3b{left:495.000000px;}
.x10{left:525.600000px;}
.x11{left:533.340000px;}
.x32{left:536.040000px;}
.x38{left:561.960000px;}
.x12{left:599.940000px;}
.x3c{left:612.000000px;}
.x39{left:635.580000px;}
.x2a{left:653.040000px;}
.x2b{left:660.780000px;}
.x19{left:674.280000px;}
.x1a{left:682.020000px;}
.x25{left:732.044880px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.693440pt;}
.v1{vertical-align:26.880000pt;}
.ls24{letter-spacing:-0.883200pt;}
.ls2e{letter-spacing:-0.824320pt;}
.ls3b{letter-spacing:-0.765440pt;}
.ls2b{letter-spacing:-0.706560pt;}
.ls19{letter-spacing:-0.588800pt;}
.ls6{letter-spacing:-0.529920pt;}
.ls13{letter-spacing:-0.478080pt;}
.ls33{letter-spacing:-0.353280pt;}
.ls11{letter-spacing:-0.318720pt;}
.ls5{letter-spacing:-0.294400pt;}
.ls37{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.235520pt;}
.ls7{letter-spacing:-0.213760pt;}
.ls12{letter-spacing:-0.212480pt;}
.lsa{letter-spacing:-0.176640pt;}
.ls2c{letter-spacing:-0.159360pt;}
.ls17{letter-spacing:-0.144000pt;}
.ls18{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.106240pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.058880pt;}
.ls1a{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.028800pt;}
.ls2a{letter-spacing:0.046720pt;}
.ls2{letter-spacing:0.053120pt;}
.lsb{letter-spacing:0.058880pt;}
.ls1{letter-spacing:0.117760pt;}
.ls36{letter-spacing:0.130560pt;}
.lsd{letter-spacing:0.159360pt;}
.ls39{letter-spacing:0.176640pt;}
.ls35{letter-spacing:0.232960pt;}
.ls25{letter-spacing:0.235520pt;}
.ls26{letter-spacing:0.248260pt;}
.ls10{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls3d{letter-spacing:0.294400pt;}
.ls23{letter-spacing:0.412160pt;}
.lse{letter-spacing:0.424960pt;}
.ls31{letter-spacing:0.637440pt;}
.ls2d{letter-spacing:0.647680pt;}
.ls1d{letter-spacing:1.943040pt;}
.ls20{letter-spacing:2.531840pt;}
.ls3c{letter-spacing:3.095040pt;}
.ls30{letter-spacing:3.179520pt;}
.ls32{letter-spacing:3.346560pt;}
.ls15{letter-spacing:3.827200pt;}
.ls3a{letter-spacing:4.474880pt;}
.ls22{letter-spacing:5.122560pt;}
.ls1e{letter-spacing:6.417920pt;}
.ls21{letter-spacing:7.330560pt;}
.ls1f{letter-spacing:8.302080pt;}
.ls1c{letter-spacing:9.597440pt;}
.ls27{letter-spacing:10.245120pt;}
.ls38{letter-spacing:10.892800pt;}
.ls2f{letter-spacing:11.540480pt;}
.ls3f{letter-spacing:16.663040pt;}
.ls3{letter-spacing:21.301120pt;}
.ls28{letter-spacing:50.729600pt;}
.ls34{letter-spacing:87.024640pt;}
.ls29{letter-spacing:146.717440pt;}
.ls3e{letter-spacing:1454.208000pt;}
.ls14{letter-spacing:1476.624000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws34{word-spacing:-15.764502pt;}
.ws30{word-spacing:-14.955520pt;}
.ws5{word-spacing:-14.837760pt;}
.ws25{word-spacing:-14.778880pt;}
.ws1c{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.661120pt;}
.ws4{word-spacing:-14.543360pt;}
.ws2f{word-spacing:-14.484480pt;}
.ws4a{word-spacing:-14.366720pt;}
.ws1{word-spacing:-14.190080pt;}
.ws55{word-spacing:-14.131200pt;}
.ws37{word-spacing:-14.013440pt;}
.ws63{word-spacing:-13.954560pt;}
.ws3f{word-spacing:-13.895680pt;}
.ws3b{word-spacing:-13.545600pt;}
.ws38{word-spacing:-13.439360pt;}
.ws7{word-spacing:-13.333120pt;}
.ws8{word-spacing:-13.280000pt;}
.ws3a{word-spacing:-13.120640pt;}
.ws27{word-spacing:-13.067520pt;}
.ws39{word-spacing:-12.961280pt;}
.ws59{word-spacing:-12.000000pt;}
.ws1d{word-spacing:-11.952000pt;}
.ws24{word-spacing:-11.904000pt;}
.ws26{word-spacing:-11.059200pt;}
.ws2{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws2a{word-spacing:-5.122560pt;}
.ws15{word-spacing:-0.424960pt;}
.ws2b{word-spacing:-0.412160pt;}
.ws65{word-spacing:-0.294400pt;}
.ws17{word-spacing:-0.265600pt;}
.ws5a{word-spacing:-0.235520pt;}
.ws13{word-spacing:-0.159360pt;}
.ws28{word-spacing:-0.144000pt;}
.ws36{word-spacing:-0.117760pt;}
.ws54{word-spacing:-0.106240pt;}
.ws10{word-spacing:-0.058880pt;}
.ws14{word-spacing:-0.053120pt;}
.wsa{word-spacing:0.000000pt;}
.wsd{word-spacing:0.058880pt;}
.wsc{word-spacing:0.064000pt;}
.ws1f{word-spacing:0.096000pt;}
.ws16{word-spacing:0.106240pt;}
.ws21{word-spacing:0.117760pt;}
.ws20{word-spacing:0.144000pt;}
.ws52{word-spacing:0.159360pt;}
.wsf{word-spacing:0.176640pt;}
.ws1a{word-spacing:0.212480pt;}
.ws11{word-spacing:0.235520pt;}
.ws5c{word-spacing:0.240000pt;}
.ws3e{word-spacing:0.265600pt;}
.ws9{word-spacing:0.294400pt;}
.ws19{word-spacing:0.318720pt;}
.ws5b{word-spacing:0.353280pt;}
.ws4f{word-spacing:0.371840pt;}
.wsb{word-spacing:0.427520pt;}
.ws1b{word-spacing:0.478080pt;}
.ws23{word-spacing:0.588800pt;}
.ws3d{word-spacing:0.706560pt;}
.ws5e{word-spacing:0.765440pt;}
.ws45{word-spacing:0.824320pt;}
.ws2c{word-spacing:0.883200pt;}
.ws49{word-spacing:1.236480pt;}
.ws40{word-spacing:1.354240pt;}
.ws51{word-spacing:1.646720pt;}
.ws61{word-spacing:2.001920pt;}
.ws50{word-spacing:2.018560pt;}
.wse{word-spacing:2.119680pt;}
.ws62{word-spacing:2.178560pt;}
.ws43{word-spacing:2.531840pt;}
.ws22{word-spacing:2.649600pt;}
.ws44{word-spacing:2.826240pt;}
.ws18{word-spacing:3.080960pt;}
.ws48{word-spacing:3.120640pt;}
.ws53{word-spacing:3.187200pt;}
.ws5d{word-spacing:3.238400pt;}
.ws4e{word-spacing:3.356160pt;}
.ws58{word-spacing:3.415040pt;}
.ws41{word-spacing:4.003840pt;}
.ws56{word-spacing:4.357120pt;}
.ws47{word-spacing:5.063680pt;}
.ws2d{word-spacing:5.181440pt;}
.ws31{word-spacing:5.299200pt;}
.ws4b{word-spacing:5.358080pt;}
.ws46{word-spacing:5.711360pt;}
.ws29{word-spacing:6.476800pt;}
.ws2e{word-spacing:6.958720pt;}
.ws57{word-spacing:7.595520pt;}
.ws64{word-spacing:7.713280pt;}
.ws5f{word-spacing:7.831040pt;}
.ws42{word-spacing:8.890880pt;}
.ws6a{word-spacing:9.185280pt;}
.ws3c{word-spacing:9.832960pt;}
.ws4d{word-spacing:10.951680pt;}
.ws12{word-spacing:11.128320pt;}
.ws4c{word-spacing:11.481600pt;}
.ws32{word-spacing:12.423680pt;}
.ws66{word-spacing:16.898560pt;}
.ws60{word-spacing:19.253760pt;}
.ws69{word-spacing:33.797120pt;}
.ws68{word-spacing:34.091520pt;}
.ws67{word-spacing:34.150400pt;}
.ws33{word-spacing:45.690880pt;}
.ws1e{word-spacing:130.829248pt;}
.ws35{word-spacing:433.028928pt;}
._d{margin-left:-12.188160pt;}
._11{margin-left:-5.358080pt;}
._10{margin-left:-4.430208pt;}
._4{margin-left:-1.389568pt;}
._0{width:1.008512pt;}
._5{width:2.155008pt;}
._1{width:3.102976pt;}
._7{width:4.077056pt;}
._e{width:5.078784pt;}
._8{width:6.117632pt;}
._9{width:7.030272pt;}
._a{width:8.552320pt;}
._f{width:9.705088pt;}
._6{width:10.653952pt;}
._16{width:11.959296pt;}
._14{width:13.528960pt;}
._3{width:16.152448pt;}
._2{width:17.397376pt;}
._1c{width:18.782720pt;}
._b{width:20.137792pt;}
._c{width:21.119104pt;}
._1b{width:26.302464pt;}
._1a{width:27.390976pt;}
._1d{width:33.958656pt;}
._1e{width:38.601728pt;}
._1f{width:39.767552pt;}
._17{width:55.727488pt;}
._13{width:58.191104pt;}
._12{width:74.194688pt;}
._15{width:103.783467pt;}
._19{width:146.717440pt;}
._18{width:185.229440pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:62.064970pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:3.520000pt;}
.y81{bottom:3.680000pt;}
.y55{bottom:3.840000pt;}
.y5a{bottom:4.000000pt;}
.ya3{bottom:20.320000pt;}
.y7f{bottom:33.760000pt;}
.y53{bottom:36.960000pt;}
.y57{bottom:53.440000pt;}
.y9f{bottom:207.815360pt;}
.y1e{bottom:207.827680pt;}
.y4e{bottom:207.833920pt;}
.y32{bottom:208.434560pt;}
.y8f{bottom:210.804480pt;}
.ye1{bottom:211.200000pt;}
.ybb{bottom:214.992000pt;}
.y9e{bottom:222.688960pt;}
.y1d{bottom:222.701280pt;}
.y4d{bottom:222.707520pt;}
.ye2{bottom:223.040000pt;}
.ycc{bottom:228.304640pt;}
.y6a{bottom:228.933760pt;}
.y8a{bottom:230.240000pt;}
.y6e{bottom:232.320000pt;}
.y31{bottom:233.075840pt;}
.y8e{bottom:235.607680pt;}
.y9d{bottom:237.735200pt;}
.y1c{bottom:237.747520pt;}
.y4c{bottom:237.753760pt;}
.yba{bottom:239.795200pt;}
.y89{bottom:245.440000pt;}
.y9c{bottom:252.781440pt;}
.y1b{bottom:252.793760pt;}
.ycb{bottom:252.945920pt;}
.y69{bottom:253.736960pt;}
.y3f{bottom:253.929467pt;}
.y4b{bottom:256.160000pt;}
.y6d{bottom:257.116800pt;}
.y88{bottom:258.720000pt;}
.y8d{bottom:260.248960pt;}
.ye0{bottom:260.267520pt;}
.yb9{bottom:264.598400pt;}
.y9b{bottom:267.827680pt;}
.y4f{bottom:269.120000pt;}
.y1a{bottom:271.200000pt;}
.y3e{bottom:274.355200pt;}
.y87{bottom:274.400000pt;}
.yca{bottom:277.749120pt;}
.y68{bottom:278.378240pt;}
.y6c{bottom:281.920000pt;}
.y9a{bottom:282.701280pt;}
.y1f{bottom:283.040000pt;}
.y8c{bottom:285.052160pt;}
.ydf{bottom:285.070720pt;}
.yb8{bottom:289.401600pt;}
.y86{bottom:290.080000pt;}
.y33{bottom:291.752000pt;}
.yc9{bottom:294.073600pt;}
.y99{bottom:297.747520pt;}
.y6b{bottom:302.686720pt;}
.y19{bottom:302.987520pt;}
.y67{bottom:303.181440pt;}
.y85{bottom:305.760000pt;}
.y8b{bottom:309.855360pt;}
.yde{bottom:309.873920pt;}
.y4a{bottom:309.918720pt;}
.yc8{bottom:310.560000pt;}
.y98{bottom:312.793760pt;}
.yb7{bottom:314.042880pt;}
.y34{bottom:316.984000pt;}
.y7b{bottom:319.280267pt;}
.y83{bottom:321.440000pt;}
.yc7{bottom:327.046400pt;}
.y18{bottom:327.790720pt;}
.y66{bottom:327.984640pt;}
.y97{bottom:331.200000pt;}
.y49{bottom:334.496640pt;}
.ydd{bottom:334.515200pt;}
.y82{bottom:337.120000pt;}
.yb6{bottom:338.846080pt;}
.y35{bottom:342.216000pt;}
.ya0{bottom:343.040000pt;}
.yc6{bottom:343.680000pt;}
.y7a{bottom:347.388853pt;}
.y17{bottom:352.593920pt;}
.y65{bottom:352.625920pt;}
.y7e{bottom:353.120000pt;}
.yc5{bottom:356.960000pt;}
.y48{bottom:359.299840pt;}
.ydc{bottom:359.318400pt;}
.yb5{bottom:363.649280pt;}
.y6f{bottom:364.732533pt;}
.y36{bottom:367.448000pt;}
.y80{bottom:371.840000pt;}
.y7d{bottom:371.846240pt;}
.yc4{bottom:374.080000pt;}
.y16{bottom:377.397120pt;}
.y64{bottom:377.429120pt;}
.y47{bottom:384.103040pt;}
.ydb{bottom:384.121600pt;}
.y96{bottom:384.141440pt;}
.y70{bottom:385.861013pt;}
.yb4{bottom:388.290560pt;}
.y37{bottom:392.680000pt;}
.y63{bottom:393.753600pt;}
.y15{bottom:402.038400pt;}
.y71{bottom:406.989493pt;}
.yc3{bottom:407.680000pt;}
.y46{bottom:408.744320pt;}
.yda{bottom:408.762880pt;}
.y95{bottom:408.782720pt;}
.y7c{bottom:409.920000pt;}
.y62{bottom:410.240000pt;}
.yb3{bottom:413.093760pt;}
.y38{bottom:417.912000pt;}
.y61{bottom:423.520000pt;}
.yc2{bottom:424.960000pt;}
.y14{bottom:426.841600pt;}
.y72{bottom:428.117973pt;}
.y45{bottom:433.547520pt;}
.yd9{bottom:433.566080pt;}
.y94{bottom:433.585920pt;}
.yb2{bottom:437.896960pt;}
.y60{bottom:440.800000pt;}
.yc1{bottom:442.080000pt;}
.y39{bottom:443.144000pt;}
.y73{bottom:449.246453pt;}
.y13{bottom:451.644800pt;}
.y5f{bottom:457.920000pt;}
.y44{bottom:458.350720pt;}
.yd8{bottom:458.369280pt;}
.y93{bottom:458.389120pt;}
.yc0{bottom:459.200000pt;}
.yb1{bottom:462.538240pt;}
.y3a{bottom:468.376000pt;}
.y74{bottom:470.374933pt;}
.y5e{bottom:475.040000pt;}
.y12{bottom:476.286080pt;}
.ybf{bottom:476.480000pt;}
.y43{bottom:482.992000pt;}
.yd7{bottom:483.010560pt;}
.y92{bottom:483.030400pt;}
.yb0{bottom:487.341440pt;}
.y75{bottom:491.503413pt;}
.y5d{bottom:492.320000pt;}
.ybe{bottom:493.600000pt;}
.y3b{bottom:493.608000pt;}
.y11{bottom:501.089280pt;}
.y42{bottom:507.795200pt;}
.yd6{bottom:507.813760pt;}
.y91{bottom:507.833600pt;}
.y5c{bottom:509.440000pt;}
.ybd{bottom:510.720000pt;}
.yaf{bottom:512.144640pt;}
.y76{bottom:512.631893pt;}
.y3c{bottom:518.840000pt;}
.y10{bottom:525.892480pt;}
.y5b{bottom:526.560000pt;}
.ybc{bottom:528.000000pt;}
.y41{bottom:532.598400pt;}
.yd5{bottom:532.616960pt;}
.y90{bottom:532.636800pt;}
.y77{bottom:533.760373pt;}
.yae{bottom:536.785920pt;}
.y56{bottom:543.680000pt;}
.y3d{bottom:544.072000pt;}
.yf{bottom:550.533760pt;}
.y78{bottom:554.888853pt;}
.y40{bottom:557.401600pt;}
.yd4{bottom:557.420160pt;}
.yad{bottom:561.589120pt;}
.y59{bottom:564.153600pt;}
.ye{bottom:575.336960pt;}
.y79{bottom:576.017333pt;}
.yac{bottom:577.913600pt;}
.y58{bottom:580.640000pt;}
.y30{bottom:582.042880pt;}
.yd3{bottom:582.061440pt;}
.yab{bottom:594.400000pt;}
.yd{bottom:600.140160pt;}
.y2f{bottom:606.846080pt;}
.yd2{bottom:606.864640pt;}
.y52{bottom:610.400000pt;}
.yaa{bottom:610.886400pt;}
.yc{bottom:624.781440pt;}
.ya9{bottom:627.520000pt;}
.y54{bottom:630.720000pt;}
.y2e{bottom:631.649280pt;}
.yd1{bottom:631.667840pt;}
.ya8{bottom:640.800000pt;}
.yb{bottom:649.584640pt;}
.y2d{bottom:656.290560pt;}
.yd0{bottom:656.309120pt;}
.ya7{bottom:657.920000pt;}
.y51{bottom:664.445440pt;}
.ya{bottom:674.387840pt;}
.ya6{bottom:675.040000pt;}
.y50{bottom:680.931840pt;}
.y2c{bottom:681.093760pt;}
.ycf{bottom:681.112320pt;}
.ya5{bottom:692.320000pt;}
.y9{bottom:699.029120pt;}
.y2b{bottom:705.896960pt;}
.yce{bottom:705.915520pt;}
.ya2{bottom:709.440000pt;}
.ya1{bottom:721.588480pt;}
.ya4{bottom:721.600000pt;}
.y8{bottom:723.832320pt;}
.y2a{bottom:730.538240pt;}
.ycd{bottom:730.556800pt;}
.y7{bottom:748.635520pt;}
.y29{bottom:755.341440pt;}
.y6{bottom:773.438720pt;}
.y28{bottom:780.144640pt;}
.y5{bottom:798.080000pt;}
.y27{bottom:804.785920pt;}
.y4{bottom:823.840000pt;}
.y26{bottom:829.589120pt;}
.y3{bottom:850.880000pt;}
.y25{bottom:854.392320pt;}
.y24{bottom:879.033600pt;}
.y2{bottom:886.720000pt;}
.y23{bottom:903.836800pt;}
.y1{bottom:925.280000pt;}
.y22{bottom:928.640000pt;}
.y21{bottom:956.960000pt;}
.y20{bottom:972.480000pt;}
.h1d{height:14.880000pt;}
.h1f{height:15.040000pt;}
.h1e{height:15.041333pt;}
.h1c{height:15.360000pt;}
.h15{height:16.480000pt;}
.h16{height:16.481333pt;}
.h17{height:16.640000pt;}
.h9{height:31.016875pt;}
.h21{height:32.960000pt;}
.hc{height:33.421875pt;}
.hf{height:36.805312pt;}
.h12{height:36.986875pt;}
.h7{height:39.243750pt;}
.hb{height:40.171875pt;}
.h10{height:40.593750pt;}
.h6{height:40.997500pt;}
.ha{height:44.456875pt;}
.h1a{height:44.923750pt;}
.h1b{height:45.120000pt;}
.hd{height:48.443750pt;}
.h8{height:49.277500pt;}
.h22{height:49.351740pt;}
.h20{height:49.431100pt;}
.h11{height:49.530940pt;}
.h13{height:49.600000pt;}
.he{height:49.795000pt;}
.h19{height:51.943046pt;}
.h2{height:52.138125pt;}
.h4{height:54.125000pt;}
.h5{height:58.272500pt;}
.h14{height:66.078667pt;}
.h3{height:90.388750pt;}
.h18{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:41.280000pt;}
.w2{width:43.040000pt;}
.we{width:44.000000pt;}
.w17{width:46.560000pt;}
.w9{width:55.998667pt;}
.wf{width:56.000000pt;}
.wc{width:56.160000pt;}
.w7{width:59.040000pt;}
.w14{width:61.601333pt;}
.w1a{width:64.800000pt;}
.w1f{width:65.118667pt;}
.wb{width:65.440000pt;}
.w5{width:65.441333pt;}
.w16{width:65.600000pt;}
.w1d{width:67.200000pt;}
.w13{width:72.800000pt;}
.w19{width:73.600000pt;}
.wa{width:74.880000pt;}
.w12{width:75.041333pt;}
.w18{width:76.158667pt;}
.w1e{width:77.598667pt;}
.w8{width:78.880000pt;}
.w10{width:80.800000pt;}
.w1b{width:83.680000pt;}
.w20{width:84.000000pt;}
.w22{width:97.920000pt;}
.w23{width:103.200000pt;}
.w24{width:106.241333pt;}
.w6{width:122.240000pt;}
.w4{width:131.520000pt;}
.w3{width:138.560000pt;}
.w21{width:182.240000pt;}
.w15{width:368.000000pt;}
.wd{width:380.801333pt;}
.w11{width:793.746667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x35{left:8.480000pt;}
.x33{left:11.040000pt;}
.x34{left:15.040000pt;}
.x2e{left:17.280000pt;}
.x1c{left:21.760000pt;}
.x22{left:24.160000pt;}
.x30{left:27.360000pt;}
.x21{left:28.640000pt;}
.x20{left:31.040000pt;}
.x23{left:35.520000pt;}
.x1f{left:37.280000pt;}
.x1e{left:43.200000pt;}
.x24{left:44.160000pt;}
.x3d{left:63.520000pt;}
.x46{left:67.200000pt;}
.x3e{left:68.960000pt;}
.x43{left:70.400000pt;}
.x3f{left:71.680000pt;}
.x47{left:72.640000pt;}
.x44{left:75.840000pt;}
.x40{left:77.280000pt;}
.x45{left:78.560000pt;}
.x41{left:82.720000pt;}
.x42{left:85.440000pt;}
.xc{left:151.840000pt;}
.x6{left:158.712960pt;}
.x9{left:160.775973pt;}
.x8{left:167.535493pt;}
.x27{left:174.155760pt;}
.x7{left:181.054533pt;}
.x26{left:187.674800pt;}
.xe{left:195.520000pt;}
.x1b{left:196.480000pt;}
.x13{left:202.400000pt;}
.x5{left:205.920000pt;}
.x3{left:208.320000pt;}
.xa{left:218.039333pt;}
.x2c{left:225.280000pt;}
.x2{left:248.160000pt;}
.x1d{left:253.280000pt;}
.x14{left:255.200000pt;}
.x29{left:259.841067pt;}
.x15{left:262.080000pt;}
.x36{left:270.080000pt;}
.x28{left:279.266960pt;}
.x2d{left:287.520000pt;}
.x4{left:301.440000pt;}
.xf{left:334.880000pt;}
.x16{left:341.600000pt;}
.x3a{left:346.880000pt;}
.x1{left:348.480000pt;}
.x2f{left:353.760000pt;}
.xb{left:355.026133pt;}
.x17{left:391.520000pt;}
.x18{left:398.400000pt;}
.x31{left:419.840000pt;}
.x37{left:425.280000pt;}
.x3b{left:440.000000pt;}
.x10{left:467.200000pt;}
.x11{left:474.080000pt;}
.x32{left:476.480000pt;}
.x38{left:499.520000pt;}
.x12{left:533.280000pt;}
.x3c{left:544.000000pt;}
.x39{left:564.960000pt;}
.x2a{left:580.480000pt;}
.x2b{left:587.360000pt;}
.x19{left:599.360000pt;}
.x1a{left:606.240000pt;}
.x25{left:650.706560pt;}
}




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