
    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_c9e069c931bbd6f03c442f11.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_7b8b97c08702e99d4640bd3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_5269439718fec1c650400c5a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_b4b0288439da6f34def2dd32.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_4a691aefcc08b4d7358237e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.352051;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_000b6cdba729e22d6b6467e1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_7bb7c5b7595a019aa45416b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_92495de5967240d4f533f80e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.338867;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a6a0aa24fa790b73981b9374.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.912109;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_4253a8c0d3defe2b9d94b444.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.948242;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_16461b7cbec115cd575b9dc0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.338867;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_e6c995ff6d745596f4967045.woff2')format("woff");}.fff{font-family:fff;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_21048abb1ad0d354e8dc4310.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1d6276a21ca6411c0d259eba.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.040039;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v3{vertical-align:-27.000000px;}
.v4{vertical-align:-20.880000px;}
.v8{vertical-align:-12.960000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.760000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:27.000000px;}
.v7{vertical-align:79.560000px;}
.ls18{letter-spacing:-0.445800px;}
.ls2e{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.141000px;}
.ls26{letter-spacing:-0.134400px;}
.ls1a{letter-spacing:-0.129600px;}
.lsc{letter-spacing:-0.092400px;}
.lsf{letter-spacing:-0.090440px;}
.lsd{letter-spacing:-0.085800px;}
.ls1b{letter-spacing:-0.051840px;}
.ls27{letter-spacing:-0.015480px;}
.lse{letter-spacing:-0.004680px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.048000px;}
.ls28{letter-spacing:0.050040px;}
.ls0{letter-spacing:0.053280px;}
.ls23{letter-spacing:0.067800px;}
.ls4{letter-spacing:0.087120px;}
.ls2d{letter-spacing:0.109200px;}
.ls2a{letter-spacing:0.112800px;}
.ls24{letter-spacing:0.139200px;}
.lsb{letter-spacing:0.146400px;}
.ls25{letter-spacing:0.168000px;}
.ls2{letter-spacing:0.177120px;}
.ls5{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.261000px;}
.ls19{letter-spacing:0.274200px;}
.ls13{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.390000px;}
.ls2c{letter-spacing:0.409800px;}
.ls10{letter-spacing:0.486000px;}
.ls15{letter-spacing:0.990000px;}
.ls22{letter-spacing:2.126880px;}
.ls12{letter-spacing:3.327120px;}
.ls1c{letter-spacing:3.687120px;}
.ls17{letter-spacing:9.360000px;}
.ls20{letter-spacing:10.167120px;}
.ls1f{letter-spacing:11.967120px;}
.ls21{letter-spacing:17.367120px;}
.ls1e{letter-spacing:20.967120px;}
.ls1d{letter-spacing:24.207120px;}
.ls8{letter-spacing:38.016000px;}
.ls16{letter-spacing:45.926640px;}
.ls2b{letter-spacing:46.286640px;}
.ls6{letter-spacing:1128.810000px;}
.ls29{letter-spacing:1688.025120px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws1e{word-spacing:-60.120000px;}
.wse{word-spacing:-54.000000px;}
.ws19{word-spacing:-48.060000px;}
.ws1a{word-spacing:-47.880000px;}
.ws5{word-spacing:-18.182880px;}
.wsa{word-spacing:-18.051120px;}
.ws4{word-spacing:-18.000000px;}
.ws12{word-spacing:-16.650000px;}
.ws14{word-spacing:-16.640880px;}
.ws11{word-spacing:-16.593120px;}
.ws1c{word-spacing:-16.582080px;}
.ws8{word-spacing:-16.472880px;}
.wsb{word-spacing:-16.468200px;}
.ws13{word-spacing:-16.343280px;}
.ws15{word-spacing:-16.338480px;}
.wsf{word-spacing:-16.331880px;}
.ws1d{word-spacing:-15.210000px;}
.ws0{word-spacing:-15.083280px;}
.ws1{word-spacing:-15.030000px;}
.wsd{word-spacing:-14.796000px;}
.wsc{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.354080px;}
.ws17{word-spacing:-13.282680px;}
.ws1b{word-spacing:-13.231920px;}
.ws16{word-spacing:-13.214880px;}
.ws2{word-spacing:-11.970000px;}
.ws6{word-spacing:-11.625120px;}
.ws7{word-spacing:-11.540880px;}
.ws9{word-spacing:-10.730880px;}
.ws10{word-spacing:0.000000px;}
._5{margin-left:-35.592000px;}
._b{margin-left:-21.111120px;}
._e{margin-left:-19.170480px;}
._25{margin-left:-15.478680px;}
._1b{margin-left:-11.114400px;}
._f{margin-left:-9.647520px;}
._8{margin-left:-8.640000px;}
._20{margin-left:-6.911040px;}
._15{margin-left:-5.771520px;}
._11{margin-left:-4.741560px;}
._3{margin-left:-3.456000px;}
._a{margin-left:-2.349720px;}
._0{margin-left:-1.128960px;}
._2{width:1.199640px;}
._4{width:2.376000px;}
._9{width:3.756000px;}
._12{width:4.977600px;}
._14{width:6.471120px;}
._d{width:7.875720px;}
._7{width:9.288000px;}
._16{width:10.368000px;}
._1c{width:11.640480px;}
._21{width:13.527000px;}
._13{width:15.270480px;}
._29{width:16.416120px;}
._22{width:17.808240px;}
._10{width:19.180320px;}
._c{width:20.440800px;}
._1d{width:21.473040px;}
._23{width:23.605920px;}
._24{width:27.055800px;}
._18{width:28.323720px;}
._26{width:29.454360px;}
._27{width:30.849360px;}
._17{width:33.804000px;}
._6{width:35.532000px;}
._1a{width:36.684000px;}
._19{width:37.872000px;}
._2d{width:39.042720px;}
._2a{width:42.805440px;}
._2b{width:43.935840px;}
._1f{width:48.454200px;}
._1e{width:49.967520px;}
._2c{width:50.973960px;}
._28{width:120.320880px;}
._1{width:285.169920px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.120000px;}
.fsc{font-size:11.880000px;}
.fs3{font-size:29.880000px;}
.fs11{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fsa{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsf{font-size:51.120000px;}
.fsd{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fse{font-size:63.371411px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:78.120000px;}
.fs6{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs7{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:0.360000px;}
.y7{bottom:2.610000px;}
.y3c{bottom:2.880000px;}
.y90{bottom:2.970000px;}
.y93{bottom:3.060000px;}
.y9b{bottom:3.150000px;}
.y33{bottom:3.240000px;}
.y8d{bottom:3.690000px;}
.y94{bottom:3.780000px;}
.y10{bottom:3.870000px;}
.y88{bottom:3.960000px;}
.y22{bottom:4.140000px;}
.y8e{bottom:4.410000px;}
.y5{bottom:8.370000px;}
.y23{bottom:9.360000px;}
.yaa{bottom:10.980000px;}
.yac{bottom:11.340000px;}
.yb3{bottom:11.430000px;}
.y96{bottom:11.520000px;}
.y89{bottom:11.880000px;}
.y8b{bottom:12.060000px;}
.y98{bottom:12.240000px;}
.y8f{bottom:12.780000px;}
.y6{bottom:16.470000px;}
.y3b{bottom:18.450000px;}
.ya9{bottom:18.990000px;}
.y87{bottom:19.890000px;}
.y32{bottom:21.060000px;}
.yf{bottom:22.320000px;}
.yf3{bottom:30.240000px;}
.y44{bottom:32.310000px;}
.ye{bottom:33.210000px;}
.y3a{bottom:33.930000px;}
.y50{bottom:35.640000px;}
.y31{bottom:41.040000px;}
.yf2{bottom:44.010000px;}
.y43{bottom:48.330000px;}
.y8{bottom:49.140000px;}
.y39{bottom:49.500000px;}
.yd{bottom:51.690000px;}
.y4f{bottom:60.030000px;}
.y30{bottom:60.930000px;}
.y38{bottom:64.980000px;}
.yc{bottom:65.820000px;}
.y42{bottom:66.330000px;}
.y4{bottom:73.530000px;}
.y37{bottom:80.550000px;}
.y2f{bottom:80.910000px;}
.y41{bottom:84.240000px;}
.y36{bottom:96.060000px;}
.y2e{bottom:100.890000px;}
.y40{bottom:102.240000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y35{bottom:111.540000px;}
.y81{bottom:112.860000px;}
.yd6{bottom:117.270000px;}
.ya3{bottom:120.060000px;}
.y3f{bottom:120.150000px;}
.y2d{bottom:120.780000px;}
.y4e{bottom:129.240000px;}
.y80{bottom:132.750000px;}
.ya{bottom:136.200000px;}
.yd5{bottom:137.250000px;}
.y3e{bottom:138.150000px;}
.ya2{bottom:139.950000px;}
.y2c{bottom:140.760000px;}
.y4d{bottom:149.220000px;}
.y7f{bottom:152.730000px;}
.yd4{bottom:157.260000px;}
.ya1{bottom:159.960000px;}
.y2b{bottom:160.740000px;}
.y4c{bottom:169.140000px;}
.y7e{bottom:172.740000px;}
.yd3{bottom:177.150000px;}
.ya0{bottom:179.940000px;}
.y2a{bottom:180.630000px;}
.ye4{bottom:182.100000px;}
.y4b{bottom:189.120000px;}
.y7d{bottom:192.630000px;}
.yd2{bottom:197.130000px;}
.y9f{bottom:199.830000px;}
.y29{bottom:200.610000px;}
.ye3{bottom:208.020000px;}
.y4a{bottom:209.100000px;}
.y7c{bottom:212.610000px;}
.yd1{bottom:217.110000px;}
.y9e{bottom:219.810000px;}
.y28{bottom:220.590000px;}
.y49{bottom:228.990000px;}
.y7b{bottom:232.590000px;}
.ye2{bottom:233.850000px;}
.yd0{bottom:237.000000px;}
.y9d{bottom:239.790000px;}
.y27{bottom:240.480000px;}
.y48{bottom:248.970000px;}
.y7a{bottom:252.480000px;}
.ycf{bottom:256.980000px;}
.y9c{bottom:259.680000px;}
.ye1{bottom:259.770000px;}
.y26{bottom:260.490000px;}
.y47{bottom:268.950000px;}
.y79{bottom:272.460000px;}
.yce{bottom:276.960000px;}
.y25{bottom:279.930000px;}
.ye0{bottom:285.600000px;}
.y46{bottom:288.840000px;}
.y78{bottom:292.440000px;}
.y99{bottom:296.580000px;}
.ycd{bottom:296.850000px;}
.y45{bottom:307.830000px;}
.ydf{bottom:311.520000px;}
.y77{bottom:312.330000px;}
.y9a{bottom:313.320000px;}
.ycc{bottom:316.830000px;}
.y24{bottom:320.430000px;}
.y95{bottom:330.420000px;}
.y76{bottom:332.310000px;}
.ycb{bottom:336.810000px;}
.yde{bottom:337.350000px;}
.y97{bottom:347.070000px;}
.y75{bottom:352.290000px;}
.yca{bottom:356.790000px;}
.ydd{bottom:363.270000px;}
.y91{bottom:364.170000px;}
.y74{bottom:372.270000px;}
.yc9{bottom:376.680000px;}
.y92{bottom:380.910000px;}
.ydc{bottom:389.100000px;}
.y73{bottom:392.160000px;}
.yc8{bottom:396.660000px;}
.y8a{bottom:399.000000px;}
.y72{bottom:412.140000px;}
.ydb{bottom:415.020000px;}
.y8c{bottom:415.740000px;}
.yc7{bottom:416.640000px;}
.y71{bottom:432.120000px;}
.y86{bottom:433.740000px;}
.yc6{bottom:436.530000px;}
.yda{bottom:440.850000px;}
.y70{bottom:452.010000px;}
.yc5{bottom:456.510000px;}
.yd9{bottom:466.770000px;}
.y85{bottom:470.460000px;}
.y6f{bottom:471.990000px;}
.y3d{bottom:473.880000px;}
.yc4{bottom:476.490000px;}
.y84{bottom:483.150000px;}
.y34{bottom:490.170000px;}
.y6e{bottom:491.970000px;}
.yd8{bottom:492.600000px;}
.yc3{bottom:496.380000px;}
.y83{bottom:499.170000px;}
.y6d{bottom:511.860000px;}
.y82{bottom:515.100000px;}
.yc2{bottom:516.360000px;}
.yd7{bottom:518.520000px;}
.y6c{bottom:531.840000px;}
.yc1{bottom:536.340000px;}
.y6b{bottom:551.820000px;}
.yc0{bottom:556.230000px;}
.y6a{bottom:571.710000px;}
.ybf{bottom:576.240000px;}
.y69{bottom:591.720000px;}
.ybe{bottom:596.220000px;}
.y68{bottom:611.700000px;}
.y21{bottom:615.120000px;}
.ybd{bottom:616.110000px;}
.y67{bottom:631.590000px;}
.ybc{bottom:636.090000px;}
.y20{bottom:650.670000px;}
.y66{bottom:651.570000px;}
.y1e{bottom:653.550000px;}
.ybb{bottom:656.070000px;}
.y1d{bottom:659.220000px;}
.y65{bottom:671.550000px;}
.yba{bottom:675.960000px;}
.y1c{bottom:677.400000px;}
.y64{bottom:691.440000px;}
.yb9{bottom:695.940000px;}
.y1b{bottom:701.070000px;}
.y63{bottom:711.420000px;}
.yb8{bottom:715.920000px;}
.y62{bottom:731.400000px;}
.yf4{bottom:734.100000px;}
.y1a{bottom:735.270000px;}
.yb7{bottom:735.810000px;}
.yf1{bottom:748.860000px;}
.y61{bottom:751.290000px;}
.yb6{bottom:755.790000px;}
.y19{bottom:757.050000px;}
.y60{bottom:771.270000px;}
.y18{bottom:772.260000px;}
.yb5{bottom:775.770000px;}
.y5f{bottom:791.250000px;}
.y17{bottom:795.930000px;}
.yf0{bottom:804.840000px;}
.y5e{bottom:811.140000px;}
.yb2{bottom:812.580000px;}
.yef{bottom:822.570000px;}
.y16{bottom:827.880000px;}
.yb4{bottom:829.320000px;}
.y5d{bottom:831.120000px;}
.yee{bottom:839.850000px;}
.yb0{bottom:846.060000px;}
.y5c{bottom:851.100000px;}
.yb1{bottom:862.800000px;}
.y15{bottom:863.790000px;}
.yed{bottom:865.680000px;}
.y5b{bottom:871.080000px;}
.yae{bottom:879.450000px;}
.y5a{bottom:890.970000px;}
.yec{bottom:891.600000px;}
.yaf{bottom:896.190000px;}
.y14{bottom:898.800000px;}
.y59{bottom:910.950000px;}
.yab{bottom:912.930000px;}
.yeb{bottom:917.430000px;}
.y13{bottom:927.240000px;}
.yad{bottom:929.580000px;}
.y58{bottom:930.930000px;}
.yea{bottom:943.350000px;}
.ya8{bottom:946.320000px;}
.y57{bottom:950.820000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.ye9{bottom:969.180000px;}
.y56{bottom:970.800000px;}
.ya7{bottom:986.010000px;}
.y55{bottom:990.780000px;}
.ye8{bottom:995.130000px;}
.ya6{bottom:1001.970000px;}
.y54{bottom:1010.700000px;}
.ya5{bottom:1017.900000px;}
.ye7{bottom:1020.960000px;}
.y53{bottom:1030.680000px;}
.ya4{bottom:1033.920000px;}
.ye6{bottom:1046.880000px;}
.y52{bottom:1050.660000px;}
.y51{bottom:1070.550000px;}
.ye5{bottom:1072.710000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h15{height:1.710000px;}
.h16{height:4.273242px;}
.hf{height:4.318066px;}
.h17{height:8.382129px;}
.h3b{height:13.770000px;}
.h20{height:15.480000px;}
.h2e{height:15.930000px;}
.h31{height:16.020000px;}
.h34{height:16.290000px;}
.h33{height:16.380000px;}
.h2c{height:17.280000px;}
.h30{height:17.370000px;}
.hc{height:20.863477px;}
.ha{height:21.082324px;}
.h18{height:21.960000px;}
.h29{height:26.648438px;}
.h4{height:27.630000px;}
.h36{height:31.950000px;}
.h37{height:32.670000px;}
.h38{height:32.760000px;}
.h32{height:33.030000px;}
.h6{height:33.431836px;}
.h2a{height:33.750000px;}
.h3c{height:33.782520px;}
.h2b{height:34.020000px;}
.h2f{height:34.110000px;}
.h27{height:35.442422px;}
.h24{height:36.068555px;}
.h2d{height:37.780313px;}
.h13{height:37.875586px;}
.h19{height:38.100586px;}
.h7{height:39.082324px;}
.h22{height:39.972656px;}
.h1f{height:41.343750px;}
.h5{height:41.978320px;}
.h3{height:42.418652px;}
.h39{height:43.769004px;}
.h14{height:43.995586px;}
.h26{height:44.502891px;}
.h2{height:45.295488px;}
.h25{height:47.438437px;}
.h3a{height:49.552031px;}
.h1d{height:50.004004px;}
.h1{height:50.800781px;}
.h28{height:51.667383px;}
.h3d{height:55.170000px;}
.h23{height:58.271484px;}
.h1b{height:64.875586px;}
.h8{height:65.526152px;}
.h1c{height:68.384188px;}
.h12{height:71.091211px;}
.hd{height:72.418535px;}
.h10{height:76.201172px;}
.hb{height:93.219434px;}
.h11{height:116.542969px;}
.he{height:118.619824px;}
.h1e{height:124.140000px;}
.h9{height:143.220000px;}
.h35{height:144.435586px;}
.h21{height:152.640000px;}
.h1a{height:293.880000px;}
.h0{height:1188.000000px;}
.w2{width:33.660000px;}
.w13{width:34.920000px;}
.wb{width:41.220000px;}
.w17{width:50.760000px;}
.wf{width:60.300000px;}
.wc{width:69.240000px;}
.w14{width:84.330000px;}
.we{width:88.380000px;}
.w16{width:93.780000px;}
.wd{width:106.110000px;}
.w15{width:111.180000px;}
.w11{width:115.950000px;}
.w18{width:118.560000px;}
.w10{width:118.740000px;}
.w9{width:130.080000px;}
.wa{width:146.790000px;}
.w5{width:165.900000px;}
.w12{width:170.460000px;}
.w8{width:217.740000px;}
.w19{width:349.770000px;}
.w7{width:603.240000px;}
.w4{width:648.060000px;}
.w3{width:728.730000px;}
.w6{width:901.530000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xb{left:-8.820000px;}
.x0{left:0.000000px;}
.x3{left:4.320000px;}
.x2d{left:6.749986px;}
.x14{left:8.100000px;}
.x13{left:11.250000px;}
.x3e{left:12.330000px;}
.x31{left:15.120000px;}
.x3b{left:17.460000px;}
.x38{left:18.990000px;}
.x4f{left:20.160000px;}
.x36{left:22.050000px;}
.x40{left:25.650000px;}
.x44{left:27.810000px;}
.x45{left:29.340000px;}
.x43{left:30.690000px;}
.x3c{left:33.210000px;}
.x53{left:34.650000px;}
.x42{left:36.540000px;}
.x23{left:38.340000px;}
.x46{left:39.690000px;}
.x39{left:40.860000px;}
.x41{left:42.930000px;}
.x52{left:45.000000px;}
.x32{left:47.880000px;}
.x1{left:53.999986px;}
.x15{left:55.170000px;}
.x1c{left:57.150000px;}
.x17{left:59.760000px;}
.x49{left:61.470000px;}
.x1d{left:64.980000px;}
.x8{left:70.470000px;}
.x56{left:81.630000px;}
.x30{left:86.130000px;}
.x55{left:87.749986px;}
.x57{left:90.390000px;}
.x18{left:95.580000px;}
.x19{left:99.120000px;}
.x7{left:105.510000px;}
.x2{left:107.999986px;}
.xc{left:115.469986px;}
.xd{left:118.439986px;}
.x4{left:142.740000px;}
.x47{left:167.609986px;}
.x4a{left:178.140000px;}
.x6{left:200.190000px;}
.x33{left:216.930000px;}
.x11{left:220.439986px;}
.x9{left:231.780000px;}
.x22{left:237.000000px;}
.x10{left:243.479986px;}
.x2f{left:267.779986px;}
.x1e{left:278.760000px;}
.x48{left:282.539986px;}
.x1f{left:286.770000px;}
.x24{left:301.259986px;}
.x25{left:308.639986px;}
.x5{left:324.030000px;}
.xf{left:343.739986px;}
.x4b{left:349.320000px;}
.x34{left:364.530000px;}
.x4c{left:384.960000px;}
.x20{left:400.890000px;}
.x26{left:402.599986px;}
.x35{left:406.470000px;}
.x21{left:408.900000px;}
.x27{left:409.979986px;}
.xe{left:464.159986px;}
.x12{left:466.139986px;}
.x4d{left:470.100000px;}
.x37{left:476.430000px;}
.x2e{left:486.059986px;}
.x54{left:513.059986px;}
.x28{left:517.919986px;}
.x29{left:525.299986px;}
.x1a{left:527.280000px;}
.x1b{left:535.470000px;}
.x4e{left:582.000000px;}
.x3a{left:583.260000px;}
.x2a{left:638.879986px;}
.x2b{left:646.259986px;}
.x16{left:659.130000px;}
.x3d{left:672.360000px;}
.x50{left:676.590000px;}
.xa{left:701.700000px;}
.x51{left:728.070000px;}
.x3f{left:733.470000px;}
.x2c{left:735.269986px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v4{vertical-align:-18.560000pt;}
.v8{vertical-align:-11.520000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.120000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:24.000000pt;}
.v7{vertical-align:70.720000pt;}
.ls18{letter-spacing:-0.396267pt;}
.ls2e{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.125333pt;}
.ls26{letter-spacing:-0.119467pt;}
.ls1a{letter-spacing:-0.115200pt;}
.lsc{letter-spacing:-0.082133pt;}
.lsf{letter-spacing:-0.080391pt;}
.lsd{letter-spacing:-0.076267pt;}
.ls1b{letter-spacing:-0.046080pt;}
.ls27{letter-spacing:-0.013760pt;}
.lse{letter-spacing:-0.004160pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.042667pt;}
.ls28{letter-spacing:0.044480pt;}
.ls0{letter-spacing:0.047360pt;}
.ls23{letter-spacing:0.060267pt;}
.ls4{letter-spacing:0.077440pt;}
.ls2d{letter-spacing:0.097067pt;}
.ls2a{letter-spacing:0.100267pt;}
.ls24{letter-spacing:0.123733pt;}
.lsb{letter-spacing:0.130133pt;}
.ls25{letter-spacing:0.149333pt;}
.ls2{letter-spacing:0.157440pt;}
.ls5{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.232000pt;}
.ls19{letter-spacing:0.243733pt;}
.ls13{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.346667pt;}
.ls2c{letter-spacing:0.364267pt;}
.ls10{letter-spacing:0.432000pt;}
.ls15{letter-spacing:0.880000pt;}
.ls22{letter-spacing:1.890560pt;}
.ls12{letter-spacing:2.957440pt;}
.ls1c{letter-spacing:3.277440pt;}
.ls17{letter-spacing:8.320000pt;}
.ls20{letter-spacing:9.037440pt;}
.ls1f{letter-spacing:10.637440pt;}
.ls21{letter-spacing:15.437440pt;}
.ls1e{letter-spacing:18.637440pt;}
.ls1d{letter-spacing:21.517440pt;}
.ls8{letter-spacing:33.792000pt;}
.ls16{letter-spacing:40.823680pt;}
.ls2b{letter-spacing:41.143680pt;}
.ls6{letter-spacing:1003.386667pt;}
.ls29{letter-spacing:1500.466773pt;}
.ws3{word-spacing:-64.000000pt;}
.ws1e{word-spacing:-53.440000pt;}
.wse{word-spacing:-48.000000pt;}
.ws19{word-spacing:-42.720000pt;}
.ws1a{word-spacing:-42.560000pt;}
.ws5{word-spacing:-16.162560pt;}
.wsa{word-spacing:-16.045440pt;}
.ws4{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.800000pt;}
.ws14{word-spacing:-14.791893pt;}
.ws11{word-spacing:-14.749440pt;}
.ws1c{word-spacing:-14.739627pt;}
.ws8{word-spacing:-14.642560pt;}
.wsb{word-spacing:-14.638400pt;}
.ws13{word-spacing:-14.527360pt;}
.ws15{word-spacing:-14.523093pt;}
.wsf{word-spacing:-14.517227pt;}
.ws1d{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.407360pt;}
.ws1{word-spacing:-13.360000pt;}
.wsd{word-spacing:-13.152000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.870293pt;}
.ws17{word-spacing:-11.806827pt;}
.ws1b{word-spacing:-11.761707pt;}
.ws16{word-spacing:-11.746560pt;}
.ws2{word-spacing:-10.640000pt;}
.ws6{word-spacing:-10.333440pt;}
.ws7{word-spacing:-10.258560pt;}
.ws9{word-spacing:-9.538560pt;}
.ws10{word-spacing:0.000000pt;}
._5{margin-left:-31.637333pt;}
._b{margin-left:-18.765440pt;}
._e{margin-left:-17.040427pt;}
._25{margin-left:-13.758827pt;}
._1b{margin-left:-9.879467pt;}
._f{margin-left:-8.575573pt;}
._8{margin-left:-7.680000pt;}
._20{margin-left:-6.143147pt;}
._15{margin-left:-5.130240pt;}
._11{margin-left:-4.214720pt;}
._3{margin-left:-3.072000pt;}
._a{margin-left:-2.088640pt;}
._0{margin-left:-1.003520pt;}
._2{width:1.066347pt;}
._4{width:2.112000pt;}
._9{width:3.338667pt;}
._12{width:4.424533pt;}
._14{width:5.752107pt;}
._d{width:7.000640pt;}
._7{width:8.256000pt;}
._16{width:9.216000pt;}
._1c{width:10.347093pt;}
._21{width:12.024000pt;}
._13{width:13.573760pt;}
._29{width:14.592107pt;}
._22{width:15.829547pt;}
._10{width:17.049173pt;}
._c{width:18.169600pt;}
._1d{width:19.087147pt;}
._23{width:20.983040pt;}
._24{width:24.049600pt;}
._18{width:25.176640pt;}
._26{width:26.181653pt;}
._27{width:27.421653pt;}
._17{width:30.048000pt;}
._6{width:31.584000pt;}
._1a{width:32.608000pt;}
._19{width:33.664000pt;}
._2d{width:34.704640pt;}
._2a{width:38.049280pt;}
._2b{width:39.054080pt;}
._1f{width:43.070400pt;}
._1e{width:44.415573pt;}
._2c{width:45.310187pt;}
._28{width:106.951893pt;}
._1{width:253.484373pt;}
.fs8{font-size:5.440000pt;}
.fsc{font-size:10.560000pt;}
.fs3{font-size:26.560000pt;}
.fs11{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fsa{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsf{font-size:45.440000pt;}
.fsd{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fse{font-size:56.330143pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:69.440000pt;}
.fs6{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs7{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:0.320000pt;}
.y7{bottom:2.320000pt;}
.y3c{bottom:2.560000pt;}
.y90{bottom:2.640000pt;}
.y93{bottom:2.720000pt;}
.y9b{bottom:2.800000pt;}
.y33{bottom:2.880000pt;}
.y8d{bottom:3.280000pt;}
.y94{bottom:3.360000pt;}
.y10{bottom:3.440000pt;}
.y88{bottom:3.520000pt;}
.y22{bottom:3.680000pt;}
.y8e{bottom:3.920000pt;}
.y5{bottom:7.440000pt;}
.y23{bottom:8.320000pt;}
.yaa{bottom:9.760000pt;}
.yac{bottom:10.080000pt;}
.yb3{bottom:10.160000pt;}
.y96{bottom:10.240000pt;}
.y89{bottom:10.560000pt;}
.y8b{bottom:10.720000pt;}
.y98{bottom:10.880000pt;}
.y8f{bottom:11.360000pt;}
.y6{bottom:14.640000pt;}
.y3b{bottom:16.400000pt;}
.ya9{bottom:16.880000pt;}
.y87{bottom:17.680000pt;}
.y32{bottom:18.720000pt;}
.yf{bottom:19.840000pt;}
.yf3{bottom:26.880000pt;}
.y44{bottom:28.720000pt;}
.ye{bottom:29.520000pt;}
.y3a{bottom:30.160000pt;}
.y50{bottom:31.680000pt;}
.y31{bottom:36.480000pt;}
.yf2{bottom:39.120000pt;}
.y43{bottom:42.960000pt;}
.y8{bottom:43.680000pt;}
.y39{bottom:44.000000pt;}
.yd{bottom:45.946667pt;}
.y4f{bottom:53.360000pt;}
.y30{bottom:54.160000pt;}
.y38{bottom:57.760000pt;}
.yc{bottom:58.506667pt;}
.y42{bottom:58.960000pt;}
.y4{bottom:65.360000pt;}
.y37{bottom:71.600000pt;}
.y2f{bottom:71.920000pt;}
.y41{bottom:74.880000pt;}
.y36{bottom:85.386667pt;}
.y2e{bottom:89.680000pt;}
.y40{bottom:90.880000pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y35{bottom:99.146667pt;}
.y81{bottom:100.320000pt;}
.yd6{bottom:104.240000pt;}
.ya3{bottom:106.720000pt;}
.y3f{bottom:106.800000pt;}
.y2d{bottom:107.360000pt;}
.y4e{bottom:114.880000pt;}
.y80{bottom:118.000000pt;}
.ya{bottom:121.066667pt;}
.yd5{bottom:122.000000pt;}
.y3e{bottom:122.800000pt;}
.ya2{bottom:124.400000pt;}
.y2c{bottom:125.120000pt;}
.y4d{bottom:132.640000pt;}
.y7f{bottom:135.760000pt;}
.yd4{bottom:139.786667pt;}
.ya1{bottom:142.186667pt;}
.y2b{bottom:142.880000pt;}
.y4c{bottom:150.346667pt;}
.y7e{bottom:153.546667pt;}
.yd3{bottom:157.466667pt;}
.ya0{bottom:159.946667pt;}
.y2a{bottom:160.560000pt;}
.ye4{bottom:161.866667pt;}
.y4b{bottom:168.106667pt;}
.y7d{bottom:171.226667pt;}
.yd2{bottom:175.226667pt;}
.y9f{bottom:177.626667pt;}
.y29{bottom:178.320000pt;}
.ye3{bottom:184.906667pt;}
.y4a{bottom:185.866667pt;}
.y7c{bottom:188.986667pt;}
.yd1{bottom:192.986667pt;}
.y9e{bottom:195.386667pt;}
.y28{bottom:196.080000pt;}
.y49{bottom:203.546667pt;}
.y7b{bottom:206.746667pt;}
.ye2{bottom:207.866667pt;}
.yd0{bottom:210.666667pt;}
.y9d{bottom:213.146667pt;}
.y27{bottom:213.760000pt;}
.y48{bottom:221.306667pt;}
.y7a{bottom:224.426667pt;}
.ycf{bottom:228.426667pt;}
.y9c{bottom:230.826667pt;}
.ye1{bottom:230.906667pt;}
.y26{bottom:231.546667pt;}
.y47{bottom:239.066667pt;}
.y79{bottom:242.186667pt;}
.yce{bottom:246.186667pt;}
.y25{bottom:248.826667pt;}
.ye0{bottom:253.866667pt;}
.y46{bottom:256.746667pt;}
.y78{bottom:259.946667pt;}
.y99{bottom:263.626667pt;}
.ycd{bottom:263.866667pt;}
.y45{bottom:273.626667pt;}
.ydf{bottom:276.906667pt;}
.y77{bottom:277.626667pt;}
.y9a{bottom:278.506667pt;}
.ycc{bottom:281.626667pt;}
.y24{bottom:284.826667pt;}
.y95{bottom:293.706667pt;}
.y76{bottom:295.386667pt;}
.ycb{bottom:299.386667pt;}
.yde{bottom:299.866667pt;}
.y97{bottom:308.506667pt;}
.y75{bottom:313.146667pt;}
.yca{bottom:317.146667pt;}
.ydd{bottom:322.906667pt;}
.y91{bottom:323.706667pt;}
.y74{bottom:330.906667pt;}
.yc9{bottom:334.826667pt;}
.y92{bottom:338.586667pt;}
.ydc{bottom:345.866667pt;}
.y73{bottom:348.586667pt;}
.yc8{bottom:352.586667pt;}
.y8a{bottom:354.666667pt;}
.y72{bottom:366.346667pt;}
.ydb{bottom:368.906667pt;}
.y8c{bottom:369.546667pt;}
.yc7{bottom:370.346667pt;}
.y71{bottom:384.106667pt;}
.y86{bottom:385.546667pt;}
.yc6{bottom:388.026667pt;}
.yda{bottom:391.866667pt;}
.y70{bottom:401.786667pt;}
.yc5{bottom:405.786667pt;}
.yd9{bottom:414.906667pt;}
.y85{bottom:418.186667pt;}
.y6f{bottom:419.546667pt;}
.y3d{bottom:421.226667pt;}
.yc4{bottom:423.546667pt;}
.y84{bottom:429.466667pt;}
.y34{bottom:435.706667pt;}
.y6e{bottom:437.306667pt;}
.yd8{bottom:437.866667pt;}
.yc3{bottom:441.226667pt;}
.y83{bottom:443.706667pt;}
.y6d{bottom:454.986667pt;}
.y82{bottom:457.866667pt;}
.yc2{bottom:458.986667pt;}
.yd7{bottom:460.906667pt;}
.y6c{bottom:472.746667pt;}
.yc1{bottom:476.746667pt;}
.y6b{bottom:490.506667pt;}
.yc0{bottom:494.426667pt;}
.y6a{bottom:508.186667pt;}
.ybf{bottom:512.213333pt;}
.y69{bottom:525.973333pt;}
.ybe{bottom:529.973333pt;}
.y68{bottom:543.733333pt;}
.y21{bottom:546.773333pt;}
.ybd{bottom:547.653333pt;}
.y67{bottom:561.413333pt;}
.ybc{bottom:565.413333pt;}
.y20{bottom:578.373333pt;}
.y66{bottom:579.173333pt;}
.y1e{bottom:580.933333pt;}
.ybb{bottom:583.173333pt;}
.y1d{bottom:585.973333pt;}
.y65{bottom:596.933333pt;}
.yba{bottom:600.853333pt;}
.y1c{bottom:602.133333pt;}
.y64{bottom:614.613333pt;}
.yb9{bottom:618.613333pt;}
.y1b{bottom:623.173333pt;}
.y63{bottom:632.373333pt;}
.yb8{bottom:636.373333pt;}
.y62{bottom:650.133333pt;}
.yf4{bottom:652.533333pt;}
.y1a{bottom:653.573333pt;}
.yb7{bottom:654.053333pt;}
.yf1{bottom:665.653333pt;}
.y61{bottom:667.813333pt;}
.yb6{bottom:671.813333pt;}
.y19{bottom:672.933333pt;}
.y60{bottom:685.573333pt;}
.y18{bottom:686.453333pt;}
.yb5{bottom:689.573333pt;}
.y5f{bottom:703.333333pt;}
.y17{bottom:707.493333pt;}
.yf0{bottom:715.413333pt;}
.y5e{bottom:721.013333pt;}
.yb2{bottom:722.293333pt;}
.yef{bottom:731.173333pt;}
.y16{bottom:735.893333pt;}
.yb4{bottom:737.173333pt;}
.y5d{bottom:738.773333pt;}
.yee{bottom:746.533333pt;}
.yb0{bottom:752.053333pt;}
.y5c{bottom:756.533333pt;}
.yb1{bottom:766.933333pt;}
.y15{bottom:767.813333pt;}
.yed{bottom:769.493333pt;}
.y5b{bottom:774.293333pt;}
.yae{bottom:781.733333pt;}
.y5a{bottom:791.973333pt;}
.yec{bottom:792.533333pt;}
.yaf{bottom:796.613333pt;}
.y14{bottom:798.933333pt;}
.y59{bottom:809.733333pt;}
.yab{bottom:811.493333pt;}
.yeb{bottom:815.493333pt;}
.y13{bottom:824.213333pt;}
.yad{bottom:826.293333pt;}
.y58{bottom:827.493333pt;}
.yea{bottom:838.533333pt;}
.ya8{bottom:841.173333pt;}
.y57{bottom:845.173333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.ye9{bottom:861.493333pt;}
.y56{bottom:862.933333pt;}
.ya7{bottom:876.453333pt;}
.y55{bottom:880.693333pt;}
.ye8{bottom:884.560000pt;}
.ya6{bottom:890.640000pt;}
.y54{bottom:898.400000pt;}
.ya5{bottom:904.800000pt;}
.ye7{bottom:907.520000pt;}
.y53{bottom:916.160000pt;}
.ya4{bottom:919.040000pt;}
.ye6{bottom:930.560000pt;}
.y52{bottom:933.920000pt;}
.y51{bottom:951.600000pt;}
.ye5{bottom:953.520000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h15{height:1.520000pt;}
.h16{height:3.798437pt;}
.hf{height:3.838281pt;}
.h17{height:7.450781pt;}
.h3b{height:12.240000pt;}
.h20{height:13.760000pt;}
.h2e{height:14.160000pt;}
.h31{height:14.240000pt;}
.h34{height:14.480000pt;}
.h33{height:14.560000pt;}
.h2c{height:15.360000pt;}
.h30{height:15.440000pt;}
.hc{height:18.545312pt;}
.ha{height:18.739844pt;}
.h18{height:19.520000pt;}
.h29{height:23.687500pt;}
.h4{height:24.560000pt;}
.h36{height:28.400000pt;}
.h37{height:29.040000pt;}
.h38{height:29.120000pt;}
.h32{height:29.360000pt;}
.h6{height:29.717188pt;}
.h2a{height:30.000000pt;}
.h3c{height:30.028906pt;}
.h2b{height:30.240000pt;}
.h2f{height:30.320000pt;}
.h27{height:31.504375pt;}
.h24{height:32.060937pt;}
.h2d{height:33.582500pt;}
.h13{height:33.667187pt;}
.h19{height:33.867188pt;}
.h7{height:34.739844pt;}
.h22{height:35.531250pt;}
.h1f{height:36.750000pt;}
.h5{height:37.314062pt;}
.h3{height:37.705469pt;}
.h39{height:38.905781pt;}
.h14{height:39.107187pt;}
.h26{height:39.558125pt;}
.h2{height:40.262656pt;}
.h25{height:42.167500pt;}
.h3a{height:44.046250pt;}
.h1d{height:44.448003pt;}
.h1{height:45.156250pt;}
.h28{height:45.926562pt;}
.h3d{height:49.040000pt;}
.h23{height:51.796875pt;}
.h1b{height:57.667187pt;}
.h8{height:58.245469pt;}
.h1c{height:60.785945pt;}
.h12{height:63.192187pt;}
.hd{height:64.372031pt;}
.h10{height:67.734375pt;}
.hb{height:82.861719pt;}
.h11{height:103.593750pt;}
.he{height:105.439844pt;}
.h1e{height:110.346667pt;}
.h9{height:127.306667pt;}
.h35{height:128.387188pt;}
.h21{height:135.680000pt;}
.h1a{height:261.226667pt;}
.h0{height:1056.000000pt;}
.w2{width:29.920000pt;}
.w13{width:31.040000pt;}
.wb{width:36.640000pt;}
.w17{width:45.120000pt;}
.wf{width:53.600000pt;}
.wc{width:61.546667pt;}
.w14{width:74.960000pt;}
.we{width:78.560000pt;}
.w16{width:83.360000pt;}
.wd{width:94.320000pt;}
.w15{width:98.826667pt;}
.w11{width:103.066667pt;}
.w18{width:105.386667pt;}
.w10{width:105.546667pt;}
.w9{width:115.626667pt;}
.wa{width:130.480000pt;}
.w5{width:147.466667pt;}
.w12{width:151.520000pt;}
.w8{width:193.546667pt;}
.w19{width:310.906667pt;}
.w7{width:536.213333pt;}
.w4{width:576.053333pt;}
.w3{width:647.760000pt;}
.w6{width:801.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xb{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x3{left:3.840000pt;}
.x2d{left:5.999988pt;}
.x14{left:7.200000pt;}
.x13{left:10.000000pt;}
.x3e{left:10.960000pt;}
.x31{left:13.440000pt;}
.x3b{left:15.520000pt;}
.x38{left:16.880000pt;}
.x4f{left:17.920000pt;}
.x36{left:19.600000pt;}
.x40{left:22.800000pt;}
.x44{left:24.720000pt;}
.x45{left:26.080000pt;}
.x43{left:27.280000pt;}
.x3c{left:29.520000pt;}
.x53{left:30.800000pt;}
.x42{left:32.480000pt;}
.x23{left:34.080000pt;}
.x46{left:35.280000pt;}
.x39{left:36.320000pt;}
.x41{left:38.160000pt;}
.x52{left:40.000000pt;}
.x32{left:42.560000pt;}
.x1{left:47.999988pt;}
.x15{left:49.040000pt;}
.x1c{left:50.800000pt;}
.x17{left:53.120000pt;}
.x49{left:54.640000pt;}
.x1d{left:57.760000pt;}
.x8{left:62.640000pt;}
.x56{left:72.560000pt;}
.x30{left:76.560000pt;}
.x55{left:77.999988pt;}
.x57{left:80.346667pt;}
.x18{left:84.960000pt;}
.x19{left:88.106667pt;}
.x7{left:93.786667pt;}
.x2{left:95.999988pt;}
.xc{left:102.639988pt;}
.xd{left:105.279988pt;}
.x4{left:126.880000pt;}
.x47{left:148.986655pt;}
.x4a{left:158.346667pt;}
.x6{left:177.946667pt;}
.x33{left:192.826667pt;}
.x11{left:195.946655pt;}
.x9{left:206.026667pt;}
.x22{left:210.666667pt;}
.x10{left:216.426655pt;}
.x2f{left:238.026655pt;}
.x1e{left:247.786667pt;}
.x48{left:251.146655pt;}
.x1f{left:254.906667pt;}
.x24{left:267.786655pt;}
.x25{left:274.346655pt;}
.x5{left:288.026667pt;}
.xf{left:305.546655pt;}
.x4b{left:310.506667pt;}
.x34{left:324.026667pt;}
.x4c{left:342.186667pt;}
.x20{left:356.346667pt;}
.x26{left:357.866655pt;}
.x35{left:361.306667pt;}
.x21{left:363.466667pt;}
.x27{left:364.426655pt;}
.xe{left:412.586655pt;}
.x12{left:414.346655pt;}
.x4d{left:417.866667pt;}
.x37{left:423.493333pt;}
.x2e{left:432.053321pt;}
.x54{left:456.053321pt;}
.x28{left:460.373321pt;}
.x29{left:466.933321pt;}
.x1a{left:468.693333pt;}
.x1b{left:475.973333pt;}
.x4e{left:517.333333pt;}
.x3a{left:518.453333pt;}
.x2a{left:567.893321pt;}
.x2b{left:574.453321pt;}
.x16{left:585.893333pt;}
.x3d{left:597.653333pt;}
.x50{left:601.413333pt;}
.xa{left:623.733333pt;}
.x51{left:647.173333pt;}
.x3f{left:651.973333pt;}
.x2c{left:653.573321pt;}
}




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