
    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_d80fb1e5730694e7af91ea91.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2f63a963fa405e0a8a0ba8f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_93ae8ee8c5cd68df7ef30ac5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936035;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_67bf88001e7d84dd212cd12b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_e70de8f07d5ab449a6fcb8db.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_179a0cf333b392679780240e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_50f95b1850123d348fb73b08.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8203def3bd772283918cfe88.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2623ea9b85b331a8df6816b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936035;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_069e5b3effbc2c11729a0cf5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936035;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_67bf88001e7d84dd212cd12b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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_e70de8f07d5ab449a6fcb8db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.774902;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_179a0cf333b392679780240e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.774902;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_50f95b1850123d348fb73b08.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_8203def3bd772283918cfe88.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a226dab9c5df2bd2ff5e1e8b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.936035;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_39b8378465ef48c2cc7260e8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936035;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_67bf88001e7d84dd212cd12b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.758789;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_ddb8748c00d4a0e58d0cec0f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.774902;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:ff14;src:url('chunks/assets/font_40891af29dbbb58949324c77.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.774902;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:ff15;src:url('chunks/assets/font_50f95b1850123d348fb73b08.woff2')format("woff");}.ff15{font-family:ff15;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.202200px;}
.lsf{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.265680px;}
.ls3{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.315600px;}
.ls8{letter-spacing:0.360000px;}
.ls9{letter-spacing:6.048000px;}
.ls1{letter-spacing:6.264000px;}
.ls0{letter-spacing:6.840000px;}
.lse{letter-spacing:14.021280px;}
.ls2{letter-spacing:27.504000px;}
.lsb{letter-spacing:47.808000px;}
.lsc{letter-spacing:90.288000px;}
.sc_{text-shadow:none;}
.sc3{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);}
.sc2{text-shadow:-0.015em 0 rgb(112,48,160),0 0.015em rgb(112,48,160),0.015em 0 rgb(112,48,160),0 -0.015em  rgb(112,48,160);}
.sc1{text-shadow:-0.015em 0 rgb(58,4,139),0 0.015em rgb(58,4,139),0.015em 0 rgb(58,4,139),0 -0.015em  rgb(58,4,139);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(112,48,160);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(58,4,139);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-84.240000px;}
.ws1{word-spacing:-72.000000px;}
.wsd{word-spacing:-21.375600px;}
.ws4{word-spacing:-21.060000px;}
.wsc{word-spacing:-20.857800px;}
.ws8{word-spacing:-18.360000px;}
.ws5{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.072000px;}
.wsb{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws0{word-spacing:-15.264000px;}
.ws9{word-spacing:0.000000px;}
._c{margin-left:-14.253120px;}
._7{margin-left:-1.010880px;}
._6{width:1.152000px;}
._9{width:2.160000px;}
._8{width:4.008000px;}
._4{width:5.292000px;}
._3{width:6.672000px;}
._5{width:7.788000px;}
._a{width:9.192000px;}
._b{width:10.560000px;}
._e{width:12.360000px;}
._12{width:13.368000px;}
._11{width:14.594880px;}
._10{width:15.624000px;}
._f{width:16.776000px;}
._d{width:19.721760px;}
._13{width:23.839920px;}
._14{width:24.902400px;}
._1{width:481.320000px;}
._2{width:621.660000px;}
._0{width:764.940000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(51,51,153);}
.fc1{color:rgb(58,4,139);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.180000px;}
.y97{bottom:4.500000px;}
.y1a{bottom:4.680000px;}
.y93{bottom:5.565000px;}
.y28{bottom:5.580000px;}
.y35{bottom:5.745000px;}
.y3d{bottom:5.760000px;}
.y100{bottom:6.472500px;}
.y81{bottom:6.480000px;}
.y1e{bottom:6.660000px;}
.y1b{bottom:6.840000px;}
.yf9{bottom:8.625000px;}
.y21{bottom:9.000000px;}
.y1d{bottom:9.180000px;}
.yfd{bottom:9.885000px;}
.yf5{bottom:9.900000px;}
.y8d{bottom:11.145000px;}
.y90{bottom:12.225000px;}
.y30{bottom:12.405000px;}
.y2c{bottom:12.420000px;}
.yf2{bottom:15.120000px;}
.yef{bottom:15.840000px;}
.y24{bottom:16.560000px;}
.y38{bottom:23.565000px;}
.y29{bottom:23.580000px;}
.y3e{bottom:23.610000px;}
.y87{bottom:23.760000px;}
.y7{bottom:23.940000px;}
.y25{bottom:25.020000px;}
.yf0{bottom:25.200000px;}
.y3{bottom:25.740000px;}
.yd7{bottom:25.776000px;}
.y34{bottom:26.085000px;}
.y27{bottom:26.100000px;}
.y3c{bottom:26.130000px;}
.y20{bottom:29.340000px;}
.y83{bottom:29.520000px;}
.yff{bottom:30.226500px;}
.y22{bottom:30.240000px;}
.y84{bottom:30.420000px;}
.y8c{bottom:31.485000px;}
.yf8{bottom:32.565000px;}
.y2f{bottom:32.745000px;}
.y89{bottom:32.925000px;}
.y2b{bottom:32.940000px;}
.yfc{bottom:33.645000px;}
.yf4{bottom:33.660000px;}
.y8e{bottom:34.545000px;}
.yfa{bottom:34.725000px;}
.y91{bottom:36.885000px;}
.y31{bottom:36.930000px;}
.y8a{bottom:37.065000px;}
.yf6{bottom:37.080000px;}
.y2d{bottom:37.260000px;}
.y2{bottom:42.120000px;}
.yd6{bottom:42.156000px;}
.y36{bottom:43.905000px;}
.y33{bottom:46.425000px;}
.y6{bottom:59.760000px;}
.y5{bottom:95.400000px;}
.yfe{bottom:127.843500px;}
.y95{bottom:130.860000px;}
.y126{bottom:141.516000px;}
.y3b{bottom:143.280000px;}
.y6d{bottom:144.360000px;}
.yc1{bottom:144.900000px;}
.y6c{bottom:164.730000px;}
.yc0{bottom:165.270000px;}
.y94{bottom:172.485000px;}
.yfb{bottom:176.085000px;}
.y3a{bottom:184.905000px;}
.y6b{bottom:185.250000px;}
.ybf{bottom:185.790000px;}
.y125{bottom:189.030000px;}
.ybe{bottom:206.130000px;}
.y6a{bottom:206.490000px;}
.y124{bottom:212.970000px;}
.y92{bottom:214.065000px;}
.y39{bottom:226.485000px;}
.ybd{bottom:226.650000px;}
.y69{bottom:230.250000px;}
.yf7{bottom:230.985000px;}
.y123{bottom:236.730000px;}
.ybc{bottom:246.990000px;}
.y68{bottom:254.010000px;}
.y8f{bottom:255.645000px;}
.y122{bottom:260.490000px;}
.ybb{bottom:267.330000px;}
.y37{bottom:268.065000px;}
.y67{bottom:277.050000px;}
.yf3{bottom:283.755000px;}
.y121{bottom:284.475000px;}
.yba{bottom:287.850000px;}
.y66{bottom:297.390000px;}
.yb9{bottom:308.190000px;}
.y120{bottom:308.235000px;}
.y32{bottom:309.645000px;}
.y8b{bottom:310.545000px;}
.y65{bottom:317.730000px;}
.yb8{bottom:328.530000px;}
.y11f{bottom:331.995000px;}
.y64{bottom:338.250000px;}
.yf1{bottom:338.835000px;}
.yb7{bottom:349.050000px;}
.y11e{bottom:355.755000px;}
.y63{bottom:358.590000px;}
.y88{bottom:363.105000px;}
.yb6{bottom:369.390000px;}
.y2e{bottom:371.565000px;}
.y62{bottom:379.110000px;}
.y11d{bottom:379.695000px;}
.yee{bottom:380.415000px;}
.yb5{bottom:389.910000px;}
.y61{bottom:399.450000px;}
.y11c{bottom:403.455000px;}
.yb4{bottom:410.295000px;}
.y86{bottom:418.215000px;}
.y60{bottom:419.835000px;}
.yed{bottom:423.615000px;}
.y2a{bottom:426.495000px;}
.y11b{bottom:427.215000px;}
.yb3{bottom:430.635000px;}
.y5f{bottom:440.355000px;}
.y11a{bottom:450.975000px;}
.yb2{bottom:451.155000px;}
.y85{bottom:459.975000px;}
.y5e{bottom:460.695000px;}
.yb1{bottom:471.495000px;}
.yec{bottom:472.035000px;}
.y119{bottom:474.915000px;}
.y5d{bottom:481.215000px;}
.y26{bottom:481.755000px;}
.yb0{bottom:491.835000px;}
.yeb{bottom:496.515000px;}
.y118{bottom:498.675000px;}
.y5c{bottom:501.555000px;}
.y82{bottom:502.995000px;}
.yaf{bottom:512.355000px;}
.y5b{bottom:521.895000px;}
.y117{bottom:522.435000px;}
.y23{bottom:523.335000px;}
.yea{bottom:525.855000px;}
.yae{bottom:532.695000px;}
.y5a{bottom:542.415000px;}
.y116{bottom:546.375000px;}
.ye9{bottom:547.635000px;}
.y80{bottom:551.415000px;}
.yad{bottom:553.215000px;}
.y59{bottom:562.755000px;}
.y1f{bottom:566.535000px;}
.y115{bottom:570.165000px;}
.ye8{bottom:571.425000px;}
.yac{bottom:573.555000px;}
.y7f{bottom:575.895000px;}
.y58{bottom:583.095000px;}
.yab{bottom:593.895000px;}
.y114{bottom:593.925000px;}
.ye7{bottom:595.185000px;}
.yd5{bottom:597.135000px;}
.y57{bottom:603.615000px;}
.y7e{bottom:607.935000px;}
.yaa{bottom:614.415000px;}
.y1c{bottom:614.775000px;}
.yd4{bottom:617.475000px;}
.y113{bottom:617.685000px;}
.ye6{bottom:618.945000px;}
.y56{bottom:623.955000px;}
.y7d{bottom:628.275000px;}
.ya9{bottom:634.755000px;}
.yd3{bottom:637.995000px;}
.y19{bottom:639.435000px;}
.y112{bottom:641.625000px;}
.ye5{bottom:642.885000px;}
.y55{bottom:644.475000px;}
.y7c{bottom:648.795000px;}
.ya8{bottom:655.305000px;}
.yd2{bottom:658.365000px;}
.y54{bottom:664.845000px;}
.y111{bottom:665.385000px;}
.ye4{bottom:666.645000px;}
.y18{bottom:668.805000px;}
.y7b{bottom:669.165000px;}
.ya7{bottom:675.645000px;}
.yd1{bottom:678.705000px;}
.y53{bottom:685.185000px;}
.y110{bottom:689.145000px;}
.y17{bottom:689.505000px;}
.ye3{bottom:690.405000px;}
.ya6{bottom:695.985000px;}
.yd0{bottom:699.225000px;}
.y52{bottom:705.705000px;}
.y16{bottom:710.025000px;}
.y10f{bottom:712.905000px;}
.ye2{bottom:714.345000px;}
.ya5{bottom:716.505000px;}
.ycf{bottom:719.565000px;}
.y51{bottom:726.045000px;}
.y15{bottom:730.365000px;}
.ya4{bottom:736.845000px;}
.ye1{bottom:738.105000px;}
.yce{bottom:740.085000px;}
.y50{bottom:746.385000px;}
.y14{bottom:750.705000px;}
.ya3{bottom:757.185000px;}
.ycd{bottom:760.425000px;}
.y10e{bottom:760.605000px;}
.ye0{bottom:761.865000px;}
.y4f{bottom:766.905000px;}
.y13{bottom:771.225000px;}
.ya2{bottom:777.705000px;}
.ycc{bottom:780.765000px;}
.y10d{bottom:784.365000px;}
.ydf{bottom:785.625000px;}
.y4e{bottom:787.245000px;}
.y12{bottom:791.565000px;}
.ya1{bottom:798.045000px;}
.ycb{bottom:801.285000px;}
.y4d{bottom:807.765000px;}
.y10c{bottom:808.305000px;}
.yde{bottom:809.565000px;}
.y11{bottom:812.085000px;}
.ya0{bottom:818.565000px;}
.yca{bottom:821.625000px;}
.y4c{bottom:828.105000px;}
.y7a{bottom:831.885000px;}
.y10b{bottom:832.065000px;}
.y10{bottom:832.425000px;}
.ydd{bottom:833.325000px;}
.y9f{bottom:838.905000px;}
.yc9{bottom:841.965000px;}
.y4b{bottom:848.445000px;}
.y79{bottom:852.225000px;}
.yf{bottom:852.765000px;}
.y10a{bottom:855.870000px;}
.ydc{bottom:857.130000px;}
.y9e{bottom:859.245000px;}
.yc8{bottom:862.485000px;}
.y4a{bottom:868.965000px;}
.y78{bottom:872.565000px;}
.ye{bottom:873.285000px;}
.y109{bottom:879.630000px;}
.y9d{bottom:879.765000px;}
.ydb{bottom:880.890000px;}
.yc7{bottom:882.825000px;}
.y49{bottom:889.305000px;}
.y77{bottom:893.085000px;}
.yd{bottom:893.625000px;}
.y9c{bottom:899.610000px;}
.yc6{bottom:903.390000px;}
.y108{bottom:903.570000px;}
.yda{bottom:904.830000px;}
.y48{bottom:909.690000px;}
.y76{bottom:913.470000px;}
.yc{bottom:914.190000px;}
.y9b{bottom:919.410000px;}
.yc5{bottom:923.730000px;}
.y107{bottom:927.330000px;}
.yd9{bottom:928.590000px;}
.y47{bottom:930.210000px;}
.y75{bottom:933.990000px;}
.yb{bottom:934.530000px;}
.yc4{bottom:944.970000px;}
.y46{bottom:950.550000px;}
.y106{bottom:951.090000px;}
.yd8{bottom:952.350000px;}
.y74{bottom:954.330000px;}
.ya{bottom:954.870000px;}
.y9a{bottom:960.990000px;}
.yc3{bottom:968.730000px;}
.y45{bottom:971.070000px;}
.y9{bottom:974.670000px;}
.y105{bottom:975.030000px;}
.y44{bottom:991.410000px;}
.yc2{bottom:992.670000px;}
.y4{bottom:993.750000px;}
.y73{bottom:995.190000px;}
.y104{bottom:998.790000px;}
.y99{bottom:1002.570000px;}
.y43{bottom:1011.750000px;}
.y72{bottom:1015.530000px;}
.y103{bottom:1022.550000px;}
.y42{bottom:1032.270000px;}
.y71{bottom:1036.050000px;}
.y98{bottom:1044.150000px;}
.y102{bottom:1046.310000px;}
.y41{bottom:1052.610000px;}
.y70{bottom:1056.390000px;}
.y101{bottom:1068.810000px;}
.y40{bottom:1073.130000px;}
.y6f{bottom:1076.730000px;}
.y96{bottom:1085.730000px;}
.y3f{bottom:1092.930000px;}
.y6e{bottom:1097.250000px;}
.y1{bottom:1112.010000px;}
.h15{height:23.745000px;}
.hb{height:23.925000px;}
.h1b{height:25.365000px;}
.h14{height:25.545000px;}
.h9{height:25.590000px;}
.h3{height:27.000000px;}
.hf{height:40.845000px;}
.h13{height:40.896000px;}
.h17{height:41.025000px;}
.he{height:42.285000px;}
.h1c{height:42.465000px;}
.h8{height:45.403594px;}
.hc{height:47.505000px;}
.h1f{height:47.512500px;}
.h16{height:47.685000px;}
.h19{height:51.825000px;}
.h1e{height:52.041000px;}
.h7{height:54.000000px;}
.h1a{height:54.165000px;}
.h11{height:54.201000px;}
.h1d{height:54.345000px;}
.h18{height:54.381000px;}
.h10{height:54.525000px;}
.h12{height:61.185000px;}
.h2{height:61.423863px;}
.h5{height:63.180000px;}
.ha{height:64.002656px;}
.hd{height:74.004654px;}
.h6{height:86.585445px;}
.h4{height:118.245000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:53.265000px;}
.w6{width:53.301000px;}
.w9{width:53.310000px;}
.w3{width:269.295000px;}
.w8{width:269.340000px;}
.w7{width:472.024500px;}
.w4{width:472.384500px;}
.w2{width:497.263500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.089500px;}
.xc{left:17.985000px;}
.x11{left:20.685000px;}
.xe{left:26.805000px;}
.x12{left:34.729500px;}
.x4{left:39.778500px;}
.x17{left:54.934500px;}
.x15{left:56.374500px;}
.x3{left:59.581500px;}
.x1{left:67.680000px;}
.x5{left:89.854500px;}
.x14{left:94.680000px;}
.x13{left:99.756000px;}
.x9{left:101.386500px;}
.x8{left:108.216000px;}
.x16{left:121.716000px;}
.x2{left:141.696000px;}
.x7{left:220.170000px;}
.x6{left:556.860000px;}
.xb{left:574.500000px;}
.xd{left:628.500000px;}
.xf{left:682.500000px;}
.x10{left:736.530000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.179733pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.236160pt;}
.ls3{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.280533pt;}
.ls8{letter-spacing:0.320000pt;}
.ls9{letter-spacing:5.376000pt;}
.ls1{letter-spacing:5.568000pt;}
.ls0{letter-spacing:6.080000pt;}
.lse{letter-spacing:12.463360pt;}
.ls2{letter-spacing:24.448000pt;}
.lsb{letter-spacing:42.496000pt;}
.lsc{letter-spacing:80.256000pt;}
.ws3{word-spacing:-74.880000pt;}
.ws1{word-spacing:-64.000000pt;}
.wsd{word-spacing:-19.000533pt;}
.ws4{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.540267pt;}
.ws8{word-spacing:-16.320000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.064000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws0{word-spacing:-13.568000pt;}
.ws9{word-spacing:0.000000pt;}
._c{margin-left:-12.669440pt;}
._7{margin-left:-0.898560pt;}
._6{width:1.024000pt;}
._9{width:1.920000pt;}
._8{width:3.562667pt;}
._4{width:4.704000pt;}
._3{width:5.930667pt;}
._5{width:6.922667pt;}
._a{width:8.170667pt;}
._b{width:9.386667pt;}
._e{width:10.986667pt;}
._12{width:11.882667pt;}
._11{width:12.973227pt;}
._10{width:13.888000pt;}
._f{width:14.912000pt;}
._d{width:17.530453pt;}
._13{width:21.191040pt;}
._14{width:22.135467pt;}
._1{width:427.840000pt;}
._2{width:552.586667pt;}
._0{width:679.946667pt;}
.fs1{font-size:32.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.160000pt;}
.y97{bottom:4.000000pt;}
.y1a{bottom:4.160000pt;}
.y93{bottom:4.946667pt;}
.y28{bottom:4.960000pt;}
.y35{bottom:5.106667pt;}
.y3d{bottom:5.120000pt;}
.y100{bottom:5.753333pt;}
.y81{bottom:5.760000pt;}
.y1e{bottom:5.920000pt;}
.y1b{bottom:6.080000pt;}
.yf9{bottom:7.666667pt;}
.y21{bottom:8.000000pt;}
.y1d{bottom:8.160000pt;}
.yfd{bottom:8.786667pt;}
.yf5{bottom:8.800000pt;}
.y8d{bottom:9.906667pt;}
.y90{bottom:10.866667pt;}
.y30{bottom:11.026667pt;}
.y2c{bottom:11.040000pt;}
.yf2{bottom:13.440000pt;}
.yef{bottom:14.080000pt;}
.y24{bottom:14.720000pt;}
.y38{bottom:20.946667pt;}
.y29{bottom:20.960000pt;}
.y3e{bottom:20.986667pt;}
.y87{bottom:21.120000pt;}
.y7{bottom:21.280000pt;}
.y25{bottom:22.240000pt;}
.yf0{bottom:22.400000pt;}
.y3{bottom:22.880000pt;}
.yd7{bottom:22.912000pt;}
.y34{bottom:23.186667pt;}
.y27{bottom:23.200000pt;}
.y3c{bottom:23.226667pt;}
.y20{bottom:26.080000pt;}
.y83{bottom:26.240000pt;}
.yff{bottom:26.868000pt;}
.y22{bottom:26.880000pt;}
.y84{bottom:27.040000pt;}
.y8c{bottom:27.986667pt;}
.yf8{bottom:28.946667pt;}
.y2f{bottom:29.106667pt;}
.y89{bottom:29.266667pt;}
.y2b{bottom:29.280000pt;}
.yfc{bottom:29.906667pt;}
.yf4{bottom:29.920000pt;}
.y8e{bottom:30.706667pt;}
.yfa{bottom:30.866667pt;}
.y91{bottom:32.786667pt;}
.y31{bottom:32.826667pt;}
.y8a{bottom:32.946667pt;}
.yf6{bottom:32.960000pt;}
.y2d{bottom:33.120000pt;}
.y2{bottom:37.440000pt;}
.yd6{bottom:37.472000pt;}
.y36{bottom:39.026667pt;}
.y33{bottom:41.266667pt;}
.y6{bottom:53.120000pt;}
.y5{bottom:84.800000pt;}
.yfe{bottom:113.638667pt;}
.y95{bottom:116.320000pt;}
.y126{bottom:125.792000pt;}
.y3b{bottom:127.360000pt;}
.y6d{bottom:128.320000pt;}
.yc1{bottom:128.800000pt;}
.y6c{bottom:146.426667pt;}
.yc0{bottom:146.906667pt;}
.y94{bottom:153.320000pt;}
.yfb{bottom:156.520000pt;}
.y3a{bottom:164.360000pt;}
.y6b{bottom:164.666667pt;}
.ybf{bottom:165.146667pt;}
.y125{bottom:168.026667pt;}
.ybe{bottom:183.226667pt;}
.y6a{bottom:183.546667pt;}
.y124{bottom:189.306667pt;}
.y92{bottom:190.280000pt;}
.y39{bottom:201.320000pt;}
.ybd{bottom:201.466667pt;}
.y69{bottom:204.666667pt;}
.yf7{bottom:205.320000pt;}
.y123{bottom:210.426667pt;}
.ybc{bottom:219.546667pt;}
.y68{bottom:225.786667pt;}
.y8f{bottom:227.240000pt;}
.y122{bottom:231.546667pt;}
.ybb{bottom:237.626667pt;}
.y37{bottom:238.280000pt;}
.y67{bottom:246.266667pt;}
.yf3{bottom:252.226667pt;}
.y121{bottom:252.866667pt;}
.yba{bottom:255.866667pt;}
.y66{bottom:264.346667pt;}
.yb9{bottom:273.946667pt;}
.y120{bottom:273.986667pt;}
.y32{bottom:275.240000pt;}
.y8b{bottom:276.040000pt;}
.y65{bottom:282.426667pt;}
.yb8{bottom:292.026667pt;}
.y11f{bottom:295.106667pt;}
.y64{bottom:300.666667pt;}
.yf1{bottom:301.186667pt;}
.yb7{bottom:310.266667pt;}
.y11e{bottom:316.226667pt;}
.y63{bottom:318.746667pt;}
.y88{bottom:322.760000pt;}
.yb6{bottom:328.346667pt;}
.y2e{bottom:330.280000pt;}
.y62{bottom:336.986667pt;}
.y11d{bottom:337.506667pt;}
.yee{bottom:338.146667pt;}
.yb5{bottom:346.586667pt;}
.y61{bottom:355.066667pt;}
.y11c{bottom:358.626667pt;}
.yb4{bottom:364.706667pt;}
.y86{bottom:371.746667pt;}
.y60{bottom:373.186667pt;}
.yed{bottom:376.546667pt;}
.y2a{bottom:379.106667pt;}
.y11b{bottom:379.746667pt;}
.yb3{bottom:382.786667pt;}
.y5f{bottom:391.426667pt;}
.y11a{bottom:400.866667pt;}
.yb2{bottom:401.026667pt;}
.y85{bottom:408.866667pt;}
.y5e{bottom:409.506667pt;}
.yb1{bottom:419.106667pt;}
.yec{bottom:419.586667pt;}
.y119{bottom:422.146667pt;}
.y5d{bottom:427.746667pt;}
.y26{bottom:428.226667pt;}
.yb0{bottom:437.186667pt;}
.yeb{bottom:441.346667pt;}
.y118{bottom:443.266667pt;}
.y5c{bottom:445.826667pt;}
.y82{bottom:447.106667pt;}
.yaf{bottom:455.426667pt;}
.y5b{bottom:463.906667pt;}
.y117{bottom:464.386667pt;}
.y23{bottom:465.186667pt;}
.yea{bottom:467.426667pt;}
.yae{bottom:473.506667pt;}
.y5a{bottom:482.146667pt;}
.y116{bottom:485.666667pt;}
.ye9{bottom:486.786667pt;}
.y80{bottom:490.146667pt;}
.yad{bottom:491.746667pt;}
.y59{bottom:500.226667pt;}
.y1f{bottom:503.586667pt;}
.y115{bottom:506.813333pt;}
.ye8{bottom:507.933333pt;}
.yac{bottom:509.826667pt;}
.y7f{bottom:511.906667pt;}
.y58{bottom:518.306667pt;}
.yab{bottom:527.906667pt;}
.y114{bottom:527.933333pt;}
.ye7{bottom:529.053333pt;}
.yd5{bottom:530.786667pt;}
.y57{bottom:536.546667pt;}
.y7e{bottom:540.386667pt;}
.yaa{bottom:546.146667pt;}
.y1c{bottom:546.466667pt;}
.yd4{bottom:548.866667pt;}
.y113{bottom:549.053333pt;}
.ye6{bottom:550.173333pt;}
.y56{bottom:554.626667pt;}
.y7d{bottom:558.466667pt;}
.ya9{bottom:564.226667pt;}
.yd3{bottom:567.106667pt;}
.y19{bottom:568.386667pt;}
.y112{bottom:570.333333pt;}
.ye5{bottom:571.453333pt;}
.y55{bottom:572.866667pt;}
.y7c{bottom:576.706667pt;}
.ya8{bottom:582.493333pt;}
.yd2{bottom:585.213333pt;}
.y54{bottom:590.973333pt;}
.y111{bottom:591.453333pt;}
.ye4{bottom:592.573333pt;}
.y18{bottom:594.493333pt;}
.y7b{bottom:594.813333pt;}
.ya7{bottom:600.573333pt;}
.yd1{bottom:603.293333pt;}
.y53{bottom:609.053333pt;}
.y110{bottom:612.573333pt;}
.y17{bottom:612.893333pt;}
.ye3{bottom:613.693333pt;}
.ya6{bottom:618.653333pt;}
.yd0{bottom:621.533333pt;}
.y52{bottom:627.293333pt;}
.y16{bottom:631.133333pt;}
.y10f{bottom:633.693333pt;}
.ye2{bottom:634.973333pt;}
.ya5{bottom:636.893333pt;}
.ycf{bottom:639.613333pt;}
.y51{bottom:645.373333pt;}
.y15{bottom:649.213333pt;}
.ya4{bottom:654.973333pt;}
.ye1{bottom:656.093333pt;}
.yce{bottom:657.853333pt;}
.y50{bottom:663.453333pt;}
.y14{bottom:667.293333pt;}
.ya3{bottom:673.053333pt;}
.ycd{bottom:675.933333pt;}
.y10e{bottom:676.093333pt;}
.ye0{bottom:677.213333pt;}
.y4f{bottom:681.693333pt;}
.y13{bottom:685.533333pt;}
.ya2{bottom:691.293333pt;}
.ycc{bottom:694.013333pt;}
.y10d{bottom:697.213333pt;}
.ydf{bottom:698.333333pt;}
.y4e{bottom:699.773333pt;}
.y12{bottom:703.613333pt;}
.ya1{bottom:709.373333pt;}
.ycb{bottom:712.253333pt;}
.y4d{bottom:718.013333pt;}
.y10c{bottom:718.493333pt;}
.yde{bottom:719.613333pt;}
.y11{bottom:721.853333pt;}
.ya0{bottom:727.613333pt;}
.yca{bottom:730.333333pt;}
.y4c{bottom:736.093333pt;}
.y7a{bottom:739.453333pt;}
.y10b{bottom:739.613333pt;}
.y10{bottom:739.933333pt;}
.ydd{bottom:740.733333pt;}
.y9f{bottom:745.693333pt;}
.yc9{bottom:748.413333pt;}
.y4b{bottom:754.173333pt;}
.y79{bottom:757.533333pt;}
.yf{bottom:758.013333pt;}
.y10a{bottom:760.773333pt;}
.ydc{bottom:761.893333pt;}
.y9e{bottom:763.773333pt;}
.yc8{bottom:766.653333pt;}
.y4a{bottom:772.413333pt;}
.y78{bottom:775.613333pt;}
.ye{bottom:776.253333pt;}
.y109{bottom:781.893333pt;}
.y9d{bottom:782.013333pt;}
.ydb{bottom:783.013333pt;}
.yc7{bottom:784.733333pt;}
.y49{bottom:790.493333pt;}
.y77{bottom:793.853333pt;}
.yd{bottom:794.333333pt;}
.y9c{bottom:799.653333pt;}
.yc6{bottom:803.013333pt;}
.y108{bottom:803.173333pt;}
.yda{bottom:804.293333pt;}
.y48{bottom:808.613333pt;}
.y76{bottom:811.973333pt;}
.yc{bottom:812.613333pt;}
.y9b{bottom:817.253333pt;}
.yc5{bottom:821.093333pt;}
.y107{bottom:824.293333pt;}
.yd9{bottom:825.413333pt;}
.y47{bottom:826.853333pt;}
.y75{bottom:830.213333pt;}
.yb{bottom:830.693333pt;}
.yc4{bottom:839.973333pt;}
.y46{bottom:844.933333pt;}
.y106{bottom:845.413333pt;}
.yd8{bottom:846.533333pt;}
.y74{bottom:848.293333pt;}
.ya{bottom:848.773333pt;}
.y9a{bottom:854.213333pt;}
.yc3{bottom:861.093333pt;}
.y45{bottom:863.173333pt;}
.y9{bottom:866.373333pt;}
.y105{bottom:866.693333pt;}
.y44{bottom:881.253333pt;}
.yc2{bottom:882.373333pt;}
.y4{bottom:883.333333pt;}
.y73{bottom:884.613333pt;}
.y104{bottom:887.813333pt;}
.y99{bottom:891.173333pt;}
.y43{bottom:899.333333pt;}
.y72{bottom:902.693333pt;}
.y103{bottom:908.933333pt;}
.y42{bottom:917.573333pt;}
.y71{bottom:920.933333pt;}
.y98{bottom:928.133333pt;}
.y102{bottom:930.053333pt;}
.y41{bottom:935.653333pt;}
.y70{bottom:939.013333pt;}
.y101{bottom:950.053333pt;}
.y40{bottom:953.893333pt;}
.y6f{bottom:957.093333pt;}
.y96{bottom:965.093333pt;}
.y3f{bottom:971.493333pt;}
.y6e{bottom:975.333333pt;}
.y1{bottom:988.453333pt;}
.h15{height:21.106667pt;}
.hb{height:21.266667pt;}
.h1b{height:22.546667pt;}
.h14{height:22.706667pt;}
.h9{height:22.746667pt;}
.h3{height:24.000000pt;}
.hf{height:36.306667pt;}
.h13{height:36.352000pt;}
.h17{height:36.466667pt;}
.he{height:37.586667pt;}
.h1c{height:37.746667pt;}
.h8{height:40.358750pt;}
.hc{height:42.226667pt;}
.h1f{height:42.233333pt;}
.h16{height:42.386667pt;}
.h19{height:46.066667pt;}
.h1e{height:46.258667pt;}
.h7{height:48.000000pt;}
.h1a{height:48.146667pt;}
.h11{height:48.178667pt;}
.h1d{height:48.306667pt;}
.h18{height:48.338667pt;}
.h10{height:48.466667pt;}
.h12{height:54.386667pt;}
.h2{height:54.598989pt;}
.h5{height:56.160000pt;}
.ha{height:56.891250pt;}
.hd{height:65.781915pt;}
.h6{height:76.964840pt;}
.h4{height:105.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:47.346667pt;}
.w6{width:47.378667pt;}
.w9{width:47.386667pt;}
.w3{width:239.373333pt;}
.w8{width:239.413333pt;}
.w7{width:419.577333pt;}
.w4{width:419.897333pt;}
.w2{width:442.012000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.190667pt;}
.xc{left:15.986667pt;}
.x11{left:18.386667pt;}
.xe{left:23.826667pt;}
.x12{left:30.870667pt;}
.x4{left:35.358667pt;}
.x17{left:48.830667pt;}
.x15{left:50.110667pt;}
.x3{left:52.961333pt;}
.x1{left:60.160000pt;}
.x5{left:79.870667pt;}
.x14{left:84.160000pt;}
.x13{left:88.672000pt;}
.x9{left:90.121333pt;}
.x8{left:96.192000pt;}
.x16{left:108.192000pt;}
.x2{left:125.952000pt;}
.x7{left:195.706667pt;}
.x6{left:494.986667pt;}
.xb{left:510.666667pt;}
.xd{left:558.666667pt;}
.xf{left:606.666667pt;}
.x10{left:654.693333pt;}
}




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