
    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_72f7b5a9f0d17fa751ee02ac.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_96110857d4e669beeac33ddb.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_96bd2bba41f38c01f39b7e4d.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_beff3d630886c27f9116520c.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_d83e6b7291219f69c083eda6.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_77f09854c7875e41bce24ceb.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_c4a67e9da95372d268657c96.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_ce6320929bb5dbd16dc61d2d.woff')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_6c6051464b57adf8989a7997.woff')format("woff");}.ffc{font-family:ffc;line-height:0.970703;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_280e6c0a7d5575f8dd147e86.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3f702e0381fabb37c7519123.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0c3786ea1102611e74a4e5e6.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_527f5dd992cceffc02966609.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff13{font-family:ff13;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);}
.v3{vertical-align:-30.240000px;}
.v5{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.lsd{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.190200px;}
.lsa{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.114000px;}
.lsb{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.078000px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls11{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.414600px;}
.ls3{letter-spacing:0.576000px;}
.lsf{letter-spacing:39.905280px;}
.ls6{letter-spacing:59.345280px;}
.ls10{letter-spacing:1445.316000px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.wsb{word-spacing:-24.062880px;}
.ws6{word-spacing:-19.431360px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.wsd{word-spacing:-16.974600px;}
.wse{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.912000px;}
.wsc{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws7{word-spacing:-11.340000px;}
.wsa{word-spacing:0.000000px;}
._2{margin-left:-2.178000px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._8{width:2.770560px;}
._9{width:4.121280px;}
._4{width:5.291280px;}
._5{width:6.674400px;}
._10{width:8.544960px;}
._15{width:9.827280px;}
._7{width:10.921680px;}
._6{width:12.230640px;}
._29{width:13.319280px;}
._f{width:14.448240px;}
._17{width:15.460560px;}
._27{width:18.017280px;}
._26{width:20.269440px;}
._14{width:21.329280px;}
._21{width:23.316480px;}
._c{width:25.171200px;}
._d{width:27.216720px;}
._1e{width:28.580160px;}
._e{width:30.205440px;}
._23{width:31.347360px;}
._12{width:33.061680px;}
._11{width:34.179840px;}
._b{width:39.412800px;}
._a{width:41.218320px;}
._20{width:42.561360px;}
._1c{width:43.718400px;}
._1d{width:45.277200px;}
._1f{width:51.998400px;}
._28{width:53.226000px;}
._13{width:59.947200px;}
._16{width:62.366400px;}
._22{width:66.504960px;}
._18{width:67.564800px;}
._25{width:76.440960px;}
._24{width:80.017920px;}
._1b{width:152.893440px;}
._19{width:189.617520px;}
._1a{width:197.647200px;}
._3{width:199.416000px;}
.fc3{color:rgb(255,0,0);}
.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;}
.fsb{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs8{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y90{bottom:5.940000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y7d{bottom:9.360000px;}
.y82{bottom:9.705000px;}
.y56{bottom:9.720000px;}
.y80{bottom:9.750000px;}
.y72{bottom:9.765000px;}
.y64{bottom:9.900000px;}
.y16{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y7c{bottom:34.020000px;}
.y6f{bottom:34.380000px;}
.y61{bottom:34.410000px;}
.y15{bottom:47.925000px;}
.y1{bottom:51.480000px;}
.y14{bottom:70.785000px;}
.y50{bottom:75.240000px;}
.y13{bottom:93.285000px;}
.y88{bottom:115.740000px;}
.y3a{bottom:120.600000px;}
.ybd{bottom:128.700000px;}
.y4d{bottom:135.720000px;}
.y87{bottom:140.400000px;}
.y39{bottom:145.260000px;}
.yb3{bottom:153.000000px;}
.ybc{bottom:153.360000px;}
.y4c{bottom:160.380000px;}
.y86{bottom:165.060000px;}
.y38{bottom:169.920000px;}
.yb2{bottom:177.660000px;}
.ybb{bottom:178.020000px;}
.y4b{bottom:185.040000px;}
.y85{bottom:185.940000px;}
.y37{bottom:194.580000px;}
.yb1{bottom:202.680000px;}
.y4a{bottom:209.730000px;}
.y36{bottom:219.270000px;}
.y6a{bottom:224.130000px;}
.yb0{bottom:227.370000px;}
.y49{bottom:234.570000px;}
.y35{bottom:243.570000px;}
.y69{bottom:248.790000px;}
.yaf{bottom:252.030000px;}
.y48{bottom:260.310000px;}
.y34{bottom:268.230000px;}
.y68{bottom:273.450000px;}
.yae{bottom:276.690000px;}
.y47{bottom:285.150000px;}
.y33{bottom:293.250000px;}
.y67{bottom:298.110000px;}
.yad{bottom:300.990000px;}
.yba{bottom:301.350000px;}
.y46{bottom:310.890000px;}
.y32{bottom:317.910000px;}
.y66{bottom:318.810000px;}
.yac{bottom:325.650000px;}
.yb9{bottom:326.010000px;}
.y45{bottom:336.810000px;}
.y31{bottom:342.570000px;}
.yab{bottom:350.310000px;}
.yb8{bottom:350.670000px;}
.y44{bottom:362.550000px;}
.y30{bottom:367.230000px;}
.y84{bottom:370.110000px;}
.yaa{bottom:375.330000px;}
.y83{bottom:385.785000px;}
.y43{bottom:387.210000px;}
.y2f{bottom:391.890000px;}
.ya9{bottom:400.170000px;}
.y81{bottom:411.165000px;}
.y42{bottom:412.590000px;}
.y2e{bottom:416.550000px;}
.ya8{bottom:424.830000px;}
.y7f{bottom:436.545000px;}
.y41{bottom:437.790000px;}
.y2d{bottom:441.255000px;}
.ya7{bottom:449.535000px;}
.y7e{bottom:462.135000px;}
.y40{bottom:462.495000px;}
.y2c{bottom:465.915000px;}
.yb7{bottom:473.835000px;}
.ya6{bottom:474.195000px;}
.y7b{bottom:487.515000px;}
.y3f{bottom:488.235000px;}
.y2b{bottom:490.575000px;}
.yb6{bottom:498.495000px;}
.ya5{bottom:498.855000px;}
.y3e{bottom:513.075000px;}
.y2a{bottom:515.235000px;}
.ya4{bottom:523.515000px;}
.y3d{bottom:538.815000px;}
.y29{bottom:539.895000px;}
.y7a{bottom:547.275000px;}
.ya3{bottom:548.175000px;}
.y3c{bottom:564.195000px;}
.y28{bottom:564.555000px;}
.y65{bottom:568.335000px;}
.y79{bottom:571.575000px;}
.ya2{bottom:572.835000px;}
.y27{bottom:589.215000px;}
.y63{bottom:593.715000px;}
.y78{bottom:596.235000px;}
.ya1{bottom:597.495000px;}
.y26{bottom:613.875000px;}
.y62{bottom:619.275000px;}
.y77{bottom:621.255000px;}
.ya0{bottom:622.155000px;}
.y25{bottom:638.535000px;}
.y60{bottom:644.655000px;}
.y76{bottom:645.915000px;}
.y9f{bottom:646.815000px;}
.y24{bottom:663.015000px;}
.y3b{bottom:663.375000px;}
.y75{bottom:666.795000px;}
.y9e{bottom:671.475000px;}
.y23{bottom:687.705000px;}
.y9d{bottom:696.165000px;}
.y5f{bottom:704.445000px;}
.y22{bottom:712.005000px;}
.y9c{bottom:720.825000px;}
.y5e{bottom:728.745000px;}
.y21{bottom:733.785000px;}
.y9b{bottom:745.485000px;}
.y5d{bottom:753.405000px;}
.y20{bottom:755.745000px;}
.yb5{bottom:769.785000px;}
.y9a{bottom:770.145000px;}
.y1f{bottom:777.525000px;}
.y5c{bottom:778.425000px;}
.yb4{bottom:794.445000px;}
.y99{bottom:794.805000px;}
.y1e{bottom:799.305000px;}
.y5b{bottom:803.085000px;}
.y98{bottom:819.465000px;}
.y1d{bottom:821.085000px;}
.y5a{bottom:823.785000px;}
.y1c{bottom:843.045000px;}
.y97{bottom:844.125000px;}
.y1b{bottom:864.465000px;}
.y96{bottom:868.785000px;}
.y74{bottom:869.505000px;}
.y1a{bottom:883.725000px;}
.y73{bottom:885.165000px;}
.y18{bottom:892.365000px;}
.y95{bottom:893.445000px;}
.y12{bottom:899.565000px;}
.y17{bottom:903.893143px;}
.y71{bottom:910.545000px;}
.y94{bottom:917.790000px;}
.y70{bottom:935.970000px;}
.y93{bottom:942.810000px;}
.y6e{bottom:961.350000px;}
.y92{bottom:967.470000px;}
.y59{bottom:971.250000px;}
.y91{bottom:992.130000px;}
.y58{bottom:996.810000px;}
.y8f{bottom:1007.790000px;}
.y8e{bottom:1009.410000px;}
.y10{bottom:1018.590000px;}
.y57{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y6d{bottom:1033.350000px;}
.y8d{bottom:1034.970000px;}
.y55{bottom:1047.570000px;}
.y6c{bottom:1057.650000px;}
.y8c{bottom:1060.350000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y6b{bottom:1082.310000px;}
.y54{bottom:1082.670000px;}
.y8b{bottom:1085.730000px;}
.y2{bottom:1106.250000px;}
.y53{bottom:1106.970000px;}
.y7{bottom:1128.570000px;}
.y52{bottom:1131.630000px;}
.y8a{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y51{bottom:1169.460000px;}
.y89{bottom:1169.820000px;}
.y4f{bottom:1187.280000px;}
.y4e{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h18{height:7.200000px;}
.hd{height:13.324219px;}
.h19{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h22{height:24.645000px;}
.h27{height:24.660000px;}
.h28{height:24.681000px;}
.h26{height:24.682500px;}
.h24{height:24.825000px;}
.h7{height:28.290000px;}
.h1f{height:30.480469px;}
.h1a{height:36.861328px;}
.h25{height:49.305000px;}
.h23{height:49.350000px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h16{height:63.492188px;}
.h1b{height:64.978594px;}
.h1d{height:65.010937px;}
.h20{height:65.499609px;}
.h21{height:65.884219px;}
.h1c{height:66.757500px;}
.h15{height:67.803750px;}
.h1e{height:68.084282px;}
.h6{height:71.324297px;}
.h17{height:72.562500px;}
.h14{height:74.736211px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3{height:103.530000px;}
.h12{height:119.002500px;}
.h29{height:176.610000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:67.320000px;}
.w12{width:72.390000px;}
.wc{width:75.780000px;}
.wf{width:81.570000px;}
.wa{width:94.309500px;}
.wd{width:104.025000px;}
.w10{width:105.285000px;}
.w13{width:105.829500px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w8{width:124.369500px;}
.we{width:139.881000px;}
.w11{width:147.801000px;}
.w14{width:152.115000px;}
.wb{width:155.355000px;}
.w9{width:201.795000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w16{width:326.940000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x3c{left:14.929500px;}
.x13{left:16.729500px;}
.x10{left:20.685000px;}
.x33{left:22.305000px;}
.x41{left:25.380000px;}
.x38{left:27.720000px;}
.x36{left:28.965000px;}
.x3f{left:30.945000px;}
.xb{left:34.185000px;}
.x35{left:35.445000px;}
.x3e{left:37.605000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x20{left:100.306500px;}
.x17{left:104.563500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x28{left:127.656000px;}
.x23{left:131.616000px;}
.x24{left:145.476000px;}
.x15{left:151.903500px;}
.x1b{left:162.030000px;}
.x4{left:168.885000px;}
.x1f{left:179.670000px;}
.x25{left:195.345000px;}
.x18{left:196.588500px;}
.x29{left:205.950000px;}
.x3d{left:207.045000px;}
.x6{left:209.010000px;}
.x21{left:225.405000px;}
.x16{left:256.528500px;}
.x2a{left:263.730000px;}
.x42{left:270.390000px;}
.x14{left:290.008500px;}
.x19{left:324.965515px;}
.x12{left:335.578500px;}
.x26{left:351.435000px;}
.x40{left:359.895000px;}
.x27{left:392.295000px;}
.x22{left:430.995000px;}
.xa{left:445.620000px;}
.x2c{left:465.960000px;}
.x1c{left:473.505000px;}
.x3a{left:479.985000px;}
.x30{left:483.765000px;}
.x1d{left:500.505000px;}
.x43{left:517.065000px;}
.x31{left:521.025000px;}
.x1e{left:527.505000px;}
.x32{left:539.745000px;}
.x2b{left:541.005000px;}
.x3b{left:564.045000px;}
.x2d{left:570.720000px;}
.x34{left:571.980000px;}
.x39{left:629.250000px;}
.x2e{left:711.330000px;}
.x37{left:720.510000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
.x2f{left:795.420000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v5{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.169067pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.101333pt;}
.lsb{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.069333pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls11{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.368533pt;}
.ls3{letter-spacing:0.512000pt;}
.lsf{letter-spacing:35.471360pt;}
.ls6{letter-spacing:52.751360pt;}
.ls10{letter-spacing:1284.725333pt;}
.ws8{word-spacing:-58.880000pt;}
.wsb{word-spacing:-21.389227pt;}
.ws6{word-spacing:-17.272320pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.wsd{word-spacing:-15.088533pt;}
.wse{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.144000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws7{word-spacing:-10.080000pt;}
.wsa{word-spacing:0.000000pt;}
._2{margin-left:-1.936000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._8{width:2.462720pt;}
._9{width:3.663360pt;}
._4{width:4.703360pt;}
._5{width:5.932800pt;}
._10{width:7.595520pt;}
._15{width:8.735360pt;}
._7{width:9.708160pt;}
._6{width:10.871680pt;}
._29{width:11.839360pt;}
._f{width:12.842880pt;}
._17{width:13.742720pt;}
._27{width:16.015360pt;}
._26{width:18.017280pt;}
._14{width:18.959360pt;}
._21{width:20.725760pt;}
._c{width:22.374400pt;}
._d{width:24.192640pt;}
._1e{width:25.404587pt;}
._e{width:26.849280pt;}
._23{width:27.864320pt;}
._12{width:29.388160pt;}
._11{width:30.382080pt;}
._b{width:35.033600pt;}
._a{width:36.638507pt;}
._20{width:37.832320pt;}
._1c{width:38.860800pt;}
._1d{width:40.246400pt;}
._1f{width:46.220800pt;}
._28{width:47.312000pt;}
._13{width:53.286400pt;}
._16{width:55.436800pt;}
._22{width:59.115520pt;}
._18{width:60.057600pt;}
._25{width:67.947520pt;}
._24{width:71.127040pt;}
._1b{width:135.905280pt;}
._19{width:168.548907pt;}
._1a{width:175.686400pt;}
._3{width:177.258667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs8{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y90{bottom:5.280000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y7d{bottom:8.320000pt;}
.y82{bottom:8.626667pt;}
.y56{bottom:8.640000pt;}
.y80{bottom:8.666667pt;}
.y72{bottom:8.680000pt;}
.y64{bottom:8.800000pt;}
.y16{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y7c{bottom:30.240000pt;}
.y6f{bottom:30.560000pt;}
.y61{bottom:30.586667pt;}
.y15{bottom:42.600000pt;}
.y1{bottom:45.760000pt;}
.y14{bottom:62.920000pt;}
.y50{bottom:66.880000pt;}
.y13{bottom:82.920000pt;}
.y88{bottom:102.880000pt;}
.y3a{bottom:107.200000pt;}
.ybd{bottom:114.400000pt;}
.y4d{bottom:120.640000pt;}
.y87{bottom:124.800000pt;}
.y39{bottom:129.120000pt;}
.yb3{bottom:136.000000pt;}
.ybc{bottom:136.320000pt;}
.y4c{bottom:142.560000pt;}
.y86{bottom:146.720000pt;}
.y38{bottom:151.040000pt;}
.yb2{bottom:157.920000pt;}
.ybb{bottom:158.240000pt;}
.y4b{bottom:164.480000pt;}
.y85{bottom:165.280000pt;}
.y37{bottom:172.960000pt;}
.yb1{bottom:180.160000pt;}
.y4a{bottom:186.426667pt;}
.y36{bottom:194.906667pt;}
.y6a{bottom:199.226667pt;}
.yb0{bottom:202.106667pt;}
.y49{bottom:208.506667pt;}
.y35{bottom:216.506667pt;}
.y69{bottom:221.146667pt;}
.yaf{bottom:224.026667pt;}
.y48{bottom:231.386667pt;}
.y34{bottom:238.426667pt;}
.y68{bottom:243.066667pt;}
.yae{bottom:245.946667pt;}
.y47{bottom:253.466667pt;}
.y33{bottom:260.666667pt;}
.y67{bottom:264.986667pt;}
.yad{bottom:267.546667pt;}
.yba{bottom:267.866667pt;}
.y46{bottom:276.346667pt;}
.y32{bottom:282.586667pt;}
.y66{bottom:283.386667pt;}
.yac{bottom:289.466667pt;}
.yb9{bottom:289.786667pt;}
.y45{bottom:299.386667pt;}
.y31{bottom:304.506667pt;}
.yab{bottom:311.386667pt;}
.yb8{bottom:311.706667pt;}
.y44{bottom:322.266667pt;}
.y30{bottom:326.426667pt;}
.y84{bottom:328.986667pt;}
.yaa{bottom:333.626667pt;}
.y83{bottom:342.920000pt;}
.y43{bottom:344.186667pt;}
.y2f{bottom:348.346667pt;}
.ya9{bottom:355.706667pt;}
.y81{bottom:365.480000pt;}
.y42{bottom:366.746667pt;}
.y2e{bottom:370.266667pt;}
.ya8{bottom:377.626667pt;}
.y7f{bottom:388.040000pt;}
.y41{bottom:389.146667pt;}
.y2d{bottom:392.226667pt;}
.ya7{bottom:399.586667pt;}
.y7e{bottom:410.786667pt;}
.y40{bottom:411.106667pt;}
.y2c{bottom:414.146667pt;}
.yb7{bottom:421.186667pt;}
.ya6{bottom:421.506667pt;}
.y7b{bottom:433.346667pt;}
.y3f{bottom:433.986667pt;}
.y2b{bottom:436.066667pt;}
.yb6{bottom:443.106667pt;}
.ya5{bottom:443.426667pt;}
.y3e{bottom:456.066667pt;}
.y2a{bottom:457.986667pt;}
.ya4{bottom:465.346667pt;}
.y3d{bottom:478.946667pt;}
.y29{bottom:479.906667pt;}
.y7a{bottom:486.466667pt;}
.ya3{bottom:487.266667pt;}
.y3c{bottom:501.506667pt;}
.y28{bottom:501.826667pt;}
.y65{bottom:505.186667pt;}
.y79{bottom:508.066667pt;}
.ya2{bottom:509.186667pt;}
.y27{bottom:523.746667pt;}
.y63{bottom:527.746667pt;}
.y78{bottom:529.986667pt;}
.ya1{bottom:531.106667pt;}
.y26{bottom:545.666667pt;}
.y62{bottom:550.466667pt;}
.y77{bottom:552.226667pt;}
.ya0{bottom:553.026667pt;}
.y25{bottom:567.586667pt;}
.y60{bottom:573.026667pt;}
.y76{bottom:574.146667pt;}
.y9f{bottom:574.946667pt;}
.y24{bottom:589.346667pt;}
.y3b{bottom:589.666667pt;}
.y75{bottom:592.706667pt;}
.y9e{bottom:596.866667pt;}
.y23{bottom:611.293333pt;}
.y9d{bottom:618.813333pt;}
.y5f{bottom:626.173333pt;}
.y22{bottom:632.893333pt;}
.y9c{bottom:640.733333pt;}
.y5e{bottom:647.773333pt;}
.y21{bottom:652.253333pt;}
.y9b{bottom:662.653333pt;}
.y5d{bottom:669.693333pt;}
.y20{bottom:671.773333pt;}
.yb5{bottom:684.253333pt;}
.y9a{bottom:684.573333pt;}
.y1f{bottom:691.133333pt;}
.y5c{bottom:691.933333pt;}
.yb4{bottom:706.173333pt;}
.y99{bottom:706.493333pt;}
.y1e{bottom:710.493333pt;}
.y5b{bottom:713.853333pt;}
.y98{bottom:728.413333pt;}
.y1d{bottom:729.853333pt;}
.y5a{bottom:732.253333pt;}
.y1c{bottom:749.373333pt;}
.y97{bottom:750.333333pt;}
.y1b{bottom:768.413333pt;}
.y96{bottom:772.253333pt;}
.y74{bottom:772.893333pt;}
.y1a{bottom:785.533333pt;}
.y73{bottom:786.813333pt;}
.y18{bottom:793.213333pt;}
.y95{bottom:794.173333pt;}
.y12{bottom:799.613333pt;}
.y17{bottom:803.460571pt;}
.y71{bottom:809.373333pt;}
.y94{bottom:815.813333pt;}
.y70{bottom:831.973333pt;}
.y93{bottom:838.053333pt;}
.y6e{bottom:854.533333pt;}
.y92{bottom:859.973333pt;}
.y59{bottom:863.333333pt;}
.y91{bottom:881.893333pt;}
.y58{bottom:886.053333pt;}
.y8f{bottom:895.813333pt;}
.y8e{bottom:897.253333pt;}
.y10{bottom:905.413333pt;}
.y57{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y6d{bottom:918.533333pt;}
.y8d{bottom:919.973333pt;}
.y55{bottom:931.173333pt;}
.y6c{bottom:940.133333pt;}
.y8c{bottom:942.533333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y6b{bottom:962.053333pt;}
.y54{bottom:962.373333pt;}
.y8b{bottom:965.093333pt;}
.y2{bottom:983.333333pt;}
.y53{bottom:983.973333pt;}
.y7{bottom:1003.173333pt;}
.y52{bottom:1005.893333pt;}
.y8a{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y51{bottom:1039.520000pt;}
.y89{bottom:1039.840000pt;}
.y4f{bottom:1055.360000pt;}
.y4e{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h18{height:6.400000pt;}
.hd{height:11.843750pt;}
.h19{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h22{height:21.906667pt;}
.h27{height:21.920000pt;}
.h28{height:21.938667pt;}
.h26{height:21.940000pt;}
.h24{height:22.066667pt;}
.h7{height:25.146667pt;}
.h1f{height:27.093750pt;}
.h1a{height:32.765625pt;}
.h25{height:43.826667pt;}
.h23{height:43.866667pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h16{height:56.437500pt;}
.h1b{height:57.758750pt;}
.h1d{height:57.787500pt;}
.h20{height:58.221875pt;}
.h21{height:58.563750pt;}
.h1c{height:59.340000pt;}
.h15{height:60.270000pt;}
.h1e{height:60.519362pt;}
.h6{height:63.399375pt;}
.h17{height:64.500000pt;}
.h14{height:66.432187pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3{height:92.026667pt;}
.h12{height:105.780000pt;}
.h29{height:156.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:59.840000pt;}
.w12{width:64.346667pt;}
.wc{width:67.360000pt;}
.wf{width:72.506667pt;}
.wa{width:83.830667pt;}
.wd{width:92.466667pt;}
.w10{width:93.586667pt;}
.w13{width:94.070667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w8{width:110.550667pt;}
.we{width:124.338667pt;}
.w11{width:131.378667pt;}
.w14{width:135.213333pt;}
.wb{width:138.093333pt;}
.w9{width:179.373333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w16{width:290.613333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x3c{left:13.270667pt;}
.x13{left:14.870667pt;}
.x10{left:18.386667pt;}
.x33{left:19.826667pt;}
.x41{left:22.560000pt;}
.x38{left:24.640000pt;}
.x36{left:25.746667pt;}
.x3f{left:27.506667pt;}
.xb{left:30.386667pt;}
.x35{left:31.506667pt;}
.x3e{left:33.426667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x20{left:89.161333pt;}
.x17{left:92.945333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x28{left:113.472000pt;}
.x23{left:116.992000pt;}
.x24{left:129.312000pt;}
.x15{left:135.025333pt;}
.x1b{left:144.026667pt;}
.x4{left:150.120000pt;}
.x1f{left:159.706667pt;}
.x25{left:173.640000pt;}
.x18{left:174.745333pt;}
.x29{left:183.066667pt;}
.x3d{left:184.040000pt;}
.x6{left:185.786667pt;}
.x21{left:200.360000pt;}
.x16{left:228.025333pt;}
.x2a{left:234.426667pt;}
.x42{left:240.346667pt;}
.x14{left:257.785333pt;}
.x19{left:288.858236pt;}
.x12{left:298.292000pt;}
.x26{left:312.386667pt;}
.x40{left:319.906667pt;}
.x27{left:348.706667pt;}
.x22{left:383.106667pt;}
.xa{left:396.106667pt;}
.x2c{left:414.186667pt;}
.x1c{left:420.893333pt;}
.x3a{left:426.653333pt;}
.x30{left:430.013333pt;}
.x1d{left:444.893333pt;}
.x43{left:459.613333pt;}
.x31{left:463.133333pt;}
.x1e{left:468.893333pt;}
.x32{left:479.773333pt;}
.x2b{left:480.893333pt;}
.x3b{left:501.373333pt;}
.x2d{left:507.306667pt;}
.x34{left:508.426667pt;}
.x39{left:559.333333pt;}
.x2e{left:632.293333pt;}
.x37{left:640.453333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
.x2f{left:707.040000pt;}
}




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