
    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_bf0b578485da5ad9cf0b1a76.woff')format("woff");}.ff1{font-family:ff1;line-height:1.132812;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_e6798a5abb818d998d92d50f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.138672;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c62dafdacf425abe5df5a85e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.892578;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_acb9dcebf719eb1b50a0ef61.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9511e705a20fc7064bb68ff4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.976074;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_67a4e7a4cf3b391ee6ee9917.woff')format("woff");}.ff7{font-family:ff7;line-height:1.132812;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_d1090d98aba580bb9ff6ec8d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.138672;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_c1b2e8bad2f5524195c4107d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.988281;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_03436acf4212d31d8bba5dc3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.988281;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_73936a70cb6f0650c4981858.woff')format("woff");}.ffb{font-family:ffb;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1ca89e9b4eada29bd54dfb43.woff')format("woff");}.ffc{font-family:ffc;line-height:0.747559;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_5623dad7355e0b13e16edd81.woff')format("woff");}.ffd{font-family:ffd;line-height:1.035156;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);}
.v2{vertical-align:-67.500000px;}
.v1{vertical-align:-61.440000px;}
.v3{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.900000px;}
.ls10{letter-spacing:-0.810000px;}
.ls11{letter-spacing:-0.780000px;}
.ls16{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.420000px;}
.ls1f{letter-spacing:-0.336000px;}
.lsd{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.006000px;}
.ls1{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.060000px;}
.ls17{letter-spacing:0.084000px;}
.ls1e{letter-spacing:0.108000px;}
.ls27{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.168000px;}
.ls28{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.408000px;}
.lse{letter-spacing:0.420000px;}
.ls4{letter-spacing:0.450000px;}
.ls26{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.516000px;}
.ls18{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.600000px;}
.ls1b{letter-spacing:0.660000px;}
.ls19{letter-spacing:0.678000px;}
.lsf{letter-spacing:0.690000px;}
.ls14{letter-spacing:0.696000px;}
.ls12{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.732000px;}
.ls29{letter-spacing:0.840000px;}
.ls7{letter-spacing:1.020000px;}
.ls1c{letter-spacing:1.092000px;}
.ls25{letter-spacing:1.200000px;}
.ls24{letter-spacing:2.100000px;}
.ls1d{letter-spacing:4.380000px;}
.ls22{letter-spacing:16.260000px;}
.ls23{letter-spacing:86.760000px;}
.lsb{letter-spacing:194.940000px;}
.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;}
}
.ws18{word-spacing:-60.000000px;}
.ws5{word-spacing:-22.464000px;}
.ws4{word-spacing:-21.000000px;}
.ws17{word-spacing:-19.440000px;}
.ws1{word-spacing:-19.260000px;}
.wse{word-spacing:-18.960000px;}
.ws15{word-spacing:-18.900000px;}
.ws14{word-spacing:-18.780000px;}
.ws0{word-spacing:-18.720000px;}
.wsc{word-spacing:-18.660000px;}
.ws19{word-spacing:-18.360000px;}
.ws3{word-spacing:-18.240000px;}
.ws9{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.940000px;}
.wsf{word-spacing:-17.820000px;}
.ws6{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.760000px;}
.wsd{word-spacing:-17.460000px;}
.ws12{word-spacing:-17.094000px;}
.ws8{word-spacing:-16.584000px;}
.ws13{word-spacing:-16.422000px;}
.ws7{word-spacing:-16.416000px;}
.ws11{word-spacing:-15.108000px;}
.ws10{word-spacing:-14.592000px;}
.ws16{word-spacing:-14.256000px;}
.wsa{word-spacing:0.000000px;}
._f{margin-left:-5.160000px;}
._c{margin-left:-4.140000px;}
._3{margin-left:-3.060000px;}
._0{margin-left:-1.380000px;}
._1{width:1.140000px;}
._4{width:2.160000px;}
._6{width:3.660000px;}
._7{width:5.100000px;}
._5{width:6.780000px;}
._8{width:8.640000px;}
._d{width:9.780000px;}
._b{width:10.920000px;}
._14{width:11.940000px;}
._a{width:13.440000px;}
._9{width:14.640000px;}
._e{width:15.960000px;}
._12{width:17.904000px;}
._17{width:18.936000px;}
._13{width:20.112000px;}
._10{width:21.540000px;}
._11{width:23.340000px;}
._16{width:24.900000px;}
._15{width:26.160000px;}
._18{width:27.300000px;}
._19{width:31.080000px;}
._1a{width:33.120000px;}
._1b{width:34.620000px;}
._1c{width:36.120000px;}
._25{width:37.740000px;}
._23{width:39.600000px;}
._24{width:40.860000px;}
._21{width:44.760000px;}
._1f{width:46.260000px;}
._20{width:48.000000px;}
._22{width:63.000000px;}
._1d{width:77.880000px;}
._1e{width:79.680000px;}
._2{width:406.746000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:24.000000px;}
.fs9{font-size:27.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y3{bottom:226.200000px;}
.y4{bottom:237.825000px;}
.ya6{bottom:321.480000px;}
.y12c{bottom:322.245000px;}
.ye6{bottom:325.620000px;}
.ya5{bottom:325.995000px;}
.y80{bottom:327.480000px;}
.yfb{bottom:330.855000px;}
.y2d{bottom:332.745000px;}
.y54{bottom:334.230000px;}
.ya4{bottom:335.370000px;}
.y122{bottom:336.870000px;}
.y7b{bottom:337.605000px;}
.y12b{bottom:339.495000px;}
.y106{bottom:339.870000px;}
.yc0{bottom:340.980000px;}
.y12d{bottom:344.355000px;}
.y7f{bottom:344.730000px;}
.yfa{bottom:347.730000px;}
.ya3{bottom:348.870000px;}
.y53{bottom:349.620000px;}
.y2c{bottom:349.995000px;}
.ydf{bottom:352.995000px;}
.ya2{bottom:353.370000px;}
.y7a{bottom:354.855000px;}
.ye5{bottom:356.370000px;}
.ybf{bottom:358.230000px;}
.y7e{bottom:361.605000px;}
.ya1{bottom:362.745000px;}
.y13b{bottom:364.245000px;}
.y52{bottom:364.980000px;}
.y2b{bottom:367.245000px;}
.yde{bottom:370.245000px;}
.y79{bottom:371.730000px;}
.y12a{bottom:373.620000px;}
.ybe{bottom:375.105000px;}
.ya0{bottom:376.245000px;}
.y105{bottom:378.105000px;}
.y121{bottom:378.480000px;}
.y7d{bottom:378.855000px;}
.y9f{bottom:380.745000px;}
.yf9{bottom:381.855000px;}
.y2a{bottom:384.120000px;}
.ydd{bottom:387.120000px;}
.y78{bottom:388.980000px;}
.y9e{bottom:390.120000px;}
.y129{bottom:390.495000px;}
.ybd{bottom:392.355000px;}
.y101{bottom:394.620000px;}
.y51{bottom:395.730000px;}
.yf8{bottom:399.120000px;}
.y29{bottom:401.370000px;}
.ye4{bottom:402.495000px;}
.y9d{bottom:403.620000px;}
.ydc{bottom:404.370000px;}
.y100{bottom:405.495000px;}
.y77{bottom:405.870000px;}
.y128{bottom:407.745000px;}
.y11f{bottom:408.120000px;}
.ybc{bottom:409.245000px;}
.y104{bottom:410.370000px;}
.y13a{bottom:411.120000px;}
.y120{bottom:412.620000px;}
.y50{bottom:412.995000px;}
.yf7{bottom:416.370000px;}
.y9c{bottom:417.120000px;}
.ye3{bottom:417.870000px;}
.y28{bottom:418.245000px;}
.y11e{bottom:418.995000px;}
.ydb{bottom:421.245000px;}
.y76{bottom:423.120000px;}
.y11b{bottom:424.620000px;}
.y127{bottom:424.995000px;}
.ybb{bottom:426.495000px;}
.y139{bottom:427.995000px;}
.y4f{bottom:429.870000px;}
.y9b{bottom:430.995000px;}
.ye2{bottom:433.275000px;}
.y27{bottom:435.525000px;}
.yda{bottom:438.525000px;}
.y75{bottom:440.025000px;}
.y119{bottom:441.900000px;}
.yba{bottom:443.400000px;}
.y9a{bottom:444.525000px;}
.y138{bottom:445.275000px;}
.y141{bottom:446.775000px;}
.y4e{bottom:447.150000px;}
.y11a{bottom:447.900000px;}
.y99{bottom:449.025000px;}
.y26{bottom:452.400000px;}
.y11d{bottom:453.150000px;}
.yd9{bottom:455.400000px;}
.y74{bottom:457.275000px;}
.y118{bottom:458.775000px;}
.y126{bottom:459.150000px;}
.y98{bottom:459.900000px;}
.yb9{bottom:460.650000px;}
.y137{bottom:462.150000px;}
.yff{bottom:463.275000px;}
.y4d{bottom:464.025000px;}
.y145{bottom:464.400000px;}
.yf6{bottom:467.400000px;}
.y25{bottom:469.650000px;}
.yd8{bottom:472.650000px;}
.y73{bottom:474.150000px;}
.y117{bottom:476.025000px;}
.yb8{bottom:477.900000px;}
.y136{bottom:479.400000px;}
.y140{bottom:480.900000px;}
.y4c{bottom:481.275000px;}
.yf5{bottom:484.650000px;}
.y24{bottom:486.525000px;}
.y97{bottom:488.025000px;}
.yd7{bottom:489.525000px;}
.y72{bottom:491.400000px;}
.y116{bottom:493.275000px;}
.yb7{bottom:494.775000px;}
.y135{bottom:496.275000px;}
.y4b{bottom:498.150000px;}
.yf4{bottom:500.025000px;}
.y23{bottom:503.775000px;}
.y11c{bottom:504.150000px;}
.y96{bottom:504.900000px;}
.yd6{bottom:506.775000px;}
.y71{bottom:508.650000px;}
.y115{bottom:510.150000px;}
.y134{bottom:513.525000px;}
.y4a{bottom:515.400000px;}
.y22{bottom:520.650000px;}
.y95{bottom:522.150000px;}
.yd5{bottom:524.025000px;}
.y70{bottom:525.525000px;}
.y114{bottom:527.400000px;}
.yb6{bottom:528.900000px;}
.yf3{bottom:530.775000px;}
.ye1{bottom:532.275000px;}
.y49{bottom:532.650000px;}
.yfe{bottom:537.525000px;}
.y21{bottom:537.900000px;}
.y94{bottom:539.400000px;}
.yd4{bottom:540.900000px;}
.y6f{bottom:542.775000px;}
.y113{bottom:544.275000px;}
.y125{bottom:544.650000px;}
.yb5{bottom:546.150000px;}
.y133{bottom:547.650000px;}
.y48{bottom:549.525000px;}
.yfd{bottom:552.900000px;}
.y93{bottom:554.400000px;}
.y20{bottom:555.150000px;}
.yd3{bottom:558.150000px;}
.y6e{bottom:559.650000px;}
.yb4{bottom:561.570000px;}
.y132{bottom:564.945000px;}
.ye0{bottom:566.445000px;}
.y47{bottom:566.820000px;}
.y92{bottom:569.820000px;}
.y1f{bottom:572.070000px;}
.yd2{bottom:575.070000px;}
.y6d{bottom:576.945000px;}
.y112{bottom:578.445000px;}
.y131{bottom:581.820000px;}
.y46{bottom:583.695000px;}
.y91{bottom:585.195000px;}
.y1e{bottom:589.320000px;}
.yd1{bottom:592.320000px;}
.y6c{bottom:593.820000px;}
.y111{bottom:599.070000px;}
.y90{bottom:600.570000px;}
.y45{bottom:600.945000px;}
.y1d{bottom:606.195000px;}
.yb3{bottom:607.695000px;}
.yd0{bottom:609.195000px;}
.y6b{bottom:611.070000px;}
.y8f{bottom:615.945000px;}
.y44{bottom:617.820000px;}
.y7c{bottom:618.195000px;}
.yf2{bottom:623.070000px;}
.y1c{bottom:623.445000px;}
.yb2{bottom:624.570000px;}
.ycf{bottom:626.445000px;}
.y6a{bottom:627.945000px;}
.y8e{bottom:631.320000px;}
.y130{bottom:633.570000px;}
.y13f{bottom:634.695000px;}
.y43{bottom:635.070000px;}
.yf1{bottom:638.445000px;}
.y124{bottom:639.945000px;}
.y1b{bottom:640.320000px;}
.yb1{bottom:641.820000px;}
.yce{bottom:643.320000px;}
.y69{bottom:645.195000px;}
.y8d{bottom:646.695000px;}
.y12f{bottom:650.445000px;}
.y42{bottom:651.945000px;}
.yf0{bottom:653.820000px;}
.y110{bottom:655.320000px;}
.y1a{bottom:657.570000px;}
.yfc{bottom:657.945000px;}
.yb0{bottom:658.695000px;}
.ycd{bottom:660.570000px;}
.y68{bottom:662.070000px;}
.y12e{bottom:667.695000px;}
.y13e{bottom:668.820000px;}
.y41{bottom:669.195000px;}
.y123{bottom:670.695000px;}
.y10f{bottom:672.570000px;}
.y19{bottom:674.445000px;}
.yaf{bottom:675.945000px;}
.y8c{bottom:677.445000px;}
.y67{bottom:679.320000px;}
.yef{bottom:684.570000px;}
.y40{bottom:686.070000px;}
.y10e{bottom:689.475000px;}
.y18{bottom:691.725000px;}
.y8b{bottom:692.850000px;}
.ycc{bottom:694.725000px;}
.y66{bottom:696.600000px;}
.yee{bottom:699.975000px;}
.y3f{bottom:703.350000px;}
.y10d{bottom:706.725000px;}
.y8a{bottom:708.225000px;}
.y17{bottom:708.600000px;}
.yae{bottom:710.100000px;}
.ycb{bottom:711.975000px;}
.y65{bottom:713.475000px;}
.yed{bottom:715.350000px;}
.y3e{bottom:720.225000px;}
.y144{bottom:720.600000px;}
.y88{bottom:723.600000px;}
.y103{bottom:725.475000px;}
.y16{bottom:725.850000px;}
.yad{bottom:727.350000px;}
.y89{bottom:728.850000px;}
.y64{bottom:730.725000px;}
.y3d{bottom:737.475000px;}
.y102{bottom:740.850000px;}
.y15{bottom:743.100000px;}
.yac{bottom:744.225000px;}
.yca{bottom:746.100000px;}
.y63{bottom:747.600000px;}
.y3c{bottom:754.350000px;}
.y143{bottom:754.725000px;}
.y10c{bottom:758.100000px;}
.y14{bottom:759.975000px;}
.yab{bottom:761.475000px;}
.yc9{bottom:762.975000px;}
.y62{bottom:764.850000px;}
.y3b{bottom:771.600000px;}
.y10b{bottom:774.975000px;}
.y13{bottom:777.225000px;}
.yaa{bottom:778.350000px;}
.y84{bottom:780.225000px;}
.y61{bottom:781.725000px;}
.y3a{bottom:788.475000px;}
.y142{bottom:788.850000px;}
.y10a{bottom:792.225000px;}
.ya9{bottom:793.725000px;}
.y12{bottom:794.100000px;}
.y83{bottom:795.600000px;}
.yc8{bottom:797.100000px;}
.y60{bottom:798.975000px;}
.y39{bottom:805.725000px;}
.ya8{bottom:809.100000px;}
.y82{bottom:810.975000px;}
.y11{bottom:811.350000px;}
.yec{bottom:812.475000px;}
.yc7{bottom:814.350000px;}
.y5f{bottom:815.850000px;}
.y38{bottom:823.005000px;}
.ya7{bottom:824.505000px;}
.y81{bottom:826.380000px;}
.y10{bottom:828.255000px;}
.yeb{bottom:829.755000px;}
.yc6{bottom:831.255000px;}
.y5e{bottom:833.130000px;}
.y37{bottom:839.880000px;}
.y109{bottom:843.255000px;}
.yf{bottom:845.520000px;}
.yea{bottom:846.630000px;}
.yc5{bottom:848.505000px;}
.y5d{bottom:850.005000px;}
.y36{bottom:857.130000px;}
.y108{bottom:860.505000px;}
.ye{bottom:862.395000px;}
.y87{bottom:863.145000px;}
.ye9{bottom:863.880000px;}
.yc4{bottom:865.380000px;}
.y5c{bottom:867.255000px;}
.y35{bottom:874.005000px;}
.yd{bottom:875.895000px;}
.y107{bottom:877.380000px;}
.yc3{bottom:880.755000px;}
.yc{bottom:889.755000px;}
.y34{bottom:891.255000px;}
.yc2{bottom:896.130000px;}
.ye8{bottom:898.005000px;}
.y5b{bottom:901.380000px;}
.yb{bottom:905.130000px;}
.y33{bottom:908.130000px;}
.y13d{bottom:908.505000px;}
.y146{bottom:910.005000px;}
.yc1{bottom:911.505000px;}
.y86{bottom:914.130000px;}
.y5a{bottom:918.630000px;}
.ya{bottom:920.505000px;}
.y32{bottom:925.380000px;}
.ye7{bottom:932.130000px;}
.y59{bottom:934.005000px;}
.y9{bottom:935.880000px;}
.y31{bottom:942.255000px;}
.y13c{bottom:942.630000px;}
.y58{bottom:949.425000px;}
.y8{bottom:952.800000px;}
.y30{bottom:959.550000px;}
.y57{bottom:964.800000px;}
.y7{bottom:970.800000px;}
.y2f{bottom:976.800000px;}
.y56{bottom:980.175000px;}
.y85{bottom:982.800000px;}
.y6{bottom:991.425000px;}
.y2e{bottom:993.675000px;}
.y55{bottom:995.550000px;}
.y2{bottom:1060.050000px;}
.y1{bottom:1078.830000px;}
.hc{height:22.265625px;}
.h3{height:24.000000px;}
.hb{height:25.048828px;}
.ha{height:27.832031px;}
.hd{height:31.664062px;}
.h6{height:42.292969px;}
.h8{height:44.531250px;}
.h9{height:46.992188px;}
.h7{height:50.097656px;}
.h5{height:55.664062px;}
.he{height:61.230469px;}
.h1{height:65.645508px;}
.h4{height:66.796875px;}
.hf{height:67.579102px;}
.h2{height:87.445312px;}
.h0{height:1263.000000px;}
.w3{width:21.000000px;}
.w4{width:892.874973px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:212.699987px;}
.xe{left:216.449987px;}
.x1b{left:220.244987px;}
.x4{left:265.994987px;}
.x15{left:286.994973px;}
.xf{left:288.119973px;}
.x16{left:291.494987px;}
.x10{left:292.619987px;}
.xb{left:316.274973px;}
.xc{left:320.399987px;}
.x1{left:333.899987px;}
.x1c{left:352.274973px;}
.x1d{left:361.274987px;}
.x12{left:405.944973px;}
.x5{left:410.819973px;}
.x6{left:415.319987px;}
.x9{left:419.444973px;}
.xa{left:423.944987px;}
.xd{left:428.819987px;}
.x7{left:442.319973px;}
.x8{left:446.819987px;}
.x17{left:461.069973px;}
.x18{left:470.069987px;}
.x13{left:619.754973px;}
.x14{left:623.894987px;}
.x11{left:676.424973px;}
.x3{left:680.925000px;}
.x19{left:692.924973px;}
.x1a{left:701.924987px;}
@media print{
.v2{vertical-align:-60.000000pt;}
.v1{vertical-align:-54.613333pt;}
.v3{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.800000pt;}
.ls10{letter-spacing:-0.720000pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.373333pt;}
.ls1f{letter-spacing:-0.298667pt;}
.lsd{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.005333pt;}
.ls1{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.053333pt;}
.ls17{letter-spacing:0.074667pt;}
.ls1e{letter-spacing:0.096000pt;}
.ls27{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.149333pt;}
.ls28{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.362667pt;}
.lse{letter-spacing:0.373333pt;}
.ls4{letter-spacing:0.400000pt;}
.ls26{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.458667pt;}
.ls18{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls1b{letter-spacing:0.586667pt;}
.ls19{letter-spacing:0.602667pt;}
.lsf{letter-spacing:0.613333pt;}
.ls14{letter-spacing:0.618667pt;}
.ls12{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.650667pt;}
.ls29{letter-spacing:0.746667pt;}
.ls7{letter-spacing:0.906667pt;}
.ls1c{letter-spacing:0.970667pt;}
.ls25{letter-spacing:1.066667pt;}
.ls24{letter-spacing:1.866667pt;}
.ls1d{letter-spacing:3.893333pt;}
.ls22{letter-spacing:14.453333pt;}
.ls23{letter-spacing:77.120000pt;}
.lsb{letter-spacing:173.280000pt;}
.ws18{word-spacing:-53.333333pt;}
.ws5{word-spacing:-19.968000pt;}
.ws4{word-spacing:-18.666667pt;}
.ws17{word-spacing:-17.280000pt;}
.ws1{word-spacing:-17.120000pt;}
.wse{word-spacing:-16.853333pt;}
.ws15{word-spacing:-16.800000pt;}
.ws14{word-spacing:-16.693333pt;}
.ws0{word-spacing:-16.640000pt;}
.wsc{word-spacing:-16.586667pt;}
.ws19{word-spacing:-16.320000pt;}
.ws3{word-spacing:-16.213333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.946667pt;}
.wsf{word-spacing:-15.840000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.786667pt;}
.wsd{word-spacing:-15.520000pt;}
.ws12{word-spacing:-15.194667pt;}
.ws8{word-spacing:-14.741333pt;}
.ws13{word-spacing:-14.597333pt;}
.ws7{word-spacing:-14.592000pt;}
.ws11{word-spacing:-13.429333pt;}
.ws10{word-spacing:-12.970667pt;}
.ws16{word-spacing:-12.672000pt;}
.wsa{word-spacing:0.000000pt;}
._f{margin-left:-4.586667pt;}
._c{margin-left:-3.680000pt;}
._3{margin-left:-2.720000pt;}
._0{margin-left:-1.226667pt;}
._1{width:1.013333pt;}
._4{width:1.920000pt;}
._6{width:3.253333pt;}
._7{width:4.533333pt;}
._5{width:6.026667pt;}
._8{width:7.680000pt;}
._d{width:8.693333pt;}
._b{width:9.706667pt;}
._14{width:10.613333pt;}
._a{width:11.946667pt;}
._9{width:13.013333pt;}
._e{width:14.186667pt;}
._12{width:15.914667pt;}
._17{width:16.832000pt;}
._13{width:17.877333pt;}
._10{width:19.146667pt;}
._11{width:20.746667pt;}
._16{width:22.133333pt;}
._15{width:23.253333pt;}
._18{width:24.266667pt;}
._19{width:27.626667pt;}
._1a{width:29.440000pt;}
._1b{width:30.773333pt;}
._1c{width:32.106667pt;}
._25{width:33.546667pt;}
._23{width:35.200000pt;}
._24{width:36.320000pt;}
._21{width:39.786667pt;}
._1f{width:41.120000pt;}
._20{width:42.666667pt;}
._22{width:56.000000pt;}
._1d{width:69.226667pt;}
._1e{width:70.826667pt;}
._2{width:361.552000pt;}
.fsa{font-size:21.333333pt;}
.fs9{font-size:24.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y3{bottom:201.066667pt;}
.y4{bottom:211.400000pt;}
.ya6{bottom:285.760000pt;}
.y12c{bottom:286.440000pt;}
.ye6{bottom:289.440000pt;}
.ya5{bottom:289.773333pt;}
.y80{bottom:291.093333pt;}
.yfb{bottom:294.093333pt;}
.y2d{bottom:295.773333pt;}
.y54{bottom:297.093333pt;}
.ya4{bottom:298.106667pt;}
.y122{bottom:299.440000pt;}
.y7b{bottom:300.093333pt;}
.y12b{bottom:301.773333pt;}
.y106{bottom:302.106667pt;}
.yc0{bottom:303.093333pt;}
.y12d{bottom:306.093333pt;}
.y7f{bottom:306.426667pt;}
.yfa{bottom:309.093333pt;}
.ya3{bottom:310.106667pt;}
.y53{bottom:310.773333pt;}
.y2c{bottom:311.106667pt;}
.ydf{bottom:313.773333pt;}
.ya2{bottom:314.106667pt;}
.y7a{bottom:315.426667pt;}
.ye5{bottom:316.773333pt;}
.ybf{bottom:318.426667pt;}
.y7e{bottom:321.426667pt;}
.ya1{bottom:322.440000pt;}
.y13b{bottom:323.773333pt;}
.y52{bottom:324.426667pt;}
.y2b{bottom:326.440000pt;}
.yde{bottom:329.106667pt;}
.y79{bottom:330.426667pt;}
.y12a{bottom:332.106667pt;}
.ybe{bottom:333.426667pt;}
.ya0{bottom:334.440000pt;}
.y105{bottom:336.093333pt;}
.y121{bottom:336.426667pt;}
.y7d{bottom:336.760000pt;}
.y9f{bottom:338.440000pt;}
.yf9{bottom:339.426667pt;}
.y2a{bottom:341.440000pt;}
.ydd{bottom:344.106667pt;}
.y78{bottom:345.760000pt;}
.y9e{bottom:346.773333pt;}
.y129{bottom:347.106667pt;}
.ybd{bottom:348.760000pt;}
.y101{bottom:350.773333pt;}
.y51{bottom:351.760000pt;}
.yf8{bottom:354.773333pt;}
.y29{bottom:356.773333pt;}
.ye4{bottom:357.773333pt;}
.y9d{bottom:358.773333pt;}
.ydc{bottom:359.440000pt;}
.y100{bottom:360.440000pt;}
.y77{bottom:360.773333pt;}
.y128{bottom:362.440000pt;}
.y11f{bottom:362.773333pt;}
.ybc{bottom:363.773333pt;}
.y104{bottom:364.773333pt;}
.y13a{bottom:365.440000pt;}
.y120{bottom:366.773333pt;}
.y50{bottom:367.106667pt;}
.yf7{bottom:370.106667pt;}
.y9c{bottom:370.773333pt;}
.ye3{bottom:371.440000pt;}
.y28{bottom:371.773333pt;}
.y11e{bottom:372.440000pt;}
.ydb{bottom:374.440000pt;}
.y76{bottom:376.106667pt;}
.y11b{bottom:377.440000pt;}
.y127{bottom:377.773333pt;}
.ybb{bottom:379.106667pt;}
.y139{bottom:380.440000pt;}
.y4f{bottom:382.106667pt;}
.y9b{bottom:383.106667pt;}
.ye2{bottom:385.133333pt;}
.y27{bottom:387.133333pt;}
.yda{bottom:389.800000pt;}
.y75{bottom:391.133333pt;}
.y119{bottom:392.800000pt;}
.yba{bottom:394.133333pt;}
.y9a{bottom:395.133333pt;}
.y138{bottom:395.800000pt;}
.y141{bottom:397.133333pt;}
.y4e{bottom:397.466667pt;}
.y11a{bottom:398.133333pt;}
.y99{bottom:399.133333pt;}
.y26{bottom:402.133333pt;}
.y11d{bottom:402.800000pt;}
.yd9{bottom:404.800000pt;}
.y74{bottom:406.466667pt;}
.y118{bottom:407.800000pt;}
.y126{bottom:408.133333pt;}
.y98{bottom:408.800000pt;}
.yb9{bottom:409.466667pt;}
.y137{bottom:410.800000pt;}
.yff{bottom:411.800000pt;}
.y4d{bottom:412.466667pt;}
.y145{bottom:412.800000pt;}
.yf6{bottom:415.466667pt;}
.y25{bottom:417.466667pt;}
.yd8{bottom:420.133333pt;}
.y73{bottom:421.466667pt;}
.y117{bottom:423.133333pt;}
.yb8{bottom:424.800000pt;}
.y136{bottom:426.133333pt;}
.y140{bottom:427.466667pt;}
.y4c{bottom:427.800000pt;}
.yf5{bottom:430.800000pt;}
.y24{bottom:432.466667pt;}
.y97{bottom:433.800000pt;}
.yd7{bottom:435.133333pt;}
.y72{bottom:436.800000pt;}
.y116{bottom:438.466667pt;}
.yb7{bottom:439.800000pt;}
.y135{bottom:441.133333pt;}
.y4b{bottom:442.800000pt;}
.yf4{bottom:444.466667pt;}
.y23{bottom:447.800000pt;}
.y11c{bottom:448.133333pt;}
.y96{bottom:448.800000pt;}
.yd6{bottom:450.466667pt;}
.y71{bottom:452.133333pt;}
.y115{bottom:453.466667pt;}
.y134{bottom:456.466667pt;}
.y4a{bottom:458.133333pt;}
.y22{bottom:462.800000pt;}
.y95{bottom:464.133333pt;}
.yd5{bottom:465.800000pt;}
.y70{bottom:467.133333pt;}
.y114{bottom:468.800000pt;}
.yb6{bottom:470.133333pt;}
.yf3{bottom:471.800000pt;}
.ye1{bottom:473.133333pt;}
.y49{bottom:473.466667pt;}
.yfe{bottom:477.800000pt;}
.y21{bottom:478.133333pt;}
.y94{bottom:479.466667pt;}
.yd4{bottom:480.800000pt;}
.y6f{bottom:482.466667pt;}
.y113{bottom:483.800000pt;}
.y125{bottom:484.133333pt;}
.yb5{bottom:485.466667pt;}
.y133{bottom:486.800000pt;}
.y48{bottom:488.466667pt;}
.yfd{bottom:491.466667pt;}
.y93{bottom:492.800000pt;}
.y20{bottom:493.466667pt;}
.yd3{bottom:496.133333pt;}
.y6e{bottom:497.466667pt;}
.yb4{bottom:499.173333pt;}
.y132{bottom:502.173333pt;}
.ye0{bottom:503.506667pt;}
.y47{bottom:503.840000pt;}
.y92{bottom:506.506667pt;}
.y1f{bottom:508.506667pt;}
.yd2{bottom:511.173333pt;}
.y6d{bottom:512.840000pt;}
.y112{bottom:514.173333pt;}
.y131{bottom:517.173333pt;}
.y46{bottom:518.840000pt;}
.y91{bottom:520.173333pt;}
.y1e{bottom:523.840000pt;}
.yd1{bottom:526.506667pt;}
.y6c{bottom:527.840000pt;}
.y111{bottom:532.506667pt;}
.y90{bottom:533.840000pt;}
.y45{bottom:534.173333pt;}
.y1d{bottom:538.840000pt;}
.yb3{bottom:540.173333pt;}
.yd0{bottom:541.506667pt;}
.y6b{bottom:543.173333pt;}
.y8f{bottom:547.506667pt;}
.y44{bottom:549.173333pt;}
.y7c{bottom:549.506667pt;}
.yf2{bottom:553.840000pt;}
.y1c{bottom:554.173333pt;}
.yb2{bottom:555.173333pt;}
.ycf{bottom:556.840000pt;}
.y6a{bottom:558.173333pt;}
.y8e{bottom:561.173333pt;}
.y130{bottom:563.173333pt;}
.y13f{bottom:564.173333pt;}
.y43{bottom:564.506667pt;}
.yf1{bottom:567.506667pt;}
.y124{bottom:568.840000pt;}
.y1b{bottom:569.173333pt;}
.yb1{bottom:570.506667pt;}
.yce{bottom:571.840000pt;}
.y69{bottom:573.506667pt;}
.y8d{bottom:574.840000pt;}
.y12f{bottom:578.173333pt;}
.y42{bottom:579.506667pt;}
.yf0{bottom:581.173333pt;}
.y110{bottom:582.506667pt;}
.y1a{bottom:584.506667pt;}
.yfc{bottom:584.840000pt;}
.yb0{bottom:585.506667pt;}
.ycd{bottom:587.173333pt;}
.y68{bottom:588.506667pt;}
.y12e{bottom:593.506667pt;}
.y13e{bottom:594.506667pt;}
.y41{bottom:594.840000pt;}
.y123{bottom:596.173333pt;}
.y10f{bottom:597.840000pt;}
.y19{bottom:599.506667pt;}
.yaf{bottom:600.840000pt;}
.y8c{bottom:602.173333pt;}
.y67{bottom:603.840000pt;}
.yef{bottom:608.506667pt;}
.y40{bottom:609.840000pt;}
.y10e{bottom:612.866667pt;}
.y18{bottom:614.866667pt;}
.y8b{bottom:615.866667pt;}
.ycc{bottom:617.533333pt;}
.y66{bottom:619.200000pt;}
.yee{bottom:622.200000pt;}
.y3f{bottom:625.200000pt;}
.y10d{bottom:628.200000pt;}
.y8a{bottom:629.533333pt;}
.y17{bottom:629.866667pt;}
.yae{bottom:631.200000pt;}
.ycb{bottom:632.866667pt;}
.y65{bottom:634.200000pt;}
.yed{bottom:635.866667pt;}
.y3e{bottom:640.200000pt;}
.y144{bottom:640.533333pt;}
.y88{bottom:643.200000pt;}
.y103{bottom:644.866667pt;}
.y16{bottom:645.200000pt;}
.yad{bottom:646.533333pt;}
.y89{bottom:647.866667pt;}
.y64{bottom:649.533333pt;}
.y3d{bottom:655.533333pt;}
.y102{bottom:658.533333pt;}
.y15{bottom:660.533333pt;}
.yac{bottom:661.533333pt;}
.yca{bottom:663.200000pt;}
.y63{bottom:664.533333pt;}
.y3c{bottom:670.533333pt;}
.y143{bottom:670.866667pt;}
.y10c{bottom:673.866667pt;}
.y14{bottom:675.533333pt;}
.yab{bottom:676.866667pt;}
.yc9{bottom:678.200000pt;}
.y62{bottom:679.866667pt;}
.y3b{bottom:685.866667pt;}
.y10b{bottom:688.866667pt;}
.y13{bottom:690.866667pt;}
.yaa{bottom:691.866667pt;}
.y84{bottom:693.533333pt;}
.y61{bottom:694.866667pt;}
.y3a{bottom:700.866667pt;}
.y142{bottom:701.200000pt;}
.y10a{bottom:704.200000pt;}
.ya9{bottom:705.533333pt;}
.y12{bottom:705.866667pt;}
.y83{bottom:707.200000pt;}
.yc8{bottom:708.533333pt;}
.y60{bottom:710.200000pt;}
.y39{bottom:716.200000pt;}
.ya8{bottom:719.200000pt;}
.y82{bottom:720.866667pt;}
.y11{bottom:721.200000pt;}
.yec{bottom:722.200000pt;}
.yc7{bottom:723.866667pt;}
.y5f{bottom:725.200000pt;}
.y38{bottom:731.560000pt;}
.ya7{bottom:732.893333pt;}
.y81{bottom:734.560000pt;}
.y10{bottom:736.226667pt;}
.yeb{bottom:737.560000pt;}
.yc6{bottom:738.893333pt;}
.y5e{bottom:740.560000pt;}
.y37{bottom:746.560000pt;}
.y109{bottom:749.560000pt;}
.yf{bottom:751.573333pt;}
.yea{bottom:752.560000pt;}
.yc5{bottom:754.226667pt;}
.y5d{bottom:755.560000pt;}
.y36{bottom:761.893333pt;}
.y108{bottom:764.893333pt;}
.ye{bottom:766.573333pt;}
.y87{bottom:767.240000pt;}
.ye9{bottom:767.893333pt;}
.yc4{bottom:769.226667pt;}
.y5c{bottom:770.893333pt;}
.y35{bottom:776.893333pt;}
.yd{bottom:778.573333pt;}
.y107{bottom:779.893333pt;}
.yc3{bottom:782.893333pt;}
.yc{bottom:790.893333pt;}
.y34{bottom:792.226667pt;}
.yc2{bottom:796.560000pt;}
.ye8{bottom:798.226667pt;}
.y5b{bottom:801.226667pt;}
.yb{bottom:804.560000pt;}
.y33{bottom:807.226667pt;}
.y13d{bottom:807.560000pt;}
.y146{bottom:808.893333pt;}
.yc1{bottom:810.226667pt;}
.y86{bottom:812.560000pt;}
.y5a{bottom:816.560000pt;}
.ya{bottom:818.226667pt;}
.y32{bottom:822.560000pt;}
.ye7{bottom:828.560000pt;}
.y59{bottom:830.226667pt;}
.y9{bottom:831.893333pt;}
.y31{bottom:837.560000pt;}
.y13c{bottom:837.893333pt;}
.y58{bottom:843.933333pt;}
.y8{bottom:846.933333pt;}
.y30{bottom:852.933333pt;}
.y57{bottom:857.600000pt;}
.y7{bottom:862.933333pt;}
.y2f{bottom:868.266667pt;}
.y56{bottom:871.266667pt;}
.y85{bottom:873.600000pt;}
.y6{bottom:881.266667pt;}
.y2e{bottom:883.266667pt;}
.y55{bottom:884.933333pt;}
.y2{bottom:942.266667pt;}
.y1{bottom:958.960000pt;}
.hc{height:19.791667pt;}
.h3{height:21.333333pt;}
.hb{height:22.265625pt;}
.ha{height:24.739583pt;}
.hd{height:28.145833pt;}
.h6{height:37.593750pt;}
.h8{height:39.583333pt;}
.h9{height:41.770833pt;}
.h7{height:44.531250pt;}
.h5{height:49.479167pt;}
.he{height:54.427083pt;}
.h1{height:58.351562pt;}
.h4{height:59.375000pt;}
.hf{height:60.070312pt;}
.h2{height:77.729167pt;}
.h0{height:1122.666667pt;}
.w3{width:18.666667pt;}
.w4{width:793.666643pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:189.066655pt;}
.xe{left:192.399988pt;}
.x1b{left:195.773322pt;}
.x4{left:236.439988pt;}
.x15{left:255.106643pt;}
.xf{left:256.106643pt;}
.x16{left:259.106655pt;}
.x10{left:260.106655pt;}
.xb{left:281.133310pt;}
.xc{left:284.799988pt;}
.x1{left:296.799988pt;}
.x1c{left:313.133310pt;}
.x1d{left:321.133322pt;}
.x12{left:360.839976pt;}
.x5{left:365.173310pt;}
.x6{left:369.173322pt;}
.x9{left:372.839976pt;}
.xa{left:376.839988pt;}
.xd{left:381.173322pt;}
.x7{left:393.173310pt;}
.x8{left:397.173322pt;}
.x17{left:409.839976pt;}
.x18{left:417.839988pt;}
.x13{left:550.893310pt;}
.x14{left:554.573322pt;}
.x11{left:601.266643pt;}
.x3{left:605.266667pt;}
.x19{left:615.933310pt;}
.x1a{left:623.933322pt;}
}




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