
    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_8a359f9ed4fad597da2d80ad.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.979000;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_9ad49160d81681f7c8df6a7b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976000;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_b5b50d9d284482030681a2ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.766000;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_57d3238db85169d19787349d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979000;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_dbce7dd43a4cac46fb75dbd6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986000;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_6c81c1137412b41ea200141b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939000;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_ff310ca8aacc377b8a78b544.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.904000;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_8c30fdfc4bcdaf188125167f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984000;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_62396dffae46b450b53e889f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_7e618f50bdebc5cbe3f3ccc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973000;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_c15bfcba17bac3050b3dbbca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.945000;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_a3fd5451c9631e66d96a3bb1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.952000;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_eabf26c345f6d9b178f9d00d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.858000;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:-22.410000px;}
.v2{vertical-align:-15.564000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.318780px;}
.v3{vertical-align:30.096000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.002805px;}
.ls9{letter-spacing:14.419337px;}
.ls2{letter-spacing:19.224025px;}
.ls7{letter-spacing:21.042910px;}
.ls4{letter-spacing:35.164867px;}
.ls5{letter-spacing:35.165587px;}
.ls6{letter-spacing:35.165947px;}
.ls1{letter-spacing:43.992252px;}
.ls3{letter-spacing:82.251852px;}
.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;}
}
.ws43{word-spacing:-47.820600px;}
.ws6b{word-spacing:-34.701060px;}
.ws7{word-spacing:-33.086782px;}
.ws6a{word-spacing:-32.984898px;}
.wsb{word-spacing:-18.591558px;}
.ws4e{word-spacing:-18.591228px;}
.ws2d{word-spacing:-18.590929px;}
.ws3a{word-spacing:-15.953086px;}
.ws18{word-spacing:-15.929400px;}
.ws35{word-spacing:-14.872350px;}
.ws20{word-spacing:-12.762535px;}
.ws28{word-spacing:-7.651535px;}
.ws36{word-spacing:-7.605546px;}
.ws2a{word-spacing:-7.604671px;}
.ws19{word-spacing:-4.158912px;}
.ws17{word-spacing:-3.359016px;}
.ws30{word-spacing:-2.246611px;}
.ws1d{word-spacing:-2.242411px;}
.ws6{word-spacing:-0.123975px;}
.ws0{word-spacing:-0.103292px;}
.ws14{word-spacing:-0.071731px;}
.wsc{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.047821px;}
.wse{word-spacing:-0.035866px;}
.ws13{word-spacing:0.000000px;}
.ws6d{word-spacing:0.356189px;}
.ws16{word-spacing:7.853777px;}
.wsf{word-spacing:7.854351px;}
.ws34{word-spacing:8.987777px;}
.ws24{word-spacing:8.989842px;}
.ws4d{word-spacing:8.992577px;}
.ws3d{word-spacing:9.084910px;}
.ws68{word-spacing:9.181555px;}
.ws50{word-spacing:10.471516px;}
.ws6f{word-spacing:10.471612px;}
.ws1f{word-spacing:10.471646px;}
.ws1e{word-spacing:10.471659px;}
.ws2{word-spacing:10.471803px;}
.ws60{word-spacing:10.471898px;}
.ws3f{word-spacing:10.471946px;}
.ws12{word-spacing:10.472090px;}
.ws52{word-spacing:10.472230px;}
.ws21{word-spacing:10.472233px;}
.ws40{word-spacing:10.472329px;}
.ws3e{word-spacing:10.472616px;}
.ws47{word-spacing:10.472711px;}
.ws45{word-spacing:10.472812px;}
.ws42{word-spacing:10.472957px;}
.ws56{word-spacing:10.472998px;}
.ws41{word-spacing:10.473142px;}
.ws66{word-spacing:10.473235px;}
.ws1b{word-spacing:10.473285px;}
.ws62{word-spacing:10.473333px;}
.ws64{word-spacing:10.473574px;}
.ws31{word-spacing:10.473859px;}
.ws67{word-spacing:10.473880px;}
.ws46{word-spacing:10.475023px;}
.ws44{word-spacing:10.475181px;}
.ws63{word-spacing:10.475494px;}
.ws3c{word-spacing:11.237036px;}
.ws4b{word-spacing:11.237095px;}
.ws69{word-spacing:13.054306px;}
.ws6e{word-spacing:13.054641px;}
.ws6c{word-spacing:13.055645px;}
.ws29{word-spacing:13.089840px;}
.ws27{word-spacing:13.089900px;}
.ws39{word-spacing:13.089960px;}
.ws1{word-spacing:13.441584px;}
.ws49{word-spacing:15.706384px;}
.ws5e{word-spacing:15.708272px;}
.ws10{word-spacing:15.708559px;}
.ws4c{word-spacing:15.708918px;}
.wsa{word-spacing:15.710065px;}
.wsd{word-spacing:15.744902px;}
.ws48{word-spacing:15.745382px;}
.ws22{word-spacing:15.745502px;}
.ws70{word-spacing:15.746342px;}
.ws8{word-spacing:18.849486px;}
.ws9{word-spacing:18.849788px;}
.ws2e{word-spacing:20.063486px;}
.ws32{word-spacing:20.082785px;}
.ws2f{word-spacing:20.085368px;}
.ws54{word-spacing:20.802774px;}
.ws5{word-spacing:27.150153px;}
.ws4{word-spacing:27.150277px;}
.ws2c{word-spacing:27.958956px;}
.ws38{word-spacing:32.569208px;}
.ws26{word-spacing:41.458480px;}
.ws33{word-spacing:41.460880px;}
.ws2b{word-spacing:43.946701px;}
.ws5f{word-spacing:59.726973px;}
.ws59{word-spacing:89.364495px;}
.ws3b{word-spacing:103.188929px;}
.ws53{word-spacing:183.711135px;}
.ws51{word-spacing:214.893570px;}
.ws61{word-spacing:231.882568px;}
.ws5c{word-spacing:309.240210px;}
.ws5a{word-spacing:315.316830px;}
.ws65{word-spacing:404.035771px;}
.ws5b{word-spacing:415.740090px;}
.ws57{word-spacing:491.057535px;}
.ws5d{word-spacing:516.163350px;}
.ws58{word-spacing:635.615805px;}
.ws55{word-spacing:641.692425px;}
.ws4a{word-spacing:852.354077px;}
.ws11{word-spacing:873.150077px;}
.ws37{word-spacing:900.556283px;}
.ws1c{word-spacing:914.422283px;}
.ws1a{word-spacing:1136.927842px;}
.ws4f{word-spacing:1266.643755px;}
.ws15{word-spacing:1491.332592px;}
.ws25{word-spacing:2606.366965px;}
.ws23{word-spacing:3010.042375px;}
._8{margin-left:-19.878374px;}
._9{margin-left:-18.534214px;}
._3{width:3.309036px;}
._f{width:8.546775px;}
._11{width:14.522424px;}
._1{width:18.415871px;}
._12{width:19.973569px;}
._7{width:23.909579px;}
._10{width:28.938314px;}
._0{width:37.875227px;}
._b{width:42.445184px;}
._e{width:360.364867px;}
._d{width:503.740222px;}
._2{width:524.542222px;}
._c{width:551.926222px;}
._4{width:565.798222px;}
._a{width:2868.832522px;}
._5{width:2902.207783px;}
._6{width:2921.862050px;}
.fc11{color:rgb(2,160,70);}
.fc10{color:rgb(236,0,139);}
.fcf{color:rgb(0,89,0);}
.fce{color:rgb(83,0,125);}
.fc1{color:rgb(204,162,14);}
.fc2{color:rgb(0,0,0);}
.fc9{color:rgb(143,0,0);}
.fcd{color:rgb(0,128,0);}
.fc5{color:rgb(255,214,0);}
.fcc{color:rgb(0,0,143);}
.fc3{color:rgb(0,0,176);}
.fc4{color:rgb(222,0,0);}
.fcb{color:rgb(209,0,0);}
.fc6{color:rgb(198,70,0);}
.fc7{color:rgb(77,93,254);}
.fc0{color:rgb(77,95,180);}
.fc8{color:rgb(102,0,153);}
.fca{color:rgb(0,0,209);}
.fs16{font-size:3.540990px;}
.fs15{font-size:7.079760px;}
.fsc{font-size:34.431000px;}
.fs14{font-size:35.398800px;}
.fsb{font-size:35.865600px;}
.fs13{font-size:38.939640px;}
.fsa{font-size:40.198620px;}
.fse{font-size:42.478560px;}
.fs9{font-size:44.219580px;}
.fs3{font-size:45.908400px;}
.fs2{font-size:47.820600px;}
.fs12{font-size:49.558200px;}
.fs8{font-size:57.385200px;}
.fs7{font-size:59.775600px;}
.fsf{font-size:63.717600px;}
.fs18{font-size:65.454600px;}
.fsd{font-size:68.862000px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs11{font-size:99.117000px;}
.fs0{font-size:103.292400px;}
.fs10{font-size:113.276400px;}
.fs5{font-size:119.017200px;}
.fs4{font-size:123.975000px;}
.fs17{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.309000px;}
.yf{bottom:6.201450px;}
.y35{bottom:18.360000px;}
.ye{bottom:20.445000px;}
.y36{bottom:33.411600px;}
.y17{bottom:48.932850px;}
.y37{bottom:50.971500px;}
.y3a{bottom:55.987500px;}
.y18{bottom:58.460700px;}
.y73{bottom:58.461000px;}
.y6a{bottom:58.461150px;}
.y16{bottom:66.024000px;}
.y33{bottom:73.548600px;}
.y23{bottom:79.401150px;}
.yd{bottom:80.268450px;}
.y3d{bottom:82.022700px;}
.y32{bottom:91.108500px;}
.y15{bottom:91.662900px;}
.y22{bottom:93.616575px;}
.yc{bottom:94.512000px;}
.y3e{bottom:95.512740px;}
.y21{bottom:107.832000px;}
.y3c{bottom:109.059000px;}
.ya{bottom:117.300600px;}
.y1f{bottom:122.047500px;}
.y9{bottom:134.392950px;}
.y20{bottom:136.262925px;}
.y8{bottom:148.636500px;}
.y1e{bottom:166.365825px;}
.yb{bottom:174.276000px;}
.y1c{bottom:182.253000px;}
.y1d{bottom:196.468425px;}
.y14{bottom:208.460700px;}
.y4e{bottom:224.621640px;}
.y13{bottom:225.553050px;}
.y54{bottom:227.464474px;}
.y53{bottom:228.858420px;}
.y51{bottom:230.251785px;}
.y52{bottom:232.147290px;}
.y5c{bottom:234.990264px;}
.y5b{bottom:236.383623px;}
.y5a{bottom:238.279128px;}
.y55{bottom:241.066430px;}
.y56{bottom:242.516039px;}
.y57{bottom:243.909984px;}
.y2c{bottom:244.131150px;}
.y58{bottom:245.303343px;}
.y59{bottom:247.198848px;}
.y50{bottom:250.041885px;}
.y4f{bottom:251.881140px;}
.y40{bottom:254.724150px;}
.y41{bottom:256.563990px;}
.y4d{bottom:259.239990px;}
.y4c{bottom:260.800920px;}
.y39{bottom:261.693000px;}
.y4b{bottom:262.695840px;}
.y4a{bottom:265.538805px;}
.y5f{bottom:265.539259px;}
.y5e{bottom:266.932618px;}
.y3f{bottom:266.932740px;}
.y5d{bottom:268.326564px;}
.y42{bottom:268.326690px;}
.y49{bottom:270.222210px;}
.y10{bottom:271.132950px;}
.y44{bottom:273.065190px;}
.y48{bottom:274.458540px;}
.y46{bottom:275.851905px;}
.y38{bottom:276.744000px;}
.y47{bottom:277.747410px;}
.y45{bottom:282.931785px;}
.y43{bottom:286.221240px;}
.y12{bottom:288.225000px;}
.y11{bottom:288.225300px;}
.y31{bottom:295.976070px;}
.y25{bottom:301.829100px;}
.y30{bottom:310.190910px;}
.y24{bottom:319.389000px;}
.y2f{bottom:324.405750px;}
.y29{bottom:358.689300px;}
.yad{bottom:362.005500px;}
.y28{bottom:372.904725px;}
.y64{bottom:381.435994px;}
.y61{bottom:382.105099px;}
.yac{bottom:387.037350px;}
.y27{bottom:387.120150px;}
.y60{bottom:389.964859px;}
.y63{bottom:393.198694px;}
.y66{bottom:398.438659px;}
.y65{bottom:400.445494px;}
.yab{bottom:401.233440px;}
.y2b{bottom:401.335650px;}
.y62{bottom:408.194000px;}
.y26{bottom:415.551000px;}
.yaa{bottom:426.264090px;}
.y2a{bottom:429.765900px;}
.y3b{bottom:429.766500px;}
.y7{bottom:438.471000px;}
.ya9{bottom:440.461350px;}
.y2e{bottom:464.886600px;}
.ya8{bottom:465.492000px;}
.y2d{bottom:482.446500px;}
.y88{bottom:499.104150px;}
.ya7{bottom:521.478000px;}
.y87{bottom:535.492650px;}
.ya6{bottom:535.675500px;}
.ya5{bottom:549.871500px;}
.y86{bottom:563.033550px;}
.ya4{bottom:564.069000px;}
.ya3{bottom:578.265000px;}
.y85{bottom:590.575650px;}
.ya2{bottom:592.462500px;}
.y1b{bottom:600.750000px;}
.ya1{bottom:606.658500px;}
.y84{bottom:618.117450px;}
.ya0{bottom:620.856000px;}
.y9f{bottom:635.052000px;}
.y83{bottom:645.659460px;}
.y9e{bottom:649.249500px;}
.y9d{bottom:663.445500px;}
.y82{bottom:670.690110px;}
.y9c{bottom:677.643000px;}
.y9b{bottom:691.839000px;}
.y81{bottom:695.720760px;}
.y9a{bottom:706.036500px;}
.y99{bottom:720.232500px;}
.y80{bottom:732.109260px;}
.y98{bottom:734.430000px;}
.y6{bottom:743.829000px;}
.y97{bottom:755.425500px;}
.y7f{bottom:762.162060px;}
.y7e{bottom:792.214260px;}
.y96{bottom:811.578000px;}
.y7d{bottom:817.246110px;}
.y5{bottom:827.000700px;}
.y7c{bottom:831.442200px;}
.y95{bottom:835.753500px;}
.y72{bottom:842.868000px;}
.y94{bottom:859.929000px;}
.y71{bottom:869.019000px;}
.y7b{bottom:870.754500px;}
.y93{bottom:884.104500px;}
.y70{bottom:885.031500px;}
.y6f{bottom:899.229000px;}
.y4{bottom:904.740000px;}
.y92{bottom:908.281500px;}
.y6e{bottom:925.380000px;}
.y91{bottom:932.457000px;}
.y7a{bottom:938.973000px;}
.y6d{bottom:951.532500px;}
.y90{bottom:956.632500px;}
.y76{bottom:963.196500px;}
.y75{bottom:977.392500px;}
.y6c{bottom:977.685000px;}
.y8f{bottom:978.996240px;}
.y77{bottom:983.688000px;}
.y8e{bottom:993.193500px;}
.yae{bottom:997.744500px;}
.y79{bottom:1013.980500px;}
.y8d{bottom:1017.369000px;}
.y3{bottom:1032.412050px;}
.y8c{bottom:1042.143000px;}
.y8b{bottom:1060.075500px;}
.y74{bottom:1060.803000px;}
.y6b{bottom:1062.196500px;}
.y2{bottom:1069.771500px;}
.y78{bottom:1071.673500px;}
.y8a{bottom:1086.775500px;}
.y69{bottom:1102.380150px;}
.y1a{bottom:1111.497000px;}
.y68{bottom:1127.411910px;}
.y89{bottom:1136.527500px;}
.y1{bottom:1141.129500px;}
.y67{bottom:1141.608000px;}
.y19{bottom:1192.005000px;}
.h17{height:2.574300px;}
.h16{height:5.146986px;}
.h15{height:24.495970px;}
.h13{height:28.659575px;}
.h8{height:29.626383px;}
.hb{height:29.692513px;}
.h12{height:30.881913px;}
.hc{height:31.264220px;}
.h7{height:31.838098px;}
.h9{height:32.589830px;}
.h1a{height:35.815829px;}
.h24{height:35.816429px;}
.h20{height:35.817029px;}
.h18{height:35.817629px;}
.h19{height:35.817989px;}
.h21{height:35.819429px;}
.h1f{height:35.819789px;}
.h10{height:36.028811px;}
.h11{height:36.474835px;}
.hf{height:37.267766px;}
.hd{height:44.097979px;}
.h23{height:44.624064px;}
.h1d{height:44.771924px;}
.h1c{height:49.025495px;}
.h22{height:53.724869px;}
.h1e{height:53.725469px;}
.h5{height:53.726669px;}
.h4{height:64.473023px;}
.h14{height:66.570835px;}
.h2{height:77.366008px;}
.he{height:83.371430px;}
.h3{height:92.857275px;}
.h1b{height:111.393227px;}
.h6{height:298.485000px;}
.ha{height:502.800000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:466.320000px;}
.w3{width:630.150000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:4.996350px;}
.x1d{left:10.013400px;}
.x13{left:20.917005px;}
.x15{left:42.178650px;}
.x2c{left:46.960500px;}
.x3b{left:49.231650px;}
.x36{left:52.058850px;}
.x38{left:55.658850px;}
.x21{left:57.676950px;}
.x2f{left:60.111300px;}
.x33{left:66.088440px;}
.x1b{left:95.305500px;}
.x9{left:106.377750px;}
.xa{left:120.622500px;}
.x16{left:131.400000px;}
.x1e{left:132.933750px;}
.x2{left:139.696350px;}
.x11{left:143.412000px;}
.x1{left:147.273000px;}
.x35{left:152.920500px;}
.x12{left:154.807305px;}
.x20{left:158.019000px;}
.x2b{left:159.302262px;}
.x6{left:160.987500px;}
.xe{left:169.051350px;}
.x8{left:175.696500px;}
.x34{left:180.273000px;}
.x14{left:183.294405px;}
.x5{left:208.582500px;}
.xd{left:211.782000px;}
.x7{left:213.298500px;}
.x1f{left:235.785000px;}
.x10{left:240.269700px;}
.xb{left:260.209500px;}
.xf{left:277.302750px;}
.x4{left:287.391000px;}
.xc{left:305.788350px;}
.x3{left:309.866850px;}
.x3a{left:311.736000px;}
.x30{left:328.167000px;}
.x31{left:335.808000px;}
.x22{left:340.681500px;}
.x23{left:341.907282px;}
.x24{left:344.372322px;}
.x2e{left:370.107000px;}
.x37{left:375.841500px;}
.x2d{left:377.062500px;}
.x17{left:381.283500px;}
.x18{left:393.826500px;}
.x1a{left:443.997000px;}
.x19{left:506.710500px;}
.x28{left:533.581497px;}
.x26{left:536.424567px;}
.x25{left:538.263822px;}
.x29{left:558.053817px;}
.x2a{left:560.841177px;}
.x27{left:568.366917px;}
.x39{left:590.487000px;}
.x3c{left:665.539500px;}
.x32{left:725.586000px;}
@media print{
.v1{vertical-align:-19.920000pt;}
.v2{vertical-align:-13.834667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.283360pt;}
.v3{vertical-align:26.752000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002493pt;}
.ls9{letter-spacing:12.817188pt;}
.ls2{letter-spacing:17.088022pt;}
.ls7{letter-spacing:18.704809pt;}
.ls4{letter-spacing:31.257660pt;}
.ls5{letter-spacing:31.258300pt;}
.ls6{letter-spacing:31.258620pt;}
.ls1{letter-spacing:39.104224pt;}
.ls3{letter-spacing:73.112757pt;}
.ws43{word-spacing:-42.507200pt;}
.ws6b{word-spacing:-30.845387pt;}
.ws7{word-spacing:-29.410473pt;}
.ws6a{word-spacing:-29.319909pt;}
.wsb{word-spacing:-16.525830pt;}
.ws4e{word-spacing:-16.525536pt;}
.ws2d{word-spacing:-16.525270pt;}
.ws3a{word-spacing:-14.180521pt;}
.ws18{word-spacing:-14.159467pt;}
.ws35{word-spacing:-13.219867pt;}
.ws20{word-spacing:-11.344476pt;}
.ws28{word-spacing:-6.801365pt;}
.ws36{word-spacing:-6.760485pt;}
.ws2a{word-spacing:-6.759707pt;}
.ws19{word-spacing:-3.696811pt;}
.ws17{word-spacing:-2.985792pt;}
.ws30{word-spacing:-1.996988pt;}
.ws1d{word-spacing:-1.993254pt;}
.ws6{word-spacing:-0.110200pt;}
.ws0{word-spacing:-0.091815pt;}
.ws14{word-spacing:-0.063761pt;}
.wsc{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.042507pt;}
.wse{word-spacing:-0.031881pt;}
.ws13{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.316612pt;}
.ws16{word-spacing:6.981135pt;}
.wsf{word-spacing:6.981646pt;}
.ws34{word-spacing:7.989135pt;}
.ws24{word-spacing:7.990971pt;}
.ws4d{word-spacing:7.993402pt;}
.ws3d{word-spacing:8.075475pt;}
.ws68{word-spacing:8.161382pt;}
.ws50{word-spacing:9.308014pt;}
.ws6f{word-spacing:9.308099pt;}
.ws1f{word-spacing:9.308130pt;}
.ws1e{word-spacing:9.308142pt;}
.ws2{word-spacing:9.308269pt;}
.ws60{word-spacing:9.308354pt;}
.ws3f{word-spacing:9.308397pt;}
.ws12{word-spacing:9.308524pt;}
.ws52{word-spacing:9.308649pt;}
.ws21{word-spacing:9.308652pt;}
.ws40{word-spacing:9.308737pt;}
.ws3e{word-spacing:9.308992pt;}
.ws47{word-spacing:9.309077pt;}
.ws45{word-spacing:9.309166pt;}
.ws42{word-spacing:9.309295pt;}
.ws56{word-spacing:9.309332pt;}
.ws41{word-spacing:9.309459pt;}
.ws66{word-spacing:9.309542pt;}
.ws1b{word-spacing:9.309587pt;}
.ws62{word-spacing:9.309629pt;}
.ws64{word-spacing:9.309844pt;}
.ws31{word-spacing:9.310097pt;}
.ws67{word-spacing:9.310116pt;}
.ws46{word-spacing:9.311131pt;}
.ws44{word-spacing:9.311272pt;}
.ws63{word-spacing:9.311550pt;}
.ws3c{word-spacing:9.988476pt;}
.ws4b{word-spacing:9.988529pt;}
.ws69{word-spacing:11.603828pt;}
.ws6e{word-spacing:11.604126pt;}
.ws6c{word-spacing:11.605018pt;}
.ws29{word-spacing:11.635414pt;}
.ws27{word-spacing:11.635467pt;}
.ws39{word-spacing:11.635520pt;}
.ws1{word-spacing:11.948075pt;}
.ws49{word-spacing:13.961230pt;}
.ws5e{word-spacing:13.962908pt;}
.ws10{word-spacing:13.963164pt;}
.ws4c{word-spacing:13.963482pt;}
.wsa{word-spacing:13.964502pt;}
.wsd{word-spacing:13.995469pt;}
.ws48{word-spacing:13.995895pt;}
.ws22{word-spacing:13.996002pt;}
.ws70{word-spacing:13.996749pt;}
.ws8{word-spacing:16.755099pt;}
.ws9{word-spacing:16.755367pt;}
.ws2e{word-spacing:17.834210pt;}
.ws32{word-spacing:17.851365pt;}
.ws2f{word-spacing:17.853661pt;}
.ws54{word-spacing:18.491355pt;}
.ws5{word-spacing:24.133469pt;}
.ws4{word-spacing:24.133580pt;}
.ws2c{word-spacing:24.852406pt;}
.ws38{word-spacing:28.950407pt;}
.ws26{word-spacing:36.851982pt;}
.ws33{word-spacing:36.854116pt;}
.ws2b{word-spacing:39.063734pt;}
.ws5f{word-spacing:53.090643pt;}
.ws59{word-spacing:79.435107pt;}
.ws3b{word-spacing:91.723492pt;}
.ws53{word-spacing:163.298787pt;}
.ws51{word-spacing:191.016507pt;}
.ws61{word-spacing:206.117838pt;}
.ws5c{word-spacing:274.880187pt;}
.ws5a{word-spacing:280.281627pt;}
.ws65{word-spacing:359.142908pt;}
.ws5b{word-spacing:369.546747pt;}
.ws57{word-spacing:436.495587pt;}
.ws5d{word-spacing:458.811867pt;}
.ws58{word-spacing:564.991827pt;}
.ws55{word-spacing:570.393267pt;}
.ws4a{word-spacing:757.648068pt;}
.ws11{word-spacing:776.133402pt;}
.ws37{word-spacing:800.494474pt;}
.ws1c{word-spacing:812.819807pt;}
.ws1a{word-spacing:1010.602526pt;}
.ws4f{word-spacing:1125.905560pt;}
.ws15{word-spacing:1325.628971pt;}
.ws25{word-spacing:2316.770635pt;}
.ws23{word-spacing:2675.593222pt;}
._8{margin-left:-17.669666pt;}
._9{margin-left:-16.474857pt;}
._3{width:2.941365pt;}
._f{width:7.597133pt;}
._11{width:12.908822pt;}
._1{width:16.369663pt;}
._12{width:17.754283pt;}
._7{width:21.252959pt;}
._10{width:25.722945pt;}
._0{width:33.666868pt;}
._b{width:37.729052pt;}
._e{width:320.324326pt;}
._d{width:447.769086pt;}
._2{width:466.259753pt;}
._c{width:490.601086pt;}
._4{width:502.931753pt;}
._a{width:2550.073353pt;}
._5{width:2579.740252pt;}
._6{width:2597.210711pt;}
.fs16{font-size:3.147547pt;}
.fs15{font-size:6.293120pt;}
.fsc{font-size:30.605333pt;}
.fs14{font-size:31.465600pt;}
.fsb{font-size:31.880533pt;}
.fs13{font-size:34.613013pt;}
.fsa{font-size:35.732107pt;}
.fse{font-size:37.758720pt;}
.fs9{font-size:39.306293pt;}
.fs3{font-size:40.807467pt;}
.fs2{font-size:42.507200pt;}
.fs12{font-size:44.051733pt;}
.fs8{font-size:51.009067pt;}
.fs7{font-size:53.133867pt;}
.fsf{font-size:56.637867pt;}
.fs18{font-size:58.181867pt;}
.fsd{font-size:61.210667pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs11{font-size:88.104000pt;}
.fs0{font-size:91.815467pt;}
.fs10{font-size:100.690133pt;}
.fs5{font-size:105.793067pt;}
.fs4{font-size:110.200000pt;}
.fs17{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.941333pt;}
.yf{bottom:5.512400pt;}
.y35{bottom:16.320000pt;}
.ye{bottom:18.173333pt;}
.y36{bottom:29.699200pt;}
.y17{bottom:43.495867pt;}
.y37{bottom:45.308000pt;}
.y3a{bottom:49.766667pt;}
.y18{bottom:51.965067pt;}
.y73{bottom:51.965333pt;}
.y6a{bottom:51.965467pt;}
.y16{bottom:58.688000pt;}
.y33{bottom:65.376533pt;}
.y23{bottom:70.578800pt;}
.yd{bottom:71.349733pt;}
.y3d{bottom:72.909067pt;}
.y32{bottom:80.985333pt;}
.y15{bottom:81.478133pt;}
.y22{bottom:83.214733pt;}
.yc{bottom:84.010667pt;}
.y3e{bottom:84.900213pt;}
.y21{bottom:95.850667pt;}
.y3c{bottom:96.941333pt;}
.ya{bottom:104.267200pt;}
.y1f{bottom:108.486667pt;}
.y9{bottom:119.460400pt;}
.y20{bottom:121.122600pt;}
.y8{bottom:132.121333pt;}
.y1e{bottom:147.880733pt;}
.yb{bottom:154.912000pt;}
.y1c{bottom:162.002667pt;}
.y1d{bottom:174.638600pt;}
.y14{bottom:185.298400pt;}
.y4e{bottom:199.663680pt;}
.y13{bottom:200.491600pt;}
.y54{bottom:202.190644pt;}
.y53{bottom:203.429707pt;}
.y51{bottom:204.668253pt;}
.y52{bottom:206.353147pt;}
.y5c{bottom:208.880235pt;}
.y5b{bottom:210.118776pt;}
.y5a{bottom:211.803669pt;}
.y55{bottom:214.281271pt;}
.y56{bottom:215.569812pt;}
.y57{bottom:216.808875pt;}
.y2c{bottom:217.005467pt;}
.y58{bottom:218.047416pt;}
.y59{bottom:219.732309pt;}
.y50{bottom:222.259453pt;}
.y4f{bottom:223.894347pt;}
.y40{bottom:226.421467pt;}
.y41{bottom:228.056880pt;}
.y4d{bottom:230.435547pt;}
.y4c{bottom:231.823040pt;}
.y39{bottom:232.616000pt;}
.y4b{bottom:233.507413pt;}
.y4a{bottom:236.034493pt;}
.y5f{bottom:236.034897pt;}
.y5e{bottom:237.273439pt;}
.y3f{bottom:237.273547pt;}
.y5d{bottom:238.512501pt;}
.y42{bottom:238.512613pt;}
.y49{bottom:240.197520pt;}
.y10{bottom:241.007067pt;}
.y44{bottom:242.724613pt;}
.y48{bottom:243.963147pt;}
.y46{bottom:245.201693pt;}
.y38{bottom:245.994667pt;}
.y47{bottom:246.886587pt;}
.y45{bottom:251.494920pt;}
.y43{bottom:254.418880pt;}
.y12{bottom:256.200000pt;}
.y11{bottom:256.200267pt;}
.y31{bottom:263.089840pt;}
.y25{bottom:268.292533pt;}
.y30{bottom:275.725253pt;}
.y24{bottom:283.901333pt;}
.y2f{bottom:288.360667pt;}
.y29{bottom:318.834933pt;}
.yad{bottom:321.782667pt;}
.y28{bottom:331.470867pt;}
.y64{bottom:339.054217pt;}
.y61{bottom:339.648977pt;}
.yac{bottom:344.033200pt;}
.y27{bottom:344.106800pt;}
.y60{bottom:346.635431pt;}
.y63{bottom:349.509951pt;}
.y66{bottom:354.167697pt;}
.y65{bottom:355.951551pt;}
.yab{bottom:356.651947pt;}
.y2b{bottom:356.742800pt;}
.y62{bottom:362.839111pt;}
.y26{bottom:369.378667pt;}
.yaa{bottom:378.901413pt;}
.y2a{bottom:382.014133pt;}
.y3b{bottom:382.014667pt;}
.y7{bottom:389.752000pt;}
.ya9{bottom:391.521200pt;}
.y2e{bottom:413.232533pt;}
.ya8{bottom:413.770667pt;}
.y2d{bottom:428.841333pt;}
.y88{bottom:443.648133pt;}
.ya7{bottom:463.536000pt;}
.y87{bottom:475.993467pt;}
.ya6{bottom:476.156000pt;}
.ya5{bottom:488.774667pt;}
.y86{bottom:500.474267pt;}
.ya4{bottom:501.394667pt;}
.ya3{bottom:514.013333pt;}
.y85{bottom:524.956133pt;}
.ya2{bottom:526.633333pt;}
.y1b{bottom:534.000000pt;}
.ya1{bottom:539.252000pt;}
.y84{bottom:549.437733pt;}
.ya0{bottom:551.872000pt;}
.y9f{bottom:564.490667pt;}
.y83{bottom:573.919520pt;}
.y9e{bottom:577.110667pt;}
.y9d{bottom:589.729333pt;}
.y82{bottom:596.168987pt;}
.y9c{bottom:602.349333pt;}
.y9b{bottom:614.968000pt;}
.y81{bottom:618.418453pt;}
.y9a{bottom:627.588000pt;}
.y99{bottom:640.206667pt;}
.y80{bottom:650.763787pt;}
.y98{bottom:652.826667pt;}
.y6{bottom:661.181333pt;}
.y97{bottom:671.489333pt;}
.y7f{bottom:677.477387pt;}
.y7e{bottom:704.190453pt;}
.y96{bottom:721.402667pt;}
.y7d{bottom:726.440987pt;}
.y5{bottom:735.111733pt;}
.y7c{bottom:739.059733pt;}
.y95{bottom:742.892000pt;}
.y72{bottom:749.216000pt;}
.y94{bottom:764.381333pt;}
.y71{bottom:772.461333pt;}
.y7b{bottom:774.004000pt;}
.y93{bottom:785.870667pt;}
.y70{bottom:786.694667pt;}
.y6f{bottom:799.314667pt;}
.y4{bottom:804.213333pt;}
.y92{bottom:807.361333pt;}
.y6e{bottom:822.560000pt;}
.y91{bottom:828.850667pt;}
.y7a{bottom:834.642667pt;}
.y6d{bottom:845.806667pt;}
.y90{bottom:850.340000pt;}
.y76{bottom:856.174667pt;}
.y75{bottom:868.793333pt;}
.y6c{bottom:869.053333pt;}
.y8f{bottom:870.218880pt;}
.y77{bottom:874.389333pt;}
.y8e{bottom:882.838667pt;}
.yae{bottom:886.884000pt;}
.y79{bottom:901.316000pt;}
.y8d{bottom:904.328000pt;}
.y3{bottom:917.699600pt;}
.y8c{bottom:926.349333pt;}
.y8b{bottom:942.289333pt;}
.y74{bottom:942.936000pt;}
.y6b{bottom:944.174667pt;}
.y2{bottom:950.908000pt;}
.y78{bottom:952.598667pt;}
.y8a{bottom:966.022667pt;}
.y69{bottom:979.893467pt;}
.y1a{bottom:987.997333pt;}
.y68{bottom:1002.143920pt;}
.y89{bottom:1010.246667pt;}
.y1{bottom:1014.337333pt;}
.y67{bottom:1014.762667pt;}
.y19{bottom:1059.560000pt;}
.h17{height:2.288266pt;}
.h16{height:4.575098pt;}
.h15{height:21.774195pt;}
.h13{height:25.475178pt;}
.h8{height:26.334563pt;}
.hb{height:26.393345pt;}
.h12{height:27.450589pt;}
.hc{height:27.790418pt;}
.h7{height:28.300531pt;}
.h9{height:28.968738pt;}
.h1a{height:31.836293pt;}
.h24{height:31.836826pt;}
.h20{height:31.837359pt;}
.h18{height:31.837893pt;}
.h19{height:31.838213pt;}
.h21{height:31.839493pt;}
.h1f{height:31.839813pt;}
.h10{height:32.025610pt;}
.h11{height:32.422076pt;}
.hf{height:33.126903pt;}
.hd{height:39.198204pt;}
.h23{height:39.665835pt;}
.h1d{height:39.797266pt;}
.h1c{height:43.578218pt;}
.h22{height:47.755439pt;}
.h1e{height:47.755972pt;}
.h5{height:47.757039pt;}
.h4{height:57.309354pt;}
.h14{height:59.174076pt;}
.h2{height:68.769785pt;}
.he{height:74.107938pt;}
.h3{height:82.539800pt;}
.h1b{height:99.016202pt;}
.h6{height:265.320000pt;}
.ha{height:446.933333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:414.506667pt;}
.w3{width:560.133333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:4.441200pt;}
.x1d{left:8.900800pt;}
.x13{left:18.592893pt;}
.x15{left:37.492133pt;}
.x2c{left:41.742667pt;}
.x3b{left:43.761467pt;}
.x36{left:46.274533pt;}
.x38{left:49.474533pt;}
.x21{left:51.268400pt;}
.x2f{left:53.432267pt;}
.x33{left:58.745280pt;}
.x1b{left:84.716000pt;}
.x9{left:94.558000pt;}
.xa{left:107.220000pt;}
.x16{left:116.800000pt;}
.x1e{left:118.163333pt;}
.x2{left:124.174533pt;}
.x11{left:127.477333pt;}
.x1{left:130.909333pt;}
.x35{left:135.929333pt;}
.x12{left:137.606493pt;}
.x20{left:140.461333pt;}
.x2b{left:141.602011pt;}
.x6{left:143.100000pt;}
.xe{left:150.267867pt;}
.x8{left:156.174667pt;}
.x34{left:160.242667pt;}
.x14{left:162.928360pt;}
.x5{left:185.406667pt;}
.xd{left:188.250667pt;}
.x7{left:189.598667pt;}
.x1f{left:209.586667pt;}
.x10{left:213.573067pt;}
.xb{left:231.297333pt;}
.xf{left:246.491333pt;}
.x4{left:255.458667pt;}
.xc{left:271.811867pt;}
.x3{left:275.437200pt;}
.x3a{left:277.098667pt;}
.x30{left:291.704000pt;}
.x31{left:298.496000pt;}
.x22{left:302.828000pt;}
.x23{left:303.917584pt;}
.x24{left:306.108731pt;}
.x2e{left:328.984000pt;}
.x37{left:334.081333pt;}
.x2d{left:335.166667pt;}
.x17{left:338.918667pt;}
.x18{left:350.068000pt;}
.x1a{left:394.664000pt;}
.x19{left:450.409333pt;}
.x28{left:474.294664pt;}
.x26{left:476.821837pt;}
.x25{left:478.456731pt;}
.x29{left:496.047837pt;}
.x2a{left:498.525491pt;}
.x27{left:505.215037pt;}
.x39{left:524.877333pt;}
.x3c{left:591.590667pt;}
.x32{left:644.965333pt;}
}




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