
    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_2796c38cf1b76e6648662499.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_1cd6da97478a05349c37227f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_626b19b37e37a16766e3aa72.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_c594f6b5d70bb5d158c36e4d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_1c394419fb45cd37af0fde56.woff')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_796aec2d4a5bd67e65d49ce6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.331331;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.736816;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_dcb96bfc9a4dd7c7ef9f3b29.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a2be09e8896ec4670e5ecb3b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.331543;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_7ffd22f7a899e62f7a1b0bca.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_350f9abc3e32cdfd2c7ac378.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_7b15cc7dae51459a9199bcee.woff')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7f1feb8bf20f44a4e3f070ec.woff')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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:15.120000px;}
.ls17{letter-spacing:-0.810000px;}
.ls33{letter-spacing:-0.774000px;}
.ls19{letter-spacing:-0.612000px;}
.ls1a{letter-spacing:-0.504000px;}
.ls2a{letter-spacing:-0.399600px;}
.lsf{letter-spacing:-0.280200px;}
.ls14{letter-spacing:-0.259800px;}
.ls18{letter-spacing:-0.226200px;}
.ls21{letter-spacing:-0.112576px;}
.ls1e{letter-spacing:-0.108000px;}
.ls16{letter-spacing:-0.106800px;}
.ls1d{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.053280px;}
.ls35{letter-spacing:-0.031680px;}
.ls20{letter-spacing:-0.018973px;}
.ls1b{letter-spacing:-0.018000px;}
.ls13{letter-spacing:-0.017280px;}
.lse{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.018000px;}
.ls1f{letter-spacing:0.018973px;}
.ls2c{letter-spacing:0.037440px;}
.ls7{letter-spacing:0.054000px;}
.ls2d{letter-spacing:0.073440px;}
.ls8{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.113841px;}
.ls5{letter-spacing:0.138000px;}
.ls3{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.259920px;}
.ls34{letter-spacing:0.262080px;}
.ls15{letter-spacing:0.274800px;}
.ls23{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.298800px;}
.ls32{letter-spacing:0.331800px;}
.ls2f{letter-spacing:0.356701px;}
.ls0{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.403920px;}
.ls11{letter-spacing:0.547800px;}
.ls1c{letter-spacing:0.612000px;}
.ls10{letter-spacing:0.666000px;}
.ls1{letter-spacing:0.666720px;}
.ls2b{letter-spacing:0.979920px;}
.ls4{letter-spacing:2.268000px;}
.ls25{letter-spacing:2.826720px;}
.ls24{letter-spacing:3.546720px;}
.ls2e{letter-spacing:4.986720px;}
.ls26{letter-spacing:5.706720px;}
.ls22{letter-spacing:6.426720px;}
.ls27{letter-spacing:7.866720px;}
.lsa{letter-spacing:9.306720px;}
.ls36{letter-spacing:41.706720px;}
.lsd{letter-spacing:49.444879px;}
.ls31{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.sc1{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);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(89,89,89);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-59.760000px;}
.ws19{word-spacing:-18.414720px;}
.ws18{word-spacing:-18.383040px;}
.ws12{word-spacing:-17.511760px;}
.ws16{word-spacing:-17.399184px;}
.ws3{word-spacing:-17.161080px;}
.ws17{word-spacing:-16.945080px;}
.ws7{word-spacing:-16.888080px;}
.ws4{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.506480px;}
.ws6{word-spacing:-16.353480px;}
.ws2{word-spacing:-16.333080px;}
.ws10{word-spacing:-15.842853px;}
.wsf{word-spacing:-15.823879px;}
.ws11{word-spacing:-15.804906px;}
.ws1{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.012000px;}
.wsc{word-spacing:-14.994000px;}
.ws13{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.ws5{word-spacing:-10.808640px;}
.wsa{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.213800px;}
.wsd{word-spacing:-8.928000px;}
.ws14{word-spacing:0.000000px;}
._18{margin-left:-50.905078px;}
._4{margin-left:-8.732880px;}
._d{margin-left:-6.947760px;}
._16{margin-left:-5.534640px;}
._3{margin-left:-3.708000px;}
._2{margin-left:-2.695680px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._7{width:2.343600px;}
._6{width:3.589440px;}
._a{width:5.212560px;}
._b{width:6.382800px;}
._e{width:7.884000px;}
._5{width:9.322560px;}
._f{width:10.337760px;}
._9{width:11.412000px;}
._8{width:12.546000px;}
._10{width:13.842000px;}
._13{width:15.119280px;}
._c{width:16.470000px;}
._1b{width:18.346320px;}
._1a{width:19.466880px;}
._12{width:20.844000px;}
._11{width:21.978000px;}
._15{width:47.250000px;}
._14{width:49.293091px;}
._19{width:54.264142px;}
._17{width:55.336078px;}
._1c{width:62.742000px;}
._1d{width:63.814560px;}
.fc5{color:rgb(54,95,145);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fsc{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fsd{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fse{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y44{bottom:2.700000px;}
.y38{bottom:4.125000px;}
.y5{bottom:4.140000px;}
.y51{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y43{bottom:10.260000px;}
.yb5{bottom:17.640000px;}
.y4f{bottom:19.980000px;}
.y97{bottom:20.865000px;}
.y8c{bottom:20.880000px;}
.ybf{bottom:20.910000px;}
.y96{bottom:21.045000px;}
.y8d{bottom:21.060000px;}
.ybe{bottom:21.090000px;}
.yb8{bottom:21.225000px;}
.y8f{bottom:21.240000px;}
.y4{bottom:23.070000px;}
.y37{bottom:24.105000px;}
.y42{bottom:40.320000px;}
.y4e{bottom:40.500000px;}
.y36{bottom:47.145000px;}
.y3{bottom:48.090000px;}
.y41{bottom:51.480000px;}
.y7{bottom:57.600000px;}
.y40{bottom:62.640000px;}
.y4d{bottom:68.220000px;}
.y35{bottom:70.365000px;}
.y3f{bottom:74.340000px;}
.y3e{bottom:87.300000px;}
.y4c{bottom:91.800000px;}
.y39{bottom:93.060000px;}
.y34{bottom:93.405000px;}
.ye9{bottom:96.660000px;}
.y113{bottom:98.640000px;}
.y3d{bottom:100.260000px;}
.y7c{bottom:101.520000px;}
.y4b{bottom:109.620000px;}
.ya2{bottom:109.800000px;}
.ye8{bottom:116.640000px;}
.y4a{bottom:117.570000px;}
.y33{bottom:119.505000px;}
.y7b{bottom:121.500000px;}
.y112{bottom:121.680000px;}
.y3c{bottom:122.250000px;}
.y49{bottom:133.410000px;}
.ya1{bottom:135.900000px;}
.ye7{bottom:136.800000px;}
.y7a{bottom:144.540000px;}
.yc1{bottom:144.720000px;}
.y32{bottom:145.830000px;}
.y48{bottom:149.070000px;}
.y111{bottom:151.020000px;}
.ye6{bottom:156.960000px;}
.ya0{bottom:162.000000px;}
.yc0{bottom:164.520000px;}
.y47{bottom:164.550000px;}
.y79{bottom:167.760000px;}
.y31{bottom:168.870000px;}
.y110{bottom:177.840000px;}
.ye5{bottom:180.000000px;}
.y46{bottom:180.030000px;}
.y3b{bottom:184.350000px;}
.y9f{bottom:188.100000px;}
.y30{bottom:189.030000px;}
.y78{bottom:190.800000px;}
.y3a{bottom:194.970000px;}
.y45{bottom:195.150000px;}
.y10f{bottom:198.000000px;}
.ye4{bottom:203.040000px;}
.ybd{bottom:205.560000px;}
.y9e{bottom:211.350000px;}
.y2f{bottom:213.510000px;}
.y77{bottom:214.050000px;}
.y10e{bottom:218.010000px;}
.ye3{bottom:226.290000px;}
.y76{bottom:234.210000px;}
.y9d{bottom:234.390000px;}
.y2e{bottom:237.810000px;}
.y10d{bottom:238.170000px;}
.y1f{bottom:238.710000px;}
.ybc{bottom:246.465000px;}
.ye2{bottom:255.630000px;}
.y10c{bottom:258.330000px;}
.y2d{bottom:260.310000px;}
.y75{bottom:260.490000px;}
.y1e{bottom:262.830000px;}
.y10b{bottom:278.310000px;}
.y2c{bottom:281.190000px;}
.ye1{bottom:282.450000px;}
.y9c{bottom:286.770000px;}
.y1d{bottom:286.950000px;}
.y74{bottom:287.310000px;}
.ybb{bottom:287.505000px;}
.y10a{bottom:298.470000px;}
.y2b{bottom:301.890000px;}
.ye0{bottom:302.430000px;}
.y9b{bottom:309.810000px;}
.y73{bottom:310.350000px;}
.y1c{bottom:311.070000px;}
.y11{bottom:317.925000px;}
.ydf{bottom:322.590000px;}
.y109{bottom:324.750000px;}
.y2a{bottom:325.470000px;}
.yba{bottom:328.365000px;}
.y9a{bottom:329.970000px;}
.y72{bottom:333.390000px;}
.y1b{bottom:335.190000px;}
.yde{bottom:342.570000px;}
.y29{bottom:349.050000px;}
.y99{bottom:349.950000px;}
.y71{bottom:353.550000px;}
.y108{bottom:354.450000px;}
.y130{bottom:356.070000px;}
.y1a{bottom:359.520000px;}
.ydd{bottom:362.730000px;}
.y98{bottom:366.885000px;}
.yb9{bottom:369.405000px;}
.y28{bottom:372.480000px;}
.y70{bottom:373.710000px;}
.y12f{bottom:379.110000px;}
.y107{bottom:380.730000px;}
.ydc{bottom:382.890000px;}
.y19{bottom:383.640000px;}
.y27{bottom:393.360000px;}
.y6f{bottom:396.750000px;}
.y12e{bottom:405.210000px;}
.ydb{bottom:405.930000px;}
.y106{bottom:406.830000px;}
.y95{bottom:407.745000px;}
.y18{bottom:407.760000px;}
.yb7{bottom:410.265000px;}
.y26{bottom:414.060000px;}
.y6e{bottom:419.790000px;}
.y12d{bottom:431.310000px;}
.y17{bottom:431.880000px;}
.yda{bottom:432.030000px;}
.y105{bottom:432.930000px;}
.y25{bottom:437.640000px;}
.y6d{bottom:443.055000px;}
.y94{bottom:448.815000px;}
.yb6{bottom:451.335000px;}
.yd9{bottom:455.295000px;}
.y16{bottom:456.000000px;}
.y104{bottom:456.195000px;}
.y12c{bottom:457.455000px;}
.y24{bottom:461.220000px;}
.y6c{bottom:466.095000px;}
.yd8{bottom:475.275000px;}
.y103{bottom:476.175000px;}
.y15{bottom:480.120000px;}
.y23{bottom:481.920000px;}
.y12b{bottom:483.735000px;}
.y6b{bottom:489.315000px;}
.y93{bottom:489.675000px;}
.yb4{bottom:492.195000px;}
.yd7{bottom:495.435000px;}
.y102{bottom:496.335000px;}
.y22{bottom:502.800000px;}
.y14{bottom:504.240000px;}
.y12a{bottom:509.835000px;}
.y6a{bottom:515.415000px;}
.y101{bottom:516.495000px;}
.yd6{bottom:518.475000px;}
.y21{bottom:526.380000px;}
.y13{bottom:528.540000px;}
.y92{bottom:530.715000px;}
.yb3{bottom:533.775000px;}
.y129{bottom:535.935000px;}
.y100{bottom:536.475000px;}
.y69{bottom:544.755000px;}
.y20{bottom:547.800000px;}
.yd5{bottom:547.995000px;}
.y12{bottom:552.660000px;}
.yff{bottom:556.635000px;}
.yb2{bottom:556.815000px;}
.y128{bottom:562.035000px;}
.y91{bottom:571.575000px;}
.yd4{bottom:574.635000px;}
.y68{bottom:577.695000px;}
.yfe{bottom:579.675000px;}
.yb1{bottom:583.275000px;}
.y127{bottom:588.135000px;}
.yd3{bottom:597.675000px;}
.y67{bottom:604.515000px;}
.yfd{bottom:609.015000px;}
.yb0{bottom:609.915000px;}
.y90{bottom:612.615000px;}
.y126{bottom:614.235000px;}
.yd2{bottom:623.955000px;}
.y66{bottom:624.495000px;}
.yaf{bottom:632.955000px;}
.yfc{bottom:635.835000px;}
.y125{bottom:640.515000px;}
.y65{bottom:644.655000px;}
.yd1{bottom:650.055000px;}
.y8e{bottom:653.475000px;}
.yfb{bottom:658.875000px;}
.yae{bottom:659.235000px;}
.y124{bottom:666.615000px;}
.y64{bottom:667.695000px;}
.yd0{bottom:676.185000px;}
.yfa{bottom:682.125000px;}
.yad{bottom:682.305000px;}
.y63{bottom:690.945000px;}
.y123{bottom:692.745000px;}
.y8b{bottom:694.545000px;}
.ycf{bottom:699.405000px;}
.yf9{bottom:702.285000px;}
.yac{bottom:705.345000px;}
.y62{bottom:711.105000px;}
.y122{bottom:715.965000px;}
.yce{bottom:719.385000px;}
.yf8{bottom:722.265000px;}
.yab{bottom:731.625000px;}
.y61{bottom:734.145000px;}
.y121{bottom:735.945000px;}
.y8a{bottom:742.425000px;}
.yf7{bottom:745.305000px;}
.y60{bottom:757.185000px;}
.yaa{bottom:757.725000px;}
.y120{bottom:758.985000px;}
.y89{bottom:765.645000px;}
.yf6{bottom:768.525000px;}
.ycd{bottom:768.705000px;}
.y5f{bottom:780.405000px;}
.ya9{bottom:783.825000px;}
.y11f{bottom:785.265000px;}
.y88{bottom:785.805000px;}
.yf5{bottom:794.805000px;}
.ycc{bottom:798.045000px;}
.y5e{bottom:803.445000px;}
.y87{bottom:805.785000px;}
.ya8{bottom:807.045000px;}
.y11e{bottom:808.305000px;}
.yf4{bottom:824.505000px;}
.ycb{bottom:824.685000px;}
.y5d{bottom:826.485000px;}
.y11d{bottom:828.465000px;}
.ya7{bottom:830.085000px;}
.y86{bottom:832.245000px;}
.yf3{bottom:847.725000px;}
.yca{bottom:847.905000px;}
.y11c{bottom:848.625000px;}
.ya6{bottom:849.165000px;}
.y5c{bottom:849.705000px;}
.y85{bottom:865.185000px;}
.yf2{bottom:867.885000px;}
.y11b{bottom:868.605000px;}
.y5b{bottom:872.745000px;}
.yc9{bottom:877.245000px;}
.y10{bottom:882.825000px;}
.yf1{bottom:887.865000px;}
.y11a{bottom:888.765000px;}
.yf{bottom:891.465000px;}
.y84{bottom:894.885000px;}
.y5a{bottom:895.965000px;}
.yc8{bottom:906.945000px;}
.yf0{bottom:908.025000px;}
.y119{bottom:908.925000px;}
.y59{bottom:916.170000px;}
.ye{bottom:917.610000px;}
.y83{bottom:921.030000px;}
.yef{bottom:928.230000px;}
.y118{bottom:928.950000px;}
.yc7{bottom:933.090000px;}
.y58{bottom:939.210000px;}
.y82{bottom:947.130000px;}
.yd{bottom:947.490000px;}
.yee{bottom:948.210000px;}
.y117{bottom:949.110000px;}
.yc6{bottom:959.190000px;}
.y57{bottom:965.310000px;}
.yed{bottom:968.370000px;}
.y116{bottom:969.270000px;}
.yc{bottom:969.810000px;}
.y81{bottom:973.410000px;}
.yc5{bottom:985.470000px;}
.yec{bottom:988.530000px;}
.y115{bottom:992.310000px;}
.y56{bottom:994.650000px;}
.y80{bottom:999.510000px;}
.yb{bottom:999.690000px;}
.yeb{bottom:1008.510000px;}
.yc4{bottom:1011.570000px;}
.y114{bottom:1018.410000px;}
.ya{bottom:1019.130000px;}
.y55{bottom:1021.470000px;}
.y7f{bottom:1025.610000px;}
.yea{bottom:1031.550000px;}
.yc3{bottom:1034.610000px;}
.ya5{bottom:1038.570000px;}
.y9{bottom:1040.910000px;}
.y54{bottom:1044.510000px;}
.y7e{bottom:1051.710000px;}
.yc2{bottom:1054.770000px;}
.ya4{bottom:1061.610000px;}
.y53{bottom:1067.730000px;}
.y8{bottom:1072.230000px;}
.y50{bottom:1075.680000px;}
.y7d{bottom:1081.050000px;}
.ya3{bottom:1084.650000px;}
.y52{bottom:1087.710000px;}
.y6{bottom:1108.410000px;}
.y1{bottom:1123.890000px;}
.hb{height:4.165313px;}
.h15{height:12.006914px;}
.h19{height:27.540000px;}
.h12{height:29.678906px;}
.h21{height:33.645000px;}
.h11{height:35.332031px;}
.h1e{height:40.125000px;}
.h1c{height:40.140000px;}
.h20{height:40.161000px;}
.h23{height:40.176000px;}
.h1f{height:40.305000px;}
.h24{height:40.320000px;}
.h22{height:40.341000px;}
.h1d{height:40.350000px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.ha{height:48.229102px;}
.h13{height:52.971680px;}
.h14{height:54.421875px;}
.hf{height:57.243164px;}
.h7{height:57.324375px;}
.h17{height:58.621992px;}
.h6{height:58.651172px;}
.h16{height:60.338990px;}
.h9{height:63.349102px;}
.h1a{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h18{height:66.775148px;}
.h1b{height:76.324219px;}
.h2{height:84.990000px;}
.h8{height:89.299336px;}
.h4{height:117.180000px;}
.h10{height:224.130000px;}
.hc{height:562.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:75.621000px;}
.w7{width:88.189500px;}
.w9{width:91.836000px;}
.w2{width:104.074500px;}
.wc{width:106.740000px;}
.w4{width:132.694500px;}
.w8{width:142.941000px;}
.w6{width:162.720000px;}
.wa{width:272.355000px;}
.wd{width:302.115000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:6.876000px;}
.x1b{left:8.134500px;}
.x39{left:10.245000px;}
.x4{left:12.765000px;}
.x2a{left:14.023500px;}
.x1a{left:16.054500px;}
.x1f{left:18.214500px;}
.x18{left:19.654500px;}
.x2e{left:21.945000px;}
.x32{left:24.660000px;}
.x19{left:26.134500px;}
.x31{left:27.525000px;}
.x21{left:29.194500px;}
.x30{left:30.780000px;}
.x12{left:33.334500px;}
.x6{left:35.985000px;}
.x33{left:38.325000px;}
.x2f{left:43.380000px;}
.x20{left:47.734500px;}
.x13{left:50.794500px;}
.x3b{left:53.850000px;}
.x11{left:55.114500px;}
.x23{left:57.094500px;}
.x3a{left:58.890000px;}
.x1d{left:62.130000px;}
.x22{left:66.268500px;}
.x38{left:71.490000px;}
.x16{left:73.288500px;}
.x1{left:78.301500px;}
.x17{left:79.588500px;}
.x15{left:82.468500px;}
.x7{left:86.400000px;}
.x2{left:95.788500px;}
.x24{left:102.808500px;}
.x1e{left:106.768500px;}
.x3d{left:113.436000px;}
.x14{left:124.588500px;}
.x5{left:141.330000px;}
.x29{left:147.826500px;}
.x3{left:182.385000px;}
.x26{left:187.230000px;}
.x35{left:203.625000px;}
.x1c{left:219.105000px;}
.x2b{left:236.745000px;}
.x36{left:279.975000px;}
.xc{left:377.175000px;}
.x2c{left:380.415000px;}
.x37{left:387.435000px;}
.xb{left:402.735000px;}
.xd{left:407.055000px;}
.x25{left:429.045000px;}
.x2d{left:472.980000px;}
.x3c{left:517.605000px;}
.xa{left:523.365000px;}
.xf{left:535.425000px;}
.x28{left:542.625000px;}
.xe{left:635.550000px;}
.x34{left:659.130000px;}
.x9{left:766.050000px;}
.x8{left:784.230000px;}
.x10{left:806.760000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.720000pt;}
.ls33{letter-spacing:-0.688000pt;}
.ls19{letter-spacing:-0.544000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls2a{letter-spacing:-0.355200pt;}
.lsf{letter-spacing:-0.249067pt;}
.ls14{letter-spacing:-0.230933pt;}
.ls18{letter-spacing:-0.201067pt;}
.ls21{letter-spacing:-0.100068pt;}
.ls1e{letter-spacing:-0.096000pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls35{letter-spacing:-0.028160pt;}
.ls20{letter-spacing:-0.016865pt;}
.ls1b{letter-spacing:-0.016000pt;}
.ls13{letter-spacing:-0.015360pt;}
.lse{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.016000pt;}
.ls1f{letter-spacing:0.016865pt;}
.ls2c{letter-spacing:0.033280pt;}
.ls7{letter-spacing:0.048000pt;}
.ls2d{letter-spacing:0.065280pt;}
.ls8{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.101192pt;}
.ls5{letter-spacing:0.122667pt;}
.ls3{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.231040pt;}
.ls34{letter-spacing:0.232960pt;}
.ls15{letter-spacing:0.244267pt;}
.ls23{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.265600pt;}
.ls32{letter-spacing:0.294933pt;}
.ls2f{letter-spacing:0.317068pt;}
.ls0{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.359040pt;}
.ls11{letter-spacing:0.486933pt;}
.ls1c{letter-spacing:0.544000pt;}
.ls10{letter-spacing:0.592000pt;}
.ls1{letter-spacing:0.592640pt;}
.ls2b{letter-spacing:0.871040pt;}
.ls4{letter-spacing:2.016000pt;}
.ls25{letter-spacing:2.512640pt;}
.ls24{letter-spacing:3.152640pt;}
.ls2e{letter-spacing:4.432640pt;}
.ls26{letter-spacing:5.072640pt;}
.ls22{letter-spacing:5.712640pt;}
.ls27{letter-spacing:6.992640pt;}
.lsa{letter-spacing:8.272640pt;}
.ls36{letter-spacing:37.072640pt;}
.lsd{letter-spacing:43.951004pt;}
.ls31{letter-spacing:56.912640pt;}
.ws15{word-spacing:-53.120000pt;}
.ws19{word-spacing:-16.368640pt;}
.ws18{word-spacing:-16.340480pt;}
.ws12{word-spacing:-15.566009pt;}
.ws16{word-spacing:-15.465941pt;}
.ws3{word-spacing:-15.254293pt;}
.ws17{word-spacing:-15.062293pt;}
.ws7{word-spacing:-15.011627pt;}
.ws4{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.672427pt;}
.ws6{word-spacing:-14.536427pt;}
.ws2{word-spacing:-14.518293pt;}
.ws10{word-spacing:-14.082536pt;}
.wsf{word-spacing:-14.065670pt;}
.ws11{word-spacing:-14.048805pt;}
.ws1{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.344000pt;}
.wsc{word-spacing:-13.328000pt;}
.ws13{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.ws5{word-spacing:-9.607680pt;}
.wsa{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.078933pt;}
.wsd{word-spacing:-7.936000pt;}
.ws14{word-spacing:0.000000pt;}
._18{margin-left:-45.248958pt;}
._4{margin-left:-7.762560pt;}
._d{margin-left:-6.175787pt;}
._16{margin-left:-4.919680pt;}
._3{margin-left:-3.296000pt;}
._2{margin-left:-2.396160pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._7{width:2.083200pt;}
._6{width:3.190613pt;}
._a{width:4.633387pt;}
._b{width:5.673600pt;}
._e{width:7.008000pt;}
._5{width:8.286720pt;}
._f{width:9.189120pt;}
._9{width:10.144000pt;}
._8{width:11.152000pt;}
._10{width:12.304000pt;}
._13{width:13.439360pt;}
._c{width:14.640000pt;}
._1b{width:16.307840pt;}
._1a{width:17.303893pt;}
._12{width:18.528000pt;}
._11{width:19.536000pt;}
._15{width:42.000000pt;}
._14{width:43.816081pt;}
._19{width:48.234793pt;}
._17{width:49.187625pt;}
._1c{width:55.770667pt;}
._1d{width:56.724053pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fsc{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fsd{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fse{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.400000pt;}
.y38{bottom:3.666667pt;}
.y5{bottom:3.680000pt;}
.y51{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y43{bottom:9.120000pt;}
.yb5{bottom:15.680000pt;}
.y4f{bottom:17.760000pt;}
.y97{bottom:18.546667pt;}
.y8c{bottom:18.560000pt;}
.ybf{bottom:18.586667pt;}
.y96{bottom:18.706667pt;}
.y8d{bottom:18.720000pt;}
.ybe{bottom:18.746667pt;}
.yb8{bottom:18.866667pt;}
.y8f{bottom:18.880000pt;}
.y4{bottom:20.506667pt;}
.y37{bottom:21.426667pt;}
.y42{bottom:35.840000pt;}
.y4e{bottom:36.000000pt;}
.y36{bottom:41.906667pt;}
.y3{bottom:42.746667pt;}
.y41{bottom:45.760000pt;}
.y7{bottom:51.200000pt;}
.y40{bottom:55.680000pt;}
.y4d{bottom:60.640000pt;}
.y35{bottom:62.546667pt;}
.y3f{bottom:66.080000pt;}
.y3e{bottom:77.600000pt;}
.y4c{bottom:81.600000pt;}
.y39{bottom:82.720000pt;}
.y34{bottom:83.026667pt;}
.ye9{bottom:85.920000pt;}
.y113{bottom:87.680000pt;}
.y3d{bottom:89.120000pt;}
.y7c{bottom:90.240000pt;}
.y4b{bottom:97.440000pt;}
.ya2{bottom:97.600000pt;}
.ye8{bottom:103.680000pt;}
.y4a{bottom:104.506667pt;}
.y33{bottom:106.226667pt;}
.y7b{bottom:108.000000pt;}
.y112{bottom:108.160000pt;}
.y3c{bottom:108.666667pt;}
.y49{bottom:118.586667pt;}
.ya1{bottom:120.800000pt;}
.ye7{bottom:121.600000pt;}
.y7a{bottom:128.480000pt;}
.yc1{bottom:128.640000pt;}
.y32{bottom:129.626667pt;}
.y48{bottom:132.506667pt;}
.y111{bottom:134.240000pt;}
.ye6{bottom:139.520000pt;}
.ya0{bottom:144.000000pt;}
.yc0{bottom:146.240000pt;}
.y47{bottom:146.266667pt;}
.y79{bottom:149.120000pt;}
.y31{bottom:150.106667pt;}
.y110{bottom:158.080000pt;}
.ye5{bottom:160.000000pt;}
.y46{bottom:160.026667pt;}
.y3b{bottom:163.866667pt;}
.y9f{bottom:167.200000pt;}
.y30{bottom:168.026667pt;}
.y78{bottom:169.600000pt;}
.y3a{bottom:173.306667pt;}
.y45{bottom:173.466667pt;}
.y10f{bottom:176.000000pt;}
.ye4{bottom:180.480000pt;}
.ybd{bottom:182.720000pt;}
.y9e{bottom:187.866667pt;}
.y2f{bottom:189.786667pt;}
.y77{bottom:190.266667pt;}
.y10e{bottom:193.786667pt;}
.ye3{bottom:201.146667pt;}
.y76{bottom:208.186667pt;}
.y9d{bottom:208.346667pt;}
.y2e{bottom:211.386667pt;}
.y10d{bottom:211.706667pt;}
.y1f{bottom:212.186667pt;}
.ybc{bottom:219.080000pt;}
.ye2{bottom:227.226667pt;}
.y10c{bottom:229.626667pt;}
.y2d{bottom:231.386667pt;}
.y75{bottom:231.546667pt;}
.y1e{bottom:233.626667pt;}
.y10b{bottom:247.386667pt;}
.y2c{bottom:249.946667pt;}
.ye1{bottom:251.066667pt;}
.y9c{bottom:254.906667pt;}
.y1d{bottom:255.066667pt;}
.y74{bottom:255.386667pt;}
.ybb{bottom:255.560000pt;}
.y10a{bottom:265.306667pt;}
.y2b{bottom:268.346667pt;}
.ye0{bottom:268.826667pt;}
.y9b{bottom:275.386667pt;}
.y73{bottom:275.866667pt;}
.y1c{bottom:276.506667pt;}
.y11{bottom:282.600000pt;}
.ydf{bottom:286.746667pt;}
.y109{bottom:288.666667pt;}
.y2a{bottom:289.306667pt;}
.yba{bottom:291.880000pt;}
.y9a{bottom:293.306667pt;}
.y72{bottom:296.346667pt;}
.y1b{bottom:297.946667pt;}
.yde{bottom:304.506667pt;}
.y29{bottom:310.266667pt;}
.y99{bottom:311.066667pt;}
.y71{bottom:314.266667pt;}
.y108{bottom:315.066667pt;}
.y130{bottom:316.506667pt;}
.y1a{bottom:319.573333pt;}
.ydd{bottom:322.426667pt;}
.y98{bottom:326.120000pt;}
.yb9{bottom:328.360000pt;}
.y28{bottom:331.093333pt;}
.y70{bottom:332.186667pt;}
.y12f{bottom:336.986667pt;}
.y107{bottom:338.426667pt;}
.ydc{bottom:340.346667pt;}
.y19{bottom:341.013333pt;}
.y27{bottom:349.653333pt;}
.y6f{bottom:352.666667pt;}
.y12e{bottom:360.186667pt;}
.ydb{bottom:360.826667pt;}
.y106{bottom:361.626667pt;}
.y95{bottom:362.440000pt;}
.y18{bottom:362.453333pt;}
.yb7{bottom:364.680000pt;}
.y26{bottom:368.053333pt;}
.y6e{bottom:373.146667pt;}
.y12d{bottom:383.386667pt;}
.y17{bottom:383.893333pt;}
.yda{bottom:384.026667pt;}
.y105{bottom:384.826667pt;}
.y25{bottom:389.013333pt;}
.y6d{bottom:393.826667pt;}
.y94{bottom:398.946667pt;}
.yb6{bottom:401.186667pt;}
.yd9{bottom:404.706667pt;}
.y16{bottom:405.333333pt;}
.y104{bottom:405.506667pt;}
.y12c{bottom:406.626667pt;}
.y24{bottom:409.973333pt;}
.y6c{bottom:414.306667pt;}
.yd8{bottom:422.466667pt;}
.y103{bottom:423.266667pt;}
.y15{bottom:426.773333pt;}
.y23{bottom:428.373333pt;}
.y12b{bottom:429.986667pt;}
.y6b{bottom:434.946667pt;}
.y93{bottom:435.266667pt;}
.yb4{bottom:437.506667pt;}
.yd7{bottom:440.386667pt;}
.y102{bottom:441.186667pt;}
.y22{bottom:446.933333pt;}
.y14{bottom:448.213333pt;}
.y12a{bottom:453.186667pt;}
.y6a{bottom:458.146667pt;}
.y101{bottom:459.106667pt;}
.yd6{bottom:460.866667pt;}
.y21{bottom:467.893333pt;}
.y13{bottom:469.813333pt;}
.y92{bottom:471.746667pt;}
.yb3{bottom:474.466667pt;}
.y129{bottom:476.386667pt;}
.y100{bottom:476.866667pt;}
.y69{bottom:484.226667pt;}
.y20{bottom:486.933333pt;}
.yd5{bottom:487.106667pt;}
.y12{bottom:491.253333pt;}
.yff{bottom:494.786667pt;}
.yb2{bottom:494.946667pt;}
.y128{bottom:499.586667pt;}
.y91{bottom:508.066667pt;}
.yd4{bottom:510.786667pt;}
.y68{bottom:513.506667pt;}
.yfe{bottom:515.266667pt;}
.yb1{bottom:518.466667pt;}
.y127{bottom:522.786667pt;}
.yd3{bottom:531.266667pt;}
.y67{bottom:537.346667pt;}
.yfd{bottom:541.346667pt;}
.yb0{bottom:542.146667pt;}
.y90{bottom:544.546667pt;}
.y126{bottom:545.986667pt;}
.yd2{bottom:554.626667pt;}
.y66{bottom:555.106667pt;}
.yaf{bottom:562.626667pt;}
.yfc{bottom:565.186667pt;}
.y125{bottom:569.346667pt;}
.y65{bottom:573.026667pt;}
.yd1{bottom:577.826667pt;}
.y8e{bottom:580.866667pt;}
.yfb{bottom:585.666667pt;}
.yae{bottom:585.986667pt;}
.y124{bottom:592.546667pt;}
.y64{bottom:593.506667pt;}
.yd0{bottom:601.053333pt;}
.yfa{bottom:606.333333pt;}
.yad{bottom:606.493333pt;}
.y63{bottom:614.173333pt;}
.y123{bottom:615.773333pt;}
.y8b{bottom:617.373333pt;}
.ycf{bottom:621.693333pt;}
.yf9{bottom:624.253333pt;}
.yac{bottom:626.973333pt;}
.y62{bottom:632.093333pt;}
.y122{bottom:636.413333pt;}
.yce{bottom:639.453333pt;}
.yf8{bottom:642.013333pt;}
.yab{bottom:650.333333pt;}
.y61{bottom:652.573333pt;}
.y121{bottom:654.173333pt;}
.y8a{bottom:659.933333pt;}
.yf7{bottom:662.493333pt;}
.y60{bottom:673.053333pt;}
.yaa{bottom:673.533333pt;}
.y120{bottom:674.653333pt;}
.y89{bottom:680.573333pt;}
.yf6{bottom:683.133333pt;}
.ycd{bottom:683.293333pt;}
.y5f{bottom:693.693333pt;}
.ya9{bottom:696.733333pt;}
.y11f{bottom:698.013333pt;}
.y88{bottom:698.493333pt;}
.yf5{bottom:706.493333pt;}
.ycc{bottom:709.373333pt;}
.y5e{bottom:714.173333pt;}
.y87{bottom:716.253333pt;}
.ya8{bottom:717.373333pt;}
.y11e{bottom:718.493333pt;}
.yf4{bottom:732.893333pt;}
.ycb{bottom:733.053333pt;}
.y5d{bottom:734.653333pt;}
.y11d{bottom:736.413333pt;}
.ya7{bottom:737.853333pt;}
.y86{bottom:739.773333pt;}
.yf3{bottom:753.533333pt;}
.yca{bottom:753.693333pt;}
.y11c{bottom:754.333333pt;}
.ya6{bottom:754.813333pt;}
.y5c{bottom:755.293333pt;}
.y85{bottom:769.053333pt;}
.yf2{bottom:771.453333pt;}
.y11b{bottom:772.093333pt;}
.y5b{bottom:775.773333pt;}
.yc9{bottom:779.773333pt;}
.y10{bottom:784.733333pt;}
.yf1{bottom:789.213333pt;}
.y11a{bottom:790.013333pt;}
.yf{bottom:792.413333pt;}
.y84{bottom:795.453333pt;}
.y5a{bottom:796.413333pt;}
.yc8{bottom:806.173333pt;}
.yf0{bottom:807.133333pt;}
.y119{bottom:807.933333pt;}
.y59{bottom:814.373333pt;}
.ye{bottom:815.653333pt;}
.y83{bottom:818.693333pt;}
.yef{bottom:825.093333pt;}
.y118{bottom:825.733333pt;}
.yc7{bottom:829.413333pt;}
.y58{bottom:834.853333pt;}
.y82{bottom:841.893333pt;}
.yd{bottom:842.213333pt;}
.yee{bottom:842.853333pt;}
.y117{bottom:843.653333pt;}
.yc6{bottom:852.613333pt;}
.y57{bottom:858.053333pt;}
.yed{bottom:860.773333pt;}
.y116{bottom:861.573333pt;}
.yc{bottom:862.053333pt;}
.y81{bottom:865.253333pt;}
.yc5{bottom:875.973333pt;}
.yec{bottom:878.693333pt;}
.y115{bottom:882.053333pt;}
.y56{bottom:884.133333pt;}
.y80{bottom:888.453333pt;}
.yb{bottom:888.613333pt;}
.yeb{bottom:896.453333pt;}
.yc4{bottom:899.173333pt;}
.y114{bottom:905.253333pt;}
.ya{bottom:905.893333pt;}
.y55{bottom:907.973333pt;}
.y7f{bottom:911.653333pt;}
.yea{bottom:916.933333pt;}
.yc3{bottom:919.653333pt;}
.ya5{bottom:923.173333pt;}
.y9{bottom:925.253333pt;}
.y54{bottom:928.453333pt;}
.y7e{bottom:934.853333pt;}
.yc2{bottom:937.573333pt;}
.ya4{bottom:943.653333pt;}
.y53{bottom:949.093333pt;}
.y8{bottom:953.093333pt;}
.y50{bottom:956.160000pt;}
.y7d{bottom:960.933333pt;}
.ya3{bottom:964.133333pt;}
.y52{bottom:966.853333pt;}
.y6{bottom:985.253333pt;}
.y1{bottom:999.013333pt;}
.hb{height:3.702500pt;}
.h15{height:10.672812pt;}
.h19{height:24.480000pt;}
.h12{height:26.381250pt;}
.h21{height:29.906667pt;}
.h11{height:31.406250pt;}
.h1e{height:35.666667pt;}
.h1c{height:35.680000pt;}
.h20{height:35.698667pt;}
.h23{height:35.712000pt;}
.h1f{height:35.826667pt;}
.h24{height:35.840000pt;}
.h22{height:35.858667pt;}
.h1d{height:35.866667pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.ha{height:42.870313pt;}
.h13{height:47.085938pt;}
.h14{height:48.375000pt;}
.hf{height:50.882812pt;}
.h7{height:50.955000pt;}
.h17{height:52.108438pt;}
.h6{height:52.134375pt;}
.h16{height:53.634657pt;}
.h9{height:56.310313pt;}
.h1a{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h18{height:59.355688pt;}
.h1b{height:67.843750pt;}
.h2{height:75.546667pt;}
.h8{height:79.377187pt;}
.h4{height:104.160000pt;}
.h10{height:199.226667pt;}
.hc{height:499.733333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:67.218667pt;}
.w7{width:78.390667pt;}
.w9{width:81.632000pt;}
.w2{width:92.510667pt;}
.wc{width:94.880000pt;}
.w4{width:117.950667pt;}
.w8{width:127.058667pt;}
.w6{width:144.640000pt;}
.wa{width:242.093333pt;}
.wd{width:268.546667pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:6.112000pt;}
.x1b{left:7.230667pt;}
.x39{left:9.106667pt;}
.x4{left:11.346667pt;}
.x2a{left:12.465333pt;}
.x1a{left:14.270667pt;}
.x1f{left:16.190667pt;}
.x18{left:17.470667pt;}
.x2e{left:19.506667pt;}
.x32{left:21.920000pt;}
.x19{left:23.230667pt;}
.x31{left:24.466667pt;}
.x21{left:25.950667pt;}
.x30{left:27.360000pt;}
.x12{left:29.630667pt;}
.x6{left:31.986667pt;}
.x33{left:34.066667pt;}
.x2f{left:38.560000pt;}
.x20{left:42.430667pt;}
.x13{left:45.150667pt;}
.x3b{left:47.866667pt;}
.x11{left:48.990667pt;}
.x23{left:50.750667pt;}
.x3a{left:52.346667pt;}
.x1d{left:55.226667pt;}
.x22{left:58.905333pt;}
.x38{left:63.546667pt;}
.x16{left:65.145333pt;}
.x1{left:69.601333pt;}
.x17{left:70.745333pt;}
.x15{left:73.305333pt;}
.x7{left:76.800000pt;}
.x2{left:85.145333pt;}
.x24{left:91.385333pt;}
.x1e{left:94.905333pt;}
.x3d{left:100.832000pt;}
.x14{left:110.745333pt;}
.x5{left:125.626667pt;}
.x29{left:131.401333pt;}
.x3{left:162.120000pt;}
.x26{left:166.426667pt;}
.x35{left:181.000000pt;}
.x1c{left:194.760000pt;}
.x2b{left:210.440000pt;}
.x36{left:248.866667pt;}
.xc{left:335.266667pt;}
.x2c{left:338.146667pt;}
.x37{left:344.386667pt;}
.xb{left:357.986667pt;}
.xd{left:361.826667pt;}
.x25{left:381.373333pt;}
.x2d{left:420.426667pt;}
.x3c{left:460.093333pt;}
.xa{left:465.213333pt;}
.xf{left:475.933333pt;}
.x28{left:482.333333pt;}
.xe{left:564.933333pt;}
.x34{left:585.893333pt;}
.x9{left:680.933333pt;}
.x8{left:697.093333pt;}
.x10{left:717.120000pt;}
}




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