
    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_51aeea532755a6585d3864ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_5c872a6e02637ba0011a1106.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_710d2be96f26b891dd50eb80.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_ec3492ccbf785ded406b3760.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_10d3e412a4d450c52cb99b87.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_f61bcc11a2f110965ba38e26.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983398;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_ed0e5fdefa7b0af2adbdd60e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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_3f5c1c78c0cceb906ede4fd9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.976562;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_8e2313676b0296bb2e32b501.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.976562;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_1917faf5776954ceb87e06fb.woff2')format("woff");}.fff{font-family:fff;line-height:0.921387;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_9971a5f9201990252e3f5fb6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_97b24b9322229de0bb1d96eb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2cf8feb75801862cc93a493f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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_f08337b78d433fa80ed4161d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.739746;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:ff16;src:url('chunks/assets/font_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls15{letter-spacing:-3.546000px;}
.lsa{letter-spacing:-1.500000px;}
.ls12{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.ls4{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.439920px;}
.ls3{letter-spacing:0.786240px;}
.lse{letter-spacing:0.900000px;}
.ls17{letter-spacing:16.506720px;}
.ls11{letter-spacing:41.706720px;}
.lsd{letter-spacing:46.026720px;}
.ls10{letter-spacing:55.386720px;}
.lsc{letter-spacing:64.170720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws3{word-spacing:-22.087200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws8{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.ws9{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.220000px;}
.wsb{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._1a{margin-left:-7.130160px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-3.835200px;}
._2{margin-left:-2.274480px;}
._0{margin-left:-1.194000px;}
._1{width:1.218000px;}
._6{width:2.900160px;}
._8{width:4.134000px;}
._7{width:6.035760px;}
._16{width:7.306800px;}
._10{width:8.511840px;}
._11{width:9.595440px;}
._e{width:10.793760px;}
._f{width:11.841120px;}
._12{width:13.032480px;}
._a{width:15.943200px;}
._9{width:17.091360px;}
._13{width:18.107280px;}
._5{width:19.226400px;}
._17{width:20.713920px;}
._18{width:21.858000px;}
._c{width:25.614240px;}
._d{width:27.728640px;}
._b{width:29.581200px;}
._19{width:30.894480px;}
._14{width:42.884880px;}
._15{width:44.644320px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y4a{bottom:3.960000px;}
.y1b{bottom:4.860000px;}
.ya3{bottom:8.640000px;}
.ye{bottom:9.540000px;}
.y48{bottom:10.800000px;}
.y1d{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.y44{bottom:20.520000px;}
.y49{bottom:22.320000px;}
.y47{bottom:25.425000px;}
.y1a{bottom:25.560000px;}
.yb{bottom:30.240000px;}
.y43{bottom:37.800000px;}
.y19{bottom:45.720000px;}
.ya{bottom:46.440000px;}
.y42{bottom:54.900000px;}
.y5{bottom:57.960000px;}
.y18{bottom:58.500000px;}
.y41{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y17{bottom:78.885000px;}
.y1{bottom:80.316000px;}
.y40{bottom:89.460000px;}
.y16{bottom:91.485000px;}
.y8{bottom:93.060000px;}
.y3f{bottom:106.740000px;}
.y7{bottom:111.270000px;}
.y15{bottom:111.825000px;}
.y3e{bottom:124.020000px;}
.y55{bottom:126.396000px;}
.y14{bottom:127.665000px;}
.y90{bottom:131.616000px;}
.yf5{bottom:135.036000px;}
.y13{bottom:138.105000px;}
.y3d{bottom:141.300000px;}
.y54{bottom:143.676000px;}
.y2d{bottom:147.600000px;}
.y8f{bottom:148.896000px;}
.yf4{bottom:152.310000px;}
.yc1{bottom:154.290000px;}
.y12{bottom:156.285000px;}
.y3c{bottom:158.400000px;}
.y53{bottom:160.950000px;}
.y2c{bottom:162.900000px;}
.y8e{bottom:166.170000px;}
.yf3{bottom:169.590000px;}
.yc0{bottom:173.010000px;}
.y11{bottom:175.365000px;}
.y3b{bottom:175.680000px;}
.y52{bottom:178.230000px;}
.y2b{bottom:180.540000px;}
.y8d{bottom:183.450000px;}
.yf2{bottom:186.870000px;}
.y3a{bottom:192.960000px;}
.y51{bottom:195.510000px;}
.ybf{bottom:196.410000px;}
.y2a{bottom:197.820000px;}
.y10{bottom:199.665000px;}
.y8c{bottom:200.730000px;}
.yf1{bottom:203.970000px;}
.y39{bottom:210.240000px;}
.y50{bottom:212.790000px;}
.y29{bottom:214.920000px;}
.y8b{bottom:218.010000px;}
.ybe{bottom:219.630000px;}
.yf0{bottom:221.250000px;}
.y38{bottom:227.520000px;}
.y4f{bottom:229.890000px;}
.y28{bottom:232.740000px;}
.y8a{bottom:236.190000px;}
.yef{bottom:238.530000px;}
.ybd{bottom:242.850000px;}
.y37{bottom:244.620000px;}
.y4e{bottom:247.170000px;}
.y27{bottom:250.200000px;}
.y89{bottom:253.470000px;}
.yee{bottom:255.810000px;}
.y36{bottom:261.930000px;}
.y4d{bottom:264.450000px;}
.ybc{bottom:266.070000px;}
.y26{bottom:267.690000px;}
.y88{bottom:270.750000px;}
.yed{bottom:273.090000px;}
.y35{bottom:279.210000px;}
.y4c{bottom:281.730000px;}
.y25{bottom:284.970000px;}
.y87{bottom:288.030000px;}
.ybb{bottom:289.290000px;}
.yec{bottom:290.370000px;}
.y34{bottom:296.490000px;}
.y4b{bottom:299.010000px;}
.y24{bottom:302.430000px;}
.y86{bottom:306.390000px;}
.yeb{bottom:307.470000px;}
.y46{bottom:312.870000px;}
.y33{bottom:313.770000px;}
.yba{bottom:314.670000px;}
.y23{bottom:319.710000px;}
.y85{bottom:323.670000px;}
.yea{bottom:324.750000px;}
.y32{bottom:331.050000px;}
.yb9{bottom:331.950000px;}
.y22{bottom:337.170000px;}
.y84{bottom:341.895000px;}
.ye9{bottom:342.075000px;}
.y31{bottom:348.150000px;}
.yb8{bottom:349.275000px;}
.y1e{bottom:349.635000px;}
.y21{bottom:357.510000px;}
.y83{bottom:359.175000px;}
.ye8{bottom:359.355000px;}
.y30{bottom:365.430000px;}
.yb7{bottom:366.555000px;}
.y82{bottom:376.455000px;}
.ye7{bottom:376.635000px;}
.y2f{bottom:382.710000px;}
.yb6{bottom:383.655000px;}
.y20{bottom:384.870000px;}
.y81{bottom:393.735000px;}
.ye6{bottom:393.915000px;}
.y2e{bottom:399.990000px;}
.yb5{bottom:400.935000px;}
.y1f{bottom:402.690000px;}
.y80{bottom:411.015000px;}
.yb4{bottom:418.215000px;}
.y7f{bottom:428.115000px;}
.ye5{bottom:428.295000px;}
.yb3{bottom:437.115000px;}
.ye4{bottom:445.575000px;}
.y7e{bottom:446.475000px;}
.yb2{bottom:460.335000px;}
.ye3{bottom:462.855000px;}
.y7d{bottom:464.835000px;}
.ye2{bottom:480.135000px;}
.y7c{bottom:482.115000px;}
.yb1{bottom:483.555000px;}
.ye1{bottom:497.235000px;}
.y7b{bottom:500.475000px;}
.yb0{bottom:506.955000px;}
.ye0{bottom:514.515000px;}
.y7a{bottom:517.755000px;}
.yaf{bottom:530.175000px;}
.ydf{bottom:531.795000px;}
.y79{bottom:534.855000px;}
.yde{bottom:549.075000px;}
.y78{bottom:552.135000px;}
.yae{bottom:553.395000px;}
.ydd{bottom:566.355000px;}
.y77{bottom:569.415000px;}
.yad{bottom:576.615000px;}
.ydc{bottom:583.635000px;}
.y76{bottom:586.695000px;}
.yac{bottom:599.835000px;}
.ydb{bottom:600.735000px;}
.y75{bottom:604.005000px;}
.yda{bottom:618.045000px;}
.y74{bottom:621.105000px;}
.yab{bottom:623.085000px;}
.yd9{bottom:635.325000px;}
.y73{bottom:638.385000px;}
.yaa{bottom:646.305000px;}
.yd8{bottom:652.605000px;}
.y72{bottom:655.665000px;}
.ya9{bottom:669.705000px;}
.yd7{bottom:669.885000px;}
.y71{bottom:672.945000px;}
.yd6{bottom:687.165000px;}
.y70{bottom:691.305000px;}
.ya8{bottom:692.925000px;}
.yd5{bottom:704.265000px;}
.y6f{bottom:708.585000px;}
.ya7{bottom:716.145000px;}
.yd4{bottom:721.545000px;}
.y6e{bottom:725.685000px;}
.yd3{bottom:738.825000px;}
.ya6{bottom:739.365000px;}
.y6d{bottom:742.965000px;}
.yf6{bottom:744.045000px;}
.yd2{bottom:756.105000px;}
.y6c{bottom:761.325000px;}
.ya5{bottom:762.585000px;}
.y1c{bottom:763.665000px;}
.yd1{bottom:773.385000px;}
.y6b{bottom:778.605000px;}
.ya4{bottom:785.805000px;}
.yd0{bottom:790.485000px;}
.yf{bottom:793.185000px;}
.y6a{bottom:795.885000px;}
.ycf{bottom:807.765000px;}
.ya2{bottom:809.205000px;}
.y69{bottom:812.985000px;}
.yce{bottom:825.045000px;}
.y68{bottom:830.265000px;}
.ya1{bottom:832.425000px;}
.ycd{bottom:842.325000px;}
.y67{bottom:847.545000px;}
.ya0{bottom:855.645000px;}
.ycc{bottom:859.605000px;}
.y66{bottom:864.825000px;}
.ycb{bottom:876.930000px;}
.y9f{bottom:881.070000px;}
.y65{bottom:882.150000px;}
.yca{bottom:894.030000px;}
.y9e{bottom:898.350000px;}
.y64{bottom:899.430000px;}
.yc9{bottom:911.310000px;}
.y9d{bottom:915.450000px;}
.y63{bottom:916.530000px;}
.yc8{bottom:928.590000px;}
.y9c{bottom:932.730000px;}
.y62{bottom:933.810000px;}
.yc7{bottom:947.490000px;}
.y9b{bottom:950.010000px;}
.y61{bottom:951.090000px;}
.y9a{bottom:967.290000px;}
.y60{bottom:968.370000px;}
.yc6{bottom:970.710000px;}
.y99{bottom:984.570000px;}
.y5f{bottom:985.650000px;}
.yc5{bottom:993.930000px;}
.y98{bottom:1001.850000px;}
.y5e{bottom:1002.930000px;}
.yd{bottom:1007.970000px;}
.yc4{bottom:1017.150000px;}
.y97{bottom:1018.950000px;}
.y5d{bottom:1020.030000px;}
.y6{bottom:1033.350000px;}
.y96{bottom:1036.230000px;}
.y5c{bottom:1037.310000px;}
.yc3{bottom:1040.550000px;}
.y95{bottom:1053.510000px;}
.y5b{bottom:1054.590000px;}
.yc2{bottom:1063.770000px;}
.y94{bottom:1070.790000px;}
.y5a{bottom:1071.870000px;}
.y93{bottom:1088.070000px;}
.y59{bottom:1089.150000px;}
.y92{bottom:1105.350000px;}
.y58{bottom:1106.430000px;}
.y91{bottom:1122.450000px;}
.y57{bottom:1123.530000px;}
.y56{bottom:1140.840000px;}
.h23{height:17.100000px;}
.h22{height:17.280000px;}
.h21{height:17.316000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h14{height:29.520000px;}
.h2{height:32.940000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1d{height:36.756000px;}
.h1b{height:38.818125px;}
.h1f{height:42.164648px;}
.h1c{height:43.215117px;}
.h4{height:43.453125px;}
.h20{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:45.461953px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.h1e{height:48.088125px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h6{height:60.855469px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:214.770000px;}
.h16{height:414.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:54.720000px;}
.w3{width:74.880000px;}
.w11{width:135.396000px;}
.wf{width:153.720000px;}
.w5{width:155.370000px;}
.w10{width:159.510000px;}
.we{width:160.590000px;}
.wd{width:162.030000px;}
.w12{width:172.650000px;}
.w13{width:196.230000px;}
.w8{width:220.935000px;}
.wc{width:245.955000px;}
.wb{width:329.610000px;}
.wa{width:399.885000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:1.080000px;}
.x2{left:8.640000px;}
.x16{left:12.600000px;}
.x12{left:16.416000px;}
.xe{left:25.416000px;}
.x10{left:26.496000px;}
.xc{left:51.336000px;}
.x1{left:72.360000px;}
.x18{left:79.920000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x17{left:108.035987px;}
.xd{left:133.230000px;}
.x1f{left:172.469987px;}
.x14{left:215.175000px;}
.x6{left:228.270000px;}
.x1b{left:234.929987px;}
.x20{left:243.030000px;}
.xf{left:257.115000px;}
.x11{left:258.915000px;}
.x9{left:285.015000px;}
.x15{left:293.835000px;}
.x13{left:321.735000px;}
.x1c{left:329.475000px;}
.x7{left:344.775000px;}
.x8{left:364.035000px;}
.xb{left:373.575000px;}
.x21{left:382.035000px;}
.xa{left:452.280000px;}
.x1a{left:483.585000px;}
.x1d{left:495.105000px;}
.x22{left:558.465000px;}
.x1e{left:659.490000px;}
.x3{left:745.890000px;}
.x23{left:758.490000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls15{letter-spacing:-3.152000pt;}
.lsa{letter-spacing:-1.333333pt;}
.ls12{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.ls4{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.391040pt;}
.ls3{letter-spacing:0.698880pt;}
.lse{letter-spacing:0.800000pt;}
.ls17{letter-spacing:14.672640pt;}
.ls11{letter-spacing:37.072640pt;}
.lsd{letter-spacing:40.912640pt;}
.ls10{letter-spacing:49.232640pt;}
.lsc{letter-spacing:57.040640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws3{word-spacing:-19.633067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws8{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.640000pt;}
.wsb{word-spacing:-12.005120pt;}
.ws6{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._1a{margin-left:-6.337920pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.409067pt;}
._2{margin-left:-2.021760pt;}
._0{margin-left:-1.061333pt;}
._1{width:1.082667pt;}
._6{width:2.577920pt;}
._8{width:3.674667pt;}
._7{width:5.365120pt;}
._16{width:6.494933pt;}
._10{width:7.566080pt;}
._11{width:8.529280pt;}
._e{width:9.594453pt;}
._f{width:10.525440pt;}
._12{width:11.584427pt;}
._a{width:14.171733pt;}
._9{width:15.192320pt;}
._13{width:16.095360pt;}
._5{width:17.090133pt;}
._17{width:18.412373pt;}
._18{width:19.429333pt;}
._c{width:22.768213pt;}
._d{width:24.647680pt;}
._b{width:26.294400pt;}
._19{width:27.461760pt;}
._14{width:38.119893pt;}
._15{width:39.683840pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y4a{bottom:3.520000pt;}
.y1b{bottom:4.320000pt;}
.ya3{bottom:7.680000pt;}
.ye{bottom:8.480000pt;}
.y48{bottom:9.600000pt;}
.y1d{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.y44{bottom:18.240000pt;}
.y49{bottom:19.840000pt;}
.y47{bottom:22.600000pt;}
.y1a{bottom:22.720000pt;}
.yb{bottom:26.880000pt;}
.y43{bottom:33.600000pt;}
.y19{bottom:40.640000pt;}
.ya{bottom:41.280000pt;}
.y42{bottom:48.800000pt;}
.y5{bottom:51.520000pt;}
.y18{bottom:52.000000pt;}
.y41{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y17{bottom:70.120000pt;}
.y1{bottom:71.392000pt;}
.y40{bottom:79.520000pt;}
.y16{bottom:81.320000pt;}
.y8{bottom:82.720000pt;}
.y3f{bottom:94.880000pt;}
.y7{bottom:98.906667pt;}
.y15{bottom:99.400000pt;}
.y3e{bottom:110.240000pt;}
.y55{bottom:112.352000pt;}
.y14{bottom:113.480000pt;}
.y90{bottom:116.992000pt;}
.yf5{bottom:120.032000pt;}
.y13{bottom:122.760000pt;}
.y3d{bottom:125.600000pt;}
.y54{bottom:127.712000pt;}
.y2d{bottom:131.200000pt;}
.y8f{bottom:132.352000pt;}
.yf4{bottom:135.386667pt;}
.yc1{bottom:137.146667pt;}
.y12{bottom:138.920000pt;}
.y3c{bottom:140.800000pt;}
.y53{bottom:143.066667pt;}
.y2c{bottom:144.800000pt;}
.y8e{bottom:147.706667pt;}
.yf3{bottom:150.746667pt;}
.yc0{bottom:153.786667pt;}
.y11{bottom:155.880000pt;}
.y3b{bottom:156.160000pt;}
.y52{bottom:158.426667pt;}
.y2b{bottom:160.480000pt;}
.y8d{bottom:163.066667pt;}
.yf2{bottom:166.106667pt;}
.y3a{bottom:171.520000pt;}
.y51{bottom:173.786667pt;}
.ybf{bottom:174.586667pt;}
.y2a{bottom:175.840000pt;}
.y10{bottom:177.480000pt;}
.y8c{bottom:178.426667pt;}
.yf1{bottom:181.306667pt;}
.y39{bottom:186.880000pt;}
.y50{bottom:189.146667pt;}
.y29{bottom:191.040000pt;}
.y8b{bottom:193.786667pt;}
.ybe{bottom:195.226667pt;}
.yf0{bottom:196.666667pt;}
.y38{bottom:202.240000pt;}
.y4f{bottom:204.346667pt;}
.y28{bottom:206.880000pt;}
.y8a{bottom:209.946667pt;}
.yef{bottom:212.026667pt;}
.ybd{bottom:215.866667pt;}
.y37{bottom:217.440000pt;}
.y4e{bottom:219.706667pt;}
.y27{bottom:222.400000pt;}
.y89{bottom:225.306667pt;}
.yee{bottom:227.386667pt;}
.y36{bottom:232.826667pt;}
.y4d{bottom:235.066667pt;}
.ybc{bottom:236.506667pt;}
.y26{bottom:237.946667pt;}
.y88{bottom:240.666667pt;}
.yed{bottom:242.746667pt;}
.y35{bottom:248.186667pt;}
.y4c{bottom:250.426667pt;}
.y25{bottom:253.306667pt;}
.y87{bottom:256.026667pt;}
.ybb{bottom:257.146667pt;}
.yec{bottom:258.106667pt;}
.y34{bottom:263.546667pt;}
.y4b{bottom:265.786667pt;}
.y24{bottom:268.826667pt;}
.y86{bottom:272.346667pt;}
.yeb{bottom:273.306667pt;}
.y46{bottom:278.106667pt;}
.y33{bottom:278.906667pt;}
.yba{bottom:279.706667pt;}
.y23{bottom:284.186667pt;}
.y85{bottom:287.706667pt;}
.yea{bottom:288.666667pt;}
.y32{bottom:294.266667pt;}
.yb9{bottom:295.066667pt;}
.y22{bottom:299.706667pt;}
.y84{bottom:303.906667pt;}
.ye9{bottom:304.066667pt;}
.y31{bottom:309.466667pt;}
.yb8{bottom:310.466667pt;}
.y1e{bottom:310.786667pt;}
.y21{bottom:317.786667pt;}
.y83{bottom:319.266667pt;}
.ye8{bottom:319.426667pt;}
.y30{bottom:324.826667pt;}
.yb7{bottom:325.826667pt;}
.y82{bottom:334.626667pt;}
.ye7{bottom:334.786667pt;}
.y2f{bottom:340.186667pt;}
.yb6{bottom:341.026667pt;}
.y20{bottom:342.106667pt;}
.y81{bottom:349.986667pt;}
.ye6{bottom:350.146667pt;}
.y2e{bottom:355.546667pt;}
.yb5{bottom:356.386667pt;}
.y1f{bottom:357.946667pt;}
.y80{bottom:365.346667pt;}
.yb4{bottom:371.746667pt;}
.y7f{bottom:380.546667pt;}
.ye5{bottom:380.706667pt;}
.yb3{bottom:388.546667pt;}
.ye4{bottom:396.066667pt;}
.y7e{bottom:396.866667pt;}
.yb2{bottom:409.186667pt;}
.ye3{bottom:411.426667pt;}
.y7d{bottom:413.186667pt;}
.ye2{bottom:426.786667pt;}
.y7c{bottom:428.546667pt;}
.yb1{bottom:429.826667pt;}
.ye1{bottom:441.986667pt;}
.y7b{bottom:444.866667pt;}
.yb0{bottom:450.626667pt;}
.ye0{bottom:457.346667pt;}
.y7a{bottom:460.226667pt;}
.yaf{bottom:471.266667pt;}
.ydf{bottom:472.706667pt;}
.y79{bottom:475.426667pt;}
.yde{bottom:488.066667pt;}
.y78{bottom:490.786667pt;}
.yae{bottom:491.906667pt;}
.ydd{bottom:503.426667pt;}
.y77{bottom:506.146667pt;}
.yad{bottom:512.546667pt;}
.ydc{bottom:518.786667pt;}
.y76{bottom:521.506667pt;}
.yac{bottom:533.186667pt;}
.ydb{bottom:533.986667pt;}
.y75{bottom:536.893333pt;}
.yda{bottom:549.373333pt;}
.y74{bottom:552.093333pt;}
.yab{bottom:553.853333pt;}
.yd9{bottom:564.733333pt;}
.y73{bottom:567.453333pt;}
.yaa{bottom:574.493333pt;}
.yd8{bottom:580.093333pt;}
.y72{bottom:582.813333pt;}
.ya9{bottom:595.293333pt;}
.yd7{bottom:595.453333pt;}
.y71{bottom:598.173333pt;}
.yd6{bottom:610.813333pt;}
.y70{bottom:614.493333pt;}
.ya8{bottom:615.933333pt;}
.yd5{bottom:626.013333pt;}
.y6f{bottom:629.853333pt;}
.ya7{bottom:636.573333pt;}
.yd4{bottom:641.373333pt;}
.y6e{bottom:645.053333pt;}
.yd3{bottom:656.733333pt;}
.ya6{bottom:657.213333pt;}
.y6d{bottom:660.413333pt;}
.yf6{bottom:661.373333pt;}
.yd2{bottom:672.093333pt;}
.y6c{bottom:676.733333pt;}
.ya5{bottom:677.853333pt;}
.y1c{bottom:678.813333pt;}
.yd1{bottom:687.453333pt;}
.y6b{bottom:692.093333pt;}
.ya4{bottom:698.493333pt;}
.yd0{bottom:702.653333pt;}
.yf{bottom:705.053333pt;}
.y6a{bottom:707.453333pt;}
.ycf{bottom:718.013333pt;}
.ya2{bottom:719.293333pt;}
.y69{bottom:722.653333pt;}
.yce{bottom:733.373333pt;}
.y68{bottom:738.013333pt;}
.ya1{bottom:739.933333pt;}
.ycd{bottom:748.733333pt;}
.y67{bottom:753.373333pt;}
.ya0{bottom:760.573333pt;}
.ycc{bottom:764.093333pt;}
.y66{bottom:768.733333pt;}
.ycb{bottom:779.493333pt;}
.y9f{bottom:783.173333pt;}
.y65{bottom:784.133333pt;}
.yca{bottom:794.693333pt;}
.y9e{bottom:798.533333pt;}
.y64{bottom:799.493333pt;}
.yc9{bottom:810.053333pt;}
.y9d{bottom:813.733333pt;}
.y63{bottom:814.693333pt;}
.yc8{bottom:825.413333pt;}
.y9c{bottom:829.093333pt;}
.y62{bottom:830.053333pt;}
.yc7{bottom:842.213333pt;}
.y9b{bottom:844.453333pt;}
.y61{bottom:845.413333pt;}
.y9a{bottom:859.813333pt;}
.y60{bottom:860.773333pt;}
.yc6{bottom:862.853333pt;}
.y99{bottom:875.173333pt;}
.y5f{bottom:876.133333pt;}
.yc5{bottom:883.493333pt;}
.y98{bottom:890.533333pt;}
.y5e{bottom:891.493333pt;}
.yd{bottom:895.973333pt;}
.yc4{bottom:904.133333pt;}
.y97{bottom:905.733333pt;}
.y5d{bottom:906.693333pt;}
.y6{bottom:918.533333pt;}
.y96{bottom:921.093333pt;}
.y5c{bottom:922.053333pt;}
.yc3{bottom:924.933333pt;}
.y95{bottom:936.453333pt;}
.y5b{bottom:937.413333pt;}
.yc2{bottom:945.573333pt;}
.y94{bottom:951.813333pt;}
.y5a{bottom:952.773333pt;}
.y93{bottom:967.173333pt;}
.y59{bottom:968.133333pt;}
.y92{bottom:982.533333pt;}
.y58{bottom:983.493333pt;}
.y91{bottom:997.733333pt;}
.y57{bottom:998.693333pt;}
.y56{bottom:1014.080000pt;}
.h23{height:15.200000pt;}
.h22{height:15.360000pt;}
.h21{height:15.392000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h14{height:26.240000pt;}
.h2{height:29.280000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1d{height:32.672000pt;}
.h1b{height:34.505000pt;}
.h1f{height:37.479688pt;}
.h1c{height:38.413438pt;}
.h4{height:38.625000pt;}
.h20{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:40.410625pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.h1e{height:42.745000pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h6{height:54.093750pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:190.906667pt;}
.h16{height:368.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:48.640000pt;}
.w3{width:66.560000pt;}
.w11{width:120.352000pt;}
.wf{width:136.640000pt;}
.w5{width:138.106667pt;}
.w10{width:141.786667pt;}
.we{width:142.746667pt;}
.wd{width:144.026667pt;}
.w12{width:153.466667pt;}
.w13{width:174.426667pt;}
.w8{width:196.386667pt;}
.wc{width:218.626667pt;}
.wb{width:292.986667pt;}
.wa{width:355.453333pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:0.960000pt;}
.x2{left:7.680000pt;}
.x16{left:11.200000pt;}
.x12{left:14.592000pt;}
.xe{left:22.592000pt;}
.x10{left:23.552000pt;}
.xc{left:45.632000pt;}
.x1{left:64.320000pt;}
.x18{left:71.040000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x17{left:96.031988pt;}
.xd{left:118.426667pt;}
.x1f{left:153.306655pt;}
.x14{left:191.266667pt;}
.x6{left:202.906667pt;}
.x1b{left:208.826655pt;}
.x20{left:216.026667pt;}
.xf{left:228.546667pt;}
.x11{left:230.146667pt;}
.x9{left:253.346667pt;}
.x15{left:261.186667pt;}
.x13{left:285.986667pt;}
.x1c{left:292.866667pt;}
.x7{left:306.466667pt;}
.x8{left:323.586667pt;}
.xb{left:332.066667pt;}
.x21{left:339.586667pt;}
.xa{left:402.026667pt;}
.x1a{left:429.853333pt;}
.x1d{left:440.093333pt;}
.x22{left:496.413333pt;}
.x1e{left:586.213333pt;}
.x3{left:663.013333pt;}
.x23{left:674.213333pt;}
}




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