
    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_de174331d0967e9b0f01d595.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;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_8fd2e6a48680546dea32edea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_8ac24ac62d360af8efa44bdf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106445;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_6c58f0a5cf1ca05e0f3dc85e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1e8acf0acd44e1a670abff06.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_7c1a0db25821789ee076d9e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106445;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_54b3d9a76e6ce08be3c7889c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106445;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_660cb9ef9f73ffef9c79d914.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106445;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_143fb2086aedd03e0c1ab245.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-4.722000px;}
.lse{letter-spacing:-2.508000px;}
.ls2f{letter-spacing:-1.788000px;}
.ls2e{letter-spacing:-1.320000px;}
.ls10{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-1.068000px;}
.ls13{letter-spacing:-0.858000px;}
.ls2d{letter-spacing:-0.714000px;}
.ls6{letter-spacing:-0.600000px;}
.ls1b{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.535800px;}
.ls4{letter-spacing:-0.348600px;}
.lsf{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.213000px;}
.ls11{letter-spacing:-0.187200px;}
.ls29{letter-spacing:-0.138000px;}
.ls8{letter-spacing:-0.135600px;}
.ls2a{letter-spacing:-0.123600px;}
.ls19{letter-spacing:-0.086400px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.006480px;}
.ls1f{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.023040px;}
.ls1c{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.118200px;}
.ls24{letter-spacing:0.126480px;}
.lsd{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.184200px;}
.ls2{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.218880px;}
.ls16{letter-spacing:0.219000px;}
.ls23{letter-spacing:0.240480px;}
.ls22{letter-spacing:0.283800px;}
.ls20{letter-spacing:0.319680px;}
.ls15{letter-spacing:0.342600px;}
.lsa{letter-spacing:0.342720px;}
.ls17{letter-spacing:0.347520px;}
.ls25{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.371400px;}
.ls18{letter-spacing:0.371520px;}
.ls2c{letter-spacing:0.732000px;}
.ls26{letter-spacing:2.166480px;}
.ls27{letter-spacing:15.846480px;}
.ls3{letter-spacing:33.491520px;}
.ls1e{letter-spacing:41.682720px;}
.lsc{letter-spacing:49.961280px;}
.ls1d{letter-spacing:66.611520px;}
.ls28{letter-spacing:845.741280px;}
.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;}
}
.wsd{word-spacing:-18.719880px;}
.wsf{word-spacing:-18.691080px;}
.ws10{word-spacing:-18.567480px;}
.ws2{word-spacing:-18.547200px;}
.wsc{word-spacing:-18.532680px;}
.ws5{word-spacing:-18.492480px;}
.ws7{word-spacing:-18.466680px;}
.ws1{word-spacing:-18.371520px;}
.ws3{word-spacing:-18.348480px;}
.ws11{word-spacing:-18.262080px;}
.ws4{word-spacing:-18.212880px;}
.ws13{word-spacing:-18.210480px;}
.wsb{word-spacing:-18.161280px;}
.wse{word-spacing:-18.135480px;}
.ws8{word-spacing:-18.060480px;}
.ws6{word-spacing:-17.999880px;}
.ws12{word-spacing:-17.812680px;}
.ws17{word-spacing:-17.285520px;}
.ws18{word-spacing:-16.837320px;}
.ws14{word-spacing:-16.566480px;}
.wsa{word-spacing:-16.553520px;}
.ws15{word-spacing:-16.429920px;}
.ws16{word-spacing:-11.831520px;}
.ws9{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
._1d{margin-left:-5.470560px;}
._b{margin-left:-4.195200px;}
._3{margin-left:-2.627520px;}
._1{margin-left:-1.258560px;}
._2{width:1.416000px;}
._11{width:3.312000px;}
._10{width:4.570560px;}
._c{width:5.762880px;}
._5{width:7.352640px;}
._4{width:8.611200px;}
._6{width:9.840000px;}
._d{width:11.194560px;}
._1e{width:12.364800px;}
._12{width:13.380480px;}
._17{width:14.566320px;}
._18{width:15.758880px;}
._e{width:16.851360px;}
._1a{width:20.336640px;}
._a{width:21.667200px;}
._9{width:22.779840px;}
._15{width:24.243840px;}
._1b{width:25.564800px;}
._1c{width:26.799840px;}
._14{width:28.519920px;}
._13{width:29.940480px;}
._f{width:31.727040px;}
._7{width:33.121920px;}
._8{width:34.709760px;}
._16{width:35.749920px;}
._19{width:37.160640px;}
._21{width:38.784240px;}
._1f{width:41.267520px;}
._20{width:42.882240px;}
._22{width:50.143680px;}
._0{width:66.611520px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(54,95,145);}
.fc2{color:rgb(58,101,152);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:126.000000px;}
.y27{bottom:-17.640000px;}
.y0{bottom:0.000000px;}
.y26{bottom:2.520000px;}
.y24{bottom:56.700000px;}
.y23{bottom:75.780000px;}
.y4{bottom:97.125005px;}
.y59{bottom:104.400000px;}
.yd0{bottom:106.380000px;}
.ya9{bottom:115.380000px;}
.ya6{bottom:120.960000px;}
.y58{bottom:124.560000px;}
.ycf{bottom:126.540000px;}
.ya8{bottom:135.720000px;}
.y1f{bottom:139.264499px;}
.y8a{bottom:141.120000px;}
.y57{bottom:144.900000px;}
.yce{bottom:146.880000px;}
.yb4{bottom:155.880000px;}
.ya7{bottom:156.960000px;}
.y89{bottom:161.490000px;}
.y56{bottom:165.090000px;}
.ycd{bottom:167.070000px;}
.yb3{bottom:176.070000px;}
.y88{bottom:181.650000px;}
.y55{bottom:185.430000px;}
.ycc{bottom:187.410000px;}
.yb2{bottom:196.410000px;}
.y16{bottom:196.933500px;}
.y87{bottom:201.810000px;}
.y54{bottom:205.590000px;}
.ycb{bottom:207.570000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.yb1{bottom:216.570000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y86{bottom:222.150000px;}
.y53{bottom:225.750000px;}
.yca{bottom:227.730000px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.yb0{bottom:236.910000px;}
.y85{bottom:242.310000px;}
.y52{bottom:246.090000px;}
.yc9{bottom:248.070000px;}
.yaf{bottom:257.070000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.ya5{bottom:262.650000px;}
.y84{bottom:263.550000px;}
.y51{bottom:266.250000px;}
.yc8{bottom:268.230000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.yae{bottom:277.230000px;}
.ya4{bottom:282.810000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y50{bottom:286.410000px;}
.y83{bottom:288.390000px;}
.yc7{bottom:288.570000px;}
.ye4{bottom:297.390000px;}
.yad{bottom:297.570000px;}
.ya3{bottom:302.970000px;}
.y4f{bottom:308.370000px;}
.y82{bottom:308.550000px;}
.yc6{bottom:308.730000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.yac{bottom:317.730000px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.ya2{bottom:323.310000px;}
.ye3{bottom:325.110000px;}
.y81{bottom:328.710000px;}
.yc5{bottom:328.890000px;}
.y4e{bottom:336.090000px;}
.yab{bottom:338.070000px;}
.ya1{bottom:343.470000px;}
.ye2{bottom:344.910000px;}
.yd{bottom:348.133500px;}
.y80{bottom:349.050000px;}
.yc4{bottom:349.230000px;}
.y4d{bottom:356.430000px;}
.yaa{bottom:359.310000px;}
.ye1{bottom:363.270000px;}
.ya0{bottom:363.810000px;}
.y7f{bottom:369.210000px;}
.yc3{bottom:371.010000px;}
.y4c{bottom:376.590000px;}
.ye0{bottom:381.810000px;}
.y9f{bottom:383.970000px;}
.yc{bottom:386.785499px;}
.y7e{bottom:389.550000px;}
.y4b{bottom:396.750000px;}
.yc2{bottom:398.910000px;}
.ydf{bottom:400.170000px;}
.y9e{bottom:404.130000px;}
.yb{bottom:408.044999px;}
.y7d{bottom:409.755000px;}
.y4a{bottom:417.135000px;}
.yde{bottom:418.575000px;}
.yc1{bottom:419.115000px;}
.y9d{bottom:424.515000px;}
.y7c{bottom:429.915000px;}
.ydd{bottom:436.935000px;}
.y49{bottom:437.295000px;}
.yc0{bottom:439.275000px;}
.y9c{bottom:444.675000px;}
.y7b{bottom:451.155000px;}
.ydc{bottom:455.295000px;}
.y48{bottom:457.635000px;}
.ybf{bottom:459.615000px;}
.y9b{bottom:465.015000px;}
.ydb{bottom:473.655000px;}
.y7a{bottom:477.615000px;}
.y47{bottom:477.795000px;}
.ybe{bottom:479.775000px;}
.y9a{bottom:485.175000px;}
.yda{bottom:492.195000px;}
.y46{bottom:497.955000px;}
.ybd{bottom:500.115000px;}
.ya{bottom:502.864502px;}
.y79{bottom:505.335000px;}
.y104{bottom:507.315000px;}
.yd9{bottom:510.555000px;}
.y45{bottom:518.295000px;}
.ybc{bottom:520.275000px;}
.y9{bottom:520.864502px;}
.y78{bottom:525.675000px;}
.y103{bottom:527.475000px;}
.yd8{bottom:528.915000px;}
.y44{bottom:538.455000px;}
.y8{bottom:538.864499px;}
.ybb{bottom:540.435000px;}
.y77{bottom:545.835000px;}
.yd7{bottom:547.275000px;}
.y102{bottom:547.635000px;}
.y7{bottom:556.864499px;}
.y43{bottom:558.795000px;}
.yba{bottom:560.775000px;}
.yd6{bottom:565.635000px;}
.y76{bottom:565.995000px;}
.y101{bottom:567.975000px;}
.y42{bottom:578.955000px;}
.yb9{bottom:580.935000px;}
.yd5{bottom:583.995000px;}
.y75{bottom:586.335000px;}
.y100{bottom:588.135000px;}
.y41{bottom:599.115000px;}
.yb8{bottom:601.095000px;}
.yd4{bottom:602.535000px;}
.y74{bottom:606.495000px;}
.yff{bottom:608.295000px;}
.y40{bottom:619.455000px;}
.yd3{bottom:620.895000px;}
.yb7{bottom:621.075000px;}
.y73{bottom:626.835000px;}
.yfe{bottom:628.635000px;}
.yb6{bottom:636.195000px;}
.yd2{bottom:639.255000px;}
.y3f{bottom:639.615000px;}
.y6{bottom:645.510000px;}
.y72{bottom:646.995000px;}
.yfd{bottom:648.795000px;}
.yd1{bottom:659.625000px;}
.y3e{bottom:659.985000px;}
.y5{bottom:666.771000px;}
.y71{bottom:667.185000px;}
.yfc{bottom:669.165000px;}
.y3d{bottom:680.145000px;}
.y70{bottom:687.525000px;}
.yfb{bottom:689.325000px;}
.y3c{bottom:700.305000px;}
.y6f{bottom:707.685000px;}
.yfa{bottom:709.485000px;}
.y3b{bottom:720.645000px;}
.y6e{bottom:728.025000px;}
.yf9{bottom:729.825000px;}
.y3a{bottom:740.805000px;}
.y6d{bottom:748.185000px;}
.yf8{bottom:749.985000px;}
.y3{bottom:752.599495px;}
.y39{bottom:761.145000px;}
.y6c{bottom:768.345000px;}
.yf7{bottom:770.325000px;}
.y38{bottom:781.305000px;}
.y6b{bottom:788.685000px;}
.yf6{bottom:790.485000px;}
.y37{bottom:801.465000px;}
.y6a{bottom:808.845000px;}
.yf5{bottom:810.645000px;}
.y36{bottom:821.805000px;}
.y69{bottom:829.185000px;}
.y99{bottom:830.085000px;}
.yf4{bottom:830.985000px;}
.y35{bottom:841.965000px;}
.y68{bottom:849.345000px;}
.yf3{bottom:851.145000px;}
.y98{bottom:856.545000px;}
.y34{bottom:860.145000px;}
.y67{bottom:869.505000px;}
.yf2{bottom:871.485000px;}
.y33{bottom:873.105000px;}
.y2{bottom:879.369000px;}
.y97{bottom:884.265000px;}
.y66{bottom:889.845000px;}
.yf1{bottom:891.645000px;}
.yb5{bottom:898.845000px;}
.y32{bottom:901.230000px;}
.y96{bottom:904.470000px;}
.y65{bottom:910.050000px;}
.yf0{bottom:911.850000px;}
.y31{bottom:923.190000px;}
.y95{bottom:924.810000px;}
.y64{bottom:930.390000px;}
.yef{bottom:932.190000px;}
.y94{bottom:944.970000px;}
.y30{bottom:945.330000px;}
.y63{bottom:950.550000px;}
.yee{bottom:952.350000px;}
.y93{bottom:965.310000px;}
.y1{bottom:966.726000px;}
.y2f{bottom:967.290000px;}
.y62{bottom:970.710000px;}
.yed{bottom:972.690000px;}
.y92{bottom:985.470000px;}
.y2e{bottom:989.430000px;}
.y61{bottom:991.050000px;}
.yec{bottom:992.850000px;}
.y91{bottom:1005.630000px;}
.y60{bottom:1011.210000px;}
.y2d{bottom:1011.570000px;}
.yeb{bottom:1013.010000px;}
.y90{bottom:1025.970000px;}
.y5f{bottom:1031.370000px;}
.yea{bottom:1033.350000px;}
.y2c{bottom:1033.530000px;}
.y8f{bottom:1046.130000px;}
.y5e{bottom:1051.710000px;}
.ye9{bottom:1053.510000px;}
.y2b{bottom:1055.310000px;}
.y8e{bottom:1066.470000px;}
.y5d{bottom:1071.870000px;}
.ye8{bottom:1073.670000px;}
.y2a{bottom:1078.890000px;}
.y8d{bottom:1086.630000px;}
.y5c{bottom:1092.210000px;}
.ye7{bottom:1094.010000px;}
.y8c{bottom:1106.790000px;}
.ye6{bottom:1112.190000px;}
.y5b{bottom:1112.370000px;}
.y29{bottom:1117.590000px;}
.ye5{bottom:1124.970000px;}
.y8b{bottom:1128.030000px;}
.y5a{bottom:1132.530000px;}
.y22{bottom:1152.900000px;}
.y21{bottom:1173.060000px;}
.y20{bottom:1193.400000px;}
.y28{bottom:1198.440000px;}
.y25{bottom:1200.420000px;}
.hd{height:19.080000px;}
.h12{height:27.168750px;}
.h8{height:32.130000px;}
.h9{height:39.648000px;}
.h3{height:48.195000px;}
.he{height:49.809375px;}
.h14{height:53.690625px;}
.h7{height:56.640000px;}
.h6{height:59.472000px;}
.hb{height:59.512500px;}
.h15{height:61.423863px;}
.h10{height:64.687500px;}
.h2{height:67.968000px;}
.hc{height:68.084282px;}
.h11{height:72.007031px;}
.h13{height:75.684375px;}
.hf{height:94.746094px;}
.h5{height:96.288000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.ha{height:1263.060000px;}
.w6{width:243.795000px;}
.w5{width:359.355000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:10.800000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x8{left:115.245000px;}
.xb{left:126.755987px;}
.x9{left:133.415987px;}
.xa{left:160.409987px;}
.x4{left:203.484001px;}
.x5{left:432.104987px;}
.x3{left:454.959000px;}
.x7{left:541.725000px;}
.xc{left:732.059987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-4.197333pt;}
.lse{letter-spacing:-2.229333pt;}
.ls2f{letter-spacing:-1.589333pt;}
.ls2e{letter-spacing:-1.173333pt;}
.ls10{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-0.949333pt;}
.ls13{letter-spacing:-0.762667pt;}
.ls2d{letter-spacing:-0.634667pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls1b{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.476267pt;}
.ls4{letter-spacing:-0.309867pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.189333pt;}
.ls11{letter-spacing:-0.166400pt;}
.ls29{letter-spacing:-0.122667pt;}
.ls8{letter-spacing:-0.120533pt;}
.ls2a{letter-spacing:-0.109867pt;}
.ls19{letter-spacing:-0.076800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.005760pt;}
.ls1f{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.020480pt;}
.ls1c{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.105067pt;}
.ls24{letter-spacing:0.112427pt;}
.lsd{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.163733pt;}
.ls2{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.194560pt;}
.ls16{letter-spacing:0.194667pt;}
.ls23{letter-spacing:0.213760pt;}
.ls22{letter-spacing:0.252267pt;}
.ls20{letter-spacing:0.284160pt;}
.ls15{letter-spacing:0.304533pt;}
.lsa{letter-spacing:0.304640pt;}
.ls17{letter-spacing:0.308907pt;}
.ls25{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.330133pt;}
.ls18{letter-spacing:0.330240pt;}
.ls2c{letter-spacing:0.650667pt;}
.ls26{letter-spacing:1.925760pt;}
.ls27{letter-spacing:14.085760pt;}
.ls3{letter-spacing:29.770240pt;}
.ls1e{letter-spacing:37.051307pt;}
.lsc{letter-spacing:44.410027pt;}
.ls1d{letter-spacing:59.210240pt;}
.ls28{letter-spacing:751.770027pt;}
.wsd{word-spacing:-16.639893pt;}
.wsf{word-spacing:-16.614293pt;}
.ws10{word-spacing:-16.504427pt;}
.ws2{word-spacing:-16.486400pt;}
.wsc{word-spacing:-16.473493pt;}
.ws5{word-spacing:-16.437760pt;}
.ws7{word-spacing:-16.414827pt;}
.ws1{word-spacing:-16.330240pt;}
.ws3{word-spacing:-16.309760pt;}
.ws11{word-spacing:-16.232960pt;}
.ws4{word-spacing:-16.189227pt;}
.ws13{word-spacing:-16.187093pt;}
.wsb{word-spacing:-16.143360pt;}
.wse{word-spacing:-16.120427pt;}
.ws8{word-spacing:-16.053760pt;}
.ws6{word-spacing:-15.999893pt;}
.ws12{word-spacing:-15.833493pt;}
.ws17{word-spacing:-15.364907pt;}
.ws18{word-spacing:-14.966507pt;}
.ws14{word-spacing:-14.725760pt;}
.wsa{word-spacing:-14.714240pt;}
.ws15{word-spacing:-14.604373pt;}
.ws16{word-spacing:-10.516907pt;}
.ws9{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
._1d{margin-left:-4.862720pt;}
._b{margin-left:-3.729067pt;}
._3{margin-left:-2.335573pt;}
._1{margin-left:-1.118720pt;}
._2{width:1.258667pt;}
._11{width:2.944000pt;}
._10{width:4.062720pt;}
._c{width:5.122560pt;}
._5{width:6.535680pt;}
._4{width:7.654400pt;}
._6{width:8.746667pt;}
._d{width:9.950720pt;}
._1e{width:10.990933pt;}
._12{width:11.893760pt;}
._17{width:12.947840pt;}
._18{width:14.007893pt;}
._e{width:14.978987pt;}
._1a{width:18.077013pt;}
._a{width:19.259733pt;}
._9{width:20.248747pt;}
._15{width:21.550080pt;}
._1b{width:22.724267pt;}
._1c{width:23.822080pt;}
._14{width:25.351040pt;}
._13{width:26.613760pt;}
._f{width:28.201813pt;}
._7{width:29.441707pt;}
._8{width:30.853120pt;}
._16{width:31.777707pt;}
._19{width:33.031680pt;}
._21{width:34.474880pt;}
._1f{width:36.682240pt;}
._20{width:38.117547pt;}
._22{width:44.572160pt;}
._0{width:59.210240pt;}
.fs8{font-size:26.880000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:112.000000pt;}
.y27{bottom:-15.680000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:2.240000pt;}
.y24{bottom:50.400000pt;}
.y23{bottom:67.360000pt;}
.y4{bottom:86.333337pt;}
.y59{bottom:92.800000pt;}
.yd0{bottom:94.560000pt;}
.ya9{bottom:102.560000pt;}
.ya6{bottom:107.520000pt;}
.y58{bottom:110.720000pt;}
.ycf{bottom:112.480000pt;}
.ya8{bottom:120.640000pt;}
.y1f{bottom:123.790666pt;}
.y8a{bottom:125.440000pt;}
.y57{bottom:128.800000pt;}
.yce{bottom:130.560000pt;}
.yb4{bottom:138.560000pt;}
.ya7{bottom:139.520000pt;}
.y89{bottom:143.546667pt;}
.y56{bottom:146.746667pt;}
.ycd{bottom:148.506667pt;}
.yb3{bottom:156.506667pt;}
.y88{bottom:161.466667pt;}
.y55{bottom:164.826667pt;}
.ycc{bottom:166.586667pt;}
.yb2{bottom:174.586667pt;}
.y16{bottom:175.052000pt;}
.y87{bottom:179.386667pt;}
.y54{bottom:182.746667pt;}
.ycb{bottom:184.506667pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.yb1{bottom:192.506667pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y86{bottom:197.466667pt;}
.y53{bottom:200.666667pt;}
.yca{bottom:202.426667pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.yb0{bottom:210.586667pt;}
.y85{bottom:215.386667pt;}
.y52{bottom:218.746667pt;}
.yc9{bottom:220.506667pt;}
.yaf{bottom:228.506667pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.ya5{bottom:233.466667pt;}
.y84{bottom:234.266667pt;}
.y51{bottom:236.666667pt;}
.yc8{bottom:238.426667pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.yae{bottom:246.426667pt;}
.ya4{bottom:251.386667pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y50{bottom:254.586667pt;}
.y83{bottom:256.346667pt;}
.yc7{bottom:256.506667pt;}
.ye4{bottom:264.346667pt;}
.yad{bottom:264.506667pt;}
.ya3{bottom:269.306667pt;}
.y4f{bottom:274.106667pt;}
.y82{bottom:274.266667pt;}
.yc6{bottom:274.426667pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.yac{bottom:282.426667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.ya2{bottom:287.386667pt;}
.ye3{bottom:288.986667pt;}
.y81{bottom:292.186667pt;}
.yc5{bottom:292.346667pt;}
.y4e{bottom:298.746667pt;}
.yab{bottom:300.506667pt;}
.ya1{bottom:305.306667pt;}
.ye2{bottom:306.586667pt;}
.yd{bottom:309.452000pt;}
.y80{bottom:310.266667pt;}
.yc4{bottom:310.426667pt;}
.y4d{bottom:316.826667pt;}
.yaa{bottom:319.386667pt;}
.ye1{bottom:322.906667pt;}
.ya0{bottom:323.386667pt;}
.y7f{bottom:328.186667pt;}
.yc3{bottom:329.786667pt;}
.y4c{bottom:334.746667pt;}
.ye0{bottom:339.386667pt;}
.y9f{bottom:341.306667pt;}
.yc{bottom:343.809333pt;}
.y7e{bottom:346.266667pt;}
.y4b{bottom:352.666667pt;}
.yc2{bottom:354.586667pt;}
.ydf{bottom:355.706667pt;}
.y9e{bottom:359.226667pt;}
.yb{bottom:362.706666pt;}
.y7d{bottom:364.226667pt;}
.y4a{bottom:370.786667pt;}
.yde{bottom:372.066667pt;}
.yc1{bottom:372.546667pt;}
.y9d{bottom:377.346667pt;}
.y7c{bottom:382.146667pt;}
.ydd{bottom:388.386667pt;}
.y49{bottom:388.706667pt;}
.yc0{bottom:390.466667pt;}
.y9c{bottom:395.266667pt;}
.y7b{bottom:401.026667pt;}
.ydc{bottom:404.706667pt;}
.y48{bottom:406.786667pt;}
.ybf{bottom:408.546667pt;}
.y9b{bottom:413.346667pt;}
.ydb{bottom:421.026667pt;}
.y7a{bottom:424.546667pt;}
.y47{bottom:424.706667pt;}
.ybe{bottom:426.466667pt;}
.y9a{bottom:431.266667pt;}
.yda{bottom:437.506667pt;}
.y46{bottom:442.626667pt;}
.ybd{bottom:444.546667pt;}
.ya{bottom:446.990669pt;}
.y79{bottom:449.186667pt;}
.y104{bottom:450.946667pt;}
.yd9{bottom:453.826667pt;}
.y45{bottom:460.706667pt;}
.ybc{bottom:462.466667pt;}
.y9{bottom:462.990669pt;}
.y78{bottom:467.266667pt;}
.y103{bottom:468.866667pt;}
.yd8{bottom:470.146667pt;}
.y44{bottom:478.626667pt;}
.y8{bottom:478.990666pt;}
.ybb{bottom:480.386667pt;}
.y77{bottom:485.186667pt;}
.yd7{bottom:486.466667pt;}
.y102{bottom:486.786667pt;}
.y7{bottom:494.990666pt;}
.y43{bottom:496.706667pt;}
.yba{bottom:498.466667pt;}
.yd6{bottom:502.786667pt;}
.y76{bottom:503.106667pt;}
.y101{bottom:504.866667pt;}
.y42{bottom:514.626667pt;}
.yb9{bottom:516.386667pt;}
.yd5{bottom:519.106667pt;}
.y75{bottom:521.186667pt;}
.y100{bottom:522.786667pt;}
.y41{bottom:532.546667pt;}
.yb8{bottom:534.306667pt;}
.yd4{bottom:535.586667pt;}
.y74{bottom:539.106667pt;}
.yff{bottom:540.706667pt;}
.y40{bottom:550.626667pt;}
.yd3{bottom:551.906667pt;}
.yb7{bottom:552.066667pt;}
.y73{bottom:557.186667pt;}
.yfe{bottom:558.786667pt;}
.yb6{bottom:565.506667pt;}
.yd2{bottom:568.226667pt;}
.y3f{bottom:568.546667pt;}
.y6{bottom:573.786667pt;}
.y72{bottom:575.106667pt;}
.yfd{bottom:576.706667pt;}
.yd1{bottom:586.333333pt;}
.y3e{bottom:586.653333pt;}
.y5{bottom:592.685334pt;}
.y71{bottom:593.053333pt;}
.yfc{bottom:594.813333pt;}
.y3d{bottom:604.573333pt;}
.y70{bottom:611.133333pt;}
.yfb{bottom:612.733333pt;}
.y3c{bottom:622.493333pt;}
.y6f{bottom:629.053333pt;}
.yfa{bottom:630.653333pt;}
.y3b{bottom:640.573333pt;}
.y6e{bottom:647.133333pt;}
.yf9{bottom:648.733333pt;}
.y3a{bottom:658.493333pt;}
.y6d{bottom:665.053333pt;}
.yf8{bottom:666.653333pt;}
.y3{bottom:668.977329pt;}
.y39{bottom:676.573333pt;}
.y6c{bottom:682.973333pt;}
.yf7{bottom:684.733333pt;}
.y38{bottom:694.493333pt;}
.y6b{bottom:701.053333pt;}
.yf6{bottom:702.653333pt;}
.y37{bottom:712.413333pt;}
.y6a{bottom:718.973333pt;}
.yf5{bottom:720.573333pt;}
.y36{bottom:730.493333pt;}
.y69{bottom:737.053333pt;}
.y99{bottom:737.853333pt;}
.yf4{bottom:738.653333pt;}
.y35{bottom:748.413333pt;}
.y68{bottom:754.973333pt;}
.yf3{bottom:756.573333pt;}
.y98{bottom:761.373333pt;}
.y34{bottom:764.573333pt;}
.y67{bottom:772.893333pt;}
.yf2{bottom:774.653333pt;}
.y33{bottom:776.093333pt;}
.y2{bottom:781.661334pt;}
.y97{bottom:786.013333pt;}
.y66{bottom:790.973333pt;}
.yf1{bottom:792.573333pt;}
.yb5{bottom:798.973333pt;}
.y32{bottom:801.093333pt;}
.y96{bottom:803.973333pt;}
.y65{bottom:808.933333pt;}
.yf0{bottom:810.533333pt;}
.y31{bottom:820.613333pt;}
.y95{bottom:822.053333pt;}
.y64{bottom:827.013333pt;}
.yef{bottom:828.613333pt;}
.y94{bottom:839.973333pt;}
.y30{bottom:840.293333pt;}
.y63{bottom:844.933333pt;}
.yee{bottom:846.533333pt;}
.y93{bottom:858.053333pt;}
.y1{bottom:859.312000pt;}
.y2f{bottom:859.813333pt;}
.y62{bottom:862.853333pt;}
.yed{bottom:864.613333pt;}
.y92{bottom:875.973333pt;}
.y2e{bottom:879.493333pt;}
.y61{bottom:880.933333pt;}
.yec{bottom:882.533333pt;}
.y91{bottom:893.893333pt;}
.y60{bottom:898.853333pt;}
.y2d{bottom:899.173333pt;}
.yeb{bottom:900.453333pt;}
.y90{bottom:911.973333pt;}
.y5f{bottom:916.773333pt;}
.yea{bottom:918.533333pt;}
.y2c{bottom:918.693333pt;}
.y8f{bottom:929.893333pt;}
.y5e{bottom:934.853333pt;}
.ye9{bottom:936.453333pt;}
.y2b{bottom:938.053333pt;}
.y8e{bottom:947.973333pt;}
.y5d{bottom:952.773333pt;}
.ye8{bottom:954.373333pt;}
.y2a{bottom:959.013333pt;}
.y8d{bottom:965.893333pt;}
.y5c{bottom:970.853333pt;}
.ye7{bottom:972.453333pt;}
.y8c{bottom:983.813333pt;}
.ye6{bottom:988.613333pt;}
.y5b{bottom:988.773333pt;}
.y29{bottom:993.413333pt;}
.ye5{bottom:999.973333pt;}
.y8b{bottom:1002.693333pt;}
.y5a{bottom:1006.693333pt;}
.y22{bottom:1024.800000pt;}
.y21{bottom:1042.720000pt;}
.y20{bottom:1060.800000pt;}
.y28{bottom:1065.280000pt;}
.y25{bottom:1067.040000pt;}
.hd{height:16.960000pt;}
.h12{height:24.150000pt;}
.h8{height:28.560000pt;}
.h9{height:35.242667pt;}
.h3{height:42.840000pt;}
.he{height:44.275000pt;}
.h14{height:47.725000pt;}
.h7{height:50.346667pt;}
.h6{height:52.864000pt;}
.hb{height:52.900000pt;}
.h15{height:54.598989pt;}
.h10{height:57.500000pt;}
.h2{height:60.416000pt;}
.hc{height:60.519362pt;}
.h11{height:64.006250pt;}
.h13{height:67.275000pt;}
.hf{height:84.218750pt;}
.h5{height:85.589333pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.720000pt;}
.w6{width:216.706667pt;}
.w5{width:319.426667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.600000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x8{left:102.440000pt;}
.xb{left:112.671988pt;}
.x9{left:118.591988pt;}
.xa{left:142.586655pt;}
.x4{left:180.874667pt;}
.x5{left:384.093322pt;}
.x3{left:404.408000pt;}
.x7{left:481.533333pt;}
.xc{left:650.719988pt;}
}




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