
    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_78c9eef897d7ee7fe129be0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7355efcd7f11c39c62329994.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b1743aedb09f839f04a14616.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_c84ea02414cb198932b4bcac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6f6e5005810e4878612e80ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c84c29bf72ab342724b72245.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_6dbf3ca08122d724ab92eac5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2cc09d29f8e39012c12fbe31.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5d660de7915083689d32441d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_226ee08f9ee507918b50a991.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_96d9df444711776a8b5db8f1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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);}
.v1{vertical-align:-73.440000px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-0.972000px;}
.ls9{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.630000px;}
.ls13{letter-spacing:-0.507000px;}
.ls8{letter-spacing:-0.089400px;}
.lsb{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.lse{letter-spacing:0.020160px;}
.ls5{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.493920px;}
.ls14{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.869760px;}
.ls2{letter-spacing:1.080000px;}
.lsf{letter-spacing:3.600000px;}
.ls15{letter-spacing:9.540000px;}
.ls16{letter-spacing:16.306560px;}
.ls3{letter-spacing:16.560000px;}
.ls11{letter-spacing:42.226560px;}
.ls10{letter-spacing:46.546560px;}
.ls12{letter-spacing:49.426560px;}
.ls4{letter-spacing:63.826560px;}
.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;}
}
.ws6{word-spacing:-60.480000px;}
.wsc{word-spacing:-15.627000px;}
.wsa{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.613000px;}
.ws5{word-spacing:-14.148000px;}
.ws4{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.050000px;}
.ws1{word-spacing:-11.160000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
._15{margin-left:-3.484800px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._c{width:4.416960px;}
._d{width:5.905440px;}
._8{width:7.228800px;}
._7{width:8.449920px;}
._6{width:10.123200px;}
._11{width:11.134080px;}
._13{width:12.424320px;}
._12{width:13.659840px;}
._16{width:16.908480px;}
._b{width:18.126720px;}
._a{width:19.212480px;}
._9{width:20.220480px;}
._f{width:21.314880px;}
._10{width:22.878720px;}
._e{width:24.312960px;}
._17{width:26.415360px;}
._14{width:28.198080px;}
._5{width:453.723840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:2.515500px;}
.y5{bottom:3.960000px;}
.y58{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y4a{bottom:10.435500px;}
.y56{bottom:14.755500px;}
.y4{bottom:21.240000px;}
.y41{bottom:22.320000px;}
.y55{bottom:32.035500px;}
.y49{bottom:39.955500px;}
.y40{bottom:40.680000px;}
.y3{bottom:44.280000px;}
.y48{bottom:51.874500px;}
.y54{bottom:53.314500px;}
.y7{bottom:57.636000px;}
.y3f{bottom:59.040000px;}
.y47{bottom:64.834500px;}
.y53{bottom:72.394500px;}
.y3e{bottom:75.960000px;}
.y46{bottom:78.154500px;}
.y52{bottom:88.234500px;}
.y3d{bottom:93.960000px;}
.y51{bottom:97.234500px;}
.y42{bottom:98.320500px;}
.y45{bottom:99.754500px;}
.yc9{bottom:103.716000px;}
.y91{bottom:105.516000px;}
.y50{bottom:116.314500px;}
.yfa{bottom:118.476000px;}
.y3c{bottom:120.645000px;}
.yc8{bottom:121.356000px;}
.y90{bottom:123.876000px;}
.y4f{bottom:131.794500px;}
.yf9{bottom:135.756000px;}
.y3b{bottom:137.925000px;}
.yc7{bottom:138.276000px;}
.y8f{bottom:142.272000px;}
.y4e{bottom:147.274500px;}
.yf8{bottom:153.075000px;}
.y3a{bottom:155.205000px;}
.y8e{bottom:159.555000px;}
.y44{bottom:162.034500px;}
.y4d{bottom:162.754500px;}
.yc6{bottom:164.955000px;}
.yf7{bottom:170.355000px;}
.y39{bottom:172.485000px;}
.y43{bottom:172.834500px;}
.y8d{bottom:176.835000px;}
.y4c{bottom:178.264500px;}
.yc5{bottom:182.235000px;}
.yf6{bottom:187.635000px;}
.y38{bottom:189.765000px;}
.y8c{bottom:194.115000px;}
.yc4{bottom:199.515000px;}
.yf5{bottom:204.915000px;}
.y37{bottom:207.045000px;}
.y8b{bottom:211.395000px;}
.yc3{bottom:216.795000px;}
.yf4{bottom:222.195000px;}
.y36{bottom:224.325000px;}
.y8a{bottom:228.315000px;}
.yc2{bottom:233.715000px;}
.yf3{bottom:239.475000px;}
.y35{bottom:241.635000px;}
.yc1{bottom:251.355000px;}
.y89{bottom:254.955000px;}
.yf2{bottom:256.395000px;}
.y34{bottom:258.915000px;}
.yc0{bottom:268.635000px;}
.y88{bottom:272.235000px;}
.y33{bottom:275.835000px;}
.yf1{bottom:283.065000px;}
.ybf{bottom:285.585000px;}
.y87{bottom:289.185000px;}
.y32{bottom:293.115000px;}
.yf0{bottom:299.985000px;}
.yc{bottom:300.705000px;}
.ybe{bottom:302.505000px;}
.y86{bottom:306.465000px;}
.y31{bottom:310.395000px;}
.yef{bottom:318.345000px;}
.ybd{bottom:320.145000px;}
.y85{bottom:323.745000px;}
.y30{bottom:327.675000px;}
.yee{bottom:335.625000px;}
.ybc{bottom:338.505000px;}
.y84{bottom:341.025000px;}
.y2f{bottom:344.955000px;}
.y123{bottom:351.825000px;}
.yed{bottom:353.985000px;}
.ybb{bottom:356.865000px;}
.y83{bottom:358.305000px;}
.y2e{bottom:362.235000px;}
.y122{bottom:369.465000px;}
.yec{bottom:371.265000px;}
.yba{bottom:375.225000px;}
.y82{bottom:375.585000px;}
.y1a{bottom:377.025000px;}
.y2d{bottom:379.545000px;}
.y121{bottom:386.745000px;}
.yeb{bottom:388.185000px;}
.yb9{bottom:392.505000px;}
.y81{bottom:392.865000px;}
.y2c{bottom:396.825000px;}
.y19{bottom:401.145000px;}
.y120{bottom:404.025000px;}
.yea{bottom:405.870000px;}
.yb8{bottom:409.830000px;}
.y80{bottom:410.190000px;}
.y2b{bottom:413.745000px;}
.y11f{bottom:421.350000px;}
.ye9{bottom:423.150000px;}
.y18{bottom:425.265000px;}
.yb7{bottom:426.750000px;}
.y7f{bottom:427.470000px;}
.y11e{bottom:438.630000px;}
.y2a{bottom:439.665000px;}
.ye8{bottom:441.510000px;}
.yb6{bottom:444.390000px;}
.y7e{bottom:444.750000px;}
.y17{bottom:449.385000px;}
.y29{bottom:455.145000px;}
.y11d{bottom:455.910000px;}
.ye7{bottom:458.790000px;}
.yb5{bottom:461.670000px;}
.y7d{bottom:462.030000px;}
.y28{bottom:470.625000px;}
.y11c{bottom:472.830000px;}
.y16{bottom:473.505000px;}
.ye6{bottom:477.150000px;}
.yb4{bottom:478.230000px;}
.y7c{bottom:478.950000px;}
.y27{bottom:486.105000px;}
.y11b{bottom:490.110000px;}
.ye5{bottom:494.070000px;}
.yb3{bottom:495.870000px;}
.y7b{bottom:496.230000px;}
.y15{bottom:497.625000px;}
.y26{bottom:501.630000px;}
.y11a{bottom:507.390000px;}
.ye4{bottom:511.350000px;}
.yb2{bottom:513.150000px;}
.y7a{bottom:513.510000px;}
.y25{bottom:517.110000px;}
.y14{bottom:521.790000px;}
.y119{bottom:524.670000px;}
.ye3{bottom:528.630000px;}
.yb1{bottom:530.430000px;}
.y79{bottom:530.790000px;}
.y24{bottom:532.950000px;}
.y118{bottom:541.980000px;}
.y13{bottom:545.910000px;}
.ye2{bottom:547.020000px;}
.yb0{bottom:547.740000px;}
.y78{bottom:548.100000px;}
.y23{bottom:548.430000px;}
.y117{bottom:559.260000px;}
.y22{bottom:563.910000px;}
.ye1{bottom:564.300000px;}
.yaf{bottom:565.020000px;}
.y77{bottom:565.380000px;}
.y12{bottom:570.030000px;}
.y116{bottom:576.540000px;}
.y21{bottom:579.390000px;}
.ye0{bottom:581.580000px;}
.yae{bottom:582.300000px;}
.y76{bottom:582.660000px;}
.y115{bottom:593.820000px;}
.y11{bottom:594.510000px;}
.y20{bottom:594.870000px;}
.ydf{bottom:598.860000px;}
.yad{bottom:599.580000px;}
.y75{bottom:608.940000px;}
.y1f{bottom:610.350000px;}
.y114{bottom:611.100000px;}
.yde{bottom:616.140000px;}
.yac{bottom:616.860000px;}
.y10{bottom:618.630000px;}
.y1e{bottom:625.830000px;}
.y74{bottom:626.220000px;}
.y113{bottom:628.380000px;}
.ydd{bottom:633.060000px;}
.yab{bottom:633.780000px;}
.y1d{bottom:641.340000px;}
.yf{bottom:642.780000px;}
.y73{bottom:643.500000px;}
.y112{bottom:645.660000px;}
.yaa{bottom:651.060000px;}
.y1c{bottom:657.180000px;}
.ydc{bottom:659.700000px;}
.y72{bottom:660.780000px;}
.y111{bottom:662.580000px;}
.ye{bottom:666.900000px;}
.ydb{bottom:677.010000px;}
.ya9{bottom:677.730000px;}
.y71{bottom:678.090000px;}
.y110{bottom:679.890000px;}
.y1b{bottom:687.780000px;}
.yd{bottom:691.020000px;}
.yda{bottom:693.930000px;}
.ya8{bottom:694.650000px;}
.y70{bottom:696.090000px;}
.y10f{bottom:696.810000px;}
.ya7{bottom:711.930000px;}
.yd9{bottom:712.290000px;}
.y6f{bottom:713.370000px;}
.y10e{bottom:723.450000px;}
.ya6{bottom:729.210000px;}
.yd8{bottom:729.570000px;}
.y6e{bottom:730.650000px;}
.y10d{bottom:740.730000px;}
.ya5{bottom:746.490000px;}
.yd7{bottom:746.850000px;}
.y6d{bottom:749.010000px;}
.y10c{bottom:758.010000px;}
.ya4{bottom:763.770000px;}
.yd6{bottom:764.130000px;}
.y6c{bottom:766.290000px;}
.y10b{bottom:775.290000px;}
.ya3{bottom:780.690000px;}
.yd5{bottom:782.490000px;}
.y6b{bottom:783.570000px;}
.y10a{bottom:792.570000px;}
.ya2{bottom:797.970000px;}
.yd4{bottom:799.770000px;}
.y6a{bottom:800.895000px;}
.y109{bottom:809.895000px;}
.yd3{bottom:817.095000px;}
.y69{bottom:819.255000px;}
.ya1{bottom:824.655000px;}
.y108{bottom:826.815000px;}
.yd2{bottom:835.455000px;}
.y68{bottom:836.535000px;}
.ya0{bottom:843.015000px;}
.yd1{bottom:852.735000px;}
.y107{bottom:853.455000px;}
.y67{bottom:853.815000px;}
.y9f{bottom:861.375000px;}
.yd0{bottom:870.015000px;}
.y66{bottom:871.095000px;}
.y106{bottom:871.815000px;}
.y9e{bottom:879.735000px;}
.ycf{bottom:888.015000px;}
.y65{bottom:889.095000px;}
.y105{bottom:889.815000px;}
.y9d{bottom:897.735000px;}
.yce{bottom:905.295000px;}
.y64{bottom:906.375000px;}
.y104{bottom:908.175000px;}
.y9c{bottom:916.095000px;}
.ycd{bottom:922.575000px;}
.y63{bottom:923.655000px;}
.y103{bottom:926.535000px;}
.y9b{bottom:934.485000px;}
.y62{bottom:940.965000px;}
.y102{bottom:944.565000px;}
.y9a{bottom:952.845000px;}
.y61{bottom:958.245000px;}
.y99{bottom:970.125000px;}
.y101{bottom:971.205000px;}
.y60{bottom:975.525000px;}
.y98{bottom:987.045000px;}
.y100{bottom:989.565000px;}
.ycc{bottom:992.805000px;}
.y5f{bottom:993.885000px;}
.yb{bottom:1006.845000px;}
.yff{bottom:1007.925000px;}
.ycb{bottom:1010.805000px;}
.y5e{bottom:1011.165000px;}
.y97{bottom:1013.685000px;}
.ya{bottom:1024.485000px;}
.yfe{bottom:1026.285000px;}
.y5d{bottom:1028.085000px;}
.y96{bottom:1032.045000px;}
.yca{bottom:1037.445000px;}
.yfd{bottom:1044.645000px;}
.y95{bottom:1050.405000px;}
.y5c{bottom:1054.725000px;}
.y9{bottom:1059.765000px;}
.yfc{bottom:1062.645000px;}
.y94{bottom:1068.810000px;}
.y5b{bottom:1072.050000px;}
.y93{bottom:1086.810000px;}
.y8{bottom:1088.250000px;}
.y5a{bottom:1088.970000px;}
.y57{bottom:1091.520000px;}
.y92{bottom:1105.170000px;}
.y59{bottom:1105.890000px;}
.yfb{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h13{height:5.650313px;}
.h7{height:24.348516px;}
.h15{height:27.720000px;}
.h11{height:29.678906px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.h17{height:42.229688px;}
.hd{height:53.677969px;}
.h12{height:55.147500px;}
.h8{height:58.050000px;}
.h14{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.he{height:60.952500px;}
.hf{height:62.163910px;}
.h18{height:62.960625px;}
.h16{height:63.455625px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h9{height:84.172500px;}
.h4{height:116.640000px;}
.h10{height:201.645000px;}
.ha{height:700.365000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:6.876000px;}
.x15{left:8.295000px;}
.x4{left:13.305000px;}
.x13{left:16.546500px;}
.x18{left:18.346500px;}
.x5{left:19.425000px;}
.x12{left:29.146500px;}
.x16{left:35.295000px;}
.x6{left:43.575000px;}
.x19{left:47.542500px;}
.xd{left:50.782500px;}
.xc{left:55.102500px;}
.x1b{left:57.262500px;}
.x1a{left:66.265500px;}
.x10{left:73.105500px;}
.xf{left:76.705500px;}
.x1{left:78.529500px;}
.x11{left:80.305500px;}
.x7{left:86.436000px;}
.x1f{left:87.876000px;}
.x2{left:95.425500px;}
.x1c{left:102.985500px;}
.x17{left:106.945500px;}
.x20{left:113.436000px;}
.xe{left:124.585500px;}
.x1e{left:140.472000px;}
.x3{left:182.250000px;}
.x14{left:218.970000px;}
.xb{left:550.290000px;}
.xa{left:691.485000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.864000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.560000pt;}
.ls13{letter-spacing:-0.450667pt;}
.ls8{letter-spacing:-0.079467pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.017920pt;}
.ls5{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.439040pt;}
.ls14{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.773120pt;}
.ls2{letter-spacing:0.960000pt;}
.lsf{letter-spacing:3.200000pt;}
.ls15{letter-spacing:8.480000pt;}
.ls16{letter-spacing:14.494720pt;}
.ls3{letter-spacing:14.720000pt;}
.ls11{letter-spacing:37.534720pt;}
.ls10{letter-spacing:41.374720pt;}
.ls12{letter-spacing:43.934720pt;}
.ls4{letter-spacing:56.734720pt;}
.ws6{word-spacing:-53.760000pt;}
.wsc{word-spacing:-13.890667pt;}
.wsa{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.wsb{word-spacing:-12.989333pt;}
.ws5{word-spacing:-12.576000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.600000pt;}
.ws1{word-spacing:-9.920000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
._15{margin-left:-3.097600pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._c{width:3.926187pt;}
._d{width:5.249280pt;}
._8{width:6.425600pt;}
._7{width:7.511040pt;}
._6{width:8.998400pt;}
._11{width:9.896960pt;}
._13{width:11.043840pt;}
._12{width:12.142080pt;}
._16{width:15.029760pt;}
._b{width:16.112640pt;}
._a{width:17.077760pt;}
._9{width:17.973760pt;}
._f{width:18.946560pt;}
._10{width:20.336640pt;}
._e{width:21.611520pt;}
._17{width:23.480320pt;}
._14{width:25.064960pt;}
._5{width:403.310080pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.236000pt;}
.y5{bottom:3.520000pt;}
.y58{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y4a{bottom:9.276000pt;}
.y56{bottom:13.116000pt;}
.y4{bottom:18.880000pt;}
.y41{bottom:19.840000pt;}
.y55{bottom:28.476000pt;}
.y49{bottom:35.516000pt;}
.y40{bottom:36.160000pt;}
.y3{bottom:39.360000pt;}
.y48{bottom:46.110667pt;}
.y54{bottom:47.390667pt;}
.y7{bottom:51.232000pt;}
.y3f{bottom:52.480000pt;}
.y47{bottom:57.630667pt;}
.y53{bottom:64.350667pt;}
.y3e{bottom:67.520000pt;}
.y46{bottom:69.470667pt;}
.y52{bottom:78.430667pt;}
.y3d{bottom:83.520000pt;}
.y51{bottom:86.430667pt;}
.y42{bottom:87.396000pt;}
.y45{bottom:88.670667pt;}
.yc9{bottom:92.192000pt;}
.y91{bottom:93.792000pt;}
.y50{bottom:103.390667pt;}
.yfa{bottom:105.312000pt;}
.y3c{bottom:107.240000pt;}
.yc8{bottom:107.872000pt;}
.y90{bottom:110.112000pt;}
.y4f{bottom:117.150667pt;}
.yf9{bottom:120.672000pt;}
.y3b{bottom:122.600000pt;}
.yc7{bottom:122.912000pt;}
.y8f{bottom:126.464000pt;}
.y4e{bottom:130.910667pt;}
.yf8{bottom:136.066667pt;}
.y3a{bottom:137.960000pt;}
.y8e{bottom:141.826667pt;}
.y44{bottom:144.030667pt;}
.y4d{bottom:144.670667pt;}
.yc6{bottom:146.626667pt;}
.yf7{bottom:151.426667pt;}
.y39{bottom:153.320000pt;}
.y43{bottom:153.630667pt;}
.y8d{bottom:157.186667pt;}
.y4c{bottom:158.457333pt;}
.yc5{bottom:161.986667pt;}
.yf6{bottom:166.786667pt;}
.y38{bottom:168.680000pt;}
.y8c{bottom:172.546667pt;}
.yc4{bottom:177.346667pt;}
.yf5{bottom:182.146667pt;}
.y37{bottom:184.040000pt;}
.y8b{bottom:187.906667pt;}
.yc3{bottom:192.706667pt;}
.yf4{bottom:197.506667pt;}
.y36{bottom:199.400000pt;}
.y8a{bottom:202.946667pt;}
.yc2{bottom:207.746667pt;}
.yf3{bottom:212.866667pt;}
.y35{bottom:214.786667pt;}
.yc1{bottom:223.426667pt;}
.y89{bottom:226.626667pt;}
.yf2{bottom:227.906667pt;}
.y34{bottom:230.146667pt;}
.yc0{bottom:238.786667pt;}
.y88{bottom:241.986667pt;}
.y33{bottom:245.186667pt;}
.yf1{bottom:251.613333pt;}
.ybf{bottom:253.853333pt;}
.y87{bottom:257.053333pt;}
.y32{bottom:260.546667pt;}
.yf0{bottom:266.653333pt;}
.yc{bottom:267.293333pt;}
.ybe{bottom:268.893333pt;}
.y86{bottom:272.413333pt;}
.y31{bottom:275.906667pt;}
.yef{bottom:282.973333pt;}
.ybd{bottom:284.573333pt;}
.y85{bottom:287.773333pt;}
.y30{bottom:291.266667pt;}
.yee{bottom:298.333333pt;}
.ybc{bottom:300.893333pt;}
.y84{bottom:303.133333pt;}
.y2f{bottom:306.626667pt;}
.y123{bottom:312.733333pt;}
.yed{bottom:314.653333pt;}
.ybb{bottom:317.213333pt;}
.y83{bottom:318.493333pt;}
.y2e{bottom:321.986667pt;}
.y122{bottom:328.413333pt;}
.yec{bottom:330.013333pt;}
.yba{bottom:333.533333pt;}
.y82{bottom:333.853333pt;}
.y1a{bottom:335.133333pt;}
.y2d{bottom:337.373333pt;}
.y121{bottom:343.773333pt;}
.yeb{bottom:345.053333pt;}
.yb9{bottom:348.893333pt;}
.y81{bottom:349.213333pt;}
.y2c{bottom:352.733333pt;}
.y19{bottom:356.573333pt;}
.y120{bottom:359.133333pt;}
.yea{bottom:360.773333pt;}
.yb8{bottom:364.293333pt;}
.y80{bottom:364.613333pt;}
.y2b{bottom:367.773333pt;}
.y11f{bottom:374.533333pt;}
.ye9{bottom:376.133333pt;}
.y18{bottom:378.013333pt;}
.yb7{bottom:379.333333pt;}
.y7f{bottom:379.973333pt;}
.y11e{bottom:389.893333pt;}
.y2a{bottom:390.813333pt;}
.ye8{bottom:392.453333pt;}
.yb6{bottom:395.013333pt;}
.y7e{bottom:395.333333pt;}
.y17{bottom:399.453333pt;}
.y29{bottom:404.573333pt;}
.y11d{bottom:405.253333pt;}
.ye7{bottom:407.813333pt;}
.yb5{bottom:410.373333pt;}
.y7d{bottom:410.693333pt;}
.y28{bottom:418.333333pt;}
.y11c{bottom:420.293333pt;}
.y16{bottom:420.893333pt;}
.ye6{bottom:424.133333pt;}
.yb4{bottom:425.093333pt;}
.y7c{bottom:425.733333pt;}
.y27{bottom:432.093333pt;}
.y11b{bottom:435.653333pt;}
.ye5{bottom:439.173333pt;}
.yb3{bottom:440.773333pt;}
.y7b{bottom:441.093333pt;}
.y15{bottom:442.333333pt;}
.y26{bottom:445.893333pt;}
.y11a{bottom:451.013333pt;}
.ye4{bottom:454.533333pt;}
.yb2{bottom:456.133333pt;}
.y7a{bottom:456.453333pt;}
.y25{bottom:459.653333pt;}
.y14{bottom:463.813333pt;}
.y119{bottom:466.373333pt;}
.ye3{bottom:469.893333pt;}
.yb1{bottom:471.493333pt;}
.y79{bottom:471.813333pt;}
.y24{bottom:473.733333pt;}
.y118{bottom:481.760000pt;}
.y13{bottom:485.253333pt;}
.ye2{bottom:486.240000pt;}
.yb0{bottom:486.880000pt;}
.y78{bottom:487.200000pt;}
.y23{bottom:487.493333pt;}
.y117{bottom:497.120000pt;}
.y22{bottom:501.253333pt;}
.ye1{bottom:501.600000pt;}
.yaf{bottom:502.240000pt;}
.y77{bottom:502.560000pt;}
.y12{bottom:506.693333pt;}
.y116{bottom:512.480000pt;}
.y21{bottom:515.013333pt;}
.ye0{bottom:516.960000pt;}
.yae{bottom:517.600000pt;}
.y76{bottom:517.920000pt;}
.y115{bottom:527.840000pt;}
.y11{bottom:528.453333pt;}
.y20{bottom:528.773333pt;}
.ydf{bottom:532.320000pt;}
.yad{bottom:532.960000pt;}
.y75{bottom:541.280000pt;}
.y1f{bottom:542.533333pt;}
.y114{bottom:543.200000pt;}
.yde{bottom:547.680000pt;}
.yac{bottom:548.320000pt;}
.y10{bottom:549.893333pt;}
.y1e{bottom:556.293333pt;}
.y74{bottom:556.640000pt;}
.y113{bottom:558.560000pt;}
.ydd{bottom:562.720000pt;}
.yab{bottom:563.360000pt;}
.y1d{bottom:570.080000pt;}
.yf{bottom:571.360000pt;}
.y73{bottom:572.000000pt;}
.y112{bottom:573.920000pt;}
.yaa{bottom:578.720000pt;}
.y1c{bottom:584.160000pt;}
.ydc{bottom:586.400000pt;}
.y72{bottom:587.360000pt;}
.y111{bottom:588.960000pt;}
.ye{bottom:592.800000pt;}
.ydb{bottom:601.786667pt;}
.ya9{bottom:602.426667pt;}
.y71{bottom:602.746667pt;}
.y110{bottom:604.346667pt;}
.y1b{bottom:611.360000pt;}
.yd{bottom:614.240000pt;}
.yda{bottom:616.826667pt;}
.ya8{bottom:617.466667pt;}
.y70{bottom:618.746667pt;}
.y10f{bottom:619.386667pt;}
.ya7{bottom:632.826667pt;}
.yd9{bottom:633.146667pt;}
.y6f{bottom:634.106667pt;}
.y10e{bottom:643.066667pt;}
.ya6{bottom:648.186667pt;}
.yd8{bottom:648.506667pt;}
.y6e{bottom:649.466667pt;}
.y10d{bottom:658.426667pt;}
.ya5{bottom:663.546667pt;}
.yd7{bottom:663.866667pt;}
.y6d{bottom:665.786667pt;}
.y10c{bottom:673.786667pt;}
.ya4{bottom:678.906667pt;}
.yd6{bottom:679.226667pt;}
.y6c{bottom:681.146667pt;}
.y10b{bottom:689.146667pt;}
.ya3{bottom:693.946667pt;}
.yd5{bottom:695.546667pt;}
.y6b{bottom:696.506667pt;}
.y10a{bottom:704.506667pt;}
.ya2{bottom:709.306667pt;}
.yd4{bottom:710.906667pt;}
.y6a{bottom:711.906667pt;}
.y109{bottom:719.906667pt;}
.yd3{bottom:726.306667pt;}
.y69{bottom:728.226667pt;}
.ya1{bottom:733.026667pt;}
.y108{bottom:734.946667pt;}
.yd2{bottom:742.626667pt;}
.y68{bottom:743.586667pt;}
.ya0{bottom:749.346667pt;}
.yd1{bottom:757.986667pt;}
.y107{bottom:758.626667pt;}
.y67{bottom:758.946667pt;}
.y9f{bottom:765.666667pt;}
.yd0{bottom:773.346667pt;}
.y66{bottom:774.306667pt;}
.y106{bottom:774.946667pt;}
.y9e{bottom:781.986667pt;}
.ycf{bottom:789.346667pt;}
.y65{bottom:790.306667pt;}
.y105{bottom:790.946667pt;}
.y9d{bottom:797.986667pt;}
.yce{bottom:804.706667pt;}
.y64{bottom:805.666667pt;}
.y104{bottom:807.266667pt;}
.y9c{bottom:814.306667pt;}
.ycd{bottom:820.066667pt;}
.y63{bottom:821.026667pt;}
.y103{bottom:823.586667pt;}
.y9b{bottom:830.653333pt;}
.y62{bottom:836.413333pt;}
.y102{bottom:839.613333pt;}
.y9a{bottom:846.973333pt;}
.y61{bottom:851.773333pt;}
.y99{bottom:862.333333pt;}
.y101{bottom:863.293333pt;}
.y60{bottom:867.133333pt;}
.y98{bottom:877.373333pt;}
.y100{bottom:879.613333pt;}
.ycc{bottom:882.493333pt;}
.y5f{bottom:883.453333pt;}
.yb{bottom:894.973333pt;}
.yff{bottom:895.933333pt;}
.ycb{bottom:898.493333pt;}
.y5e{bottom:898.813333pt;}
.y97{bottom:901.053333pt;}
.ya{bottom:910.653333pt;}
.yfe{bottom:912.253333pt;}
.y5d{bottom:913.853333pt;}
.y96{bottom:917.373333pt;}
.yca{bottom:922.173333pt;}
.yfd{bottom:928.573333pt;}
.y95{bottom:933.693333pt;}
.y5c{bottom:937.533333pt;}
.y9{bottom:942.013333pt;}
.yfc{bottom:944.573333pt;}
.y94{bottom:950.053333pt;}
.y5b{bottom:952.933333pt;}
.y93{bottom:966.053333pt;}
.y8{bottom:967.333333pt;}
.y5a{bottom:967.973333pt;}
.y57{bottom:970.240000pt;}
.y92{bottom:982.373333pt;}
.y59{bottom:983.013333pt;}
.yfb{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h13{height:5.022500pt;}
.h7{height:21.643125pt;}
.h15{height:24.640000pt;}
.h11{height:26.381250pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.h17{height:37.537500pt;}
.hd{height:47.713750pt;}
.h12{height:49.020000pt;}
.h8{height:51.600000pt;}
.h14{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.he{height:54.180000pt;}
.hf{height:55.256809pt;}
.h18{height:55.965000pt;}
.h16{height:56.405000pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h9{height:74.820000pt;}
.h4{height:103.680000pt;}
.h10{height:179.240000pt;}
.ha{height:622.546667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.112000pt;}
.x15{left:7.373333pt;}
.x4{left:11.826667pt;}
.x13{left:14.708000pt;}
.x18{left:16.308000pt;}
.x5{left:17.266667pt;}
.x12{left:25.908000pt;}
.x16{left:31.373333pt;}
.x6{left:38.733333pt;}
.x19{left:42.260000pt;}
.xd{left:45.140000pt;}
.xc{left:48.980000pt;}
.x1b{left:50.900000pt;}
.x1a{left:58.902667pt;}
.x10{left:64.982667pt;}
.xf{left:68.182667pt;}
.x1{left:69.804000pt;}
.x11{left:71.382667pt;}
.x7{left:76.832000pt;}
.x1f{left:78.112000pt;}
.x2{left:84.822667pt;}
.x1c{left:91.542667pt;}
.x17{left:95.062667pt;}
.x20{left:100.832000pt;}
.xe{left:110.742667pt;}
.x1e{left:124.864000pt;}
.x3{left:162.000000pt;}
.x14{left:194.640000pt;}
.xb{left:489.146667pt;}
.xa{left:614.653333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
}




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