
    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_9d8e417ee4ceeef7a0d1ab2a.woff')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_14c2acad54819f053569a38c.woff')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_2afb9fa12e33edbf69d19a5c.woff')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_d847180121dde38c1db6b6d3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e6f0708552efe89a65852fea.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_014c7e9aad8360bf67fa4078.woff')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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2db10a218b5b3160bb1ddafc.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fc3c0c45aa6eb3a83574abd5.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8282e8b3c860050dd053a6f8.woff')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_91a0af61cf1da6bbebd8b9d1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.978027;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_a89a1a58ca74247e634174e1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.978027;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_749830d333c0158c8dd20656.woff')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_6362da26b114fe9164965c7d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_249ed675a8b687a463a45093.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_3f3a8f30ebe04e747ec9f783.woff')format("woff");}.ff12{font-family:ff12;line-height:0.914062;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_b76eac99dc1ba99412107c24.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')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_130301694ab792f9947e2b7d.woff')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_3d39f2bf7322051b2b88a82a.woff')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);}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls16{letter-spacing:-3.546000px;}
.lsa{letter-spacing:-1.356000px;}
.lsd{letter-spacing:-0.584400px;}
.lsc{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.ls18{letter-spacing:-0.206400px;}
.ls1b{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.132600px;}
.ls11{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.174240px;}
.ls14{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.786240px;}
.ls19{letter-spacing:0.900000px;}
.ls6{letter-spacing:3.060000px;}
.ls1a{letter-spacing:16.506720px;}
.ls10{letter-spacing:46.026720px;}
.ls12{letter-spacing:55.386720px;}
.lsf{letter-spacing:64.026720px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws5{word-spacing:-22.231200px;}
.ws3{word-spacing:-16.626360px;}
.ws4{word-spacing:-16.493760px;}
.ws2{word-spacing:-16.488000px;}
.ws9{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.146400px;}
.ws10{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.wsd{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws6{word-spacing:-8.786880px;}
.ws7{word-spacing:-8.208000px;}
.ws8{word-spacing:-8.136000px;}
.wse{word-spacing:0.000000px;}
._16{margin-left:-8.094720px;}
._17{margin-left:-6.645600px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.145040px;}
._2{margin-left:-2.645040px;}
._0{margin-left:-1.230000px;}
._1{width:1.238640px;}
._8{width:3.007920px;}
._e{width:4.617840px;}
._6{width:5.992320px;}
._c{width:7.051680px;}
._f{width:8.212800px;}
._7{width:9.319920px;}
._10{width:10.329120px;}
._b{width:11.553840px;}
._a{width:12.788640px;}
._14{width:13.869840px;}
._13{width:15.972240px;}
._d{width:17.286960px;}
._9{width:19.063440px;}
._15{width:24.143040px;}
._11{width:28.223040px;}
._12{width:29.820240px;}
._5{width:39.278640px;}
.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);}
.fs8{font-size:2.880000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y48{bottom:3.960000px;}
.y9c{bottom:8.640000px;}
.ye{bottom:9.540000px;}
.y96{bottom:9.945000px;}
.y46{bottom:10.620000px;}
.y19{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:15.840000px;}
.y17{bottom:18.000000px;}
.y2{bottom:19.980000px;}
.y42{bottom:20.520000px;}
.y47{bottom:22.365000px;}
.y5{bottom:24.300000px;}
.y45{bottom:25.245000px;}
.yb{bottom:30.240000px;}
.y16{bottom:30.780000px;}
.y41{bottom:37.800000px;}
.ya{bottom:46.440000px;}
.y1{bottom:46.620000px;}
.y15{bottom:50.220000px;}
.y40{bottom:55.080000px;}
.y14{bottom:60.660000px;}
.y3f{bottom:72.360000px;}
.y9{bottom:73.440000px;}
.y13{bottom:79.020000px;}
.y3e{bottom:89.640000px;}
.y94{bottom:89.676000px;}
.y8{bottom:93.090000px;}
.yf6{bottom:94.536000px;}
.y12{bottom:98.100000px;}
.ybe{bottom:99.756000px;}
.y55{bottom:101.376000px;}
.y3d{bottom:106.740000px;}
.y93{bottom:106.956000px;}
.y7{bottom:111.270000px;}
.yf5{bottom:111.816000px;}
.y119{bottom:115.596000px;}
.ybd{bottom:117.036000px;}
.y54{bottom:118.656000px;}
.y11{bottom:123.840000px;}
.y3c{bottom:124.020000px;}
.y92{bottom:124.236000px;}
.yf4{bottom:129.096000px;}
.y118{bottom:132.876000px;}
.ybc{bottom:134.316000px;}
.y53{bottom:135.936000px;}
.y3b{bottom:141.300000px;}
.y91{bottom:141.516000px;}
.yf3{bottom:146.376000px;}
.y10{bottom:148.140000px;}
.y117{bottom:149.976000px;}
.ybb{bottom:151.590000px;}
.y52{bottom:153.210000px;}
.y3a{bottom:158.580000px;}
.y90{bottom:158.610000px;}
.yf2{bottom:163.470000px;}
.y116{bottom:167.250000px;}
.yba{bottom:168.870000px;}
.y51{bottom:170.490000px;}
.y39{bottom:175.860000px;}
.y8f{bottom:175.890000px;}
.yf1{bottom:180.750000px;}
.y115{bottom:184.530000px;}
.y50{bottom:187.590000px;}
.y38{bottom:192.960000px;}
.y8e{bottom:193.170000px;}
.yf0{bottom:198.030000px;}
.y114{bottom:201.810000px;}
.y4f{bottom:204.870000px;}
.y37{bottom:210.240000px;}
.y8d{bottom:210.450000px;}
.yb9{bottom:210.990000px;}
.yef{bottom:215.310000px;}
.y113{bottom:219.090000px;}
.y4e{bottom:222.150000px;}
.y36{bottom:227.520000px;}
.y8c{bottom:228.810000px;}
.yee{bottom:232.590000px;}
.yb8{bottom:234.210000px;}
.y112{bottom:236.370000px;}
.y4d{bottom:239.430000px;}
.y35{bottom:244.830000px;}
.y8b{bottom:247.170000px;}
.yed{bottom:249.870000px;}
.y27{bottom:251.490000px;}
.y111{bottom:253.470000px;}
.y4c{bottom:256.710000px;}
.yb7{bottom:257.430000px;}
.y34{bottom:262.110000px;}
.y8a{bottom:265.350000px;}
.y26{bottom:266.790000px;}
.yec{bottom:266.970000px;}
.y110{bottom:270.750000px;}
.y4b{bottom:273.810000px;}
.y33{bottom:279.390000px;}
.yb6{bottom:280.650000px;}
.y89{bottom:282.630000px;}
.yeb{bottom:284.250000px;}
.y25{bottom:284.430000px;}
.y10f{bottom:288.030000px;}
.y4a{bottom:291.090000px;}
.y32{bottom:296.490000px;}
.y88{bottom:299.910000px;}
.yea{bottom:301.530000px;}
.y24{bottom:301.710000px;}
.yb5{bottom:303.870000px;}
.y10e{bottom:305.310000px;}
.y49{bottom:308.370000px;}
.y31{bottom:313.770000px;}
.y87{bottom:317.190000px;}
.ye9{bottom:318.810000px;}
.y23{bottom:318.990000px;}
.y44{bottom:322.410000px;}
.y10d{bottom:322.590000px;}
.yb4{bottom:329.250000px;}
.y30{bottom:331.050000px;}
.y86{bottom:334.470000px;}
.ye8{bottom:336.090000px;}
.y22{bottom:336.630000px;}
.y10c{bottom:339.915000px;}
.yb3{bottom:346.575000px;}
.y2f{bottom:348.330000px;}
.y85{bottom:351.615000px;}
.ye7{bottom:353.415000px;}
.y21{bottom:354.090000px;}
.y10b{bottom:357.015000px;}
.y1a{bottom:358.995000px;}
.yb2{bottom:363.855000px;}
.y2e{bottom:365.610000px;}
.y84{bottom:368.895000px;}
.ye6{bottom:370.515000px;}
.y20{bottom:371.550000px;}
.y10a{bottom:374.295000px;}
.yb1{bottom:381.135000px;}
.y2d{bottom:382.890000px;}
.y83{bottom:386.175000px;}
.ye5{bottom:387.795000px;}
.y1f{bottom:388.830000px;}
.y109{bottom:391.575000px;}
.yb0{bottom:398.235000px;}
.y2c{bottom:399.990000px;}
.y82{bottom:403.455000px;}
.ye4{bottom:405.075000px;}
.y1e{bottom:406.290000px;}
.y108{bottom:408.855000px;}
.yaf{bottom:417.135000px;}
.y2b{bottom:417.270000px;}
.y81{bottom:420.735000px;}
.ye3{bottom:422.355000px;}
.y107{bottom:426.135000px;}
.y1d{bottom:426.630000px;}
.y2a{bottom:434.550000px;}
.y80{bottom:438.015000px;}
.ye2{bottom:439.635000px;}
.yae{bottom:440.535000px;}
.y106{bottom:443.415000px;}
.y29{bottom:451.830000px;}
.y1c{bottom:453.990000px;}
.y7f{bottom:455.115000px;}
.ye1{bottom:456.735000px;}
.y105{bottom:460.515000px;}
.yad{bottom:463.755000px;}
.y28{bottom:469.110000px;}
.y1b{bottom:471.810000px;}
.y7e{bottom:472.395000px;}
.ye0{bottom:474.015000px;}
.y104{bottom:477.795000px;}
.yac{bottom:486.975000px;}
.y7d{bottom:489.675000px;}
.ydf{bottom:491.295000px;}
.y103{bottom:495.075000px;}
.y7c{bottom:506.955000px;}
.yde{bottom:508.575000px;}
.yab{bottom:510.195000px;}
.y102{bottom:512.355000px;}
.y7b{bottom:524.235000px;}
.ydd{bottom:525.855000px;}
.y101{bottom:529.635000px;}
.yaa{bottom:533.415000px;}
.y7a{bottom:541.515000px;}
.ydc{bottom:543.135000px;}
.y100{bottom:546.735000px;}
.y79{bottom:558.615000px;}
.ya9{bottom:558.795000px;}
.ydb{bottom:560.235000px;}
.yff{bottom:564.015000px;}
.y78{bottom:575.895000px;}
.ya8{bottom:576.075000px;}
.yda{bottom:577.515000px;}
.yfe{bottom:581.295000px;}
.ya7{bottom:593.355000px;}
.y77{bottom:594.255000px;}
.yd9{bottom:594.795000px;}
.yfd{bottom:598.575000px;}
.ya6{bottom:610.665000px;}
.y76{bottom:612.645000px;}
.yd8{bottom:613.725000px;}
.yfc{bottom:615.885000px;}
.ya5{bottom:627.765000px;}
.y75{bottom:629.925000px;}
.yfb{bottom:633.165000px;}
.yd7{bottom:636.945000px;}
.ya4{bottom:645.045000px;}
.y74{bottom:648.105000px;}
.yfa{bottom:650.265000px;}
.yd6{bottom:660.165000px;}
.ya3{bottom:663.945000px;}
.y73{bottom:665.385000px;}
.yf9{bottom:667.545000px;}
.y72{bottom:682.665000px;}
.yd5{bottom:683.385000px;}
.yf8{bottom:684.825000px;}
.ya2{bottom:687.165000px;}
.y71{bottom:701.025000px;}
.yf7{bottom:702.105000px;}
.yd4{bottom:706.785000px;}
.ya1{bottom:710.385000px;}
.y70{bottom:719.385000px;}
.yd3{bottom:730.005000px;}
.ya0{bottom:733.785000px;}
.y6f{bottom:736.665000px;}
.y9f{bottom:737.025000px;}
.y6e{bottom:753.765000px;}
.yd2{bottom:755.385000px;}
.y9e{bottom:763.665000px;}
.y9d{bottom:767.085000px;}
.y6d{bottom:771.045000px;}
.yd1{bottom:772.485000px;}
.y6c{bottom:788.325000px;}
.yd0{bottom:789.765000px;}
.y9b{bottom:793.725000px;}
.y9a{bottom:797.145000px;}
.y6b{bottom:805.605000px;}
.ycf{bottom:807.045000px;}
.y6a{bottom:822.885000px;}
.y99{bottom:823.785000px;}
.yce{bottom:825.945000px;}
.y69{bottom:839.985000px;}
.y18{bottom:842.145000px;}
.y98{bottom:847.005000px;}
.ycd{bottom:849.165000px;}
.y68{bottom:857.265000px;}
.y95{bottom:870.225000px;}
.yf{bottom:871.710000px;}
.ycc{bottom:872.430000px;}
.y97{bottom:873.690000px;}
.y67{bottom:874.590000px;}
.y66{bottom:891.870000px;}
.ycb{bottom:895.830000px;}
.y65{bottom:909.150000px;}
.yca{bottom:919.050000px;}
.y64{bottom:926.430000px;}
.yc9{bottom:942.270000px;}
.y63{bottom:943.530000px;}
.y62{bottom:960.810000px;}
.yc8{bottom:965.490000px;}
.y61{bottom:978.090000px;}
.yc7{bottom:988.710000px;}
.y60{bottom:995.370000px;}
.y5f{bottom:1012.650000px;}
.yc6{bottom:1014.090000px;}
.y5e{bottom:1029.930000px;}
.yc5{bottom:1031.370000px;}
.yd{bottom:1034.970000px;}
.y5d{bottom:1047.030000px;}
.yc4{bottom:1048.650000px;}
.y6{bottom:1060.350000px;}
.y5c{bottom:1064.310000px;}
.yc3{bottom:1065.930000px;}
.y5b{bottom:1081.590000px;}
.yc2{bottom:1083.030000px;}
.y5a{bottom:1098.870000px;}
.yc1{bottom:1100.310000px;}
.y59{bottom:1116.150000px;}
.yc0{bottom:1119.210000px;}
.y58{bottom:1133.430000px;}
.ybf{bottom:1142.460000px;}
.y57{bottom:1150.560000px;}
.y56{bottom:1167.840000px;}
.h26{height:2.010938px;}
.h23{height:2.032031px;}
.h22{height:17.100000px;}
.h24{height:17.280000px;}
.h25{height:23.940000px;}
.h27{height:24.120000px;}
.hc{height:25.020000px;}
.h15{height:29.556000px;}
.h21{height:30.816000px;}
.h2{height:32.976000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.576000px;}
.h1b{height:38.818125px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h20{height:43.506914px;}
.he{height:44.002969px;}
.h13{height:44.088750px;}
.hb{height:44.820000px;}
.h1a{height:45.549492px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.h1f{height:48.088125px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h14{height:56.493281px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h6{height:60.855469px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h8{height:71.613281px;}
.h5{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:163.260000px;}
.h16{height:483.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:2.700000px;}
.wf{width:58.500000px;}
.w3{width:73.080000px;}
.w10{width:93.096000px;}
.wd{width:107.136000px;}
.w1b{width:108.360000px;}
.w14{width:127.440000px;}
.wb{width:130.680000px;}
.w5{width:151.950000px;}
.w1c{width:154.830000px;}
.w15{width:158.250000px;}
.w18{width:158.790000px;}
.w1d{width:183.810000px;}
.w16{width:190.470000px;}
.w17{width:205.590000px;}
.w8{width:216.075000px;}
.w19{width:288.435000px;}
.wc{width:293.790000px;}
.w12{width:307.830000px;}
.w1a{width:319.935000px;}
.w1e{width:378.075000px;}
.w11{width:412.845000px;}
.wa{width:426.885000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w13{width:593.070000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:1.080000px;}
.x2{left:8.676000px;}
.x12{left:12.600000px;}
.xb{left:38.016000px;}
.x1{left:81.000000px;}
.x18{left:84.420000px;}
.x1c{left:87.840000px;}
.xe{left:91.290000px;}
.xf{left:96.330000px;}
.x4{left:98.130000px;}
.x13{left:108.035987px;}
.x14{left:135.035987px;}
.x15{left:162.029987px;}
.xd{left:180.570000px;}
.x1f{left:183.270000px;}
.x16{left:189.029987px;}
.x1e{left:197.310000px;}
.x10{left:215.175000px;}
.x5{left:232.950000px;}
.x22{left:240.689987px;}
.x29{left:243.030000px;}
.x24{left:246.450000px;}
.xc{left:263.595000px;}
.x8{left:272.235000px;}
.x17{left:286.094987px;}
.x11{left:297.075000px;}
.x6{left:331.995000px;}
.x20{left:335.054987px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x27{left:376.635000px;}
.x2a{left:430.635000px;}
.x9{left:439.500000px;}
.x25{left:440.535000px;}
.x21{left:500.865000px;}
.x1b{left:514.905000px;}
.x1a{left:518.325000px;}
.x1d{left:523.365000px;}
.x26{left:649.905000px;}
.x23{left:681.270000px;}
.x28{left:700.350000px;}
.x3{left:739.050000px;}
@media print{
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls16{letter-spacing:-3.152000pt;}
.lsa{letter-spacing:-1.205333pt;}
.lsd{letter-spacing:-0.519467pt;}
.lsc{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls18{letter-spacing:-0.183467pt;}
.ls1b{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.117867pt;}
.ls11{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.154880pt;}
.ls14{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.698880pt;}
.ls19{letter-spacing:0.800000pt;}
.ls6{letter-spacing:2.720000pt;}
.ls1a{letter-spacing:14.672640pt;}
.ls10{letter-spacing:40.912640pt;}
.ls12{letter-spacing:49.232640pt;}
.lsf{letter-spacing:56.912640pt;}
.wsf{word-spacing:-53.120000pt;}
.ws5{word-spacing:-19.761067pt;}
.ws3{word-spacing:-14.778987pt;}
.ws4{word-spacing:-14.661120pt;}
.ws2{word-spacing:-14.656000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.096533pt;}
.wsc{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws6{word-spacing:-7.810560pt;}
.ws7{word-spacing:-7.296000pt;}
.ws8{word-spacing:-7.232000pt;}
.wse{word-spacing:0.000000pt;}
._16{margin-left:-7.195307pt;}
._17{margin-left:-5.907200pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.684480pt;}
._2{margin-left:-2.351147pt;}
._0{margin-left:-1.093333pt;}
._1{width:1.101013pt;}
._8{width:2.673707pt;}
._e{width:4.104747pt;}
._6{width:5.326507pt;}
._c{width:6.268160pt;}
._f{width:7.300267pt;}
._7{width:8.284373pt;}
._10{width:9.181440pt;}
._b{width:10.270080pt;}
._a{width:11.367680pt;}
._14{width:12.328747pt;}
._13{width:14.197547pt;}
._d{width:15.366187pt;}
._9{width:16.945280pt;}
._15{width:21.460480pt;}
._11{width:25.087147pt;}
._12{width:26.506880pt;}
._5{width:34.914347pt;}
.fs8{font-size:2.560000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y48{bottom:3.520000pt;}
.y9c{bottom:7.680000pt;}
.ye{bottom:8.480000pt;}
.y96{bottom:8.840000pt;}
.y46{bottom:9.440000pt;}
.y19{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:14.080000pt;}
.y17{bottom:16.000000pt;}
.y2{bottom:17.760000pt;}
.y42{bottom:18.240000pt;}
.y47{bottom:19.880000pt;}
.y5{bottom:21.600000pt;}
.y45{bottom:22.440000pt;}
.yb{bottom:26.880000pt;}
.y16{bottom:27.360000pt;}
.y41{bottom:33.600000pt;}
.ya{bottom:41.280000pt;}
.y1{bottom:41.440000pt;}
.y15{bottom:44.640000pt;}
.y40{bottom:48.960000pt;}
.y14{bottom:53.920000pt;}
.y3f{bottom:64.320000pt;}
.y9{bottom:65.280000pt;}
.y13{bottom:70.240000pt;}
.y3e{bottom:79.680000pt;}
.y94{bottom:79.712000pt;}
.y8{bottom:82.746667pt;}
.yf6{bottom:84.032000pt;}
.y12{bottom:87.200000pt;}
.ybe{bottom:88.672000pt;}
.y55{bottom:90.112000pt;}
.y3d{bottom:94.880000pt;}
.y93{bottom:95.072000pt;}
.y7{bottom:98.906667pt;}
.yf5{bottom:99.392000pt;}
.y119{bottom:102.752000pt;}
.ybd{bottom:104.032000pt;}
.y54{bottom:105.472000pt;}
.y11{bottom:110.080000pt;}
.y3c{bottom:110.240000pt;}
.y92{bottom:110.432000pt;}
.yf4{bottom:114.752000pt;}
.y118{bottom:118.112000pt;}
.ybc{bottom:119.392000pt;}
.y53{bottom:120.832000pt;}
.y3b{bottom:125.600000pt;}
.y91{bottom:125.792000pt;}
.yf3{bottom:130.112000pt;}
.y10{bottom:131.680000pt;}
.y117{bottom:133.312000pt;}
.ybb{bottom:134.746667pt;}
.y52{bottom:136.186667pt;}
.y3a{bottom:140.960000pt;}
.y90{bottom:140.986667pt;}
.yf2{bottom:145.306667pt;}
.y116{bottom:148.666667pt;}
.yba{bottom:150.106667pt;}
.y51{bottom:151.546667pt;}
.y39{bottom:156.320000pt;}
.y8f{bottom:156.346667pt;}
.yf1{bottom:160.666667pt;}
.y115{bottom:164.026667pt;}
.y50{bottom:166.746667pt;}
.y38{bottom:171.520000pt;}
.y8e{bottom:171.706667pt;}
.yf0{bottom:176.026667pt;}
.y114{bottom:179.386667pt;}
.y4f{bottom:182.106667pt;}
.y37{bottom:186.880000pt;}
.y8d{bottom:187.066667pt;}
.yb9{bottom:187.546667pt;}
.yef{bottom:191.386667pt;}
.y113{bottom:194.746667pt;}
.y4e{bottom:197.466667pt;}
.y36{bottom:202.240000pt;}
.y8c{bottom:203.386667pt;}
.yee{bottom:206.746667pt;}
.yb8{bottom:208.186667pt;}
.y112{bottom:210.106667pt;}
.y4d{bottom:212.826667pt;}
.y35{bottom:217.626667pt;}
.y8b{bottom:219.706667pt;}
.yed{bottom:222.106667pt;}
.y27{bottom:223.546667pt;}
.y111{bottom:225.306667pt;}
.y4c{bottom:228.186667pt;}
.yb7{bottom:228.826667pt;}
.y34{bottom:232.986667pt;}
.y8a{bottom:235.866667pt;}
.y26{bottom:237.146667pt;}
.yec{bottom:237.306667pt;}
.y110{bottom:240.666667pt;}
.y4b{bottom:243.386667pt;}
.y33{bottom:248.346667pt;}
.yb6{bottom:249.466667pt;}
.y89{bottom:251.226667pt;}
.yeb{bottom:252.666667pt;}
.y25{bottom:252.826667pt;}
.y10f{bottom:256.026667pt;}
.y4a{bottom:258.746667pt;}
.y32{bottom:263.546667pt;}
.y88{bottom:266.586667pt;}
.yea{bottom:268.026667pt;}
.y24{bottom:268.186667pt;}
.yb5{bottom:270.106667pt;}
.y10e{bottom:271.386667pt;}
.y49{bottom:274.106667pt;}
.y31{bottom:278.906667pt;}
.y87{bottom:281.946667pt;}
.ye9{bottom:283.386667pt;}
.y23{bottom:283.546667pt;}
.y44{bottom:286.586667pt;}
.y10d{bottom:286.746667pt;}
.yb4{bottom:292.666667pt;}
.y30{bottom:294.266667pt;}
.y86{bottom:297.306667pt;}
.ye8{bottom:298.746667pt;}
.y22{bottom:299.226667pt;}
.y10c{bottom:302.146667pt;}
.yb3{bottom:308.066667pt;}
.y2f{bottom:309.626667pt;}
.y85{bottom:312.546667pt;}
.ye7{bottom:314.146667pt;}
.y21{bottom:314.746667pt;}
.y10b{bottom:317.346667pt;}
.y1a{bottom:319.106667pt;}
.yb2{bottom:323.426667pt;}
.y2e{bottom:324.986667pt;}
.y84{bottom:327.906667pt;}
.ye6{bottom:329.346667pt;}
.y20{bottom:330.266667pt;}
.y10a{bottom:332.706667pt;}
.yb1{bottom:338.786667pt;}
.y2d{bottom:340.346667pt;}
.y83{bottom:343.266667pt;}
.ye5{bottom:344.706667pt;}
.y1f{bottom:345.626667pt;}
.y109{bottom:348.066667pt;}
.yb0{bottom:353.986667pt;}
.y2c{bottom:355.546667pt;}
.y82{bottom:358.626667pt;}
.ye4{bottom:360.066667pt;}
.y1e{bottom:361.146667pt;}
.y108{bottom:363.426667pt;}
.yaf{bottom:370.786667pt;}
.y2b{bottom:370.906667pt;}
.y81{bottom:373.986667pt;}
.ye3{bottom:375.426667pt;}
.y107{bottom:378.786667pt;}
.y1d{bottom:379.226667pt;}
.y2a{bottom:386.266667pt;}
.y80{bottom:389.346667pt;}
.ye2{bottom:390.786667pt;}
.yae{bottom:391.586667pt;}
.y106{bottom:394.146667pt;}
.y29{bottom:401.626667pt;}
.y1c{bottom:403.546667pt;}
.y7f{bottom:404.546667pt;}
.ye1{bottom:405.986667pt;}
.y105{bottom:409.346667pt;}
.yad{bottom:412.226667pt;}
.y28{bottom:416.986667pt;}
.y1b{bottom:419.386667pt;}
.y7e{bottom:419.906667pt;}
.ye0{bottom:421.346667pt;}
.y104{bottom:424.706667pt;}
.yac{bottom:432.866667pt;}
.y7d{bottom:435.266667pt;}
.ydf{bottom:436.706667pt;}
.y103{bottom:440.066667pt;}
.y7c{bottom:450.626667pt;}
.yde{bottom:452.066667pt;}
.yab{bottom:453.506667pt;}
.y102{bottom:455.426667pt;}
.y7b{bottom:465.986667pt;}
.ydd{bottom:467.426667pt;}
.y101{bottom:470.786667pt;}
.yaa{bottom:474.146667pt;}
.y7a{bottom:481.346667pt;}
.ydc{bottom:482.786667pt;}
.y100{bottom:485.986667pt;}
.y79{bottom:496.546667pt;}
.ya9{bottom:496.706667pt;}
.ydb{bottom:497.986667pt;}
.yff{bottom:501.346667pt;}
.y78{bottom:511.906667pt;}
.ya8{bottom:512.066667pt;}
.yda{bottom:513.346667pt;}
.yfe{bottom:516.706667pt;}
.ya7{bottom:527.426667pt;}
.y77{bottom:528.226667pt;}
.yd9{bottom:528.706667pt;}
.yfd{bottom:532.066667pt;}
.ya6{bottom:542.813333pt;}
.y76{bottom:544.573333pt;}
.yd8{bottom:545.533333pt;}
.yfc{bottom:547.453333pt;}
.ya5{bottom:558.013333pt;}
.y75{bottom:559.933333pt;}
.yfb{bottom:562.813333pt;}
.yd7{bottom:566.173333pt;}
.ya4{bottom:573.373333pt;}
.y74{bottom:576.093333pt;}
.yfa{bottom:578.013333pt;}
.yd6{bottom:586.813333pt;}
.ya3{bottom:590.173333pt;}
.y73{bottom:591.453333pt;}
.yf9{bottom:593.373333pt;}
.y72{bottom:606.813333pt;}
.yd5{bottom:607.453333pt;}
.yf8{bottom:608.733333pt;}
.ya2{bottom:610.813333pt;}
.y71{bottom:623.133333pt;}
.yf7{bottom:624.093333pt;}
.yd4{bottom:628.253333pt;}
.ya1{bottom:631.453333pt;}
.y70{bottom:639.453333pt;}
.yd3{bottom:648.893333pt;}
.ya0{bottom:652.253333pt;}
.y6f{bottom:654.813333pt;}
.y9f{bottom:655.133333pt;}
.y6e{bottom:670.013333pt;}
.yd2{bottom:671.453333pt;}
.y9e{bottom:678.813333pt;}
.y9d{bottom:681.853333pt;}
.y6d{bottom:685.373333pt;}
.yd1{bottom:686.653333pt;}
.y6c{bottom:700.733333pt;}
.yd0{bottom:702.013333pt;}
.y9b{bottom:705.533333pt;}
.y9a{bottom:708.573333pt;}
.y6b{bottom:716.093333pt;}
.ycf{bottom:717.373333pt;}
.y6a{bottom:731.453333pt;}
.y99{bottom:732.253333pt;}
.yce{bottom:734.173333pt;}
.y69{bottom:746.653333pt;}
.y18{bottom:748.573333pt;}
.y98{bottom:752.893333pt;}
.ycd{bottom:754.813333pt;}
.y68{bottom:762.013333pt;}
.y95{bottom:773.533333pt;}
.yf{bottom:774.853333pt;}
.ycc{bottom:775.493333pt;}
.y97{bottom:776.613333pt;}
.y67{bottom:777.413333pt;}
.y66{bottom:792.773333pt;}
.ycb{bottom:796.293333pt;}
.y65{bottom:808.133333pt;}
.yca{bottom:816.933333pt;}
.y64{bottom:823.493333pt;}
.yc9{bottom:837.573333pt;}
.y63{bottom:838.693333pt;}
.y62{bottom:854.053333pt;}
.yc8{bottom:858.213333pt;}
.y61{bottom:869.413333pt;}
.yc7{bottom:878.853333pt;}
.y60{bottom:884.773333pt;}
.y5f{bottom:900.133333pt;}
.yc6{bottom:901.413333pt;}
.y5e{bottom:915.493333pt;}
.yc5{bottom:916.773333pt;}
.yd{bottom:919.973333pt;}
.y5d{bottom:930.693333pt;}
.yc4{bottom:932.133333pt;}
.y6{bottom:942.533333pt;}
.y5c{bottom:946.053333pt;}
.yc3{bottom:947.493333pt;}
.y5b{bottom:961.413333pt;}
.yc2{bottom:962.693333pt;}
.y5a{bottom:976.773333pt;}
.yc1{bottom:978.053333pt;}
.y59{bottom:992.133333pt;}
.yc0{bottom:994.853333pt;}
.y58{bottom:1007.493333pt;}
.ybf{bottom:1015.520000pt;}
.y57{bottom:1022.720000pt;}
.y56{bottom:1038.080000pt;}
.h26{height:1.787500pt;}
.h23{height:1.806250pt;}
.h22{height:15.200000pt;}
.h24{height:15.360000pt;}
.h25{height:21.280000pt;}
.h27{height:21.440000pt;}
.hc{height:22.240000pt;}
.h15{height:26.272000pt;}
.h21{height:27.392000pt;}
.h2{height:29.312000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.512000pt;}
.h1b{height:34.505000pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h20{height:38.672812pt;}
.he{height:39.113750pt;}
.h13{height:39.190000pt;}
.hb{height:39.840000pt;}
.h1a{height:40.488438pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.h1f{height:42.745000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h14{height:50.216250pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h6{height:54.093750pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h8{height:63.656250pt;}
.h5{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:145.120000pt;}
.h16{height:429.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:2.400000pt;}
.wf{width:52.000000pt;}
.w3{width:64.960000pt;}
.w10{width:82.752000pt;}
.wd{width:95.232000pt;}
.w1b{width:96.320000pt;}
.w14{width:113.280000pt;}
.wb{width:116.160000pt;}
.w5{width:135.066667pt;}
.w1c{width:137.626667pt;}
.w15{width:140.666667pt;}
.w18{width:141.146667pt;}
.w1d{width:163.386667pt;}
.w16{width:169.306667pt;}
.w17{width:182.746667pt;}
.w8{width:192.066667pt;}
.w19{width:256.386667pt;}
.wc{width:261.146667pt;}
.w12{width:273.626667pt;}
.w1a{width:284.386667pt;}
.w1e{width:336.066667pt;}
.w11{width:366.973333pt;}
.wa{width:379.453333pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w13{width:527.173333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:0.960000pt;}
.x2{left:7.712000pt;}
.x12{left:11.200000pt;}
.xb{left:33.792000pt;}
.x1{left:72.000000pt;}
.x18{left:75.040000pt;}
.x1c{left:78.080000pt;}
.xe{left:81.146667pt;}
.xf{left:85.626667pt;}
.x4{left:87.226667pt;}
.x13{left:96.031988pt;}
.x14{left:120.031988pt;}
.x15{left:144.026655pt;}
.xd{left:160.506667pt;}
.x1f{left:162.906667pt;}
.x16{left:168.026655pt;}
.x1e{left:175.386667pt;}
.x10{left:191.266667pt;}
.x5{left:207.066667pt;}
.x22{left:213.946655pt;}
.x29{left:216.026667pt;}
.x24{left:219.066667pt;}
.xc{left:234.306667pt;}
.x8{left:241.986667pt;}
.x17{left:254.306655pt;}
.x11{left:264.066667pt;}
.x6{left:295.106667pt;}
.x20{left:297.826655pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x27{left:334.786667pt;}
.x2a{left:382.786667pt;}
.x9{left:390.666667pt;}
.x25{left:391.586667pt;}
.x21{left:445.213333pt;}
.x1b{left:457.693333pt;}
.x1a{left:460.733333pt;}
.x1d{left:465.213333pt;}
.x26{left:577.693333pt;}
.x23{left:605.573333pt;}
.x28{left:622.533333pt;}
.x3{left:656.933333pt;}
}




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