
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_25380fbfd45792608d9b3c5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9c6273b19e030ad375dc38da.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8804d4c89a0a3b59bc3cc866.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c2d790ebc4353186e4835477.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d9a70a037090db7342c85391.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_afca4eb9a1f088b941cb76e1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_26912725dd44e75e0f428adf.woff2')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_cedae4777c05d378f06548ad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.912109;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_ef269e0f89dd678b3eb067a9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d2d0b33486a154f8b102cdbf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.331543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cac9503b394cd979192a5249.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b98c07ac21baaa8ccd95c51f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b060db9a02a6946e2463b63c.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7b67a619a320eee1da5c1f0c.woff2')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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls2b{letter-spacing:-0.810000px;}
.ls46{letter-spacing:-0.774000px;}
.ls33{letter-spacing:-0.739966px;}
.ls34{letter-spacing:-0.666000px;}
.ls31{letter-spacing:-0.645098px;}
.ls41{letter-spacing:-0.306600px;}
.ls3b{letter-spacing:-0.303576px;}
.ls20{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.280200px;}
.ls2a{letter-spacing:-0.259800px;}
.ls2d{letter-spacing:-0.226200px;}
.ls38{letter-spacing:-0.108000px;}
.ls3f{letter-spacing:-0.106800px;}
.ls27{letter-spacing:-0.097800px;}
.ls37{letter-spacing:-0.072000px;}
.ls25{letter-spacing:-0.053280px;}
.ls40{letter-spacing:-0.026640px;}
.ls3a{letter-spacing:-0.018000px;}
.ls29{letter-spacing:-0.008640px;}
.ls1e{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.018973px;}
.ls32{letter-spacing:0.037947px;}
.ls4{letter-spacing:0.056920px;}
.ls1b{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.075600px;}
.ls12{letter-spacing:0.094867px;}
.ls1c{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.113841px;}
.ls39{letter-spacing:0.198000px;}
.ls1d{letter-spacing:0.228000px;}
.ls35{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.259920px;}
.ls44{letter-spacing:0.298800px;}
.ls1f{letter-spacing:0.305400px;}
.ls19{letter-spacing:0.338400px;}
.ls21{letter-spacing:0.341400px;}
.ls14{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.360496px;}
.ls3e{letter-spacing:0.413280px;}
.ls26{letter-spacing:0.439800px;}
.ls1a{letter-spacing:0.547920px;}
.ls28{letter-spacing:0.624000px;}
.ls24{letter-spacing:0.666000px;}
.ls0{letter-spacing:0.666720px;}
.ls1{letter-spacing:0.702720px;}
.ls2c{letter-spacing:0.720000px;}
.ls2f{letter-spacing:0.796886px;}
.ls13{letter-spacing:0.872780px;}
.ls36{letter-spacing:0.978000px;}
.ls18{letter-spacing:0.979920px;}
.ls10{letter-spacing:1.631719px;}
.ls11{letter-spacing:1.821454px;}
.ls3c{letter-spacing:2.826720px;}
.ls3{letter-spacing:3.149597px;}
.ls5{letter-spacing:3.908536px;}
.ls6{letter-spacing:4.098271px;}
.ls15{letter-spacing:5.940000px;}
.lsb{letter-spacing:6.185353px;}
.lsa{letter-spacing:6.944292px;}
.lsf{letter-spacing:7.703231px;}
.lsc{letter-spacing:10.738988px;}
.lsd{letter-spacing:10.928722px;}
.lse{letter-spacing:11.497927px;}
.ls7{letter-spacing:13.774744px;}
.ls8{letter-spacing:13.901234px;}
.ls9{letter-spacing:13.964479px;}
.ls17{letter-spacing:21.546720px;}
.ls45{letter-spacing:41.706720px;}
.ls43{letter-spacing:46.026720px;}
.ls3d{letter-spacing:103.626720px;}
.ls42{letter-spacing:170.562720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(27,28,29),0 0.015em rgb(27,28,29),0.015em 0 rgb(27,28,29),0 -0.015em  rgb(27,28,29);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(27,28,29);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws22{word-spacing:-60.120000px;}
.ws23{word-spacing:-60.058800px;}
.ws16{word-spacing:-59.760000px;}
.ws20{word-spacing:-54.000000px;}
.ws9{word-spacing:-17.237280px;}
.ws7{word-spacing:-17.053080px;}
.ws19{word-spacing:-16.951680px;}
.ws3{word-spacing:-16.688880px;}
.ws11{word-spacing:-16.620765px;}
.ws5{word-spacing:-16.613280px;}
.ws1{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.515480px;}
.ws24{word-spacing:-16.506480px;}
.wsa{word-spacing:-16.353480px;}
.ws4{word-spacing:-16.333080px;}
.ws12{word-spacing:-16.184375px;}
.ws15{word-spacing:-15.918747px;}
.ws13{word-spacing:-15.880800px;}
.ws14{word-spacing:-15.861826px;}
.ws10{word-spacing:-15.842853px;}
.wse{word-spacing:-15.823879px;}
.ws1f{word-spacing:-15.520304px;}
.ws2{word-spacing:-15.300000px;}
.ws1c{word-spacing:-15.210000px;}
.ws1d{word-spacing:-15.012000px;}
.ws1e{word-spacing:-14.994000px;}
.ws18{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.274000px;}
.ws0{word-spacing:-14.220000px;}
.wsf{word-spacing:-13.500000px;}
.ws1b{word-spacing:-13.392000px;}
.wsb{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.808640px;}
.wsd{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.213800px;}
.ws1a{word-spacing:-8.928000px;}
.ws21{word-spacing:0.000000px;}
._3{margin-left:-12.299040px;}
._7{margin-left:-10.441560px;}
._5{margin-left:-8.469120px;}
._c{margin-left:-4.439793px;}
._a{margin-left:-2.869650px;}
._0{margin-left:-1.093680px;}
._1{width:1.137600px;}
._2{width:2.464320px;}
._9{width:4.382873px;}
._d{width:6.234242px;}
._8{width:7.653261px;}
._6{width:9.322560px;}
._e{width:10.985643px;}
._4{width:12.130560px;}
._b{width:13.641929px;}
._13{width:14.685252px;}
._12{width:15.847546px;}
._16{width:17.629200px;}
._17{width:18.935760px;}
._18{width:20.219040px;}
._11{width:21.261600px;}
._f{width:22.290480px;}
._10{width:23.610720px;}
._14{width:30.176640px;}
._15{width:31.713600px;}
.fc3{color:rgb(27,28,29);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs9{font-size:56.920429px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:1.440000px;}
.y3f{bottom:2.700000px;}
.y35{bottom:4.125000px;}
.y4d{bottom:5.010000px;}
.y3e{bottom:10.260000px;}
.y2{bottom:13.680000px;}
.y5{bottom:14.040000px;}
.y4a{bottom:15.480000px;}
.y34{bottom:27.165000px;}
.y4{bottom:32.400000px;}
.y49{bottom:34.230000px;}
.y3d{bottom:40.350000px;}
.y3c{bottom:52.050000px;}
.y33{bottom:53.265000px;}
.y3{bottom:55.470000px;}
.y48{bottom:56.370000px;}
.ya{bottom:57.600000px;}
.y3b{bottom:65.010000px;}
.y47{bottom:75.450000px;}
.y9{bottom:75.780000px;}
.y3a{bottom:78.150000px;}
.y32{bottom:79.410000px;}
.y46{bottom:93.090000px;}
.y8{bottom:95.760000px;}
.y45{bottom:99.390000px;}
.y39{bottom:99.930000px;}
.y31{bottom:105.510000px;}
.y44{bottom:115.410000px;}
.y43{bottom:130.890000px;}
.y30{bottom:131.790000px;}
.y42{bottom:146.370000px;}
.y76{bottom:146.520000px;}
.y9f{bottom:149.760000px;}
.y2f{bottom:157.890000px;}
.y41{bottom:161.850000px;}
.y38{bottom:162.030000px;}
.y75{bottom:166.680000px;}
.y4b{bottom:167.760000px;}
.y9e{bottom:169.560000px;}
.y37{bottom:172.650000px;}
.y40{bottom:177.150000px;}
.y2e{bottom:183.990000px;}
.y74{bottom:186.840000px;}
.y36{bottom:187.560000px;}
.y9d{bottom:192.060000px;}
.y73{bottom:206.820000px;}
.y2d{bottom:210.090000px;}
.y9c{bottom:215.310000px;}
.y72{bottom:227.010000px;}
.y1f{bottom:234.030000px;}
.y2c{bottom:236.190000px;}
.y9b{bottom:237.990000px;}
.y1e{bottom:249.870000px;}
.y71{bottom:250.050000px;}
.y9a{bottom:255.270000px;}
.y2b{bottom:262.470000px;}
.y99{bottom:272.550000px;}
.y70{bottom:273.270000px;}
.y1d{bottom:273.990000px;}
.y98{bottom:293.070000px;}
.y6f{bottom:296.310000px;}
.y2a{bottom:296.880000px;}
.y1c{bottom:298.140000px;}
.y97{bottom:319.170000px;}
.y6e{bottom:319.530000px;}
.y29{bottom:320.460000px;}
.y1b{bottom:322.260000px;}
.y6d{bottom:339.510000px;}
.y96{bottom:342.030000px;}
.y28{bottom:344.040000px;}
.y1a{bottom:346.560000px;}
.y6c{bottom:359.670000px;}
.y95{bottom:362.550000px;}
.y27{bottom:367.440000px;}
.y19{bottom:370.680000px;}
.y6b{bottom:379.830000px;}
.y11{bottom:390.105000px;}
.y26{bottom:391.020000px;}
.y18{bottom:394.800000px;}
.y94{bottom:397.830000px;}
.y6a{bottom:402.870000px;}
.y25{bottom:414.600000px;}
.y17{bottom:418.920000px;}
.y93{bottom:423.930000px;}
.y69{bottom:428.970000px;}
.y24{bottom:438.000000px;}
.y16{bottom:443.040000px;}
.y92{bottom:450.075000px;}
.y68{bottom:455.115000px;}
.y23{bottom:461.580000px;}
.y15{bottom:467.160000px;}
.y91{bottom:473.295000px;}
.y22{bottom:485.160000px;}
.y67{bottom:487.335000px;}
.y14{bottom:491.460000px;}
.y90{bottom:496.335000px;}
.y66{bottom:507.315000px;}
.y21{bottom:508.560000px;}
.y13{bottom:515.580000px;}
.y8f{bottom:522.435000px;}
.y65{bottom:527.475000px;}
.y20{bottom:532.185000px;}
.y12{bottom:539.745000px;}
.y64{bottom:547.635000px;}
.y8e{bottom:548.535000px;}
.y63{bottom:570.675000px;}
.y8d{bottom:574.635000px;}
.y62{bottom:593.895000px;}
.y8c{bottom:600.735000px;}
.y61{bottom:613.875000px;}
.y8b{bottom:627.015000px;}
.y60{bottom:636.915000px;}
.y8a{bottom:653.115000px;}
.y5f{bottom:663.195000px;}
.y89{bottom:679.215000px;}
.y5e{bottom:689.325000px;}
.y88{bottom:705.345000px;}
.y5d{bottom:724.425000px;}
.y87{bottom:737.565000px;}
.y5c{bottom:747.645000px;}
.y86{bottom:757.725000px;}
.y5b{bottom:767.625000px;}
.y85{bottom:777.705000px;}
.y5a{bottom:790.665000px;}
.y84{bottom:797.865000px;}
.y83{bottom:820.905000px;}
.y59{bottom:822.885000px;}
.y58{bottom:843.045000px;}
.y82{bottom:844.125000px;}
.y57{bottom:866.085000px;}
.y81{bottom:867.165000px;}
.y56{bottom:889.305000px;}
.y80{bottom:890.385000px;}
.y55{bottom:912.345000px;}
.y7f{bottom:913.425000px;}
.y7e{bottom:936.510000px;}
.y54{bottom:938.490000px;}
.y10{bottom:945.150000px;}
.y7d{bottom:959.730000px;}
.y53{bottom:964.590000px;}
.yf{bottom:969.630000px;}
.y52{bottom:990.690000px;}
.y7c{bottom:991.770000px;}
.ye{bottom:995.910000px;}
.y7b{bottom:1011.930000px;}
.y51{bottom:1016.790000px;}
.yd{bottom:1018.230000px;}
.y7a{bottom:1031.910000px;}
.y50{bottom:1043.070000px;}
.yc{bottom:1047.390000px;}
.y79{bottom:1055.130000px;}
.y4f{bottom:1069.170000px;}
.y78{bottom:1078.170000px;}
.yb{bottom:1082.850000px;}
.y4c{bottom:1086.300000px;}
.y4e{bottom:1095.270000px;}
.y77{bottom:1098.330000px;}
.y7{bottom:1114.710000px;}
.y1{bottom:1116.150000px;}
.h18{height:5.650313px;}
.h11{height:5.653125px;}
.h8{height:5.729063px;}
.h7{height:17.903320px;}
.h1a{height:27.540000px;}
.h16{height:29.678906px;}
.h10{height:40.985156px;}
.hf{height:42.086250px;}
.hd{height:48.229102px;}
.h13{height:52.971680px;}
.h17{height:54.421875px;}
.h5{height:55.824609px;}
.h19{height:57.243164px;}
.ha{height:57.324375px;}
.h9{height:58.651172px;}
.h12{height:60.338990px;}
.h1c{height:61.423863px;}
.hc{height:63.349102px;}
.h1b{height:64.002656px;}
.h6{height:65.010937px;}
.h3{height:65.884219px;}
.h14{height:70.218281px;}
.hb{height:89.299336px;}
.h2{height:92.370000px;}
.h4{height:117.180000px;}
.h15{height:201.810000px;}
.he{height:549.270000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:6.876000px;}
.x1c{left:8.085000px;}
.x6{left:10.965000px;}
.x4{left:12.765000px;}
.x17{left:14.211000px;}
.x1a{left:16.011000px;}
.x23{left:18.171000px;}
.x19{left:21.771000px;}
.x18{left:26.091000px;}
.x25{left:29.151000px;}
.x5{left:33.645000px;}
.x12{left:43.731000px;}
.x24{left:47.691000px;}
.x13{left:50.751000px;}
.x11{left:55.071000px;}
.x27{left:57.051000px;}
.x1d{left:64.110000px;}
.x26{left:66.225000px;}
.x15{left:73.605000px;}
.x1{left:78.300000px;}
.x16{left:83.685000px;}
.xc{left:86.436000px;}
.x2{left:95.790000px;}
.x28{left:102.765000px;}
.x22{left:106.725000px;}
.x1e{left:110.370000px;}
.x2e{left:113.436000px;}
.x14{left:124.545000px;}
.x8{left:140.436000px;}
.x29{left:180.930000px;}
.x3{left:182.385000px;}
.xf{left:212.790000px;}
.x1b{left:219.105000px;}
.x2a{left:227.040000px;}
.x1f{left:238.020000px;}
.x2c{left:270.240000px;}
.x20{left:274.020000px;}
.x7{left:311.100000px;}
.x21{left:378.960000px;}
.xe{left:431.535000px;}
.x2b{left:536.145000px;}
.xd{left:573.405000px;}
.x10{left:597.165000px;}
.xb{left:766.050000px;}
.xa{left:791.970000px;}
.x9{left:806.940000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls2b{letter-spacing:-0.720000pt;}
.ls46{letter-spacing:-0.688000pt;}
.ls33{letter-spacing:-0.657747pt;}
.ls34{letter-spacing:-0.592000pt;}
.ls31{letter-spacing:-0.573421pt;}
.ls41{letter-spacing:-0.272533pt;}
.ls3b{letter-spacing:-0.269845pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.249067pt;}
.ls2a{letter-spacing:-0.230933pt;}
.ls2d{letter-spacing:-0.201067pt;}
.ls38{letter-spacing:-0.096000pt;}
.ls3f{letter-spacing:-0.094933pt;}
.ls27{letter-spacing:-0.086933pt;}
.ls37{letter-spacing:-0.064000pt;}
.ls25{letter-spacing:-0.047360pt;}
.ls40{letter-spacing:-0.023680pt;}
.ls3a{letter-spacing:-0.016000pt;}
.ls29{letter-spacing:-0.007680pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.016865pt;}
.ls32{letter-spacing:0.033731pt;}
.ls4{letter-spacing:0.050596pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.067200pt;}
.ls12{letter-spacing:0.084327pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.101192pt;}
.ls39{letter-spacing:0.176000pt;}
.ls1d{letter-spacing:0.202667pt;}
.ls35{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.231040pt;}
.ls44{letter-spacing:0.265600pt;}
.ls1f{letter-spacing:0.271467pt;}
.ls19{letter-spacing:0.300800pt;}
.ls21{letter-spacing:0.303467pt;}
.ls14{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.320441pt;}
.ls3e{letter-spacing:0.367360pt;}
.ls26{letter-spacing:0.390933pt;}
.ls1a{letter-spacing:0.487040pt;}
.ls28{letter-spacing:0.554667pt;}
.ls24{letter-spacing:0.592000pt;}
.ls0{letter-spacing:0.592640pt;}
.ls1{letter-spacing:0.624640pt;}
.ls2c{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:0.708343pt;}
.ls13{letter-spacing:0.775804pt;}
.ls36{letter-spacing:0.869333pt;}
.ls18{letter-spacing:0.871040pt;}
.ls10{letter-spacing:1.450417pt;}
.ls11{letter-spacing:1.619070pt;}
.ls3c{letter-spacing:2.512640pt;}
.ls3{letter-spacing:2.799642pt;}
.ls5{letter-spacing:3.474254pt;}
.ls6{letter-spacing:3.642907pt;}
.ls15{letter-spacing:5.280000pt;}
.lsb{letter-spacing:5.498092pt;}
.lsa{letter-spacing:6.172704pt;}
.lsf{letter-spacing:6.847317pt;}
.lsc{letter-spacing:9.545767pt;}
.lsd{letter-spacing:9.714420pt;}
.lse{letter-spacing:10.220379pt;}
.ls7{letter-spacing:12.244217pt;}
.ls8{letter-spacing:12.356652pt;}
.ls9{letter-spacing:12.412870pt;}
.ls17{letter-spacing:19.152640pt;}
.ls45{letter-spacing:37.072640pt;}
.ls43{letter-spacing:40.912640pt;}
.ls3d{letter-spacing:92.112640pt;}
.ls42{letter-spacing:151.611307pt;}
.ws22{word-spacing:-53.440000pt;}
.ws23{word-spacing:-53.385600pt;}
.ws16{word-spacing:-53.120000pt;}
.ws20{word-spacing:-48.000000pt;}
.ws9{word-spacing:-15.322027pt;}
.ws7{word-spacing:-15.158293pt;}
.ws19{word-spacing:-15.068160pt;}
.ws3{word-spacing:-14.834560pt;}
.ws11{word-spacing:-14.774013pt;}
.ws5{word-spacing:-14.767360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.680427pt;}
.ws24{word-spacing:-14.672427pt;}
.wsa{word-spacing:-14.536427pt;}
.ws4{word-spacing:-14.518293pt;}
.ws12{word-spacing:-14.386111pt;}
.ws15{word-spacing:-14.149997pt;}
.ws13{word-spacing:-14.116266pt;}
.ws14{word-spacing:-14.099401pt;}
.ws10{word-spacing:-14.082536pt;}
.wse{word-spacing:-14.065670pt;}
.ws1f{word-spacing:-13.795825pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1c{word-spacing:-13.520000pt;}
.ws1d{word-spacing:-13.344000pt;}
.ws1e{word-spacing:-13.328000pt;}
.ws18{word-spacing:-13.280000pt;}
.ws17{word-spacing:-12.688000pt;}
.ws0{word-spacing:-12.640000pt;}
.wsf{word-spacing:-12.000000pt;}
.ws1b{word-spacing:-11.904000pt;}
.wsb{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.607680pt;}
.wsd{word-spacing:-9.280000pt;}
.wsc{word-spacing:-9.078933pt;}
.ws1a{word-spacing:-7.936000pt;}
.ws21{word-spacing:0.000000pt;}
._3{margin-left:-10.932480pt;}
._7{margin-left:-9.281387pt;}
._5{margin-left:-7.528107pt;}
._c{margin-left:-3.946483pt;}
._a{margin-left:-2.550800pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.011200pt;}
._2{width:2.190507pt;}
._9{width:3.895887pt;}
._d{width:5.541548pt;}
._8{width:6.802898pt;}
._6{width:8.286720pt;}
._e{width:9.765016pt;}
._4{width:10.782720pt;}
._b{width:12.126159pt;}
._13{width:13.053558pt;}
._12{width:14.086708pt;}
._16{width:15.670400pt;}
._17{width:16.831787pt;}
._18{width:17.972480pt;}
._11{width:18.899200pt;}
._f{width:19.813760pt;}
._10{width:20.987307pt;}
._14{width:26.823680pt;}
._15{width:28.189867pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs9{font-size:50.595937pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:1.280000pt;}
.y3f{bottom:2.400000pt;}
.y35{bottom:3.666667pt;}
.y4d{bottom:4.453333pt;}
.y3e{bottom:9.120000pt;}
.y2{bottom:12.160000pt;}
.y5{bottom:12.480000pt;}
.y4a{bottom:13.760000pt;}
.y34{bottom:24.146667pt;}
.y4{bottom:28.800000pt;}
.y49{bottom:30.426667pt;}
.y3d{bottom:35.866667pt;}
.y3c{bottom:46.266667pt;}
.y33{bottom:47.346667pt;}
.y3{bottom:49.306667pt;}
.y48{bottom:50.106667pt;}
.ya{bottom:51.200000pt;}
.y3b{bottom:57.786667pt;}
.y47{bottom:67.066667pt;}
.y9{bottom:67.360000pt;}
.y3a{bottom:69.466667pt;}
.y32{bottom:70.586667pt;}
.y46{bottom:82.746667pt;}
.y8{bottom:85.120000pt;}
.y45{bottom:88.346667pt;}
.y39{bottom:88.826667pt;}
.y31{bottom:93.786667pt;}
.y44{bottom:102.586667pt;}
.y43{bottom:116.346667pt;}
.y30{bottom:117.146667pt;}
.y42{bottom:130.106667pt;}
.y76{bottom:130.240000pt;}
.y9f{bottom:133.120000pt;}
.y2f{bottom:140.346667pt;}
.y41{bottom:143.866667pt;}
.y38{bottom:144.026667pt;}
.y75{bottom:148.160000pt;}
.y4b{bottom:149.120000pt;}
.y9e{bottom:150.720000pt;}
.y37{bottom:153.466667pt;}
.y40{bottom:157.466667pt;}
.y2e{bottom:163.546667pt;}
.y74{bottom:166.080000pt;}
.y36{bottom:166.720000pt;}
.y9d{bottom:170.720000pt;}
.y73{bottom:183.840000pt;}
.y2d{bottom:186.746667pt;}
.y9c{bottom:191.386667pt;}
.y72{bottom:201.786667pt;}
.y1f{bottom:208.026667pt;}
.y2c{bottom:209.946667pt;}
.y9b{bottom:211.546667pt;}
.y1e{bottom:222.106667pt;}
.y71{bottom:222.266667pt;}
.y9a{bottom:226.906667pt;}
.y2b{bottom:233.306667pt;}
.y99{bottom:242.266667pt;}
.y70{bottom:242.906667pt;}
.y1d{bottom:243.546667pt;}
.y98{bottom:260.506667pt;}
.y6f{bottom:263.386667pt;}
.y2a{bottom:263.893333pt;}
.y1c{bottom:265.013333pt;}
.y97{bottom:283.706667pt;}
.y6e{bottom:284.026667pt;}
.y29{bottom:284.853333pt;}
.y1b{bottom:286.453333pt;}
.y6d{bottom:301.786667pt;}
.y96{bottom:304.026667pt;}
.y28{bottom:305.813333pt;}
.y1a{bottom:308.053333pt;}
.y6c{bottom:319.706667pt;}
.y95{bottom:322.266667pt;}
.y27{bottom:326.613333pt;}
.y19{bottom:329.493333pt;}
.y6b{bottom:337.626667pt;}
.y11{bottom:346.760000pt;}
.y26{bottom:347.573333pt;}
.y18{bottom:350.933333pt;}
.y94{bottom:353.626667pt;}
.y6a{bottom:358.106667pt;}
.y25{bottom:368.533333pt;}
.y17{bottom:372.373333pt;}
.y93{bottom:376.826667pt;}
.y69{bottom:381.306667pt;}
.y24{bottom:389.333333pt;}
.y16{bottom:393.813333pt;}
.y92{bottom:400.066667pt;}
.y68{bottom:404.546667pt;}
.y23{bottom:410.293333pt;}
.y15{bottom:415.253333pt;}
.y91{bottom:420.706667pt;}
.y22{bottom:431.253333pt;}
.y67{bottom:433.186667pt;}
.y14{bottom:436.853333pt;}
.y90{bottom:441.186667pt;}
.y66{bottom:450.946667pt;}
.y21{bottom:452.053333pt;}
.y13{bottom:458.293333pt;}
.y8f{bottom:464.386667pt;}
.y65{bottom:468.866667pt;}
.y20{bottom:473.053333pt;}
.y12{bottom:479.773333pt;}
.y64{bottom:486.786667pt;}
.y8e{bottom:487.586667pt;}
.y63{bottom:507.266667pt;}
.y8d{bottom:510.786667pt;}
.y62{bottom:527.906667pt;}
.y8c{bottom:533.986667pt;}
.y61{bottom:545.666667pt;}
.y8b{bottom:557.346667pt;}
.y60{bottom:566.146667pt;}
.y8a{bottom:580.546667pt;}
.y5f{bottom:589.506667pt;}
.y89{bottom:603.746667pt;}
.y5e{bottom:612.733333pt;}
.y88{bottom:626.973333pt;}
.y5d{bottom:643.933333pt;}
.y87{bottom:655.613333pt;}
.y5c{bottom:664.573333pt;}
.y86{bottom:673.533333pt;}
.y5b{bottom:682.333333pt;}
.y85{bottom:691.293333pt;}
.y5a{bottom:702.813333pt;}
.y84{bottom:709.213333pt;}
.y83{bottom:729.693333pt;}
.y59{bottom:731.453333pt;}
.y58{bottom:749.373333pt;}
.y82{bottom:750.333333pt;}
.y57{bottom:769.853333pt;}
.y81{bottom:770.813333pt;}
.y56{bottom:790.493333pt;}
.y80{bottom:791.453333pt;}
.y55{bottom:810.973333pt;}
.y7f{bottom:811.933333pt;}
.y7e{bottom:832.453333pt;}
.y54{bottom:834.213333pt;}
.y10{bottom:840.133333pt;}
.y7d{bottom:853.093333pt;}
.y53{bottom:857.413333pt;}
.yf{bottom:861.893333pt;}
.y52{bottom:880.613333pt;}
.y7c{bottom:881.573333pt;}
.ye{bottom:885.253333pt;}
.y7b{bottom:899.493333pt;}
.y51{bottom:903.813333pt;}
.yd{bottom:905.093333pt;}
.y7a{bottom:917.253333pt;}
.y50{bottom:927.173333pt;}
.yc{bottom:931.013333pt;}
.y79{bottom:937.893333pt;}
.y4f{bottom:950.373333pt;}
.y78{bottom:958.373333pt;}
.yb{bottom:962.533333pt;}
.y4c{bottom:965.600000pt;}
.y4e{bottom:973.573333pt;}
.y77{bottom:976.293333pt;}
.y7{bottom:990.853333pt;}
.y1{bottom:992.133333pt;}
.h18{height:5.022500pt;}
.h11{height:5.025000pt;}
.h8{height:5.092500pt;}
.h7{height:15.914062pt;}
.h1a{height:24.480000pt;}
.h16{height:26.381250pt;}
.h10{height:36.431250pt;}
.hf{height:37.410000pt;}
.hd{height:42.870313pt;}
.h13{height:47.085938pt;}
.h17{height:48.375000pt;}
.h5{height:49.621875pt;}
.h19{height:50.882812pt;}
.ha{height:50.955000pt;}
.h9{height:52.134375pt;}
.h12{height:53.634657pt;}
.h1c{height:54.598989pt;}
.hc{height:56.310313pt;}
.h1b{height:56.891250pt;}
.h6{height:57.787500pt;}
.h3{height:58.563750pt;}
.h14{height:62.416250pt;}
.hb{height:79.377187pt;}
.h2{height:82.106667pt;}
.h4{height:104.160000pt;}
.h15{height:179.386667pt;}
.he{height:488.240000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:6.112000pt;}
.x1c{left:7.186667pt;}
.x6{left:9.746667pt;}
.x4{left:11.346667pt;}
.x17{left:12.632000pt;}
.x1a{left:14.232000pt;}
.x23{left:16.152000pt;}
.x19{left:19.352000pt;}
.x18{left:23.192000pt;}
.x25{left:25.912000pt;}
.x5{left:29.906667pt;}
.x12{left:38.872000pt;}
.x24{left:42.392000pt;}
.x13{left:45.112000pt;}
.x11{left:48.952000pt;}
.x27{left:50.712000pt;}
.x1d{left:56.986667pt;}
.x26{left:58.866667pt;}
.x15{left:65.426667pt;}
.x1{left:69.600000pt;}
.x16{left:74.386667pt;}
.xc{left:76.832000pt;}
.x2{left:85.146667pt;}
.x28{left:91.346667pt;}
.x22{left:94.866667pt;}
.x1e{left:98.106667pt;}
.x2e{left:100.832000pt;}
.x14{left:110.706667pt;}
.x8{left:124.832000pt;}
.x29{left:160.826667pt;}
.x3{left:162.120000pt;}
.xf{left:189.146667pt;}
.x1b{left:194.760000pt;}
.x2a{left:201.813333pt;}
.x1f{left:211.573333pt;}
.x2c{left:240.213333pt;}
.x20{left:243.573333pt;}
.x7{left:276.533333pt;}
.x21{left:336.853333pt;}
.xe{left:383.586667pt;}
.x2b{left:476.573333pt;}
.xd{left:509.693333pt;}
.x10{left:530.813333pt;}
.xb{left:680.933333pt;}
.xa{left:703.973333pt;}
.x9{left:717.280000pt;}
}




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