
    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_5669c1c2a6bd846362379453.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_f2cacecdefa4b0ac7c89da67.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_725a9b87bc5f02d64700a14d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_412a4fd25ebdff6462eeb406.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_1083029fb4067f2d227606da.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_8f60245e8b0e3a224f3d87de.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_683251f606a724a08357f21b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_d7839446a0d5943bc3424b21.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_20ee2758df17c3f94738754e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.925293;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_a650e29d3bdb9e3195430257.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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_e108239a494969198f6a3e27.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914551;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-22.768065px;}
.v2{vertical-align:-20.491263px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.906475px;}
.ls18{letter-spacing:-6.198450px;}
.ls39{letter-spacing:-6.121290px;}
.ls3f{letter-spacing:-4.650450px;}
.ls44{letter-spacing:-2.620890px;}
.ls28{letter-spacing:-2.227500px;}
.ls11{letter-spacing:-2.207100px;}
.ls43{letter-spacing:-1.735800px;}
.ls37{letter-spacing:-1.633065px;}
.ls12{letter-spacing:-1.420200px;}
.ls23{letter-spacing:-1.334400px;}
.ls20{letter-spacing:-1.167600px;}
.ls45{letter-spacing:-1.010100px;}
.ls27{letter-spacing:-0.891900px;}
.ls40{letter-spacing:-0.851850px;}
.ls42{letter-spacing:-0.743250px;}
.ls29{letter-spacing:-0.595800px;}
.ls2a{letter-spacing:-0.297900px;}
.lsd{letter-spacing:-0.012600px;}
.lse{letter-spacing:-0.010800px;}
.lsc{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.005485px;}
.lsa{letter-spacing:0.010800px;}
.ls0{letter-spacing:0.012600px;}
.ls2d{letter-spacing:0.099300px;}
.ls1a{letter-spacing:0.129600px;}
.ls35{letter-spacing:0.162300px;}
.ls19{letter-spacing:0.175500px;}
.ls38{letter-spacing:0.288600px;}
.ls1c{letter-spacing:0.291300px;}
.ls1b{letter-spacing:0.309600px;}
.ls36{letter-spacing:0.382395px;}
.ls3c{letter-spacing:0.567900px;}
.ls46{letter-spacing:0.577200px;}
.ls3b{letter-spacing:0.661500px;}
.ls1e{letter-spacing:0.667200px;}
.ls3e{letter-spacing:0.743250px;}
.ls32{letter-spacing:0.750600px;}
.ls13{letter-spacing:0.764790px;}
.ls14{letter-spacing:0.850485px;}
.ls2f{letter-spacing:0.864900px;}
.ls1f{letter-spacing:1.000800px;}
.ls2c{letter-spacing:1.092300px;}
.ls47{letter-spacing:1.297350px;}
.ls3d{letter-spacing:1.325100px;}
.ls15{letter-spacing:1.337850px;}
.ls2b{letter-spacing:1.441500px;}
.ls25{letter-spacing:1.499850px;}
.ls22{letter-spacing:1.501200px;}
.ls21{letter-spacing:1.668000px;}
.ls33{letter-spacing:1.873950px;}
.ls24{letter-spacing:1.999800px;}
.ls1d{letter-spacing:2.229750px;}
.ls41{letter-spacing:2.744850px;}
.ls1{letter-spacing:4.489200px;}
.ls9{letter-spacing:8.989200px;}
.ls8{letter-spacing:8.989425px;}
.ls7{letter-spacing:8.989650px;}
.ls6{letter-spacing:13.489200px;}
.ls5{letter-spacing:13.489650px;}
.ls4{letter-spacing:17.989200px;}
.ls10{letter-spacing:17.991000px;}
.lsf{letter-spacing:22.491000px;}
.ls2{letter-spacing:26.989425px;}
.ls30{letter-spacing:30.495000px;}
.ls2e{letter-spacing:30.547500px;}
.ls31{letter-spacing:30.727500px;}
.ls34{letter-spacing:38.422500px;}
.ls3{letter-spacing:40.489425px;}
.ls3a{letter-spacing:43.297500px;}
.ls16{letter-spacing:84.645000px;}
.ls17{letter-spacing:84.697500px;}
.ls26{letter-spacing:111.667500px;}
.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;}
}
.ws0{word-spacing:-63.012600px;}
.wsf{word-spacing:-48.038400px;}
.wsd{word-spacing:-47.037600px;}
.ws10{word-spacing:-46.328700px;}
.wse{word-spacing:-45.202800px;}
.wsc{word-spacing:-42.662550px;}
.ws14{word-spacing:-41.515200px;}
.ws21{word-spacing:-41.371050px;}
.ws22{word-spacing:-41.324700px;}
.ws17{word-spacing:-40.938600px;}
.ws11{word-spacing:-40.432800px;}
.ws15{word-spacing:-40.115400px;}
.ws16{word-spacing:-40.073700px;}
.ws20{word-spacing:-39.105300px;}
.ws1b{word-spacing:-30.065700px;}
.ws1e{word-spacing:-26.880600px;}
.ws1d{word-spacing:-25.460850px;}
.ws1c{word-spacing:-25.415250px;}
.ws19{word-spacing:-20.440095px;}
.ws18{word-spacing:-20.346300px;}
.ws1a{word-spacing:-20.057700px;}
.ws1{word-spacing:-17.526600px;}
.ws4{word-spacing:-17.514000px;}
.ws2{word-spacing:-17.501400px;}
.ws7{word-spacing:-15.022800px;}
.ws9{word-spacing:-15.012000px;}
.ws6{word-spacing:-15.001200px;}
.ws13{word-spacing:-13.504800px;}
.ws12{word-spacing:-13.206900px;}
.ws3{word-spacing:-10.508400px;}
.ws5{word-spacing:-9.007200px;}
.wsb{word-spacing:-8.624505px;}
.wsa{word-spacing:-8.542470px;}
.ws8{word-spacing:0.000000px;}
.ws1f{word-spacing:1.578000px;}
._14{margin-left:-29.804903px;}
._19{margin-left:-16.161600px;}
._2{margin-left:-13.348509px;}
._15{margin-left:-12.028506px;}
._16{margin-left:-10.756043px;}
._1a{margin-left:-9.384476px;}
._18{margin-left:-8.090378px;}
._6{margin-left:-6.993000px;}
._f{margin-left:-5.667750px;}
._3{margin-left:-4.588822px;}
._b{margin-left:-3.338190px;}
._10{margin-left:-2.202804px;}
._4{margin-left:-1.008076px;}
._11{width:1.007550px;}
._12{width:2.243250px;}
._13{width:3.354517px;}
._7{width:4.499010px;}
._17{width:5.699770px;}
._a{width:8.948160px;}
._e{width:13.508100px;}
._d{width:18.524520px;}
._c{width:22.415940px;}
._9{width:26.796766px;}
._8{width:31.530285px;}
._1{width:35.889507px;}
._0{width:40.365257px;}
._5{width:58.181598px;}
.fc7{color:rgb(148,212,122);}
.fc6{color:rgb(112,48,160);}
.fc9{color:rgb(5,99,193);}
.fc8{color:rgb(140,21,22);}
.fc5{color:rgb(32,39,41);}
.fc4{color:transparent;}
.fc1{color:rgb(17,85,204);}
.fca{color:rgb(114,114,114);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:32.400000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:37.800000px;}
.fs3{font-size:39.000002px;}
.fs17{font-size:49.500000px;}
.fs18{font-size:49.650000px;}
.fs7{font-size:54.000000px;}
.fs14{font-size:58.500000px;}
.fs8{font-size:59.999985px;}
.fs2{font-size:63.000000px;}
.fs1{font-size:66.000015px;}
.fs19{font-size:72.150000px;}
.fs4{font-size:84.000015px;}
.fs1d{font-size:85.650000px;}
.fs1c{font-size:94.500000px;}
.fs1b{font-size:94.650000px;}
.fsa{font-size:108.150000px;}
.fs0{font-size:120.000015px;}
.fse{font-size:121.650000px;}
.fs12{font-size:144.150000px;}
.fs11{font-size:144.300000px;}
.fs13{font-size:148.650000px;}
.fsf{font-size:157.650000px;}
.fs10{font-size:157.800000px;}
.fs16{font-size:166.650000px;}
.fs15{font-size:166.800000px;}
.fsd{font-size:193.650000px;}
.fs1a{font-size:216.300000px;}
.fsc{font-size:270.300000px;}
.fsb{font-size:270.450000px;}
.y0{bottom:0.000000px;}
.y53{bottom:11.250000px;}
.ya5{bottom:21.600000px;}
.y29{bottom:59.765996px;}
.y81{bottom:78.937500px;}
.y70{bottom:87.262500px;}
.y6c{bottom:96.225000px;}
.y6b{bottom:110.850000px;}
.y26{bottom:110.860834px;}
.y66{bottom:121.762500px;}
.y25{bottom:131.507333px;}
.ya3{bottom:135.412500px;}
.y58{bottom:139.200000px;}
.y82{bottom:141.112500px;}
.y28{bottom:141.908199px;}
.y90{bottom:162.150000px;}
.yb1{bottom:163.245000px;}
.y27{bottom:163.441770px;}
.y52{bottom:173.283626px;}
.ya2{bottom:173.745000px;}
.y57{bottom:187.605000px;}
.y51{bottom:191.135857px;}
.y65{bottom:200.475000px;}
.yb0{bottom:201.525000px;}
.y50{bottom:208.988108px;}
.y9a{bottom:214.575000px;}
.y24{bottom:217.153612px;}
.y4f{bottom:227.993400px;}
.y7e{bottom:231.480000px;}
.y79{bottom:235.380000px;}
.y23{bottom:237.981188px;}
.yaf{bottom:240.975000px;}
.y89{bottom:258.525000px;}
.y22{bottom:258.808875px;}
.y95{bottom:262.650000px;}
.y4e{bottom:265.547805px;}
.y69{bottom:272.325000px;}
.ya1{bottom:276.225000px;}
.yae{bottom:279.255000px;}
.y21{bottom:279.636450px;}
.y78{bottom:283.845000px;}
.y4d{bottom:286.375504px;}
.y64{bottom:287.220000px;}
.y94{bottom:290.820000px;}
.y8f{bottom:293.025000px;}
.y20{bottom:300.464025px;}
.y4c{bottom:307.203022px;}
.y5e{bottom:312.600000px;}
.y5a{bottom:314.550000px;}
.yad{bottom:318.720000px;}
.y93{bottom:320.100000px;}
.y1f{bottom:321.291656px;}
.y4b{bottom:328.030530px;}
.y77{bottom:333.420000px;}
.y1e{bottom:342.119265px;}
.y4a{bottom:348.858180px;}
.y92{bottom:349.380000px;}
.y7d{bottom:352.020000px;}
.yac{bottom:357.000000px;}
.y8e{bottom:357.225000px;}
.y59{bottom:360.720000px;}
.y88{bottom:361.050000px;}
.y1d{bottom:362.946874px;}
.ya0{bottom:366.375000px;}
.y49{bottom:369.685972px;}
.y68{bottom:372.600000px;}
.y63{bottom:373.950000px;}
.y91{bottom:377.550000px;}
.y1c{bottom:383.774482px;}
.y76{bottom:388.620000px;}
.y48{bottom:390.513480px;}
.yab{bottom:396.450000px;}
.y87{bottom:399.345000px;}
.y1b{bottom:404.602080px;}
.y9f{bottom:404.655000px;}
.y5d{bottom:410.595000px;}
.y47{bottom:411.340980px;}
.ya4{bottom:417.675000px;}
.y8d{bottom:421.470000px;}
.y1a{bottom:433.447744px;}
.yaa{bottom:434.745000px;}
.y75{bottom:438.195000px;}
.y46{bottom:440.186644px;}
.y62{bottom:460.695000px;}
.y7c{bottom:471.450000px;}
.y8c{bottom:473.280000px;}
.y67{bottom:474.000000px;}
.ya9{bottom:474.150000px;}
.y56{bottom:480.000000px;}
.y19{bottom:480.483187px;}
.y74{bottom:487.725000px;}
.y99{bottom:489.780000px;}
.y45{bottom:489.938812px;}
.y18{bottom:498.594113px;}
.y86{bottom:501.870000px;}
.y9e{bottom:507.195000px;}
.y5c{bottom:509.745000px;}
.y44{bottom:510.766275px;}
.ya8{bottom:513.600000px;}
.y17{bottom:516.705150px;}
.y98{bottom:519.075000px;}
.y43{bottom:531.593963px;}
.y16{bottom:534.816075px;}
.y8b{bottom:537.495000px;}
.y6f{bottom:540.150000px;}
.y73{bottom:542.970000px;}
.y9d{bottom:545.475000px;}
.y61{bottom:547.470000px;}
.y97{bottom:548.370000px;}
.ya7{bottom:551.880000px;}
.y42{bottom:552.421537px;}
.y15{bottom:552.927034px;}
.y55{bottom:553.245000px;}
.y14{bottom:571.038004px;}
.y41{bottom:573.249225px;}
.y96{bottom:576.525000px;}
.y6e{bottom:582.945000px;}
.y9c{bottom:584.925000px;}
.y13{bottom:589.148963px;}
.y8a{bottom:589.320000px;}
.ya6{bottom:591.345000px;}
.y72{bottom:591.375000px;}
.y7b{bottom:591.975000px;}
.y40{bottom:594.076688px;}
.y85{bottom:603.255000px;}
.y12{bottom:607.259921px;}
.y5b{bottom:607.755000px;}
.y3f{bottom:614.904375px;}
.y11{bottom:625.370880px;}
.y54{bottom:626.475000px;}
.y6d{bottom:626.880000px;}
.y60{bottom:633.075000px;}
.y71{bottom:635.325000px;}
.y3e{bottom:635.731950px;}
.y83{bottom:639.495000px;}
.y84{bottom:642.675000px;}
.y7f{bottom:647.175000px;}
.y10{bottom:654.216544px;}
.y3d{bottom:656.559638px;}
.y3c{bottom:677.387156px;}
.y3b{bottom:698.214855px;}
.yf{bottom:703.968525px;}
.y3a{bottom:719.042374px;}
.ye{bottom:724.796100px;}
.y39{bottom:739.870072px;}
.yd{bottom:745.623675px;}
.y7a{bottom:745.905000px;}
.y9b{bottom:746.880000px;}
.y6a{bottom:746.970000px;}
.y80{bottom:747.345000px;}
.y5f{bottom:747.975000px;}
.y38{bottom:760.697580px;}
.yc{bottom:766.451306px;}
.y37{bottom:781.525230px;}
.yb{bottom:787.278915px;}
.y36{bottom:802.352813px;}
.ya{bottom:808.106524px;}
.y35{bottom:823.180556px;}
.y9{bottom:828.934132px;}
.y34{bottom:844.008075px;}
.y8{bottom:849.761730px;}
.y33{bottom:864.835774px;}
.y7{bottom:878.607540px;}
.y32{bottom:885.663281px;}
.y6{bottom:902.053165px;}
.y31{bottom:906.490980px;}
.y5{bottom:917.541195px;}
.y30{bottom:927.318480px;}
.y4{bottom:939.360495px;}
.y2f{bottom:948.146156px;}
.y3{bottom:961.179945px;}
.y2e{bottom:968.973675px;}
.y2d{bottom:989.801374px;}
.y2{bottom:997.188716px;}
.y2c{bottom:1010.628881px;}
.y2b{bottom:1031.456580px;}
.y1{bottom:1036.860345px;}
.y2a{bottom:1060.302240px;}
.h8{height:23.619727px;}
.ha{height:26.244141px;}
.h3{height:28.431153px;}
.h1e{height:36.037354px;}
.h1f{height:36.146558px;}
.hb{height:39.366211px;}
.h1b{height:42.646729px;}
.h9{height:43.740223px;}
.hd{height:45.865723px;}
.h5{height:45.927246px;}
.h2{height:48.114269px;}
.h6{height:51.462823px;}
.h7{height:51.463048px;}
.h24{height:52.738550px;}
.h4{height:61.154308px;}
.h2a{height:62.355542px;}
.h28{height:68.798584px;}
.h27{height:68.907788px;}
.hf{height:78.841772px;}
.h26{height:79.053003px;}
.h1{height:87.480480px;}
.h13{height:88.683325px;}
.h23{height:88.920923px;}
.h21{height:104.945142px;}
.h16{height:105.054346px;}
.h17{height:105.085913px;}
.h20{height:105.195264px;}
.h1a{height:105.367456px;}
.h19{height:105.477100px;}
.hc{height:108.000000px;}
.h18{height:108.366431px;}
.h22{height:108.656763px;}
.h29{height:112.956445px;}
.h14{height:114.927466px;}
.h15{height:115.036816px;}
.h1d{height:121.325757px;}
.h1c{height:121.434961px;}
.h12{height:141.171606px;}
.h25{height:157.472314px;}
.h11{height:197.049756px;}
.h10{height:197.159106px;}
.he{height:810.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.w2{width:1439.999979px;}
.w1{width:1440.000000px;}
.x0{left:0.000000px;}
.x15{left:21.599979px;}
.x7{left:32.849979px;}
.x19{left:52.237479px;}
.xf{left:55.274979px;}
.x8{left:66.637479px;}
.x1a{left:72.524979px;}
.x5{left:82.874979px;}
.x9{left:86.887479px;}
.x10{left:103.124979px;}
.xb{left:104.362479px;}
.x1{left:108.000000px;}
.x11{left:123.412479px;}
.x6{left:132.862479px;}
.x13{left:143.924979px;}
.x12{left:163.904979px;}
.x2{left:196.875000px;}
.x4{left:280.724979px;}
.x1e{left:639.044979px;}
.x1c{left:647.744979px;}
.x1d{left:656.324979px;}
.x1b{left:692.699979px;}
.xc{left:797.204979px;}
.xd{left:837.344979px;}
.xa{left:848.849979px;}
.xe{left:877.874979px;}
.x16{left:1091.099979px;}
.x17{left:1102.574979px;}
.x14{left:1393.769979px;}
.x18{left:1395.749979px;}
.x3{left:1408.754979px;}
@media print{
.v3{vertical-align:-20.238280pt;}
.v2{vertical-align:-18.214456pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.250200pt;}
.ls18{letter-spacing:-5.509733pt;}
.ls39{letter-spacing:-5.441147pt;}
.ls3f{letter-spacing:-4.133733pt;}
.ls44{letter-spacing:-2.329680pt;}
.ls28{letter-spacing:-1.980000pt;}
.ls11{letter-spacing:-1.961867pt;}
.ls43{letter-spacing:-1.542933pt;}
.ls37{letter-spacing:-1.451613pt;}
.ls12{letter-spacing:-1.262400pt;}
.ls23{letter-spacing:-1.186133pt;}
.ls20{letter-spacing:-1.037867pt;}
.ls45{letter-spacing:-0.897867pt;}
.ls27{letter-spacing:-0.792800pt;}
.ls40{letter-spacing:-0.757200pt;}
.ls42{letter-spacing:-0.660667pt;}
.ls29{letter-spacing:-0.529600pt;}
.ls2a{letter-spacing:-0.264800pt;}
.lsd{letter-spacing:-0.011200pt;}
.lse{letter-spacing:-0.009600pt;}
.lsc{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.004876pt;}
.lsa{letter-spacing:0.009600pt;}
.ls0{letter-spacing:0.011200pt;}
.ls2d{letter-spacing:0.088267pt;}
.ls1a{letter-spacing:0.115200pt;}
.ls35{letter-spacing:0.144267pt;}
.ls19{letter-spacing:0.156000pt;}
.ls38{letter-spacing:0.256533pt;}
.ls1c{letter-spacing:0.258933pt;}
.ls1b{letter-spacing:0.275200pt;}
.ls36{letter-spacing:0.339907pt;}
.ls3c{letter-spacing:0.504800pt;}
.ls46{letter-spacing:0.513067pt;}
.ls3b{letter-spacing:0.588000pt;}
.ls1e{letter-spacing:0.593067pt;}
.ls3e{letter-spacing:0.660667pt;}
.ls32{letter-spacing:0.667200pt;}
.ls13{letter-spacing:0.679813pt;}
.ls14{letter-spacing:0.755987pt;}
.ls2f{letter-spacing:0.768800pt;}
.ls1f{letter-spacing:0.889600pt;}
.ls2c{letter-spacing:0.970933pt;}
.ls47{letter-spacing:1.153200pt;}
.ls3d{letter-spacing:1.177867pt;}
.ls15{letter-spacing:1.189200pt;}
.ls2b{letter-spacing:1.281333pt;}
.ls25{letter-spacing:1.333200pt;}
.ls22{letter-spacing:1.334400pt;}
.ls21{letter-spacing:1.482667pt;}
.ls33{letter-spacing:1.665733pt;}
.ls24{letter-spacing:1.777600pt;}
.ls1d{letter-spacing:1.982000pt;}
.ls41{letter-spacing:2.439867pt;}
.ls1{letter-spacing:3.990400pt;}
.ls9{letter-spacing:7.990400pt;}
.ls8{letter-spacing:7.990600pt;}
.ls7{letter-spacing:7.990800pt;}
.ls6{letter-spacing:11.990400pt;}
.ls5{letter-spacing:11.990800pt;}
.ls4{letter-spacing:15.990400pt;}
.ls10{letter-spacing:15.992000pt;}
.lsf{letter-spacing:19.992000pt;}
.ls2{letter-spacing:23.990600pt;}
.ls30{letter-spacing:27.106667pt;}
.ls2e{letter-spacing:27.153333pt;}
.ls31{letter-spacing:27.313333pt;}
.ls34{letter-spacing:34.153333pt;}
.ls3{letter-spacing:35.990600pt;}
.ls3a{letter-spacing:38.486667pt;}
.ls16{letter-spacing:75.240000pt;}
.ls17{letter-spacing:75.286667pt;}
.ls26{letter-spacing:99.260000pt;}
.ws0{word-spacing:-56.011200pt;}
.wsf{word-spacing:-42.700800pt;}
.wsd{word-spacing:-41.811200pt;}
.ws10{word-spacing:-41.181067pt;}
.wse{word-spacing:-40.180267pt;}
.wsc{word-spacing:-37.922267pt;}
.ws14{word-spacing:-36.902400pt;}
.ws21{word-spacing:-36.774267pt;}
.ws22{word-spacing:-36.733067pt;}
.ws17{word-spacing:-36.389867pt;}
.ws11{word-spacing:-35.940267pt;}
.ws15{word-spacing:-35.658133pt;}
.ws16{word-spacing:-35.621067pt;}
.ws20{word-spacing:-34.760267pt;}
.ws1b{word-spacing:-26.725067pt;}
.ws1e{word-spacing:-23.893867pt;}
.ws1d{word-spacing:-22.631867pt;}
.ws1c{word-spacing:-22.591333pt;}
.ws19{word-spacing:-18.168973pt;}
.ws18{word-spacing:-18.085600pt;}
.ws1a{word-spacing:-17.829067pt;}
.ws1{word-spacing:-15.579200pt;}
.ws4{word-spacing:-15.568000pt;}
.ws2{word-spacing:-15.556800pt;}
.ws7{word-spacing:-13.353600pt;}
.ws9{word-spacing:-13.344000pt;}
.ws6{word-spacing:-13.334400pt;}
.ws13{word-spacing:-12.004267pt;}
.ws12{word-spacing:-11.739467pt;}
.ws3{word-spacing:-9.340800pt;}
.ws5{word-spacing:-8.006400pt;}
.wsb{word-spacing:-7.666227pt;}
.wsa{word-spacing:-7.593307pt;}
.ws8{word-spacing:0.000000pt;}
.ws1f{word-spacing:1.402667pt;}
._14{margin-left:-26.493247pt;}
._19{margin-left:-14.365867pt;}
._2{margin-left:-11.865341pt;}
._15{margin-left:-10.692005pt;}
._16{margin-left:-9.560927pt;}
._1a{margin-left:-8.341756pt;}
._18{margin-left:-7.191447pt;}
._6{margin-left:-6.216000pt;}
._f{margin-left:-5.038000pt;}
._3{margin-left:-4.078953pt;}
._b{margin-left:-2.967280pt;}
._10{margin-left:-1.958048pt;}
._4{margin-left:-0.896068pt;}
._11{width:0.895600pt;}
._12{width:1.994000pt;}
._13{width:2.981793pt;}
._7{width:3.999120pt;}
._17{width:5.066462pt;}
._a{width:7.953920pt;}
._e{width:12.007200pt;}
._d{width:16.466240pt;}
._c{width:19.925280pt;}
._9{width:23.819348pt;}
._8{width:28.026920pt;}
._1{width:31.901784pt;}
._0{width:35.880229pt;}
._5{width:51.716976pt;}
.fs6{font-size:28.800000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:33.600000pt;}
.fs3{font-size:34.666668pt;}
.fs17{font-size:44.000000pt;}
.fs18{font-size:44.133333pt;}
.fs7{font-size:48.000000pt;}
.fs14{font-size:52.000000pt;}
.fs8{font-size:53.333320pt;}
.fs2{font-size:56.000000pt;}
.fs1{font-size:58.666680pt;}
.fs19{font-size:64.133333pt;}
.fs4{font-size:74.666680pt;}
.fs1d{font-size:76.133333pt;}
.fs1c{font-size:84.000000pt;}
.fs1b{font-size:84.133333pt;}
.fsa{font-size:96.133333pt;}
.fs0{font-size:106.666680pt;}
.fse{font-size:108.133333pt;}
.fs12{font-size:128.133333pt;}
.fs11{font-size:128.266667pt;}
.fs13{font-size:132.133333pt;}
.fsf{font-size:140.133333pt;}
.fs10{font-size:140.266667pt;}
.fs16{font-size:148.133333pt;}
.fs15{font-size:148.266667pt;}
.fsd{font-size:172.133333pt;}
.fs1a{font-size:192.266667pt;}
.fsc{font-size:240.266667pt;}
.fsb{font-size:240.400000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:10.000000pt;}
.ya5{bottom:19.200000pt;}
.y29{bottom:53.125330pt;}
.y81{bottom:70.166667pt;}
.y70{bottom:77.566667pt;}
.y6c{bottom:85.533333pt;}
.y6b{bottom:98.533333pt;}
.y26{bottom:98.542963pt;}
.y66{bottom:108.233333pt;}
.y25{bottom:116.895407pt;}
.ya3{bottom:120.366667pt;}
.y58{bottom:123.733333pt;}
.y82{bottom:125.433333pt;}
.y28{bottom:126.140621pt;}
.y90{bottom:144.133333pt;}
.yb1{bottom:145.106667pt;}
.y27{bottom:145.281573pt;}
.y52{bottom:154.029890pt;}
.ya2{bottom:154.440000pt;}
.y57{bottom:166.760000pt;}
.y51{bottom:169.898540pt;}
.y65{bottom:178.200000pt;}
.yb0{bottom:179.133333pt;}
.y50{bottom:185.767207pt;}
.y9a{bottom:190.733333pt;}
.y24{bottom:193.025433pt;}
.y4f{bottom:202.660800pt;}
.y7e{bottom:205.760000pt;}
.y79{bottom:209.226667pt;}
.y23{bottom:211.538833pt;}
.yaf{bottom:214.200000pt;}
.y89{bottom:229.800000pt;}
.y22{bottom:230.052333pt;}
.y95{bottom:233.466667pt;}
.y4e{bottom:236.042493pt;}
.y69{bottom:242.066667pt;}
.ya1{bottom:245.533333pt;}
.yae{bottom:248.226667pt;}
.y21{bottom:248.565733pt;}
.y78{bottom:252.306667pt;}
.y4d{bottom:254.556003pt;}
.y64{bottom:255.306667pt;}
.y94{bottom:258.506667pt;}
.y8f{bottom:260.466667pt;}
.y20{bottom:267.079133pt;}
.y4c{bottom:273.069353pt;}
.y5e{bottom:277.866667pt;}
.y5a{bottom:279.600000pt;}
.yad{bottom:283.306667pt;}
.y93{bottom:284.533333pt;}
.y1f{bottom:285.592583pt;}
.y4b{bottom:291.582693pt;}
.y77{bottom:296.373333pt;}
.y1e{bottom:304.106013pt;}
.y4a{bottom:310.096160pt;}
.y92{bottom:310.560000pt;}
.y7d{bottom:312.906667pt;}
.yac{bottom:317.333333pt;}
.y8e{bottom:317.533333pt;}
.y59{bottom:320.640000pt;}
.y88{bottom:320.933333pt;}
.y1d{bottom:322.619443pt;}
.ya0{bottom:325.666667pt;}
.y49{bottom:328.609753pt;}
.y68{bottom:331.200000pt;}
.y63{bottom:332.400000pt;}
.y91{bottom:335.600000pt;}
.y1c{bottom:341.132873pt;}
.y76{bottom:345.440000pt;}
.y48{bottom:347.123093pt;}
.yab{bottom:352.400000pt;}
.y87{bottom:354.973333pt;}
.y1b{bottom:359.646293pt;}
.y9f{bottom:359.693333pt;}
.y5d{bottom:364.973333pt;}
.y47{bottom:365.636427pt;}
.ya4{bottom:371.266667pt;}
.y8d{bottom:374.640000pt;}
.y1a{bottom:385.286883pt;}
.yaa{bottom:386.440000pt;}
.y75{bottom:389.506667pt;}
.y46{bottom:391.277017pt;}
.y62{bottom:409.506667pt;}
.y7c{bottom:419.066667pt;}
.y8c{bottom:420.693333pt;}
.y67{bottom:421.333333pt;}
.ya9{bottom:421.466667pt;}
.y56{bottom:426.666667pt;}
.y19{bottom:427.096167pt;}
.y74{bottom:433.533333pt;}
.y99{bottom:435.360000pt;}
.y45{bottom:435.501167pt;}
.y18{bottom:443.194767pt;}
.y86{bottom:446.106667pt;}
.y9e{bottom:450.840000pt;}
.y5c{bottom:453.106667pt;}
.y44{bottom:454.014467pt;}
.ya8{bottom:456.533333pt;}
.y17{bottom:459.293467pt;}
.y98{bottom:461.400000pt;}
.y43{bottom:472.527967pt;}
.y16{bottom:475.392067pt;}
.y8b{bottom:477.773333pt;}
.y6f{bottom:480.133333pt;}
.y73{bottom:482.640000pt;}
.y9d{bottom:484.866667pt;}
.y61{bottom:486.640000pt;}
.y97{bottom:487.440000pt;}
.ya7{bottom:490.560000pt;}
.y42{bottom:491.041367pt;}
.y15{bottom:491.490697pt;}
.y55{bottom:491.773333pt;}
.y14{bottom:507.589337pt;}
.y41{bottom:509.554867pt;}
.y96{bottom:512.466667pt;}
.y6e{bottom:518.173333pt;}
.y9c{bottom:519.933333pt;}
.y13{bottom:523.687967pt;}
.y8a{bottom:523.840000pt;}
.ya6{bottom:525.640000pt;}
.y72{bottom:525.666667pt;}
.y7b{bottom:526.200000pt;}
.y40{bottom:528.068167pt;}
.y85{bottom:536.226667pt;}
.y12{bottom:539.786597pt;}
.y5b{bottom:540.226667pt;}
.y3f{bottom:546.581667pt;}
.y11{bottom:555.885227pt;}
.y54{bottom:556.866667pt;}
.y6d{bottom:557.226667pt;}
.y60{bottom:562.733333pt;}
.y71{bottom:564.733333pt;}
.y3e{bottom:565.095067pt;}
.y83{bottom:568.440000pt;}
.y84{bottom:571.266667pt;}
.y7f{bottom:575.266667pt;}
.y10{bottom:581.525817pt;}
.y3d{bottom:583.608567pt;}
.y3c{bottom:602.121917pt;}
.y3b{bottom:620.635427pt;}
.yf{bottom:625.749800pt;}
.y3a{bottom:639.148777pt;}
.ye{bottom:644.263200pt;}
.y39{bottom:657.662287pt;}
.yd{bottom:662.776600pt;}
.y7a{bottom:663.026667pt;}
.y9b{bottom:663.893333pt;}
.y6a{bottom:663.973333pt;}
.y80{bottom:664.306667pt;}
.y5f{bottom:664.866667pt;}
.y38{bottom:676.175627pt;}
.yc{bottom:681.290050pt;}
.y37{bottom:694.689093pt;}
.yb{bottom:699.803480pt;}
.y36{bottom:713.202500pt;}
.ya{bottom:718.316910pt;}
.y35{bottom:731.716050pt;}
.y9{bottom:736.830340pt;}
.y34{bottom:750.229400pt;}
.y8{bottom:755.343760pt;}
.y33{bottom:768.742910pt;}
.y7{bottom:780.984480pt;}
.y32{bottom:787.256250pt;}
.y6{bottom:801.825036pt;}
.y31{bottom:805.769760pt;}
.y5{bottom:815.592173pt;}
.y30{bottom:824.283093pt;}
.y4{bottom:834.987107pt;}
.y2f{bottom:842.796583pt;}
.y3{bottom:854.382173pt;}
.y2e{bottom:861.309933pt;}
.y2d{bottom:879.823443pt;}
.y2{bottom:886.389970pt;}
.y2c{bottom:898.336783pt;}
.y2b{bottom:916.850293pt;}
.y1{bottom:921.653640pt;}
.y2a{bottom:942.490880pt;}
.h8{height:20.995313pt;}
.ha{height:23.328125pt;}
.h3{height:25.272136pt;}
.h1e{height:32.033203pt;}
.h1f{height:32.130273pt;}
.hb{height:34.992188pt;}
.h1b{height:37.908203pt;}
.h9{height:38.880199pt;}
.hd{height:40.769531pt;}
.h5{height:40.824219pt;}
.h2{height:42.768239pt;}
.h6{height:45.744731pt;}
.h7{height:45.744931pt;}
.h24{height:46.878711pt;}
.h4{height:54.359385pt;}
.h2a{height:55.427148pt;}
.h28{height:61.154297pt;}
.h27{height:61.251367pt;}
.hf{height:70.081576pt;}
.h26{height:70.269336pt;}
.h1{height:77.760426pt;}
.h13{height:78.829622pt;}
.h23{height:79.040820pt;}
.h21{height:93.284570pt;}
.h16{height:93.381641pt;}
.h17{height:93.409701pt;}
.h20{height:93.506901pt;}
.h1a{height:93.659961pt;}
.h19{height:93.757422pt;}
.hc{height:96.000000pt;}
.h18{height:96.325716pt;}
.h22{height:96.583789pt;}
.h29{height:100.405729pt;}
.h14{height:102.157747pt;}
.h15{height:102.254948pt;}
.h1d{height:107.845117pt;}
.h1c{height:107.942188pt;}
.h12{height:125.485872pt;}
.h25{height:139.975391pt;}
.h11{height:175.155339pt;}
.h10{height:175.252539pt;}
.he{height:720.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.w2{width:1279.999981pt;}
.w1{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x15{left:19.199981pt;}
.x7{left:29.199981pt;}
.x19{left:46.433314pt;}
.xf{left:49.133314pt;}
.x8{left:59.233314pt;}
.x1a{left:64.466648pt;}
.x5{left:73.666648pt;}
.x9{left:77.233314pt;}
.x10{left:91.666648pt;}
.xb{left:92.766648pt;}
.x1{left:96.000000pt;}
.x11{left:109.699981pt;}
.x6{left:118.099981pt;}
.x13{left:127.933314pt;}
.x12{left:145.693314pt;}
.x2{left:175.000000pt;}
.x4{left:249.533314pt;}
.x1e{left:568.039981pt;}
.x1c{left:575.773314pt;}
.x1d{left:583.399981pt;}
.x1b{left:615.733314pt;}
.xc{left:708.626648pt;}
.xd{left:744.306648pt;}
.xa{left:754.533314pt;}
.xe{left:780.333314pt;}
.x16{left:969.866648pt;}
.x17{left:980.066648pt;}
.x14{left:1238.906648pt;}
.x18{left:1240.666648pt;}
.x3{left:1252.226648pt;}
}




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