
    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_e8e68328c2db1209261b3e8b.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_99646745f8053e5be5dad766.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_f8d0ecb9f46774a8234db631.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_6749a746f1e879fe891962ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331331;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_6894fe4e8ea697b18c2df689.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_8896ac7699b89773a9bf1970.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_8f16404669d693d5168687ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976562;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_eedb25d7da5613b2a51662c7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c8f9c79950ed7f67fb83ac6e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1d8bb5cb95dfa04a6ab51c35.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_a699d447046c2ff12274d2ee.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_77a654118af1a91300f887dc.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-0.810000px;}
.ls3a{letter-spacing:-0.774000px;}
.ls2f{letter-spacing:-0.666000px;}
.ls2c{letter-spacing:-0.645098px;}
.ls36{letter-spacing:-0.360496px;}
.ls33{letter-spacing:-0.342000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.280200px;}
.ls3b{letter-spacing:-0.259800px;}
.ls26{letter-spacing:-0.226200px;}
.ls2a{letter-spacing:-0.189735px;}
.ls31{letter-spacing:-0.108000px;}
.ls39{letter-spacing:-0.106800px;}
.ls20{letter-spacing:-0.097800px;}
.ls42{letter-spacing:-0.075000px;}
.ls30{letter-spacing:-0.072000px;}
.ls22{letter-spacing:-0.053280px;}
.ls2d{letter-spacing:-0.026640px;}
.ls1a{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.018973px;}
.ls12{letter-spacing:0.037947px;}
.ls35{letter-spacing:0.054000px;}
.ls0{letter-spacing:0.056920px;}
.ls34{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.094867px;}
.ls18{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.113841px;}
.ls28{letter-spacing:0.126000px;}
.ls3c{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.198000px;}
.ls2e{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.ls43{letter-spacing:0.298800px;}
.ls2b{letter-spacing:0.303576px;}
.ls1b{letter-spacing:0.305400px;}
.ls21{letter-spacing:0.320400px;}
.ls1f{letter-spacing:0.331800px;}
.ls3d{letter-spacing:0.338400px;}
.ls3{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.360496px;}
.ls23{letter-spacing:0.376800px;}
.ls3e{letter-spacing:0.540000px;}
.ls1e{letter-spacing:0.666000px;}
.ls17{letter-spacing:0.666720px;}
.ls3f{letter-spacing:0.693360px;}
.ls25{letter-spacing:0.720000px;}
.ls41{letter-spacing:0.744000px;}
.ls29{letter-spacing:0.796886px;}
.lsf{letter-spacing:0.872780px;}
.ls38{letter-spacing:0.979920px;}
.ls10{letter-spacing:1.631719px;}
.ls16{letter-spacing:2.826720px;}
.lse{letter-spacing:3.149597px;}
.lsd{letter-spacing:3.908536px;}
.ls40{letter-spacing:4.266720px;}
.ls11{letter-spacing:5.426414px;}
.ls9{letter-spacing:6.185353px;}
.ls5{letter-spacing:6.944292px;}
.lsa{letter-spacing:7.134027px;}
.ls8{letter-spacing:7.703231px;}
.ls7{letter-spacing:8.462170px;}
.lsb{letter-spacing:9.221109px;}
.ls15{letter-spacing:10.260000px;}
.ls37{letter-spacing:15.786720px;}
.ls4{letter-spacing:21.780000px;}
.ls1{letter-spacing:22.882012px;}
.ls2{letter-spacing:23.640951px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(32,33,34),0 0.015em rgb(32,33,34),0.015em 0 rgb(32,33,34),0 -0.015em  rgb(32,33,34);}
.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(32,33,34);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;}
}
.ws25{word-spacing:-17.357280px;}
.ws8{word-spacing:-16.990080px;}
.ws5{word-spacing:-16.945080px;}
.ws7{word-spacing:-16.933680px;}
.ws10{word-spacing:-16.620765px;}
.ws4{word-spacing:-16.613280px;}
.ws16{word-spacing:-16.586640px;}
.ws1{word-spacing:-16.560000px;}
.ws26{word-spacing:-16.538280px;}
.ws6{word-spacing:-16.515480px;}
.ws23{word-spacing:-16.506480px;}
.ws24{word-spacing:-16.353480px;}
.ws3{word-spacing:-16.333080px;}
.wsf{word-spacing:-16.184375px;}
.ws13{word-spacing:-16.127455px;}
.ws14{word-spacing:-15.918747px;}
.ws15{word-spacing:-15.861826px;}
.ws12{word-spacing:-15.842853px;}
.wsd{word-spacing:-15.823879px;}
.ws11{word-spacing:-15.634144px;}
.ws21{word-spacing:-15.463383px;}
.ws2{word-spacing:-15.300000px;}
.ws27{word-spacing:-15.238800px;}
.ws1a{word-spacing:-15.210000px;}
.ws1f{word-spacing:-15.102000px;}
.ws20{word-spacing:-15.066000px;}
.ws1d{word-spacing:-15.030000px;}
.ws1b{word-spacing:-15.012000px;}
.ws9{word-spacing:-14.940000px;}
.ws1e{word-spacing:-14.724000px;}
.ws1c{word-spacing:-14.670000px;}
.ws17{word-spacing:-14.274000px;}
.ws0{word-spacing:-14.220000px;}
.wse{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.392000px;}
.wsa{word-spacing:-11.160000px;}
.wsc{word-spacing:-10.440000px;}
.wsb{word-spacing:-10.213800px;}
.ws18{word-spacing:-8.928000px;}
.ws22{word-spacing:0.000000px;}
._10{margin-left:-15.615171px;}
._2{margin-left:-12.383280px;}
._7{margin-left:-8.569335px;}
._f{margin-left:-7.475655px;}
._b{margin-left:-4.724396px;}
._5{margin-left:-2.421600px;}
._0{margin-left:-1.093680px;}
._1{width:1.137600px;}
._6{width:2.313840px;}
._4{width:3.386640px;}
._c{width:4.553634px;}
._e{width:6.014592px;}
._d{width:7.096080px;}
._8{width:8.310383px;}
._11{width:9.322852px;}
._16{width:10.934654px;}
._3{width:12.130560px;}
._14{width:13.322880px;}
._13{width:15.176880px;}
._12{width:17.659920px;}
._15{width:18.872880px;}
._17{width:20.251968px;}
._a{width:21.350325px;}
._9{width:22.407675px;}
._18{width:125.609520px;}
.fc5{color:transparent;}
.fc3{color:rgb(32,33,34);}
.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;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs8{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;}
.y40{bottom:2.520000px;}
.y4c{bottom:5.010000px;}
.y36{bottom:5.745000px;}
.y3f{bottom:10.260000px;}
.y2{bottom:13.680000px;}
.y5{bottom:14.040000px;}
.y49{bottom:15.120000px;}
.y35{bottom:27.345000px;}
.y4{bottom:32.400000px;}
.y48{bottom:34.020000px;}
.y3e{bottom:40.320000px;}
.y3d{bottom:51.840000px;}
.y34{bottom:52.545000px;}
.y3{bottom:55.470000px;}
.y47{bottom:56.340000px;}
.ya{bottom:57.600000px;}
.y3c{bottom:64.800000px;}
.y46{bottom:75.270000px;}
.y9{bottom:75.780000px;}
.y33{bottom:77.385000px;}
.y3b{bottom:77.970000px;}
.y45{bottom:92.910000px;}
.y8{bottom:95.760000px;}
.y44{bottom:99.390000px;}
.y3a{bottom:99.750000px;}
.y32{bottom:102.405000px;}
.y43{bottom:115.230000px;}
.y8f{bottom:126.720000px;}
.y31{bottom:130.710000px;}
.y4a{bottom:136.260000px;}
.y37{bottom:138.960000px;}
.y6f{bottom:139.680000px;}
.y42{bottom:146.190000px;}
.y8e{bottom:154.800000px;}
.y30{bottom:158.970000px;}
.y39{bottom:161.850000px;}
.y6e{bottom:167.940000px;}
.y38{bottom:172.470000px;}
.y41{bottom:176.970000px;}
.y8d{bottom:183.060000px;}
.y2f{bottom:187.050000px;}
.y6d{bottom:196.020000px;}
.y8c{bottom:211.350000px;}
.y2e{bottom:215.310000px;}
.y6c{bottom:224.310000px;}
.y8b{bottom:239.430000px;}
.y2d{bottom:251.490000px;}
.y6b{bottom:252.570000px;}
.y8a{bottom:267.690000px;}
.y2c{bottom:276.870000px;}
.y6a{bottom:280.650000px;}
.y89{bottom:295.950000px;}
.y2b{bottom:302.250000px;}
.y1e{bottom:308.910000px;}
.y88{bottom:324.030000px;}
.y1d{bottom:324.750000px;}
.y2a{bottom:327.630000px;}
.y10{bottom:341.325000px;}
.y69{bottom:342.750000px;}
.y1c{bottom:348.900000px;}
.y87{bottom:352.290000px;}
.y29{bottom:353.040000px;}
.y68{bottom:367.770000px;}
.y1b{bottom:373.020000px;}
.y28{bottom:378.420000px;}
.y86{bottom:386.130000px;}
.y67{bottom:396.030000px;}
.y1a{bottom:397.320000px;}
.y27{bottom:403.800000px;}
.y85{bottom:411.150000px;}
.y19{bottom:421.440000px;}
.y66{bottom:424.290000px;}
.y26{bottom:429.180000px;}
.y84{bottom:439.410000px;}
.ya6{bottom:443.370000px;}
.y18{bottom:445.560000px;}
.y65{bottom:448.995000px;}
.y25{bottom:454.560000px;}
.y83{bottom:467.715000px;}
.y17{bottom:469.680000px;}
.y64{bottom:470.775000px;}
.ya5{bottom:478.695000px;}
.y24{bottom:479.940000px;}
.y82{bottom:492.375000px;}
.y16{bottom:493.800000px;}
.y63{bottom:495.795000px;}
.ya4{bottom:501.375000px;}
.y23{bottom:505.320000px;}
.y81{bottom:517.575000px;}
.y15{bottom:517.920000px;}
.ya3{bottom:518.655000px;}
.y62{bottom:524.055000px;}
.y22{bottom:530.700000px;}
.ya2{bottom:535.935000px;}
.y14{bottom:542.220000px;}
.y80{bottom:542.235000px;}
.y61{bottom:548.715000px;}
.ya1{bottom:553.035000px;}
.y21{bottom:556.080000px;}
.y13{bottom:566.340000px;}
.y7f{bottom:567.435000px;}
.ya0{bottom:570.315000px;}
.y60{bottom:573.915000px;}
.y20{bottom:581.505000px;}
.y9f{bottom:587.595000px;}
.y12{bottom:590.505000px;}
.y7e{bottom:592.095000px;}
.y5f{bottom:598.755000px;}
.y9e{bottom:604.875000px;}
.y1f{bottom:606.885000px;}
.y11{bottom:614.625000px;}
.y7d{bottom:617.295000px;}
.y9d{bottom:622.515000px;}
.y5e{bottom:623.775000px;}
.y7c{bottom:645.555000px;}
.y5d{bottom:648.615000px;}
.y5c{bottom:673.635000px;}
.y9c{bottom:679.215000px;}
.y7b{bottom:682.665000px;}
.y5b{bottom:701.925000px;}
.y9b{bottom:704.445000px;}
.y7a{bottom:710.925000px;}
.y5a{bottom:730.185000px;}
.y9a{bottom:732.705000px;}
.y79{bottom:735.765000px;}
.y59{bottom:754.845000px;}
.y99{bottom:757.365000px;}
.y78{bottom:760.785000px;}
.y98{bottom:782.565000px;}
.y58{bottom:789.045000px;}
.y97{bottom:810.645000px;}
.y57{bottom:817.305000px;}
.y96{bottom:838.905000px;}
.y77{bottom:841.965000px;}
.y56{bottom:845.385000px;}
.y76{bottom:867.165000px;}
.y55{bottom:870.225000px;}
.y75{bottom:895.245000px;}
.y54{bottom:904.245000px;}
.y74{bottom:920.130000px;}
.y95{bottom:923.550000px;}
.y53{bottom:929.130000px;}
.y73{bottom:945.330000px;}
.y94{bottom:951.810000px;}
.y52{bottom:954.330000px;}
.yf{bottom:971.250000px;}
.y72{bottom:973.410000px;}
.y93{bottom:979.890000px;}
.y51{bottom:982.410000px;}
.ye{bottom:992.130000px;}
.y71{bottom:1001.670000px;}
.y92{bottom:1008.150000px;}
.y50{bottom:1010.670000px;}
.yd{bottom:1018.230000px;}
.y70{bottom:1029.930000px;}
.y91{bottom:1036.410000px;}
.y4f{bottom:1038.930000px;}
.yc{bottom:1047.390000px;}
.y4e{bottom:1067.010000px;}
.y90{bottom:1070.070000px;}
.yb{bottom:1082.850000px;}
.y4b{bottom:1086.300000px;}
.y4d{bottom:1095.270000px;}
.y7{bottom:1114.710000px;}
.y1{bottom:1116.150000px;}
.h19{height:5.650313px;}
.h11{height:5.653125px;}
.h8{height:5.729063px;}
.h7{height:17.903320px;}
.h1c{height:27.540000px;}
.h17{height:29.678906px;}
.h16{height:35.332031px;}
.h10{height:40.985156px;}
.hf{height:42.086250px;}
.h13{height:52.971680px;}
.h18{height:54.421875px;}
.h5{height:55.824609px;}
.h1b{height:56.320312px;}
.h1a{height:57.243164px;}
.ha{height:57.324375px;}
.h9{height:58.651172px;}
.hd{height:60.226875px;}
.h12{height:60.338990px;}
.hc{height:63.349102px;}
.h1d{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.630000px;}
.he{height:624.150000px;}
.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;}
.x31{left:6.876000px;}
.x1b{left:8.085000px;}
.x6{left:10.965000px;}
.x4{left:12.765000px;}
.x16{left:14.211000px;}
.x19{left:16.011000px;}
.x2b{left:18.171000px;}
.x18{left:21.771000px;}
.x17{left:26.091000px;}
.x2d{left:29.151000px;}
.x11{left:43.731000px;}
.x2c{left:47.691000px;}
.x1c{left:49.710000px;}
.x12{left:50.751000px;}
.x5{left:53.265000px;}
.x10{left:55.071000px;}
.x1d{left:62.130000px;}
.x25{left:66.270000px;}
.x14{left:73.605000px;}
.x1{left:78.300000px;}
.x15{left:83.685000px;}
.xc{left:86.436000px;}
.x2{left:95.790000px;}
.x2e{left:102.765000px;}
.x2a{left:106.725000px;}
.x28{left:120.990000px;}
.x13{left:124.545000px;}
.x8{left:140.436000px;}
.x3{left:182.385000px;}
.x30{left:209.190000px;}
.x1a{left:219.105000px;}
.x22{left:261.240000px;}
.x7{left:311.100000px;}
.x20{left:316.500000px;}
.x21{left:329.280000px;}
.x23{left:358.440000px;}
.x24{left:371.220000px;}
.x1e{left:382.380000px;}
.x2f{left:396.780000px;}
.xe{left:421.635000px;}
.x26{left:438.765000px;}
.x27{left:451.545000px;}
.x1f{left:541.005000px;}
.x29{left:553.965000px;}
.xf{left:583.845000px;}
.xd{left:686.490000px;}
.xb{left:766.050000px;}
.xa{left:791.970000px;}
.x9{left:806.940000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.720000pt;}
.ls3a{letter-spacing:-0.688000pt;}
.ls2f{letter-spacing:-0.592000pt;}
.ls2c{letter-spacing:-0.573421pt;}
.ls36{letter-spacing:-0.320441pt;}
.ls33{letter-spacing:-0.304000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.249067pt;}
.ls3b{letter-spacing:-0.230933pt;}
.ls26{letter-spacing:-0.201067pt;}
.ls2a{letter-spacing:-0.168653pt;}
.ls31{letter-spacing:-0.096000pt;}
.ls39{letter-spacing:-0.094933pt;}
.ls20{letter-spacing:-0.086933pt;}
.ls42{letter-spacing:-0.066667pt;}
.ls30{letter-spacing:-0.064000pt;}
.ls22{letter-spacing:-0.047360pt;}
.ls2d{letter-spacing:-0.023680pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.016865pt;}
.ls12{letter-spacing:0.033731pt;}
.ls35{letter-spacing:0.048000pt;}
.ls0{letter-spacing:0.050596pt;}
.ls34{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.084327pt;}
.ls18{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.101192pt;}
.ls28{letter-spacing:0.112000pt;}
.ls3c{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.176000pt;}
.ls2e{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.ls43{letter-spacing:0.265600pt;}
.ls2b{letter-spacing:0.269845pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls21{letter-spacing:0.284800pt;}
.ls1f{letter-spacing:0.294933pt;}
.ls3d{letter-spacing:0.300800pt;}
.ls3{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.320441pt;}
.ls23{letter-spacing:0.334933pt;}
.ls3e{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:0.592000pt;}
.ls17{letter-spacing:0.592640pt;}
.ls3f{letter-spacing:0.616320pt;}
.ls25{letter-spacing:0.640000pt;}
.ls41{letter-spacing:0.661333pt;}
.ls29{letter-spacing:0.708343pt;}
.lsf{letter-spacing:0.775804pt;}
.ls38{letter-spacing:0.871040pt;}
.ls10{letter-spacing:1.450417pt;}
.ls16{letter-spacing:2.512640pt;}
.lse{letter-spacing:2.799642pt;}
.lsd{letter-spacing:3.474254pt;}
.ls40{letter-spacing:3.792640pt;}
.ls11{letter-spacing:4.823479pt;}
.ls9{letter-spacing:5.498092pt;}
.ls5{letter-spacing:6.172704pt;}
.lsa{letter-spacing:6.341357pt;}
.ls8{letter-spacing:6.847317pt;}
.ls7{letter-spacing:7.521929pt;}
.lsb{letter-spacing:8.196542pt;}
.ls15{letter-spacing:9.120000pt;}
.ls37{letter-spacing:14.032640pt;}
.ls4{letter-spacing:19.360000pt;}
.ls1{letter-spacing:20.339567pt;}
.ls2{letter-spacing:21.014179pt;}
.ws25{word-spacing:-15.428693pt;}
.ws8{word-spacing:-15.102293pt;}
.ws5{word-spacing:-15.062293pt;}
.ws7{word-spacing:-15.052160pt;}
.ws10{word-spacing:-14.774013pt;}
.ws4{word-spacing:-14.767360pt;}
.ws16{word-spacing:-14.743680pt;}
.ws1{word-spacing:-14.720000pt;}
.ws26{word-spacing:-14.700693pt;}
.ws6{word-spacing:-14.680427pt;}
.ws23{word-spacing:-14.672427pt;}
.ws24{word-spacing:-14.536427pt;}
.ws3{word-spacing:-14.518293pt;}
.wsf{word-spacing:-14.386111pt;}
.ws13{word-spacing:-14.335515pt;}
.ws14{word-spacing:-14.149997pt;}
.ws15{word-spacing:-14.099401pt;}
.ws12{word-spacing:-14.082536pt;}
.wsd{word-spacing:-14.065670pt;}
.ws11{word-spacing:-13.897017pt;}
.ws21{word-spacing:-13.745229pt;}
.ws2{word-spacing:-13.600000pt;}
.ws27{word-spacing:-13.545600pt;}
.ws1a{word-spacing:-13.520000pt;}
.ws1f{word-spacing:-13.424000pt;}
.ws20{word-spacing:-13.392000pt;}
.ws1d{word-spacing:-13.360000pt;}
.ws1b{word-spacing:-13.344000pt;}
.ws9{word-spacing:-13.280000pt;}
.ws1e{word-spacing:-13.088000pt;}
.ws1c{word-spacing:-13.040000pt;}
.ws17{word-spacing:-12.688000pt;}
.ws0{word-spacing:-12.640000pt;}
.wse{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.904000pt;}
.wsa{word-spacing:-9.920000pt;}
.wsc{word-spacing:-9.280000pt;}
.wsb{word-spacing:-9.078933pt;}
.ws18{word-spacing:-7.936000pt;}
.ws22{word-spacing:0.000000pt;}
._10{margin-left:-13.880152pt;}
._2{margin-left:-11.007360pt;}
._7{margin-left:-7.617187pt;}
._f{margin-left:-6.645027pt;}
._b{margin-left:-4.199463pt;}
._5{margin-left:-2.152533pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.011200pt;}
._6{width:2.056747pt;}
._4{width:3.010347pt;}
._c{width:4.047675pt;}
._e{width:5.346304pt;}
._d{width:6.307627pt;}
._8{width:7.387007pt;}
._11{width:8.286980pt;}
._16{width:9.719692pt;}
._3{width:10.782720pt;}
._14{width:11.842560pt;}
._13{width:13.490560pt;}
._12{width:15.697707pt;}
._15{width:16.775893pt;}
._17{width:18.001749pt;}
._a{width:18.978066pt;}
._9{width:19.917934pt;}
._18{width:111.652907pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs8{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;}
.y40{bottom:2.240000pt;}
.y4c{bottom:4.453333pt;}
.y36{bottom:5.106667pt;}
.y3f{bottom:9.120000pt;}
.y2{bottom:12.160000pt;}
.y5{bottom:12.480000pt;}
.y49{bottom:13.440000pt;}
.y35{bottom:24.306667pt;}
.y4{bottom:28.800000pt;}
.y48{bottom:30.240000pt;}
.y3e{bottom:35.840000pt;}
.y3d{bottom:46.080000pt;}
.y34{bottom:46.706667pt;}
.y3{bottom:49.306667pt;}
.y47{bottom:50.080000pt;}
.ya{bottom:51.200000pt;}
.y3c{bottom:57.600000pt;}
.y46{bottom:66.906667pt;}
.y9{bottom:67.360000pt;}
.y33{bottom:68.786667pt;}
.y3b{bottom:69.306667pt;}
.y45{bottom:82.586667pt;}
.y8{bottom:85.120000pt;}
.y44{bottom:88.346667pt;}
.y3a{bottom:88.666667pt;}
.y32{bottom:91.026667pt;}
.y43{bottom:102.426667pt;}
.y8f{bottom:112.640000pt;}
.y31{bottom:116.186667pt;}
.y4a{bottom:121.120000pt;}
.y37{bottom:123.520000pt;}
.y6f{bottom:124.160000pt;}
.y42{bottom:129.946667pt;}
.y8e{bottom:137.600000pt;}
.y30{bottom:141.306667pt;}
.y39{bottom:143.866667pt;}
.y6e{bottom:149.280000pt;}
.y38{bottom:153.306667pt;}
.y41{bottom:157.306667pt;}
.y8d{bottom:162.720000pt;}
.y2f{bottom:166.266667pt;}
.y6d{bottom:174.240000pt;}
.y8c{bottom:187.866667pt;}
.y2e{bottom:191.386667pt;}
.y6c{bottom:199.386667pt;}
.y8b{bottom:212.826667pt;}
.y2d{bottom:223.546667pt;}
.y6b{bottom:224.506667pt;}
.y8a{bottom:237.946667pt;}
.y2c{bottom:246.106667pt;}
.y6a{bottom:249.466667pt;}
.y89{bottom:263.066667pt;}
.y2b{bottom:268.666667pt;}
.y1e{bottom:274.586667pt;}
.y88{bottom:288.026667pt;}
.y1d{bottom:288.666667pt;}
.y2a{bottom:291.226667pt;}
.y10{bottom:303.400000pt;}
.y69{bottom:304.666667pt;}
.y1c{bottom:310.133333pt;}
.y87{bottom:313.146667pt;}
.y29{bottom:313.813333pt;}
.y68{bottom:326.906667pt;}
.y1b{bottom:331.573333pt;}
.y28{bottom:336.373333pt;}
.y86{bottom:343.226667pt;}
.y67{bottom:352.026667pt;}
.y1a{bottom:353.173333pt;}
.y27{bottom:358.933333pt;}
.y85{bottom:365.466667pt;}
.y19{bottom:374.613333pt;}
.y66{bottom:377.146667pt;}
.y26{bottom:381.493333pt;}
.y84{bottom:390.586667pt;}
.ya6{bottom:394.106667pt;}
.y18{bottom:396.053333pt;}
.y65{bottom:399.106667pt;}
.y25{bottom:404.053333pt;}
.y83{bottom:415.746667pt;}
.y17{bottom:417.493333pt;}
.y64{bottom:418.466667pt;}
.ya5{bottom:425.506667pt;}
.y24{bottom:426.613333pt;}
.y82{bottom:437.666667pt;}
.y16{bottom:438.933333pt;}
.y63{bottom:440.706667pt;}
.ya4{bottom:445.666667pt;}
.y23{bottom:449.173333pt;}
.y81{bottom:460.066667pt;}
.y15{bottom:460.373333pt;}
.ya3{bottom:461.026667pt;}
.y62{bottom:465.826667pt;}
.y22{bottom:471.733333pt;}
.ya2{bottom:476.386667pt;}
.y14{bottom:481.973333pt;}
.y80{bottom:481.986667pt;}
.y61{bottom:487.746667pt;}
.ya1{bottom:491.586667pt;}
.y21{bottom:494.293333pt;}
.y13{bottom:503.413333pt;}
.y7f{bottom:504.386667pt;}
.ya0{bottom:506.946667pt;}
.y60{bottom:510.146667pt;}
.y20{bottom:516.893333pt;}
.y9f{bottom:522.306667pt;}
.y12{bottom:524.893333pt;}
.y7e{bottom:526.306667pt;}
.y5f{bottom:532.226667pt;}
.y9e{bottom:537.666667pt;}
.y1f{bottom:539.453333pt;}
.y11{bottom:546.333333pt;}
.y7d{bottom:548.706667pt;}
.y9d{bottom:553.346667pt;}
.y5e{bottom:554.466667pt;}
.y7c{bottom:573.826667pt;}
.y5d{bottom:576.546667pt;}
.y5c{bottom:598.786667pt;}
.y9c{bottom:603.746667pt;}
.y7b{bottom:606.813333pt;}
.y5b{bottom:623.933333pt;}
.y9b{bottom:626.173333pt;}
.y7a{bottom:631.933333pt;}
.y5a{bottom:649.053333pt;}
.y9a{bottom:651.293333pt;}
.y79{bottom:654.013333pt;}
.y59{bottom:670.973333pt;}
.y99{bottom:673.213333pt;}
.y78{bottom:676.253333pt;}
.y98{bottom:695.613333pt;}
.y58{bottom:701.373333pt;}
.y97{bottom:720.573333pt;}
.y57{bottom:726.493333pt;}
.y96{bottom:745.693333pt;}
.y77{bottom:748.413333pt;}
.y56{bottom:751.453333pt;}
.y76{bottom:770.813333pt;}
.y55{bottom:773.533333pt;}
.y75{bottom:795.773333pt;}
.y54{bottom:803.773333pt;}
.y74{bottom:817.893333pt;}
.y95{bottom:820.933333pt;}
.y53{bottom:825.893333pt;}
.y73{bottom:840.293333pt;}
.y94{bottom:846.053333pt;}
.y52{bottom:848.293333pt;}
.yf{bottom:863.333333pt;}
.y72{bottom:865.253333pt;}
.y93{bottom:871.013333pt;}
.y51{bottom:873.253333pt;}
.ye{bottom:881.893333pt;}
.y71{bottom:890.373333pt;}
.y92{bottom:896.133333pt;}
.y50{bottom:898.373333pt;}
.yd{bottom:905.093333pt;}
.y70{bottom:915.493333pt;}
.y91{bottom:921.253333pt;}
.y4f{bottom:923.493333pt;}
.yc{bottom:931.013333pt;}
.y4e{bottom:948.453333pt;}
.y90{bottom:951.173333pt;}
.yb{bottom:962.533333pt;}
.y4b{bottom:965.600000pt;}
.y4d{bottom:973.573333pt;}
.y7{bottom:990.853333pt;}
.y1{bottom:992.133333pt;}
.h19{height:5.022500pt;}
.h11{height:5.025000pt;}
.h8{height:5.092500pt;}
.h7{height:15.914062pt;}
.h1c{height:24.480000pt;}
.h17{height:26.381250pt;}
.h16{height:31.406250pt;}
.h10{height:36.431250pt;}
.hf{height:37.410000pt;}
.h13{height:47.085938pt;}
.h18{height:48.375000pt;}
.h5{height:49.621875pt;}
.h1b{height:50.062500pt;}
.h1a{height:50.882812pt;}
.ha{height:50.955000pt;}
.h9{height:52.134375pt;}
.hd{height:53.535000pt;}
.h12{height:53.634657pt;}
.hc{height:56.310313pt;}
.h1d{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.226667pt;}
.he{height:554.800000pt;}
.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;}
.x31{left:6.112000pt;}
.x1b{left:7.186667pt;}
.x6{left:9.746667pt;}
.x4{left:11.346667pt;}
.x16{left:12.632000pt;}
.x19{left:14.232000pt;}
.x2b{left:16.152000pt;}
.x18{left:19.352000pt;}
.x17{left:23.192000pt;}
.x2d{left:25.912000pt;}
.x11{left:38.872000pt;}
.x2c{left:42.392000pt;}
.x1c{left:44.186667pt;}
.x12{left:45.112000pt;}
.x5{left:47.346667pt;}
.x10{left:48.952000pt;}
.x1d{left:55.226667pt;}
.x25{left:58.906667pt;}
.x14{left:65.426667pt;}
.x1{left:69.600000pt;}
.x15{left:74.386667pt;}
.xc{left:76.832000pt;}
.x2{left:85.146667pt;}
.x2e{left:91.346667pt;}
.x2a{left:94.866667pt;}
.x28{left:107.546667pt;}
.x13{left:110.706667pt;}
.x8{left:124.832000pt;}
.x3{left:162.120000pt;}
.x30{left:185.946667pt;}
.x1a{left:194.760000pt;}
.x22{left:232.213333pt;}
.x7{left:276.533333pt;}
.x20{left:281.333333pt;}
.x21{left:292.693333pt;}
.x23{left:318.613333pt;}
.x24{left:329.973333pt;}
.x1e{left:339.893333pt;}
.x2f{left:352.693333pt;}
.xe{left:374.786667pt;}
.x26{left:390.013333pt;}
.x27{left:401.373333pt;}
.x1f{left:480.893333pt;}
.x29{left:492.413333pt;}
.xf{left:518.973333pt;}
.xd{left:610.213333pt;}
.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; }
  