
    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_38600670f80207a55a659eb3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9fc87d64ae78ff41a8e06f84.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_9069511a6dd9acf6cd4973e9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5f5c2e314f504c809ea329d6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_14e452aceeef8eafe9a8cc62.woff')format("woff");}.ff5{font-family:ff5;line-height:1.110840;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_b80ca789056889e543fccf0a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_51406c9d334c7f27cac5c463.woff')format("woff");}.ff7{font-family:ff7;line-height:1.129395;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_6e1726b2232b1b306935acf8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_176fc6f36bd69cec489edd5e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_73cc44753a46a7fc5d1d3cdf.woff')format("woff");}.ffa{font-family:ffa;line-height:1.019531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,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);}
.v2{vertical-align:-64.800000px;}
.v1{vertical-align:-47.520000px;}
.v0{vertical-align:0.000000px;}
.ls45{letter-spacing:-14.241600px;}
.ls5f{letter-spacing:-9.884160px;}
.ls5a{letter-spacing:-9.377280px;}
.ls50{letter-spacing:-8.933760px;}
.ls5b{letter-spacing:-8.616960px;}
.ls55{letter-spacing:-8.173440px;}
.ls40{letter-spacing:-8.015040px;}
.ls3a{letter-spacing:-7.948800px;}
.ls53{letter-spacing:-7.666560px;}
.ls52{letter-spacing:-7.603200px;}
.ls5d{letter-spacing:-7.349760px;}
.ls62{letter-spacing:-7.223040px;}
.ls41{letter-spacing:-6.557760px;}
.ls5e{letter-spacing:-6.462720px;}
.ls37{letter-spacing:-6.292800px;}
.ls56{letter-spacing:-5.829120px;}
.ls49{letter-spacing:-5.100480px;}
.ls38{letter-spacing:-5.034240px;}
.ls3b{letter-spacing:-4.570560px;}
.ls44{letter-spacing:-3.709440px;}
.ls4d{letter-spacing:-3.548160px;}
.ls4e{letter-spacing:-3.358080px;}
.ls36{letter-spacing:-3.240000px;}
.ls43{letter-spacing:-3.047040px;}
.ls46{letter-spacing:-2.583360px;}
.ls4b{letter-spacing:-2.280960px;}
.ls3d{letter-spacing:-2.252160px;}
.ls4c{letter-spacing:-1.774080px;}
.ls33{letter-spacing:-1.662000px;}
.lse{letter-spacing:-1.512000px;}
.ls57{letter-spacing:-1.457280px;}
.lsd{letter-spacing:-1.440000px;}
.ls2d{letter-spacing:-1.134000px;}
.ls5c{letter-spacing:-1.077120px;}
.ls12{letter-spacing:-1.056000px;}
.ls2e{letter-spacing:-1.026000px;}
.ls60{letter-spacing:-1.013760px;}
.ls10{letter-spacing:-0.720000px;}
.ls59{letter-spacing:-0.696960px;}
.ls1f{letter-spacing:-0.612000px;}
.ls42{letter-spacing:-0.596160px;}
.ls2f{letter-spacing:-0.567600px;}
.ls15{letter-spacing:-0.439800px;}
.ls1e{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.334200px;}
.ls4f{letter-spacing:-0.316800px;}
.ls16{letter-spacing:-0.305400px;}
.ls2c{letter-spacing:-0.262200px;}
.ls58{letter-spacing:-0.253440px;}
.ls32{letter-spacing:-0.226200px;}
.ls13{letter-spacing:-0.219000px;}
.ls14{letter-spacing:-0.114000px;}
.lsc{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.051840px;}
.ls25{letter-spacing:0.109200px;}
.ls1d{letter-spacing:0.109440px;}
.ls2b{letter-spacing:0.152400px;}
.ls19{letter-spacing:0.152640px;}
.lsa{letter-spacing:0.166800px;}
.ls11{letter-spacing:0.259800px;}
.ls27{letter-spacing:0.262080px;}
.ls24{letter-spacing:0.262200px;}
.ls39{letter-spacing:0.264960px;}
.ls26{letter-spacing:0.272640px;}
.ls18{letter-spacing:0.305280px;}
.ls17{letter-spacing:0.305400px;}
.ls1c{letter-spacing:0.332640px;}
.ls0{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.382080px;}
.ls3{letter-spacing:0.438600px;}
.ls4{letter-spacing:0.485951px;}
.ls9{letter-spacing:0.552260px;}
.ls4a{letter-spacing:0.662400px;}
.ls1b{letter-spacing:0.720000px;}
.ls51{letter-spacing:0.760320px;}
.ls3c{letter-spacing:0.927360px;}
.ls61{letter-spacing:1.330560px;}
.ls21{letter-spacing:1.440000px;}
.ls3e{letter-spacing:1.722240px;}
.ls29{letter-spacing:2.160000px;}
.ls8{letter-spacing:2.545920px;}
.ls2a{letter-spacing:2.880000px;}
.ls3f{letter-spacing:2.914560px;}
.ls47{letter-spacing:3.378240px;}
.ls20{letter-spacing:3.600000px;}
.ls48{letter-spacing:3.908160px;}
.ls31{letter-spacing:4.320000px;}
.ls54{letter-spacing:4.878720px;}
.ls5{letter-spacing:5.040000px;}
.ls28{letter-spacing:5.760000px;}
.ls22{letter-spacing:6.480000px;}
.ls35{letter-spacing:7.920000px;}
.ls2{letter-spacing:8.640000px;}
.ls30{letter-spacing:15.660000px;}
.ls23{letter-spacing:17.585280px;}
.ls1a{letter-spacing:19.745280px;}
.ls1{letter-spacing:33.505920px;}
.ls7{letter-spacing:36.385920px;}
.lsb{letter-spacing:173.520000px;}
.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;}
}
.ws22{word-spacing:-19.938240px;}
.ws2c{word-spacing:-17.170560px;}
.wsd{word-spacing:-16.865400px;}
.ws21{word-spacing:-16.824960px;}
.ws11{word-spacing:-16.822200px;}
.ws13{word-spacing:-16.712400px;}
.ws12{word-spacing:-16.669200px;}
.wsb{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.297800px;}
.ws5{word-spacing:-16.278600px;}
.wsa{word-spacing:-16.254600px;}
.wse{word-spacing:-16.145400px;}
.ws9{word-spacing:-16.006800px;}
.ws17{word-spacing:-15.992400px;}
.wsf{word-spacing:-15.948000px;}
.ws1{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.726000px;}
.ws7{word-spacing:-15.621000px;}
.ws16{word-spacing:-15.534000px;}
.ws4{word-spacing:-15.505800px;}
.ws15{word-spacing:-15.426000px;}
.ws29{word-spacing:-15.143040px;}
.ws10{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.784000px;}
.ws2{word-spacing:-14.400000px;}
.ws3{word-spacing:-14.328000px;}
.ws24{word-spacing:-14.065920px;}
.ws0{word-spacing:-13.860000px;}
.ws23{word-spacing:-13.559040px;}
.ws1e{word-spacing:-13.512960px;}
.ws1f{word-spacing:-12.850560px;}
.ws25{word-spacing:-12.291840px;}
.ws1a{word-spacing:-12.060000px;}
.ws1d{word-spacing:-11.989440px;}
.ws1c{word-spacing:-11.525760px;}
.ws19{word-spacing:-10.476000px;}
.ws18{word-spacing:-10.440000px;}
.ws1b{word-spacing:-10.267200px;}
.ws2b{word-spacing:-8.490240px;}
.ws2a{word-spacing:-8.236800px;}
.ws28{word-spacing:-6.462720px;}
.wsc{word-spacing:0.000000px;}
.ws20{word-spacing:10.635840px;}
.ws26{word-spacing:22.320000px;}
.ws27{word-spacing:38.248704px;}
._a{margin-left:-5.929203px;}
._9{margin-left:-4.504325px;}
._f{margin-left:-3.382064px;}
._1{margin-left:-2.380559px;}
._0{margin-left:-1.013760px;}
._4{width:1.137762px;}
._8{width:3.080640px;}
._6{width:4.601280px;}
._7{width:5.649839px;}
._2{width:7.452480px;}
._3{width:8.555040px;}
._c{width:9.729055px;}
._b{width:10.818736px;}
._d{width:12.083520px;}
._e{width:13.959182px;}
._11{width:15.133440px;}
._16{width:16.944318px;}
._12{width:19.607040px;}
._13{width:22.140601px;}
._5{width:24.123360px;}
._14{width:28.620960px;}
._15{width:38.160000px;}
._10{width:199.416000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.000000px;}
.fs4{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:41.904000px;}
.fs9{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yde{bottom:10.590000px;}
.yda{bottom:13.035000px;}
.yd6{bottom:13.395000px;}
.yd2{bottom:18.750000px;}
.ydd{bottom:27.690000px;}
.yd9{bottom:28.155000px;}
.yd5{bottom:28.515000px;}
.yd1{bottom:33.870000px;}
.ydc{bottom:40.110000px;}
.yd8{bottom:43.275000px;}
.yd4{bottom:43.635000px;}
.yd0{bottom:48.990000px;}
.yd7{bottom:54.075000px;}
.yd3{bottom:54.435000px;}
.y1{bottom:208.650000px;}
.ya4{bottom:229.890000px;}
.yce{bottom:230.970000px;}
.y33{bottom:238.710000px;}
.y62{bottom:244.110000px;}
.y91{bottom:247.170000px;}
.ya3{bottom:248.790000px;}
.ycd{bottom:249.870000px;}
.y32{bottom:256.710000px;}
.y61{bottom:263.010000px;}
.y90{bottom:266.250000px;}
.ya2{bottom:267.870000px;}
.ycc{bottom:268.590000px;}
.y31{bottom:274.710000px;}
.y60{bottom:282.090000px;}
.y8f{bottom:285.150000px;}
.ya1{bottom:286.770000px;}
.ycb{bottom:287.490000px;}
.y30{bottom:292.710000px;}
.y5f{bottom:300.990000px;}
.y8e{bottom:304.230000px;}
.ya0{bottom:305.850000px;}
.yca{bottom:306.210000px;}
.y2f{bottom:310.530000px;}
.y5e{bottom:320.070000px;}
.y8d{bottom:323.130000px;}
.y9f{bottom:324.750000px;}
.yc9{bottom:325.110000px;}
.y2e{bottom:327.090000px;}
.y2d{bottom:338.790000px;}
.y5d{bottom:338.970000px;}
.y8c{bottom:342.210000px;}
.y9e{bottom:343.650000px;}
.yc8{bottom:343.830000px;}
.y2c{bottom:356.790000px;}
.y5c{bottom:357.870000px;}
.y8b{bottom:361.110000px;}
.y9d{bottom:362.730000px;}
.y2b{bottom:374.790000px;}
.y5b{bottom:376.950000px;}
.y8a{bottom:380.010000px;}
.yc7{bottom:381.450000px;}
.y9c{bottom:381.630000px;}
.y2a{bottom:391.215000px;}
.y5a{bottom:395.895000px;}
.y89{bottom:399.135000px;}
.yc6{bottom:400.395000px;}
.y9b{bottom:400.575000px;}
.y29{bottom:403.095000px;}
.y59{bottom:414.975000px;}
.y88{bottom:418.035000px;}
.yc5{bottom:419.115000px;}
.y9a{bottom:419.475000px;}
.y28{bottom:421.995000px;}
.y58{bottom:433.875000px;}
.y87{bottom:437.115000px;}
.yc4{bottom:438.015000px;}
.y99{bottom:438.195000px;}
.y27{bottom:451.155000px;}
.y57{bottom:452.775000px;}
.y86{bottom:456.015000px;}
.yc3{bottom:456.735000px;}
.y98{bottom:457.095000px;}
.y26{bottom:469.515000px;}
.y56{bottom:471.855000px;}
.y85{bottom:474.915000px;}
.yc2{bottom:475.635000px;}
.y97{bottom:475.815000px;}
.y25{bottom:486.795000px;}
.y55{bottom:490.755000px;}
.y84{bottom:493.995000px;}
.yc1{bottom:494.355000px;}
.y96{bottom:494.715000px;}
.yf6{bottom:497.595000px;}
.y24{bottom:504.975000px;}
.y54{bottom:509.835000px;}
.y83{bottom:512.895000px;}
.yc0{bottom:513.255000px;}
.y95{bottom:513.435000px;}
.yf5{bottom:515.775000px;}
.y23{bottom:522.975000px;}
.y53{bottom:528.735000px;}
.y82{bottom:531.975000px;}
.y94{bottom:532.335000px;}
.yf4{bottom:533.775000px;}
.y22{bottom:541.155000px;}
.y52{bottom:547.815000px;}
.y81{bottom:550.875000px;}
.y93{bottom:551.055000px;}
.yf3{bottom:551.955000px;}
.y21{bottom:559.335000px;}
.y51{bottom:566.715000px;}
.ybf{bottom:567.075000px;}
.y80{bottom:569.775000px;}
.y92{bottom:569.955000px;}
.yf2{bottom:570.135000px;}
.ybe{bottom:574.635000px;}
.y20{bottom:577.335000px;}
.y50{bottom:585.615000px;}
.yf1{bottom:588.135000px;}
.y7f{bottom:588.855000px;}
.ybd{bottom:592.815000px;}
.y1f{bottom:595.515000px;}
.y4f{bottom:604.695000px;}
.yf0{bottom:606.315000px;}
.ybc{bottom:607.575000px;}
.ydb{bottom:607.680000px;}
.y7e{bottom:607.755000px;}
.y1e{bottom:613.515000px;}
.y4e{bottom:623.595000px;}
.yef{bottom:624.495000px;}
.y7d{bottom:626.835000px;}
.y1d{bottom:631.695000px;}
.yee{bottom:642.525000px;}
.y4d{bottom:642.705000px;}
.y7c{bottom:645.765000px;}
.y1c{bottom:649.905000px;}
.yed{bottom:660.705000px;}
.y4c{bottom:661.605000px;}
.y7b{bottom:664.665000px;}
.ybb{bottom:665.205000px;}
.y1b{bottom:667.905000px;}
.yec{bottom:678.705000px;}
.y4b{bottom:680.505000px;}
.y7a{bottom:683.745000px;}
.yba{bottom:684.105000px;}
.y1a{bottom:686.085000px;}
.yeb{bottom:696.885000px;}
.y4a{bottom:699.585000px;}
.y79{bottom:702.645000px;}
.yb9{bottom:703.185000px;}
.y19{bottom:704.085000px;}
.yea{bottom:715.065000px;}
.y49{bottom:718.485000px;}
.y78{bottom:721.725000px;}
.yb8{bottom:722.085000px;}
.y18{bottom:722.265000px;}
.ye9{bottom:733.065000px;}
.y48{bottom:737.565000px;}
.y17{bottom:740.445000px;}
.y77{bottom:740.625000px;}
.yb7{bottom:741.165000px;}
.ye8{bottom:751.245000px;}
.y47{bottom:756.465000px;}
.y16{bottom:758.445000px;}
.y76{bottom:759.705000px;}
.yb6{bottom:760.065000px;}
.ye7{bottom:769.245000px;}
.y46{bottom:775.365000px;}
.y15{bottom:776.625000px;}
.y75{bottom:778.605000px;}
.yb5{bottom:778.965000px;}
.y45{bottom:794.445000px;}
.y14{bottom:794.805000px;}
.y74{bottom:797.505000px;}
.yb4{bottom:798.045000px;}
.y13{bottom:812.805000px;}
.y44{bottom:813.345000px;}
.y73{bottom:816.585000px;}
.yb3{bottom:816.945000px;}
.y12{bottom:830.985000px;}
.y43{bottom:832.425000px;}
.y72{bottom:835.485000px;}
.yb2{bottom:836.025000px;}
.y11{bottom:848.985000px;}
.y42{bottom:851.325000px;}
.y71{bottom:854.565000px;}
.yb1{bottom:854.925000px;}
.y10{bottom:867.165000px;}
.y41{bottom:870.225000px;}
.y70{bottom:873.465000px;}
.yb0{bottom:873.825000px;}
.ye6{bottom:874.005000px;}
.yf{bottom:885.345000px;}
.y40{bottom:889.305000px;}
.y6f{bottom:892.365000px;}
.yaf{bottom:892.950000px;}
.ye{bottom:903.390000px;}
.y3f{bottom:908.250000px;}
.y6e{bottom:911.490000px;}
.yae{bottom:911.850000px;}
.yd{bottom:921.570000px;}
.y3e{bottom:927.330000px;}
.y6d{bottom:930.390000px;}
.yad{bottom:930.930000px;}
.yc{bottom:939.570000px;}
.y3d{bottom:946.230000px;}
.y6c{bottom:949.470000px;}
.yac{bottom:949.830000px;}
.yb{bottom:957.750000px;}
.y3c{bottom:965.130000px;}
.y6b{bottom:968.370000px;}
.yab{bottom:968.730000px;}
.ye5{bottom:968.910000px;}
.ya{bottom:975.930000px;}
.y3b{bottom:982.590000px;}
.y6a{bottom:987.270000px;}
.yaa{bottom:987.810000px;}
.y9{bottom:993.930000px;}
.y3a{bottom:994.290000px;}
.y69{bottom:1006.350000px;}
.ya9{bottom:1006.710000px;}
.y8{bottom:1012.110000px;}
.y39{bottom:1012.470000px;}
.ya8{bottom:1022.910000px;}
.y68{bottom:1025.250000px;}
.ye4{bottom:1025.790000px;}
.y7{bottom:1030.290000px;}
.y38{bottom:1030.470000px;}
.ya7{bottom:1030.650000px;}
.y67{bottom:1044.330000px;}
.ye3{bottom:1044.690000px;}
.y6{bottom:1048.290000px;}
.y37{bottom:1048.650000px;}
.ya6{bottom:1048.830000px;}
.y66{bottom:1063.230000px;}
.ya5{bottom:1063.410000px;}
.ycf{bottom:1063.440000px;}
.ye2{bottom:1063.770000px;}
.y5{bottom:1066.470000px;}
.y36{bottom:1066.650000px;}
.y65{bottom:1082.130000px;}
.ye1{bottom:1082.670000px;}
.y4{bottom:1084.470000px;}
.y35{bottom:1084.830000px;}
.y64{bottom:1101.210000px;}
.ye0{bottom:1101.390000px;}
.y3{bottom:1102.650000px;}
.y34{bottom:1103.010000px;}
.y63{bottom:1120.110000px;}
.ydf{bottom:1120.290000px;}
.y2{bottom:1120.830000px;}
.h16{height:17.666016px;}
.hb{height:35.314453px;}
.hf{height:35.332031px;}
.h9{height:36.281250px;}
.h19{height:37.437188px;}
.h1a{height:37.566281px;}
.h18{height:40.985156px;}
.h1b{height:41.126484px;}
.h1e{height:43.246406px;}
.h1d{height:47.344922px;}
.h2{height:52.998047px;}
.h1c{height:54.000000px;}
.hc{height:56.646563px;}
.h14{height:59.221406px;}
.h10{height:59.383125px;}
.h6{height:60.226875px;}
.ha{height:62.153438px;}
.h5{height:62.184375px;}
.h3{height:63.855000px;}
.h12{height:64.978594px;}
.h11{height:65.010937px;}
.h4{height:65.124096px;}
.h7{height:66.757500px;}
.h15{height:68.084282px;}
.h13{height:68.956875px;}
.h17{height:72.000000px;}
.h8{height:72.562500px;}
.h1{height:482.250000px;}
.h0{height:482.404500px;}
.he{height:1263.000000px;}
.hd{height:1263.060000px;}
.w0{width:886.974000px;}
.w1{width:887.250000px;}
.w4{width:892.979987px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:134.430000px;}
.x15{left:140.435987px;}
.x3{left:141.810000px;}
.x38{left:146.736000px;}
.x17{left:151.049987px;}
.x2{left:166.464000px;}
.x1d{left:167.549987px;}
.x16{left:172.469987px;}
.x1f{left:175.829987px;}
.xd{left:178.524000px;}
.x1e{left:198.149987px;}
.x19{left:226.829987px;}
.x6{left:231.804000px;}
.x8{left:263.889000px;}
.x7{left:267.129000px;}
.x21{left:291.809987px;}
.x2d{left:302.009987px;}
.x10{left:309.789000px;}
.x2e{left:311.009987px;}
.x20{left:319.349987px;}
.x2f{left:320.909987px;}
.x1a{left:347.294987px;}
.x1c{left:349.274987px;}
.xe{left:358.929000px;}
.x31{left:387.329987px;}
.x30{left:388.409987px;}
.x32{left:405.509987px;}
.x25{left:425.264987px;}
.x23{left:426.524987px;}
.x22{left:428.864987px;}
.x1{left:430.419000px;}
.x14{left:436.424987px;}
.x24{left:440.384987px;}
.xf{left:467.139000px;}
.x33{left:476.429987px;}
.x34{left:478.049987px;}
.x35{left:489.929987px;}
.x11{left:503.679000px;}
.xb{left:518.259000px;}
.x29{left:537.299987px;}
.x27{left:545.399987px;}
.x36{left:550.829987px;}
.x26{left:554.939987px;}
.x28{left:562.859987px;}
.x37{left:566.489987px;}
.x12{left:579.324000px;}
.x2a{left:672.194987px;}
.x2c{left:673.994987px;}
.x5{left:684.084000px;}
.x2b{left:687.494987px;}
.x9{left:704.424000px;}
.xa{left:723.504000px;}
.x4{left:743.874000px;}
.x13{left:746.934000px;}
.x18{left:751.499987px;}
.x1b{left:755.819987px;}
@media print{
.v2{vertical-align:-57.600000pt;}
.v1{vertical-align:-42.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls45{letter-spacing:-12.659200pt;}
.ls5f{letter-spacing:-8.785920pt;}
.ls5a{letter-spacing:-8.335360pt;}
.ls50{letter-spacing:-7.941120pt;}
.ls5b{letter-spacing:-7.659520pt;}
.ls55{letter-spacing:-7.265280pt;}
.ls40{letter-spacing:-7.124480pt;}
.ls3a{letter-spacing:-7.065600pt;}
.ls53{letter-spacing:-6.814720pt;}
.ls52{letter-spacing:-6.758400pt;}
.ls5d{letter-spacing:-6.533120pt;}
.ls62{letter-spacing:-6.420480pt;}
.ls41{letter-spacing:-5.829120pt;}
.ls5e{letter-spacing:-5.744640pt;}
.ls37{letter-spacing:-5.593600pt;}
.ls56{letter-spacing:-5.181440pt;}
.ls49{letter-spacing:-4.533760pt;}
.ls38{letter-spacing:-4.474880pt;}
.ls3b{letter-spacing:-4.062720pt;}
.ls44{letter-spacing:-3.297280pt;}
.ls4d{letter-spacing:-3.153920pt;}
.ls4e{letter-spacing:-2.984960pt;}
.ls36{letter-spacing:-2.880000pt;}
.ls43{letter-spacing:-2.708480pt;}
.ls46{letter-spacing:-2.296320pt;}
.ls4b{letter-spacing:-2.027520pt;}
.ls3d{letter-spacing:-2.001920pt;}
.ls4c{letter-spacing:-1.576960pt;}
.ls33{letter-spacing:-1.477333pt;}
.lse{letter-spacing:-1.344000pt;}
.ls57{letter-spacing:-1.295360pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls2d{letter-spacing:-1.008000pt;}
.ls5c{letter-spacing:-0.957440pt;}
.ls12{letter-spacing:-0.938667pt;}
.ls2e{letter-spacing:-0.912000pt;}
.ls60{letter-spacing:-0.901120pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls59{letter-spacing:-0.619520pt;}
.ls1f{letter-spacing:-0.544000pt;}
.ls42{letter-spacing:-0.529920pt;}
.ls2f{letter-spacing:-0.504533pt;}
.ls15{letter-spacing:-0.390933pt;}
.ls1e{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.297067pt;}
.ls4f{letter-spacing:-0.281600pt;}
.ls16{letter-spacing:-0.271467pt;}
.ls2c{letter-spacing:-0.233067pt;}
.ls58{letter-spacing:-0.225280pt;}
.ls32{letter-spacing:-0.201067pt;}
.ls13{letter-spacing:-0.194667pt;}
.ls14{letter-spacing:-0.101333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.046080pt;}
.ls25{letter-spacing:0.097067pt;}
.ls1d{letter-spacing:0.097280pt;}
.ls2b{letter-spacing:0.135467pt;}
.ls19{letter-spacing:0.135680pt;}
.lsa{letter-spacing:0.148267pt;}
.ls11{letter-spacing:0.230933pt;}
.ls27{letter-spacing:0.232960pt;}
.ls24{letter-spacing:0.233067pt;}
.ls39{letter-spacing:0.235520pt;}
.ls26{letter-spacing:0.242347pt;}
.ls18{letter-spacing:0.271360pt;}
.ls17{letter-spacing:0.271467pt;}
.ls1c{letter-spacing:0.295680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.339627pt;}
.ls3{letter-spacing:0.389867pt;}
.ls4{letter-spacing:0.431957pt;}
.ls9{letter-spacing:0.490898pt;}
.ls4a{letter-spacing:0.588800pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls51{letter-spacing:0.675840pt;}
.ls3c{letter-spacing:0.824320pt;}
.ls61{letter-spacing:1.182720pt;}
.ls21{letter-spacing:1.280000pt;}
.ls3e{letter-spacing:1.530880pt;}
.ls29{letter-spacing:1.920000pt;}
.ls8{letter-spacing:2.263040pt;}
.ls2a{letter-spacing:2.560000pt;}
.ls3f{letter-spacing:2.590720pt;}
.ls47{letter-spacing:3.002880pt;}
.ls20{letter-spacing:3.200000pt;}
.ls48{letter-spacing:3.473920pt;}
.ls31{letter-spacing:3.840000pt;}
.ls54{letter-spacing:4.336640pt;}
.ls5{letter-spacing:4.480000pt;}
.ls28{letter-spacing:5.120000pt;}
.ls22{letter-spacing:5.760000pt;}
.ls35{letter-spacing:7.040000pt;}
.ls2{letter-spacing:7.680000pt;}
.ls30{letter-spacing:13.920000pt;}
.ls23{letter-spacing:15.631360pt;}
.ls1a{letter-spacing:17.551360pt;}
.ls1{letter-spacing:29.783040pt;}
.ls7{letter-spacing:32.343040pt;}
.lsb{letter-spacing:154.240000pt;}
.ws22{word-spacing:-17.722880pt;}
.ws2c{word-spacing:-15.262720pt;}
.wsd{word-spacing:-14.991467pt;}
.ws21{word-spacing:-14.955520pt;}
.ws11{word-spacing:-14.953067pt;}
.ws13{word-spacing:-14.855467pt;}
.ws12{word-spacing:-14.817067pt;}
.wsb{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.486933pt;}
.ws5{word-spacing:-14.469867pt;}
.wsa{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.351467pt;}
.ws9{word-spacing:-14.228267pt;}
.ws17{word-spacing:-14.215467pt;}
.wsf{word-spacing:-14.176000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.978667pt;}
.ws7{word-spacing:-13.885333pt;}
.ws16{word-spacing:-13.808000pt;}
.ws4{word-spacing:-13.782933pt;}
.ws15{word-spacing:-13.712000pt;}
.ws29{word-spacing:-13.460480pt;}
.ws10{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.141333pt;}
.ws2{word-spacing:-12.800000pt;}
.ws3{word-spacing:-12.736000pt;}
.ws24{word-spacing:-12.503040pt;}
.ws0{word-spacing:-12.320000pt;}
.ws23{word-spacing:-12.052480pt;}
.ws1e{word-spacing:-12.011520pt;}
.ws1f{word-spacing:-11.422720pt;}
.ws25{word-spacing:-10.926080pt;}
.ws1a{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-10.657280pt;}
.ws1c{word-spacing:-10.245120pt;}
.ws19{word-spacing:-9.312000pt;}
.ws18{word-spacing:-9.280000pt;}
.ws1b{word-spacing:-9.126400pt;}
.ws2b{word-spacing:-7.546880pt;}
.ws2a{word-spacing:-7.321600pt;}
.ws28{word-spacing:-5.744640pt;}
.wsc{word-spacing:0.000000pt;}
.ws20{word-spacing:9.454080pt;}
.ws26{word-spacing:19.840000pt;}
.ws27{word-spacing:33.998848pt;}
._a{margin-left:-5.270403pt;}
._9{margin-left:-4.003844pt;}
._f{margin-left:-3.006279pt;}
._1{margin-left:-2.116052pt;}
._0{margin-left:-0.901120pt;}
._4{width:1.011344pt;}
._8{width:2.738347pt;}
._6{width:4.090027pt;}
._7{width:5.022079pt;}
._2{width:6.624427pt;}
._3{width:7.604480pt;}
._c{width:8.648049pt;}
._b{width:9.616654pt;}
._d{width:10.740907pt;}
._e{width:12.408162pt;}
._11{width:13.451947pt;}
._16{width:15.061616pt;}
._12{width:17.428480pt;}
._13{width:19.680534pt;}
._5{width:21.442987pt;}
._14{width:25.440853pt;}
._15{width:33.920000pt;}
._10{width:177.258667pt;}
.fs6{font-size:16.000000pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:37.248000pt;}
.fs9{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:9.413333pt;}
.yda{bottom:11.586667pt;}
.yd6{bottom:11.906667pt;}
.yd2{bottom:16.666667pt;}
.ydd{bottom:24.613333pt;}
.yd9{bottom:25.026667pt;}
.yd5{bottom:25.346667pt;}
.yd1{bottom:30.106667pt;}
.ydc{bottom:35.653333pt;}
.yd8{bottom:38.466667pt;}
.yd4{bottom:38.786667pt;}
.yd0{bottom:43.546667pt;}
.yd7{bottom:48.066667pt;}
.yd3{bottom:48.386667pt;}
.y1{bottom:185.466667pt;}
.ya4{bottom:204.346667pt;}
.yce{bottom:205.306667pt;}
.y33{bottom:212.186667pt;}
.y62{bottom:216.986667pt;}
.y91{bottom:219.706667pt;}
.ya3{bottom:221.146667pt;}
.ycd{bottom:222.106667pt;}
.y32{bottom:228.186667pt;}
.y61{bottom:233.786667pt;}
.y90{bottom:236.666667pt;}
.ya2{bottom:238.106667pt;}
.ycc{bottom:238.746667pt;}
.y31{bottom:244.186667pt;}
.y60{bottom:250.746667pt;}
.y8f{bottom:253.466667pt;}
.ya1{bottom:254.906667pt;}
.ycb{bottom:255.546667pt;}
.y30{bottom:260.186667pt;}
.y5f{bottom:267.546667pt;}
.y8e{bottom:270.426667pt;}
.ya0{bottom:271.866667pt;}
.yca{bottom:272.186667pt;}
.y2f{bottom:276.026667pt;}
.y5e{bottom:284.506667pt;}
.y8d{bottom:287.226667pt;}
.y9f{bottom:288.666667pt;}
.yc9{bottom:288.986667pt;}
.y2e{bottom:290.746667pt;}
.y2d{bottom:301.146667pt;}
.y5d{bottom:301.306667pt;}
.y8c{bottom:304.186667pt;}
.y9e{bottom:305.466667pt;}
.yc8{bottom:305.626667pt;}
.y2c{bottom:317.146667pt;}
.y5c{bottom:318.106667pt;}
.y8b{bottom:320.986667pt;}
.y9d{bottom:322.426667pt;}
.y2b{bottom:333.146667pt;}
.y5b{bottom:335.066667pt;}
.y8a{bottom:337.786667pt;}
.yc7{bottom:339.066667pt;}
.y9c{bottom:339.226667pt;}
.y2a{bottom:347.746667pt;}
.y5a{bottom:351.906667pt;}
.y89{bottom:354.786667pt;}
.yc6{bottom:355.906667pt;}
.y9b{bottom:356.066667pt;}
.y29{bottom:358.306667pt;}
.y59{bottom:368.866667pt;}
.y88{bottom:371.586667pt;}
.yc5{bottom:372.546667pt;}
.y9a{bottom:372.866667pt;}
.y28{bottom:375.106667pt;}
.y58{bottom:385.666667pt;}
.y87{bottom:388.546667pt;}
.yc4{bottom:389.346667pt;}
.y99{bottom:389.506667pt;}
.y27{bottom:401.026667pt;}
.y57{bottom:402.466667pt;}
.y86{bottom:405.346667pt;}
.yc3{bottom:405.986667pt;}
.y98{bottom:406.306667pt;}
.y26{bottom:417.346667pt;}
.y56{bottom:419.426667pt;}
.y85{bottom:422.146667pt;}
.yc2{bottom:422.786667pt;}
.y97{bottom:422.946667pt;}
.y25{bottom:432.706667pt;}
.y55{bottom:436.226667pt;}
.y84{bottom:439.106667pt;}
.yc1{bottom:439.426667pt;}
.y96{bottom:439.746667pt;}
.yf6{bottom:442.306667pt;}
.y24{bottom:448.866667pt;}
.y54{bottom:453.186667pt;}
.y83{bottom:455.906667pt;}
.yc0{bottom:456.226667pt;}
.y95{bottom:456.386667pt;}
.yf5{bottom:458.466667pt;}
.y23{bottom:464.866667pt;}
.y53{bottom:469.986667pt;}
.y82{bottom:472.866667pt;}
.y94{bottom:473.186667pt;}
.yf4{bottom:474.466667pt;}
.y22{bottom:481.026667pt;}
.y52{bottom:486.946667pt;}
.y81{bottom:489.666667pt;}
.y93{bottom:489.826667pt;}
.yf3{bottom:490.626667pt;}
.y21{bottom:497.186667pt;}
.y51{bottom:503.746667pt;}
.ybf{bottom:504.066667pt;}
.y80{bottom:506.466667pt;}
.y92{bottom:506.626667pt;}
.yf2{bottom:506.786667pt;}
.ybe{bottom:510.786667pt;}
.y20{bottom:513.186667pt;}
.y50{bottom:520.546667pt;}
.yf1{bottom:522.786667pt;}
.y7f{bottom:523.426667pt;}
.ybd{bottom:526.946667pt;}
.y1f{bottom:529.346667pt;}
.y4f{bottom:537.506667pt;}
.yf0{bottom:538.946667pt;}
.ybc{bottom:540.066667pt;}
.ydb{bottom:540.160000pt;}
.y7e{bottom:540.226667pt;}
.y1e{bottom:545.346667pt;}
.y4e{bottom:554.306667pt;}
.yef{bottom:555.106667pt;}
.y7d{bottom:557.186667pt;}
.y1d{bottom:561.506667pt;}
.yee{bottom:571.133333pt;}
.y4d{bottom:571.293333pt;}
.y7c{bottom:574.013333pt;}
.y1c{bottom:577.693333pt;}
.yed{bottom:587.293333pt;}
.y4c{bottom:588.093333pt;}
.y7b{bottom:590.813333pt;}
.ybb{bottom:591.293333pt;}
.y1b{bottom:593.693333pt;}
.yec{bottom:603.293333pt;}
.y4b{bottom:604.893333pt;}
.y7a{bottom:607.773333pt;}
.yba{bottom:608.093333pt;}
.y1a{bottom:609.853333pt;}
.yeb{bottom:619.453333pt;}
.y4a{bottom:621.853333pt;}
.y79{bottom:624.573333pt;}
.yb9{bottom:625.053333pt;}
.y19{bottom:625.853333pt;}
.yea{bottom:635.613333pt;}
.y49{bottom:638.653333pt;}
.y78{bottom:641.533333pt;}
.yb8{bottom:641.853333pt;}
.y18{bottom:642.013333pt;}
.ye9{bottom:651.613333pt;}
.y48{bottom:655.613333pt;}
.y17{bottom:658.173333pt;}
.y77{bottom:658.333333pt;}
.yb7{bottom:658.813333pt;}
.ye8{bottom:667.773333pt;}
.y47{bottom:672.413333pt;}
.y16{bottom:674.173333pt;}
.y76{bottom:675.293333pt;}
.yb6{bottom:675.613333pt;}
.ye7{bottom:683.773333pt;}
.y46{bottom:689.213333pt;}
.y15{bottom:690.333333pt;}
.y75{bottom:692.093333pt;}
.yb5{bottom:692.413333pt;}
.y45{bottom:706.173333pt;}
.y14{bottom:706.493333pt;}
.y74{bottom:708.893333pt;}
.yb4{bottom:709.373333pt;}
.y13{bottom:722.493333pt;}
.y44{bottom:722.973333pt;}
.y73{bottom:725.853333pt;}
.yb3{bottom:726.173333pt;}
.y12{bottom:738.653333pt;}
.y43{bottom:739.933333pt;}
.y72{bottom:742.653333pt;}
.yb2{bottom:743.133333pt;}
.y11{bottom:754.653333pt;}
.y42{bottom:756.733333pt;}
.y71{bottom:759.613333pt;}
.yb1{bottom:759.933333pt;}
.y10{bottom:770.813333pt;}
.y41{bottom:773.533333pt;}
.y70{bottom:776.413333pt;}
.yb0{bottom:776.733333pt;}
.ye6{bottom:776.893333pt;}
.yf{bottom:786.973333pt;}
.y40{bottom:790.493333pt;}
.y6f{bottom:793.213333pt;}
.yaf{bottom:793.733333pt;}
.ye{bottom:803.013333pt;}
.y3f{bottom:807.333333pt;}
.y6e{bottom:810.213333pt;}
.yae{bottom:810.533333pt;}
.yd{bottom:819.173333pt;}
.y3e{bottom:824.293333pt;}
.y6d{bottom:827.013333pt;}
.yad{bottom:827.493333pt;}
.yc{bottom:835.173333pt;}
.y3d{bottom:841.093333pt;}
.y6c{bottom:843.973333pt;}
.yac{bottom:844.293333pt;}
.yb{bottom:851.333333pt;}
.y3c{bottom:857.893333pt;}
.y6b{bottom:860.773333pt;}
.yab{bottom:861.093333pt;}
.ye5{bottom:861.253333pt;}
.ya{bottom:867.493333pt;}
.y3b{bottom:873.413333pt;}
.y6a{bottom:877.573333pt;}
.yaa{bottom:878.053333pt;}
.y9{bottom:883.493333pt;}
.y3a{bottom:883.813333pt;}
.y69{bottom:894.533333pt;}
.ya9{bottom:894.853333pt;}
.y8{bottom:899.653333pt;}
.y39{bottom:899.973333pt;}
.ya8{bottom:909.253333pt;}
.y68{bottom:911.333333pt;}
.ye4{bottom:911.813333pt;}
.y7{bottom:915.813333pt;}
.y38{bottom:915.973333pt;}
.ya7{bottom:916.133333pt;}
.y67{bottom:928.293333pt;}
.ye3{bottom:928.613333pt;}
.y6{bottom:931.813333pt;}
.y37{bottom:932.133333pt;}
.ya6{bottom:932.293333pt;}
.y66{bottom:945.093333pt;}
.ya5{bottom:945.253333pt;}
.ycf{bottom:945.280000pt;}
.ye2{bottom:945.573333pt;}
.y5{bottom:947.973333pt;}
.y36{bottom:948.133333pt;}
.y65{bottom:961.893333pt;}
.ye1{bottom:962.373333pt;}
.y4{bottom:963.973333pt;}
.y35{bottom:964.293333pt;}
.y64{bottom:978.853333pt;}
.ye0{bottom:979.013333pt;}
.y3{bottom:980.133333pt;}
.y34{bottom:980.453333pt;}
.y63{bottom:995.653333pt;}
.ydf{bottom:995.813333pt;}
.y2{bottom:996.293333pt;}
.h16{height:15.703125pt;}
.hb{height:31.390625pt;}
.hf{height:31.406250pt;}
.h9{height:32.250000pt;}
.h19{height:33.277500pt;}
.h1a{height:33.392250pt;}
.h18{height:36.431250pt;}
.h1b{height:36.556875pt;}
.h1e{height:38.441250pt;}
.h1d{height:42.084375pt;}
.h2{height:47.109375pt;}
.h1c{height:48.000000pt;}
.hc{height:50.352500pt;}
.h14{height:52.641250pt;}
.h10{height:52.785000pt;}
.h6{height:53.535000pt;}
.ha{height:55.247500pt;}
.h5{height:55.275000pt;}
.h3{height:56.760000pt;}
.h12{height:57.758750pt;}
.h11{height:57.787500pt;}
.h4{height:57.888085pt;}
.h7{height:59.340000pt;}
.h15{height:60.519362pt;}
.h13{height:61.295000pt;}
.h17{height:64.000000pt;}
.h8{height:64.500000pt;}
.h1{height:428.666667pt;}
.h0{height:428.804000pt;}
.he{height:1122.666667pt;}
.hd{height:1122.720000pt;}
.w0{width:788.421333pt;}
.w1{width:788.666667pt;}
.w4{width:793.759988pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:119.493333pt;}
.x15{left:124.831988pt;}
.x3{left:126.053333pt;}
.x38{left:130.432000pt;}
.x17{left:134.266655pt;}
.x2{left:147.968000pt;}
.x1d{left:148.933322pt;}
.x16{left:153.306655pt;}
.x1f{left:156.293322pt;}
.xd{left:158.688000pt;}
.x1e{left:176.133322pt;}
.x19{left:201.626655pt;}
.x6{left:206.048000pt;}
.x8{left:234.568000pt;}
.x7{left:237.448000pt;}
.x21{left:259.386655pt;}
.x2d{left:268.453322pt;}
.x10{left:275.368000pt;}
.x2e{left:276.453322pt;}
.x20{left:283.866655pt;}
.x2f{left:285.253322pt;}
.x1a{left:308.706655pt;}
.x1c{left:310.466655pt;}
.xe{left:319.048000pt;}
.x31{left:344.293322pt;}
.x30{left:345.253322pt;}
.x32{left:360.453322pt;}
.x25{left:378.013322pt;}
.x23{left:379.133322pt;}
.x22{left:381.213322pt;}
.x1{left:382.594667pt;}
.x14{left:387.933322pt;}
.x24{left:391.453322pt;}
.xf{left:415.234667pt;}
.x33{left:423.493322pt;}
.x34{left:424.933322pt;}
.x35{left:435.493322pt;}
.x11{left:447.714667pt;}
.xb{left:460.674667pt;}
.x29{left:477.599988pt;}
.x27{left:484.799988pt;}
.x36{left:489.626655pt;}
.x26{left:493.279988pt;}
.x28{left:500.319988pt;}
.x37{left:503.546655pt;}
.x12{left:514.954667pt;}
.x2a{left:597.506655pt;}
.x2c{left:599.106655pt;}
.x5{left:608.074667pt;}
.x2b{left:611.106655pt;}
.x9{left:626.154667pt;}
.xa{left:643.114667pt;}
.x4{left:661.221333pt;}
.x13{left:663.941333pt;}
.x18{left:667.999988pt;}
.x1b{left:671.839988pt;}
}




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