
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f6848375473fb747b0f86bfe.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_f258d0aa6dfdc6834589e11f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.698730;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_9a07fbdf6deecb6583d669cf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_bf42f1d7af1cd078f985bf88.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_a33d69fc9ce9582a60116367.woff')format("woff");}.ff6{font-family:ff6;line-height:0.916504;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_518722c8688f542b360f75d7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_d3e79d36bc401346967020d3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_98091fa300f1d9e1a8ed3cd1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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_663698ef8bbb127ae0dfb52f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls15{letter-spacing:-0.444600px;}
.ls17{letter-spacing:-0.299400px;}
.lsf{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.160800px;}
.ls9{letter-spacing:-0.135000px;}
.ls14{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.084600px;}
.ls1e{letter-spacing:-0.014760px;}
.lsd{letter-spacing:-0.006000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.011280px;}
.ls3{letter-spacing:0.015360px;}
.ls11{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.060480px;}
.ls16{letter-spacing:0.060600px;}
.lsa{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.173520px;}
.lsb{letter-spacing:0.174000px;}
.ls1b{letter-spacing:0.199200px;}
.ls4{letter-spacing:0.218160px;}
.ls5{letter-spacing:0.245040px;}
.ls18{letter-spacing:0.310200px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.534000px;}
.ls1d{letter-spacing:47.726640px;}
.ls1c{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-35.350560px;}
.ws45{word-spacing:-14.372400px;}
.ws4b{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.ws49{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws4c{word-spacing:-13.211640px;}
.ws4a{word-spacing:-13.065600px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-9.332400px;}
.ws2{word-spacing:-9.266400px;}
.ws47{word-spacing:-8.614200px;}
.ws46{word-spacing:-8.553600px;}
.ws48{word-spacing:-8.254200px;}
.ws21{word-spacing:-0.450000px;}
.ws24{word-spacing:-0.438000px;}
.ws16{word-spacing:-0.366000px;}
.ws17{word-spacing:-0.360000px;}
.ws22{word-spacing:-0.354000px;}
.ws18{word-spacing:-0.342000px;}
.ws34{word-spacing:-0.330000px;}
.ws1c{word-spacing:-0.246000px;}
.ws15{word-spacing:-0.240000px;}
.ws44{word-spacing:-0.228000px;}
.ws1d{word-spacing:-0.210000px;}
.ws14{word-spacing:-0.180000px;}
.ws41{word-spacing:-0.174000px;}
.ws1a{word-spacing:-0.144000px;}
.ws33{word-spacing:-0.138000px;}
.ws1f{word-spacing:-0.132000px;}
.ws1e{word-spacing:-0.126000px;}
.ws43{word-spacing:-0.090000px;}
.ws42{word-spacing:-0.066000px;}
.ws8{word-spacing:0.000000px;}
.ws20{word-spacing:0.060000px;}
.ws11{word-spacing:0.102000px;}
.ws13{word-spacing:0.120000px;}
.ws40{word-spacing:0.132000px;}
.ws12{word-spacing:0.156000px;}
.ws19{word-spacing:0.180000px;}
.wsf{word-spacing:0.198000px;}
.ws25{word-spacing:0.234000px;}
.ws1b{word-spacing:0.240000px;}
.ws10{word-spacing:0.330000px;}
.ws23{word-spacing:0.420000px;}
.wsa{word-spacing:3.276000px;}
.ws35{word-spacing:4.080000px;}
.wsd{word-spacing:4.746000px;}
.wse{word-spacing:4.770000px;}
.ws9{word-spacing:4.944000px;}
.wsb{word-spacing:5.070000px;}
.wsc{word-spacing:5.076000px;}
.ws3a{word-spacing:6.072000px;}
.ws39{word-spacing:6.150000px;}
.ws26{word-spacing:6.240000px;}
.ws3b{word-spacing:6.276000px;}
.ws37{word-spacing:6.288000px;}
.ws3c{word-spacing:6.372000px;}
.ws36{word-spacing:6.378000px;}
.ws3f{word-spacing:6.450000px;}
.ws3d{word-spacing:6.468000px;}
.ws3e{word-spacing:6.492000px;}
.ws38{word-spacing:6.594000px;}
.ws32{word-spacing:7.878000px;}
.ws27{word-spacing:8.082000px;}
.ws2e{word-spacing:8.136000px;}
.ws2b{word-spacing:8.358000px;}
.ws2a{word-spacing:8.406000px;}
.ws2c{word-spacing:8.538000px;}
.ws31{word-spacing:8.646000px;}
.ws29{word-spacing:8.658000px;}
.ws28{word-spacing:8.808000px;}
.ws30{word-spacing:8.880000px;}
.ws2f{word-spacing:8.916000px;}
.ws2d{word-spacing:8.976000px;}
._2{margin-left:-5.237472px;}
._1{margin-left:-4.049640px;}
._7{margin-left:-2.122200px;}
._0{margin-left:-1.110000px;}
._3{width:1.066453px;}
._e{width:2.098506px;}
._8{width:3.146775px;}
._5{width:4.288797px;}
._4{width:5.421600px;}
._9{width:6.651600px;}
._b{width:8.137920px;}
._c{width:9.280200px;}
._d{width:10.499280px;}
._a{width:11.752080px;}
._17{width:14.428800px;}
._13{width:15.871680px;}
._12{width:17.079480px;}
._6{width:18.200520px;}
._11{width:19.336680px;}
._16{width:20.681280px;}
._f{width:21.703320px;}
._10{width:23.466840px;}
._15{width:24.627120px;}
._14{width:25.651200px;}
._18{width:26.717399px;}
._19{width:27.735360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:7.830000px;}
.y7e{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yc8{bottom:109.470000px;}
.yfb{bottom:113.790000px;}
.y58{bottom:114.150000px;}
.yab{bottom:121.800000px;}
.yfa{bottom:131.340000px;}
.y57{bottom:131.700000px;}
.y123{bottom:132.780000px;}
.yc7{bottom:136.830000px;}
.y85{bottom:139.350000px;}
.yaa{bottom:139.440000px;}
.y28{bottom:144.210000px;}
.yf9{bottom:148.980000px;}
.y56{bottom:149.250000px;}
.y122{bottom:150.330000px;}
.y145{bottom:151.680000px;}
.y84{bottom:154.290000px;}
.ya9{bottom:154.380000px;}
.y27{bottom:161.850000px;}
.yc6{bottom:164.100000px;}
.yf8{bottom:166.530000px;}
.y55{bottom:166.890000px;}
.y121{bottom:167.970000px;}
.y144{bottom:169.320000px;}
.y83{bottom:181.650000px;}
.ya8{bottom:181.740000px;}
.yf7{bottom:184.170000px;}
.yc5{bottom:191.460000px;}
.y54{bottom:193.440000px;}
.y120{bottom:194.520000px;}
.y143{bottom:195.870000px;}
.y26{bottom:197.400000px;}
.yf6{bottom:201.720000px;}
.y82{bottom:208.920000px;}
.ya7{bottom:209.010000px;}
.y11f{bottom:212.070000px;}
.y142{bottom:213.510000px;}
.y25{bottom:214.950000px;}
.yc4{bottom:218.820000px;}
.yf5{bottom:219.270000px;}
.y53{bottom:229.080000px;}
.y11e{bottom:229.710000px;}
.y24{bottom:232.590000px;}
.y81{bottom:236.280000px;}
.ya6{bottom:236.370000px;}
.yf4{bottom:236.910000px;}
.y141{bottom:240.060000px;}
.yc3{bottom:246.090000px;}
.y52{bottom:246.630000px;}
.y23{bottom:250.140000px;}
.yf3{bottom:254.460000px;}
.y11d{bottom:256.260000px;}
.y140{bottom:257.610000px;}
.y80{bottom:263.640000px;}
.ya5{bottom:263.730000px;}
.y51{bottom:264.180000px;}
.y22{bottom:267.780000px;}
.y11c{bottom:273.900000px;}
.y13f{bottom:275.250000px;}
.y50{bottom:281.820000px;}
.y21{bottom:285.330000px;}
.yf2{bottom:290.100000px;}
.y7f{bottom:290.910000px;}
.ya4{bottom:291.090000px;}
.y11b{bottom:291.450000px;}
.yc2{bottom:294.870000px;}
.y4f{bottom:299.370000px;}
.y13e{bottom:301.800000px;}
.y20{bottom:302.880000px;}
.yf1{bottom:307.650000px;}
.y4e{bottom:317.010000px;}
.y11a{bottom:318.000000px;}
.y7d{bottom:318.270000px;}
.ya3{bottom:318.360000px;}
.y13d{bottom:319.440000px;}
.yf0{bottom:325.200000px;}
.yc1{bottom:330.420000px;}
.y119{bottom:335.640000px;}
.y13c{bottom:336.990000px;}
.y1f{bottom:338.520000px;}
.yef{bottom:342.840000px;}
.y4d{bottom:343.560000px;}
.y7b{bottom:345.630000px;}
.ya2{bottom:345.720000px;}
.yc0{bottom:347.970000px;}
.y118{bottom:353.190000px;}
.y1e{bottom:356.070000px;}
.yee{bottom:360.390000px;}
.y13b{bottom:363.540000px;}
.ybf{bottom:365.610000px;}
.ya1{bottom:373.080000px;}
.y1d{bottom:373.710000px;}
.yed{bottom:377.940000px;}
.y4c{bottom:379.470000px;}
.y117{bottom:379.830000px;}
.y13a{bottom:381.180000px;}
.ybe{bottom:383.160000px;}
.y1c{bottom:391.260000px;}
.y7a{bottom:394.320000px;}
.yec{bottom:395.580000px;}
.y116{bottom:397.380000px;}
.y139{bottom:398.730000px;}
.ya0{bottom:400.440000px;}
.ybd{bottom:400.800000px;}
.ybc{bottom:418.350000px;}
.y115{bottom:424.290000px;}
.y138{bottom:425.370000px;}
.y1b{bottom:426.810000px;}
.y4b{bottom:427.710000px;}
.y79{bottom:429.870000px;}
.yeb{bottom:431.130000px;}
.ybb{bottom:435.900000px;}
.y137{bottom:442.920000px;}
.y1a{bottom:444.450000px;}
.y4a{bottom:445.350000px;}
.y78{bottom:447.510000px;}
.yea{bottom:448.770000px;}
.yba{bottom:450.930000px;}
.y9f{bottom:455.070000px;}
.y49{bottom:462.900000px;}
.y77{bottom:465.060000px;}
.ye9{bottom:466.320000px;}
.y136{bottom:469.470000px;}
.y114{bottom:472.560000px;}
.yb9{bottom:478.230000px;}
.y19{bottom:480.030000px;}
.y48{bottom:480.480000px;}
.y76{bottom:482.730000px;}
.ye8{bottom:483.900000px;}
.y135{bottom:487.140000px;}
.y113{bottom:490.200000px;}
.y18{bottom:497.670000px;}
.y75{bottom:500.280000px;}
.ye7{bottom:501.540000px;}
.y9e{bottom:503.790000px;}
.y134{bottom:504.690000px;}
.yb8{bottom:505.590000px;}
.y112{bottom:507.750000px;}
.y17{bottom:515.220000px;}
.y47{bottom:516.120000px;}
.y74{bottom:517.830000px;}
.ye6{bottom:519.090000px;}
.y111{bottom:525.300000px;}
.y133{bottom:531.330000px;}
.y16{bottom:532.770000px;}
.yb7{bottom:532.950000px;}
.y46{bottom:533.670000px;}
.ye5{bottom:536.730000px;}
.y9d{bottom:539.340000px;}
.y110{bottom:542.940000px;}
.y73{bottom:544.740000px;}
.y132{bottom:548.880000px;}
.y45{bottom:551.310000px;}
.ye4{bottom:554.280000px;}
.y9c{bottom:556.980000px;}
.y15{bottom:559.770000px;}
.yb6{bottom:560.310000px;}
.y10f{bottom:560.490000px;}
.y131{bottom:566.430000px;}
.y44{bottom:568.860000px;}
.ye3{bottom:571.830000px;}
.y9b{bottom:574.530000px;}
.y43{bottom:586.410000px;}
.y10e{bottom:587.400000px;}
.ye2{bottom:589.470000px;}
.y9a{bottom:592.170000px;}
.y72{bottom:593.070000px;}
.y14{bottom:606.480000px;}
.ye1{bottom:607.020000px;}
.yb5{bottom:609.000000px;}
.y99{bottom:609.720000px;}
.y71{bottom:610.620000px;}
.y42{bottom:622.050000px;}
.y10d{bottom:624.480000px;}
.y98{bottom:624.660000px;}
.y70{bottom:628.260000px;}
.y130{bottom:637.260000px;}
.y41{bottom:639.600000px;}
.y13{bottom:642.030000px;}
.yb4{bottom:644.550000px;}
.y6f{bottom:645.810000px;}
.y10c{bottom:651.390000px;}
.y97{bottom:652.020000px;}
.y12f{bottom:654.810000px;}
.y40{bottom:657.240000px;}
.ye0{bottom:660.210000px;}
.yb3{bottom:662.190000px;}
.y6e{bottom:663.360000px;}
.y12e{bottom:672.360000px;}
.y3f{bottom:674.790000px;}
.ydf{bottom:677.760000px;}
.y12{bottom:677.850000px;}
.y96{bottom:679.380000px;}
.yb2{bottom:679.740000px;}
.y10b{bottom:688.380000px;}
.y6d{bottom:690.000000px;}
.y3e{bottom:692.340000px;}
.yde{bottom:695.400000px;}
.yb1{bottom:697.290000px;}
.y12d{bottom:699.000000px;}
.yb0{bottom:712.320000px;}
.ydd{bottom:712.950000px;}
.y10a{bottom:715.290000px;}
.y12c{bottom:716.550000px;}
.y11{bottom:717.630000px;}
.y6c{bottom:725.550000px;}
.y3d{bottom:727.980000px;}
.y95{bottom:728.070000px;}
.ydc{bottom:730.590000px;}
.y12b{bottom:734.190000px;}
.y10{bottom:735.630000px;}
.yaf{bottom:739.590000px;}
.y6b{bottom:743.190000px;}
.y3c{bottom:745.530000px;}
.ydb{bottom:748.140000px;}
.y109{bottom:752.640000px;}
.yf{bottom:753.630000px;}
.y6a{bottom:760.740000px;}
.y3b{bottom:763.170000px;}
.y94{bottom:763.620000px;}
.yda{bottom:765.690000px;}
.yae{bottom:766.950000px;}
.ye{bottom:771.630000px;}
.y69{bottom:778.290000px;}
.y3a{bottom:780.720000px;}
.y93{bottom:781.260000px;}
.yd9{bottom:783.330000px;}
.yd{bottom:789.630000px;}
.yad{bottom:794.310000px;}
.y68{bottom:795.930000px;}
.y92{bottom:798.810000px;}
.y108{bottom:800.880000px;}
.y12a{bottom:804.930000px;}
.yc{bottom:807.630000px;}
.y67{bottom:813.480000px;}
.y39{bottom:816.270000px;}
.y91{bottom:816.450000px;}
.y107{bottom:818.520000px;}
.yd8{bottom:818.880000px;}
.yac{bottom:821.670000px;}
.y129{bottom:822.480000px;}
.yb{bottom:825.630000px;}
.y38{bottom:833.910000px;}
.y90{bottom:834.000000px;}
.y106{bottom:836.070000px;}
.yd7{bottom:836.520000px;}
.y66{bottom:840.030000px;}
.ya{bottom:843.630000px;}
.y8f{bottom:848.940000px;}
.y128{bottom:849.030000px;}
.y37{bottom:851.460000px;}
.y105{bottom:853.620000px;}
.yd6{bottom:854.070000px;}
.y9{bottom:861.630000px;}
.y127{bottom:866.670000px;}
.y36{bottom:869.100000px;}
.y104{bottom:871.260000px;}
.yd5{bottom:871.620000px;}
.y65{bottom:875.670000px;}
.y8e{bottom:876.300000px;}
.y8{bottom:879.630000px;}
.y35{bottom:886.650000px;}
.y103{bottom:888.810000px;}
.yd4{bottom:889.260000px;}
.y64{bottom:893.220000px;}
.y7{bottom:897.630000px;}
.y8d{bottom:903.660000px;}
.y34{bottom:904.200000px;}
.y102{bottom:906.450000px;}
.yd3{bottom:906.810000px;}
.y63{bottom:910.860000px;}
.yd2{bottom:924.450000px;}
.y62{bottom:928.410000px;}
.y8c{bottom:930.930000px;}
.y101{bottom:933.270000px;}
.y6{bottom:933.720000px;}
.y126{bottom:937.410000px;}
.y33{bottom:939.840000px;}
.yd1{bottom:942.000000px;}
.y61{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y125{bottom:954.960000px;}
.y32{bottom:957.390000px;}
.y8b{bottom:958.290000px;}
.yd0{bottom:959.550000px;}
.y60{bottom:963.600000px;}
.y124{bottom:972.600000px;}
.y31{bottom:975.030000px;}
.ycf{bottom:977.190000px;}
.y100{bottom:981.600000px;}
.y8a{bottom:985.650000px;}
.y4{bottom:987.630000px;}
.y5f{bottom:990.150000px;}
.y30{bottom:992.580000px;}
.yce{bottom:994.740000px;}
.yff{bottom:999.150000px;}
.y2f{bottom:1010.160000px;}
.y3{bottom:1012.320000px;}
.yfe{bottom:1016.820000px;}
.y5e{bottom:1025.820000px;}
.y89{bottom:1034.370000px;}
.y2e{bottom:1037.070000px;}
.y5d{bottom:1043.370000px;}
.ycd{bottom:1047.960000px;}
.yfd{bottom:1051.920000px;}
.y5c{bottom:1060.920000px;}
.ycc{bottom:1065.510000px;}
.yfc{bottom:1069.560000px;}
.y88{bottom:1069.920000px;}
.y5b{bottom:1078.560000px;}
.ycb{bottom:1083.150000px;}
.y2d{bottom:1085.670000px;}
.y87{bottom:1087.560000px;}
.y5a{bottom:1096.110000px;}
.yca{bottom:1100.700000px;}
.y86{bottom:1105.110000px;}
.y59{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.yc9{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hf{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:26.995781px;}
.h7{height:35.782383px;}
.h3{height:39.155273px;}
.h6{height:42.203320px;}
.h8{height:50.902383px;}
.h9{height:52.311445px;}
.ha{height:55.779258px;}
.h5{height:57.323320px;}
.h10{height:61.793886px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w15{width:57.450000px;}
.w9{width:58.410000px;}
.w16{width:59.400000px;}
.wa{width:76.320000px;}
.wd{width:80.820000px;}
.w5{width:80.910000px;}
.w13{width:81.840000px;}
.w4{width:85.260000px;}
.w8{width:88.470000px;}
.w7{width:93.000000px;}
.wf{width:122.430000px;}
.wb{width:126.990000px;}
.wc{width:131.520000px;}
.w12{width:139.050000px;}
.w6{width:141.840000px;}
.we{width:151.740000px;}
.w11{width:153.750000px;}
.w14{width:160.200000px;}
.w10{width:244.980000px;}
.w3{width:251.190000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.960000px;}
.x9{left:7.740000px;}
.x1{left:68.040000px;}
.x1d{left:111.239987px;}
.x2{left:192.719987px;}
.x14{left:206.130000px;}
.xc{left:208.020000px;}
.x4{left:237.180000px;}
.x11{left:264.540000px;}
.xd{left:267.240000px;}
.x8{left:284.250000px;}
.x17{left:295.050000px;}
.x1a{left:307.380000px;}
.xe{left:344.280000px;}
.x12{left:417.000000px;}
.xa{left:426.810000px;}
.x18{left:434.820000px;}
.x15{left:451.830000px;}
.x1b{left:468.300000px;}
.xf{left:472.080000px;}
.x6{left:489.180000px;}
.x19{left:517.380000px;}
.xb{left:520.530000px;}
.x1c{left:526.470000px;}
.x13{left:540.240000px;}
.x7{left:575.160000px;}
.x10{left:604.410000px;}
.x16{left:606.300000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.395200pt;}
.ls17{letter-spacing:-0.266133pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.142933pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls14{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.075200pt;}
.ls1e{letter-spacing:-0.013120pt;}
.lsd{letter-spacing:-0.005333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010027pt;}
.ls3{letter-spacing:0.013653pt;}
.ls11{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.053760pt;}
.ls16{letter-spacing:0.053867pt;}
.lsa{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.154240pt;}
.lsb{letter-spacing:0.154667pt;}
.ls1b{letter-spacing:0.177067pt;}
.ls4{letter-spacing:0.193920pt;}
.ls5{letter-spacing:0.217813pt;}
.ls18{letter-spacing:0.275733pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.474667pt;}
.ls1d{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws5{word-spacing:-31.422720pt;}
.ws45{word-spacing:-12.775467pt;}
.ws4b{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws49{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws4c{word-spacing:-11.743680pt;}
.ws4a{word-spacing:-11.613867pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-8.295467pt;}
.ws2{word-spacing:-8.236800pt;}
.ws47{word-spacing:-7.657067pt;}
.ws46{word-spacing:-7.603200pt;}
.ws48{word-spacing:-7.337067pt;}
.ws21{word-spacing:-0.400000pt;}
.ws24{word-spacing:-0.389333pt;}
.ws16{word-spacing:-0.325333pt;}
.ws17{word-spacing:-0.320000pt;}
.ws22{word-spacing:-0.314667pt;}
.ws18{word-spacing:-0.304000pt;}
.ws34{word-spacing:-0.293333pt;}
.ws1c{word-spacing:-0.218667pt;}
.ws15{word-spacing:-0.213333pt;}
.ws44{word-spacing:-0.202667pt;}
.ws1d{word-spacing:-0.186667pt;}
.ws14{word-spacing:-0.160000pt;}
.ws41{word-spacing:-0.154667pt;}
.ws1a{word-spacing:-0.128000pt;}
.ws33{word-spacing:-0.122667pt;}
.ws1f{word-spacing:-0.117333pt;}
.ws1e{word-spacing:-0.112000pt;}
.ws43{word-spacing:-0.080000pt;}
.ws42{word-spacing:-0.058667pt;}
.ws8{word-spacing:0.000000pt;}
.ws20{word-spacing:0.053333pt;}
.ws11{word-spacing:0.090667pt;}
.ws13{word-spacing:0.106667pt;}
.ws40{word-spacing:0.117333pt;}
.ws12{word-spacing:0.138667pt;}
.ws19{word-spacing:0.160000pt;}
.wsf{word-spacing:0.176000pt;}
.ws25{word-spacing:0.208000pt;}
.ws1b{word-spacing:0.213333pt;}
.ws10{word-spacing:0.293333pt;}
.ws23{word-spacing:0.373333pt;}
.wsa{word-spacing:2.912000pt;}
.ws35{word-spacing:3.626667pt;}
.wsd{word-spacing:4.218667pt;}
.wse{word-spacing:4.240000pt;}
.ws9{word-spacing:4.394667pt;}
.wsb{word-spacing:4.506667pt;}
.wsc{word-spacing:4.512000pt;}
.ws3a{word-spacing:5.397333pt;}
.ws39{word-spacing:5.466667pt;}
.ws26{word-spacing:5.546667pt;}
.ws3b{word-spacing:5.578667pt;}
.ws37{word-spacing:5.589333pt;}
.ws3c{word-spacing:5.664000pt;}
.ws36{word-spacing:5.669333pt;}
.ws3f{word-spacing:5.733333pt;}
.ws3d{word-spacing:5.749333pt;}
.ws3e{word-spacing:5.770667pt;}
.ws38{word-spacing:5.861333pt;}
.ws32{word-spacing:7.002667pt;}
.ws27{word-spacing:7.184000pt;}
.ws2e{word-spacing:7.232000pt;}
.ws2b{word-spacing:7.429333pt;}
.ws2a{word-spacing:7.472000pt;}
.ws2c{word-spacing:7.589333pt;}
.ws31{word-spacing:7.685333pt;}
.ws29{word-spacing:7.696000pt;}
.ws28{word-spacing:7.829333pt;}
.ws30{word-spacing:7.893333pt;}
.ws2f{word-spacing:7.925333pt;}
.ws2d{word-spacing:7.978667pt;}
._2{margin-left:-4.655531pt;}
._1{margin-left:-3.599680pt;}
._7{margin-left:-1.886400pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.947958pt;}
._e{width:1.865339pt;}
._8{width:2.797133pt;}
._5{width:3.812264pt;}
._4{width:4.819200pt;}
._9{width:5.912533pt;}
._b{width:7.233707pt;}
._c{width:8.249067pt;}
._d{width:9.332693pt;}
._a{width:10.446293pt;}
._17{width:12.825600pt;}
._13{width:14.108160pt;}
._12{width:15.181760pt;}
._6{width:16.178240pt;}
._11{width:17.188160pt;}
._16{width:18.383360pt;}
._f{width:19.291840pt;}
._10{width:20.859413pt;}
._15{width:21.890774pt;}
._14{width:22.801067pt;}
._18{width:23.748799pt;}
._19{width:24.653653pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:6.960000pt;}
.y7e{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yc8{bottom:97.306667pt;}
.yfb{bottom:101.146667pt;}
.y58{bottom:101.466667pt;}
.yab{bottom:108.266667pt;}
.yfa{bottom:116.746667pt;}
.y57{bottom:117.066667pt;}
.y123{bottom:118.026667pt;}
.yc7{bottom:121.626667pt;}
.y85{bottom:123.866667pt;}
.yaa{bottom:123.946667pt;}
.y28{bottom:128.186667pt;}
.yf9{bottom:132.426667pt;}
.y56{bottom:132.666667pt;}
.y122{bottom:133.626667pt;}
.y145{bottom:134.826667pt;}
.y84{bottom:137.146667pt;}
.ya9{bottom:137.226667pt;}
.y27{bottom:143.866667pt;}
.yc6{bottom:145.866667pt;}
.yf8{bottom:148.026667pt;}
.y55{bottom:148.346667pt;}
.y121{bottom:149.306667pt;}
.y144{bottom:150.506667pt;}
.y83{bottom:161.466667pt;}
.ya8{bottom:161.546667pt;}
.yf7{bottom:163.706667pt;}
.yc5{bottom:170.186667pt;}
.y54{bottom:171.946667pt;}
.y120{bottom:172.906667pt;}
.y143{bottom:174.106667pt;}
.y26{bottom:175.466667pt;}
.yf6{bottom:179.306667pt;}
.y82{bottom:185.706667pt;}
.ya7{bottom:185.786667pt;}
.y11f{bottom:188.506667pt;}
.y142{bottom:189.786667pt;}
.y25{bottom:191.066667pt;}
.yc4{bottom:194.506667pt;}
.yf5{bottom:194.906667pt;}
.y53{bottom:203.626667pt;}
.y11e{bottom:204.186667pt;}
.y24{bottom:206.746667pt;}
.y81{bottom:210.026667pt;}
.ya6{bottom:210.106667pt;}
.yf4{bottom:210.586667pt;}
.y141{bottom:213.386667pt;}
.yc3{bottom:218.746667pt;}
.y52{bottom:219.226667pt;}
.y23{bottom:222.346667pt;}
.yf3{bottom:226.186667pt;}
.y11d{bottom:227.786667pt;}
.y140{bottom:228.986667pt;}
.y80{bottom:234.346667pt;}
.ya5{bottom:234.426667pt;}
.y51{bottom:234.826667pt;}
.y22{bottom:238.026667pt;}
.y11c{bottom:243.466667pt;}
.y13f{bottom:244.666667pt;}
.y50{bottom:250.506667pt;}
.y21{bottom:253.626667pt;}
.yf2{bottom:257.866667pt;}
.y7f{bottom:258.586667pt;}
.ya4{bottom:258.746667pt;}
.y11b{bottom:259.066667pt;}
.yc2{bottom:262.106667pt;}
.y4f{bottom:266.106667pt;}
.y13e{bottom:268.266667pt;}
.y20{bottom:269.226667pt;}
.yf1{bottom:273.466667pt;}
.y4e{bottom:281.786667pt;}
.y11a{bottom:282.666667pt;}
.y7d{bottom:282.906667pt;}
.ya3{bottom:282.986667pt;}
.y13d{bottom:283.946667pt;}
.yf0{bottom:289.066667pt;}
.yc1{bottom:293.706667pt;}
.y119{bottom:298.346667pt;}
.y13c{bottom:299.546667pt;}
.y1f{bottom:300.906667pt;}
.yef{bottom:304.746667pt;}
.y4d{bottom:305.386667pt;}
.y7b{bottom:307.226667pt;}
.ya2{bottom:307.306667pt;}
.yc0{bottom:309.306667pt;}
.y118{bottom:313.946667pt;}
.y1e{bottom:316.506667pt;}
.yee{bottom:320.346667pt;}
.y13b{bottom:323.146667pt;}
.ybf{bottom:324.986667pt;}
.ya1{bottom:331.626667pt;}
.y1d{bottom:332.186667pt;}
.yed{bottom:335.946667pt;}
.y4c{bottom:337.306667pt;}
.y117{bottom:337.626667pt;}
.y13a{bottom:338.826667pt;}
.ybe{bottom:340.586667pt;}
.y1c{bottom:347.786667pt;}
.y7a{bottom:350.506667pt;}
.yec{bottom:351.626667pt;}
.y116{bottom:353.226667pt;}
.y139{bottom:354.426667pt;}
.ya0{bottom:355.946667pt;}
.ybd{bottom:356.266667pt;}
.ybc{bottom:371.866667pt;}
.y115{bottom:377.146667pt;}
.y138{bottom:378.106667pt;}
.y1b{bottom:379.386667pt;}
.y4b{bottom:380.186667pt;}
.y79{bottom:382.106667pt;}
.yeb{bottom:383.226667pt;}
.ybb{bottom:387.466667pt;}
.y137{bottom:393.706667pt;}
.y1a{bottom:395.066667pt;}
.y4a{bottom:395.866667pt;}
.y78{bottom:397.786667pt;}
.yea{bottom:398.906667pt;}
.yba{bottom:400.826667pt;}
.y9f{bottom:404.506667pt;}
.y49{bottom:411.466667pt;}
.y77{bottom:413.386667pt;}
.ye9{bottom:414.506667pt;}
.y136{bottom:417.306667pt;}
.y114{bottom:420.053333pt;}
.yb9{bottom:425.093333pt;}
.y19{bottom:426.693333pt;}
.y48{bottom:427.093333pt;}
.y76{bottom:429.093333pt;}
.ye8{bottom:430.133333pt;}
.y135{bottom:433.013333pt;}
.y113{bottom:435.733333pt;}
.y18{bottom:442.373333pt;}
.y75{bottom:444.693333pt;}
.ye7{bottom:445.813333pt;}
.y9e{bottom:447.813333pt;}
.y134{bottom:448.613333pt;}
.yb8{bottom:449.413333pt;}
.y112{bottom:451.333333pt;}
.y17{bottom:457.973333pt;}
.y47{bottom:458.773333pt;}
.y74{bottom:460.293333pt;}
.ye6{bottom:461.413333pt;}
.y111{bottom:466.933333pt;}
.y133{bottom:472.293333pt;}
.y16{bottom:473.573333pt;}
.yb7{bottom:473.733333pt;}
.y46{bottom:474.373333pt;}
.ye5{bottom:477.093333pt;}
.y9d{bottom:479.413333pt;}
.y110{bottom:482.613333pt;}
.y73{bottom:484.213333pt;}
.y132{bottom:487.893333pt;}
.y45{bottom:490.053333pt;}
.ye4{bottom:492.693333pt;}
.y9c{bottom:495.093333pt;}
.y15{bottom:497.573333pt;}
.yb6{bottom:498.053333pt;}
.y10f{bottom:498.213333pt;}
.y131{bottom:503.493333pt;}
.y44{bottom:505.653333pt;}
.ye3{bottom:508.293333pt;}
.y9b{bottom:510.693333pt;}
.y43{bottom:521.253333pt;}
.y10e{bottom:522.133333pt;}
.ye2{bottom:523.973333pt;}
.y9a{bottom:526.373333pt;}
.y72{bottom:527.173333pt;}
.y14{bottom:539.093333pt;}
.ye1{bottom:539.573333pt;}
.yb5{bottom:541.333333pt;}
.y99{bottom:541.973333pt;}
.y71{bottom:542.773333pt;}
.y42{bottom:552.933333pt;}
.y10d{bottom:555.093333pt;}
.y98{bottom:555.253333pt;}
.y70{bottom:558.453333pt;}
.y130{bottom:566.453333pt;}
.y41{bottom:568.533333pt;}
.y13{bottom:570.693333pt;}
.yb4{bottom:572.933333pt;}
.y6f{bottom:574.053333pt;}
.y10c{bottom:579.013333pt;}
.y97{bottom:579.573333pt;}
.y12f{bottom:582.053333pt;}
.y40{bottom:584.213333pt;}
.ye0{bottom:586.853333pt;}
.yb3{bottom:588.613333pt;}
.y6e{bottom:589.653333pt;}
.y12e{bottom:597.653333pt;}
.y3f{bottom:599.813333pt;}
.ydf{bottom:602.453333pt;}
.y12{bottom:602.533333pt;}
.y96{bottom:603.893333pt;}
.yb2{bottom:604.213333pt;}
.y10b{bottom:611.893333pt;}
.y6d{bottom:613.333333pt;}
.y3e{bottom:615.413333pt;}
.yde{bottom:618.133333pt;}
.yb1{bottom:619.813333pt;}
.y12d{bottom:621.333333pt;}
.yb0{bottom:633.173333pt;}
.ydd{bottom:633.733333pt;}
.y10a{bottom:635.813333pt;}
.y12c{bottom:636.933333pt;}
.y11{bottom:637.893333pt;}
.y6c{bottom:644.933333pt;}
.y3d{bottom:647.093333pt;}
.y95{bottom:647.173333pt;}
.ydc{bottom:649.413333pt;}
.y12b{bottom:652.613333pt;}
.y10{bottom:653.893333pt;}
.yaf{bottom:657.413333pt;}
.y6b{bottom:660.613333pt;}
.y3c{bottom:662.693333pt;}
.ydb{bottom:665.013333pt;}
.y109{bottom:669.013333pt;}
.yf{bottom:669.893333pt;}
.y6a{bottom:676.213333pt;}
.y3b{bottom:678.373333pt;}
.y94{bottom:678.773333pt;}
.yda{bottom:680.613333pt;}
.yae{bottom:681.733333pt;}
.ye{bottom:685.893333pt;}
.y69{bottom:691.813333pt;}
.y3a{bottom:693.973333pt;}
.y93{bottom:694.453333pt;}
.yd9{bottom:696.293333pt;}
.yd{bottom:701.893333pt;}
.yad{bottom:706.053333pt;}
.y68{bottom:707.493333pt;}
.y92{bottom:710.053333pt;}
.y108{bottom:711.893333pt;}
.y12a{bottom:715.493333pt;}
.yc{bottom:717.893333pt;}
.y67{bottom:723.093333pt;}
.y39{bottom:725.573333pt;}
.y91{bottom:725.733333pt;}
.y107{bottom:727.573333pt;}
.yd8{bottom:727.893333pt;}
.yac{bottom:730.373333pt;}
.y129{bottom:731.093333pt;}
.yb{bottom:733.893333pt;}
.y38{bottom:741.253333pt;}
.y90{bottom:741.333333pt;}
.y106{bottom:743.173333pt;}
.yd7{bottom:743.573333pt;}
.y66{bottom:746.693333pt;}
.ya{bottom:749.893333pt;}
.y8f{bottom:754.613333pt;}
.y128{bottom:754.693333pt;}
.y37{bottom:756.853333pt;}
.y105{bottom:758.773333pt;}
.yd6{bottom:759.173333pt;}
.y9{bottom:765.893333pt;}
.y127{bottom:770.373333pt;}
.y36{bottom:772.533333pt;}
.y104{bottom:774.453333pt;}
.yd5{bottom:774.773333pt;}
.y65{bottom:778.373333pt;}
.y8e{bottom:778.933333pt;}
.y8{bottom:781.893333pt;}
.y35{bottom:788.133333pt;}
.y103{bottom:790.053333pt;}
.yd4{bottom:790.453333pt;}
.y64{bottom:793.973333pt;}
.y7{bottom:797.893333pt;}
.y8d{bottom:803.253333pt;}
.y34{bottom:803.733333pt;}
.y102{bottom:805.733333pt;}
.yd3{bottom:806.053333pt;}
.y63{bottom:809.653333pt;}
.yd2{bottom:821.733333pt;}
.y62{bottom:825.253333pt;}
.y8c{bottom:827.493333pt;}
.y101{bottom:829.573333pt;}
.y6{bottom:829.973333pt;}
.y126{bottom:833.253333pt;}
.y33{bottom:835.413333pt;}
.yd1{bottom:837.333333pt;}
.y61{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y125{bottom:848.853333pt;}
.y32{bottom:851.013333pt;}
.y8b{bottom:851.813333pt;}
.yd0{bottom:852.933333pt;}
.y60{bottom:856.533333pt;}
.y124{bottom:864.533333pt;}
.y31{bottom:866.693333pt;}
.ycf{bottom:868.613333pt;}
.y100{bottom:872.533333pt;}
.y8a{bottom:876.133333pt;}
.y4{bottom:877.893333pt;}
.y5f{bottom:880.133333pt;}
.y30{bottom:882.293333pt;}
.yce{bottom:884.213333pt;}
.yff{bottom:888.133333pt;}
.y2f{bottom:897.920000pt;}
.y3{bottom:899.840000pt;}
.yfe{bottom:903.840000pt;}
.y5e{bottom:911.840000pt;}
.y89{bottom:919.440000pt;}
.y2e{bottom:921.840000pt;}
.y5d{bottom:927.440000pt;}
.ycd{bottom:931.520000pt;}
.yfd{bottom:935.040000pt;}
.y5c{bottom:943.040000pt;}
.ycc{bottom:947.120000pt;}
.yfc{bottom:950.720000pt;}
.y88{bottom:951.040000pt;}
.y5b{bottom:958.720000pt;}
.ycb{bottom:962.800000pt;}
.y2d{bottom:965.040000pt;}
.y87{bottom:966.720000pt;}
.y5a{bottom:974.320000pt;}
.yca{bottom:978.400000pt;}
.y86{bottom:982.320000pt;}
.y59{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.yc9{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hf{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:23.996250pt;}
.h7{height:31.806563pt;}
.h3{height:34.804688pt;}
.h6{height:37.514063pt;}
.h8{height:45.246562pt;}
.h9{height:46.499062pt;}
.ha{height:49.581562pt;}
.h5{height:50.954062pt;}
.h10{height:54.927899pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w15{width:51.066667pt;}
.w9{width:51.920000pt;}
.w16{width:52.800000pt;}
.wa{width:67.840000pt;}
.wd{width:71.840000pt;}
.w5{width:71.920000pt;}
.w13{width:72.746667pt;}
.w4{width:75.786667pt;}
.w8{width:78.640000pt;}
.w7{width:82.666667pt;}
.wf{width:108.826667pt;}
.wb{width:112.880000pt;}
.wc{width:116.906667pt;}
.w12{width:123.600000pt;}
.w6{width:126.080000pt;}
.we{width:134.880000pt;}
.w11{width:136.666667pt;}
.w14{width:142.400000pt;}
.w10{width:217.760000pt;}
.w3{width:223.280000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.520000pt;}
.x9{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1d{left:98.879988pt;}
.x2{left:171.306655pt;}
.x14{left:183.226667pt;}
.xc{left:184.906667pt;}
.x4{left:210.826667pt;}
.x11{left:235.146667pt;}
.xd{left:237.546667pt;}
.x8{left:252.666667pt;}
.x17{left:262.266667pt;}
.x1a{left:273.226667pt;}
.xe{left:306.026667pt;}
.x12{left:370.666667pt;}
.xa{left:379.386667pt;}
.x18{left:386.506667pt;}
.x15{left:401.626667pt;}
.x1b{left:416.266667pt;}
.xf{left:419.626667pt;}
.x6{left:434.826667pt;}
.x19{left:459.893333pt;}
.xb{left:462.693333pt;}
.x1c{left:467.973333pt;}
.x13{left:480.213333pt;}
.x7{left:511.253333pt;}
.x10{left:537.253333pt;}
.x16{left:538.933333pt;}
.x3{left:711.413322pt;}
}




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