
    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_b3ea8fa57d993bd5a1e13523.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_0d665dc5ab34b9806c774a6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_00593e47349aeec25fb38df9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9c96dc81d12810870eb6f945.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.887000;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_8c7c3dc148098cff4e14b05a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_a9ffe9bcc0f0480b00304047.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_c99a764c57105ad01e9024eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_6a7f663dbb0b03ff730bdd63.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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_695cca9e9d0ad604f45315fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_339e84928a57498c515dd41c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.825000;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_b4000add5a5c4849a17d37d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.642000;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_0cfc71451c02b741edc3662f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.640000;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_72438f73d8bfaaedd753845c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.720000;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_d53aae7a777d24bfbc4b3872.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.478000;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_c237d1576374fdd6574be386.woff2')format("woff");}.fff{font-family:fff;line-height:0.921000;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);}
.v8{vertical-align:-42.258000px;}
.v2{vertical-align:-23.748000px;}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:10.662000px;}
.v9{vertical-align:13.614000px;}
.va{vertical-align:19.998000px;}
.v5{vertical-align:23.754000px;}
.v4{vertical-align:27.024000px;}
.v1{vertical-align:31.236000px;}
.v6{vertical-align:44.898000px;}
.v7{vertical-align:89.184000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.010533px;}
.lsf{letter-spacing:0.014012px;}
.ls6{letter-spacing:0.016889px;}
.ls18{letter-spacing:0.018598px;}
.lsa{letter-spacing:0.022592px;}
.lsc{letter-spacing:1.721542px;}
.ls11{letter-spacing:1.798212px;}
.lsd{letter-spacing:2.008465px;}
.ls14{letter-spacing:2.069348px;}
.ls13{letter-spacing:2.092314px;}
.ls10{letter-spacing:2.356366px;}
.ls4{letter-spacing:2.880002px;}
.ls3{letter-spacing:2.984915px;}
.ls0{letter-spacing:2.986053px;}
.ls17{letter-spacing:10.865464px;}
.ls15{letter-spacing:14.530921px;}
.ls8{letter-spacing:18.130924px;}
.ls7{letter-spacing:18.196379px;}
.ls1c{letter-spacing:19.606397px;}
.ls1b{letter-spacing:19.905275px;}
.ls1a{letter-spacing:19.965050px;}
.ls2{letter-spacing:32.727300px;}
.lsb{letter-spacing:67.367400px;}
.ls16{letter-spacing:141.840118px;}
.ls19{letter-spacing:567.295018px;}
.lse{letter-spacing:896.204383px;}
.ls9{letter-spacing:984.437184px;}
.ls5{letter-spacing:1075.288169px;}
.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;}
}
.ws3a{word-spacing:-55.767319px;}
.ws1f{word-spacing:-42.637126px;}
.ws4d{word-spacing:-18.183288px;}
.ws24{word-spacing:-3.652367px;}
.ws18{word-spacing:-2.474184px;}
.ws37{word-spacing:-2.081456px;}
.ws45{word-spacing:-1.819638px;}
.ws43{word-spacing:-1.492365px;}
.ws2b{word-spacing:-1.361456px;}
.ws2c{word-spacing:-1.296001px;}
.ws1c{word-spacing:-1.099637px;}
.ws41{word-spacing:-1.034183px;}
.ws3b{word-spacing:-0.641455px;}
.ws13{word-spacing:-0.071731px;}
.ws29{word-spacing:-0.065455px;}
.ws57{word-spacing:-0.059776px;}
.ws25{word-spacing:-0.047821px;}
.ws12{word-spacing:0.000000px;}
.ws4a{word-spacing:0.013091px;}
.ws44{word-spacing:0.078546px;}
.ws34{word-spacing:0.994910px;}
.ws3c{word-spacing:1.191274px;}
.ws1d{word-spacing:1.584001px;}
.ws30{word-spacing:1.976729px;}
.ws47{word-spacing:2.762184px;}
.ws54{word-spacing:2.940960px;}
.ws1e{word-spacing:3.089457px;}
.ws42{word-spacing:3.285821px;}
.ws4e{word-spacing:3.299613px;}
.ws2d{word-spacing:3.351276px;}
.ws53{word-spacing:3.359389px;}
.ws5{word-spacing:3.613094px;}
.ws10{word-spacing:3.678549px;}
.ws28{word-spacing:3.772820px;}
.ws4c{word-spacing:3.874912px;}
.ws23{word-spacing:4.267640px;}
.ws3e{word-spacing:4.791277px;}
.ws11{word-spacing:5.053095px;}
.ws26{word-spacing:5.184004px;}
.ws21{word-spacing:5.838550px;}
.ws22{word-spacing:6.034914px;}
.wsd{word-spacing:6.100369px;}
.ws3d{word-spacing:6.165823px;}
.wsf{word-spacing:6.362187px;}
.ws8{word-spacing:6.885824px;}
.wse{word-spacing:7.147642px;}
.ws48{word-spacing:7.474915px;}
.ws46{word-spacing:7.605825px;}
.ws32{word-spacing:7.736734px;}
.ws20{word-spacing:7.802188px;}
.ws33{word-spacing:8.194916px;}
.ws36{word-spacing:8.325825px;}
.ws2a{word-spacing:8.416426px;}
.ws1b{word-spacing:8.522189px;}
.ws49{word-spacing:9.242190px;}
.ws9{word-spacing:9.373099px;}
.ws27{word-spacing:9.634917px;}
.ws35{word-spacing:10.224009px;}
.ws2f{word-spacing:10.354918px;}
.ws1a{word-spacing:10.682191px;}
.ws6{word-spacing:10.878555px;}
.wsa{word-spacing:11.205828px;}
.ws4b{word-spacing:11.271282px;}
.ws31{word-spacing:11.794919px;}
.wsc{word-spacing:12.776738px;}
.wsb{word-spacing:12.842193px;}
.ws19{word-spacing:13.234920px;}
.ws39{word-spacing:17.486471px;}
.ws56{word-spacing:19.486846px;}
.ws52{word-spacing:19.845499px;}
.ws50{word-spacing:19.905275px;}
.ws55{word-spacing:20.921460px;}
.ws38{word-spacing:21.119414px;}
.ws51{word-spacing:21.280114px;}
.ws4f{word-spacing:21.339889px;}
.ws14{word-spacing:25.003657px;}
.ws40{word-spacing:25.069112px;}
.ws3{word-spacing:26.253619px;}
.ws17{word-spacing:26.827469px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws15{word-spacing:48.711313px;}
.ws2{word-spacing:54.283749px;}
.ws1{word-spacing:54.432472px;}
.ws16{word-spacing:60.480050px;}
.ws7{word-spacing:63.942868px;}
.ws2e{word-spacing:75.207335px;}
.ws3f{word-spacing:80.625869px;}
._2f{margin-left:-5.629096px;}
._0{margin-left:-4.461678px;}
._26{margin-left:-3.274519px;}
._2{margin-left:-2.223667px;}
._8{margin-left:-1.050852px;}
._2a{width:1.116307px;}
._3{width:2.223667px;}
._2d{width:3.508263px;}
._1{width:4.610401px;}
._2c{width:6.828708px;}
._28{width:7.916428px;}
._27{width:18.196379px;}
._32{width:20.747319px;}
._35{width:22.009829px;}
._33{width:25.394596px;}
._29{width:27.358234px;}
._2e{width:29.127297px;}
._25{width:30.501844px;}
._4{width:31.954399px;}
._5{width:33.316391px;}
._9{width:36.258270px;}
._7{width:39.665488px;}
._34{width:41.691002px;}
._31{width:49.416434px;}
._30{width:54.389194px;}
._6{width:55.843539px;}
._24{width:58.909140px;}
._a{width:60.545505px;}
._e{width:66.894601px;}
._2b{width:75.272790px;}
._23{width:80.697600px;}
._c{width:1010.104363px;}
._1e{width:1157.302783px;}
._10{width:1234.862905px;}
._11{width:1294.953806px;}
._15{width:1309.484728px;}
._12{width:1358.835707px;}
._d{width:1381.615697px;}
._17{width:1475.475804px;}
._f{width:1531.964913px;}
._1d{width:1541.517706px;}
._1f{width:1551.603082px;}
._16{width:1560.825024px;}
._1b{width:1632.106873px;}
._14{width:1716.090492px;}
._1a{width:1820.554244px;}
._19{width:1829.914252px;}
._18{width:1902.832466px;}
._b{width:1937.781644px;}
._13{width:1972.014400px;}
._21{width:2028.567174px;}
._20{width:2073.994456px;}
._22{width:2134.278142px;}
._1c{width:2251.989534px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y37{bottom:93.813000px;}
.y5d{bottom:176.005500px;}
.y36{bottom:176.059500px;}
.y35{bottom:196.383000px;}
.y7d{bottom:204.318000px;}
.y5c{bottom:209.538000px;}
.y34{bottom:216.708000px;}
.y33{bottom:237.031500px;}
.y7c{bottom:239.107500px;}
.y5b{bottom:243.070500px;}
.y32{bottom:257.355000px;}
.y9c{bottom:273.661500px;}
.y7b{bottom:273.897000px;}
.y5a{bottom:276.243000px;}
.y31{bottom:277.678500px;}
.y9b{bottom:293.985000px;}
.y59{bottom:296.566500px;}
.y30{bottom:298.002000px;}
.y7a{bottom:302.209500px;}
.y9a{bottom:314.310000px;}
.y2f{bottom:318.325500px;}
.y58{bottom:325.174500px;}
.y99{bottom:334.633500px;}
.y79{bottom:337.962000px;}
.y2e{bottom:338.650500px;}
.y78{bottom:353.287500px;}
.y98{bottom:354.957000px;}
.y77{bottom:358.287000px;}
.y57{bottom:361.419000px;}
.y13{bottom:365.136000px;}
.y2d{bottom:375.178500px;}
.y97{bottom:375.280500px;}
.y12{bottom:385.459500px;}
.y76{bottom:386.599500px;}
.y51{bottom:398.050500px;}
.y55{bottom:403.548000px;}
.y11{bottom:405.783000px;}
.y56{bottom:409.275000px;}
.y96{bottom:411.808500px;}
.y54{bottom:413.367000px;}
.y50{bottom:420.346500px;}
.y2c{bottom:420.759000px;}
.y75{bottom:422.352000px;}
.y53{bottom:423.184500px;}
.y10{bottom:426.108000px;}
.y52{bottom:433.003500px;}
.y74{bottom:442.677000px;}
.yf{bottom:446.431500px;}
.y4f{bottom:453.396000px;}
.y95{bottom:457.389000px;}
.ye{bottom:466.755000px;}
.y2b{bottom:467.286000px;}
.y73{bottom:470.989500px;}
.y4e{bottom:473.719500px;}
.y94{bottom:477.714000px;}
.yd{bottom:487.078500px;}
.y93{bottom:498.037500px;}
.y4d{bottom:502.327500px;}
.y2a{bottom:503.973000px;}
.y72{bottom:506.898000px;}
.yc{bottom:507.402000px;}
.y92{bottom:518.361000px;}
.yb{bottom:527.725500px;}
.y4c{bottom:538.572000px;}
.y91{bottom:538.684500px;}
.y29{bottom:540.661500px;}
.ya{bottom:548.050500px;}
.y71{bottom:551.392500px;}
.y90{bottom:559.008000px;}
.y28{bottom:560.985000px;}
.y4b{bottom:568.249500px;}
.y9{bottom:568.374000px;}
.y70{bottom:571.716000px;}
.y27{bottom:581.308500px;}
.y4a{bottom:588.573000px;}
.y6f{bottom:592.041000px;}
.y8f{bottom:595.537500px;}
.y26{bottom:601.632000px;}
.y8{bottom:608.124000px;}
.y49{bottom:608.896500px;}
.y6e{bottom:612.364500px;}
.y25{bottom:621.955500px;}
.y8e{bottom:641.118000px;}
.y7{bottom:644.847000px;}
.y48{bottom:644.937000px;}
.y6d{bottom:648.273000px;}
.y24{bottom:658.644000px;}
.y8d{bottom:661.441500px;}
.yb0{bottom:661.917000px;}
.y6{bottom:673.579500px;}
.y23{bottom:678.967500px;}
.y47{bottom:680.977500px;}
.yaf{bottom:687.322500px;}
.y8c{bottom:690.219000px;}
.y6c{bottom:692.767500px;}
.y22{bottom:699.291000px;}
.y46{bottom:709.585500px;}
.yae{bottom:712.726500px;}
.y6b{bottom:713.091000px;}
.y21{bottom:719.614500px;}
.y8b{bottom:726.748500px;}
.y6a{bottom:733.416000px;}
.yad{bottom:738.132000px;}
.y20{bottom:739.938000px;}
.y45{bottom:745.830000px;}
.y8a{bottom:747.072000px;}
.y69{bottom:753.739500px;}
.yac{bottom:756.064500px;}
.y1f{bottom:760.263000px;}
.y44{bottom:766.153500px;}
.y68{bottom:774.063000px;}
.y89{bottom:775.849500px;}
.yab{bottom:781.470000px;}
.y5{bottom:783.754500px;}
.y43{bottom:786.478500px;}
.y1e{bottom:796.950000px;}
.yaa{bottom:799.402500px;}
.y42{bottom:806.802000px;}
.y67{bottom:809.971500px;}
.y88{bottom:812.377500px;}
.y4{bottom:821.035500px;}
.ya9{bottom:824.806500px;}
.y87{bottom:832.702500px;}
.y1d{bottom:833.637000px;}
.y41{bottom:843.103500px;}
.ya8{bottom:850.212000px;}
.y66{bottom:854.466000px;}
.y86{bottom:861.480000px;}
.y3{bottom:865.867500px;}
.ya7{bottom:868.144500px;}
.y1c{bottom:870.325500px;}
.y65{bottom:887.581500px;}
.y40{bottom:888.286500px;}
.y1b{bottom:890.649000px;}
.ya6{bottom:893.548500px;}
.y85{bottom:898.008000px;}
.y3f{bottom:908.610000px;}
.y2{bottom:910.699500px;}
.y1a{bottom:910.972500px;}
.ya5{bottom:911.482500px;}
.y84{bottom:918.333000px;}
.y64{bottom:920.697000px;}
.y3e{bottom:928.935000px;}
.y19{bottom:931.296000px;}
.ya4{bottom:936.886500px;}
.y83{bottom:947.110500px;}
.y18{bottom:951.619500px;}
.y63{bottom:953.812500px;}
.ya3{bottom:954.819000px;}
.y3d{bottom:962.106000px;}
.y17{bottom:971.944500px;}
.ya2{bottom:980.224500px;}
.y82{bottom:983.638500px;}
.y62{bottom:985.942500px;}
.y3c{bottom:995.638500px;}
.ya1{bottom:998.157000px;}
.y16{bottom:1008.631500px;}
.y61{bottom:1014.255000px;}
.ya0{bottom:1023.561000px;}
.y3b{bottom:1029.172500px;}
.y81{bottom:1029.219000px;}
.y9f{bottom:1041.495000px;}
.y15{bottom:1045.318500px;}
.y80{bottom:1049.544000px;}
.y60{bottom:1050.009000px;}
.y3a{bottom:1062.343500px;}
.y9e{bottom:1066.899000px;}
.y7f{bottom:1069.867500px;}
.y5f{bottom:1070.332500px;}
.y14{bottom:1082.007000px;}
.y39{bottom:1082.667000px;}
.y9d{bottom:1084.831500px;}
.y1{bottom:1087.587000px;}
.y7e{bottom:1090.191000px;}
.y5e{bottom:1090.656000px;}
.y38{bottom:1118.968500px;}
.he{height:1.374547px;}
.h6{height:32.661470px;}
.h2{height:41.484266px;}
.h12{height:44.831700px;}
.h9{height:45.818220px;}
.hc{height:46.145493px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.hf{height:59.613450px;}
.hb{height:59.619450px;}
.ha{height:62.889450px;}
.h10{height:67.707450px;}
.h11{height:69.088950px;}
.h5{height:73.377798px;}
.h3{height:106.485382px;}
.hd{height:135.329493px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x14{left:129.636000px;}
.x3{left:131.838000px;}
.x12{left:137.107500px;}
.x4{left:139.332000px;}
.xf{left:147.427500px;}
.x5{left:151.972500px;}
.x13{left:161.064000px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.x11{left:302.893500px;}
.xb{left:386.911500px;}
.xa{left:391.075500px;}
.x9{left:407.158500px;}
.x8{left:429.882000px;}
.x7{left:438.466500px;}
.xc{left:443.682000px;}
.xd{left:462.322500px;}
.xe{left:522.724500px;}
.x10{left:631.492500px;}
@media print{
.v8{vertical-align:-37.562667pt;}
.v2{vertical-align:-21.109333pt;}
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:9.477333pt;}
.v9{vertical-align:12.101333pt;}
.va{vertical-align:17.776000pt;}
.v5{vertical-align:21.114667pt;}
.v4{vertical-align:24.021333pt;}
.v1{vertical-align:27.765333pt;}
.v6{vertical-align:39.909333pt;}
.v7{vertical-align:79.274667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.009362pt;}
.lsf{letter-spacing:0.012455pt;}
.ls6{letter-spacing:0.015012pt;}
.ls18{letter-spacing:0.016531pt;}
.lsa{letter-spacing:0.020082pt;}
.lsc{letter-spacing:1.530259pt;}
.ls11{letter-spacing:1.598410pt;}
.lsd{letter-spacing:1.785302pt;}
.ls14{letter-spacing:1.839420pt;}
.ls13{letter-spacing:1.859835pt;}
.ls10{letter-spacing:2.094547pt;}
.ls4{letter-spacing:2.560002pt;}
.ls3{letter-spacing:2.653258pt;}
.ls0{letter-spacing:2.654270pt;}
.ls17{letter-spacing:9.658190pt;}
.ls15{letter-spacing:12.916374pt;}
.ls8{letter-spacing:16.116377pt;}
.ls7{letter-spacing:16.174559pt;}
.ls1c{letter-spacing:17.427908pt;}
.ls1b{letter-spacing:17.693578pt;}
.ls1a{letter-spacing:17.746711pt;}
.ls2{letter-spacing:29.090933pt;}
.lsb{letter-spacing:59.882133pt;}
.ls16{letter-spacing:126.080105pt;}
.ls19{letter-spacing:504.262238pt;}
.lse{letter-spacing:796.626118pt;}
.ls9{letter-spacing:875.055275pt;}
.ls5{letter-spacing:955.811706pt;}
.ws3a{word-spacing:-49.570950pt;}
.ws1f{word-spacing:-37.899668pt;}
.ws4d{word-spacing:-16.162923pt;}
.ws24{word-spacing:-3.246548pt;}
.ws18{word-spacing:-2.199275pt;}
.ws37{word-spacing:-1.850183pt;}
.ws45{word-spacing:-1.617456pt;}
.ws43{word-spacing:-1.326547pt;}
.ws2b{word-spacing:-1.210183pt;}
.ws2c{word-spacing:-1.152001pt;}
.ws1c{word-spacing:-0.977455pt;}
.ws41{word-spacing:-0.919273pt;}
.ws3b{word-spacing:-0.570182pt;}
.ws13{word-spacing:-0.063761pt;}
.ws29{word-spacing:-0.058182pt;}
.ws57{word-spacing:-0.053134pt;}
.ws25{word-spacing:-0.042507pt;}
.ws12{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.011636pt;}
.ws44{word-spacing:0.069818pt;}
.ws34{word-spacing:0.884364pt;}
.ws3c{word-spacing:1.058910pt;}
.ws1d{word-spacing:1.408001pt;}
.ws30{word-spacing:1.757092pt;}
.ws47{word-spacing:2.455275pt;}
.ws54{word-spacing:2.614186pt;}
.ws1e{word-spacing:2.746184pt;}
.ws42{word-spacing:2.920730pt;}
.ws4e{word-spacing:2.932989pt;}
.ws2d{word-spacing:2.978912pt;}
.ws53{word-spacing:2.986123pt;}
.ws5{word-spacing:3.211639pt;}
.ws10{word-spacing:3.269821pt;}
.ws28{word-spacing:3.353618pt;}
.ws4c{word-spacing:3.444367pt;}
.ws23{word-spacing:3.793458pt;}
.ws3e{word-spacing:4.258913pt;}
.ws11{word-spacing:4.491640pt;}
.ws26{word-spacing:4.608004pt;}
.ws21{word-spacing:5.189823pt;}
.ws22{word-spacing:5.364368pt;}
.wsd{word-spacing:5.422550pt;}
.ws3d{word-spacing:5.480732pt;}
.wsf{word-spacing:5.655277pt;}
.ws8{word-spacing:6.120732pt;}
.wse{word-spacing:6.353460pt;}
.ws48{word-spacing:6.644369pt;}
.ws46{word-spacing:6.760733pt;}
.ws32{word-spacing:6.877097pt;}
.ws20{word-spacing:6.935279pt;}
.ws33{word-spacing:7.284370pt;}
.ws36{word-spacing:7.400733pt;}
.ws2a{word-spacing:7.481267pt;}
.ws1b{word-spacing:7.575279pt;}
.ws49{word-spacing:8.215280pt;}
.ws9{word-spacing:8.331643pt;}
.ws27{word-spacing:8.564371pt;}
.ws35{word-spacing:9.088008pt;}
.ws2f{word-spacing:9.204371pt;}
.ws1a{word-spacing:9.495281pt;}
.ws6{word-spacing:9.669826pt;}
.wsa{word-spacing:9.960736pt;}
.ws4b{word-spacing:10.018917pt;}
.ws31{word-spacing:10.484372pt;}
.wsc{word-spacing:11.357100pt;}
.wsb{word-spacing:11.415282pt;}
.ws19{word-spacing:11.764373pt;}
.ws39{word-spacing:15.543530pt;}
.ws56{word-spacing:17.321641pt;}
.ws52{word-spacing:17.640444pt;}
.ws50{word-spacing:17.693578pt;}
.ws55{word-spacing:18.596853pt;}
.ws38{word-spacing:18.772812pt;}
.ws51{word-spacing:18.915657pt;}
.ws4f{word-spacing:18.968790pt;}
.ws14{word-spacing:22.225473pt;}
.ws40{word-spacing:22.283655pt;}
.ws3{word-spacing:23.336550pt;}
.ws17{word-spacing:23.846639pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws15{word-spacing:43.298945pt;}
.ws2{word-spacing:48.252221pt;}
.ws1{word-spacing:48.384419pt;}
.ws16{word-spacing:53.760045pt;}
.ws7{word-spacing:56.838105pt;}
.ws2e{word-spacing:66.850965pt;}
.ws3f{word-spacing:71.667439pt;}
._2f{margin-left:-5.003641pt;}
._0{margin-left:-3.965936pt;}
._26{margin-left:-2.910684pt;}
._2{margin-left:-1.976593pt;}
._8{margin-left:-0.934091pt;}
._2a{width:0.992273pt;}
._3{width:1.976593pt;}
._2d{width:3.118456pt;}
._1{width:4.098134pt;}
._2c{width:6.069963pt;}
._28{width:7.036825pt;}
._27{width:16.174559pt;}
._32{width:18.442061pt;}
._35{width:19.564292pt;}
._33{width:22.572974pt;}
._29{width:24.318430pt;}
._2e{width:25.890931pt;}
._25{width:27.112750pt;}
._4{width:28.403910pt;}
._5{width:29.614570pt;}
._9{width:32.229573pt;}
._7{width:35.258211pt;}
._34{width:37.058668pt;}
._31{width:43.925719pt;}
._30{width:48.345950pt;}
._6{width:49.638701pt;}
._24{width:52.363680pt;}
._a{width:53.818227pt;}
._e{width:59.461868pt;}
._2b{width:66.909147pt;}
._23{width:71.731200pt;}
._c{width:897.870545pt;}
._1e{width:1028.713585pt;}
._10{width:1097.655916pt;}
._11{width:1151.070050pt;}
._15{width:1163.986425pt;}
._12{width:1207.853962pt;}
._d{width:1228.102842pt;}
._17{width:1311.534048pt;}
._f{width:1361.746589pt;}
._1d{width:1370.237961pt;}
._1f{width:1379.202740pt;}
._16{width:1387.400021pt;}
._1b{width:1450.761665pt;}
._14{width:1525.413771pt;}
._1a{width:1618.270439pt;}
._19{width:1626.590446pt;}
._18{width:1691.406636pt;}
._b{width:1722.472572pt;}
._13{width:1752.901689pt;}
._21{width:1803.170821pt;}
._20{width:1843.550627pt;}
._22{width:1897.136126pt;}
._1c{width:2001.768475pt;}
.fs6{font-size:31.880533pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:83.389333pt;}
.y5d{bottom:156.449333pt;}
.y36{bottom:156.497333pt;}
.y35{bottom:174.562667pt;}
.y7d{bottom:181.616000pt;}
.y5c{bottom:186.256000pt;}
.y34{bottom:192.629333pt;}
.y33{bottom:210.694667pt;}
.y7c{bottom:212.540000pt;}
.y5b{bottom:216.062667pt;}
.y32{bottom:228.760000pt;}
.y9c{bottom:243.254667pt;}
.y7b{bottom:243.464000pt;}
.y5a{bottom:245.549333pt;}
.y31{bottom:246.825333pt;}
.y9b{bottom:261.320000pt;}
.y59{bottom:263.614667pt;}
.y30{bottom:264.890667pt;}
.y7a{bottom:268.630667pt;}
.y9a{bottom:279.386667pt;}
.y2f{bottom:282.956000pt;}
.y58{bottom:289.044000pt;}
.y99{bottom:297.452000pt;}
.y79{bottom:300.410667pt;}
.y2e{bottom:301.022667pt;}
.y78{bottom:314.033333pt;}
.y98{bottom:315.517333pt;}
.y77{bottom:318.477333pt;}
.y57{bottom:321.261333pt;}
.y13{bottom:324.565333pt;}
.y2d{bottom:333.492000pt;}
.y97{bottom:333.582667pt;}
.y12{bottom:342.630667pt;}
.y76{bottom:343.644000pt;}
.y51{bottom:353.822667pt;}
.y55{bottom:358.709333pt;}
.y11{bottom:360.696000pt;}
.y56{bottom:363.800000pt;}
.y96{bottom:366.052000pt;}
.y54{bottom:367.437333pt;}
.y50{bottom:373.641333pt;}
.y2c{bottom:374.008000pt;}
.y75{bottom:375.424000pt;}
.y53{bottom:376.164000pt;}
.y10{bottom:378.762667pt;}
.y52{bottom:384.892000pt;}
.y74{bottom:393.490667pt;}
.yf{bottom:396.828000pt;}
.y4f{bottom:403.018667pt;}
.y95{bottom:406.568000pt;}
.ye{bottom:414.893333pt;}
.y2b{bottom:415.365333pt;}
.y73{bottom:418.657333pt;}
.y4e{bottom:421.084000pt;}
.y94{bottom:424.634667pt;}
.yd{bottom:432.958667pt;}
.y93{bottom:442.700000pt;}
.y4d{bottom:446.513333pt;}
.y2a{bottom:447.976000pt;}
.y72{bottom:450.576000pt;}
.yc{bottom:451.024000pt;}
.y92{bottom:460.765333pt;}
.yb{bottom:469.089333pt;}
.y4c{bottom:478.730667pt;}
.y91{bottom:478.830667pt;}
.y29{bottom:480.588000pt;}
.ya{bottom:487.156000pt;}
.y71{bottom:490.126667pt;}
.y90{bottom:496.896000pt;}
.y28{bottom:498.653333pt;}
.y4b{bottom:505.110667pt;}
.y9{bottom:505.221333pt;}
.y70{bottom:508.192000pt;}
.y27{bottom:516.718667pt;}
.y4a{bottom:523.176000pt;}
.y6f{bottom:526.258667pt;}
.y8f{bottom:529.366667pt;}
.y26{bottom:534.784000pt;}
.y8{bottom:540.554667pt;}
.y49{bottom:541.241333pt;}
.y6e{bottom:544.324000pt;}
.y25{bottom:552.849333pt;}
.y8e{bottom:569.882667pt;}
.y7{bottom:573.197333pt;}
.y48{bottom:573.277333pt;}
.y6d{bottom:576.242667pt;}
.y24{bottom:585.461333pt;}
.y8d{bottom:587.948000pt;}
.yb0{bottom:588.370667pt;}
.y6{bottom:598.737333pt;}
.y23{bottom:603.526667pt;}
.y47{bottom:605.313333pt;}
.yaf{bottom:610.953333pt;}
.y8c{bottom:613.528000pt;}
.y6c{bottom:615.793333pt;}
.y22{bottom:621.592000pt;}
.y46{bottom:630.742667pt;}
.yae{bottom:633.534667pt;}
.y6b{bottom:633.858667pt;}
.y21{bottom:639.657333pt;}
.y8b{bottom:645.998667pt;}
.y6a{bottom:651.925333pt;}
.yad{bottom:656.117333pt;}
.y20{bottom:657.722667pt;}
.y45{bottom:662.960000pt;}
.y8a{bottom:664.064000pt;}
.y69{bottom:669.990667pt;}
.yac{bottom:672.057333pt;}
.y1f{bottom:675.789333pt;}
.y44{bottom:681.025333pt;}
.y68{bottom:688.056000pt;}
.y89{bottom:689.644000pt;}
.yab{bottom:694.640000pt;}
.y5{bottom:696.670667pt;}
.y43{bottom:699.092000pt;}
.y1e{bottom:708.400000pt;}
.yaa{bottom:710.580000pt;}
.y42{bottom:717.157333pt;}
.y67{bottom:719.974667pt;}
.y88{bottom:722.113333pt;}
.y4{bottom:729.809333pt;}
.ya9{bottom:733.161333pt;}
.y87{bottom:740.180000pt;}
.y1d{bottom:741.010667pt;}
.y41{bottom:749.425333pt;}
.ya8{bottom:755.744000pt;}
.y66{bottom:759.525333pt;}
.y86{bottom:765.760000pt;}
.y3{bottom:769.660000pt;}
.ya7{bottom:771.684000pt;}
.y1c{bottom:773.622667pt;}
.y65{bottom:788.961333pt;}
.y40{bottom:789.588000pt;}
.y1b{bottom:791.688000pt;}
.ya6{bottom:794.265333pt;}
.y85{bottom:798.229333pt;}
.y3f{bottom:807.653333pt;}
.y2{bottom:809.510667pt;}
.y1a{bottom:809.753333pt;}
.ya5{bottom:810.206667pt;}
.y84{bottom:816.296000pt;}
.y64{bottom:818.397333pt;}
.y3e{bottom:825.720000pt;}
.y19{bottom:827.818667pt;}
.ya4{bottom:832.788000pt;}
.y83{bottom:841.876000pt;}
.y18{bottom:845.884000pt;}
.y63{bottom:847.833333pt;}
.ya3{bottom:848.728000pt;}
.y3d{bottom:855.205333pt;}
.y17{bottom:863.950667pt;}
.ya2{bottom:871.310667pt;}
.y82{bottom:874.345333pt;}
.y62{bottom:876.393333pt;}
.y3c{bottom:885.012000pt;}
.ya1{bottom:887.250667pt;}
.y16{bottom:896.561333pt;}
.y61{bottom:901.560000pt;}
.ya0{bottom:909.832000pt;}
.y3b{bottom:914.820000pt;}
.y81{bottom:914.861333pt;}
.y9f{bottom:925.773333pt;}
.y15{bottom:929.172000pt;}
.y80{bottom:932.928000pt;}
.y60{bottom:933.341333pt;}
.y3a{bottom:944.305333pt;}
.y9e{bottom:948.354667pt;}
.y7f{bottom:950.993333pt;}
.y5f{bottom:951.406667pt;}
.y14{bottom:961.784000pt;}
.y39{bottom:962.370667pt;}
.y9d{bottom:964.294667pt;}
.y1{bottom:966.744000pt;}
.y7e{bottom:969.058667pt;}
.y5e{bottom:969.472000pt;}
.y38{bottom:994.638667pt;}
.he{height:1.221819pt;}
.h6{height:29.032418pt;}
.h2{height:36.874903pt;}
.h12{height:39.850400pt;}
.h9{height:40.727307pt;}
.hc{height:41.018216pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.hf{height:52.989733pt;}
.hb{height:52.995067pt;}
.ha{height:55.901733pt;}
.h10{height:60.184400pt;}
.h11{height:61.412400pt;}
.h5{height:65.224709pt;}
.h3{height:94.653673pt;}
.hd{height:120.292883pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x14{left:115.232000pt;}
.x3{left:117.189333pt;}
.x12{left:121.873333pt;}
.x4{left:123.850667pt;}
.xf{left:131.046667pt;}
.x5{left:135.086667pt;}
.x13{left:143.168000pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.x11{left:269.238667pt;}
.xb{left:343.921333pt;}
.xa{left:347.622667pt;}
.x9{left:361.918667pt;}
.x8{left:382.117333pt;}
.x7{left:389.748000pt;}
.xc{left:394.384000pt;}
.xd{left:410.953333pt;}
.xe{left:464.644000pt;}
.x10{left:561.326667pt;}
}




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