
    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_ac7705fc4c359e45c16c0891.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_c11bd633b15a07d77ac37715.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_8b719ad76f35023e20ec44d4.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_2b7ff097558a3ae9c9321d78.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4e7f4473900ee0bb7e3389b9.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_4f3f023dc44dd3fdba62822f.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_742078c53c998224648bd76b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_a211423f256f45636f9d4670.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0c1dc1891f95370721e4565f.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_3ece40e0c432aaba2cd5fa9a.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1fc0e6502141043cea535a43.woff')format("woff");}.ff12{font-family:ff12;line-height:0.938965;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;}
.lsf{letter-spacing:-1.134000px;}
.ls11{letter-spacing:-1.026000px;}
.ls16{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.190200px;}
.ls9{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.114000px;}
.lsa{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls12{letter-spacing:0.109200px;}
.lsb{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.187200px;}
.ls17{letter-spacing:0.262200px;}
.ls15{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.576000px;}
.ls13{letter-spacing:6.785280px;}
.lsc{letter-spacing:39.905280px;}
.ls5{letter-spacing:59.345280px;}
.ls10{letter-spacing:64.002720px;}
.lse{letter-spacing:64.026720px;}
.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:-59.760000px;}
.wsa{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.wsf{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.712400px;}
.wse{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.wsc{word-spacing:-15.426000px;}
.ws3{word-spacing:-14.650800px;}
.ws9{word-spacing:0.000000px;}
._e{margin-left:-2.115360px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._c{width:2.782080px;}
._a{width:3.974400px;}
._27{width:5.166720px;}
._7{width:6.292800px;}
._6{width:7.387920px;}
._5{width:8.977680px;}
._4{width:10.134720px;}
._9{width:11.194560px;}
._b{width:12.329760px;}
._33{width:13.634880px;}
._3{width:14.705280px;}
._8{width:17.885520px;}
._14{width:19.275120px;}
._2a{width:20.600640px;}
._41{width:21.696720px;}
._23{width:22.715040px;}
._22{width:23.869440px;}
._2f{width:25.104960px;}
._2e{width:27.158400px;}
._1e{width:28.163520px;}
._13{width:29.211840px;}
._12{width:30.797280px;}
._25{width:31.927680px;}
._4d{width:32.950560px;}
._d{width:33.981120px;}
._2d{width:35.937360px;}
._1c{width:37.293120px;}
._45{width:38.496960px;}
._11{width:40.176720px;}
._10{width:41.991840px;}
._34{width:43.320960px;}
._35{width:44.652960px;}
._38{width:45.838080px;}
._1a{width:47.329920px;}
._50{width:48.431280px;}
._f{width:49.855680px;}
._26{width:50.886720px;}
._43{width:51.943680px;}
._44{width:53.015760px;}
._51{width:55.045440px;}
._1d{width:56.140560px;}
._49{width:58.942080px;}
._19{width:59.958720px;}
._3f{width:61.158240px;}
._36{width:62.640000px;}
._37{width:63.855360px;}
._1b{width:64.992960px;}
._15{width:66.197280px;}
._16{width:67.517760px;}
._24{width:68.612640px;}
._46{width:70.680960px;}
._42{width:72.731520px;}
._30{width:74.621520px;}
._4a{width:76.440960px;}
._52{width:78.494400px;}
._54{width:79.885440px;}
._39{width:82.215360px;}
._47{width:84.268800px;}
._48{width:85.842720px;}
._3e{width:87.307200px;}
._40{width:89.154720px;}
._29{width:94.536000px;}
._28{width:95.911200px;}
._4b{width:97.459680px;}
._31{width:98.640000px;}
._32{width:100.154880px;}
._2b{width:102.142080px;}
._2c{width:103.466880px;}
._3c{width:119.298240px;}
._3a{width:125.392320px;}
._3b{width:126.686160px;}
._18{width:135.550080px;}
._17{width:136.952640px;}
._3d{width:138.643200px;}
._53{width:146.385360px;}
._4e{width:148.576320px;}
._21{width:152.893440px;}
._4f{width:154.885440px;}
._1f{width:189.617520px;}
._20{width:197.647200px;}
._2{width:199.416000px;}
._4c{width:714.409680px;}
.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;}
.y18{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;}
.y15{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y14{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y13{bottom:70.380000px;}
.y49{bottom:75.240000px;}
.y9f{bottom:120.780000px;}
.y46{bottom:125.640000px;}
.y74{bottom:134.100000px;}
.y9e{bottom:142.560000px;}
.y45{bottom:150.300000px;}
.y73{bottom:158.760000px;}
.y9d{bottom:164.520000px;}
.ycb{bottom:166.320000px;}
.y44{bottom:174.960000px;}
.y39{bottom:178.560000px;}
.y72{bottom:183.420000px;}
.y9c{bottom:186.300000px;}
.yca{bottom:188.100000px;}
.y43{bottom:199.620000px;}
.y38{bottom:203.220000px;}
.y71{bottom:208.110000px;}
.yc9{bottom:210.090000px;}
.y42{bottom:224.490000px;}
.y37{bottom:227.910000px;}
.y9b{bottom:229.890000px;}
.yc8{bottom:231.870000px;}
.y70{bottom:232.770000px;}
.y41{bottom:249.150000px;}
.y9a{bottom:251.850000px;}
.y36{bottom:252.570000px;}
.yc7{bottom:253.650000px;}
.y6f{bottom:257.430000px;}
.y99{bottom:273.630000px;}
.y40{bottom:273.810000px;}
.yc6{bottom:275.430000px;}
.y35{bottom:277.230000px;}
.y6e{bottom:282.090000px;}
.y98{bottom:295.410000px;}
.yc5{bottom:297.390000px;}
.y3f{bottom:299.550000px;}
.y34{bottom:301.890000px;}
.y6d{bottom:306.750000px;}
.y97{bottom:317.190000px;}
.yc4{bottom:319.170000px;}
.y3e{bottom:324.210000px;}
.y33{bottom:326.550000px;}
.y6c{bottom:331.050000px;}
.y79{bottom:331.410000px;}
.y96{bottom:338.970000px;}
.yc3{bottom:340.950000px;}
.y3d{bottom:349.050000px;}
.y32{bottom:351.210000px;}
.y6b{bottom:356.070000px;}
.y95{bottom:360.930000px;}
.yc2{bottom:362.730000px;}
.y3c{bottom:374.790000px;}
.y31{bottom:375.870000px;}
.y6a{bottom:380.730000px;}
.y94{bottom:382.710000px;}
.yc1{bottom:384.510000px;}
.y3b{bottom:399.450000px;}
.y30{bottom:400.530000px;}
.y93{bottom:404.490000px;}
.y69{bottom:405.390000px;}
.yc0{bottom:406.470000px;}
.y2f{bottom:425.190000px;}
.y92{bottom:426.270000px;}
.ybf{bottom:428.250000px;}
.y68{bottom:430.050000px;}
.y91{bottom:448.275000px;}
.y2e{bottom:450.075000px;}
.y67{bottom:454.755000px;}
.y90{bottom:470.055000px;}
.ybe{bottom:471.855000px;}
.y2d{bottom:474.375000px;}
.y3a{bottom:474.735000px;}
.y66{bottom:479.595000px;}
.y8f{bottom:491.835000px;}
.ybd{bottom:493.815000px;}
.y2c{bottom:499.035000px;}
.y78{bottom:503.895000px;}
.y65{bottom:504.255000px;}
.y8e{bottom:513.615000px;}
.ybc{bottom:515.595000px;}
.y2b{bottom:522.975000px;}
.y77{bottom:528.555000px;}
.y64{bottom:528.915000px;}
.y8d{bottom:535.395000px;}
.ybb{bottom:537.375000px;}
.y2a{bottom:544.935000px;}
.y7c{bottom:553.215000px;}
.y63{bottom:553.575000px;}
.y8c{bottom:557.355000px;}
.yba{bottom:559.155000px;}
.y29{bottom:569.235000px;}
.y62{bottom:578.235000px;}
.y8b{bottom:579.135000px;}
.yb9{bottom:580.935000px;}
.y28{bottom:591.015000px;}
.y8a{bottom:600.915000px;}
.y61{bottom:602.895000px;}
.y27{bottom:612.975000px;}
.y89{bottom:622.695000px;}
.yb8{bottom:624.675000px;}
.y7f{bottom:627.195000px;}
.y60{bottom:627.555000px;}
.y26{bottom:634.755000px;}
.y88{bottom:644.655000px;}
.yb7{bottom:646.455000px;}
.y5f{bottom:652.215000px;}
.y25{bottom:656.535000px;}
.y87{bottom:666.435000px;}
.yb6{bottom:668.235000px;}
.y7b{bottom:676.545000px;}
.y5e{bottom:676.905000px;}
.y24{bottom:678.345000px;}
.y86{bottom:688.245000px;}
.yb5{bottom:690.225000px;}
.y23{bottom:700.305000px;}
.y7a{bottom:701.205000px;}
.y5d{bottom:701.565000px;}
.y85{bottom:710.025000px;}
.yb4{bottom:712.005000px;}
.y22{bottom:722.085000px;}
.y82{bottom:725.865000px;}
.y5c{bottom:726.225000px;}
.y84{bottom:731.805000px;}
.yb3{bottom:733.785000px;}
.y21{bottom:743.865000px;}
.y81{bottom:750.525000px;}
.y5b{bottom:750.885000px;}
.y83{bottom:753.765000px;}
.yb2{bottom:755.565000px;}
.y20{bottom:765.645000px;}
.y76{bottom:775.185000px;}
.y5a{bottom:775.545000px;}
.yb1{bottom:777.345000px;}
.y1f{bottom:787.425000px;}
.yb0{bottom:799.305000px;}
.y75{bottom:799.845000px;}
.y59{bottom:800.205000px;}
.y1e{bottom:809.385000px;}
.yaf{bottom:821.085000px;}
.y58{bottom:824.865000px;}
.y1d{bottom:831.165000px;}
.yae{bottom:842.865000px;}
.y80{bottom:849.165000px;}
.y57{bottom:849.525000px;}
.y1c{bottom:852.945000px;}
.yad{bottom:864.645000px;}
.y7e{bottom:873.825000px;}
.y56{bottom:874.185000px;}
.y1b{bottom:874.725000px;}
.yac{bottom:886.425000px;}
.y1a{bottom:896.325000px;}
.y7d{bottom:898.485000px;}
.y55{bottom:898.845000px;}
.yab{bottom:908.385000px;}
.y19{bottom:915.630000px;}
.y54{bottom:923.550000px;}
.y17{bottom:924.270000px;}
.yaa{bottom:930.210000px;}
.y12{bottom:931.470000px;}
.y16{bottom:935.397629px;}
.y53{bottom:948.210000px;}
.ya9{bottom:951.990000px;}
.y52{bottom:972.870000px;}
.ya8{bottom:973.770000px;}
.ya7{bottom:995.730000px;}
.y51{bottom:997.530000px;}
.ya6{bottom:1017.510000px;}
.y10{bottom:1018.590000px;}
.y50{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.ya5{bottom:1039.290000px;}
.y4f{bottom:1046.850000px;}
.ya4{bottom:1061.070000px;}
.y4e{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.ya3{bottom:1082.850000px;}
.y4d{bottom:1096.170000px;}
.ya2{bottom:1104.810000px;}
.y2{bottom:1106.250000px;}
.y4c{bottom:1120.830000px;}
.ya1{bottom:1126.590000px;}
.y7{bottom:1128.570000px;}
.y4b{bottom:1145.520000px;}
.ya0{bottom:1148.400000px;}
.y4{bottom:1156.860000px;}
.y4a{bottom:1170.180000px;}
.y48{bottom:1187.280000px;}
.y47{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1d{height:30.480469px;}
.h18{height:36.861328px;}
.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;}
.h1b{height:65.010937px;}
.h1e{height:65.884219px;}
.h1a{height:66.757500px;}
.h14{height:67.803750px;}
.h1c{height:68.084282px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h12{height:87.105000px;}
.h3{height:103.530000px;}
.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;}
.x19{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.x13{left:46.243500px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x20{left:135.036000px;}
.x1a{left:162.030000px;}
.x4{left:168.885000px;}
.x17{left:180.928500px;}
.x6{left:209.010000px;}
.x15{left:238.708500px;}
.x14{left:252.928500px;}
.x16{left:275.428500px;}
.x18{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1c{left:473.505000px;}
.x1e{left:478.545000px;}
.x1d{left:500.505000px;}
.x1f{left:505.545000px;}
.x1b{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.008000pt;}
.ls11{letter-spacing:-0.912000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.101333pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls12{letter-spacing:0.097067pt;}
.lsb{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.166400pt;}
.ls17{letter-spacing:0.233067pt;}
.ls15{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.512000pt;}
.ls13{letter-spacing:6.031360pt;}
.lsc{letter-spacing:35.471360pt;}
.ls5{letter-spacing:52.751360pt;}
.ls10{letter-spacing:56.891307pt;}
.lse{letter-spacing:56.912640pt;}
.ws8{word-spacing:-58.880000pt;}
.wsb{word-spacing:-53.120000pt;}
.wsa{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.wsf{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.855467pt;}
.wse{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.wsc{word-spacing:-13.712000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws9{word-spacing:0.000000pt;}
._e{margin-left:-1.880320pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._c{width:2.472960pt;}
._a{width:3.532800pt;}
._27{width:4.592640pt;}
._7{width:5.593600pt;}
._6{width:6.567040pt;}
._5{width:7.980160pt;}
._4{width:9.008640pt;}
._9{width:9.950720pt;}
._b{width:10.959787pt;}
._33{width:12.119893pt;}
._3{width:13.071360pt;}
._8{width:15.898240pt;}
._14{width:17.133440pt;}
._2a{width:18.311680pt;}
._41{width:19.285973pt;}
._23{width:20.191147pt;}
._22{width:21.217280pt;}
._2f{width:22.315520pt;}
._2e{width:24.140800pt;}
._1e{width:25.034240pt;}
._13{width:25.966080pt;}
._12{width:27.375360pt;}
._25{width:28.380160pt;}
._4d{width:29.289387pt;}
._d{width:30.205440pt;}
._2d{width:31.944320pt;}
._1c{width:33.149440pt;}
._45{width:34.219520pt;}
._11{width:35.712640pt;}
._10{width:37.326080pt;}
._34{width:38.507520pt;}
._35{width:39.691520pt;}
._38{width:40.744960pt;}
._1a{width:42.071040pt;}
._50{width:43.050027pt;}
._f{width:44.316160pt;}
._26{width:45.232640pt;}
._43{width:46.172160pt;}
._44{width:47.125120pt;}
._51{width:48.929280pt;}
._1d{width:49.902720pt;}
._49{width:52.392960pt;}
._19{width:53.296640pt;}
._3f{width:54.362880pt;}
._36{width:55.680000pt;}
._37{width:56.760320pt;}
._1b{width:57.771520pt;}
._15{width:58.842027pt;}
._16{width:60.015787pt;}
._24{width:60.989013pt;}
._46{width:62.827520pt;}
._42{width:64.650240pt;}
._30{width:66.330240pt;}
._4a{width:67.947520pt;}
._52{width:69.772800pt;}
._54{width:71.009280pt;}
._39{width:73.080320pt;}
._47{width:74.905600pt;}
._48{width:76.304640pt;}
._3e{width:77.606400pt;}
._40{width:79.248640pt;}
._29{width:84.032000pt;}
._28{width:85.254400pt;}
._4b{width:86.630827pt;}
._31{width:87.680000pt;}
._32{width:89.026560pt;}
._2b{width:90.792960pt;}
._2c{width:91.970560pt;}
._3c{width:106.042880pt;}
._3a{width:111.459840pt;}
._3b{width:112.609920pt;}
._18{width:120.488960pt;}
._17{width:121.735680pt;}
._3d{width:123.238400pt;}
._53{width:130.120320pt;}
._4e{width:132.067840pt;}
._21{width:135.905280pt;}
._4f{width:137.675947pt;}
._1f{width:168.548907pt;}
._20{width:175.686400pt;}
._2{width:177.258667pt;}
._4c{width:635.030827pt;}
.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;}
.y18{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;}
.y15{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y14{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y13{bottom:62.560000pt;}
.y49{bottom:66.880000pt;}
.y9f{bottom:107.360000pt;}
.y46{bottom:111.680000pt;}
.y74{bottom:119.200000pt;}
.y9e{bottom:126.720000pt;}
.y45{bottom:133.600000pt;}
.y73{bottom:141.120000pt;}
.y9d{bottom:146.240000pt;}
.ycb{bottom:147.840000pt;}
.y44{bottom:155.520000pt;}
.y39{bottom:158.720000pt;}
.y72{bottom:163.040000pt;}
.y9c{bottom:165.600000pt;}
.yca{bottom:167.200000pt;}
.y43{bottom:177.440000pt;}
.y38{bottom:180.640000pt;}
.y71{bottom:184.986667pt;}
.yc9{bottom:186.746667pt;}
.y42{bottom:199.546667pt;}
.y37{bottom:202.586667pt;}
.y9b{bottom:204.346667pt;}
.yc8{bottom:206.106667pt;}
.y70{bottom:206.906667pt;}
.y41{bottom:221.466667pt;}
.y9a{bottom:223.866667pt;}
.y36{bottom:224.506667pt;}
.yc7{bottom:225.466667pt;}
.y6f{bottom:228.826667pt;}
.y99{bottom:243.226667pt;}
.y40{bottom:243.386667pt;}
.yc6{bottom:244.826667pt;}
.y35{bottom:246.426667pt;}
.y6e{bottom:250.746667pt;}
.y98{bottom:262.586667pt;}
.yc5{bottom:264.346667pt;}
.y3f{bottom:266.266667pt;}
.y34{bottom:268.346667pt;}
.y6d{bottom:272.666667pt;}
.y97{bottom:281.946667pt;}
.yc4{bottom:283.706667pt;}
.y3e{bottom:288.186667pt;}
.y33{bottom:290.266667pt;}
.y6c{bottom:294.266667pt;}
.y79{bottom:294.586667pt;}
.y96{bottom:301.306667pt;}
.yc3{bottom:303.066667pt;}
.y3d{bottom:310.266667pt;}
.y32{bottom:312.186667pt;}
.y6b{bottom:316.506667pt;}
.y95{bottom:320.826667pt;}
.yc2{bottom:322.426667pt;}
.y3c{bottom:333.146667pt;}
.y31{bottom:334.106667pt;}
.y6a{bottom:338.426667pt;}
.y94{bottom:340.186667pt;}
.yc1{bottom:341.786667pt;}
.y3b{bottom:355.066667pt;}
.y30{bottom:356.026667pt;}
.y93{bottom:359.546667pt;}
.y69{bottom:360.346667pt;}
.yc0{bottom:361.306667pt;}
.y2f{bottom:377.946667pt;}
.y92{bottom:378.906667pt;}
.ybf{bottom:380.666667pt;}
.y68{bottom:382.266667pt;}
.y91{bottom:398.466667pt;}
.y2e{bottom:400.066667pt;}
.y67{bottom:404.226667pt;}
.y90{bottom:417.826667pt;}
.ybe{bottom:419.426667pt;}
.y2d{bottom:421.666667pt;}
.y3a{bottom:421.986667pt;}
.y66{bottom:426.306667pt;}
.y8f{bottom:437.186667pt;}
.ybd{bottom:438.946667pt;}
.y2c{bottom:443.586667pt;}
.y78{bottom:447.906667pt;}
.y65{bottom:448.226667pt;}
.y8e{bottom:456.546667pt;}
.ybc{bottom:458.306667pt;}
.y2b{bottom:464.866667pt;}
.y77{bottom:469.826667pt;}
.y64{bottom:470.146667pt;}
.y8d{bottom:475.906667pt;}
.ybb{bottom:477.666667pt;}
.y2a{bottom:484.386667pt;}
.y7c{bottom:491.746667pt;}
.y63{bottom:492.066667pt;}
.y8c{bottom:495.426667pt;}
.yba{bottom:497.026667pt;}
.y29{bottom:505.986667pt;}
.y62{bottom:513.986667pt;}
.y8b{bottom:514.786667pt;}
.yb9{bottom:516.386667pt;}
.y28{bottom:525.346667pt;}
.y8a{bottom:534.146667pt;}
.y61{bottom:535.906667pt;}
.y27{bottom:544.866667pt;}
.y89{bottom:553.506667pt;}
.yb8{bottom:555.266667pt;}
.y7f{bottom:557.506667pt;}
.y60{bottom:557.826667pt;}
.y26{bottom:564.226667pt;}
.y88{bottom:573.026667pt;}
.yb7{bottom:574.626667pt;}
.y5f{bottom:579.746667pt;}
.y25{bottom:583.586667pt;}
.y87{bottom:592.386667pt;}
.yb6{bottom:593.986667pt;}
.y7b{bottom:601.373333pt;}
.y5e{bottom:601.693333pt;}
.y24{bottom:602.973333pt;}
.y86{bottom:611.773333pt;}
.yb5{bottom:613.533333pt;}
.y23{bottom:622.493333pt;}
.y7a{bottom:623.293333pt;}
.y5d{bottom:623.613333pt;}
.y85{bottom:631.133333pt;}
.yb4{bottom:632.893333pt;}
.y22{bottom:641.853333pt;}
.y82{bottom:645.213333pt;}
.y5c{bottom:645.533333pt;}
.y84{bottom:650.493333pt;}
.yb3{bottom:652.253333pt;}
.y21{bottom:661.213333pt;}
.y81{bottom:667.133333pt;}
.y5b{bottom:667.453333pt;}
.y83{bottom:670.013333pt;}
.yb2{bottom:671.613333pt;}
.y20{bottom:680.573333pt;}
.y76{bottom:689.053333pt;}
.y5a{bottom:689.373333pt;}
.yb1{bottom:690.973333pt;}
.y1f{bottom:699.933333pt;}
.yb0{bottom:710.493333pt;}
.y75{bottom:710.973333pt;}
.y59{bottom:711.293333pt;}
.y1e{bottom:719.453333pt;}
.yaf{bottom:729.853333pt;}
.y58{bottom:733.213333pt;}
.y1d{bottom:738.813333pt;}
.yae{bottom:749.213333pt;}
.y80{bottom:754.813333pt;}
.y57{bottom:755.133333pt;}
.y1c{bottom:758.173333pt;}
.yad{bottom:768.573333pt;}
.y7e{bottom:776.733333pt;}
.y56{bottom:777.053333pt;}
.y1b{bottom:777.533333pt;}
.yac{bottom:787.933333pt;}
.y1a{bottom:796.733333pt;}
.y7d{bottom:798.653333pt;}
.y55{bottom:798.973333pt;}
.yab{bottom:807.453333pt;}
.y19{bottom:813.893333pt;}
.y54{bottom:820.933333pt;}
.y17{bottom:821.573333pt;}
.yaa{bottom:826.853333pt;}
.y12{bottom:827.973333pt;}
.y16{bottom:831.464559pt;}
.y53{bottom:842.853333pt;}
.ya9{bottom:846.213333pt;}
.y52{bottom:864.773333pt;}
.ya8{bottom:865.573333pt;}
.ya7{bottom:885.093333pt;}
.y51{bottom:886.693333pt;}
.ya6{bottom:904.453333pt;}
.y10{bottom:905.413333pt;}
.y50{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.ya5{bottom:923.813333pt;}
.y4f{bottom:930.533333pt;}
.ya4{bottom:943.173333pt;}
.y4e{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.ya3{bottom:962.533333pt;}
.y4d{bottom:974.373333pt;}
.ya2{bottom:982.053333pt;}
.y2{bottom:983.333333pt;}
.y4c{bottom:996.293333pt;}
.ya1{bottom:1001.413333pt;}
.y7{bottom:1003.173333pt;}
.y4b{bottom:1018.240000pt;}
.ya0{bottom:1020.800000pt;}
.y4{bottom:1028.320000pt;}
.y4a{bottom:1040.160000pt;}
.y48{bottom:1055.360000pt;}
.y47{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1d{height:27.093750pt;}
.h18{height:32.765625pt;}
.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;}
.h1b{height:57.787500pt;}
.h1e{height:58.563750pt;}
.h1a{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1c{height:60.519362pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h12{height:77.426667pt;}
.h3{height:92.026667pt;}
.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;}
.x19{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.x13{left:41.105333pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x20{left:120.032000pt;}
.x1a{left:144.026667pt;}
.x4{left:150.120000pt;}
.x17{left:160.825333pt;}
.x6{left:185.786667pt;}
.x15{left:212.185333pt;}
.x14{left:224.825333pt;}
.x16{left:244.825333pt;}
.x18{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1c{left:420.893333pt;}
.x1e{left:425.373333pt;}
.x1d{left:444.893333pt;}
.x1f{left:449.373333pt;}
.x1b{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; }
  