
    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_e7dbb8f14e9049267dbd56ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_79e446e348524f42f211f6b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.682129;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_1d7bea66deb0cba2a6fbb317.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_2674c9e792476ca422591e99.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_b1e53f277b345519fdfbb049.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_ad18a64a965308cffbbec58f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4610be3bbb01e6b005d8f88d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_2161b0da1f02d9ab86a1f0b1.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_d724302d15491660bcbae06f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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_5536301eb46f1ba11ff6e788.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.718000;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_051ec0354f46c2f39649e6da.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0b64ddb8f3ea66f5470a7569.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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_b1e72f5aee322275ebf85bf8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.056000;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:fff;src:url('chunks/assets/font_7ea58f099099e7726ce49c1f.woff2')format("woff");}.fff{font-family:fff;line-height:0.710938;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:ff10;src:url('chunks/assets/font_ef5908c1a25aad5a0e5feff9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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:ff11;src:url('chunks/assets/font_5d5305a5fd966a7c9be841db.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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:ff12;src:url('chunks/assets/font_ff76cf54a60dbc438f259f60.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910645;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:ff13;src:url('chunks/assets/font_fca7194a7f1308a48fa21f83.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-0.459648px;}
.ls20{letter-spacing:-0.417312px;}
.ls1a{letter-spacing:-0.399168px;}
.ls14{letter-spacing:-0.356832px;}
.ls1c{letter-spacing:-0.338688px;}
.ls17{letter-spacing:-0.320544px;}
.ls1e{letter-spacing:-0.302400px;}
.lsf{letter-spacing:-0.278784px;}
.ls13{letter-spacing:-0.278208px;}
.ls6{letter-spacing:-0.260064px;}
.ls7{letter-spacing:-0.241920px;}
.ls19{letter-spacing:-0.223776px;}
.lsd{letter-spacing:-0.221760px;}
.lsb{letter-spacing:-0.215424px;}
.lse{letter-spacing:-0.202752px;}
.lsc{letter-spacing:-0.177408px;}
.ls1f{letter-spacing:-0.175392px;}
.ls1b{letter-spacing:-0.157248px;}
.ls1{letter-spacing:-0.145728px;}
.ls1d{letter-spacing:-0.145152px;}
.ls4{letter-spacing:-0.132480px;}
.ls18{letter-spacing:-0.120960px;}
.ls10{letter-spacing:-0.119232px;}
.ls3{letter-spacing:-0.066240px;}
.ls5{letter-spacing:-0.021600px;}
.ls8{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014400px;}
.ls9{letter-spacing:0.165600px;}
.lsa{letter-spacing:0.166320px;}
.ls11{letter-spacing:5.754240px;}
.ls21{letter-spacing:17.720640px;}
.ls12{letter-spacing:33.984000px;}
.ls15{letter-spacing:53.383680px;}
.ls16{letter-spacing:54.852480px;}
.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;}
}
.ws0{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.014400px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.ws8{word-spacing:-17.614080px;}
.wsa{word-spacing:-17.411328px;}
.ws7{word-spacing:-17.398656px;}
.ws9{word-spacing:-17.392320px;}
.wsb{word-spacing:-17.335296px;}
.wsc{word-spacing:-16.535232px;}
.wsf{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.974848px;}
.ws13{word-spacing:-14.962752px;}
.ws11{word-spacing:-14.944608px;}
.wse{word-spacing:-14.896224px;}
.ws3{word-spacing:-14.878080px;}
.ws12{word-spacing:-14.817600px;}
.wsd{word-spacing:-0.060480px;}
.ws1{word-spacing:-0.050400px;}
.ws6{word-spacing:0.000000px;}
._16{margin-left:-5.191200px;}
._e{margin-left:-4.024800px;}
._13{margin-left:-2.448000px;}
._2{margin-left:-1.288800px;}
._0{width:1.059840px;}
._6{width:2.520000px;}
._1{width:3.742416px;}
._3{width:4.969584px;}
._f{width:5.994432px;}
._8{width:7.034400px;}
._d{width:8.186400px;}
._14{width:9.439200px;}
._11{width:10.814400px;}
._5{width:12.650400px;}
._10{width:14.457600px;}
._b{width:15.667200px;}
._17{width:16.963488px;}
._26{width:18.627840px;}
._c{width:19.872000px;}
._4{width:21.556800px;}
._15{width:23.241600px;}
._22{width:25.099200px;}
._1a{width:26.114400px;}
._1c{width:27.619200px;}
._1b{width:28.972800px;}
._9{width:30.139200px;}
._a{width:31.176000px;}
._1d{width:33.984000px;}
._12{width:35.042400px;}
._19{width:36.782640px;}
._18{width:41.868000px;}
._1e{width:43.994592px;}
._7{width:45.237600px;}
._24{width:51.468480px;}
._1f{width:52.799040px;}
._20{width:54.510912px;}
._21{width:55.865088px;}
._23{width:69.007680px;}
._25{width:1854.679680px;}
.fc3{color:rgb(68,71,70);}
.fc2{color:transparent;}
.fc1{color:rgb(28,30,41);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:50.400000px;}
.fs3{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.ya{bottom:-57.180000px;}
.y9{bottom:-36.300000px;}
.y8{bottom:-15.060000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.460000px;}
.y7{bottom:6.180000px;}
.y5{bottom:52.500000px;}
.y4{bottom:57.960000px;}
.y3a{bottom:92.160000px;}
.yd3{bottom:99.000000px;}
.y39{bottom:112.680000px;}
.y67{bottom:113.760000px;}
.yd2{bottom:119.880000px;}
.yf7{bottom:120.960000px;}
.y92{bottom:125.280000px;}
.y38{bottom:133.560000px;}
.y66{bottom:134.280000px;}
.yf6{bottom:138.240000px;}
.yd1{bottom:140.400000px;}
.y91{bottom:146.160000px;}
.y37{bottom:154.080000px;}
.y65{bottom:155.160000px;}
.yf5{bottom:155.520000px;}
.yd0{bottom:161.280000px;}
.ya4{bottom:164.160000px;}
.yf4{bottom:172.800000px;}
.y36{bottom:174.960000px;}
.y64{bottom:175.680000px;}
.y90{bottom:178.200000px;}
.ycf{bottom:181.800000px;}
.yf3{bottom:190.080000px;}
.y35{bottom:195.480000px;}
.y63{bottom:196.560000px;}
.y8f{bottom:199.440000px;}
.yce{bottom:202.680000px;}
.yf2{bottom:207.360000px;}
.ya3{bottom:208.080000px;}
.y34{bottom:216.360000px;}
.y62{bottom:217.080000px;}
.y8e{bottom:219.960000px;}
.ycd{bottom:223.200000px;}
.yf1{bottom:224.640000px;}
.ya2{bottom:228.960000px;}
.y33{bottom:236.880000px;}
.y61{bottom:237.960000px;}
.y8d{bottom:240.840000px;}
.yf0{bottom:241.920000px;}
.ya1{bottom:249.840000px;}
.ycc{bottom:255.600000px;}
.y32{bottom:257.760000px;}
.yef{bottom:258.840000px;}
.y8c{bottom:261.360000px;}
.y60{bottom:270.360000px;}
.yee{bottom:276.120000px;}
.ycb{bottom:276.840000px;}
.y31{bottom:278.280000px;}
.y8b{bottom:282.240000px;}
.y5f{bottom:291.240000px;}
.yed{bottom:293.400000px;}
.yca{bottom:297.360000px;}
.y30{bottom:299.160000px;}
.y8a{bottom:300.240000px;}
.yec{bottom:310.680000px;}
.y89{bottom:311.760000px;}
.y5e{bottom:312.120000px;}
.yc9{bottom:318.240000px;}
.y2f{bottom:319.680000px;}
.yeb{bottom:327.960000px;}
.y88{bottom:332.280000px;}
.y5d{bottom:332.640000px;}
.yc8{bottom:338.760000px;}
.y2e{bottom:340.200000px;}
.yea{bottom:345.240000px;}
.y87{bottom:353.160000px;}
.y5c{bottom:353.520000px;}
.yc7{bottom:357.120000px;}
.y2d{bottom:361.080000px;}
.ye9{bottom:362.520000px;}
.yc6{bottom:368.280000px;}
.y86{bottom:371.160000px;}
.y5b{bottom:374.040000px;}
.ye8{bottom:379.800000px;}
.y2c{bottom:381.600000px;}
.y85{bottom:382.680000px;}
.yc5{bottom:389.160000px;}
.ya0{bottom:394.560000px;}
.y5a{bottom:394.920000px;}
.ye7{bottom:397.080000px;}
.y2b{bottom:402.480000px;}
.y84{bottom:403.200000px;}
.yc4{bottom:409.680000px;}
.ye6{bottom:414.360000px;}
.y59{bottom:415.440000px;}
.y2a{bottom:423.000000px;}
.yc3{bottom:430.560000px;}
.ye5{bottom:431.640000px;}
.y83{bottom:435.600000px;}
.y9f{bottom:435.960000px;}
.y58{bottom:436.320000px;}
.y29{bottom:443.880000px;}
.ye4{bottom:448.560000px;}
.yc2{bottom:451.080000px;}
.y57{bottom:456.840000px;}
.y28{bottom:464.400000px;}
.ye3{bottom:465.840000px;}
.yc1{bottom:471.960000px;}
.y82{bottom:477.360000px;}
.y56{bottom:477.720000px;}
.ye2{bottom:483.120000px;}
.yc0{bottom:489.960000px;}
.y27{bottom:496.800000px;}
.y55{bottom:498.240000px;}
.ye1{bottom:500.400000px;}
.ybf{bottom:501.120000px;}
.y9e{bottom:509.760000px;}
.y26{bottom:517.680000px;}
.y81{bottom:518.760000px;}
.y54{bottom:519.120000px;}
.ybe{bottom:522.000000px;}
.y9d{bottom:530.640000px;}
.ye0{bottom:534.960000px;}
.y53{bottom:539.640000px;}
.y25{bottom:547.560000px;}
.y9c{bottom:551.520000px;}
.ydf{bottom:552.240000px;}
.ybd{bottom:554.400000px;}
.y80{bottom:560.160000px;}
.y24{bottom:568.800000px;}
.yde{bottom:569.520000px;}
.y52{bottom:572.040000px;}
.ybc{bottom:575.280000px;}
.y7f{bottom:581.040000px;}
.ydd{bottom:586.800000px;}
.y23{bottom:589.320000px;}
.y51{bottom:592.920000px;}
.ybb{bottom:596.160000px;}
.y7e{bottom:601.560000px;}
.ydc{bottom:604.080000px;}
.y9b{bottom:613.440000px;}
.y50{bottom:613.800000px;}
.yba{bottom:616.680000px;}
.y22{bottom:618.840000px;}
.ydb{bottom:621.360000px;}
.y7d{bottom:622.440000px;}
.y4f{bottom:634.320000px;}
.yb9{bottom:637.560000px;}
.yda{bottom:638.640000px;}
.y21{bottom:639.720000px;}
.y7c{bottom:642.960000px;}
.y9a{bottom:654.840000px;}
.y4e{bottom:655.200000px;}
.yd9{bottom:655.560000px;}
.yb8{bottom:658.080000px;}
.y20{bottom:660.600000px;}
.y7b{bottom:663.840000px;}
.yd8{bottom:672.840000px;}
.y4d{bottom:675.720000px;}
.yb7{bottom:678.960000px;}
.y1f{bottom:681.120000px;}
.y7a{bottom:684.360000px;}
.yd7{bottom:690.120000px;}
.y99{bottom:696.240000px;}
.yb6{bottom:699.480000px;}
.y1e{bottom:702.000000px;}
.y4c{bottom:708.120000px;}
.y79{bottom:716.760000px;}
.y98{bottom:717.120000px;}
.yd6{bottom:720.000000px;}
.yb5{bottom:720.360000px;}
.y1d{bottom:722.520000px;}
.y4b{bottom:728.640000px;}
.y78{bottom:737.640000px;}
.yb4{bottom:740.880000px;}
.yd5{bottom:741.240000px;}
.y1c{bottom:743.400000px;}
.y4a{bottom:747.720000px;}
.y77{bottom:758.520000px;}
.yb3{bottom:761.760000px;}
.y1b{bottom:763.920000px;}
.y49{bottom:766.800000px;}
.y97{bottom:770.040000px;}
.y76{bottom:779.040000px;}
.yb2{bottom:782.280000px;}
.y1a{bottom:784.800000px;}
.y96{bottom:791.280000px;}
.y48{bottom:793.440000px;}
.y75{bottom:799.920000px;}
.yb1{bottom:803.160000px;}
.y19{bottom:805.320000px;}
.y95{bottom:811.800000px;}
.y47{bottom:814.320000px;}
.y74{bottom:820.440000px;}
.yb0{bottom:823.680000px;}
.y18{bottom:826.200000px;}
.y94{bottom:832.680000px;}
.yaf{bottom:844.560000px;}
.y46{bottom:845.640000px;}
.y17{bottom:846.720000px;}
.y73{bottom:852.840000px;}
.y93{bottom:853.200000px;}
.y108{bottom:860.760000px;}
.yae{bottom:865.080000px;}
.y16{bottom:867.600000px;}
.y72{bottom:874.080000px;}
.y107{bottom:878.040000px;}
.yad{bottom:885.960000px;}
.y15{bottom:888.120000px;}
.y71{bottom:894.600000px;}
.y106{bottom:895.320000px;}
.yac{bottom:906.480000px;}
.y14{bottom:909.000000px;}
.y105{bottom:912.600000px;}
.y70{bottom:915.480000px;}
.yab{bottom:927.360000px;}
.y13{bottom:929.520000px;}
.y104{bottom:929.880000px;}
.y6f{bottom:936.000000px;}
.y103{bottom:947.160000px;}
.yd4{bottom:947.880000px;}
.y12{bottom:950.040000px;}
.y6e{bottom:956.880000px;}
.yaa{bottom:959.760000px;}
.y102{bottom:964.440000px;}
.y45{bottom:968.760000px;}
.y11{bottom:970.560000px;}
.y6d{bottom:977.400000px;}
.ya9{bottom:980.640000px;}
.y101{bottom:981.720000px;}
.y10{bottom:987.840000px;}
.y44{bottom:989.280000px;}
.y6c{bottom:998.280000px;}
.y100{bottom:999.000000px;}
.ya8{bottom:1001.520000px;}
.y43{bottom:1010.160000px;}
.yf{bottom:1014.480000px;}
.yff{bottom:1016.280000px;}
.y6b{bottom:1018.800000px;}
.ya7{bottom:1022.040000px;}
.y42{bottom:1030.680000px;}
.yfe{bottom:1033.560000px;}
.ye{bottom:1034.640000px;}
.y6a{bottom:1039.680000px;}
.ya6{bottom:1042.920000px;}
.yfd{bottom:1050.480000px;}
.y41{bottom:1051.560000px;}
.yd{bottom:1054.800000px;}
.ya5{bottom:1060.920000px;}
.yfc{bottom:1067.760000px;}
.y69{bottom:1071.720000px;}
.y40{bottom:1072.080000px;}
.yfb{bottom:1085.040000px;}
.yc{bottom:1086.120000px;}
.y3f{bottom:1092.960000px;}
.yfa{bottom:1102.320000px;}
.y3e{bottom:1113.480000px;}
.yb{bottom:1117.080000px;}
.yf9{bottom:1119.600000px;}
.y3d{bottom:1134.360000px;}
.yf8{bottom:1136.880000px;}
.y3{bottom:1146.600000px;}
.y3c{bottom:1166.040000px;}
.y2{bottom:1168.560000px;}
.y1{bottom:1190.880000px;}
.y3b{bottom:1191.600000px;}
.y68{bottom:1192.320000px;}
.hf{height:20.155078px;}
.h5{height:24.000000px;}
.h7{height:40.310156px;}
.h9{height:41.993438px;}
.h10{height:42.022969px;}
.h3{height:44.149219px;}
.hd{height:45.992813px;}
.h4{height:48.550781px;}
.hb{height:48.660480px;}
.he{height:48.761719px;}
.h8{height:48.796875px;}
.hc{height:49.992188px;}
.ha{height:50.027344px;}
.h2{height:50.872320px;}
.h6{height:73.195313px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w3{width:12.000000px;}
.w2{width:31.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x12{left:90.970092px;}
.x9{left:127.439928px;}
.x10{left:133.327152px;}
.xe{left:148.658580px;}
.x4{left:154.439928px;}
.x7{left:159.458112px;}
.x8{left:170.749872px;}
.x13{left:181.439928px;}
.xf{left:187.422732px;}
.x11{left:222.953256px;}
.x2{left:235.597752px;}
.xb{left:241.583868px;}
.x1{left:245.011212px;}
.xa{left:355.078476px;}
.xc{left:369.028800px;}
.x3{left:446.339880px;}
.x5{left:735.000000px;}
.x6{left:754.500000px;}
.xd{left:763.319880px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.408576pt;}
.ls20{letter-spacing:-0.370944pt;}
.ls1a{letter-spacing:-0.354816pt;}
.ls14{letter-spacing:-0.317184pt;}
.ls1c{letter-spacing:-0.301056pt;}
.ls17{letter-spacing:-0.284928pt;}
.ls1e{letter-spacing:-0.268800pt;}
.lsf{letter-spacing:-0.247808pt;}
.ls13{letter-spacing:-0.247296pt;}
.ls6{letter-spacing:-0.231168pt;}
.ls7{letter-spacing:-0.215040pt;}
.ls19{letter-spacing:-0.198912pt;}
.lsd{letter-spacing:-0.197120pt;}
.lsb{letter-spacing:-0.191488pt;}
.lse{letter-spacing:-0.180224pt;}
.lsc{letter-spacing:-0.157696pt;}
.ls1f{letter-spacing:-0.155904pt;}
.ls1b{letter-spacing:-0.139776pt;}
.ls1{letter-spacing:-0.129536pt;}
.ls1d{letter-spacing:-0.129024pt;}
.ls4{letter-spacing:-0.117760pt;}
.ls18{letter-spacing:-0.107520pt;}
.ls10{letter-spacing:-0.105984pt;}
.ls3{letter-spacing:-0.058880pt;}
.ls5{letter-spacing:-0.019200pt;}
.ls8{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012800pt;}
.ls9{letter-spacing:0.147200pt;}
.lsa{letter-spacing:0.147840pt;}
.ls11{letter-spacing:5.114880pt;}
.ls21{letter-spacing:15.751680pt;}
.ls12{letter-spacing:30.208000pt;}
.ls15{letter-spacing:47.452160pt;}
.ls16{letter-spacing:48.757760pt;}
.ws0{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.012800pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.ws8{word-spacing:-15.656960pt;}
.wsa{word-spacing:-15.476736pt;}
.ws7{word-spacing:-15.465472pt;}
.ws9{word-spacing:-15.459840pt;}
.wsb{word-spacing:-15.409152pt;}
.wsc{word-spacing:-14.697984pt;}
.wsf{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.310976pt;}
.ws13{word-spacing:-13.300224pt;}
.ws11{word-spacing:-13.284096pt;}
.wse{word-spacing:-13.241088pt;}
.ws3{word-spacing:-13.224960pt;}
.ws12{word-spacing:-13.171200pt;}
.wsd{word-spacing:-0.053760pt;}
.ws1{word-spacing:-0.044800pt;}
.ws6{word-spacing:0.000000pt;}
._16{margin-left:-4.614400pt;}
._e{margin-left:-3.577600pt;}
._13{margin-left:-2.176000pt;}
._2{margin-left:-1.145600pt;}
._0{width:0.942080pt;}
._6{width:2.240000pt;}
._1{width:3.326592pt;}
._3{width:4.417408pt;}
._f{width:5.328384pt;}
._8{width:6.252800pt;}
._d{width:7.276800pt;}
._14{width:8.390400pt;}
._11{width:9.612800pt;}
._5{width:11.244800pt;}
._10{width:12.851200pt;}
._b{width:13.926400pt;}
._17{width:15.078656pt;}
._26{width:16.558080pt;}
._c{width:17.664000pt;}
._4{width:19.161600pt;}
._15{width:20.659200pt;}
._22{width:22.310400pt;}
._1a{width:23.212800pt;}
._1c{width:24.550400pt;}
._1b{width:25.753600pt;}
._9{width:26.790400pt;}
._a{width:27.712000pt;}
._1d{width:30.208000pt;}
._12{width:31.148800pt;}
._19{width:32.695680pt;}
._18{width:37.216000pt;}
._1e{width:39.106304pt;}
._7{width:40.211200pt;}
._24{width:45.749760pt;}
._1f{width:46.932480pt;}
._20{width:48.454144pt;}
._21{width:49.657856pt;}
._23{width:61.340160pt;}
._25{width:1648.604160pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:44.800000pt;}
.fs3{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.ya{bottom:-50.826667pt;}
.y9{bottom:-32.266667pt;}
.y8{bottom:-13.386667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.853333pt;}
.y7{bottom:5.493333pt;}
.y5{bottom:46.666667pt;}
.y4{bottom:51.520000pt;}
.y3a{bottom:81.920000pt;}
.yd3{bottom:88.000000pt;}
.y39{bottom:100.160000pt;}
.y67{bottom:101.120000pt;}
.yd2{bottom:106.560000pt;}
.yf7{bottom:107.520000pt;}
.y92{bottom:111.360000pt;}
.y38{bottom:118.720000pt;}
.y66{bottom:119.360000pt;}
.yf6{bottom:122.880000pt;}
.yd1{bottom:124.800000pt;}
.y91{bottom:129.920000pt;}
.y37{bottom:136.960000pt;}
.y65{bottom:137.920000pt;}
.yf5{bottom:138.240000pt;}
.yd0{bottom:143.360000pt;}
.ya4{bottom:145.920000pt;}
.yf4{bottom:153.600000pt;}
.y36{bottom:155.520000pt;}
.y64{bottom:156.160000pt;}
.y90{bottom:158.400000pt;}
.ycf{bottom:161.600000pt;}
.yf3{bottom:168.960000pt;}
.y35{bottom:173.760000pt;}
.y63{bottom:174.720000pt;}
.y8f{bottom:177.280000pt;}
.yce{bottom:180.160000pt;}
.yf2{bottom:184.320000pt;}
.ya3{bottom:184.960000pt;}
.y34{bottom:192.320000pt;}
.y62{bottom:192.960000pt;}
.y8e{bottom:195.520000pt;}
.ycd{bottom:198.400000pt;}
.yf1{bottom:199.680000pt;}
.ya2{bottom:203.520000pt;}
.y33{bottom:210.560000pt;}
.y61{bottom:211.520000pt;}
.y8d{bottom:214.080000pt;}
.yf0{bottom:215.040000pt;}
.ya1{bottom:222.080000pt;}
.ycc{bottom:227.200000pt;}
.y32{bottom:229.120000pt;}
.yef{bottom:230.080000pt;}
.y8c{bottom:232.320000pt;}
.y60{bottom:240.320000pt;}
.yee{bottom:245.440000pt;}
.ycb{bottom:246.080000pt;}
.y31{bottom:247.360000pt;}
.y8b{bottom:250.880000pt;}
.y5f{bottom:258.880000pt;}
.yed{bottom:260.800000pt;}
.yca{bottom:264.320000pt;}
.y30{bottom:265.920000pt;}
.y8a{bottom:266.880000pt;}
.yec{bottom:276.160000pt;}
.y89{bottom:277.120000pt;}
.y5e{bottom:277.440000pt;}
.yc9{bottom:282.880000pt;}
.y2f{bottom:284.160000pt;}
.yeb{bottom:291.520000pt;}
.y88{bottom:295.360000pt;}
.y5d{bottom:295.680000pt;}
.yc8{bottom:301.120000pt;}
.y2e{bottom:302.400000pt;}
.yea{bottom:306.880000pt;}
.y87{bottom:313.920000pt;}
.y5c{bottom:314.240000pt;}
.yc7{bottom:317.440000pt;}
.y2d{bottom:320.960000pt;}
.ye9{bottom:322.240000pt;}
.yc6{bottom:327.360000pt;}
.y86{bottom:329.920000pt;}
.y5b{bottom:332.480000pt;}
.ye8{bottom:337.600000pt;}
.y2c{bottom:339.200000pt;}
.y85{bottom:340.160000pt;}
.yc5{bottom:345.920000pt;}
.ya0{bottom:350.720000pt;}
.y5a{bottom:351.040000pt;}
.ye7{bottom:352.960000pt;}
.y2b{bottom:357.760000pt;}
.y84{bottom:358.400000pt;}
.yc4{bottom:364.160000pt;}
.ye6{bottom:368.320000pt;}
.y59{bottom:369.280000pt;}
.y2a{bottom:376.000000pt;}
.yc3{bottom:382.720000pt;}
.ye5{bottom:383.680000pt;}
.y83{bottom:387.200000pt;}
.y9f{bottom:387.520000pt;}
.y58{bottom:387.840000pt;}
.y29{bottom:394.560000pt;}
.ye4{bottom:398.720000pt;}
.yc2{bottom:400.960000pt;}
.y57{bottom:406.080000pt;}
.y28{bottom:412.800000pt;}
.ye3{bottom:414.080000pt;}
.yc1{bottom:419.520000pt;}
.y82{bottom:424.320000pt;}
.y56{bottom:424.640000pt;}
.ye2{bottom:429.440000pt;}
.yc0{bottom:435.520000pt;}
.y27{bottom:441.600000pt;}
.y55{bottom:442.880000pt;}
.ye1{bottom:444.800000pt;}
.ybf{bottom:445.440000pt;}
.y9e{bottom:453.120000pt;}
.y26{bottom:460.160000pt;}
.y81{bottom:461.120000pt;}
.y54{bottom:461.440000pt;}
.ybe{bottom:464.000000pt;}
.y9d{bottom:471.680000pt;}
.ye0{bottom:475.520000pt;}
.y53{bottom:479.680000pt;}
.y25{bottom:486.720000pt;}
.y9c{bottom:490.240000pt;}
.ydf{bottom:490.880000pt;}
.ybd{bottom:492.800000pt;}
.y80{bottom:497.920000pt;}
.y24{bottom:505.600000pt;}
.yde{bottom:506.240000pt;}
.y52{bottom:508.480000pt;}
.ybc{bottom:511.360000pt;}
.y7f{bottom:516.480000pt;}
.ydd{bottom:521.600000pt;}
.y23{bottom:523.840000pt;}
.y51{bottom:527.040000pt;}
.ybb{bottom:529.920000pt;}
.y7e{bottom:534.720000pt;}
.ydc{bottom:536.960000pt;}
.y9b{bottom:545.280000pt;}
.y50{bottom:545.600000pt;}
.yba{bottom:548.160000pt;}
.y22{bottom:550.080000pt;}
.ydb{bottom:552.320000pt;}
.y7d{bottom:553.280000pt;}
.y4f{bottom:563.840000pt;}
.yb9{bottom:566.720000pt;}
.yda{bottom:567.680000pt;}
.y21{bottom:568.640000pt;}
.y7c{bottom:571.520000pt;}
.y9a{bottom:582.080000pt;}
.y4e{bottom:582.400000pt;}
.yd9{bottom:582.720000pt;}
.yb8{bottom:584.960000pt;}
.y20{bottom:587.200000pt;}
.y7b{bottom:590.080000pt;}
.yd8{bottom:598.080000pt;}
.y4d{bottom:600.640000pt;}
.yb7{bottom:603.520000pt;}
.y1f{bottom:605.440000pt;}
.y7a{bottom:608.320000pt;}
.yd7{bottom:613.440000pt;}
.y99{bottom:618.880000pt;}
.yb6{bottom:621.760000pt;}
.y1e{bottom:624.000000pt;}
.y4c{bottom:629.440000pt;}
.y79{bottom:637.120000pt;}
.y98{bottom:637.440000pt;}
.yd6{bottom:640.000000pt;}
.yb5{bottom:640.320000pt;}
.y1d{bottom:642.240000pt;}
.y4b{bottom:647.680000pt;}
.y78{bottom:655.680000pt;}
.yb4{bottom:658.560000pt;}
.yd5{bottom:658.880000pt;}
.y1c{bottom:660.800000pt;}
.y4a{bottom:664.640000pt;}
.y77{bottom:674.240000pt;}
.yb3{bottom:677.120000pt;}
.y1b{bottom:679.040000pt;}
.y49{bottom:681.600000pt;}
.y97{bottom:684.480000pt;}
.y76{bottom:692.480000pt;}
.yb2{bottom:695.360000pt;}
.y1a{bottom:697.600000pt;}
.y96{bottom:703.360000pt;}
.y48{bottom:705.280000pt;}
.y75{bottom:711.040000pt;}
.yb1{bottom:713.920000pt;}
.y19{bottom:715.840000pt;}
.y95{bottom:721.600000pt;}
.y47{bottom:723.840000pt;}
.y74{bottom:729.280000pt;}
.yb0{bottom:732.160000pt;}
.y18{bottom:734.400000pt;}
.y94{bottom:740.160000pt;}
.yaf{bottom:750.720000pt;}
.y46{bottom:751.680000pt;}
.y17{bottom:752.640000pt;}
.y73{bottom:758.080000pt;}
.y93{bottom:758.400000pt;}
.y108{bottom:765.120000pt;}
.yae{bottom:768.960000pt;}
.y16{bottom:771.200000pt;}
.y72{bottom:776.960000pt;}
.y107{bottom:780.480000pt;}
.yad{bottom:787.520000pt;}
.y15{bottom:789.440000pt;}
.y71{bottom:795.200000pt;}
.y106{bottom:795.840000pt;}
.yac{bottom:805.760000pt;}
.y14{bottom:808.000000pt;}
.y105{bottom:811.200000pt;}
.y70{bottom:813.760000pt;}
.yab{bottom:824.320000pt;}
.y13{bottom:826.240000pt;}
.y104{bottom:826.560000pt;}
.y6f{bottom:832.000000pt;}
.y103{bottom:841.920000pt;}
.yd4{bottom:842.560000pt;}
.y12{bottom:844.480000pt;}
.y6e{bottom:850.560000pt;}
.yaa{bottom:853.120000pt;}
.y102{bottom:857.280000pt;}
.y45{bottom:861.120000pt;}
.y11{bottom:862.720000pt;}
.y6d{bottom:868.800000pt;}
.ya9{bottom:871.680000pt;}
.y101{bottom:872.640000pt;}
.y10{bottom:878.080000pt;}
.y44{bottom:879.360000pt;}
.y6c{bottom:887.360000pt;}
.y100{bottom:888.000000pt;}
.ya8{bottom:890.240000pt;}
.y43{bottom:897.920000pt;}
.yf{bottom:901.760000pt;}
.yff{bottom:903.360000pt;}
.y6b{bottom:905.600000pt;}
.ya7{bottom:908.480000pt;}
.y42{bottom:916.160000pt;}
.yfe{bottom:918.720000pt;}
.ye{bottom:919.680000pt;}
.y6a{bottom:924.160000pt;}
.ya6{bottom:927.040000pt;}
.yfd{bottom:933.760000pt;}
.y41{bottom:934.720000pt;}
.yd{bottom:937.600000pt;}
.ya5{bottom:943.040000pt;}
.yfc{bottom:949.120000pt;}
.y69{bottom:952.640000pt;}
.y40{bottom:952.960000pt;}
.yfb{bottom:964.480000pt;}
.yc{bottom:965.440000pt;}
.y3f{bottom:971.520000pt;}
.yfa{bottom:979.840000pt;}
.y3e{bottom:989.760000pt;}
.yb{bottom:992.960000pt;}
.yf9{bottom:995.200000pt;}
.y3d{bottom:1008.320000pt;}
.yf8{bottom:1010.560000pt;}
.y3{bottom:1019.200000pt;}
.y3c{bottom:1036.480000pt;}
.y2{bottom:1038.720000pt;}
.y1{bottom:1058.560000pt;}
.y3b{bottom:1059.200000pt;}
.y68{bottom:1059.840000pt;}
.hf{height:17.915625pt;}
.h5{height:21.333333pt;}
.h7{height:35.831250pt;}
.h9{height:37.327500pt;}
.h10{height:37.353750pt;}
.h3{height:39.243750pt;}
.hd{height:40.882500pt;}
.h4{height:43.156250pt;}
.hb{height:43.253760pt;}
.he{height:43.343750pt;}
.h8{height:43.375000pt;}
.hc{height:44.437500pt;}
.ha{height:44.468750pt;}
.h2{height:45.219840pt;}
.h6{height:65.062500pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w3{width:10.666667pt;}
.w2{width:28.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x12{left:80.862304pt;}
.x9{left:113.279936pt;}
.x10{left:118.513024pt;}
.xe{left:132.140960pt;}
.x4{left:137.279936pt;}
.x7{left:141.740544pt;}
.x8{left:151.777664pt;}
.x13{left:161.279936pt;}
.xf{left:166.597984pt;}
.x11{left:198.180672pt;}
.x2{left:209.420224pt;}
.xb{left:214.741216pt;}
.x1{left:217.787744pt;}
.xa{left:315.625312pt;}
.xc{left:328.025600pt;}
.x3{left:396.746560pt;}
.x5{left:653.333333pt;}
.x6{left:670.666667pt;}
.xd{left:678.506560pt;}
}




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