
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_6c365bf72519e87224682e0c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e1804d53d7304d04699910ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.990000;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_3ef9a61daf5033e9c81def57.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.990000;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_f2547fb357860cc29e4b88bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331543;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_0120ee537d131291340947d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331543;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_cfe4309c0955047af465c952.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736816;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_e4cf47a66f63a59d8c353d90.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.034000;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_46448410d19f8472eca100d9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_54d838f867a42da9a83db25c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e4c4d28d057eb48f34c6fb13.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.034000;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_2eaa4ffd35ce67711260ff96.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966309;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_5b6ffd821ad21c65e1a3b26d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0fe0022ca0872c851a9d2ca5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.762207;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);}
.v4{vertical-align:-31.875440px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v3{vertical-align:31.875440px;}
.ls1b{letter-spacing:-8.095350px;}
.ls16{letter-spacing:-1.728000px;}
.ls26{letter-spacing:-0.853806px;}
.ls1a{letter-spacing:-0.720000px;}
.ls36{letter-spacing:-0.648000px;}
.ls2c{letter-spacing:-0.630000px;}
.ls40{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.524933px;}
.ls46{letter-spacing:-0.507000px;}
.ls38{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.349112px;}
.ls23{letter-spacing:-0.330771px;}
.ls41{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.234006px;}
.ls3f{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.185308px;}
.ls19{letter-spacing:-0.089400px;}
.ls1c{letter-spacing:-0.082218px;}
.ls2b{letter-spacing:-0.072000px;}
.ls15{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.195840px;}
.lse{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.321917px;}
.ls24{letter-spacing:0.382632px;}
.ls0{letter-spacing:0.466560px;}
.ls17{letter-spacing:0.466800px;}
.ls13{letter-spacing:0.491793px;}
.ls2e{letter-spacing:0.492045px;}
.ls37{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.586560px;}
.ls21{letter-spacing:0.625492px;}
.lsa{letter-spacing:0.661795px;}
.ls1d{letter-spacing:0.664072px;}
.ls22{letter-spacing:0.683045px;}
.ls1{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.738000px;}
.lsb{letter-spacing:0.788285px;}
.ls30{letter-spacing:0.864000px;}
.ls4{letter-spacing:1.092000px;}
.lsf{letter-spacing:1.440000px;}
.ls3a{letter-spacing:1.512000px;}
.ls7{letter-spacing:2.179673px;}
.ls6{letter-spacing:2.369408px;}
.ls39{letter-spacing:2.952000px;}
.ls5{letter-spacing:3.697551px;}
.ls31{letter-spacing:4.392000px;}
.ls9{letter-spacing:5.215429px;}
.ls32{letter-spacing:5.832000px;}
.ls8{letter-spacing:6.733307px;}
.ls43{letter-spacing:7.260000px;}
.ls45{letter-spacing:7.666560px;}
.lsc{letter-spacing:8.251185px;}
.lsd{letter-spacing:8.377675px;}
.ls3d{letter-spacing:8.700000px;}
.ls3e{letter-spacing:10.140000px;}
.ls10{letter-spacing:10.320000px;}
.ls14{letter-spacing:10.637745px;}
.ls35{letter-spacing:11.580000px;}
.ls2a{letter-spacing:11.760000px;}
.ls3b{letter-spacing:14.460000px;}
.ls3c{letter-spacing:15.900000px;}
.ls27{letter-spacing:16.080000px;}
.ls29{letter-spacing:17.520000px;}
.ls28{letter-spacing:21.840000px;}
.ls42{letter-spacing:25.980000px;}
.ls12{letter-spacing:30.456000px;}
.ls44{letter-spacing:40.786560px;}
.ls11{letter-spacing:184.536000px;}
.ls2f{letter-spacing:188.856000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(248,0,128),0 0.015em rgb(248,0,128),0.015em 0 rgb(248,0,128),0 -0.015em  rgb(248,0,128);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(248,0,128);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-31.464000px;}
.wsd{word-spacing:-27.864000px;}
.wsb{word-spacing:-27.576000px;}
.wsc{word-spacing:-27.288000px;}
.ws10{word-spacing:-27.000000px;}
.wse{word-spacing:-26.928000px;}
.wsf{word-spacing:-26.712000px;}
.ws9{word-spacing:-19.410625px;}
.ws0{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.306440px;}
.ws5{word-spacing:-16.034864px;}
.ws2{word-spacing:-15.120000px;}
.ws8{word-spacing:-13.050000px;}
.ws3{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._5{margin-left:-8.853120px;}
._7{margin-left:-3.781920px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._d{width:4.600320px;}
._16{width:5.969280px;}
._13{width:7.058880px;}
._6{width:8.588160px;}
._a{width:10.027012px;}
._10{width:11.153657px;}
._11{width:12.246343px;}
._12{width:13.570723px;}
._8{width:14.735631px;}
._9{width:16.544254px;}
._e{width:17.598438px;}
._14{width:19.663378px;}
._b{width:21.395520px;}
._c{width:22.540320px;}
._19{width:25.200000px;}
._1a{width:26.231040px;}
._f{width:29.880000px;}
._18{width:32.771520px;}
._17{width:34.920000px;}
._1b{width:92.444520px;}
._15{width:188.856000px;}
.fc5{color:transparent;}
.fc3{color:rgb(248,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsf{font-size:44.018465px;}
.fsc{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs8{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fse{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fsd{font-size:69.822393px;}
.fs9{font-size:72.000000px;}
.fs10{font-size:83.664000px;}
.fs4{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y45{bottom:1.075500px;}
.y5{bottom:4.320000px;}
.y4f{bottom:5.035500px;}
.y3c{bottom:5.040000px;}
.y51{bottom:5.370000px;}
.y2{bottom:10.080000px;}
.y4{bottom:23.400000px;}
.y3b{bottom:24.480000px;}
.y4e{bottom:26.635500px;}
.y44{bottom:30.595500px;}
.y43{bottom:42.475500px;}
.y3a{bottom:43.560000px;}
.y3{bottom:47.880000px;}
.y4d{bottom:52.951500px;}
.y42{bottom:55.471500px;}
.y7{bottom:57.636000px;}
.y39{bottom:63.000000px;}
.y41{bottom:68.794500px;}
.y4c{bottom:73.474500px;}
.y38{bottom:82.080000px;}
.y40{bottom:90.394500px;}
.y3d{bottom:91.120500px;}
.y4b{bottom:94.714500px;}
.y4a{bottom:101.194500px;}
.y37{bottom:101.520000px;}
.yb0{bottom:106.956000px;}
.ybd{bottom:116.676000px;}
.y49{bottom:117.034500px;}
.y83{bottom:117.756000px;}
.y36{bottom:120.600000px;}
.yaf{bottom:125.676000px;}
.y48{bottom:132.514500px;}
.ybc{bottom:135.756000px;}
.y82{bottom:136.476000px;}
.y35{bottom:140.085000px;}
.yae{bottom:144.792000px;}
.y47{bottom:147.994500px;}
.y3f{bottom:152.674500px;}
.ybb{bottom:154.515000px;}
.y81{bottom:155.595000px;}
.y34{bottom:159.165000px;}
.y3e{bottom:163.474500px;}
.yad{bottom:163.515000px;}
.yba{bottom:173.595000px;}
.y80{bottom:174.315000px;}
.y46{bottom:178.594500px;}
.y33{bottom:178.605000px;}
.yac{bottom:182.595000px;}
.yb9{bottom:192.315000px;}
.y7f{bottom:193.035000px;}
.y32{bottom:197.685000px;}
.yd9{bottom:198.795000px;}
.yab{bottom:201.315000px;}
.yb8{bottom:211.035000px;}
.y7e{bottom:212.115000px;}
.y31{bottom:217.125000px;}
.yd8{bottom:218.955000px;}
.yaa{bottom:220.035000px;}
.yb7{bottom:230.115000px;}
.y7d{bottom:230.835000px;}
.y30{bottom:236.205000px;}
.ya9{bottom:239.115000px;}
.yb6{bottom:248.835000px;}
.y7c{bottom:249.915000px;}
.y2f{bottom:255.675000px;}
.ya8{bottom:257.835000px;}
.yd7{bottom:259.275000px;}
.yb5{bottom:267.915000px;}
.y7b{bottom:268.635000px;}
.y2e{bottom:274.755000px;}
.ya7{bottom:276.945000px;}
.yd6{bottom:279.465000px;}
.yf{bottom:284.145000px;}
.yb4{bottom:286.665000px;}
.y7a{bottom:287.745000px;}
.y2d{bottom:294.195000px;}
.ya6{bottom:295.665000px;}
.yd5{bottom:298.185000px;}
.yb3{bottom:305.745000px;}
.y79{bottom:306.465000px;}
.y2c{bottom:313.275000px;}
.ya5{bottom:314.745000px;}
.yd4{bottom:321.945000px;}
.yb2{bottom:324.465000px;}
.y1d{bottom:325.515000px;}
.y78{bottom:325.545000px;}
.y2b{bottom:332.715000px;}
.ya4{bottom:333.465000px;}
.yd3{bottom:340.665000px;}
.yb1{bottom:343.545000px;}
.y77{bottom:344.265000px;}
.y1c{bottom:349.635000px;}
.y2a{bottom:351.795000px;}
.ya3{bottom:352.545000px;}
.y76{bottom:363.345000px;}
.yd2{bottom:364.425000px;}
.y29{bottom:371.235000px;}
.ya2{bottom:371.265000px;}
.y1b{bottom:373.755000px;}
.y75{bottom:382.065000px;}
.yd1{bottom:387.825000px;}
.y28{bottom:390.345000px;}
.y1a{bottom:397.905000px;}
.y74{bottom:400.785000px;}
.ya1{bottom:409.110000px;}
.yd0{bottom:411.270000px;}
.y73{bottom:419.910000px;}
.y27{bottom:420.225000px;}
.y19{bottom:422.025000px;}
.ya0{bottom:427.830000px;}
.ycf{bottom:434.670000px;}
.y72{bottom:438.630000px;}
.y26{bottom:443.625000px;}
.y18{bottom:446.145000px;}
.y9f{bottom:446.910000px;}
.y71{bottom:457.710000px;}
.yce{bottom:458.430000px;}
.y9e{bottom:465.630000px;}
.y25{bottom:467.025000px;}
.y17{bottom:470.265000px;}
.y70{bottom:476.430000px;}
.ycd{bottom:481.830000px;}
.y9d{bottom:484.710000px;}
.y24{bottom:490.785000px;}
.y16{bottom:494.385000px;}
.y6f{bottom:495.510000px;}
.y9c{bottom:503.430000px;}
.ycc{bottom:505.230000px;}
.y23{bottom:514.185000px;}
.y6e{bottom:514.230000px;}
.y15{bottom:518.550000px;}
.y9b{bottom:522.510000px;}
.ycb{bottom:528.990000px;}
.y6d{bottom:533.310000px;}
.y22{bottom:537.630000px;}
.y9a{bottom:541.260000px;}
.y14{bottom:542.670000px;}
.y6c{bottom:552.060000px;}
.yca{bottom:552.420000px;}
.y99{bottom:560.340000px;}
.y21{bottom:561.390000px;}
.y13{bottom:566.790000px;}
.y6b{bottom:570.780000px;}
.yc9{bottom:575.820000px;}
.y98{bottom:579.060000px;}
.y20{bottom:584.790000px;}
.y12{bottom:590.910000px;}
.y97{bottom:597.780000px;}
.y6a{bottom:598.860000px;}
.yc8{bottom:599.580000px;}
.y1f{bottom:608.190000px;}
.y11{bottom:615.390000px;}
.y96{bottom:616.860000px;}
.y69{bottom:617.580000px;}
.yc7{bottom:627.300000px;}
.y1e{bottom:631.950000px;}
.y95{bottom:635.580000px;}
.y68{bottom:636.660000px;}
.y10{bottom:639.510000px;}
.yc6{bottom:650.700000px;}
.y94{bottom:654.660000px;}
.y67{bottom:655.380000px;}
.y93{bottom:673.410000px;}
.y66{bottom:674.490000px;}
.y92{bottom:692.490000px;}
.y65{bottom:693.210000px;}
.yc5{bottom:697.890000px;}
.y91{bottom:711.210000px;}
.y64{bottom:712.290000px;}
.yc4{bottom:721.290000px;}
.y90{bottom:730.290000px;}
.y63{bottom:731.010000px;}
.yc3{bottom:745.050000px;}
.y8f{bottom:749.010000px;}
.y62{bottom:750.090000px;}
.y8e{bottom:768.090000px;}
.yc2{bottom:768.450000px;}
.y61{bottom:768.810000px;}
.y8d{bottom:786.810000px;}
.y60{bottom:787.530000px;}
.yc1{bottom:791.850000px;}
.y8c{bottom:805.575000px;}
.y5f{bottom:815.655000px;}
.y8b{bottom:824.655000px;}
.y5e{bottom:834.375000px;}
.yc0{bottom:839.055000px;}
.y8a{bottom:843.375000px;}
.y5d{bottom:853.455000px;}
.y89{bottom:862.455000px;}
.y5c{bottom:872.175000px;}
.y88{bottom:881.175000px;}
.ybf{bottom:886.215000px;}
.y5b{bottom:891.255000px;}
.y87{bottom:900.255000px;}
.y5a{bottom:909.975000px;}
.ybe{bottom:910.335000px;}
.y86{bottom:918.975000px;}
.y59{bottom:929.055000px;}
.ye{bottom:935.925000px;}
.y85{bottom:938.085000px;}
.yd{bottom:940.965000px;}
.y58{bottom:947.805000px;}
.y84{bottom:956.805000px;}
.yc{bottom:968.325000px;}
.y57{bottom:975.525000px;}
.yb{bottom:994.605000px;}
.y56{bottom:1013.325000px;}
.ya{bottom:1013.685000px;}
.y55{bottom:1032.405000px;}
.y9{bottom:1039.605000px;}
.y54{bottom:1051.125000px;}
.y53{bottom:1070.250000px;}
.y8{bottom:1072.050000px;}
.y50{bottom:1075.320000px;}
.y52{bottom:1088.970000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h16{height:5.650313px;}
.h1b{height:27.720000px;}
.h13{height:29.678906px;}
.h12{height:35.332031px;}
.ha{height:38.158594px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h1e{height:45.360000px;}
.h14{height:53.677969px;}
.h15{height:55.147500px;}
.h19{height:55.927736px;}
.h7{height:57.290625px;}
.hf{height:57.600000px;}
.h10{height:57.672000px;}
.h1a{height:59.328281px;}
.h6{height:59.357813px;}
.he{height:61.143509px;}
.h1c{height:63.565031px;}
.h1d{height:64.112344px;}
.h18{height:64.978594px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h9{height:66.543750px;}
.h17{height:74.015827px;}
.h8{height:77.184000px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h11{height:192.285000px;}
.hb{height:648.885000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:6.876000px;}
.x18{left:8.295000px;}
.x4{left:13.305000px;}
.x15{left:14.386500px;}
.x1b{left:18.346500px;}
.x16{left:19.426500px;}
.x6{left:28.785000px;}
.x10{left:43.906500px;}
.x1c{left:47.542500px;}
.x11{left:50.782500px;}
.x14{left:53.302500px;}
.xf{left:55.102500px;}
.x1e{left:57.262500px;}
.x19{left:62.295000px;}
.x1d{left:66.265500px;}
.x13{left:73.105500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x1f{left:102.985500px;}
.x1a{left:106.945500px;}
.x24{left:113.436000px;}
.x12{left:124.585500px;}
.x5{left:141.540000px;}
.x25{left:167.475000px;}
.x3{left:182.250000px;}
.x22{left:184.050000px;}
.x17{left:218.970000px;}
.x20{left:278.040000px;}
.x21{left:325.920000px;}
.xb{left:380.670000px;}
.xc{left:422.820000px;}
.xa{left:509.970000px;}
.xd{left:584.895000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xe{left:807.090000px;}
@media print{
.v4{vertical-align:-28.333725pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v3{vertical-align:28.333725pt;}
.ls1b{letter-spacing:-7.195867pt;}
.ls16{letter-spacing:-1.536000pt;}
.ls26{letter-spacing:-0.758939pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls36{letter-spacing:-0.576000pt;}
.ls2c{letter-spacing:-0.560000pt;}
.ls40{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.466607pt;}
.ls46{letter-spacing:-0.450667pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.310322pt;}
.ls23{letter-spacing:-0.294019pt;}
.ls41{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.208006pt;}
.ls3f{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.164718pt;}
.ls19{letter-spacing:-0.079467pt;}
.ls1c{letter-spacing:-0.073083pt;}
.ls2b{letter-spacing:-0.064000pt;}
.ls15{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.174080pt;}
.lse{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.286148pt;}
.ls24{letter-spacing:0.340117pt;}
.ls0{letter-spacing:0.414720pt;}
.ls17{letter-spacing:0.414933pt;}
.ls13{letter-spacing:0.437149pt;}
.ls2e{letter-spacing:0.437374pt;}
.ls37{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.521387pt;}
.ls21{letter-spacing:0.555993pt;}
.lsa{letter-spacing:0.588262pt;}
.ls1d{letter-spacing:0.590286pt;}
.ls22{letter-spacing:0.607151pt;}
.ls1{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.656000pt;}
.lsb{letter-spacing:0.700698pt;}
.ls30{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.970667pt;}
.lsf{letter-spacing:1.280000pt;}
.ls3a{letter-spacing:1.344000pt;}
.ls7{letter-spacing:1.937487pt;}
.ls6{letter-spacing:2.106140pt;}
.ls39{letter-spacing:2.624000pt;}
.ls5{letter-spacing:3.286712pt;}
.ls31{letter-spacing:3.904000pt;}
.ls9{letter-spacing:4.635937pt;}
.ls32{letter-spacing:5.184000pt;}
.ls8{letter-spacing:5.985162pt;}
.ls43{letter-spacing:6.453333pt;}
.ls45{letter-spacing:6.814720pt;}
.lsc{letter-spacing:7.334387pt;}
.lsd{letter-spacing:7.446822pt;}
.ls3d{letter-spacing:7.733333pt;}
.ls3e{letter-spacing:9.013333pt;}
.ls10{letter-spacing:9.173333pt;}
.ls14{letter-spacing:9.455773pt;}
.ls35{letter-spacing:10.293333pt;}
.ls2a{letter-spacing:10.453333pt;}
.ls3b{letter-spacing:12.853333pt;}
.ls3c{letter-spacing:14.133333pt;}
.ls27{letter-spacing:14.293333pt;}
.ls29{letter-spacing:15.573333pt;}
.ls28{letter-spacing:19.413333pt;}
.ls42{letter-spacing:23.093333pt;}
.ls12{letter-spacing:27.072000pt;}
.ls44{letter-spacing:36.254720pt;}
.ls11{letter-spacing:164.032000pt;}
.ls2f{letter-spacing:167.872000pt;}
.ws6{word-spacing:-27.968000pt;}
.wsd{word-spacing:-24.768000pt;}
.wsb{word-spacing:-24.512000pt;}
.wsc{word-spacing:-24.256000pt;}
.ws10{word-spacing:-24.000000pt;}
.wse{word-spacing:-23.936000pt;}
.wsf{word-spacing:-23.744000pt;}
.ws9{word-spacing:-17.253889pt;}
.ws0{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.494613pt;}
.ws5{word-spacing:-14.253213pt;}
.ws2{word-spacing:-13.440000pt;}
.ws8{word-spacing:-11.600000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._5{margin-left:-7.869440pt;}
._7{margin-left:-3.361707pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._d{width:4.089173pt;}
._16{width:5.306027pt;}
._13{width:6.274560pt;}
._6{width:7.633920pt;}
._a{width:8.912899pt;}
._10{width:9.914362pt;}
._11{width:10.885638pt;}
._12{width:12.062864pt;}
._8{width:13.098339pt;}
._9{width:14.706004pt;}
._e{width:15.643056pt;}
._14{width:17.478558pt;}
._b{width:19.018240pt;}
._c{width:20.035840pt;}
._19{width:22.400000pt;}
._1a{width:23.316480pt;}
._f{width:26.560000pt;}
._18{width:29.130240pt;}
._17{width:31.040000pt;}
._1b{width:82.172907pt;}
._15{width:167.872000pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsf{font-size:39.127524pt;}
.fsc{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs8{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fse{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fsd{font-size:62.064349pt;}
.fs9{font-size:64.000000pt;}
.fs10{font-size:74.368000pt;}
.fs4{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:0.956000pt;}
.y5{bottom:3.840000pt;}
.y4f{bottom:4.476000pt;}
.y3c{bottom:4.480000pt;}
.y51{bottom:4.773333pt;}
.y2{bottom:8.960000pt;}
.y4{bottom:20.800000pt;}
.y3b{bottom:21.760000pt;}
.y4e{bottom:23.676000pt;}
.y44{bottom:27.196000pt;}
.y43{bottom:37.756000pt;}
.y3a{bottom:38.720000pt;}
.y3{bottom:42.560000pt;}
.y4d{bottom:47.068000pt;}
.y42{bottom:49.308000pt;}
.y7{bottom:51.232000pt;}
.y39{bottom:56.000000pt;}
.y41{bottom:61.150667pt;}
.y4c{bottom:65.310667pt;}
.y38{bottom:72.960000pt;}
.y40{bottom:80.350667pt;}
.y3d{bottom:80.996000pt;}
.y4b{bottom:84.190667pt;}
.y4a{bottom:89.950667pt;}
.y37{bottom:90.240000pt;}
.yb0{bottom:95.072000pt;}
.ybd{bottom:103.712000pt;}
.y49{bottom:104.030667pt;}
.y83{bottom:104.672000pt;}
.y36{bottom:107.200000pt;}
.yaf{bottom:111.712000pt;}
.y48{bottom:117.790667pt;}
.ybc{bottom:120.672000pt;}
.y82{bottom:121.312000pt;}
.y35{bottom:124.520000pt;}
.yae{bottom:128.704000pt;}
.y47{bottom:131.550667pt;}
.y3f{bottom:135.710667pt;}
.ybb{bottom:137.346667pt;}
.y81{bottom:138.306667pt;}
.y34{bottom:141.480000pt;}
.y3e{bottom:145.310667pt;}
.yad{bottom:145.346667pt;}
.yba{bottom:154.306667pt;}
.y80{bottom:154.946667pt;}
.y46{bottom:158.750667pt;}
.y33{bottom:158.760000pt;}
.yac{bottom:162.306667pt;}
.yb9{bottom:170.946667pt;}
.y7f{bottom:171.586667pt;}
.y32{bottom:175.720000pt;}
.yd9{bottom:176.706667pt;}
.yab{bottom:178.946667pt;}
.yb8{bottom:187.586667pt;}
.y7e{bottom:188.546667pt;}
.y31{bottom:193.000000pt;}
.yd8{bottom:194.626667pt;}
.yaa{bottom:195.586667pt;}
.yb7{bottom:204.546667pt;}
.y7d{bottom:205.186667pt;}
.y30{bottom:209.960000pt;}
.ya9{bottom:212.546667pt;}
.yb6{bottom:221.186667pt;}
.y7c{bottom:222.146667pt;}
.y2f{bottom:227.266667pt;}
.ya8{bottom:229.186667pt;}
.yd7{bottom:230.466667pt;}
.yb5{bottom:238.146667pt;}
.y7b{bottom:238.786667pt;}
.y2e{bottom:244.226667pt;}
.ya7{bottom:246.173333pt;}
.yd6{bottom:248.413333pt;}
.yf{bottom:252.573333pt;}
.yb4{bottom:254.813333pt;}
.y7a{bottom:255.773333pt;}
.y2d{bottom:261.506667pt;}
.ya6{bottom:262.813333pt;}
.yd5{bottom:265.053333pt;}
.yb3{bottom:271.773333pt;}
.y79{bottom:272.413333pt;}
.y2c{bottom:278.466667pt;}
.ya5{bottom:279.773333pt;}
.yd4{bottom:286.173333pt;}
.yb2{bottom:288.413333pt;}
.y1d{bottom:289.346667pt;}
.y78{bottom:289.373333pt;}
.y2b{bottom:295.746667pt;}
.ya4{bottom:296.413333pt;}
.yd3{bottom:302.813333pt;}
.yb1{bottom:305.373333pt;}
.y77{bottom:306.013333pt;}
.y1c{bottom:310.786667pt;}
.y2a{bottom:312.706667pt;}
.ya3{bottom:313.373333pt;}
.y76{bottom:322.973333pt;}
.yd2{bottom:323.933333pt;}
.y29{bottom:329.986667pt;}
.ya2{bottom:330.013333pt;}
.y1b{bottom:332.226667pt;}
.y75{bottom:339.613333pt;}
.yd1{bottom:344.733333pt;}
.y28{bottom:346.973333pt;}
.y1a{bottom:353.693333pt;}
.y74{bottom:356.253333pt;}
.ya1{bottom:363.653333pt;}
.yd0{bottom:365.573333pt;}
.y73{bottom:373.253333pt;}
.y27{bottom:373.533333pt;}
.y19{bottom:375.133333pt;}
.ya0{bottom:380.293333pt;}
.ycf{bottom:386.373333pt;}
.y72{bottom:389.893333pt;}
.y26{bottom:394.333333pt;}
.y18{bottom:396.573333pt;}
.y9f{bottom:397.253333pt;}
.y71{bottom:406.853333pt;}
.yce{bottom:407.493333pt;}
.y9e{bottom:413.893333pt;}
.y25{bottom:415.133333pt;}
.y17{bottom:418.013333pt;}
.y70{bottom:423.493333pt;}
.ycd{bottom:428.293333pt;}
.y9d{bottom:430.853333pt;}
.y24{bottom:436.253333pt;}
.y16{bottom:439.453333pt;}
.y6f{bottom:440.453333pt;}
.y9c{bottom:447.493333pt;}
.ycc{bottom:449.093333pt;}
.y23{bottom:457.053333pt;}
.y6e{bottom:457.093333pt;}
.y15{bottom:460.933333pt;}
.y9b{bottom:464.453333pt;}
.ycb{bottom:470.213333pt;}
.y6d{bottom:474.053333pt;}
.y22{bottom:477.893333pt;}
.y9a{bottom:481.120000pt;}
.y14{bottom:482.373333pt;}
.y6c{bottom:490.720000pt;}
.yca{bottom:491.040000pt;}
.y99{bottom:498.080000pt;}
.y21{bottom:499.013333pt;}
.y13{bottom:503.813333pt;}
.y6b{bottom:507.360000pt;}
.yc9{bottom:511.840000pt;}
.y98{bottom:514.720000pt;}
.y20{bottom:519.813333pt;}
.y12{bottom:525.253333pt;}
.y97{bottom:531.360000pt;}
.y6a{bottom:532.320000pt;}
.yc8{bottom:532.960000pt;}
.y1f{bottom:540.613333pt;}
.y11{bottom:547.013333pt;}
.y96{bottom:548.320000pt;}
.y69{bottom:548.960000pt;}
.yc7{bottom:557.600000pt;}
.y1e{bottom:561.733333pt;}
.y95{bottom:564.960000pt;}
.y68{bottom:565.920000pt;}
.y10{bottom:568.453333pt;}
.yc6{bottom:578.400000pt;}
.y94{bottom:581.920000pt;}
.y67{bottom:582.560000pt;}
.y93{bottom:598.586667pt;}
.y66{bottom:599.546667pt;}
.y92{bottom:615.546667pt;}
.y65{bottom:616.186667pt;}
.yc5{bottom:620.346667pt;}
.y91{bottom:632.186667pt;}
.y64{bottom:633.146667pt;}
.yc4{bottom:641.146667pt;}
.y90{bottom:649.146667pt;}
.y63{bottom:649.786667pt;}
.yc3{bottom:662.266667pt;}
.y8f{bottom:665.786667pt;}
.y62{bottom:666.746667pt;}
.y8e{bottom:682.746667pt;}
.yc2{bottom:683.066667pt;}
.y61{bottom:683.386667pt;}
.y8d{bottom:699.386667pt;}
.y60{bottom:700.026667pt;}
.yc1{bottom:703.866667pt;}
.y8c{bottom:716.066667pt;}
.y5f{bottom:725.026667pt;}
.y8b{bottom:733.026667pt;}
.y5e{bottom:741.666667pt;}
.yc0{bottom:745.826667pt;}
.y8a{bottom:749.666667pt;}
.y5d{bottom:758.626667pt;}
.y89{bottom:766.626667pt;}
.y5c{bottom:775.266667pt;}
.y88{bottom:783.266667pt;}
.ybf{bottom:787.746667pt;}
.y5b{bottom:792.226667pt;}
.y87{bottom:800.226667pt;}
.y5a{bottom:808.866667pt;}
.ybe{bottom:809.186667pt;}
.y86{bottom:816.866667pt;}
.y59{bottom:825.826667pt;}
.ye{bottom:831.933333pt;}
.y85{bottom:833.853333pt;}
.yd{bottom:836.413333pt;}
.y58{bottom:842.493333pt;}
.y84{bottom:850.493333pt;}
.yc{bottom:860.733333pt;}
.y57{bottom:867.133333pt;}
.yb{bottom:884.093333pt;}
.y56{bottom:900.733333pt;}
.ya{bottom:901.053333pt;}
.y55{bottom:917.693333pt;}
.y9{bottom:924.093333pt;}
.y54{bottom:934.333333pt;}
.y53{bottom:951.333333pt;}
.y8{bottom:952.933333pt;}
.y50{bottom:955.840000pt;}
.y52{bottom:967.973333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h16{height:5.022500pt;}
.h1b{height:24.640000pt;}
.h13{height:26.381250pt;}
.h12{height:31.406250pt;}
.ha{height:33.918750pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h1e{height:40.320000pt;}
.h14{height:47.713750pt;}
.h15{height:49.020000pt;}
.h19{height:49.713543pt;}
.h7{height:50.925000pt;}
.hf{height:51.200000pt;}
.h10{height:51.264000pt;}
.h1a{height:52.736250pt;}
.h6{height:52.762500pt;}
.he{height:54.349786pt;}
.h1c{height:56.502250pt;}
.h1d{height:56.988750pt;}
.h18{height:57.758750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h9{height:59.150000pt;}
.h17{height:65.791846pt;}
.h8{height:68.608000pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h11{height:170.920000pt;}
.hb{height:576.786667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.112000pt;}
.x18{left:7.373333pt;}
.x4{left:11.826667pt;}
.x15{left:12.788000pt;}
.x1b{left:16.308000pt;}
.x16{left:17.268000pt;}
.x6{left:25.586667pt;}
.x10{left:39.028000pt;}
.x1c{left:42.260000pt;}
.x11{left:45.140000pt;}
.x14{left:47.380000pt;}
.xf{left:48.980000pt;}
.x1e{left:50.900000pt;}
.x19{left:55.373333pt;}
.x1d{left:58.902667pt;}
.x13{left:64.982667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x1f{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x24{left:100.832000pt;}
.x12{left:110.742667pt;}
.x5{left:125.813333pt;}
.x25{left:148.866667pt;}
.x3{left:162.000000pt;}
.x22{left:163.600000pt;}
.x17{left:194.640000pt;}
.x20{left:247.146667pt;}
.x21{left:289.706667pt;}
.xb{left:338.373333pt;}
.xc{left:375.840000pt;}
.xa{left:453.306667pt;}
.xd{left:519.906667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xe{left:717.413333pt;}
}




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