
    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_7047db122763f5e207eda067.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_82eaad3c30a7f0d801c5e970.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_1ddccb821b8aae71ee4dea9c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5b9e845010b1e4634e842582.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b172e7c093d6a39350e75e83.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_55e37fd86420af5bc15d300e.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_6eee32df8de6b791f118a60c.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_e0ab24fe7ff12a25fa80312e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.859000;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_4970caf145faf4b3dbbf265a.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_2503475e82cec86e554c5be2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.199000;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_6eae4b5d6a794866ced236f5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.772000;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_0d6b6f5c623f21d767f69991.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v2{vertical-align:-23.754000px;}
.v5{vertical-align:-13.320000px;}
.v4{vertical-align:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:10.788000px;}
.v3{vertical-align:20.604000px;}
.v1{vertical-align:31.236000px;}
.v8{vertical-align:38.910000px;}
.v7{vertical-align:47.628000px;}
.v6{vertical-align:53.016000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.001068px;}
.ls16{letter-spacing:0.007017px;}
.lsc{letter-spacing:0.017168px;}
.ls1d{letter-spacing:0.018196px;}
.ls1b{letter-spacing:1.798764px;}
.ls2{letter-spacing:1.801411px;}
.ls9{letter-spacing:1.803170px;}
.lsa{letter-spacing:1.816725px;}
.lsf{letter-spacing:1.820137px;}
.ls18{letter-spacing:1.830444px;}
.ls1a{letter-spacing:1.836467px;}
.ls4{letter-spacing:2.880002px;}
.ls0{letter-spacing:2.986053px;}
.ls17{letter-spacing:2.989739px;}
.ls3{letter-spacing:9.643860px;}
.ls12{letter-spacing:13.892746px;}
.ls11{letter-spacing:13.892915px;}
.ls20{letter-spacing:16.494559px;}
.lsb{letter-spacing:16.702180px;}
.ls8{letter-spacing:18.196379px;}
.ls21{letter-spacing:19.905275px;}
.ls22{letter-spacing:19.965050px;}
.ls7{letter-spacing:21.165056px;}
.lse{letter-spacing:21.170915px;}
.ls19{letter-spacing:21.796382px;}
.ls14{letter-spacing:23.884834px;}
.lsd{letter-spacing:24.806915px;}
.ls5{letter-spacing:24.807056px;}
.ls1e{letter-spacing:24.895739px;}
.ls1c{letter-spacing:25.069112px;}
.ls1f{letter-spacing:26.389739px;}
.ls10{letter-spacing:28.848613px;}
.ls13{letter-spacing:718.429690px;}
.ls15{letter-spacing:812.815223px;}
.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;}
}
.ws2c{word-spacing:-42.637126px;}
.ws32{word-spacing:-28.826206px;}
.ws33{word-spacing:-18.183288px;}
.ws5f{word-spacing:-15.278643px;}
.ws2d{word-spacing:-7.252370px;}
.ws36{word-spacing:-3.652367px;}
.ws4e{word-spacing:-2.736002px;}
.ws8{word-spacing:-2.408729px;}
.ws21{word-spacing:-2.146911px;}
.ws2b{word-spacing:-2.081456px;}
.ws4a{word-spacing:-1.754183px;}
.ws3f{word-spacing:-1.688729px;}
.ws57{word-spacing:-1.230546px;}
.ws29{word-spacing:-0.576000px;}
.ws56{word-spacing:-0.510546px;}
.ws35{word-spacing:-0.248727px;}
.wsf{word-spacing:-0.117818px;}
.ws13{word-spacing:-0.071731px;}
.ws34{word-spacing:-0.065455px;}
.ws31{word-spacing:-0.025779px;}
.ws12{word-spacing:0.000000px;}
.wsb{word-spacing:0.013091px;}
.ws55{word-spacing:0.274909px;}
.ws1a{word-spacing:0.536728px;}
.ws19{word-spacing:0.602182px;}
.ws5b{word-spacing:0.812948px;}
.ws5d{word-spacing:0.872724px;}
.ws48{word-spacing:1.125819px;}
.ws4f{word-spacing:1.584001px;}
.wsc{word-spacing:1.649456px;}
.ws4c{word-spacing:2.173093px;}
.ws37{word-spacing:2.893093px;}
.ws4b{word-spacing:2.958548px;}
.ws58{word-spacing:3.299613px;}
.ws52{word-spacing:3.351276px;}
.ws5c{word-spacing:3.359389px;}
.ws5{word-spacing:3.613094px;}
.ws15{word-spacing:3.678549px;}
.ws41{word-spacing:3.744003px;}
.ws43{word-spacing:4.071276px;}
.ws14{word-spacing:4.162913px;}
.ws47{word-spacing:4.228367px;}
.ws1d{word-spacing:4.267640px;}
.ws54{word-spacing:4.464004px;}
.ws1e{word-spacing:4.594913px;}
.ws5a{word-spacing:4.626631px;}
.ws5e{word-spacing:4.686407px;}
.ws23{word-spacing:4.725822px;}
.ws10{word-spacing:4.791277px;}
.ws45{word-spacing:5.184004px;}
.ws44{word-spacing:5.249459px;}
.ws2a{word-spacing:5.314914px;}
.ws4d{word-spacing:5.380368px;}
.ws1b{word-spacing:5.445823px;}
.ws40{word-spacing:6.100369px;}
.ws59{word-spacing:6.121021px;}
.ws3a{word-spacing:6.165823px;}
.ws22{word-spacing:6.231278px;}
.ws28{word-spacing:6.427642px;}
.ws51{word-spacing:6.689460px;}
.ws3c{word-spacing:6.820369px;}
.ws3b{word-spacing:6.885824px;}
.ws27{word-spacing:7.147642px;}
.ws1c{word-spacing:7.344006px;}
.ws49{word-spacing:7.409461px;}
.ws53{word-spacing:7.867643px;}
.ws9{word-spacing:8.129461px;}
.ws26{word-spacing:8.260371px;}
.ws3e{word-spacing:8.456734px;}
.wsa{word-spacing:8.587644px;}
.ws2f{word-spacing:8.653098px;}
.ws25{word-spacing:9.242190px;}
.ws24{word-spacing:9.438553px;}
.wsd{word-spacing:9.569463px;}
.ws11{word-spacing:9.700372px;}
.ws6{word-spacing:10.878555px;}
.ws50{word-spacing:11.074918px;}
.ws38{word-spacing:11.336737px;}
.ws42{word-spacing:11.402191px;}
.wse{word-spacing:11.533101px;}
.ws3d{word-spacing:12.253101px;}
.ws1f{word-spacing:12.645829px;}
.ws20{word-spacing:13.038556px;}
.ws3{word-spacing:26.253619px;}
.ws18{word-spacing:26.827469px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws17{word-spacing:39.639306px;}
.ws7{word-spacing:42.735577px;}
.ws16{word-spacing:48.711313px;}
.ws2{word-spacing:54.283749px;}
.ws39{word-spacing:54.366591px;}
.ws1{word-spacing:54.432472px;}
.ws46{word-spacing:80.625869px;}
.ws2e{word-spacing:902.789116px;}
.ws30{word-spacing:909.465485px;}
._28{margin-left:-6.283642px;}
._0{margin-left:-4.610401px;}
._4{margin-left:-3.600003px;}
._2{margin-left:-2.223667px;}
._8{margin-left:-1.116307px;}
._26{width:1.010398px;}
._3{width:2.223667px;}
._35{width:3.311799px;}
._1{width:4.610401px;}
._27{width:5.758216px;}
._31{width:17.147316px;}
._29{width:18.196379px;}
._25{width:19.374562px;}
._2e{width:20.655075px;}
._34{width:21.951112px;}
._2d{width:23.266751px;}
._23{width:26.378204px;}
._5{width:27.883660px;}
._30{width:28.930933px;}
._a{width:30.170992px;}
._7{width:31.941845px;}
._9{width:33.475879px;}
._2c{width:37.305544px;}
._33{width:39.796397px;}
._2f{width:41.207819px;}
._32{width:42.387791px;}
._2b{width:44.546004px;}
._22{width:46.469188px;}
._6{width:47.583705px;}
._2a{width:52.492800px;}
._21{width:55.900018px;}
._b{width:60.545505px;}
._f{width:66.894601px;}
._24{width:75.272790px;}
._20{width:80.697600px;}
._d{width:1096.522249px;}
._1b{width:1102.584526px;}
._13{width:1265.200542px;}
._e{width:1285.137406px;}
._10{width:1294.953806px;}
._17{width:1309.484728px;}
._1c{width:1363.743013px;}
._c{width:1440.492680px;}
._11{width:1443.470294px;}
._14{width:1522.866724px;}
._1a{width:1541.517706px;}
._18{width:1560.825024px;}
._12{width:1567.574005px;}
._16{width:1592.970389px;}
._1d{width:1825.263397px;}
._15{width:1972.014400px;}
._1e{width:2028.567174px;}
._1f{width:2134.278142px;}
._19{width:2251.989534px;}
.fc0{color:rgb(0,0,0);}
.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;}
.y81{bottom:93.814500px;}
.y5f{bottom:170.854500px;}
.y36{bottom:176.005500px;}
.ya8{bottom:193.938000px;}
.y35{bottom:196.329000px;}
.y80{bottom:216.211500px;}
.y34{bottom:216.652500px;}
.ya7{bottom:219.258000px;}
.y7f{bottom:236.536500px;}
.y33{bottom:236.976000px;}
.ya6{bottom:237.190500px;}
.y5e{bottom:244.884000px;}
.ya5{bottom:255.123000px;}
.y7e{bottom:256.860000px;}
.y32{bottom:257.301000px;}
.y31{bottom:277.624500px;}
.ya4{bottom:280.443000px;}
.y5d{bottom:280.501500px;}
.y7d{bottom:285.637500px;}
.y30{bottom:297.948000px;}
.ya3{bottom:298.375500px;}
.y5c{bottom:300.825000px;}
.y2f{bottom:318.271500px;}
.y7c{bottom:322.167000px;}
.ya2{bottom:323.695500px;}
.y5b{bottom:330.117000px;}
.y5a{bottom:335.268000px;}
.y2e{bottom:338.595000px;}
.ya1{bottom:341.628000px;}
.y7b{bottom:342.490500px;}
.y2d{bottom:358.920000px;}
.ya0{bottom:366.948000px;}
.y59{bottom:369.711000px;}
.y7a{bottom:371.268000px;}
.y2c{bottom:379.243500px;}
.y9f{bottom:384.880500px;}
.y58{bottom:390.036000px;}
.y12{bottom:391.509000px;}
.y2b{bottom:399.567000px;}
.y79{bottom:407.796000px;}
.y9e{bottom:410.200500px;}
.y11{bottom:411.832500px;}
.y57{bottom:418.267500px;}
.y2a{bottom:419.890500px;}
.y78{bottom:428.121000px;}
.y9d{bottom:428.133000px;}
.y10{bottom:432.156000px;}
.y9c{bottom:446.065500px;}
.y56{bottom:447.559500px;}
.y77{bottom:448.444500px;}
.yf{bottom:452.479500px;}
.y55{bottom:452.710500px;}
.y29{bottom:453.646500px;}
.y9b{bottom:471.385500px;}
.ye{bottom:472.804500px;}
.y76{bottom:477.222000px;}
.y9a{bottom:489.318000px;}
.y54{bottom:490.200000px;}
.yd{bottom:493.128000px;}
.y28{bottom:494.374500px;}
.y99{bottom:507.250500px;}
.yc{bottom:513.451500px;}
.y75{bottom:513.751500px;}
.y53{bottom:518.431500px;}
.y98{bottom:532.570500px;}
.y27{bottom:533.109000px;}
.yb{bottom:533.775000px;}
.y97{bottom:550.503000px;}
.y52{bottom:554.049000px;}
.ya{bottom:554.098500px;}
.y74{bottom:559.332000px;}
.y96{bottom:568.435500px;}
.y26{bottom:569.797500px;}
.y9{bottom:574.423500px;}
.y51{bottom:577.776000px;}
.y73{bottom:579.655500px;}
.y50{bottom:582.927000px;}
.y8{bottom:594.747000px;}
.y72{bottom:599.979000px;}
.y95{bottom:601.827000px;}
.y4f{bottom:603.250500px;}
.y25{bottom:606.484500px;}
.y4e{bottom:618.423000px;}
.y71{bottom:620.302500px;}
.y4d{bottom:623.574000px;}
.y24{bottom:626.808000px;}
.y7{bottom:634.497000px;}
.y70{bottom:640.626000px;}
.y94{bottom:646.102500px;}
.y23{bottom:647.131500px;}
.y4c{bottom:651.805500px;}
.y6f{bottom:660.951000px;}
.y93{bottom:666.426000px;}
.y22{bottom:667.456500px;}
.y6{bottom:671.220000px;}
.y4b{bottom:682.272000px;}
.y92{bottom:686.749500px;}
.y4a{bottom:687.423000px;}
.y21{bottom:687.780000px;}
.y6e{bottom:697.479000px;}
.y5{bottom:699.952500px;}
.y91{bottom:707.073000px;}
.y49{bottom:707.746500px;}
.y48{bottom:722.920500px;}
.y20{bottom:724.467000px;}
.y90{bottom:727.396500px;}
.y47{bottom:728.071500px;}
.y6d{bottom:743.059500px;}
.y8f{bottom:747.721500px;}
.y46{bottom:756.303000px;}
.y1f{bottom:761.154000px;}
.y6c{bottom:763.383000px;}
.y8e{bottom:768.045000px;}
.y6b{bottom:783.706500px;}
.y8d{bottom:788.368500px;}
.y45{bottom:791.919000px;}
.y1e{bottom:797.842500px;}
.y6a{bottom:804.030000px;}
.y8c{bottom:808.692000px;}
.y44{bottom:812.244000px;}
.y4{bottom:818.038500px;}
.y69{bottom:824.355000px;}
.y43{bottom:832.567500px;}
.y1d{bottom:834.529500px;}
.y8b{bottom:844.474500px;}
.y42{bottom:852.891000px;}
.y1c{bottom:854.853000px;}
.y3{bottom:855.319500px;}
.y68{bottom:860.883000px;}
.y1b{bottom:875.176500px;}
.y41{bottom:881.122500px;}
.y8a{bottom:888.750000px;}
.y1a{bottom:895.501500px;}
.y2{bottom:900.151500px;}
.y67{bottom:906.463500px;}
.y89{bottom:909.073500px;}
.y19{bottom:915.825000px;}
.y40{bottom:916.921500px;}
.y66{bottom:926.787000px;}
.y88{bottom:929.397000px;}
.y18{bottom:936.148500px;}
.y65{bottom:947.110500px;}
.y87{bottom:949.722000px;}
.y17{bottom:956.472000px;}
.y3f{bottom:961.227000px;}
.y64{bottom:967.434000px;}
.y86{bottom:970.045500px;}
.y16{bottom:976.795500px;}
.y3e{bottom:981.550500px;}
.y85{bottom:990.369000px;}
.y3d{bottom:1001.874000px;}
.y63{bottom:1003.963500px;}
.yad{bottom:1006.890000px;}
.y15{bottom:1013.484000px;}
.y3c{bottom:1022.199000px;}
.y84{bottom:1026.151500px;}
.yac{bottom:1032.294000px;}
.y3b{bottom:1042.522500px;}
.y62{bottom:1049.544000px;}
.y14{bottom:1050.171000px;}
.yab{bottom:1050.226500px;}
.y3a{bottom:1062.846000px;}
.y61{bottom:1069.867500px;}
.y83{bottom:1070.427000px;}
.yaa{bottom:1075.632000px;}
.y39{bottom:1083.169500px;}
.y13{bottom:1086.858000px;}
.y1{bottom:1087.587000px;}
.y60{bottom:1090.191000px;}
.y82{bottom:1090.750500px;}
.ya9{bottom:1093.564500px;}
.y38{bottom:1118.968500px;}
.h6{height:35.865450px;}
.h2{height:41.484266px;}
.h10{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.ha{height:63.642699px;}
.hc{height:63.648699px;}
.hb{height:69.694950px;}
.h5{height:76.067700px;}
.hd{height:84.246699px;}
.hf{height:84.252699px;}
.he{height:95.379450px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x1a{left:129.636000px;}
.x3{left:131.838000px;}
.x18{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x19{left:161.064000px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.xe{left:340.666500px;}
.xf{left:354.214500px;}
.x12{left:364.266000px;}
.x13{left:377.814000px;}
.x9{left:397.432500px;}
.xc{left:399.100500px;}
.x7{left:438.466500px;}
.x10{left:443.122500px;}
.xd{left:448.383000px;}
.xa{left:450.243000px;}
.x15{left:485.247000px;}
.x11{left:502.162500px;}
.x14{left:507.910500px;}
.xb{left:509.998500px;}
.x8{left:522.388500px;}
.x16{left:566.647500px;}
.x17{left:668.094000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v5{vertical-align:-11.840000pt;}
.v4{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:9.589333pt;}
.v3{vertical-align:18.314667pt;}
.v1{vertical-align:27.765333pt;}
.v8{vertical-align:34.586667pt;}
.v7{vertical-align:42.336000pt;}
.v6{vertical-align:47.125333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000949pt;}
.ls16{letter-spacing:0.006238pt;}
.lsc{letter-spacing:0.015260pt;}
.ls1d{letter-spacing:0.016174pt;}
.ls1b{letter-spacing:1.598901pt;}
.ls2{letter-spacing:1.601254pt;}
.ls9{letter-spacing:1.602818pt;}
.lsa{letter-spacing:1.614866pt;}
.lsf{letter-spacing:1.617899pt;}
.ls18{letter-spacing:1.627061pt;}
.ls1a{letter-spacing:1.632415pt;}
.ls4{letter-spacing:2.560002pt;}
.ls0{letter-spacing:2.654270pt;}
.ls17{letter-spacing:2.657546pt;}
.ls3{letter-spacing:8.572320pt;}
.ls12{letter-spacing:12.349107pt;}
.ls11{letter-spacing:12.349258pt;}
.ls20{letter-spacing:14.661830pt;}
.lsb{letter-spacing:14.846383pt;}
.ls8{letter-spacing:16.174559pt;}
.ls21{letter-spacing:17.693578pt;}
.ls22{letter-spacing:17.746711pt;}
.ls7{letter-spacing:18.813383pt;}
.lse{letter-spacing:18.818591pt;}
.ls19{letter-spacing:19.374562pt;}
.ls14{letter-spacing:21.230964pt;}
.lsd{letter-spacing:22.050591pt;}
.ls5{letter-spacing:22.050717pt;}
.ls1e{letter-spacing:22.129546pt;}
.ls1c{letter-spacing:22.283655pt;}
.ls1f{letter-spacing:23.457546pt;}
.ls10{letter-spacing:25.643211pt;}
.ls13{letter-spacing:638.604169pt;}
.ls15{letter-spacing:722.502420pt;}
.ws2c{word-spacing:-37.899668pt;}
.ws32{word-spacing:-25.623294pt;}
.ws33{word-spacing:-16.162923pt;}
.ws5f{word-spacing:-13.581016pt;}
.ws2d{word-spacing:-6.446551pt;}
.ws36{word-spacing:-3.246548pt;}
.ws4e{word-spacing:-2.432002pt;}
.ws8{word-spacing:-2.141093pt;}
.ws21{word-spacing:-1.908365pt;}
.ws2b{word-spacing:-1.850183pt;}
.ws4a{word-spacing:-1.559274pt;}
.ws3f{word-spacing:-1.501092pt;}
.ws57{word-spacing:-1.093819pt;}
.ws29{word-spacing:-0.512000pt;}
.ws56{word-spacing:-0.453819pt;}
.ws35{word-spacing:-0.221091pt;}
.wsf{word-spacing:-0.104727pt;}
.ws13{word-spacing:-0.063761pt;}
.ws34{word-spacing:-0.058182pt;}
.ws31{word-spacing:-0.022915pt;}
.ws12{word-spacing:0.000000pt;}
.wsb{word-spacing:0.011636pt;}
.ws55{word-spacing:0.244364pt;}
.ws1a{word-spacing:0.477091pt;}
.ws19{word-spacing:0.535273pt;}
.ws5b{word-spacing:0.722621pt;}
.ws5d{word-spacing:0.775754pt;}
.ws48{word-spacing:1.000728pt;}
.ws4f{word-spacing:1.408001pt;}
.wsc{word-spacing:1.466183pt;}
.ws4c{word-spacing:1.931638pt;}
.ws37{word-spacing:2.571639pt;}
.ws4b{word-spacing:2.629820pt;}
.ws58{word-spacing:2.932989pt;}
.ws52{word-spacing:2.978912pt;}
.ws5c{word-spacing:2.986123pt;}
.ws5{word-spacing:3.211639pt;}
.ws15{word-spacing:3.269821pt;}
.ws41{word-spacing:3.328003pt;}
.ws43{word-spacing:3.618912pt;}
.ws14{word-spacing:3.700367pt;}
.ws47{word-spacing:3.758549pt;}
.ws1d{word-spacing:3.793458pt;}
.ws54{word-spacing:3.968003pt;}
.ws1e{word-spacing:4.084367pt;}
.ws5a{word-spacing:4.112561pt;}
.ws5e{word-spacing:4.165695pt;}
.ws23{word-spacing:4.200731pt;}
.ws10{word-spacing:4.258913pt;}
.ws45{word-spacing:4.608004pt;}
.ws44{word-spacing:4.666186pt;}
.ws2a{word-spacing:4.724368pt;}
.ws4d{word-spacing:4.782549pt;}
.ws1b{word-spacing:4.840731pt;}
.ws40{word-spacing:5.422550pt;}
.ws59{word-spacing:5.440908pt;}
.ws3a{word-spacing:5.480732pt;}
.ws22{word-spacing:5.538914pt;}
.ws28{word-spacing:5.713459pt;}
.ws51{word-spacing:5.946187pt;}
.ws3c{word-spacing:6.062551pt;}
.ws3b{word-spacing:6.120732pt;}
.ws27{word-spacing:6.353460pt;}
.ws1c{word-spacing:6.528005pt;}
.ws49{word-spacing:6.586187pt;}
.ws53{word-spacing:6.993460pt;}
.ws9{word-spacing:7.226188pt;}
.ws26{word-spacing:7.342552pt;}
.ws3e{word-spacing:7.517097pt;}
.wsa{word-spacing:7.633461pt;}
.ws2f{word-spacing:7.691643pt;}
.ws25{word-spacing:8.215280pt;}
.ws24{word-spacing:8.389825pt;}
.wsd{word-spacing:8.506189pt;}
.ws11{word-spacing:8.622553pt;}
.ws6{word-spacing:9.669826pt;}
.ws50{word-spacing:9.844372pt;}
.ws38{word-spacing:10.077099pt;}
.ws42{word-spacing:10.135281pt;}
.wse{word-spacing:10.251645pt;}
.ws3d{word-spacing:10.891645pt;}
.ws1f{word-spacing:11.240737pt;}
.ws20{word-spacing:11.589828pt;}
.ws3{word-spacing:23.336550pt;}
.ws18{word-spacing:23.846639pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws17{word-spacing:35.234938pt;}
.ws7{word-spacing:37.987180pt;}
.ws16{word-spacing:43.298945pt;}
.ws2{word-spacing:48.252221pt;}
.ws39{word-spacing:48.325858pt;}
.ws1{word-spacing:48.384419pt;}
.ws46{word-spacing:71.667439pt;}
.ws2e{word-spacing:802.479214pt;}
.ws30{word-spacing:808.413765pt;}
._28{margin-left:-5.585459pt;}
._0{margin-left:-4.098134pt;}
._4{margin-left:-3.200003pt;}
._2{margin-left:-1.976593pt;}
._8{margin-left:-0.992273pt;}
._26{width:0.898131pt;}
._3{width:1.976593pt;}
._35{width:2.943821pt;}
._1{width:4.098134pt;}
._27{width:5.118414pt;}
._31{width:15.242059pt;}
._29{width:16.174559pt;}
._25{width:17.221833pt;}
._2e{width:18.360067pt;}
._34{width:19.512100pt;}
._2d{width:20.681556pt;}
._23{width:23.447292pt;}
._5{width:24.785475pt;}
._30{width:25.716385pt;}
._a{width:26.818660pt;}
._7{width:28.392751pt;}
._9{width:29.756337pt;}
._2c{width:33.160483pt;}
._33{width:35.374575pt;}
._2f{width:36.629173pt;}
._32{width:37.678037pt;}
._2b{width:39.596448pt;}
._22{width:41.305945pt;}
._6{width:42.296627pt;}
._2a{width:46.660267pt;}
._21{width:49.688905pt;}
._b{width:53.818227pt;}
._f{width:59.461868pt;}
._24{width:66.909147pt;}
._20{width:71.731200pt;}
._d{width:974.686443pt;}
._1b{width:980.075134pt;}
._13{width:1124.622704pt;}
._e{width:1142.344361pt;}
._10{width:1151.070050pt;}
._17{width:1163.986425pt;}
._1c{width:1212.216011pt;}
._c{width:1280.437938pt;}
._11{width:1283.084706pt;}
._14{width:1353.659310pt;}
._1a{width:1370.237961pt;}
._18{width:1387.400021pt;}
._12{width:1393.399115pt;}
._16{width:1415.973679pt;}
._1d{width:1622.456353pt;}
._15{width:1752.901689pt;}
._1e{width:1803.170821pt;}
._1f{width:1897.136126pt;}
._19{width:2001.768475pt;}
.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;}
.y81{bottom:83.390667pt;}
.y5f{bottom:151.870667pt;}
.y36{bottom:156.449333pt;}
.ya8{bottom:172.389333pt;}
.y35{bottom:174.514667pt;}
.y80{bottom:192.188000pt;}
.y34{bottom:192.580000pt;}
.ya7{bottom:194.896000pt;}
.y7f{bottom:210.254667pt;}
.y33{bottom:210.645333pt;}
.ya6{bottom:210.836000pt;}
.y5e{bottom:217.674667pt;}
.ya5{bottom:226.776000pt;}
.y7e{bottom:228.320000pt;}
.y32{bottom:228.712000pt;}
.y31{bottom:246.777333pt;}
.ya4{bottom:249.282667pt;}
.y5d{bottom:249.334667pt;}
.y7d{bottom:253.900000pt;}
.y30{bottom:264.842667pt;}
.ya3{bottom:265.222667pt;}
.y5c{bottom:267.400000pt;}
.y2f{bottom:282.908000pt;}
.y7c{bottom:286.370667pt;}
.ya2{bottom:287.729333pt;}
.y5b{bottom:293.437333pt;}
.y5a{bottom:298.016000pt;}
.y2e{bottom:300.973333pt;}
.ya1{bottom:303.669333pt;}
.y7b{bottom:304.436000pt;}
.y2d{bottom:319.040000pt;}
.ya0{bottom:326.176000pt;}
.y59{bottom:328.632000pt;}
.y7a{bottom:330.016000pt;}
.y2c{bottom:337.105333pt;}
.y9f{bottom:342.116000pt;}
.y58{bottom:346.698667pt;}
.y12{bottom:348.008000pt;}
.y2b{bottom:355.170667pt;}
.y79{bottom:362.485333pt;}
.y9e{bottom:364.622667pt;}
.y11{bottom:366.073333pt;}
.y57{bottom:371.793333pt;}
.y2a{bottom:373.236000pt;}
.y78{bottom:380.552000pt;}
.y9d{bottom:380.562667pt;}
.y10{bottom:384.138667pt;}
.y9c{bottom:396.502667pt;}
.y56{bottom:397.830667pt;}
.y77{bottom:398.617333pt;}
.yf{bottom:402.204000pt;}
.y55{bottom:402.409333pt;}
.y29{bottom:403.241333pt;}
.y9b{bottom:419.009333pt;}
.ye{bottom:420.270667pt;}
.y76{bottom:424.197333pt;}
.y9a{bottom:434.949333pt;}
.y54{bottom:435.733333pt;}
.yd{bottom:438.336000pt;}
.y28{bottom:439.444000pt;}
.y99{bottom:450.889333pt;}
.yc{bottom:456.401333pt;}
.y75{bottom:456.668000pt;}
.y53{bottom:460.828000pt;}
.y98{bottom:473.396000pt;}
.y27{bottom:473.874667pt;}
.yb{bottom:474.466667pt;}
.y97{bottom:489.336000pt;}
.y52{bottom:492.488000pt;}
.ya{bottom:492.532000pt;}
.y74{bottom:497.184000pt;}
.y96{bottom:505.276000pt;}
.y26{bottom:506.486667pt;}
.y9{bottom:510.598667pt;}
.y51{bottom:513.578667pt;}
.y73{bottom:515.249333pt;}
.y50{bottom:518.157333pt;}
.y8{bottom:528.664000pt;}
.y72{bottom:533.314667pt;}
.y95{bottom:534.957333pt;}
.y4f{bottom:536.222667pt;}
.y25{bottom:539.097333pt;}
.y4e{bottom:549.709333pt;}
.y71{bottom:551.380000pt;}
.y4d{bottom:554.288000pt;}
.y24{bottom:557.162667pt;}
.y7{bottom:563.997333pt;}
.y70{bottom:569.445333pt;}
.y94{bottom:574.313333pt;}
.y23{bottom:575.228000pt;}
.y4c{bottom:579.382667pt;}
.y6f{bottom:587.512000pt;}
.y93{bottom:592.378667pt;}
.y22{bottom:593.294667pt;}
.y6{bottom:596.640000pt;}
.y4b{bottom:606.464000pt;}
.y92{bottom:610.444000pt;}
.y4a{bottom:611.042667pt;}
.y21{bottom:611.360000pt;}
.y6e{bottom:619.981333pt;}
.y5{bottom:622.180000pt;}
.y91{bottom:628.509333pt;}
.y49{bottom:629.108000pt;}
.y48{bottom:642.596000pt;}
.y20{bottom:643.970667pt;}
.y90{bottom:646.574667pt;}
.y47{bottom:647.174667pt;}
.y6d{bottom:660.497333pt;}
.y8f{bottom:664.641333pt;}
.y46{bottom:672.269333pt;}
.y1f{bottom:676.581333pt;}
.y6c{bottom:678.562667pt;}
.y8e{bottom:682.706667pt;}
.y6b{bottom:696.628000pt;}
.y8d{bottom:700.772000pt;}
.y45{bottom:703.928000pt;}
.y1e{bottom:709.193333pt;}
.y6a{bottom:714.693333pt;}
.y8c{bottom:718.837333pt;}
.y44{bottom:721.994667pt;}
.y4{bottom:727.145333pt;}
.y69{bottom:732.760000pt;}
.y43{bottom:740.060000pt;}
.y1d{bottom:741.804000pt;}
.y8b{bottom:750.644000pt;}
.y42{bottom:758.125333pt;}
.y1c{bottom:759.869333pt;}
.y3{bottom:760.284000pt;}
.y68{bottom:765.229333pt;}
.y1b{bottom:777.934667pt;}
.y41{bottom:783.220000pt;}
.y8a{bottom:790.000000pt;}
.y1a{bottom:796.001333pt;}
.y2{bottom:800.134667pt;}
.y67{bottom:805.745333pt;}
.y89{bottom:808.065333pt;}
.y19{bottom:814.066667pt;}
.y40{bottom:815.041333pt;}
.y66{bottom:823.810667pt;}
.y88{bottom:826.130667pt;}
.y18{bottom:832.132000pt;}
.y65{bottom:841.876000pt;}
.y87{bottom:844.197333pt;}
.y17{bottom:850.197333pt;}
.y3f{bottom:854.424000pt;}
.y64{bottom:859.941333pt;}
.y86{bottom:862.262667pt;}
.y16{bottom:868.262667pt;}
.y3e{bottom:872.489333pt;}
.y85{bottom:880.328000pt;}
.y3d{bottom:890.554667pt;}
.y63{bottom:892.412000pt;}
.yad{bottom:895.013333pt;}
.y15{bottom:900.874667pt;}
.y3c{bottom:908.621333pt;}
.y84{bottom:912.134667pt;}
.yac{bottom:917.594667pt;}
.y3b{bottom:926.686667pt;}
.y62{bottom:932.928000pt;}
.y14{bottom:933.485333pt;}
.yab{bottom:933.534667pt;}
.y3a{bottom:944.752000pt;}
.y61{bottom:950.993333pt;}
.y83{bottom:951.490667pt;}
.yaa{bottom:956.117333pt;}
.y39{bottom:962.817333pt;}
.y13{bottom:966.096000pt;}
.y1{bottom:966.744000pt;}
.y60{bottom:969.058667pt;}
.y82{bottom:969.556000pt;}
.ya9{bottom:972.057333pt;}
.y38{bottom:994.638667pt;}
.h6{height:31.880400pt;}
.h2{height:36.874903pt;}
.h10{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.ha{height:56.571288pt;}
.hc{height:56.576621pt;}
.hb{height:61.951067pt;}
.h5{height:67.615733pt;}
.hd{height:74.885955pt;}
.hf{height:74.891288pt;}
.he{height:84.781733pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x1a{left:115.232000pt;}
.x3{left:117.189333pt;}
.x18{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x19{left:143.168000pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.xe{left:302.814667pt;}
.xf{left:314.857333pt;}
.x12{left:323.792000pt;}
.x13{left:335.834667pt;}
.x9{left:353.273333pt;}
.xc{left:354.756000pt;}
.x7{left:389.748000pt;}
.x10{left:393.886667pt;}
.xd{left:398.562667pt;}
.xa{left:400.216000pt;}
.x15{left:431.330667pt;}
.x11{left:446.366667pt;}
.x14{left:451.476000pt;}
.xb{left:453.332000pt;}
.x8{left:464.345333pt;}
.x16{left:503.686667pt;}
.x17{left:593.861333pt;}
}




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