
    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_24379077236ed8aaa37472f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_8aaca707da477a8a65b99da1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.977000;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_b7dc7803909ca0488e124c99.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.977000;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_3a7fd32ec6af52b643a7aae2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_36eea1318a60229fb0422a20.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.042969;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_4008f0743c522949d7bb9105.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.713867;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_c1f63190a15b52b40a8dc36b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.715820;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_501368dfb70d0880e33b1996.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v5{vertical-align:-19.680180px;}
.v2{vertical-align:-8.460060px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.205500px;}
.v6{vertical-align:39.207180px;}
.v3{vertical-align:56.116440px;}
.v4{vertical-align:66.448440px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:2.397060px;}
.ls6{letter-spacing:7.891200px;}
.lsb{letter-spacing:10.197600px;}
.ls2{letter-spacing:10.198080px;}
.lsa{letter-spacing:10.198500px;}
.ls3{letter-spacing:10.198920px;}
.ls9{letter-spacing:10.199220px;}
.ls8{letter-spacing:17.512860px;}
.ls4{letter-spacing:37.757820px;}
.lsc{letter-spacing:72.000180px;}
.ls7{letter-spacing:74.940780px;}
.ls1{letter-spacing:78.120000px;}
.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;}
}
.ws3d{word-spacing:-79.254000px;}
.ws0{word-spacing:-59.185928px;}
.ws1{word-spacing:-59.185871px;}
.ws44{word-spacing:-49.322740px;}
.ws39{word-spacing:-49.322456px;}
.ws63{word-spacing:-48.951000px;}
.ws5b{word-spacing:-47.760000px;}
.ws31{word-spacing:-41.924466px;}
.ws54{word-spacing:-41.924315px;}
.ws51{word-spacing:-41.924059px;}
.ws4d{word-spacing:-41.923512px;}
.ws45{word-spacing:-41.923219px;}
.ws46{word-spacing:-39.660000px;}
.ws4b{word-spacing:-37.562060px;}
.ws4c{word-spacing:-37.561890px;}
.ws16{word-spacing:-37.561210px;}
.ws56{word-spacing:-37.561080px;}
.ws58{word-spacing:-37.560780px;}
.ws2{word-spacing:-36.992523px;}
.ws6d{word-spacing:-36.991474px;}
.ws3{word-spacing:-36.991162px;}
.ws6{word-spacing:-34.860000px;}
.ws61{word-spacing:-31.438786px;}
.ws62{word-spacing:-31.369374px;}
.ws5e{word-spacing:-31.044000px;}
.ws40{word-spacing:-29.467097px;}
.ws3b{word-spacing:-29.462820px;}
.ws2e{word-spacing:-29.462713px;}
.ws2b{word-spacing:-29.462593px;}
.ws6f{word-spacing:-28.990138px;}
.ws29{word-spacing:-28.982953px;}
.ws3f{word-spacing:-28.981568px;}
.ws9{word-spacing:-28.981550px;}
.ws36{word-spacing:-28.981455px;}
.ws26{word-spacing:-28.981285px;}
.ws34{word-spacing:-28.981134px;}
.ws4{word-spacing:-28.980718px;}
.ws38{word-spacing:-28.980359px;}
.wse{word-spacing:-27.888000px;}
.ws5c{word-spacing:-25.619868px;}
.ws41{word-spacing:-24.681557px;}
.ws1b{word-spacing:-24.678290px;}
.ws27{word-spacing:-24.673979px;}
.ws66{word-spacing:-24.672965px;}
.ws28{word-spacing:-24.671655px;}
.ws4a{word-spacing:-24.671485px;}
.ws57{word-spacing:-24.671143px;}
.ws43{word-spacing:-24.671131px;}
.ws3a{word-spacing:-24.670672px;}
.ws1f{word-spacing:-24.669908px;}
.ws25{word-spacing:-24.669900px;}
.ws3c{word-spacing:-24.669120px;}
.ws42{word-spacing:-24.667722px;}
.ws70{word-spacing:-24.667236px;}
.ws68{word-spacing:-24.666566px;}
.ws6e{word-spacing:-24.666315px;}
.ws64{word-spacing:-24.666300px;}
.ws4e{word-spacing:-24.665442px;}
.ws60{word-spacing:-24.665400px;}
.ws55{word-spacing:-24.665220px;}
.ws17{word-spacing:-24.662476px;}
.ws2c{word-spacing:-24.662362px;}
.ws19{word-spacing:-24.662306px;}
.ws3e{word-spacing:-24.662220px;}
.ws23{word-spacing:-24.662060px;}
.ws21{word-spacing:-24.662041px;}
.ws6c{word-spacing:-24.661928px;}
.ws1c{word-spacing:-24.661871px;}
.ws2a{word-spacing:-24.661852px;}
.ws53{word-spacing:-24.661795px;}
.ws5f{word-spacing:-24.661777px;}
.ws20{word-spacing:-24.661739px;}
.ws30{word-spacing:-24.661682px;}
.ws5d{word-spacing:-24.661644px;}
.ws1d{word-spacing:-24.661568px;}
.ws52{word-spacing:-24.661474px;}
.ws67{word-spacing:-24.661304px;}
.ws69{word-spacing:-24.661228px;}
.ws1a{word-spacing:-24.661210px;}
.ws59{word-spacing:-24.661115px;}
.ws24{word-spacing:-24.661039px;}
.ws65{word-spacing:-24.661021px;}
.ws22{word-spacing:-24.660945px;}
.ws2f{word-spacing:-24.660907px;}
.ws18{word-spacing:-24.660869px;}
.ws6b{word-spacing:-24.660737px;}
.ws32{word-spacing:-24.660699px;}
.ws2d{word-spacing:-24.660529px;}
.ws48{word-spacing:-24.660416px;}
.ws7{word-spacing:-19.732800px;}
.ws13{word-spacing:-19.732172px;}
.ws15{word-spacing:-19.729908px;}
.wsd{word-spacing:-19.729860px;}
.ws14{word-spacing:-19.729134px;}
.wsc{word-spacing:-19.728813px;}
.ws4f{word-spacing:-16.980180px;}
.ws5a{word-spacing:-14.461417px;}
.ws50{word-spacing:-12.540132px;}
.ws49{word-spacing:-11.580180px;}
.ws1e{word-spacing:0.000000px;}
.ws6a{word-spacing:12.359225px;}
.ws47{word-spacing:15.899924px;}
.ws37{word-spacing:19.440000px;}
.ws35{word-spacing:19.980000px;}
.ws33{word-spacing:33.720000px;}
.ws8{word-spacing:1994.374680px;}
.ws10{word-spacing:2222.458129px;}
.wsf{word-spacing:2278.403320px;}
.ws11{word-spacing:2322.187370px;}
.ws5{word-spacing:2380.444894px;}
.wsb{word-spacing:2381.138520px;}
.wsa{word-spacing:2548.981800px;}
.ws12{word-spacing:2605.624970px;}
._18{width:1.862391px;}
._19{width:3.070236px;}
._10{width:4.500038px;}
._0{width:8.155680px;}
._15{width:11.155502px;}
._12{width:12.239471px;}
._11{width:15.500371px;}
._17{width:17.939584px;}
._13{width:19.200113px;}
._7{width:20.386455px;}
._e{width:21.479849px;}
._14{width:22.979944px;}
._16{width:25.175660px;}
._d{width:35.219830px;}
._9{width:37.019944px;}
._b{width:47.219225px;}
._f{width:50.759924px;}
._c{width:53.040000px;}
._a{width:54.840113px;}
._8{width:68.580094px;}
._1b{width:163.688863px;}
._1a{width:330.905103px;}
._1{width:1010.555491px;}
._4{width:1781.699925px;}
._6{width:1946.531377px;}
._3{width:2217.374433px;}
._5{width:2326.454088px;}
._2{width:2462.826350px;}
.fc4{color:rgb(0,5,70);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(23,43,77);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:39.000000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs5{font-size:102.000000px;}
.fs4{font-size:120.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:75.405000px;}
.y69{bottom:139.022490px;}
.yd2{bottom:143.910675px;}
.ya9{bottom:162.966990px;}
.y68{bottom:167.372490px;}
.yd1{bottom:172.260675px;}
.y8c{bottom:173.590560px;}
.y52{bottom:174.975015px;}
.y80{bottom:179.085015px;}
.yee{bottom:187.455000px;}
.ya8{bottom:191.121435px;}
.y67{bottom:195.722490px;}
.yd0{bottom:200.610675px;}
.y51{bottom:203.325015px;}
.ya7{bottom:204.808950px;}
.y7f{bottom:207.435015px;}
.y1d{bottom:208.800000px;}
.y3b{bottom:212.730030px;}
.yed{bottom:215.805000px;}
.y8b{bottom:228.660015px;}
.ycf{bottom:228.960675px;}
.y50{bottom:231.675015px;}
.y66{bottom:231.953520px;}
.y1c{bottom:237.150000px;}
.y3a{bottom:241.080030px;}
.yec{bottom:244.155000px;}
.ya6{bottom:246.618045px;}
.y8a{bottom:257.010015px;}
.y4f{bottom:260.025015px;}
.y7e{bottom:264.135015px;}
.y1b{bottom:265.500000px;}
.y39{bottom:269.430030px;}
.yeb{bottom:272.505000px;}
.ya5{bottom:274.968045px;}
.y89{bottom:285.360015px;}
.y65{bottom:292.082520px;}
.y7d{bottom:292.485015px;}
.y1a{bottom:293.850000px;}
.y38{bottom:297.780030px;}
.ya4{bottom:303.318045px;}
.yce{bottom:303.660660px;}
.y4e{bottom:309.600030px;}
.y88{bottom:313.710015px;}
.y19{bottom:322.200000px;}
.y37{bottom:326.130030px;}
.yea{bottom:329.205000px;}
.ya3{bottom:331.668045px;}
.ycd{bottom:332.010660px;}
.y4d{bottom:337.950030px;}
.yb9{bottom:348.406725px;}
.y7c{bottom:349.185015px;}
.y18{bottom:350.550000px;}
.ye9{bottom:357.555000px;}
.yb8{bottom:359.532390px;}
.ya2{bottom:360.018045px;}
.y87{bottom:370.410015px;}
.y64{bottom:372.002520px;}
.y4c{bottom:375.180015px;}
.y36{bottom:375.705000px;}
.y17{bottom:378.900000px;}
.ye8{bottom:385.905000px;}
.ycc{bottom:388.710660px;}
.y86{bottom:398.760015px;}
.y7b{bottom:398.760030px;}
.y63{bottom:400.352520px;}
.y35{bottom:404.055000px;}
.y16{bottom:407.250000px;}
.y4b{bottom:412.980015px;}
.ye7{bottom:414.255000px;}
.ya1{bottom:416.522535px;}
.ycb{bottom:417.060660px;}
.yb7{bottom:422.464200px;}
.y7a{bottom:427.110015px;}
.ya0{bottom:427.648200px;}
.y62{bottom:428.702520px;}
.y34{bottom:432.405000px;}
.ye6{bottom:442.605000px;}
.y15{bottom:444.480030px;}
.y9f{bottom:448.699605px;}
.y79{bottom:455.460015px;}
.yca{bottom:463.410645px;}
.y61{bottom:464.933505px;}
.ye5{bottom:470.955000px;}
.y9e{bottom:477.049605px;}
.yb6{bottom:479.164200px;}
.y33{bottom:481.980030px;}
.y78{bottom:483.810015px;}
.y4a{bottom:492.900015px;}
.ye4{bottom:499.305000px;}
.y9d{bottom:505.399605px;}
.yb5{bottom:507.514200px;}
.y32{bottom:510.330030px;}
.y77{bottom:512.160015px;}
.yc9{bottom:518.706645px;}
.y49{bottom:521.250015px;}
.ye3{bottom:527.655000px;}
.y60{bottom:531.182535px;}
.y9c{bottom:533.749605px;}
.y14{bottom:533.850030px;}
.y31{bottom:538.680030px;}
.y76{bottom:540.510015px;}
.y13{bottom:552.750030px;}
.y5f{bottom:559.532535px;}
.y9b{bottom:562.099605px;}
.yb4{bottom:564.214200px;}
.y30{bottom:567.030030px;}
.y85{bottom:568.860015px;}
.y48{bottom:570.825030px;}
.y12{bottom:571.650030px;}
.ye2{bottom:584.355000px;}
.y5e{bottom:587.882535px;}
.y9a{bottom:590.449605px;}
.y75{bottom:592.806000px;}
.y2f{bottom:595.380030px;}
.y47{bottom:599.175030px;}
.y11{bottom:599.550000px;}
.ye1{bottom:612.705000px;}
.yc8{bottom:613.305675px;}
.y5d{bottom:616.232535px;}
.y99{bottom:618.799605px;}
.yb3{bottom:620.914200px;}
.y2e{bottom:623.730030px;}
.y84{bottom:625.560015px;}
.y10{bottom:627.450015px;}
.y46{bottom:627.525030px;}
.ye0{bottom:641.055000px;}
.yc7{bottom:641.655675px;}
.yf{bottom:646.350015px;}
.y98{bottom:647.149605px;}
.yb2{bottom:649.264200px;}
.y2d{bottom:652.080030px;}
.y83{bottom:653.910015px;}
.y45{bottom:655.875030px;}
.y74{bottom:659.055030px;}
.ye{bottom:665.250015px;}
.y5c{bottom:665.807505px;}
.ydf{bottom:669.405000px;}
.yc6{bottom:670.005675px;}
.y97{bottom:675.499605px;}
.yd{bottom:684.150015px;}
.y44{bottom:684.225030px;}
.y73{bottom:687.405030px;}
.y5b{bottom:694.157505px;}
.yde{bottom:697.755000px;}
.yc5{bottom:698.355675px;}
.y2c{bottom:701.655000px;}
.yb1{bottom:705.964200px;}
.y82{bottom:706.206000px;}
.yc{bottom:712.049985px;}
.y43{bottom:712.575030px;}
.y72{bottom:715.755030px;}
.y5a{bottom:722.507505px;}
.y2b{bottom:730.005000px;}
.y96{bottom:732.199605px;}
.yb0{bottom:734.314200px;}
.yb{bottom:739.950000px;}
.y42{bottom:740.925030px;}
.y71{bottom:744.105030px;}
.ydd{bottom:754.455000px;}
.yc4{bottom:755.055675px;}
.y2a{bottom:758.355000px;}
.ya{bottom:758.850000px;}
.y95{bottom:760.549605px;}
.yaf{bottom:762.664200px;}
.y59{bottom:772.082520px;}
.y70{bottom:772.455030px;}
.ydc{bottom:782.805000px;}
.yc3{bottom:783.405675px;}
.y29{bottom:786.705000px;}
.y9{bottom:786.750015px;}
.y41{bottom:790.500000px;}
.yae{bottom:791.014200px;}
.y58{bottom:800.432520px;}
.y6f{bottom:800.805030px;}
.ydb{bottom:811.155000px;}
.yc2{bottom:811.755675px;}
.y8{bottom:814.649985px;}
.y40{bottom:818.850000px;}
.yad{bottom:819.364200px;}
.y94{bottom:819.970560px;}
.y57{bottom:828.782520px;}
.y6e{bottom:829.155030px;}
.y28{bottom:836.280015px;}
.yda{bottom:839.505000px;}
.yc1{bottom:840.105675px;}
.y7{bottom:842.550000px;}
.yac{bottom:847.714200px;}
.y3f{bottom:855.081030px;}
.yf8{bottom:856.680030px;}
.y6d{bottom:857.505030px;}
.y27{bottom:864.630015px;}
.y56{bottom:864.756300px;}
.yd9{bottom:867.855000px;}
.y93{bottom:875.040015px;}
.yf7{bottom:885.030030px;}
.y81{bottom:885.855030px;}
.y6{bottom:892.185015px;}
.y26{bottom:892.980015px;}
.yc0{bottom:895.235220px;}
.yd8{bottom:896.205000px;}
.y92{bottom:903.390015px;}
.yab{bottom:908.718675px;}
.yf6{bottom:913.380030px;}
.y6c{bottom:914.205030px;}
.y25{bottom:921.330015px;}
.ybf{bottom:922.800000px;}
.yaa{bottom:923.452935px;}
.y55{bottom:928.455045px;}
.y91{bottom:931.740015px;}
.yf5{bottom:941.730030px;}
.y6b{bottom:942.555030px;}
.y5{bottom:948.750015px;}
.y24{bottom:949.680015px;}
.ybe{bottom:951.150000px;}
.yd7{bottom:952.905000px;}
.y54{bottom:956.805045px;}
.y90{bottom:960.090015px;}
.yf4{bottom:970.080030px;}
.y6a{bottom:970.905030px;}
.y4{bottom:977.100015px;}
.y3e{bottom:978.030015px;}
.ybd{bottom:979.500000px;}
.yd6{bottom:981.255000px;}
.y8f{bottom:988.440015px;}
.yf3{bottom:998.430030px;}
.y23{bottom:999.255030px;}
.y3d{bottom:1006.380015px;}
.yd5{bottom:1009.605000px;}
.yf2{bottom:1026.780030px;}
.y22{bottom:1027.605030px;}
.ybc{bottom:1029.075015px;}
.y3{bottom:1032.447000px;}
.y3c{bottom:1034.730015px;}
.yd4{bottom:1037.955000px;}
.y8e{bottom:1040.736000px;}
.yf1{bottom:1055.130015px;}
.y21{bottom:1055.955030px;}
.y53{bottom:1063.080015px;}
.ybb{bottom:1065.306000px;}
.yd3{bottom:1066.305000px;}
.y2{bottom:1077.807000px;}
.yf0{bottom:1083.480015px;}
.y20{bottom:1084.305030px;}
.y8d{bottom:1106.985030px;}
.y1f{bottom:1112.655030px;}
.yba{bottom:1125.435000px;}
.yef{bottom:1133.220015px;}
.y1e{bottom:1141.005030px;}
.h2{height:45.420000px;}
.hf{height:45.896484px;}
.ha{height:46.204102px;}
.h8{height:52.804688px;}
.hc{height:61.605469px;}
.h4{height:68.130000px;}
.h7{height:74.308594px;}
.h6{height:77.214000px;}
.h9{height:82.409602px;}
.he{height:85.411282px;}
.h5{height:90.840000px;}
.h3{height:109.008000px;}
.hb{height:117.721909px;}
.hd{height:128.053909px;}
.h0{height:1262.850030px;}
.h1{height:1263.000000px;}
.w0{width:892.949985px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.049955px;}
.xd{left:87.525840px;}
.x5{left:100.049970px;}
.x8{left:112.050000px;}
.x6{left:115.050015px;}
.x3{left:136.598490px;}
.x9{left:139.050000px;}
.xa{left:144.449955px;}
.x10{left:166.049955px;}
.xb{left:176.850015px;}
.xf{left:192.224985px;}
.x4{left:195.974505px;}
.x11{left:214.649955px;}
.x16{left:228.320055px;}
.x12{left:247.050000px;}
.xc{left:302.293425px;}
.x14{left:340.600500px;}
.x18{left:386.591700px;}
.xe{left:414.958995px;}
.x17{left:464.855835px;}
.x13{left:520.922535px;}
.x15{left:540.349350px;}
.x19{left:567.317865px;}
.x1a{left:791.355075px;}
.x1b{left:796.769700px;}
.x7{left:798.900360px;}
.x1{left:802.334850px;}
@media print{
.v5{vertical-align:-17.493493pt;}
.v2{vertical-align:-7.520053pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.182667pt;}
.v6{vertical-align:34.850827pt;}
.v3{vertical-align:49.881280pt;}
.v4{vertical-align:59.065280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:2.130720pt;}
.ls6{letter-spacing:7.014400pt;}
.lsb{letter-spacing:9.064533pt;}
.ls2{letter-spacing:9.064960pt;}
.lsa{letter-spacing:9.065333pt;}
.ls3{letter-spacing:9.065707pt;}
.ls9{letter-spacing:9.065973pt;}
.ls8{letter-spacing:15.566987pt;}
.ls4{letter-spacing:33.562507pt;}
.lsc{letter-spacing:64.000160pt;}
.ls7{letter-spacing:66.614027pt;}
.ls1{letter-spacing:69.440000pt;}
.ws3d{word-spacing:-70.448000pt;}
.ws0{word-spacing:-52.609714pt;}
.ws1{word-spacing:-52.609663pt;}
.ws44{word-spacing:-43.842435pt;}
.ws39{word-spacing:-43.842183pt;}
.ws63{word-spacing:-43.512000pt;}
.ws5b{word-spacing:-42.453333pt;}
.ws31{word-spacing:-37.266192pt;}
.ws54{word-spacing:-37.266058pt;}
.ws51{word-spacing:-37.265831pt;}
.ws4d{word-spacing:-37.265344pt;}
.ws45{word-spacing:-37.265083pt;}
.ws46{word-spacing:-35.253333pt;}
.ws4b{word-spacing:-33.388498pt;}
.ws4c{word-spacing:-33.388347pt;}
.ws16{word-spacing:-33.387742pt;}
.ws56{word-spacing:-33.387627pt;}
.ws58{word-spacing:-33.387360pt;}
.ws2{word-spacing:-32.882242pt;}
.ws6d{word-spacing:-32.881310pt;}
.ws3{word-spacing:-32.881033pt;}
.ws6{word-spacing:-30.986667pt;}
.ws61{word-spacing:-27.945588pt;}
.ws62{word-spacing:-27.883888pt;}
.ws5e{word-spacing:-27.594667pt;}
.ws40{word-spacing:-26.192975pt;}
.ws3b{word-spacing:-26.189173pt;}
.ws2e{word-spacing:-26.189078pt;}
.ws2b{word-spacing:-26.188971pt;}
.ws6f{word-spacing:-25.769011pt;}
.ws29{word-spacing:-25.762625pt;}
.ws3f{word-spacing:-25.761394pt;}
.ws9{word-spacing:-25.761378pt;}
.ws36{word-spacing:-25.761293pt;}
.ws26{word-spacing:-25.761142pt;}
.ws34{word-spacing:-25.761008pt;}
.ws4{word-spacing:-25.760638pt;}
.ws38{word-spacing:-25.760319pt;}
.wse{word-spacing:-24.789333pt;}
.ws5c{word-spacing:-22.773216pt;}
.ws41{word-spacing:-21.939162pt;}
.ws1b{word-spacing:-21.936258pt;}
.ws27{word-spacing:-21.932426pt;}
.ws66{word-spacing:-21.931525pt;}
.ws28{word-spacing:-21.930360pt;}
.ws4a{word-spacing:-21.930209pt;}
.ws57{word-spacing:-21.929905pt;}
.ws43{word-spacing:-21.929894pt;}
.ws3a{word-spacing:-21.929486pt;}
.ws1f{word-spacing:-21.928807pt;}
.ws25{word-spacing:-21.928800pt;}
.ws3c{word-spacing:-21.928107pt;}
.ws42{word-spacing:-21.926864pt;}
.ws70{word-spacing:-21.926432pt;}
.ws68{word-spacing:-21.925837pt;}
.ws6e{word-spacing:-21.925613pt;}
.ws64{word-spacing:-21.925600pt;}
.ws4e{word-spacing:-21.924837pt;}
.ws60{word-spacing:-21.924800pt;}
.ws55{word-spacing:-21.924640pt;}
.ws17{word-spacing:-21.922201pt;}
.ws2c{word-spacing:-21.922100pt;}
.ws19{word-spacing:-21.922050pt;}
.ws3e{word-spacing:-21.921973pt;}
.ws23{word-spacing:-21.921831pt;}
.ws21{word-spacing:-21.921814pt;}
.ws6c{word-spacing:-21.921714pt;}
.ws1c{word-spacing:-21.921663pt;}
.ws2a{word-spacing:-21.921646pt;}
.ws53{word-spacing:-21.921596pt;}
.ws5f{word-spacing:-21.921579pt;}
.ws20{word-spacing:-21.921546pt;}
.ws30{word-spacing:-21.921495pt;}
.ws5d{word-spacing:-21.921461pt;}
.ws1d{word-spacing:-21.921394pt;}
.ws52{word-spacing:-21.921310pt;}
.ws67{word-spacing:-21.921159pt;}
.ws69{word-spacing:-21.921092pt;}
.ws1a{word-spacing:-21.921075pt;}
.ws59{word-spacing:-21.920991pt;}
.ws24{word-spacing:-21.920924pt;}
.ws65{word-spacing:-21.920907pt;}
.ws22{word-spacing:-21.920840pt;}
.ws2f{word-spacing:-21.920806pt;}
.ws18{word-spacing:-21.920773pt;}
.ws6b{word-spacing:-21.920655pt;}
.ws32{word-spacing:-21.920621pt;}
.ws2d{word-spacing:-21.920470pt;}
.ws48{word-spacing:-21.920370pt;}
.ws7{word-spacing:-17.540267pt;}
.ws13{word-spacing:-17.539708pt;}
.ws15{word-spacing:-17.537696pt;}
.wsd{word-spacing:-17.537653pt;}
.ws14{word-spacing:-17.537008pt;}
.wsc{word-spacing:-17.536722pt;}
.ws4f{word-spacing:-15.093493pt;}
.ws5a{word-spacing:-12.854593pt;}
.ws50{word-spacing:-11.146784pt;}
.ws49{word-spacing:-10.293493pt;}
.ws1e{word-spacing:0.000000pt;}
.ws6a{word-spacing:10.985978pt;}
.ws47{word-spacing:14.133266pt;}
.ws37{word-spacing:17.280000pt;}
.ws35{word-spacing:17.760000pt;}
.ws33{word-spacing:29.973333pt;}
.ws8{word-spacing:1772.777493pt;}
.ws10{word-spacing:1975.518337pt;}
.wsf{word-spacing:2025.247395pt;}
.ws11{word-spacing:2064.166551pt;}
.ws5{word-spacing:2115.951017pt;}
.wsb{word-spacing:2116.567573pt;}
.wsa{word-spacing:2265.761600pt;}
.ws12{word-spacing:2316.111084pt;}
._18{width:1.655459pt;}
._19{width:2.729099pt;}
._10{width:4.000034pt;}
._0{width:7.249493pt;}
._15{width:9.916002pt;}
._12{width:10.879530pt;}
._11{width:13.778108pt;}
._17{width:15.946297pt;}
._13{width:17.066767pt;}
._7{width:18.121293pt;}
._e{width:19.093199pt;}
._14{width:20.426617pt;}
._16{width:22.378365pt;}
._d{width:31.306516pt;}
._9{width:32.906617pt;}
._b{width:41.972645pt;}
._f{width:45.119933pt;}
._c{width:47.146667pt;}
._a{width:48.746767pt;}
._8{width:60.960084pt;}
._1b{width:145.501212pt;}
._1a{width:294.137869pt;}
._1{width:898.271547pt;}
._4{width:1583.733266pt;}
._6{width:1730.250113pt;}
._3{width:1970.999496pt;}
._5{width:2067.959190pt;}
._2{width:2189.178978pt;}
.fs9{font-size:34.666667pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs5{font-size:90.666667pt;}
.fs4{font-size:106.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.026667pt;}
.y69{bottom:123.575547pt;}
.yd2{bottom:127.920600pt;}
.ya9{bottom:144.859547pt;}
.y68{bottom:148.775547pt;}
.yd1{bottom:153.120600pt;}
.y8c{bottom:154.302720pt;}
.y52{bottom:155.533347pt;}
.y80{bottom:159.186680pt;}
.yee{bottom:166.626667pt;}
.ya8{bottom:169.885720pt;}
.y67{bottom:173.975547pt;}
.yd0{bottom:178.320600pt;}
.y51{bottom:180.733347pt;}
.ya7{bottom:182.052400pt;}
.y7f{bottom:184.386680pt;}
.y1d{bottom:185.600000pt;}
.y3b{bottom:189.093360pt;}
.yed{bottom:191.826667pt;}
.y8b{bottom:203.253347pt;}
.ycf{bottom:203.520600pt;}
.y50{bottom:205.933347pt;}
.y66{bottom:206.180907pt;}
.y1c{bottom:210.800000pt;}
.y3a{bottom:214.293360pt;}
.yec{bottom:217.026667pt;}
.ya6{bottom:219.216040pt;}
.y8a{bottom:228.453347pt;}
.y4f{bottom:231.133347pt;}
.y7e{bottom:234.786680pt;}
.y1b{bottom:236.000000pt;}
.y39{bottom:239.493360pt;}
.yeb{bottom:242.226667pt;}
.ya5{bottom:244.416040pt;}
.y89{bottom:253.653347pt;}
.y65{bottom:259.628907pt;}
.y7d{bottom:259.986680pt;}
.y1a{bottom:261.200000pt;}
.y38{bottom:264.693360pt;}
.ya4{bottom:269.616040pt;}
.yce{bottom:269.920587pt;}
.y4e{bottom:275.200027pt;}
.y88{bottom:278.853347pt;}
.y19{bottom:286.400000pt;}
.y37{bottom:289.893360pt;}
.yea{bottom:292.626667pt;}
.ya3{bottom:294.816040pt;}
.ycd{bottom:295.120587pt;}
.y4d{bottom:300.400027pt;}
.yb9{bottom:309.694867pt;}
.y7c{bottom:310.386680pt;}
.y18{bottom:311.600000pt;}
.ye9{bottom:317.826667pt;}
.yb8{bottom:319.584347pt;}
.ya2{bottom:320.016040pt;}
.y87{bottom:329.253347pt;}
.y64{bottom:330.668907pt;}
.y4c{bottom:333.493347pt;}
.y36{bottom:333.960000pt;}
.y17{bottom:336.800000pt;}
.ye8{bottom:343.026667pt;}
.ycc{bottom:345.520587pt;}
.y86{bottom:354.453347pt;}
.y7b{bottom:354.453360pt;}
.y63{bottom:355.868907pt;}
.y35{bottom:359.160000pt;}
.y16{bottom:362.000000pt;}
.y4b{bottom:367.093347pt;}
.ye7{bottom:368.226667pt;}
.ya1{bottom:370.242253pt;}
.ycb{bottom:370.720587pt;}
.yb7{bottom:375.523733pt;}
.y7a{bottom:379.653347pt;}
.ya0{bottom:380.131733pt;}
.y62{bottom:381.068907pt;}
.y34{bottom:384.360000pt;}
.ye6{bottom:393.426667pt;}
.y15{bottom:395.093360pt;}
.y9f{bottom:398.844093pt;}
.y79{bottom:404.853347pt;}
.yca{bottom:411.920573pt;}
.y61{bottom:413.274227pt;}
.ye5{bottom:418.626667pt;}
.y9e{bottom:424.044093pt;}
.yb6{bottom:425.923733pt;}
.y33{bottom:428.426693pt;}
.y78{bottom:430.053347pt;}
.y4a{bottom:438.133347pt;}
.ye4{bottom:443.826667pt;}
.y9d{bottom:449.244093pt;}
.yb5{bottom:451.123733pt;}
.y32{bottom:453.626693pt;}
.y77{bottom:455.253347pt;}
.yc9{bottom:461.072573pt;}
.y49{bottom:463.333347pt;}
.ye3{bottom:469.026667pt;}
.y60{bottom:472.162253pt;}
.y9c{bottom:474.444093pt;}
.y14{bottom:474.533360pt;}
.y31{bottom:478.826693pt;}
.y76{bottom:480.453347pt;}
.y13{bottom:491.333360pt;}
.y5f{bottom:497.362253pt;}
.y9b{bottom:499.644093pt;}
.yb4{bottom:501.523733pt;}
.y30{bottom:504.026693pt;}
.y85{bottom:505.653347pt;}
.y48{bottom:507.400027pt;}
.y12{bottom:508.133360pt;}
.ye2{bottom:519.426667pt;}
.y5e{bottom:522.562253pt;}
.y9a{bottom:524.844093pt;}
.y75{bottom:526.938667pt;}
.y2f{bottom:529.226693pt;}
.y47{bottom:532.600027pt;}
.y11{bottom:532.933333pt;}
.ye1{bottom:544.626667pt;}
.yc8{bottom:545.160600pt;}
.y5d{bottom:547.762253pt;}
.y99{bottom:550.044093pt;}
.yb3{bottom:551.923733pt;}
.y2e{bottom:554.426693pt;}
.y84{bottom:556.053347pt;}
.y10{bottom:557.733347pt;}
.y46{bottom:557.800027pt;}
.ye0{bottom:569.826667pt;}
.yc7{bottom:570.360600pt;}
.yf{bottom:574.533347pt;}
.y98{bottom:575.244093pt;}
.yb2{bottom:577.123733pt;}
.y2d{bottom:579.626693pt;}
.y83{bottom:581.253347pt;}
.y45{bottom:583.000027pt;}
.y74{bottom:585.826693pt;}
.ye{bottom:591.333347pt;}
.y5c{bottom:591.828893pt;}
.ydf{bottom:595.026667pt;}
.yc6{bottom:595.560600pt;}
.y97{bottom:600.444093pt;}
.yd{bottom:608.133347pt;}
.y44{bottom:608.200027pt;}
.y73{bottom:611.026693pt;}
.y5b{bottom:617.028893pt;}
.yde{bottom:620.226667pt;}
.yc5{bottom:620.760600pt;}
.y2c{bottom:623.693333pt;}
.yb1{bottom:627.523733pt;}
.y82{bottom:627.738667pt;}
.yc{bottom:632.933320pt;}
.y43{bottom:633.400027pt;}
.y72{bottom:636.226693pt;}
.y5a{bottom:642.228893pt;}
.y2b{bottom:648.893333pt;}
.y96{bottom:650.844093pt;}
.yb0{bottom:652.723733pt;}
.yb{bottom:657.733333pt;}
.y42{bottom:658.600027pt;}
.y71{bottom:661.426693pt;}
.ydd{bottom:670.626667pt;}
.yc4{bottom:671.160600pt;}
.y2a{bottom:674.093333pt;}
.ya{bottom:674.533333pt;}
.y95{bottom:676.044093pt;}
.yaf{bottom:677.923733pt;}
.y59{bottom:686.295573pt;}
.y70{bottom:686.626693pt;}
.ydc{bottom:695.826667pt;}
.yc3{bottom:696.360600pt;}
.y29{bottom:699.293333pt;}
.y9{bottom:699.333347pt;}
.y41{bottom:702.666667pt;}
.yae{bottom:703.123733pt;}
.y58{bottom:711.495573pt;}
.y6f{bottom:711.826693pt;}
.ydb{bottom:721.026667pt;}
.yc2{bottom:721.560600pt;}
.y8{bottom:724.133320pt;}
.y40{bottom:727.866667pt;}
.yad{bottom:728.323733pt;}
.y94{bottom:728.862720pt;}
.y57{bottom:736.695573pt;}
.y6e{bottom:737.026693pt;}
.y28{bottom:743.360013pt;}
.yda{bottom:746.226667pt;}
.yc1{bottom:746.760600pt;}
.y7{bottom:748.933333pt;}
.yac{bottom:753.523733pt;}
.y3f{bottom:760.072027pt;}
.yf8{bottom:761.493360pt;}
.y6d{bottom:762.226693pt;}
.y27{bottom:768.560013pt;}
.y56{bottom:768.672267pt;}
.yd9{bottom:771.426667pt;}
.y93{bottom:777.813347pt;}
.yf7{bottom:786.693360pt;}
.y81{bottom:787.426693pt;}
.y6{bottom:793.053347pt;}
.y26{bottom:793.760013pt;}
.yc0{bottom:795.764640pt;}
.yd8{bottom:796.626667pt;}
.y92{bottom:803.013347pt;}
.yab{bottom:807.749933pt;}
.yf6{bottom:811.893360pt;}
.y6c{bottom:812.626693pt;}
.y25{bottom:818.960013pt;}
.ybf{bottom:820.266667pt;}
.yaa{bottom:820.847053pt;}
.y55{bottom:825.293373pt;}
.y91{bottom:828.213347pt;}
.yf5{bottom:837.093360pt;}
.y6b{bottom:837.826693pt;}
.y5{bottom:843.333347pt;}
.y24{bottom:844.160013pt;}
.ybe{bottom:845.466667pt;}
.yd7{bottom:847.026667pt;}
.y54{bottom:850.493373pt;}
.y90{bottom:853.413347pt;}
.yf4{bottom:862.293360pt;}
.y6a{bottom:863.026693pt;}
.y4{bottom:868.533347pt;}
.y3e{bottom:869.360013pt;}
.ybd{bottom:870.666667pt;}
.yd6{bottom:872.226667pt;}
.y8f{bottom:878.613347pt;}
.yf3{bottom:887.493360pt;}
.y23{bottom:888.226693pt;}
.y3d{bottom:894.560013pt;}
.yd5{bottom:897.426667pt;}
.yf2{bottom:912.693360pt;}
.y22{bottom:913.426693pt;}
.ybc{bottom:914.733347pt;}
.y3{bottom:917.730667pt;}
.y3c{bottom:919.760013pt;}
.yd4{bottom:922.626667pt;}
.y8e{bottom:925.098667pt;}
.yf1{bottom:937.893347pt;}
.y21{bottom:938.626693pt;}
.y53{bottom:944.960013pt;}
.ybb{bottom:946.938667pt;}
.yd3{bottom:947.826667pt;}
.y2{bottom:958.050667pt;}
.yf0{bottom:963.093347pt;}
.y20{bottom:963.826693pt;}
.y8d{bottom:983.986693pt;}
.y1f{bottom:989.026693pt;}
.yba{bottom:1000.386667pt;}
.yef{bottom:1007.306680pt;}
.y1e{bottom:1014.226693pt;}
.h2{height:40.373333pt;}
.hf{height:40.796875pt;}
.ha{height:41.070312pt;}
.h8{height:46.937500pt;}
.hc{height:54.760417pt;}
.h4{height:60.560000pt;}
.h7{height:66.052083pt;}
.h6{height:68.634667pt;}
.h9{height:73.252979pt;}
.he{height:75.921139pt;}
.h5{height:80.746667pt;}
.h3{height:96.896000pt;}
.hb{height:104.641697pt;}
.hd{height:113.825697pt;}
.h0{height:1122.533360pt;}
.h1{height:1122.666667pt;}
.w0{width:793.733320pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.599960pt;}
.xd{left:77.800747pt;}
.x5{left:88.933307pt;}
.x8{left:99.600000pt;}
.x6{left:102.266680pt;}
.x3{left:121.420880pt;}
.x9{left:123.600000pt;}
.xa{left:128.399960pt;}
.x10{left:147.599960pt;}
.xb{left:157.200013pt;}
.xf{left:170.866653pt;}
.x4{left:174.199560pt;}
.x11{left:190.799960pt;}
.x16{left:202.951160pt;}
.x12{left:219.600000pt;}
.xc{left:268.705267pt;}
.x14{left:302.756000pt;}
.x18{left:343.637067pt;}
.xe{left:368.852440pt;}
.x17{left:413.205187pt;}
.x13{left:463.042253pt;}
.x15{left:480.310533pt;}
.x19{left:504.282547pt;}
.x1a{left:703.426733pt;}
.x1b{left:708.239733pt;}
.x7{left:710.133653pt;}
.x1{left:713.186533pt;}
}




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