
    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_f45745fc56bbccf3c7afd24d.woff')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_d9a235825d1a07d3021ee8e2.woff')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_a83d875a653d0e6d4d46d4ef.woff')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_626b19b37e37a16766e3aa72.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_07e83d24ec93312e0da04d27.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e7c719a20c9646a77f74f29b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.315918;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_82503808b1d6d58dc848d0fe.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7ffd22f7a899e62f7a1b0bca.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_ec1f15b679fb7c2d36b41774.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c12d8c355561ef6d718eb26e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.315918;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_e2ff2d4cffbcb476fc7d3d99.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.810000px;}
.ls41{letter-spacing:-0.504000px;}
.ls2e{letter-spacing:-0.328800px;}
.ls36{letter-spacing:-0.316800px;}
.ls20{letter-spacing:-0.303576px;}
.ls2b{letter-spacing:-0.280200px;}
.ls12{letter-spacing:-0.259800px;}
.ls3a{letter-spacing:-0.243600px;}
.ls15{letter-spacing:-0.229200px;}
.ls14{letter-spacing:-0.226200px;}
.ls11{letter-spacing:-0.172200px;}
.ls39{letter-spacing:-0.157800px;}
.ls2d{letter-spacing:-0.134400px;}
.ls1e{letter-spacing:-0.108000px;}
.ls2a{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.097800px;}
.ls1a{letter-spacing:-0.086400px;}
.ls17{letter-spacing:-0.075000px;}
.ls1d{letter-spacing:-0.072000px;}
.ls1c{letter-spacing:-0.069000px;}
.lsc{letter-spacing:-0.053280px;}
.lsb{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.018000px;}
.ls1f{letter-spacing:0.018973px;}
.ls26{letter-spacing:0.021600px;}
.ls27{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.056920px;}
.ls4{letter-spacing:0.075600px;}
.ls5{letter-spacing:0.113841px;}
.ls6{letter-spacing:0.132814px;}
.ls19{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.175800px;}
.ls7{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.ls3e{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.240600px;}
.ls40{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.259800px;}
.ls24{letter-spacing:0.259920px;}
.ls29{letter-spacing:0.274800px;}
.ls32{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.320400px;}
.ls1{letter-spacing:0.331800px;}
.ls2{letter-spacing:0.338400px;}
.ls16{letter-spacing:0.346200px;}
.ls23{letter-spacing:0.352200px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.439800px;}
.ls1b{letter-spacing:0.490800px;}
.ls2c{letter-spacing:0.612000px;}
.ls31{letter-spacing:0.666720px;}
.ls38{letter-spacing:0.924000px;}
.ls42{letter-spacing:0.960000px;}
.ls3b{letter-spacing:1.158000px;}
.ls3d{letter-spacing:1.386720px;}
.ls3c{letter-spacing:1.986000px;}
.ls34{letter-spacing:2.106720px;}
.ls25{letter-spacing:2.826720px;}
.lsa{letter-spacing:4.667475px;}
.ls22{letter-spacing:4.986720px;}
.ls8{letter-spacing:5.426414px;}
.ls30{letter-spacing:7.866720px;}
.ls35{letter-spacing:8.586720px;}
.ls33{letter-spacing:9.306720px;}
.ls3{letter-spacing:12.906720px;}
.ls28{letter-spacing:25.140000px;}
.ls21{letter-spacing:25.146720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1c{word-spacing:-56.977349px;}
.ws19{word-spacing:-56.920429px;}
.ws1b{word-spacing:-56.616853px;}
.ws2e{word-spacing:-18.599280px;}
.ws2d{word-spacing:-17.771280px;}
.ws33{word-spacing:-17.573280px;}
.ws29{word-spacing:-17.537280px;}
.ws2b{word-spacing:-17.225280px;}
.ws15{word-spacing:-17.104080px;}
.ws5{word-spacing:-17.053080px;}
.ws1e{word-spacing:-16.965480px;}
.wsf{word-spacing:-16.959480px;}
.ws10{word-spacing:-16.951680px;}
.wse{word-spacing:-16.945080px;}
.ws12{word-spacing:-16.933680px;}
.ws28{word-spacing:-16.912080px;}
.ws1f{word-spacing:-16.888080px;}
.ws7{word-spacing:-16.873080px;}
.ws27{word-spacing:-16.853880px;}
.ws6{word-spacing:-16.819680px;}
.ws25{word-spacing:-16.789080px;}
.ws13{word-spacing:-16.757280px;}
.ws4{word-spacing:-16.688880px;}
.ws22{word-spacing:-16.634880px;}
.ws2{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.544280px;}
.ws11{word-spacing:-16.538280px;}
.ws14{word-spacing:-16.526880px;}
.ws8{word-spacing:-16.515480px;}
.ws21{word-spacing:-16.506480px;}
.ws23{word-spacing:-16.478880px;}
.ws2a{word-spacing:-16.455480px;}
.ws9{word-spacing:-16.441080px;}
.wsd{word-spacing:-16.384080px;}
.ws2c{word-spacing:-16.369680px;}
.wsa{word-spacing:-16.353480px;}
.ws20{word-spacing:-16.333080px;}
.ws26{word-spacing:-16.296480px;}
.ws24{word-spacing:-16.284480px;}
.ws1a{word-spacing:-15.842853px;}
.ws1{word-spacing:-15.300000px;}
.ws30{word-spacing:-15.264000px;}
.ws32{word-spacing:-15.228000px;}
.ws2f{word-spacing:-15.012000px;}
.ws31{word-spacing:-14.508000px;}
.ws18{word-spacing:-13.392000px;}
.ws3{word-spacing:-10.808640px;}
.wsc{word-spacing:-10.440000px;}
.wsb{word-spacing:-10.213800px;}
.ws17{word-spacing:-8.928000px;}
.ws1d{word-spacing:0.000000px;}
._18{margin-left:-9.581280px;}
._5{margin-left:-8.366400px;}
._17{margin-left:-5.609760px;}
._10{margin-left:-4.493760px;}
._3{margin-left:-2.864160px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.912160px;}
._7{width:3.960960px;}
._8{width:5.042160px;}
._e{width:6.819360px;}
._6{width:8.605440px;}
._b{width:10.167600px;}
._f{width:12.126480px;}
._c{width:13.183920px;}
._9{width:14.347200px;}
._1a{width:15.436800px;}
._d{width:17.861040px;}
._4{width:19.686480px;}
._14{width:20.765040px;}
._1b{width:22.518240px;}
._16{width:23.741760px;}
._15{width:25.593840px;}
._19{width:26.611200px;}
._a{width:29.253840px;}
._1c{width:73.404000px;}
._11{width:95.763120px;}
._12{width:104.467440px;}
._13{width:105.609600px;}
.fc6{color:transparent;}
.fc5{color:rgb(15,36,62);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fsc{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y49{bottom:2.700000px;}
.y3d{bottom:3.765000px;}
.y5{bottom:4.140000px;}
.y57{bottom:5.010000px;}
.y92{bottom:7.020000px;}
.y2{bottom:9.900000px;}
.y48{bottom:10.260000px;}
.y95{bottom:14.580000px;}
.yd3{bottom:17.445000px;}
.yc8{bottom:17.460000px;}
.yd0{bottom:17.490000px;}
.y90{bottom:18.540000px;}
.y3c{bottom:21.405000px;}
.yc6{bottom:21.420000px;}
.y96{bottom:21.960000px;}
.y98{bottom:22.140000px;}
.y4{bottom:23.070000px;}
.yc3{bottom:24.300000px;}
.yd4{bottom:24.825000px;}
.ycb{bottom:24.840000px;}
.yd1{bottom:24.870000px;}
.yd6{bottom:25.005000px;}
.yc9{bottom:25.020000px;}
.y54{bottom:25.380000px;}
.y93{bottom:26.100000px;}
.y91{bottom:30.060000px;}
.yda{bottom:30.990000px;}
.yc1{bottom:40.140000px;}
.y47{bottom:40.320000px;}
.y3b{bottom:41.385000px;}
.yc5{bottom:42.300000px;}
.yc2{bottom:45.180000px;}
.y53{bottom:45.360000px;}
.y3{bottom:48.090000px;}
.y46{bottom:51.480000px;}
.ydb{bottom:51.870000px;}
.y7{bottom:57.600000px;}
.y3a{bottom:61.545000px;}
.y45{bottom:62.640000px;}
.yc4{bottom:63.000000px;}
.y52{bottom:67.500000px;}
.y44{bottom:74.340000px;}
.y39{bottom:81.525000px;}
.y51{bottom:86.610000px;}
.y43{bottom:87.330000px;}
.y42{bottom:100.470000px;}
.y55{bottom:101.160000px;}
.y38{bottom:101.730000px;}
.y50{bottom:104.430000px;}
.y85{bottom:104.760000px;}
.y4f{bottom:112.350000px;}
.yb2{bottom:113.940000px;}
.yde{bottom:117.900000px;}
.y3e{bottom:119.340000px;}
.y37{bottom:121.890000px;}
.y41{bottom:122.250000px;}
.y84{bottom:124.920000px;}
.y4e{bottom:128.190000px;}
.yb1{bottom:134.100000px;}
.y36{bottom:141.870000px;}
.y4d{bottom:143.670000px;}
.ydd{bottom:144.000000px;}
.y83{bottom:144.900000px;}
.yb0{bottom:154.260000px;}
.y4c{bottom:159.330000px;}
.y35{bottom:162.030000px;}
.y82{bottom:165.060000px;}
.ydc{bottom:170.100000px;}
.yaf{bottom:174.240000px;}
.y4b{bottom:174.810000px;}
.y34{bottom:182.190000px;}
.y40{bottom:184.350000px;}
.y81{bottom:188.100000px;}
.y4a{bottom:189.930000px;}
.yd9{bottom:190.080000px;}
.y3f{bottom:194.970000px;}
.yae{bottom:197.280000px;}
.y33{bottom:202.170000px;}
.y80{bottom:214.230000px;}
.y1f{bottom:215.310000px;}
.yad{bottom:220.530000px;}
.y32{bottom:222.330000px;}
.y7f{bottom:237.450000px;}
.y1e{bottom:239.430000px;}
.yac{bottom:240.690000px;}
.y31{bottom:242.490000px;}
.y7e{bottom:257.610000px;}
.y30{bottom:258.870000px;}
.yd8{bottom:259.965000px;}
.y2f{bottom:260.670000px;}
.y2e{bottom:262.290000px;}
.y1d{bottom:263.550000px;}
.y2d{bottom:264.090000px;}
.y2c{bottom:269.490000px;}
.y7d{bottom:277.590000px;}
.yab{bottom:280.830000px;}
.y1c{bottom:287.670000px;}
.y2b{bottom:289.470000px;}
.y7c{bottom:297.750000px;}
.yaa{bottom:300.990000px;}
.yd7{bottom:302.625000px;}
.y2a{bottom:309.630000px;}
.y1b{bottom:311.790000px;}
.y7b{bottom:320.790000px;}
.ya9{bottom:320.970000px;}
.y29{bottom:329.790000px;}
.y1a{bottom:335.940000px;}
.ya8{bottom:341.130000px;}
.y11{bottom:344.205000px;}
.yd5{bottom:345.465000px;}
.y7a{bottom:346.890000px;}
.y28{bottom:349.800000px;}
.y19{bottom:360.240000px;}
.ya7{bottom:361.290000px;}
.y27{bottom:369.960000px;}
.y79{bottom:373.170000px;}
.ya6{bottom:381.270000px;}
.y18{bottom:384.360000px;}
.yd2{bottom:388.305000px;}
.y26{bottom:390.120000px;}
.y78{bottom:399.270000px;}
.ya5{bottom:401.430000px;}
.y17{bottom:408.480000px;}
.y25{bottom:410.100000px;}
.ya4{bottom:421.590000px;}
.y77{bottom:425.370000px;}
.y24{bottom:430.260000px;}
.ycf{bottom:431.145000px;}
.y16{bottom:432.600000px;}
.ya3{bottom:441.615000px;}
.y76{bottom:448.635000px;}
.y23{bottom:450.420000px;}
.y15{bottom:456.720000px;}
.ya2{bottom:461.775000px;}
.y75{bottom:468.615000px;}
.y22{bottom:473.460000px;}
.yce{bottom:473.835000px;}
.y14{bottom:480.840000px;}
.ya1{bottom:484.815000px;}
.y74{bottom:488.775000px;}
.y21{bottom:496.500000px;}
.y13{bottom:504.960000px;}
.ya0{bottom:508.035000px;}
.y73{bottom:508.935000px;}
.yf7{bottom:511.455000px;}
.ycd{bottom:516.675000px;}
.y20{bottom:519.720000px;}
.y9f{bottom:528.015000px;}
.y72{bottom:528.915000px;}
.y12{bottom:529.260000px;}
.yf6{bottom:533.595000px;}
.y9e{bottom:548.175000px;}
.y71{bottom:549.075000px;}
.yf5{bottom:555.555000px;}
.ycc{bottom:559.515000px;}
.y70{bottom:569.235000px;}
.y9d{bottom:571.215000px;}
.yf4{bottom:577.695000px;}
.y6f{bottom:592.275000px;}
.y9c{bottom:594.435000px;}
.yf3{bottom:599.295000px;}
.yca{bottom:602.355000px;}
.y9b{bottom:611.175000px;}
.y6e{bottom:618.375000px;}
.yf2{bottom:622.335000px;}
.y6d{bottom:644.475000px;}
.yc7{bottom:645.015000px;}
.yf1{bottom:645.555000px;}
.y9a{bottom:650.055000px;}
.yf0{bottom:665.535000px;}
.y6c{bottom:670.575000px;}
.yef{bottom:685.725000px;}
.yc0{bottom:687.885000px;}
.y99{bottom:688.965000px;}
.y6b{bottom:693.825000px;}
.yee{bottom:705.885000px;}
.y6a{bottom:713.985000px;}
.yed{bottom:725.865000px;}
.y97{bottom:727.845000px;}
.y69{bottom:733.965000px;}
.yec{bottom:746.025000px;}
.y68{bottom:757.005000px;}
.yeb{bottom:766.185000px;}
.y94{bottom:766.725000px;}
.ybf{bottom:773.205000px;}
.y67{bottom:780.225000px;}
.yea{bottom:786.165000px;}
.ybe{bottom:796.245000px;}
.y66{bottom:800.385000px;}
.y8f{bottom:805.605000px;}
.ye9{bottom:809.205000px;}
.ybd{bottom:819.285000px;}
.y65{bottom:820.365000px;}
.ye8{bottom:832.425000px;}
.ybc{bottom:842.505000px;}
.y64{bottom:843.585000px;}
.ye7{bottom:852.585000px;}
.y8e{bottom:859.605000px;}
.ybb{bottom:862.665000px;}
.y63{bottom:866.625000px;}
.ye6{bottom:875.625000px;}
.yba{bottom:882.645000px;}
.y10{bottom:885.525000px;}
.y8d{bottom:885.705000px;}
.y62{bottom:886.785000px;}
.yf{bottom:890.925000px;}
.ye5{bottom:901.725000px;}
.yb9{bottom:905.865000px;}
.y61{bottom:906.945000px;}
.y8c{bottom:908.925000px;}
.ye{bottom:911.490000px;}
.y60{bottom:926.970000px;}
.ye4{bottom:927.870000px;}
.y8b{bottom:928.950000px;}
.yb8{bottom:932.010000px;}
.yd{bottom:941.550000px;}
.y5f{bottom:947.130000px;}
.y8a{bottom:949.110000px;}
.ye3{bottom:953.970000px;}
.yb7{bottom:955.050000px;}
.y5e{bottom:967.110000px;}
.yc{bottom:967.650000px;}
.y89{bottom:972.150000px;}
.yb6{bottom:975.210000px;}
.ye2{bottom:980.250000px;}
.y5d{bottom:987.270000px;}
.yb{bottom:989.970000px;}
.y88{bottom:998.250000px;}
.ye1{bottom:1006.350000px;}
.y5c{bottom:1007.430000px;}
.ya{bottom:1016.070000px;}
.y87{bottom:1021.470000px;}
.y5b{bottom:1027.410000px;}
.ye0{bottom:1032.450000px;}
.y9{bottom:1040.910000px;}
.yb5{bottom:1041.630000px;}
.y86{bottom:1044.510000px;}
.y5a{bottom:1047.570000px;}
.ydf{bottom:1058.550000px;}
.yb4{bottom:1061.610000px;}
.y59{bottom:1067.730000px;}
.y8{bottom:1072.230000px;}
.y56{bottom:1075.680000px;}
.yb3{bottom:1084.650000px;}
.y58{bottom:1087.710000px;}
.y6{bottom:1108.410000px;}
.y1{bottom:1123.890000px;}
.hb{height:4.165313px;}
.hf{height:5.653125px;}
.h15{height:12.006914px;}
.h19{height:27.540000px;}
.h12{height:29.678906px;}
.h11{height:35.332031px;}
.h1c{height:37.980000px;}
.h1f{height:38.145000px;}
.h1d{height:38.160000px;}
.h1e{height:38.190000px;}
.he{height:40.985156px;}
.h23{height:41.925000px;}
.h25{height:41.961000px;}
.hd{height:42.086250px;}
.h24{height:42.105000px;}
.h22{height:42.150000px;}
.h1b{height:46.080000px;}
.ha{height:48.229102px;}
.h13{height:52.971680px;}
.h14{height:54.421875px;}
.h21{height:57.243164px;}
.h7{height:57.324375px;}
.h17{height:58.621992px;}
.h6{height:58.651172px;}
.h16{height:60.338990px;}
.h9{height:63.349102px;}
.h1a{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h26{height:68.976000px;}
.h18{height:70.218281px;}
.h20{height:77.400000px;}
.h2{height:84.990000px;}
.h8{height:89.299336px;}
.h4{height:117.180000px;}
.h10{height:224.130000px;}
.hc{height:538.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:40.341000px;}
.wb{width:70.020000px;}
.w2{width:104.074500px;}
.wd{width:108.705000px;}
.w8{width:120.780000px;}
.wa{width:120.801000px;}
.w9{width:127.656000px;}
.w4{width:132.694500px;}
.wc{width:144.396000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:6.876000px;}
.x1a{left:8.134500px;}
.x4{left:12.765000px;}
.x19{left:16.054500px;}
.x1e{left:18.214500px;}
.x17{left:19.654500px;}
.x2b{left:21.960000px;}
.x18{left:26.134500px;}
.x2f{left:27.540000px;}
.x20{left:29.194500px;}
.x2e{left:31.140000px;}
.x11{left:33.334500px;}
.x6{left:35.985000px;}
.x1f{left:47.734500px;}
.x12{left:50.794500px;}
.x10{left:55.114500px;}
.x22{left:57.094500px;}
.x1c{left:62.130000px;}
.x21{left:66.268500px;}
.x15{left:73.288500px;}
.x1{left:78.301500px;}
.x16{left:79.588500px;}
.x14{left:82.468500px;}
.x7{left:86.400000px;}
.x2{left:95.788500px;}
.x23{left:102.808500px;}
.x1d{left:106.768500px;}
.x13{left:124.588500px;}
.x5{left:141.330000px;}
.x3{left:182.385000px;}
.x1b{left:219.105000px;}
.x26{left:240.705000px;}
.x27{left:281.775000px;}
.x2a{left:284.295000px;}
.x2c{left:355.035000px;}
.x28{left:403.275000px;}
.x24{left:438.765000px;}
.x2d{left:500.160000px;}
.xc{left:519.045000px;}
.x29{left:531.660000px;}
.xa{left:568.725000px;}
.xd{left:575.205000px;}
.xb{left:590.325000px;}
.xe{left:725.190000px;}
.x9{left:766.050000px;}
.x8{left:784.230000px;}
.xf{left:806.760000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.720000pt;}
.ls41{letter-spacing:-0.448000pt;}
.ls2e{letter-spacing:-0.292267pt;}
.ls36{letter-spacing:-0.281600pt;}
.ls20{letter-spacing:-0.269845pt;}
.ls2b{letter-spacing:-0.249067pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls3a{letter-spacing:-0.216533pt;}
.ls15{letter-spacing:-0.203733pt;}
.ls14{letter-spacing:-0.201067pt;}
.ls11{letter-spacing:-0.153067pt;}
.ls39{letter-spacing:-0.140267pt;}
.ls2d{letter-spacing:-0.119467pt;}
.ls1e{letter-spacing:-0.096000pt;}
.ls2a{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.086933pt;}
.ls1a{letter-spacing:-0.076800pt;}
.ls17{letter-spacing:-0.066667pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls1c{letter-spacing:-0.061333pt;}
.lsc{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.016000pt;}
.ls1f{letter-spacing:0.016865pt;}
.ls26{letter-spacing:0.019200pt;}
.ls27{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.050596pt;}
.ls4{letter-spacing:0.067200pt;}
.ls5{letter-spacing:0.101192pt;}
.ls6{letter-spacing:0.118057pt;}
.ls19{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.156267pt;}
.ls7{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.ls3e{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.213867pt;}
.ls40{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls24{letter-spacing:0.231040pt;}
.ls29{letter-spacing:0.244267pt;}
.ls32{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.284800pt;}
.ls1{letter-spacing:0.294933pt;}
.ls2{letter-spacing:0.300800pt;}
.ls16{letter-spacing:0.307733pt;}
.ls23{letter-spacing:0.313067pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.390933pt;}
.ls1b{letter-spacing:0.436267pt;}
.ls2c{letter-spacing:0.544000pt;}
.ls31{letter-spacing:0.592640pt;}
.ls38{letter-spacing:0.821333pt;}
.ls42{letter-spacing:0.853333pt;}
.ls3b{letter-spacing:1.029333pt;}
.ls3d{letter-spacing:1.232640pt;}
.ls3c{letter-spacing:1.765333pt;}
.ls34{letter-spacing:1.872640pt;}
.ls25{letter-spacing:2.512640pt;}
.lsa{letter-spacing:4.148867pt;}
.ls22{letter-spacing:4.432640pt;}
.ls8{letter-spacing:4.823479pt;}
.ls30{letter-spacing:6.992640pt;}
.ls35{letter-spacing:7.632640pt;}
.ls33{letter-spacing:8.272640pt;}
.ls3{letter-spacing:11.472640pt;}
.ls28{letter-spacing:22.346667pt;}
.ls21{letter-spacing:22.352640pt;}
.ws1c{word-spacing:-50.646533pt;}
.ws19{word-spacing:-50.595937pt;}
.ws1b{word-spacing:-50.326092pt;}
.ws2e{word-spacing:-16.532693pt;}
.ws2d{word-spacing:-15.796693pt;}
.ws33{word-spacing:-15.620693pt;}
.ws29{word-spacing:-15.588693pt;}
.ws2b{word-spacing:-15.311360pt;}
.ws15{word-spacing:-15.203627pt;}
.ws5{word-spacing:-15.158293pt;}
.ws1e{word-spacing:-15.080427pt;}
.wsf{word-spacing:-15.075093pt;}
.ws10{word-spacing:-15.068160pt;}
.wse{word-spacing:-15.062293pt;}
.ws12{word-spacing:-15.052160pt;}
.ws28{word-spacing:-15.032960pt;}
.ws1f{word-spacing:-15.011627pt;}
.ws7{word-spacing:-14.998293pt;}
.ws27{word-spacing:-14.981227pt;}
.ws6{word-spacing:-14.950827pt;}
.ws25{word-spacing:-14.923627pt;}
.ws13{word-spacing:-14.895360pt;}
.ws4{word-spacing:-14.834560pt;}
.ws22{word-spacing:-14.786560pt;}
.ws2{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.706027pt;}
.ws11{word-spacing:-14.700693pt;}
.ws14{word-spacing:-14.690560pt;}
.ws8{word-spacing:-14.680427pt;}
.ws21{word-spacing:-14.672427pt;}
.ws23{word-spacing:-14.647893pt;}
.ws2a{word-spacing:-14.627093pt;}
.ws9{word-spacing:-14.614293pt;}
.wsd{word-spacing:-14.563627pt;}
.ws2c{word-spacing:-14.550827pt;}
.wsa{word-spacing:-14.536427pt;}
.ws20{word-spacing:-14.518293pt;}
.ws26{word-spacing:-14.485760pt;}
.ws24{word-spacing:-14.475093pt;}
.ws1a{word-spacing:-14.082536pt;}
.ws1{word-spacing:-13.600000pt;}
.ws30{word-spacing:-13.568000pt;}
.ws32{word-spacing:-13.536000pt;}
.ws2f{word-spacing:-13.344000pt;}
.ws31{word-spacing:-12.896000pt;}
.ws18{word-spacing:-11.904000pt;}
.ws3{word-spacing:-9.607680pt;}
.wsc{word-spacing:-9.280000pt;}
.wsb{word-spacing:-9.078933pt;}
.ws17{word-spacing:-7.936000pt;}
.ws1d{word-spacing:0.000000pt;}
._18{margin-left:-8.516693pt;}
._5{margin-left:-7.436800pt;}
._17{margin-left:-4.986453pt;}
._10{margin-left:-3.994453pt;}
._3{margin-left:-2.545920pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.588587pt;}
._7{width:3.520853pt;}
._8{width:4.481920pt;}
._e{width:6.061653pt;}
._6{width:7.649280pt;}
._b{width:9.037867pt;}
._f{width:10.779093pt;}
._c{width:11.719040pt;}
._9{width:12.753067pt;}
._1a{width:13.721600pt;}
._d{width:15.876480pt;}
._4{width:17.499093pt;}
._14{width:18.457813pt;}
._1b{width:20.016213pt;}
._16{width:21.103787pt;}
._15{width:22.750080pt;}
._19{width:23.654400pt;}
._a{width:26.003413pt;}
._1c{width:65.248000pt;}
._11{width:85.122773pt;}
._12{width:92.859947pt;}
._13{width:93.875200pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fsc{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.400000pt;}
.y3d{bottom:3.346667pt;}
.y5{bottom:3.680000pt;}
.y57{bottom:4.453333pt;}
.y92{bottom:6.240000pt;}
.y2{bottom:8.800000pt;}
.y48{bottom:9.120000pt;}
.y95{bottom:12.960000pt;}
.yd3{bottom:15.506667pt;}
.yc8{bottom:15.520000pt;}
.yd0{bottom:15.546667pt;}
.y90{bottom:16.480000pt;}
.y3c{bottom:19.026667pt;}
.yc6{bottom:19.040000pt;}
.y96{bottom:19.520000pt;}
.y98{bottom:19.680000pt;}
.y4{bottom:20.506667pt;}
.yc3{bottom:21.600000pt;}
.yd4{bottom:22.066667pt;}
.ycb{bottom:22.080000pt;}
.yd1{bottom:22.106667pt;}
.yd6{bottom:22.226667pt;}
.yc9{bottom:22.240000pt;}
.y54{bottom:22.560000pt;}
.y93{bottom:23.200000pt;}
.y91{bottom:26.720000pt;}
.yda{bottom:27.546667pt;}
.yc1{bottom:35.680000pt;}
.y47{bottom:35.840000pt;}
.y3b{bottom:36.786667pt;}
.yc5{bottom:37.600000pt;}
.yc2{bottom:40.160000pt;}
.y53{bottom:40.320000pt;}
.y3{bottom:42.746667pt;}
.y46{bottom:45.760000pt;}
.ydb{bottom:46.106667pt;}
.y7{bottom:51.200000pt;}
.y3a{bottom:54.706667pt;}
.y45{bottom:55.680000pt;}
.yc4{bottom:56.000000pt;}
.y52{bottom:60.000000pt;}
.y44{bottom:66.080000pt;}
.y39{bottom:72.466667pt;}
.y51{bottom:76.986667pt;}
.y43{bottom:77.626667pt;}
.y42{bottom:89.306667pt;}
.y55{bottom:89.920000pt;}
.y38{bottom:90.426667pt;}
.y50{bottom:92.826667pt;}
.y85{bottom:93.120000pt;}
.y4f{bottom:99.866667pt;}
.yb2{bottom:101.280000pt;}
.yde{bottom:104.800000pt;}
.y3e{bottom:106.080000pt;}
.y37{bottom:108.346667pt;}
.y41{bottom:108.666667pt;}
.y84{bottom:111.040000pt;}
.y4e{bottom:113.946667pt;}
.yb1{bottom:119.200000pt;}
.y36{bottom:126.106667pt;}
.y4d{bottom:127.706667pt;}
.ydd{bottom:128.000000pt;}
.y83{bottom:128.800000pt;}
.yb0{bottom:137.120000pt;}
.y4c{bottom:141.626667pt;}
.y35{bottom:144.026667pt;}
.y82{bottom:146.720000pt;}
.ydc{bottom:151.200000pt;}
.yaf{bottom:154.880000pt;}
.y4b{bottom:155.386667pt;}
.y34{bottom:161.946667pt;}
.y40{bottom:163.866667pt;}
.y81{bottom:167.200000pt;}
.y4a{bottom:168.826667pt;}
.yd9{bottom:168.960000pt;}
.y3f{bottom:173.306667pt;}
.yae{bottom:175.360000pt;}
.y33{bottom:179.706667pt;}
.y80{bottom:190.426667pt;}
.y1f{bottom:191.386667pt;}
.yad{bottom:196.026667pt;}
.y32{bottom:197.626667pt;}
.y7f{bottom:211.066667pt;}
.y1e{bottom:212.826667pt;}
.yac{bottom:213.946667pt;}
.y31{bottom:215.546667pt;}
.y7e{bottom:228.986667pt;}
.y30{bottom:230.106667pt;}
.yd8{bottom:231.080000pt;}
.y2f{bottom:231.706667pt;}
.y2e{bottom:233.146667pt;}
.y1d{bottom:234.266667pt;}
.y2d{bottom:234.746667pt;}
.y2c{bottom:239.546667pt;}
.y7d{bottom:246.746667pt;}
.yab{bottom:249.626667pt;}
.y1c{bottom:255.706667pt;}
.y2b{bottom:257.306667pt;}
.y7c{bottom:264.666667pt;}
.yaa{bottom:267.546667pt;}
.yd7{bottom:269.000000pt;}
.y2a{bottom:275.226667pt;}
.y1b{bottom:277.146667pt;}
.y7b{bottom:285.146667pt;}
.ya9{bottom:285.306667pt;}
.y29{bottom:293.146667pt;}
.y1a{bottom:298.613333pt;}
.ya8{bottom:303.226667pt;}
.y11{bottom:305.960000pt;}
.yd5{bottom:307.080000pt;}
.y7a{bottom:308.346667pt;}
.y28{bottom:310.933333pt;}
.y19{bottom:320.213333pt;}
.ya7{bottom:321.146667pt;}
.y27{bottom:328.853333pt;}
.y79{bottom:331.706667pt;}
.ya6{bottom:338.906667pt;}
.y18{bottom:341.653333pt;}
.yd2{bottom:345.160000pt;}
.y26{bottom:346.773333pt;}
.y78{bottom:354.906667pt;}
.ya5{bottom:356.826667pt;}
.y17{bottom:363.093333pt;}
.y25{bottom:364.533333pt;}
.ya4{bottom:374.746667pt;}
.y77{bottom:378.106667pt;}
.y24{bottom:382.453333pt;}
.ycf{bottom:383.240000pt;}
.y16{bottom:384.533333pt;}
.ya3{bottom:392.546667pt;}
.y76{bottom:398.786667pt;}
.y23{bottom:400.373333pt;}
.y15{bottom:405.973333pt;}
.ya2{bottom:410.466667pt;}
.y75{bottom:416.546667pt;}
.y22{bottom:420.853333pt;}
.yce{bottom:421.186667pt;}
.y14{bottom:427.413333pt;}
.ya1{bottom:430.946667pt;}
.y74{bottom:434.466667pt;}
.y21{bottom:441.333333pt;}
.y13{bottom:448.853333pt;}
.ya0{bottom:451.586667pt;}
.y73{bottom:452.386667pt;}
.yf7{bottom:454.626667pt;}
.ycd{bottom:459.266667pt;}
.y20{bottom:461.973333pt;}
.y9f{bottom:469.346667pt;}
.y72{bottom:470.146667pt;}
.y12{bottom:470.453333pt;}
.yf6{bottom:474.306667pt;}
.y9e{bottom:487.266667pt;}
.y71{bottom:488.066667pt;}
.yf5{bottom:493.826667pt;}
.ycc{bottom:497.346667pt;}
.y70{bottom:505.986667pt;}
.y9d{bottom:507.746667pt;}
.yf4{bottom:513.506667pt;}
.y6f{bottom:526.466667pt;}
.y9c{bottom:528.386667pt;}
.yf3{bottom:532.706667pt;}
.yca{bottom:535.426667pt;}
.y9b{bottom:543.266667pt;}
.y6e{bottom:549.666667pt;}
.yf2{bottom:553.186667pt;}
.y6d{bottom:572.866667pt;}
.yc7{bottom:573.346667pt;}
.yf1{bottom:573.826667pt;}
.y9a{bottom:577.826667pt;}
.yf0{bottom:591.586667pt;}
.y6c{bottom:596.066667pt;}
.yef{bottom:609.533333pt;}
.yc0{bottom:611.453333pt;}
.y99{bottom:612.413333pt;}
.y6b{bottom:616.733333pt;}
.yee{bottom:627.453333pt;}
.y6a{bottom:634.653333pt;}
.yed{bottom:645.213333pt;}
.y97{bottom:646.973333pt;}
.y69{bottom:652.413333pt;}
.yec{bottom:663.133333pt;}
.y68{bottom:672.893333pt;}
.yeb{bottom:681.053333pt;}
.y94{bottom:681.533333pt;}
.ybf{bottom:687.293333pt;}
.y67{bottom:693.533333pt;}
.yea{bottom:698.813333pt;}
.ybe{bottom:707.773333pt;}
.y66{bottom:711.453333pt;}
.y8f{bottom:716.093333pt;}
.ye9{bottom:719.293333pt;}
.ybd{bottom:728.253333pt;}
.y65{bottom:729.213333pt;}
.ye8{bottom:739.933333pt;}
.ybc{bottom:748.893333pt;}
.y64{bottom:749.853333pt;}
.ye7{bottom:757.853333pt;}
.y8e{bottom:764.093333pt;}
.ybb{bottom:766.813333pt;}
.y63{bottom:770.333333pt;}
.ye6{bottom:778.333333pt;}
.yba{bottom:784.573333pt;}
.y10{bottom:787.133333pt;}
.y8d{bottom:787.293333pt;}
.y62{bottom:788.253333pt;}
.yf{bottom:791.933333pt;}
.ye5{bottom:801.533333pt;}
.yb9{bottom:805.213333pt;}
.y61{bottom:806.173333pt;}
.y8c{bottom:807.933333pt;}
.ye{bottom:810.213333pt;}
.y60{bottom:823.973333pt;}
.ye4{bottom:824.773333pt;}
.y8b{bottom:825.733333pt;}
.yb8{bottom:828.453333pt;}
.yd{bottom:836.933333pt;}
.y5f{bottom:841.893333pt;}
.y8a{bottom:843.653333pt;}
.ye3{bottom:847.973333pt;}
.yb7{bottom:848.933333pt;}
.y5e{bottom:859.653333pt;}
.yc{bottom:860.133333pt;}
.y89{bottom:864.133333pt;}
.yb6{bottom:866.853333pt;}
.ye2{bottom:871.333333pt;}
.y5d{bottom:877.573333pt;}
.yb{bottom:879.973333pt;}
.y88{bottom:887.333333pt;}
.ye1{bottom:894.533333pt;}
.y5c{bottom:895.493333pt;}
.ya{bottom:903.173333pt;}
.y87{bottom:907.973333pt;}
.y5b{bottom:913.253333pt;}
.ye0{bottom:917.733333pt;}
.y9{bottom:925.253333pt;}
.yb5{bottom:925.893333pt;}
.y86{bottom:928.453333pt;}
.y5a{bottom:931.173333pt;}
.ydf{bottom:940.933333pt;}
.yb4{bottom:943.653333pt;}
.y59{bottom:949.093333pt;}
.y8{bottom:953.093333pt;}
.y56{bottom:956.160000pt;}
.yb3{bottom:964.133333pt;}
.y58{bottom:966.853333pt;}
.y6{bottom:985.253333pt;}
.y1{bottom:999.013333pt;}
.hb{height:3.702500pt;}
.hf{height:5.025000pt;}
.h15{height:10.672812pt;}
.h19{height:24.480000pt;}
.h12{height:26.381250pt;}
.h11{height:31.406250pt;}
.h1c{height:33.760000pt;}
.h1f{height:33.906667pt;}
.h1d{height:33.920000pt;}
.h1e{height:33.946667pt;}
.he{height:36.431250pt;}
.h23{height:37.266667pt;}
.h25{height:37.298667pt;}
.hd{height:37.410000pt;}
.h24{height:37.426667pt;}
.h22{height:37.466667pt;}
.h1b{height:40.960000pt;}
.ha{height:42.870313pt;}
.h13{height:47.085938pt;}
.h14{height:48.375000pt;}
.h21{height:50.882812pt;}
.h7{height:50.955000pt;}
.h17{height:52.108438pt;}
.h6{height:52.134375pt;}
.h16{height:53.634657pt;}
.h9{height:56.310313pt;}
.h1a{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h26{height:61.312000pt;}
.h18{height:62.416250pt;}
.h20{height:68.800000pt;}
.h2{height:75.546667pt;}
.h8{height:79.377187pt;}
.h4{height:104.160000pt;}
.h10{height:199.226667pt;}
.hc{height:478.933333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:35.858667pt;}
.wb{width:62.240000pt;}
.w2{width:92.510667pt;}
.wd{width:96.626667pt;}
.w8{width:107.360000pt;}
.wa{width:107.378667pt;}
.w9{width:113.472000pt;}
.w4{width:117.950667pt;}
.wc{width:128.352000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.112000pt;}
.x1a{left:7.230667pt;}
.x4{left:11.346667pt;}
.x19{left:14.270667pt;}
.x1e{left:16.190667pt;}
.x17{left:17.470667pt;}
.x2b{left:19.520000pt;}
.x18{left:23.230667pt;}
.x2f{left:24.480000pt;}
.x20{left:25.950667pt;}
.x2e{left:27.680000pt;}
.x11{left:29.630667pt;}
.x6{left:31.986667pt;}
.x1f{left:42.430667pt;}
.x12{left:45.150667pt;}
.x10{left:48.990667pt;}
.x22{left:50.750667pt;}
.x1c{left:55.226667pt;}
.x21{left:58.905333pt;}
.x15{left:65.145333pt;}
.x1{left:69.601333pt;}
.x16{left:70.745333pt;}
.x14{left:73.305333pt;}
.x7{left:76.800000pt;}
.x2{left:85.145333pt;}
.x23{left:91.385333pt;}
.x1d{left:94.905333pt;}
.x13{left:110.745333pt;}
.x5{left:125.626667pt;}
.x3{left:162.120000pt;}
.x1b{left:194.760000pt;}
.x26{left:213.960000pt;}
.x27{left:250.466667pt;}
.x2a{left:252.706667pt;}
.x2c{left:315.586667pt;}
.x28{left:358.466667pt;}
.x24{left:390.013333pt;}
.x2d{left:444.586667pt;}
.xc{left:461.373333pt;}
.x29{left:472.586667pt;}
.xa{left:505.533333pt;}
.xd{left:511.293333pt;}
.xb{left:524.733333pt;}
.xe{left:644.613333pt;}
.x9{left:680.933333pt;}
.x8{left:697.093333pt;}
.xf{left:717.120000pt;}
}




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