
    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_c6416353f85d971bbba8fd9e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_f7dc4f9bda6650bf00522981.woff')format("woff");}.ff2{font-family:ff2;line-height:0.431000;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_652033a638c5a98bd0d480e1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_37b808c52e1453ef69032b15.woff')format("woff");}.ff4{font-family:ff4;line-height:0.431000;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_4fe49c6b20a66474966c1a2a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910000;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_399f6936d7b36a30b40f216b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.897000;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_3fae92a64e627d6be6dac5aa.woff')format("woff");}.ff7{font-family:ff7;line-height:0.779000;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_be9c3c3714e15c03922f514c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.897450;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_8910937ac5811a171b33dba1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.665000;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_8ec8bd3a6ce4062cff497ae2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.452000;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);}
.v2{vertical-align:-16.878000px;}
.v4{vertical-align:-8.436000px;}
.v3{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls7{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.002245px;}
.ls1{letter-spacing:2.964877px;}
.ls6{letter-spacing:2.987468px;}
.ls5{letter-spacing:2.987675px;}
.ls3{letter-spacing:2.988017px;}
.ls9{letter-spacing:2.988780px;}
.ls4{letter-spacing:2.993108px;}
.ls2{letter-spacing:2.993675px;}
.ls8{letter-spacing:8.469056px;}
.lsb{letter-spacing:21.836800px;}
.ls0{letter-spacing:26.000915px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws55{word-spacing:-38.937826px;}
.ws5c{word-spacing:-33.211407px;}
.ws84{word-spacing:-29.015076px;}
.ws3{word-spacing:-14.920027px;}
.ws27{word-spacing:-11.955150px;}
.ws4a{word-spacing:-1.075961px;}
.ws15{word-spacing:-0.777083px;}
.ws56{word-spacing:-0.512662px;}
.ws54{word-spacing:-0.478205px;}
.ws10{word-spacing:-0.298878px;}
.ws1a{word-spacing:-0.059776px;}
.ws5e{word-spacing:-0.047821px;}
.ws5d{word-spacing:-0.035866px;}
.ws23{word-spacing:0.000000px;}
.ws7c{word-spacing:0.013904px;}
.ws26{word-spacing:0.018647px;}
.ws8b{word-spacing:0.059776px;}
.ws19{word-spacing:0.239102px;}
.ws6f{word-spacing:0.358654px;}
.ws6a{word-spacing:0.478205px;}
.ws83{word-spacing:0.537980px;}
.ws8a{word-spacing:0.597756px;}
.ws5f{word-spacing:0.621668px;}
.ws9a{word-spacing:0.765130px;}
.ws20{word-spacing:0.777083px;}
.ws7d{word-spacing:1.016185px;}
.ws24{word-spacing:1.494390px;}
.ws67{word-spacing:1.613941px;}
.ws91{word-spacing:1.769362px;}
.ws4{word-spacing:1.793268px;}
.ws97{word-spacing:1.865003px;}
.ws39{word-spacing:1.912819px;}
.ws49{word-spacing:1.972595px;}
.ws90{word-spacing:2.056286px;}
.ws89{word-spacing:2.092146px;}
.ws17{word-spacing:2.271473px;}
.ws2b{word-spacing:2.331248px;}
.ws1e{word-spacing:2.450800px;}
.ws4b{word-spacing:2.510575px;}
.ws79{word-spacing:2.570351px;}
.wsa0{word-spacing:2.582312px;}
.ws47{word-spacing:2.630126px;}
.ws73{word-spacing:2.689902px;}
.ws31{word-spacing:2.749678px;}
.wsb{word-spacing:2.929004px;}
.ws65{word-spacing:3.108331px;}
.ws1d{word-spacing:3.347434px;}
.ws76{word-spacing:3.586536px;}
.ws77{word-spacing:3.646312px;}
.ws85{word-spacing:3.706087px;}
.ws21{word-spacing:3.945190px;}
.ws8e{word-spacing:4.016930px;}
.ws9f{word-spacing:4.064751px;}
.ws7{word-spacing:4.363619px;}
.ws7b{word-spacing:4.423394px;}
.ws29{word-spacing:4.602721px;}
.ws63{word-spacing:4.662497px;}
.ws9d{word-spacing:4.778620px;}
.ws33{word-spacing:4.782060px;}
.ws61{word-spacing:5.080926px;}
.ws6b{word-spacing:5.140702px;}
.ws57{word-spacing:5.200477px;}
.ws9{word-spacing:5.320028px;}
.ws60{word-spacing:5.342717px;}
.ws3f{word-spacing:5.379804px;}
.ws2d{word-spacing:5.499355px;}
.ws8{word-spacing:5.618906px;}
.ws4e{word-spacing:5.678682px;}
.ws9b{word-spacing:5.881934px;}
.ws25{word-spacing:5.936378px;}
.ws3d{word-spacing:5.977560px;}
.ws5a{word-spacing:5.979025px;}
.ws7a{word-spacing:6.037336px;}
.ws53{word-spacing:6.097111px;}
.ws98{word-spacing:6.264499px;}
.ws52{word-spacing:6.276438px;}
.ws11{word-spacing:6.386461px;}
.ws13{word-spacing:6.395989px;}
.ws37{word-spacing:6.455765px;}
.ws3a{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws2a{word-spacing:6.814418px;}
.ws34{word-spacing:6.874194px;}
.ws8c{word-spacing:6.933987px;}
.ws18{word-spacing:7.412174px;}
.ws72{word-spacing:7.531726px;}
.ws50{word-spacing:7.591501px;}
.wsa2{word-spacing:7.794758px;}
.ws6e{word-spacing:8.009930px;}
.ws59{word-spacing:8.189257px;}
.ws6c{word-spacing:8.249033px;}
.ws69{word-spacing:8.547911px;}
.ws5{word-spacing:8.727238px;}
.ws35{word-spacing:8.787013px;}
.ws8d{word-spacing:8.942452px;}
.wsa{word-spacing:8.966340px;}
.ws64{word-spacing:9.026116px;}
.ws62{word-spacing:9.145667px;}
.ws48{word-spacing:9.265218px;}
.ws4c{word-spacing:9.743423px;}
.ws88{word-spacing:9.803198px;}
.ws40{word-spacing:9.862974px;}
.ws66{word-spacing:10.102076px;}
.ws3b{word-spacing:10.341179px;}
.ws51{word-spacing:10.520506px;}
.ws94{word-spacing:10.607790px;}
.ws96{word-spacing:10.616173px;}
.ws82{word-spacing:10.759608px;}
.ws7f{word-spacing:11.237813px;}
.ws1f{word-spacing:11.417140px;}
.ws2c{word-spacing:11.536691px;}
.ws28{word-spacing:11.656242px;}
.ws46{word-spacing:11.716018px;}
.ws4d{word-spacing:11.955120px;}
.ws74{word-spacing:12.134447px;}
.ws71{word-spacing:12.253998px;}
.wsa5{word-spacing:12.289894px;}
.ws22{word-spacing:12.313774px;}
.wsa3{word-spacing:12.337715px;}
.ws38{word-spacing:12.433325px;}
.wsf{word-spacing:12.672427px;}
.ws78{word-spacing:12.791978px;}
.ws3e{word-spacing:12.851754px;}
.ws36{word-spacing:12.971305px;}
.ws16{word-spacing:13.031081px;}
.ws75{word-spacing:13.090856px;}
.ws1c{word-spacing:13.329959px;}
.ws9e{word-spacing:13.437589px;}
.ws92{word-spacing:13.676692px;}
.ws42{word-spacing:13.808164px;}
.ws80{word-spacing:14.047266px;}
.ws6d{word-spacing:14.166817px;}
.ws86{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws87{word-spacing:14.405920px;}
.ws2e{word-spacing:14.465695px;}
.ws14{word-spacing:14.884124px;}
.ws32{word-spacing:15.206951px;}
.ws70{word-spacing:15.481880px;}
.ws3c{word-spacing:15.780758px;}
.ws8f{word-spacing:15.924260px;}
.ws41{word-spacing:16.438290px;}
.ws58{word-spacing:16.498066px;}
.ws45{word-spacing:16.617617px;}
.ws93{word-spacing:16.689389px;}
.ws44{word-spacing:16.976270px;}
.wsc{word-spacing:17.095822px;}
.ws7e{word-spacing:17.275148px;}
.ws6{word-spacing:17.454475px;}
.ws2f{word-spacing:17.514251px;}
.ws4f{word-spacing:17.574026px;}
.ws30{word-spacing:17.633802px;}
.ws9c{word-spacing:17.837084px;}
.ws2{word-spacing:17.932680px;}
.ws99{word-spacing:18.171828px;}
.wsa6{word-spacing:18.506572px;}
.ws43{word-spacing:19.845499px;}
.wsa1{word-spacing:20.849782px;}
.ws68{word-spacing:21.022536px;}
.ws12{word-spacing:21.269645px;}
.ws81{word-spacing:22.116972px;}
.ws95{word-spacing:22.523503px;}
.wsa4{word-spacing:24.197224px;}
.wse{word-spacing:27.528740px;}
.ws1b{word-spacing:28.220815px;}
.wsd{word-spacing:31.979946px;}
.ws5b{word-spacing:495.064472px;}
._1{margin-left:-8.607708px;}
._9{margin-left:-5.917771px;}
._5{margin-left:-4.782048px;}
._7{margin-left:-3.347442px;}
._0{margin-left:-2.151927px;}
._3{margin-left:-1.075950px;}
._13{width:1.538858px;}
._2{width:2.988780px;}
._b{width:5.239919px;}
._8{width:16.378514px;}
._14{width:17.574032px;}
._6{width:18.709768px;}
._a{width:21.519216px;}
._18{width:23.960383px;}
._4{width:27.377230px;}
._16{width:29.887875px;}
._15{width:31.441971px;}
._17{width:48.201814px;}
._e{width:74.117138px;}
._11{width:77.670220px;}
._d{width:85.799726px;}
._f{width:143.455847px;}
._10{width:148.864354px;}
._12{width:153.241135px;}
._c{width:161.644345px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs1{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.ya1{bottom:30.609000px;}
.y31{bottom:69.175500px;}
.ya0{bottom:70.806000px;}
.y9f{bottom:84.255000px;}
.y30{bottom:86.844000px;}
.y53{bottom:87.108000px;}
.y9e{bottom:97.704000px;}
.y52{bottom:105.040500px;}
.y9d{bottom:111.154500px;}
.y2f{bottom:113.485500px;}
.y51{bottom:122.973000px;}
.y9c{bottom:127.593000px;}
.y2e{bottom:131.418000px;}
.y50{bottom:140.907000px;}
.y9b{bottom:141.042000px;}
.y2d{bottom:149.352000px;}
.y9a{bottom:154.491000px;}
.y4f{bottom:158.839500px;}
.y69{bottom:161.827500px;}
.y2c{bottom:167.284500px;}
.y99{bottom:170.929500px;}
.y4e{bottom:179.760000px;}
.y98{bottom:184.380000px;}
.y2b{bottom:185.217000px;}
.y4d{bottom:197.694000px;}
.y97{bottom:200.818500px;}
.y2a{bottom:203.149500px;}
.y96{bottom:214.267500px;}
.y4c{bottom:215.626500px;}
.y29{bottom:221.082000px;}
.y95{bottom:230.706000px;}
.y4b{bottom:233.559000px;}
.y28{bottom:239.014500px;}
.y94{bottom:244.155000px;}
.y4a{bottom:251.491500px;}
.y27{bottom:256.948500px;}
.y93{bottom:257.605500px;}
.y49{bottom:269.424000px;}
.y92{bottom:274.042500px;}
.y26{bottom:274.881000px;}
.y48{bottom:287.358000px;}
.y91{bottom:287.493000px;}
.y25{bottom:292.813500px;}
.y90{bottom:300.942000px;}
.y47{bottom:305.290500px;}
.y8f{bottom:317.380500px;}
.y24{bottom:320.385000px;}
.y46{bottom:323.223000px;}
.y8e{bottom:330.829500px;}
.y23{bottom:338.317500px;}
.y45{bottom:341.155500px;}
.y8d{bottom:347.268000px;}
.y44{bottom:359.088000px;}
.y8c{bottom:360.718500px;}
.y8b{bottom:374.167500px;}
.y43{bottom:377.020500px;}
.y22{bottom:382.326000px;}
.y8a{bottom:390.606000px;}
.y42{bottom:394.954500px;}
.y21{bottom:400.260000px;}
.y89{bottom:404.055000px;}
.y41{bottom:412.887000px;}
.y88{bottom:417.505500px;}
.y20{bottom:418.192500px;}
.y40{bottom:430.819500px;}
.y87{bottom:433.944000px;}
.y1f{bottom:436.125000px;}
.y86{bottom:447.393000px;}
.y3f{bottom:448.752000px;}
.y1e{bottom:454.057500px;}
.y3e{bottom:466.684500px;}
.y85{bottom:471.351000px;}
.y1d{bottom:471.990000px;}
.y3d{bottom:484.617000px;}
.y1c{bottom:489.922500px;}
.y84{bottom:495.804000px;}
.y3c{bottom:502.551000px;}
.y1b{bottom:507.856500px;}
.y83{bottom:513.738000px;}
.y68{bottom:520.483500px;}
.y1a{bottom:525.789000px;}
.y82{bottom:531.670500px;}
.y3b{bottom:535.219500px;}
.y67{bottom:538.416000px;}
.y19{bottom:543.721500px;}
.y81{bottom:549.603000px;}
.y66{bottom:556.348500px;}
.y18{bottom:561.654000px;}
.y80{bottom:567.535500px;}
.y17{bottom:579.586500px;}
.y7f{bottom:585.468000px;}
.y65{bottom:593.689500px;}
.y16{bottom:597.519000px;}
.y7e{bottom:603.402000px;}
.y15{bottom:615.453000px;}
.y7d{bottom:621.334500px;}
.y14{bottom:633.385500px;}
.y7c{bottom:639.267000px;}
.y13{bottom:651.318000px;}
.y7b{bottom:657.199500px;}
.y12{bottom:669.250500px;}
.y7a{bottom:675.132000px;}
.y11{bottom:687.183000px;}
.y79{bottom:693.064500px;}
.y10{bottom:705.115500px;}
.y78{bottom:710.998500px;}
.yf{bottom:723.049500px;}
.y77{bottom:728.931000px;}
.ye{bottom:740.982000px;}
.y76{bottom:746.863500px;}
.y3a{bottom:750.619500px;}
.yd{bottom:758.914500px;}
.y75{bottom:764.796000px;}
.y39{bottom:768.552000px;}
.yc{bottom:776.847000px;}
.y74{bottom:782.728500px;}
.y38{bottom:786.486000px;}
.yb{bottom:794.779500px;}
.y73{bottom:800.661000px;}
.y37{bottom:804.418500px;}
.ya{bottom:812.713500px;}
.y64{bottom:813.271500px;}
.y72{bottom:818.595000px;}
.y36{bottom:822.351000px;}
.y9{bottom:830.646000px;}
.y63{bottom:836.284500px;}
.y71{bottom:836.527500px;}
.y35{bottom:840.283500px;}
.y8{bottom:848.578500px;}
.y62{bottom:850.332000px;}
.y70{bottom:854.460000px;}
.y34{bottom:858.216000px;}
.y61{bottom:864.379500px;}
.y7{bottom:866.511000px;}
.y6f{bottom:872.392500px;}
.y33{bottom:876.148500px;}
.y60{bottom:878.427000px;}
.y6{bottom:884.443500px;}
.y6e{bottom:890.325000px;}
.y5f{bottom:892.474500px;}
.y32{bottom:894.082500px;}
.y5e{bottom:906.520500px;}
.y6d{bottom:908.257500px;}
.y5{bottom:912.015000px;}
.y5d{bottom:920.568000px;}
.y6c{bottom:933.886500px;}
.y5c{bottom:934.615500px;}
.y5b{bottom:965.812500px;}
.y6b{bottom:983.745000px;}
.y5a{bottom:983.746500px;}
.y4{bottom:996.048000px;}
.y59{bottom:1001.679000px;}
.y58{bottom:1019.611500px;}
.y3{bottom:1031.017500px;}
.y57{bottom:1037.544000px;}
.y56{bottom:1055.476500px;}
.y2{bottom:1072.860000px;}
.y55{bottom:1073.409000px;}
.y6a{bottom:1091.341500px;}
.y54{bottom:1091.343000px;}
.y1{bottom:1141.168500px;}
.h5{height:16.677504px;}
.h1{height:28.787846px;}
.h6{height:32.900573px;}
.h8{height:33.044035px;}
.h4{height:41.125613px;}
.h7{height:41.484266px;}
.h3{height:45.990579px;}
.h2{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:73.446000px;}
.xa{left:85.401000px;}
.xf{left:86.716500px;}
.x6{left:88.389000px;}
.xe{left:95.746500px;}
.x8{left:103.410000px;}
.x10{left:131.842500px;}
.x3{left:141.090000px;}
.x2{left:159.937500px;}
.x5{left:203.428500px;}
.x9{left:223.260000px;}
.x4{left:308.355000px;}
.x15{left:455.263500px;}
.xb{left:467.967000px;}
.x13{left:473.944500px;}
.xd{left:482.910000px;}
.x14{left:495.355500px;}
.xc{left:516.702000px;}
.x11{left:585.636000px;}
.x12{left:614.418000px;}
.x1{left:839.323500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v4{vertical-align:-7.498667pt;}
.v3{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls7{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.001995pt;}
.ls1{letter-spacing:2.635446pt;}
.ls6{letter-spacing:2.655527pt;}
.ls5{letter-spacing:2.655711pt;}
.ls3{letter-spacing:2.656015pt;}
.ls9{letter-spacing:2.656693pt;}
.ls4{letter-spacing:2.660541pt;}
.ls2{letter-spacing:2.661044pt;}
.ls8{letter-spacing:7.528050pt;}
.lsb{letter-spacing:19.410489pt;}
.ls0{letter-spacing:23.111925pt;}
.ws55{word-spacing:-34.611401pt;}
.ws5c{word-spacing:-29.521250pt;}
.ws84{word-spacing:-25.791179pt;}
.ws3{word-spacing:-13.262246pt;}
.ws27{word-spacing:-10.626800pt;}
.ws4a{word-spacing:-0.956410pt;}
.ws15{word-spacing:-0.690740pt;}
.ws56{word-spacing:-0.455699pt;}
.ws54{word-spacing:-0.425071pt;}
.ws10{word-spacing:-0.265669pt;}
.ws1a{word-spacing:-0.053134pt;}
.ws5e{word-spacing:-0.042507pt;}
.ws5d{word-spacing:-0.031881pt;}
.ws23{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.012359pt;}
.ws26{word-spacing:0.016575pt;}
.ws8b{word-spacing:0.053134pt;}
.ws19{word-spacing:0.212535pt;}
.ws6f{word-spacing:0.318803pt;}
.ws6a{word-spacing:0.425071pt;}
.ws83{word-spacing:0.478205pt;}
.ws8a{word-spacing:0.531339pt;}
.ws5f{word-spacing:0.552594pt;}
.ws9a{word-spacing:0.680115pt;}
.ws20{word-spacing:0.690740pt;}
.ws7d{word-spacing:0.903276pt;}
.ws24{word-spacing:1.328347pt;}
.ws67{word-spacing:1.434614pt;}
.ws91{word-spacing:1.572766pt;}
.ws4{word-spacing:1.594016pt;}
.ws97{word-spacing:1.657781pt;}
.ws39{word-spacing:1.700284pt;}
.ws49{word-spacing:1.753418pt;}
.ws90{word-spacing:1.827810pt;}
.ws89{word-spacing:1.859685pt;}
.ws17{word-spacing:2.019087pt;}
.ws2b{word-spacing:2.072221pt;}
.ws1e{word-spacing:2.178489pt;}
.ws4b{word-spacing:2.231622pt;}
.ws79{word-spacing:2.284756pt;}
.wsa0{word-spacing:2.295389pt;}
.ws47{word-spacing:2.337890pt;}
.ws73{word-spacing:2.391024pt;}
.ws31{word-spacing:2.444158pt;}
.wsb{word-spacing:2.603559pt;}
.ws65{word-spacing:2.762961pt;}
.ws1d{word-spacing:2.975497pt;}
.ws76{word-spacing:3.188032pt;}
.ws77{word-spacing:3.241166pt;}
.ws85{word-spacing:3.294300pt;}
.ws21{word-spacing:3.506835pt;}
.ws8e{word-spacing:3.570605pt;}
.ws9f{word-spacing:3.613112pt;}
.ws7{word-spacing:3.878772pt;}
.ws7b{word-spacing:3.931906pt;}
.ws29{word-spacing:4.091308pt;}
.ws63{word-spacing:4.144442pt;}
.ws9d{word-spacing:4.247662pt;}
.ws33{word-spacing:4.250720pt;}
.ws61{word-spacing:4.516379pt;}
.ws6b{word-spacing:4.569513pt;}
.ws57{word-spacing:4.622646pt;}
.ws9{word-spacing:4.728914pt;}
.ws60{word-spacing:4.749082pt;}
.ws3f{word-spacing:4.782048pt;}
.ws2d{word-spacing:4.888316pt;}
.ws8{word-spacing:4.994583pt;}
.ws4e{word-spacing:5.047717pt;}
.ws9b{word-spacing:5.228386pt;}
.ws25{word-spacing:5.276780pt;}
.ws3d{word-spacing:5.313387pt;}
.ws5a{word-spacing:5.314689pt;}
.ws7a{word-spacing:5.366521pt;}
.ws53{word-spacing:5.419654pt;}
.ws98{word-spacing:5.568443pt;}
.ws52{word-spacing:5.579056pt;}
.ws11{word-spacing:5.676854pt;}
.ws13{word-spacing:5.685324pt;}
.ws37{word-spacing:5.738458pt;}
.ws3a{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws2a{word-spacing:6.057261pt;}
.ws34{word-spacing:6.110395pt;}
.ws8c{word-spacing:6.163544pt;}
.ws18{word-spacing:6.588599pt;}
.ws72{word-spacing:6.694867pt;}
.ws50{word-spacing:6.748001pt;}
.wsa2{word-spacing:6.928674pt;}
.ws6e{word-spacing:7.119938pt;}
.ws59{word-spacing:7.279340pt;}
.ws6c{word-spacing:7.332474pt;}
.ws69{word-spacing:7.598143pt;}
.ws5{word-spacing:7.757545pt;}
.ws35{word-spacing:7.810678pt;}
.ws8d{word-spacing:7.948846pt;}
.wsa{word-spacing:7.970080pt;}
.ws64{word-spacing:8.023214pt;}
.ws62{word-spacing:8.129482pt;}
.ws48{word-spacing:8.235749pt;}
.ws4c{word-spacing:8.660820pt;}
.ws88{word-spacing:8.713954pt;}
.ws40{word-spacing:8.767088pt;}
.ws66{word-spacing:8.979623pt;}
.ws3b{word-spacing:9.192159pt;}
.ws51{word-spacing:9.351561pt;}
.ws94{word-spacing:9.429147pt;}
.ws96{word-spacing:9.436598pt;}
.ws82{word-spacing:9.564096pt;}
.ws7f{word-spacing:9.989167pt;}
.ws1f{word-spacing:10.148569pt;}
.ws2c{word-spacing:10.254836pt;}
.ws28{word-spacing:10.361104pt;}
.ws46{word-spacing:10.414238pt;}
.ws4d{word-spacing:10.626773pt;}
.ws74{word-spacing:10.786175pt;}
.ws71{word-spacing:10.892443pt;}
.wsa5{word-spacing:10.924350pt;}
.ws22{word-spacing:10.945577pt;}
.wsa3{word-spacing:10.966858pt;}
.ws38{word-spacing:11.051844pt;}
.wsf{word-spacing:11.264380pt;}
.ws78{word-spacing:11.370647pt;}
.ws3e{word-spacing:11.423781pt;}
.ws36{word-spacing:11.530049pt;}
.ws16{word-spacing:11.583183pt;}
.ws75{word-spacing:11.636317pt;}
.ws1c{word-spacing:11.848852pt;}
.ws9e{word-spacing:11.944523pt;}
.ws92{word-spacing:12.157059pt;}
.ws42{word-spacing:12.273923pt;}
.ws80{word-spacing:12.486459pt;}
.ws6d{word-spacing:12.592726pt;}
.ws86{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws87{word-spacing:12.805262pt;}
.ws2e{word-spacing:12.858396pt;}
.ws14{word-spacing:13.230333pt;}
.ws32{word-spacing:13.517290pt;}
.ws70{word-spacing:13.761671pt;}
.ws3c{word-spacing:14.027341pt;}
.ws8f{word-spacing:14.154898pt;}
.ws41{word-spacing:14.611813pt;}
.ws58{word-spacing:14.664947pt;}
.ws45{word-spacing:14.771215pt;}
.ws93{word-spacing:14.835013pt;}
.ws44{word-spacing:15.090018pt;}
.wsc{word-spacing:15.196286pt;}
.ws7e{word-spacing:15.355687pt;}
.ws6{word-spacing:15.515089pt;}
.ws2f{word-spacing:15.568223pt;}
.ws4f{word-spacing:15.621357pt;}
.ws30{word-spacing:15.674491pt;}
.ws9c{word-spacing:15.855186pt;}
.ws2{word-spacing:15.940160pt;}
.ws99{word-spacing:16.152736pt;}
.wsa6{word-spacing:16.450286pt;}
.ws43{word-spacing:17.640444pt;}
.wsa1{word-spacing:18.533139pt;}
.ws68{word-spacing:18.686698pt;}
.ws12{word-spacing:18.906351pt;}
.ws81{word-spacing:19.659531pt;}
.ws95{word-spacing:20.020891pt;}
.wsa4{word-spacing:21.508643pt;}
.wse{word-spacing:24.469991pt;}
.ws1b{word-spacing:25.085169pt;}
.wsd{word-spacing:28.426619pt;}
.ws5b{word-spacing:440.057309pt;}
._1{margin-left:-7.651296pt;}
._9{margin-left:-5.260241pt;}
._5{margin-left:-4.250709pt;}
._7{margin-left:-2.975504pt;}
._0{margin-left:-1.912824pt;}
._3{margin-left:-0.956400pt;}
._13{width:1.367874pt;}
._2{width:2.656693pt;}
._b{width:4.657705pt;}
._8{width:14.558679pt;}
._14{width:15.621362pt;}
._6{width:16.630905pt;}
._a{width:19.128192pt;}
._18{width:21.298118pt;}
._4{width:24.335316pt;}
._16{width:26.567000pt;}
._15{width:27.948419pt;}
._17{width:42.846057pt;}
._e{width:65.881900pt;}
._11{width:69.040196pt;}
._d{width:76.266423pt;}
._f{width:127.516308pt;}
._10{width:132.323870pt;}
._12{width:136.214343pt;}
._c{width:143.683862pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs1{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:27.208000pt;}
.y31{bottom:61.489333pt;}
.ya0{bottom:62.938667pt;}
.y9f{bottom:74.893333pt;}
.y30{bottom:77.194667pt;}
.y53{bottom:77.429333pt;}
.y9e{bottom:86.848000pt;}
.y52{bottom:93.369333pt;}
.y9d{bottom:98.804000pt;}
.y2f{bottom:100.876000pt;}
.y51{bottom:109.309333pt;}
.y9c{bottom:113.416000pt;}
.y2e{bottom:116.816000pt;}
.y50{bottom:125.250667pt;}
.y9b{bottom:125.370667pt;}
.y2d{bottom:132.757333pt;}
.y9a{bottom:137.325333pt;}
.y4f{bottom:141.190667pt;}
.y69{bottom:143.846667pt;}
.y2c{bottom:148.697333pt;}
.y99{bottom:151.937333pt;}
.y4e{bottom:159.786667pt;}
.y98{bottom:163.893333pt;}
.y2b{bottom:164.637333pt;}
.y4d{bottom:175.728000pt;}
.y97{bottom:178.505333pt;}
.y2a{bottom:180.577333pt;}
.y96{bottom:190.460000pt;}
.y4c{bottom:191.668000pt;}
.y29{bottom:196.517333pt;}
.y95{bottom:205.072000pt;}
.y4b{bottom:207.608000pt;}
.y28{bottom:212.457333pt;}
.y94{bottom:217.026667pt;}
.y4a{bottom:223.548000pt;}
.y27{bottom:228.398667pt;}
.y93{bottom:228.982667pt;}
.y49{bottom:239.488000pt;}
.y92{bottom:243.593333pt;}
.y26{bottom:244.338667pt;}
.y48{bottom:255.429333pt;}
.y91{bottom:255.549333pt;}
.y25{bottom:260.278667pt;}
.y90{bottom:267.504000pt;}
.y47{bottom:271.369333pt;}
.y8f{bottom:282.116000pt;}
.y24{bottom:284.786667pt;}
.y46{bottom:287.309333pt;}
.y8e{bottom:294.070667pt;}
.y23{bottom:300.726667pt;}
.y45{bottom:303.249333pt;}
.y8d{bottom:308.682667pt;}
.y44{bottom:319.189333pt;}
.y8c{bottom:320.638667pt;}
.y8b{bottom:332.593333pt;}
.y43{bottom:335.129333pt;}
.y22{bottom:339.845333pt;}
.y8a{bottom:347.205333pt;}
.y42{bottom:351.070667pt;}
.y21{bottom:355.786667pt;}
.y89{bottom:359.160000pt;}
.y41{bottom:367.010667pt;}
.y88{bottom:371.116000pt;}
.y20{bottom:371.726667pt;}
.y40{bottom:382.950667pt;}
.y87{bottom:385.728000pt;}
.y1f{bottom:387.666667pt;}
.y86{bottom:397.682667pt;}
.y3f{bottom:398.890667pt;}
.y1e{bottom:403.606667pt;}
.y3e{bottom:414.830667pt;}
.y85{bottom:418.978667pt;}
.y1d{bottom:419.546667pt;}
.y3d{bottom:430.770667pt;}
.y1c{bottom:435.486667pt;}
.y84{bottom:440.714667pt;}
.y3c{bottom:446.712000pt;}
.y1b{bottom:451.428000pt;}
.y83{bottom:456.656000pt;}
.y68{bottom:462.652000pt;}
.y1a{bottom:467.368000pt;}
.y82{bottom:472.596000pt;}
.y3b{bottom:475.750667pt;}
.y67{bottom:478.592000pt;}
.y19{bottom:483.308000pt;}
.y81{bottom:488.536000pt;}
.y66{bottom:494.532000pt;}
.y18{bottom:499.248000pt;}
.y80{bottom:504.476000pt;}
.y17{bottom:515.188000pt;}
.y7f{bottom:520.416000pt;}
.y65{bottom:527.724000pt;}
.y16{bottom:531.128000pt;}
.y7e{bottom:536.357333pt;}
.y15{bottom:547.069333pt;}
.y7d{bottom:552.297333pt;}
.y14{bottom:563.009333pt;}
.y7c{bottom:568.237333pt;}
.y13{bottom:578.949333pt;}
.y7b{bottom:584.177333pt;}
.y12{bottom:594.889333pt;}
.y7a{bottom:600.117333pt;}
.y11{bottom:610.829333pt;}
.y79{bottom:616.057333pt;}
.y10{bottom:626.769333pt;}
.y78{bottom:631.998667pt;}
.yf{bottom:642.710667pt;}
.y77{bottom:647.938667pt;}
.ye{bottom:658.650667pt;}
.y76{bottom:663.878667pt;}
.y3a{bottom:667.217333pt;}
.yd{bottom:674.590667pt;}
.y75{bottom:679.818667pt;}
.y39{bottom:683.157333pt;}
.yc{bottom:690.530667pt;}
.y74{bottom:695.758667pt;}
.y38{bottom:699.098667pt;}
.yb{bottom:706.470667pt;}
.y73{bottom:711.698667pt;}
.y37{bottom:715.038667pt;}
.ya{bottom:722.412000pt;}
.y64{bottom:722.908000pt;}
.y72{bottom:727.640000pt;}
.y36{bottom:730.978667pt;}
.y9{bottom:738.352000pt;}
.y63{bottom:743.364000pt;}
.y71{bottom:743.580000pt;}
.y35{bottom:746.918667pt;}
.y8{bottom:754.292000pt;}
.y62{bottom:755.850667pt;}
.y70{bottom:759.520000pt;}
.y34{bottom:762.858667pt;}
.y61{bottom:768.337333pt;}
.y7{bottom:770.232000pt;}
.y6f{bottom:775.460000pt;}
.y33{bottom:778.798667pt;}
.y60{bottom:780.824000pt;}
.y6{bottom:786.172000pt;}
.y6e{bottom:791.400000pt;}
.y5f{bottom:793.310667pt;}
.y32{bottom:794.740000pt;}
.y5e{bottom:805.796000pt;}
.y6d{bottom:807.340000pt;}
.y5{bottom:810.680000pt;}
.y5d{bottom:818.282667pt;}
.y6c{bottom:830.121333pt;}
.y5c{bottom:830.769333pt;}
.y5b{bottom:858.500000pt;}
.y6b{bottom:874.440000pt;}
.y5a{bottom:874.441333pt;}
.y4{bottom:885.376000pt;}
.y59{bottom:890.381333pt;}
.y58{bottom:906.321333pt;}
.y3{bottom:916.460000pt;}
.y57{bottom:922.261333pt;}
.y56{bottom:938.201333pt;}
.y2{bottom:953.653333pt;}
.y55{bottom:954.141333pt;}
.y6a{bottom:970.081333pt;}
.y54{bottom:970.082667pt;}
.y1{bottom:1014.372000pt;}
.h5{height:14.824448pt;}
.h1{height:25.589197pt;}
.h6{height:29.244954pt;}
.h8{height:29.372475pt;}
.h4{height:36.556100pt;}
.h7{height:36.874903pt;}
.h3{height:40.880515pt;}
.h2{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:65.285333pt;}
.xa{left:75.912000pt;}
.xf{left:77.081333pt;}
.x6{left:78.568000pt;}
.xe{left:85.108000pt;}
.x8{left:91.920000pt;}
.x10{left:117.193333pt;}
.x3{left:125.413333pt;}
.x2{left:142.166667pt;}
.x5{left:180.825333pt;}
.x9{left:198.453333pt;}
.x4{left:274.093333pt;}
.x15{left:404.678667pt;}
.xb{left:415.970667pt;}
.x13{left:421.284000pt;}
.xd{left:429.253333pt;}
.x14{left:440.316000pt;}
.xc{left:459.290667pt;}
.x11{left:520.565333pt;}
.x12{left:546.149333pt;}
.x1{left:746.065333pt;}
}




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