
    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_75763c8a8bd8972e7135f9de.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_3f40ce06307de9f9ed558d74.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_74f1d09e71f9cb51c9ae5888.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_9d3b9eb993cd13e7f883db6b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c8e536620c6759397ca2c1d1.woff')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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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_19b087ddd0babe8726af3507.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_0b7ffa042952faab14a132c1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.978027;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_935c9a6410ff714e23fc4e53.woff')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_378c664c4d735f6fc5aeb60f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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_a05af4933dfc1f8c60e9febd.woff')format("woff");}.ffe{font-family:ffe;line-height:0.694336;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_49190e00bb58ea8bcf7e3e9f.woff')format("woff");}.fff{font-family:fff;line-height:0.892578;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ff10{font-family:ff10;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_af7570560442a99ee81c5e31.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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:ff13;src:url('chunks/assets/font_8e1abd8c1264b96e045e540f.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff14{font-family:ff14;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.190200px;}
.ls8{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.114000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.078000px;}
.lsb{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.187200px;}
.ls13{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.567600px;}
.ls3{letter-spacing:0.576000px;}
.ls11{letter-spacing:5.040000px;}
.lsd{letter-spacing:39.881280px;}
.lsc{letter-spacing:59.321280px;}
.ls4{letter-spacing:59.345280px;}
.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;}
}
.ws7{word-spacing:-66.240000px;}
.wsa{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.127600px;}
.wsc{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws9{word-spacing:0.000000px;}
._a{margin-left:-2.548080px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._12{width:2.185920px;}
._16{width:3.444480px;}
._1c{width:4.636800px;}
._7{width:6.624000px;}
._5{width:7.754400px;}
._4{width:8.876160px;}
._8{width:9.946560px;}
._6{width:11.062080px;}
._3{width:12.386880px;}
._2{width:13.910400px;}
._1e{width:14.956560px;}
._2a{width:18.017280px;}
._10{width:19.342080px;}
._11{width:20.370960px;}
._1f{width:21.726720px;}
._38{width:22.954320px;}
._9{width:24.243840px;}
._f{width:25.272720px;}
._30{width:27.092160px;}
._2c{width:28.304640px;}
._1d{width:29.324160px;}
._2d{width:30.348720px;}
._2b{width:31.698000px;}
._14{width:32.921280px;}
._15{width:34.444800px;}
._26{width:35.504640px;}
._28{width:36.748080px;}
._3d{width:37.854000px;}
._1b{width:38.984400px;}
._1a{width:40.671360px;}
._22{width:41.898960px;}
._21{width:43.235280px;}
._19{width:45.043200px;}
._39{width:46.301760px;}
._27{width:49.415040px;}
._17{width:50.938560px;}
._18{width:52.064640px;}
._3a{width:53.124480px;}
._3f{width:54.383040px;}
._3e{width:57.628800px;}
._3b{width:61.005600px;}
._2f{width:62.763840px;}
._35{width:65.047680px;}
._36{width:66.142800px;}
._13{width:67.299840px;}
._37{width:68.624640px;}
._20{width:75.844800px;}
._3c{width:79.457040px;}
._29{width:92.007360px;}
._2e{width:93.764880px;}
._b{width:105.122880px;}
._c{width:106.151760px;}
._d{width:113.932800px;}
._e{width:115.390080px;}
._32{width:126.421200px;}
._31{width:127.512000px;}
._34{width:138.507840px;}
._33{width:143.907840px;}
._25{width:152.893440px;}
._23{width:189.617520px;}
._24{width:197.647200px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y16{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y15{bottom:47.925000px;}
.y1{bottom:51.480000px;}
.y14{bottom:70.785000px;}
.y54{bottom:75.240000px;}
.y13{bottom:93.285000px;}
.y51{bottom:118.620000px;}
.y3b{bottom:118.980000px;}
.y104{bottom:120.240000px;}
.ya9{bottom:121.500000px;}
.y81{bottom:122.940000px;}
.yd2{bottom:126.540000px;}
.y50{bottom:142.380000px;}
.y3a{bottom:142.560000px;}
.y103{bottom:144.360000px;}
.ya8{bottom:145.080000px;}
.y80{bottom:146.700000px;}
.yd1{bottom:150.300000px;}
.y39{bottom:166.320000px;}
.y4f{bottom:166.860000px;}
.y102{bottom:168.120000px;}
.ya7{bottom:169.200000px;}
.y7f{bottom:170.280000px;}
.yd0{bottom:173.880000px;}
.y38{bottom:190.080000px;}
.y4e{bottom:190.620000px;}
.y101{bottom:191.700000px;}
.ya6{bottom:194.040000px;}
.y7e{bottom:195.300000px;}
.ycf{bottom:197.640000px;}
.y37{bottom:213.870000px;}
.y4d{bottom:214.770000px;}
.y100{bottom:215.490000px;}
.y7d{bottom:219.090000px;}
.yce{bottom:221.430000px;}
.y36{bottom:237.450000px;}
.y4c{bottom:238.530000px;}
.yff{bottom:239.250000px;}
.y7c{bottom:242.850000px;}
.ya5{bottom:243.930000px;}
.ycd{bottom:245.190000px;}
.y35{bottom:261.210000px;}
.y4b{bottom:262.110000px;}
.yfe{bottom:263.010000px;}
.y7b{bottom:266.430000px;}
.ya4{bottom:268.770000px;}
.y34{bottom:284.970000px;}
.y4a{bottom:285.870000px;}
.yfd{bottom:286.590000px;}
.y7a{bottom:291.450000px;}
.ycc{bottom:292.530000px;}
.ya3{bottom:293.790000px;}
.y33{bottom:308.730000px;}
.y49{bottom:309.630000px;}
.yfc{bottom:310.350000px;}
.y79{bottom:315.030000px;}
.ycb{bottom:316.290000px;}
.ya2{bottom:317.370000px;}
.y32{bottom:332.310000px;}
.y48{bottom:333.390000px;}
.yfb{bottom:334.110000px;}
.y78{bottom:338.790000px;}
.ydd{bottom:339.690000px;}
.yca{bottom:340.050000px;}
.ya1{bottom:342.390000px;}
.y31{bottom:356.070000px;}
.y47{bottom:357.150000px;}
.yfa{bottom:357.870000px;}
.y77{bottom:362.550000px;}
.ydc{bottom:363.270000px;}
.yc9{bottom:363.630000px;}
.ya0{bottom:367.230000px;}
.y30{bottom:379.830000px;}
.y46{bottom:380.730000px;}
.yf9{bottom:381.090000px;}
.y76{bottom:386.310000px;}
.yc8{bottom:387.390000px;}
.y9f{bottom:392.070000px;}
.y2f{bottom:403.590000px;}
.y45{bottom:404.490000px;}
.yf8{bottom:405.210000px;}
.y75{bottom:409.890000px;}
.yc7{bottom:411.150000px;}
.y9e{bottom:417.090000px;}
.y2e{bottom:427.350000px;}
.y44{bottom:428.250000px;}
.yf7{bottom:428.970000px;}
.y74{bottom:433.650000px;}
.yc6{bottom:434.910000px;}
.y9d{bottom:441.975000px;}
.y2d{bottom:450.975000px;}
.y43{bottom:452.055000px;}
.yf6{bottom:452.775000px;}
.y73{bottom:457.455000px;}
.yc5{bottom:458.715000px;}
.y9c{bottom:466.815000px;}
.y2c{bottom:474.735000px;}
.y42{bottom:475.635000px;}
.yf5{bottom:476.355000px;}
.y72{bottom:481.215000px;}
.yc4{bottom:482.295000px;}
.y9b{bottom:491.835000px;}
.y2b{bottom:498.495000px;}
.y41{bottom:499.395000px;}
.yf4{bottom:500.115000px;}
.y71{bottom:504.795000px;}
.yc3{bottom:506.055000px;}
.y9a{bottom:516.675000px;}
.y2a{bottom:522.255000px;}
.y40{bottom:523.155000px;}
.yf3{bottom:523.875000px;}
.y70{bottom:528.555000px;}
.yc2{bottom:529.455000px;}
.ydb{bottom:529.815000px;}
.y99{bottom:541.695000px;}
.y29{bottom:545.835000px;}
.y3f{bottom:546.915000px;}
.yf2{bottom:547.635000px;}
.y6f{bottom:552.315000px;}
.yc1{bottom:553.215000px;}
.yda{bottom:553.575000px;}
.y98{bottom:565.275000px;}
.y28{bottom:569.595000px;}
.y3e{bottom:570.495000px;}
.yf1{bottom:571.215000px;}
.y6e{bottom:576.075000px;}
.yc0{bottom:577.155000px;}
.y97{bottom:590.295000px;}
.y27{bottom:592.995000px;}
.y3d{bottom:594.255000px;}
.yf0{bottom:594.975000px;}
.y6d{bottom:599.835000px;}
.ybf{bottom:600.915000px;}
.y96{bottom:614.055000px;}
.y26{bottom:617.655000px;}
.y3c{bottom:618.015000px;}
.yef{bottom:618.735000px;}
.y6c{bottom:623.415000px;}
.ybe{bottom:624.675000px;}
.y95{bottom:637.635000px;}
.y25{bottom:641.595000px;}
.yee{bottom:642.495000px;}
.y6b{bottom:647.175000px;}
.ybd{bottom:648.435000px;}
.y94{bottom:662.475000px;}
.yed{bottom:665.715000px;}
.y24{bottom:668.415000px;}
.y6a{bottom:670.935000px;}
.ybc{bottom:672.015000px;}
.y93{bottom:687.525000px;}
.yec{bottom:689.505000px;}
.y23{bottom:690.225000px;}
.y69{bottom:694.725000px;}
.ydf{bottom:695.445000px;}
.ybb{bottom:695.805000px;}
.y22{bottom:712.005000px;}
.y92{bottom:712.365000px;}
.yeb{bottom:713.625000px;}
.y68{bottom:718.305000px;}
.yde{bottom:719.205000px;}
.yba{bottom:719.565000px;}
.y21{bottom:733.785000px;}
.y91{bottom:737.025000px;}
.yea{bottom:737.385000px;}
.y67{bottom:742.065000px;}
.yb9{bottom:743.325000px;}
.y20{bottom:755.745000px;}
.y90{bottom:760.785000px;}
.ye9{bottom:760.965000px;}
.y66{bottom:765.825000px;}
.yb8{bottom:766.905000px;}
.y1f{bottom:777.525000px;}
.y8f{bottom:784.725000px;}
.ye8{bottom:785.985000px;}
.y65{bottom:789.225000px;}
.yb7{bottom:790.665000px;}
.y1e{bottom:799.305000px;}
.y8e{bottom:808.485000px;}
.ye7{bottom:809.745000px;}
.y64{bottom:812.805000px;}
.yb6{bottom:814.065000px;}
.yd9{bottom:814.425000px;}
.y1d{bottom:821.085000px;}
.y8d{bottom:832.065000px;}
.ye6{bottom:833.325000px;}
.y63{bottom:836.925000px;}
.yb5{bottom:837.825000px;}
.yd8{bottom:838.185000px;}
.y1c{bottom:843.045000px;}
.y8c{bottom:857.085000px;}
.y62{bottom:860.685000px;}
.yb4{bottom:861.405000px;}
.yd7{bottom:861.765000px;}
.y1b{bottom:864.465000px;}
.y8b{bottom:880.665000px;}
.y1a{bottom:883.725000px;}
.y61{bottom:884.445000px;}
.yb3{bottom:885.525000px;}
.y18{bottom:892.365000px;}
.y12{bottom:899.565000px;}
.y17{bottom:903.893143px;}
.ye5{bottom:905.325000px;}
.y8a{bottom:905.685000px;}
.y60{bottom:908.025000px;}
.yb2{bottom:909.285000px;}
.y89{bottom:929.490000px;}
.y5f{bottom:931.830000px;}
.yd6{bottom:932.730000px;}
.yb1{bottom:933.090000px;}
.ye4{bottom:953.250000px;}
.y88{bottom:954.330000px;}
.y5e{bottom:955.590000px;}
.yd5{bottom:956.490000px;}
.yb0{bottom:956.850000px;}
.ye3{bottom:977.010000px;}
.y87{bottom:978.090000px;}
.y5d{bottom:979.350000px;}
.yaf{bottom:980.430000px;}
.ye2{bottom:1000.590000px;}
.y86{bottom:1001.670000px;}
.y5c{bottom:1002.930000px;}
.yae{bottom:1004.190000px;}
.y10{bottom:1018.590000px;}
.yd{bottom:1025.070000px;}
.ye1{bottom:1025.430000px;}
.y5b{bottom:1026.690000px;}
.yad{bottom:1027.950000px;}
.y5a{bottom:1050.090000px;}
.y85{bottom:1050.450000px;}
.yac{bottom:1051.710000px;}
.y59{bottom:1073.850000px;}
.y84{bottom:1074.030000px;}
.ye0{bottom:1074.210000px;}
.yd4{bottom:1074.930000px;}
.yab{bottom:1075.290000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y58{bottom:1097.790000px;}
.yd3{bottom:1098.690000px;}
.y83{bottom:1099.050000px;}
.y2{bottom:1106.250000px;}
.y57{bottom:1121.550000px;}
.y82{bottom:1122.810000px;}
.y7{bottom:1128.570000px;}
.y56{bottom:1146.600000px;}
.y4{bottom:1156.860000px;}
.yaa{bottom:1169.820000px;}
.y55{bottom:1170.180000px;}
.y53{bottom:1187.280000px;}
.y52{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.200000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1e{height:30.480469px;}
.h18{height:36.861328px;}
.h1b{height:46.251562px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1c{height:65.010937px;}
.h1f{height:65.884219px;}
.h1a{height:66.757500px;}
.h14{height:67.803750px;}
.h1d{height:68.084282px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h3{height:103.530000px;}
.h12{height:119.002500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.x13{left:80.083500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1d{left:135.036000px;}
.x19{left:162.030000px;}
.x4{left:168.885000px;}
.x16{left:191.908500px;}
.x6{left:209.010000px;}
.x14{left:253.468500px;}
.x15{left:299.728500px;}
.x17{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1a{left:473.505000px;}
.x1e{left:488.985000px;}
.x1b{left:500.505000px;}
.x1f{left:515.985000px;}
.x1c{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.169067pt;}
.ls8{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.101333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.069333pt;}
.lsb{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.166400pt;}
.ls13{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.504533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls11{letter-spacing:4.480000pt;}
.lsd{letter-spacing:35.450027pt;}
.lsc{letter-spacing:52.730027pt;}
.ls4{letter-spacing:52.751360pt;}
.ws7{word-spacing:-58.880000pt;}
.wsa{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.224533pt;}
.wsc{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws9{word-spacing:0.000000pt;}
._a{margin-left:-2.264960pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._12{width:1.943040pt;}
._16{width:3.061760pt;}
._1c{width:4.121600pt;}
._7{width:5.888000pt;}
._5{width:6.892800pt;}
._4{width:7.889920pt;}
._8{width:8.841387pt;}
._6{width:9.832960pt;}
._3{width:11.010560pt;}
._2{width:12.364800pt;}
._1e{width:13.294720pt;}
._2a{width:16.015360pt;}
._10{width:17.192960pt;}
._11{width:18.107520pt;}
._1f{width:19.312640pt;}
._38{width:20.403840pt;}
._9{width:21.550080pt;}
._f{width:22.464640pt;}
._30{width:24.081920pt;}
._2c{width:25.159680pt;}
._1d{width:26.065920pt;}
._2d{width:26.976640pt;}
._2b{width:28.176000pt;}
._14{width:29.263360pt;}
._15{width:30.617600pt;}
._26{width:31.559680pt;}
._28{width:32.664960pt;}
._3d{width:33.648000pt;}
._1b{width:34.652800pt;}
._1a{width:36.152320pt;}
._22{width:37.243520pt;}
._21{width:38.431360pt;}
._19{width:40.038400pt;}
._39{width:41.157120pt;}
._27{width:43.924480pt;}
._17{width:45.278720pt;}
._18{width:46.279680pt;}
._3a{width:47.221760pt;}
._3f{width:48.340480pt;}
._3e{width:51.225600pt;}
._3b{width:54.227200pt;}
._2f{width:55.790080pt;}
._35{width:57.820160pt;}
._36{width:58.793600pt;}
._13{width:59.822080pt;}
._37{width:60.999680pt;}
._20{width:67.417600pt;}
._3c{width:70.628480pt;}
._29{width:81.784320pt;}
._2e{width:83.346560pt;}
._b{width:93.442560pt;}
._c{width:94.357120pt;}
._d{width:101.273600pt;}
._e{width:102.568960pt;}
._32{width:112.374400pt;}
._31{width:113.344000pt;}
._34{width:123.118080pt;}
._33{width:127.918080pt;}
._25{width:135.905280pt;}
._23{width:168.548907pt;}
._24{width:175.686400pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y16{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y15{bottom:42.600000pt;}
.y1{bottom:45.760000pt;}
.y14{bottom:62.920000pt;}
.y54{bottom:66.880000pt;}
.y13{bottom:82.920000pt;}
.y51{bottom:105.440000pt;}
.y3b{bottom:105.760000pt;}
.y104{bottom:106.880000pt;}
.ya9{bottom:108.000000pt;}
.y81{bottom:109.280000pt;}
.yd2{bottom:112.480000pt;}
.y50{bottom:126.560000pt;}
.y3a{bottom:126.720000pt;}
.y103{bottom:128.320000pt;}
.ya8{bottom:128.960000pt;}
.y80{bottom:130.400000pt;}
.yd1{bottom:133.600000pt;}
.y39{bottom:147.840000pt;}
.y4f{bottom:148.320000pt;}
.y102{bottom:149.440000pt;}
.ya7{bottom:150.400000pt;}
.y7f{bottom:151.360000pt;}
.yd0{bottom:154.560000pt;}
.y38{bottom:168.960000pt;}
.y4e{bottom:169.440000pt;}
.y101{bottom:170.400000pt;}
.ya6{bottom:172.480000pt;}
.y7e{bottom:173.600000pt;}
.ycf{bottom:175.680000pt;}
.y37{bottom:190.106667pt;}
.y4d{bottom:190.906667pt;}
.y100{bottom:191.546667pt;}
.y7d{bottom:194.746667pt;}
.yce{bottom:196.826667pt;}
.y36{bottom:211.066667pt;}
.y4c{bottom:212.026667pt;}
.yff{bottom:212.666667pt;}
.y7c{bottom:215.866667pt;}
.ya5{bottom:216.826667pt;}
.ycd{bottom:217.946667pt;}
.y35{bottom:232.186667pt;}
.y4b{bottom:232.986667pt;}
.yfe{bottom:233.786667pt;}
.y7b{bottom:236.826667pt;}
.ya4{bottom:238.906667pt;}
.y34{bottom:253.306667pt;}
.y4a{bottom:254.106667pt;}
.yfd{bottom:254.746667pt;}
.y7a{bottom:259.066667pt;}
.ycc{bottom:260.026667pt;}
.ya3{bottom:261.146667pt;}
.y33{bottom:274.426667pt;}
.y49{bottom:275.226667pt;}
.yfc{bottom:275.866667pt;}
.y79{bottom:280.026667pt;}
.ycb{bottom:281.146667pt;}
.ya2{bottom:282.106667pt;}
.y32{bottom:295.386667pt;}
.y48{bottom:296.346667pt;}
.yfb{bottom:296.986667pt;}
.y78{bottom:301.146667pt;}
.ydd{bottom:301.946667pt;}
.yca{bottom:302.266667pt;}
.ya1{bottom:304.346667pt;}
.y31{bottom:316.506667pt;}
.y47{bottom:317.466667pt;}
.yfa{bottom:318.106667pt;}
.y77{bottom:322.266667pt;}
.ydc{bottom:322.906667pt;}
.yc9{bottom:323.226667pt;}
.ya0{bottom:326.426667pt;}
.y30{bottom:337.626667pt;}
.y46{bottom:338.426667pt;}
.yf9{bottom:338.746667pt;}
.y76{bottom:343.386667pt;}
.yc8{bottom:344.346667pt;}
.y9f{bottom:348.506667pt;}
.y2f{bottom:358.746667pt;}
.y45{bottom:359.546667pt;}
.yf8{bottom:360.186667pt;}
.y75{bottom:364.346667pt;}
.yc7{bottom:365.466667pt;}
.y9e{bottom:370.746667pt;}
.y2e{bottom:379.866667pt;}
.y44{bottom:380.666667pt;}
.yf7{bottom:381.306667pt;}
.y74{bottom:385.466667pt;}
.yc6{bottom:386.586667pt;}
.y9d{bottom:392.866667pt;}
.y2d{bottom:400.866667pt;}
.y43{bottom:401.826667pt;}
.yf6{bottom:402.466667pt;}
.y73{bottom:406.626667pt;}
.yc5{bottom:407.746667pt;}
.y9c{bottom:414.946667pt;}
.y2c{bottom:421.986667pt;}
.y42{bottom:422.786667pt;}
.yf5{bottom:423.426667pt;}
.y72{bottom:427.746667pt;}
.yc4{bottom:428.706667pt;}
.y9b{bottom:437.186667pt;}
.y2b{bottom:443.106667pt;}
.y41{bottom:443.906667pt;}
.yf4{bottom:444.546667pt;}
.y71{bottom:448.706667pt;}
.yc3{bottom:449.826667pt;}
.y9a{bottom:459.266667pt;}
.y2a{bottom:464.226667pt;}
.y40{bottom:465.026667pt;}
.yf3{bottom:465.666667pt;}
.y70{bottom:469.826667pt;}
.yc2{bottom:470.626667pt;}
.ydb{bottom:470.946667pt;}
.y99{bottom:481.506667pt;}
.y29{bottom:485.186667pt;}
.y3f{bottom:486.146667pt;}
.yf2{bottom:486.786667pt;}
.y6f{bottom:490.946667pt;}
.yc1{bottom:491.746667pt;}
.yda{bottom:492.066667pt;}
.y98{bottom:502.466667pt;}
.y28{bottom:506.306667pt;}
.y3e{bottom:507.106667pt;}
.yf1{bottom:507.746667pt;}
.y6e{bottom:512.066667pt;}
.yc0{bottom:513.026667pt;}
.y97{bottom:524.706667pt;}
.y27{bottom:527.106667pt;}
.y3d{bottom:528.226667pt;}
.yf0{bottom:528.866667pt;}
.y6d{bottom:533.186667pt;}
.ybf{bottom:534.146667pt;}
.y96{bottom:545.826667pt;}
.y26{bottom:549.026667pt;}
.y3c{bottom:549.346667pt;}
.yef{bottom:549.986667pt;}
.y6c{bottom:554.146667pt;}
.ybe{bottom:555.266667pt;}
.y95{bottom:566.786667pt;}
.y25{bottom:570.306667pt;}
.yee{bottom:571.106667pt;}
.y6b{bottom:575.266667pt;}
.ybd{bottom:576.386667pt;}
.y94{bottom:588.866667pt;}
.yed{bottom:591.746667pt;}
.y24{bottom:594.146667pt;}
.y6a{bottom:596.386667pt;}
.ybc{bottom:597.346667pt;}
.y93{bottom:611.133333pt;}
.yec{bottom:612.893333pt;}
.y23{bottom:613.533333pt;}
.y69{bottom:617.533333pt;}
.ydf{bottom:618.173333pt;}
.ybb{bottom:618.493333pt;}
.y22{bottom:632.893333pt;}
.y92{bottom:633.213333pt;}
.yeb{bottom:634.333333pt;}
.y68{bottom:638.493333pt;}
.yde{bottom:639.293333pt;}
.yba{bottom:639.613333pt;}
.y21{bottom:652.253333pt;}
.y91{bottom:655.133333pt;}
.yea{bottom:655.453333pt;}
.y67{bottom:659.613333pt;}
.yb9{bottom:660.733333pt;}
.y20{bottom:671.773333pt;}
.y90{bottom:676.253333pt;}
.ye9{bottom:676.413333pt;}
.y66{bottom:680.733333pt;}
.yb8{bottom:681.693333pt;}
.y1f{bottom:691.133333pt;}
.y8f{bottom:697.533333pt;}
.ye8{bottom:698.653333pt;}
.y65{bottom:701.533333pt;}
.yb7{bottom:702.813333pt;}
.y1e{bottom:710.493333pt;}
.y8e{bottom:718.653333pt;}
.ye7{bottom:719.773333pt;}
.y64{bottom:722.493333pt;}
.yb6{bottom:723.613333pt;}
.yd9{bottom:723.933333pt;}
.y1d{bottom:729.853333pt;}
.y8d{bottom:739.613333pt;}
.ye6{bottom:740.733333pt;}
.y63{bottom:743.933333pt;}
.yb5{bottom:744.733333pt;}
.yd8{bottom:745.053333pt;}
.y1c{bottom:749.373333pt;}
.y8c{bottom:761.853333pt;}
.y62{bottom:765.053333pt;}
.yb4{bottom:765.693333pt;}
.yd7{bottom:766.013333pt;}
.y1b{bottom:768.413333pt;}
.y8b{bottom:782.813333pt;}
.y1a{bottom:785.533333pt;}
.y61{bottom:786.173333pt;}
.yb3{bottom:787.133333pt;}
.y18{bottom:793.213333pt;}
.y12{bottom:799.613333pt;}
.y17{bottom:803.460571pt;}
.ye5{bottom:804.733333pt;}
.y8a{bottom:805.053333pt;}
.y60{bottom:807.133333pt;}
.yb2{bottom:808.253333pt;}
.y89{bottom:826.213333pt;}
.y5f{bottom:828.293333pt;}
.yd6{bottom:829.093333pt;}
.yb1{bottom:829.413333pt;}
.ye4{bottom:847.333333pt;}
.y88{bottom:848.293333pt;}
.y5e{bottom:849.413333pt;}
.yd5{bottom:850.213333pt;}
.yb0{bottom:850.533333pt;}
.ye3{bottom:868.453333pt;}
.y87{bottom:869.413333pt;}
.y5d{bottom:870.533333pt;}
.yaf{bottom:871.493333pt;}
.ye2{bottom:889.413333pt;}
.y86{bottom:890.373333pt;}
.y5c{bottom:891.493333pt;}
.yae{bottom:892.613333pt;}
.y10{bottom:905.413333pt;}
.yd{bottom:911.173333pt;}
.ye1{bottom:911.493333pt;}
.y5b{bottom:912.613333pt;}
.yad{bottom:913.733333pt;}
.y5a{bottom:933.413333pt;}
.y85{bottom:933.733333pt;}
.yac{bottom:934.853333pt;}
.y59{bottom:954.533333pt;}
.y84{bottom:954.693333pt;}
.ye0{bottom:954.853333pt;}
.yd4{bottom:955.493333pt;}
.yab{bottom:955.813333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y58{bottom:975.813333pt;}
.yd3{bottom:976.613333pt;}
.y83{bottom:976.933333pt;}
.y2{bottom:983.333333pt;}
.y57{bottom:996.933333pt;}
.y82{bottom:998.053333pt;}
.y7{bottom:1003.173333pt;}
.y56{bottom:1019.200000pt;}
.y4{bottom:1028.320000pt;}
.yaa{bottom:1039.840000pt;}
.y55{bottom:1040.160000pt;}
.y53{bottom:1055.360000pt;}
.y52{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.400000pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1e{height:27.093750pt;}
.h18{height:32.765625pt;}
.h1b{height:41.112500pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1c{height:57.787500pt;}
.h1f{height:58.563750pt;}
.h1a{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1d{height:60.519362pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h3{height:92.026667pt;}
.h12{height:105.780000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.x13{left:71.185333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1d{left:120.032000pt;}
.x19{left:144.026667pt;}
.x4{left:150.120000pt;}
.x16{left:170.585333pt;}
.x6{left:185.786667pt;}
.x14{left:225.305333pt;}
.x15{left:266.425333pt;}
.x17{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1a{left:420.893333pt;}
.x1e{left:434.653333pt;}
.x1b{left:444.893333pt;}
.x1f{left:458.653333pt;}
.x1c{left:468.893333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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