
    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_8548a761b8cce594525daf33.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_be0b67544f7afcd897059d04.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_c50f8a74d58b00c8c5b2eb64.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_a3d19868e79f03d956bd8c93.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_75e740571b66ac518dd780de.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_56e9550a74fea65cce9bb5fd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.675781;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_f1b190123ed16287b5ff336b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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_9fde13e6245913efad0325bd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_bb102081cd67ff53ed0cc985.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_9d931bcd510b5c0f572847e8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.689941;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_58f5a0a308e82d0386878044.woff')format("woff");}.ffb{font-family:ffb;line-height:0.689941;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_325394252cbe943ccae5fb1c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_a01d2f6db25ee1033442b72b.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ebeda0bf8ac3815260c0d361.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_2b3a62ba712e2a975b4c0048.woff')format("woff");}.fff{font-family:fff;line-height:0.891602;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_c11719df733c312485968275.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_af53ede6b5d912a05c35cf9b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_0b8edffe8b7c13abe62d5e2a.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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;}
.m2{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls22{letter-spacing:-1.536192px;}
.ls28{letter-spacing:-1.457568px;}
.ls21{letter-spacing:-1.439424px;}
.ls31{letter-spacing:-0.985824px;}
.ls30{letter-spacing:-0.937440px;}
.ls33{letter-spacing:-0.840672px;}
.ls20{letter-spacing:-0.780192px;}
.ls32{letter-spacing:-0.743904px;}
.ls1f{letter-spacing:-0.459648px;}
.ls35{letter-spacing:-0.417312px;}
.ls10{letter-spacing:-0.381024px;}
.ls2f{letter-spacing:-0.361152px;}
.ls1a{letter-spacing:-0.338688px;}
.ls1d{letter-spacing:-0.320544px;}
.ls1c{letter-spacing:-0.302400px;}
.ls2e{letter-spacing:-0.273600px;}
.ls36{letter-spacing:-0.272160px;}
.ls19{letter-spacing:-0.260064px;}
.ls1b{letter-spacing:-0.241920px;}
.ls11{letter-spacing:-0.223776px;}
.ls15{letter-spacing:-0.198720px;}
.ls13{letter-spacing:-0.175392px;}
.lsf{letter-spacing:-0.158976px;}
.ls23{letter-spacing:-0.157248px;}
.lse{letter-spacing:-0.152352px;}
.lsd{letter-spacing:-0.145728px;}
.ls1e{letter-spacing:-0.145152px;}
.ls14{letter-spacing:-0.132480px;}
.ls12{letter-spacing:-0.120960px;}
.lsc{letter-spacing:-0.119232px;}
.lsb{letter-spacing:-0.079488px;}
.lsa{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.059904px;}
.ls7{letter-spacing:0.060048px;}
.ls25{letter-spacing:0.123552px;}
.ls1{letter-spacing:0.159840px;}
.ls0{letter-spacing:0.160560px;}
.ls26{letter-spacing:0.161568px;}
.ls9{letter-spacing:0.194832px;}
.ls2{letter-spacing:0.233856px;}
.ls4{letter-spacing:0.239040px;}
.ls3{letter-spacing:0.240048px;}
.ls5{letter-spacing:0.240480px;}
.ls27{letter-spacing:0.242352px;}
.ls16{letter-spacing:0.275616px;}
.ls24{letter-spacing:0.285120px;}
.ls18{letter-spacing:0.317376px;}
.ls34{letter-spacing:0.423936px;}
.ls17{letter-spacing:0.442656px;}
.ls2c{letter-spacing:3.358944px;}
.ls2a{letter-spacing:5.953248px;}
.ls8{letter-spacing:18.658080px;}
.ls29{letter-spacing:22.873680px;}
.ls38{letter-spacing:42.416640px;}
.ls2b{letter-spacing:42.886224px;}
.ls37{letter-spacing:46.186560px;}
.ls2d{letter-spacing:63.587520px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.480512px;}
.ws2{word-spacing:-16.440768px;}
.ws5{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.974848px;}
.wsb{word-spacing:-14.962752px;}
.ws1a{word-spacing:-14.944608px;}
.ws19{word-spacing:-14.896224px;}
.ws7{word-spacing:-14.878080px;}
.ws9{word-spacing:-14.859936px;}
.ws1b{word-spacing:-14.847840px;}
.ws6{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.wsd{word-spacing:-14.817600px;}
.ws1c{word-spacing:-14.799456px;}
.ws8{word-spacing:-14.781312px;}
.ws4{word-spacing:-14.738976px;}
.ws17{word-spacing:-14.702688px;}
.ws15{word-spacing:-14.376096px;}
.wsc{word-spacing:-14.339808px;}
.ws16{word-spacing:-14.279328px;}
.ws13{word-spacing:-14.182560px;}
.ws14{word-spacing:-14.134176px;}
.ws12{word-spacing:-13.680576px;}
.ws10{word-spacing:-13.680000px;}
.wse{word-spacing:-13.662432px;}
.ws11{word-spacing:-13.318848px;}
.ws18{word-spacing:-0.060480px;}
.wsf{word-spacing:0.000000px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._8{width:2.764512px;}
._2{width:4.131072px;}
._3{width:5.771520px;}
._4{width:7.084800px;}
._11{width:8.398080px;}
._19{width:9.581760px;}
._c{width:10.825920px;}
._5{width:12.096000px;}
._a{width:13.106016px;}
._7{width:15.088752px;}
._1f{width:16.994880px;}
._9{width:18.815616px;}
._6{width:19.846944px;}
._f{width:21.279456px;}
._12{width:22.689504px;}
._e{width:24.433920px;}
._1e{width:26.127360px;}
._1b{width:27.276480px;}
._d{width:28.486080px;}
._14{width:30.300480px;}
._13{width:31.570560px;}
._b{width:33.765696px;}
._1a{width:35.199360px;}
._18{width:36.587520px;}
._16{width:38.226240px;}
._10{width:40.158720px;}
._1d{width:42.094080px;}
._23{width:43.485120px;}
._22{width:45.299520px;}
._27{width:46.453392px;}
._2a{width:47.597760px;}
._26{width:48.807360px;}
._20{width:49.896000px;}
._1c{width:51.287040px;}
._24{width:52.436160px;}
._21{width:54.250560px;}
._25{width:57.395520px;}
._29{width:60.482880px;}
._28{width:72.576000px;}
._15{width:78.079680px;}
._17{width:86.990400px;}
.fc3{color:transparent;}
.fc2{color:rgb(31,72,124);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y44{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.y43{bottom:1.740000px;}
.yd1{bottom:3.840000px;}
.ydb{bottom:4.560000px;}
.ya2{bottom:4.620000px;}
.y97{bottom:4.740000px;}
.y85{bottom:4.800000px;}
.y99{bottom:40.740000px;}
.y8c{bottom:40.800000px;}
.y46{bottom:53.640000px;}
.y6{bottom:58.320000px;}
.y87{bottom:58.800000px;}
.ybe{bottom:59.340000px;}
.y42{bottom:64.500000px;}
.ya7{bottom:76.620000px;}
.y5{bottom:86.400000px;}
.yb9{bottom:90.660000px;}
.y9c{bottom:94.740000px;}
.yfe{bottom:113.760000px;}
.y41{bottom:117.360000px;}
.y3c{bottom:118.080000px;}
.y13c{bottom:120.960000px;}
.y169{bottom:121.680000px;}
.ya0{bottom:124.500000px;}
.yfd{bottom:131.040000px;}
.y3b{bottom:135.360000px;}
.y13b{bottom:138.240000px;}
.y168{bottom:138.960000px;}
.y9b{bottom:142.500000px;}
.y40{bottom:143.640000px;}
.y106{bottom:148.320000px;}
.ye0{bottom:152.280000px;}
.y3a{bottom:152.640000px;}
.y13a{bottom:155.520000px;}
.y167{bottom:156.240000px;}
.yfc{bottom:157.320000px;}
.y9f{bottom:160.500000px;}
.y105{bottom:165.600000px;}
.yaf{bottom:166.620000px;}
.ydf{bottom:169.560000px;}
.y39{bottom:169.920000px;}
.y139{bottom:172.800000px;}
.y166{bottom:173.520000px;}
.yfb{bottom:174.600000px;}
.y9e{bottom:178.500000px;}
.y104{bottom:182.880000px;}
.yde{bottom:183.000000px;}
.y38{bottom:187.200000px;}
.y138{bottom:190.080000px;}
.y165{bottom:190.800000px;}
.yfa{bottom:191.880000px;}
.y3f{bottom:196.200000px;}
.y98{bottom:196.500000px;}
.y103{bottom:200.160000px;}
.ydd{bottom:201.000000px;}
.y37{bottom:204.480000px;}
.y137{bottom:207.360000px;}
.y164{bottom:208.080000px;}
.yf9{bottom:209.160000px;}
.y3e{bottom:213.480000px;}
.y9d{bottom:214.500000px;}
.y102{bottom:217.440000px;}
.ydc{bottom:219.000000px;}
.y36{bottom:221.760000px;}
.y136{bottom:224.280000px;}
.y163{bottom:225.360000px;}
.yf8{bottom:226.440000px;}
.y3d{bottom:230.760000px;}
.y9a{bottom:232.500000px;}
.y101{bottom:234.720000px;}
.yda{bottom:237.000000px;}
.y135{bottom:241.560000px;}
.y162{bottom:242.280000px;}
.yf7{bottom:243.720000px;}
.y35{bottom:247.680000px;}
.y96{bottom:250.500000px;}
.y100{bottom:252.000000px;}
.yc1{bottom:256.620000px;}
.y134{bottom:258.840000px;}
.yd9{bottom:259.560000px;}
.yf6{bottom:261.000000px;}
.y34{bottom:264.960000px;}
.yff{bottom:268.920000px;}
.y95{bottom:273.240000px;}
.y133{bottom:276.120000px;}
.yd8{bottom:276.840000px;}
.yf5{bottom:277.920000px;}
.y33{bottom:282.240000px;}
.y94{bottom:290.520000px;}
.yd7{bottom:291.000000px;}
.y132{bottom:293.400000px;}
.y161{bottom:294.120000px;}
.yf4{bottom:295.200000px;}
.y32{bottom:299.520000px;}
.y93{bottom:307.800000px;}
.yd6{bottom:309.000000px;}
.y131{bottom:310.680000px;}
.y160{bottom:311.400000px;}
.yf3{bottom:312.480000px;}
.y31{bottom:316.800000px;}
.y8f{bottom:321.000000px;}
.yd5{bottom:327.000000px;}
.y130{bottom:327.960000px;}
.y15f{bottom:328.680000px;}
.yf2{bottom:329.760000px;}
.y30{bottom:334.080000px;}
.y92{bottom:339.000000px;}
.yd4{bottom:345.000000px;}
.y12f{bottom:345.240000px;}
.y15e{bottom:345.960000px;}
.yf1{bottom:347.040000px;}
.y2f{bottom:351.360000px;}
.y91{bottom:357.000000px;}
.y12e{bottom:362.520000px;}
.yd3{bottom:363.000000px;}
.y15d{bottom:363.240000px;}
.yf0{bottom:364.320000px;}
.y2e{bottom:368.640000px;}
.y90{bottom:375.000000px;}
.y15c{bottom:380.520000px;}
.yd2{bottom:381.000000px;}
.yef{bottom:381.600000px;}
.y2d{bottom:385.920000px;}
.y12d{bottom:388.800000px;}
.y8b{bottom:393.000000px;}
.yee{bottom:395.640000px;}
.y15b{bottom:397.800000px;}
.yd0{bottom:399.000000px;}
.y12c{bottom:406.080000px;}
.y8e{bottom:411.000000px;}
.y2c{bottom:412.200000px;}
.y15a{bottom:415.080000px;}
.ycf{bottom:420.840000px;}
.y12b{bottom:423.000000px;}
.y8d{bottom:429.000000px;}
.y159{bottom:432.000000px;}
.yce{bottom:438.120000px;}
.y2b{bottom:439.560000px;}
.y12a{bottom:440.280000px;}
.y86{bottom:447.000000px;}
.y158{bottom:449.280000px;}
.yc0{bottom:451.500000px;}
.y2a{bottom:453.600000px;}
.y129{bottom:457.560000px;}
.y8a{bottom:465.000000px;}
.y157{bottom:466.560000px;}
.y29{bottom:467.640000px;}
.ycd{bottom:469.500000px;}
.y128{bottom:474.840000px;}
.y28{bottom:481.320000px;}
.y89{bottom:483.000000px;}
.y156{bottom:483.840000px;}
.ycc{bottom:487.500000px;}
.y127{bottom:492.120000px;}
.y27{bottom:496.440000px;}
.y88{bottom:501.000000px;}
.y155{bottom:501.120000px;}
.ycb{bottom:505.500000px;}
.y126{bottom:509.400000px;}
.y26{bottom:513.720000px;}
.y154{bottom:518.400000px;}
.y84{bottom:519.000000px;}
.yca{bottom:523.500000px;}
.y125{bottom:526.680000px;}
.y25{bottom:531.000000px;}
.y153{bottom:535.680000px;}
.yc5{bottom:541.500000px;}
.y83{bottom:541.800000px;}
.y124{bottom:543.960000px;}
.y24{bottom:548.280000px;}
.y152{bottom:552.960000px;}
.y82{bottom:559.080000px;}
.yc9{bottom:559.500000px;}
.y123{bottom:561.240000px;}
.y23{bottom:565.560000px;}
.y151{bottom:570.240000px;}
.y81{bottom:576.360000px;}
.yc8{bottom:577.500000px;}
.y22{bottom:582.840000px;}
.y122{bottom:587.520000px;}
.y80{bottom:593.640000px;}
.yc7{bottom:595.500000px;}
.y21{bottom:600.120000px;}
.y150{bottom:604.800000px;}
.y61{bottom:607.320000px;}
.yc6{bottom:613.500000px;}
.y121{bottom:613.800000px;}
.y20{bottom:617.400000px;}
.y7f{bottom:619.920000px;}
.y14f{bottom:622.080000px;}
.y120{bottom:631.080000px;}
.ybd{bottom:631.500000px;}
.y60{bottom:633.600000px;}
.y1f{bottom:634.680000px;}
.y7e{bottom:637.200000px;}
.y14e{bottom:639.000000px;}
.y11f{bottom:648.000000px;}
.yc4{bottom:649.500000px;}
.y5f{bottom:650.880000px;}
.y1e{bottom:651.600000px;}
.y7d{bottom:654.480000px;}
.y14d{bottom:656.280000px;}
.yed{bottom:662.760000px;}
.y11e{bottom:665.280000px;}
.yc3{bottom:667.500000px;}
.y1d{bottom:668.880000px;}
.y7c{bottom:671.400000px;}
.y14c{bottom:673.560000px;}
.y5e{bottom:677.160000px;}
.yec{bottom:680.040000px;}
.y11d{bottom:682.560000px;}
.yc2{bottom:685.500000px;}
.y1c{bottom:686.160000px;}
.y7b{bottom:688.680000px;}
.y14b{bottom:690.840000px;}
.yeb{bottom:693.720000px;}
.y5d{bottom:694.800000px;}
.y11c{bottom:699.840000px;}
.y1b{bottom:703.440000px;}
.ybf{bottom:703.500000px;}
.y7a{bottom:705.960000px;}
.y5c{bottom:712.800000px;}
.y11b{bottom:717.120000px;}
.y1a{bottom:720.720000px;}
.yb7{bottom:721.500000px;}
.y79{bottom:723.240000px;}
.y5b{bottom:730.080000px;}
.y11a{bottom:734.400000px;}
.y19{bottom:738.000000px;}
.ybc{bottom:739.500000px;}
.y78{bottom:740.520000px;}
.y14a{bottom:743.400000px;}
.y5a{bottom:748.080000px;}
.y119{bottom:751.680000px;}
.y18{bottom:755.280000px;}
.ybb{bottom:757.500000px;}
.y77{bottom:757.800000px;}
.y149{bottom:760.680000px;}
.y59{bottom:766.080000px;}
.y17{bottom:772.560000px;}
.y76{bottom:775.080000px;}
.yba{bottom:775.500000px;}
.y118{bottom:777.960000px;}
.y58{bottom:783.360000px;}
.y16{bottom:789.840000px;}
.y75{bottom:792.360000px;}
.yb8{bottom:793.500000px;}
.y117{bottom:795.240000px;}
.y57{bottom:801.360000px;}
.y15{bottom:809.280000px;}
.y74{bottom:809.640000px;}
.yae{bottom:811.500000px;}
.y116{bottom:812.520000px;}
.y56{bottom:819.360000px;}
.y14{bottom:826.560000px;}
.y73{bottom:826.920000px;}
.yb6{bottom:829.500000px;}
.y148{bottom:829.800000px;}
.y55{bottom:836.280000px;}
.y115{bottom:838.800000px;}
.y13{bottom:843.840000px;}
.y72{bottom:844.200000px;}
.y147{bottom:846.720000px;}
.yb5{bottom:847.500000px;}
.y114{bottom:855.720000px;}
.y71{bottom:861.480000px;}
.y12{bottom:863.280000px;}
.y146{bottom:864.000000px;}
.yb4{bottom:865.500000px;}
.y113{bottom:873.000000px;}
.y70{bottom:878.400000px;}
.y145{bottom:881.280000px;}
.yb3{bottom:883.500000px;}
.y11{bottom:885.960000px;}
.y54{bottom:889.560000px;}
.y112{bottom:890.280000px;}
.y6f{bottom:895.680000px;}
.y10{bottom:897.840000px;}
.y144{bottom:898.560000px;}
.yac{bottom:901.500000px;}
.y53{bottom:906.840000px;}
.y111{bottom:907.560000px;}
.y6e{bottom:912.960000px;}
.y143{bottom:915.840000px;}
.yb2{bottom:919.500000px;}
.yf{bottom:920.520000px;}
.y52{bottom:924.120000px;}
.y110{bottom:924.840000px;}
.ye{bottom:932.400000px;}
.y142{bottom:933.120000px;}
.yb1{bottom:937.500000px;}
.y6d{bottom:939.240000px;}
.y51{bottom:941.400000px;}
.y10f{bottom:942.120000px;}
.y141{bottom:950.400000px;}
.yd{bottom:954.720000px;}
.yb0{bottom:955.500000px;}
.y6c{bottom:956.520000px;}
.y50{bottom:958.680000px;}
.y10e{bottom:959.400000px;}
.yea{bottom:960.840000px;}
.yc{bottom:966.600000px;}
.y140{bottom:967.680000px;}
.yad{bottom:973.500000px;}
.y6b{bottom:974.880000px;}
.ye9{bottom:975.000000px;}
.y4f{bottom:975.960000px;}
.y13f{bottom:984.960000px;}
.y10d{bottom:985.680000px;}
.yb{bottom:989.280000px;}
.ya6{bottom:991.500000px;}
.ye8{bottom:993.000000px;}
.y6a{bottom:993.240000px;}
.y4e{bottom:1002.240000px;}
.y10c{bottom:1002.960000px;}
.yab{bottom:1009.500000px;}
.ye7{bottom:1011.000000px;}
.y69{bottom:1011.600000px;}
.y4d{bottom:1019.520000px;}
.ya{bottom:1019.880000px;}
.y10b{bottom:1020.240000px;}
.yaa{bottom:1027.500000px;}
.ye6{bottom:1029.000000px;}
.y68{bottom:1029.960000px;}
.y4c{bottom:1036.800000px;}
.y10a{bottom:1037.520000px;}
.ya9{bottom:1045.500000px;}
.ye5{bottom:1047.000000px;}
.y67{bottom:1048.320000px;}
.y9{bottom:1050.480000px;}
.y4b{bottom:1053.720000px;}
.y109{bottom:1054.800000px;}
.ya8{bottom:1063.500000px;}
.ye4{bottom:1065.000000px;}
.y66{bottom:1066.320000px;}
.y13e{bottom:1071.000000px;}
.y108{bottom:1071.720000px;}
.y8{bottom:1074.600000px;}
.y4a{bottom:1080.000000px;}
.ya5{bottom:1081.500000px;}
.ye3{bottom:1083.000000px;}
.y65{bottom:1084.680000px;}
.y107{bottom:1089.000000px;}
.y13d{bottom:1097.280000px;}
.ya4{bottom:1099.500000px;}
.ye2{bottom:1101.000000px;}
.y64{bottom:1103.040000px;}
.y49{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.ya3{bottom:1117.500000px;}
.ye1{bottom:1119.000000px;}
.y63{bottom:1121.400000px;}
.y48{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.ya1{bottom:1135.500000px;}
.y62{bottom:1139.760000px;}
.y47{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y45{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hd{height:4.500000px;}
.h16{height:18.000000px;}
.hf{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.he{height:37.085625px;}
.h5{height:40.989375px;}
.ha{height:42.022969px;}
.h6{height:44.149219px;}
.hc{height:44.763750px;}
.h2{height:44.893125px;}
.h3{height:48.095156px;}
.h11{height:55.500000px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h10{height:73.500000px;}
.h13{height:91.500000px;}
.h12{height:109.500000px;}
.h14{height:181.500000px;}
.h15{height:271.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w7{width:49.500000px;}
.w8{width:93.000000px;}
.wd{width:99.000000px;}
.w12{width:105.000000px;}
.w9{width:111.000000px;}
.w5{width:121.500000px;}
.w10{width:162.000000px;}
.w4{width:208.500000px;}
.wb{width:217.500000px;}
.wa{width:226.500000px;}
.we{width:231.000000px;}
.w3{width:246.000000px;}
.w13{width:247.500000px;}
.w11{width:342.000000px;}
.wc{width:366.000000px;}
.wf{width:369.000000px;}
.w6{width:444.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x11{left:1.560048px;}
.x19{left:7.500000px;}
.x1b{left:8.519892px;}
.x18{left:100.500000px;}
.x5{left:108.000000px;}
.x12{left:109.746108px;}
.xc{left:112.206312px;}
.x16{left:115.017336px;}
.x14{left:119.875500px;}
.x9{left:123.031512px;}
.xb{left:127.411380px;}
.x4{left:129.812616px;}
.x13{left:135.000000px;}
.x10{left:160.500000px;}
.xe{left:206.064684px;}
.xd{left:207.306144px;}
.xa{left:209.181168px;}
.x2c{left:222.723648px;}
.x26{left:225.631332px;}
.x23{left:235.647216px;}
.x2{left:298.937628px;}
.x2d{left:324.819576px;}
.x22{left:327.000000px;}
.x1a{left:345.000000px;}
.x8{left:359.270496px;}
.x17{left:363.132720px;}
.x1e{left:366.706800px;}
.x29{left:442.500000px;}
.x3{left:446.474880px;}
.x24{left:465.000000px;}
.x27{left:469.500000px;}
.xf{left:473.040000px;}
.x15{left:500.040000px;}
.x1{left:514.061640px;}
.x1f{left:543.000000px;}
.x2a{left:546.000000px;}
.x1c{left:552.000000px;}
.x25{left:562.500000px;}
.x20{left:591.000000px;}
.x7{left:603.506520px;}
.x28{left:631.500000px;}
.x2b{left:665.894880px;}
.x1d{left:672.000000px;}
.x21{left:682.500000px;}
.x6{left:768.224520px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls22{letter-spacing:-1.365504pt;}
.ls28{letter-spacing:-1.295616pt;}
.ls21{letter-spacing:-1.279488pt;}
.ls31{letter-spacing:-0.876288pt;}
.ls30{letter-spacing:-0.833280pt;}
.ls33{letter-spacing:-0.747264pt;}
.ls20{letter-spacing:-0.693504pt;}
.ls32{letter-spacing:-0.661248pt;}
.ls1f{letter-spacing:-0.408576pt;}
.ls35{letter-spacing:-0.370944pt;}
.ls10{letter-spacing:-0.338688pt;}
.ls2f{letter-spacing:-0.321024pt;}
.ls1a{letter-spacing:-0.301056pt;}
.ls1d{letter-spacing:-0.284928pt;}
.ls1c{letter-spacing:-0.268800pt;}
.ls2e{letter-spacing:-0.243200pt;}
.ls36{letter-spacing:-0.241920pt;}
.ls19{letter-spacing:-0.231168pt;}
.ls1b{letter-spacing:-0.215040pt;}
.ls11{letter-spacing:-0.198912pt;}
.ls15{letter-spacing:-0.176640pt;}
.ls13{letter-spacing:-0.155904pt;}
.lsf{letter-spacing:-0.141312pt;}
.ls23{letter-spacing:-0.139776pt;}
.lse{letter-spacing:-0.135424pt;}
.lsd{letter-spacing:-0.129536pt;}
.ls1e{letter-spacing:-0.129024pt;}
.ls14{letter-spacing:-0.117760pt;}
.ls12{letter-spacing:-0.107520pt;}
.lsc{letter-spacing:-0.105984pt;}
.lsb{letter-spacing:-0.070656pt;}
.lsa{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.053248pt;}
.ls7{letter-spacing:0.053376pt;}
.ls25{letter-spacing:0.109824pt;}
.ls1{letter-spacing:0.142080pt;}
.ls0{letter-spacing:0.142720pt;}
.ls26{letter-spacing:0.143616pt;}
.ls9{letter-spacing:0.173184pt;}
.ls2{letter-spacing:0.207872pt;}
.ls4{letter-spacing:0.212480pt;}
.ls3{letter-spacing:0.213376pt;}
.ls5{letter-spacing:0.213760pt;}
.ls27{letter-spacing:0.215424pt;}
.ls16{letter-spacing:0.244992pt;}
.ls24{letter-spacing:0.253440pt;}
.ls18{letter-spacing:0.282112pt;}
.ls34{letter-spacing:0.376832pt;}
.ls17{letter-spacing:0.393472pt;}
.ls2c{letter-spacing:2.985728pt;}
.ls2a{letter-spacing:5.291776pt;}
.ls8{letter-spacing:16.584960pt;}
.ls29{letter-spacing:20.332160pt;}
.ls38{letter-spacing:37.703680pt;}
.ls2b{letter-spacing:38.121088pt;}
.ls37{letter-spacing:41.054720pt;}
.ls2d{letter-spacing:56.522240pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws5{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.310976pt;}
.wsb{word-spacing:-13.300224pt;}
.ws1a{word-spacing:-13.284096pt;}
.ws19{word-spacing:-13.241088pt;}
.ws7{word-spacing:-13.224960pt;}
.ws9{word-spacing:-13.208832pt;}
.ws1b{word-spacing:-13.198080pt;}
.ws6{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.wsd{word-spacing:-13.171200pt;}
.ws1c{word-spacing:-13.155072pt;}
.ws8{word-spacing:-13.138944pt;}
.ws4{word-spacing:-13.101312pt;}
.ws17{word-spacing:-13.069056pt;}
.ws15{word-spacing:-12.778752pt;}
.wsc{word-spacing:-12.746496pt;}
.ws16{word-spacing:-12.692736pt;}
.ws13{word-spacing:-12.606720pt;}
.ws14{word-spacing:-12.563712pt;}
.ws12{word-spacing:-12.160512pt;}
.ws10{word-spacing:-12.160000pt;}
.wse{word-spacing:-12.144384pt;}
.ws11{word-spacing:-11.838976pt;}
.ws18{word-spacing:-0.053760pt;}
.wsf{word-spacing:0.000000pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._8{width:2.457344pt;}
._2{width:3.672064pt;}
._3{width:5.130240pt;}
._4{width:6.297600pt;}
._11{width:7.464960pt;}
._19{width:8.517120pt;}
._c{width:9.623040pt;}
._5{width:10.752000pt;}
._a{width:11.649792pt;}
._7{width:13.412224pt;}
._1f{width:15.106560pt;}
._9{width:16.724992pt;}
._6{width:17.641728pt;}
._f{width:18.915072pt;}
._12{width:20.168448pt;}
._e{width:21.719040pt;}
._1e{width:23.224320pt;}
._1b{width:24.245760pt;}
._d{width:25.320960pt;}
._14{width:26.933760pt;}
._13{width:28.062720pt;}
._b{width:30.013952pt;}
._1a{width:31.288320pt;}
._18{width:32.522240pt;}
._16{width:33.978880pt;}
._10{width:35.696640pt;}
._1d{width:37.416960pt;}
._23{width:38.653440pt;}
._22{width:40.266240pt;}
._27{width:41.291904pt;}
._2a{width:42.309120pt;}
._26{width:43.384320pt;}
._20{width:44.352000pt;}
._1c{width:45.588480pt;}
._24{width:46.609920pt;}
._21{width:48.222720pt;}
._25{width:51.018240pt;}
._29{width:53.762560pt;}
._28{width:64.512000pt;}
._15{width:69.404160pt;}
._17{width:77.324800pt;}
.fs1{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y44{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:1.546667pt;}
.yd1{bottom:3.413333pt;}
.ydb{bottom:4.053333pt;}
.ya2{bottom:4.106667pt;}
.y97{bottom:4.213333pt;}
.y85{bottom:4.266667pt;}
.y99{bottom:36.213333pt;}
.y8c{bottom:36.266667pt;}
.y46{bottom:47.680000pt;}
.y6{bottom:51.840000pt;}
.y87{bottom:52.266667pt;}
.ybe{bottom:52.746667pt;}
.y42{bottom:57.333333pt;}
.ya7{bottom:68.106667pt;}
.y5{bottom:76.800000pt;}
.yb9{bottom:80.586667pt;}
.y9c{bottom:84.213333pt;}
.yfe{bottom:101.120000pt;}
.y41{bottom:104.320000pt;}
.y3c{bottom:104.960000pt;}
.y13c{bottom:107.520000pt;}
.y169{bottom:108.160000pt;}
.ya0{bottom:110.666667pt;}
.yfd{bottom:116.480000pt;}
.y3b{bottom:120.320000pt;}
.y13b{bottom:122.880000pt;}
.y168{bottom:123.520000pt;}
.y9b{bottom:126.666667pt;}
.y40{bottom:127.680000pt;}
.y106{bottom:131.840000pt;}
.ye0{bottom:135.360000pt;}
.y3a{bottom:135.680000pt;}
.y13a{bottom:138.240000pt;}
.y167{bottom:138.880000pt;}
.yfc{bottom:139.840000pt;}
.y9f{bottom:142.666667pt;}
.y105{bottom:147.200000pt;}
.yaf{bottom:148.106667pt;}
.ydf{bottom:150.720000pt;}
.y39{bottom:151.040000pt;}
.y139{bottom:153.600000pt;}
.y166{bottom:154.240000pt;}
.yfb{bottom:155.200000pt;}
.y9e{bottom:158.666667pt;}
.y104{bottom:162.560000pt;}
.yde{bottom:162.666667pt;}
.y38{bottom:166.400000pt;}
.y138{bottom:168.960000pt;}
.y165{bottom:169.600000pt;}
.yfa{bottom:170.560000pt;}
.y3f{bottom:174.400000pt;}
.y98{bottom:174.666667pt;}
.y103{bottom:177.920000pt;}
.ydd{bottom:178.666667pt;}
.y37{bottom:181.760000pt;}
.y137{bottom:184.320000pt;}
.y164{bottom:184.960000pt;}
.yf9{bottom:185.920000pt;}
.y3e{bottom:189.760000pt;}
.y9d{bottom:190.666667pt;}
.y102{bottom:193.280000pt;}
.ydc{bottom:194.666667pt;}
.y36{bottom:197.120000pt;}
.y136{bottom:199.360000pt;}
.y163{bottom:200.320000pt;}
.yf8{bottom:201.280000pt;}
.y3d{bottom:205.120000pt;}
.y9a{bottom:206.666667pt;}
.y101{bottom:208.640000pt;}
.yda{bottom:210.666667pt;}
.y135{bottom:214.720000pt;}
.y162{bottom:215.360000pt;}
.yf7{bottom:216.640000pt;}
.y35{bottom:220.160000pt;}
.y96{bottom:222.666667pt;}
.y100{bottom:224.000000pt;}
.yc1{bottom:228.106667pt;}
.y134{bottom:230.080000pt;}
.yd9{bottom:230.720000pt;}
.yf6{bottom:232.000000pt;}
.y34{bottom:235.520000pt;}
.yff{bottom:239.040000pt;}
.y95{bottom:242.880000pt;}
.y133{bottom:245.440000pt;}
.yd8{bottom:246.080000pt;}
.yf5{bottom:247.040000pt;}
.y33{bottom:250.880000pt;}
.y94{bottom:258.240000pt;}
.yd7{bottom:258.666667pt;}
.y132{bottom:260.800000pt;}
.y161{bottom:261.440000pt;}
.yf4{bottom:262.400000pt;}
.y32{bottom:266.240000pt;}
.y93{bottom:273.600000pt;}
.yd6{bottom:274.666667pt;}
.y131{bottom:276.160000pt;}
.y160{bottom:276.800000pt;}
.yf3{bottom:277.760000pt;}
.y31{bottom:281.600000pt;}
.y8f{bottom:285.333333pt;}
.yd5{bottom:290.666667pt;}
.y130{bottom:291.520000pt;}
.y15f{bottom:292.160000pt;}
.yf2{bottom:293.120000pt;}
.y30{bottom:296.960000pt;}
.y92{bottom:301.333333pt;}
.yd4{bottom:306.666667pt;}
.y12f{bottom:306.880000pt;}
.y15e{bottom:307.520000pt;}
.yf1{bottom:308.480000pt;}
.y2f{bottom:312.320000pt;}
.y91{bottom:317.333333pt;}
.y12e{bottom:322.240000pt;}
.yd3{bottom:322.666667pt;}
.y15d{bottom:322.880000pt;}
.yf0{bottom:323.840000pt;}
.y2e{bottom:327.680000pt;}
.y90{bottom:333.333333pt;}
.y15c{bottom:338.240000pt;}
.yd2{bottom:338.666667pt;}
.yef{bottom:339.200000pt;}
.y2d{bottom:343.040000pt;}
.y12d{bottom:345.600000pt;}
.y8b{bottom:349.333333pt;}
.yee{bottom:351.680000pt;}
.y15b{bottom:353.600000pt;}
.yd0{bottom:354.666667pt;}
.y12c{bottom:360.960000pt;}
.y8e{bottom:365.333333pt;}
.y2c{bottom:366.400000pt;}
.y15a{bottom:368.960000pt;}
.ycf{bottom:374.080000pt;}
.y12b{bottom:376.000000pt;}
.y8d{bottom:381.333333pt;}
.y159{bottom:384.000000pt;}
.yce{bottom:389.440000pt;}
.y2b{bottom:390.720000pt;}
.y12a{bottom:391.360000pt;}
.y86{bottom:397.333333pt;}
.y158{bottom:399.360000pt;}
.yc0{bottom:401.333333pt;}
.y2a{bottom:403.200000pt;}
.y129{bottom:406.720000pt;}
.y8a{bottom:413.333333pt;}
.y157{bottom:414.720000pt;}
.y29{bottom:415.680000pt;}
.ycd{bottom:417.333333pt;}
.y128{bottom:422.080000pt;}
.y28{bottom:427.840000pt;}
.y89{bottom:429.333333pt;}
.y156{bottom:430.080000pt;}
.ycc{bottom:433.333333pt;}
.y127{bottom:437.440000pt;}
.y27{bottom:441.280000pt;}
.y88{bottom:445.333333pt;}
.y155{bottom:445.440000pt;}
.ycb{bottom:449.333333pt;}
.y126{bottom:452.800000pt;}
.y26{bottom:456.640000pt;}
.y154{bottom:460.800000pt;}
.y84{bottom:461.333333pt;}
.yca{bottom:465.333333pt;}
.y125{bottom:468.160000pt;}
.y25{bottom:472.000000pt;}
.y153{bottom:476.160000pt;}
.yc5{bottom:481.333333pt;}
.y83{bottom:481.600000pt;}
.y124{bottom:483.520000pt;}
.y24{bottom:487.360000pt;}
.y152{bottom:491.520000pt;}
.y82{bottom:496.960000pt;}
.yc9{bottom:497.333333pt;}
.y123{bottom:498.880000pt;}
.y23{bottom:502.720000pt;}
.y151{bottom:506.880000pt;}
.y81{bottom:512.320000pt;}
.yc8{bottom:513.333333pt;}
.y22{bottom:518.080000pt;}
.y122{bottom:522.240000pt;}
.y80{bottom:527.680000pt;}
.yc7{bottom:529.333333pt;}
.y21{bottom:533.440000pt;}
.y150{bottom:537.600000pt;}
.y61{bottom:539.840000pt;}
.yc6{bottom:545.333333pt;}
.y121{bottom:545.600000pt;}
.y20{bottom:548.800000pt;}
.y7f{bottom:551.040000pt;}
.y14f{bottom:552.960000pt;}
.y120{bottom:560.960000pt;}
.ybd{bottom:561.333333pt;}
.y60{bottom:563.200000pt;}
.y1f{bottom:564.160000pt;}
.y7e{bottom:566.400000pt;}
.y14e{bottom:568.000000pt;}
.y11f{bottom:576.000000pt;}
.yc4{bottom:577.333333pt;}
.y5f{bottom:578.560000pt;}
.y1e{bottom:579.200000pt;}
.y7d{bottom:581.760000pt;}
.y14d{bottom:583.360000pt;}
.yed{bottom:589.120000pt;}
.y11e{bottom:591.360000pt;}
.yc3{bottom:593.333333pt;}
.y1d{bottom:594.560000pt;}
.y7c{bottom:596.800000pt;}
.y14c{bottom:598.720000pt;}
.y5e{bottom:601.920000pt;}
.yec{bottom:604.480000pt;}
.y11d{bottom:606.720000pt;}
.yc2{bottom:609.333333pt;}
.y1c{bottom:609.920000pt;}
.y7b{bottom:612.160000pt;}
.y14b{bottom:614.080000pt;}
.yeb{bottom:616.640000pt;}
.y5d{bottom:617.600000pt;}
.y11c{bottom:622.080000pt;}
.y1b{bottom:625.280000pt;}
.ybf{bottom:625.333333pt;}
.y7a{bottom:627.520000pt;}
.y5c{bottom:633.600000pt;}
.y11b{bottom:637.440000pt;}
.y1a{bottom:640.640000pt;}
.yb7{bottom:641.333333pt;}
.y79{bottom:642.880000pt;}
.y5b{bottom:648.960000pt;}
.y11a{bottom:652.800000pt;}
.y19{bottom:656.000000pt;}
.ybc{bottom:657.333333pt;}
.y78{bottom:658.240000pt;}
.y14a{bottom:660.800000pt;}
.y5a{bottom:664.960000pt;}
.y119{bottom:668.160000pt;}
.y18{bottom:671.360000pt;}
.ybb{bottom:673.333333pt;}
.y77{bottom:673.600000pt;}
.y149{bottom:676.160000pt;}
.y59{bottom:680.960000pt;}
.y17{bottom:686.720000pt;}
.y76{bottom:688.960000pt;}
.yba{bottom:689.333333pt;}
.y118{bottom:691.520000pt;}
.y58{bottom:696.320000pt;}
.y16{bottom:702.080000pt;}
.y75{bottom:704.320000pt;}
.yb8{bottom:705.333333pt;}
.y117{bottom:706.880000pt;}
.y57{bottom:712.320000pt;}
.y15{bottom:719.360000pt;}
.y74{bottom:719.680000pt;}
.yae{bottom:721.333333pt;}
.y116{bottom:722.240000pt;}
.y56{bottom:728.320000pt;}
.y14{bottom:734.720000pt;}
.y73{bottom:735.040000pt;}
.yb6{bottom:737.333333pt;}
.y148{bottom:737.600000pt;}
.y55{bottom:743.360000pt;}
.y115{bottom:745.600000pt;}
.y13{bottom:750.080000pt;}
.y72{bottom:750.400000pt;}
.y147{bottom:752.640000pt;}
.yb5{bottom:753.333333pt;}
.y114{bottom:760.640000pt;}
.y71{bottom:765.760000pt;}
.y12{bottom:767.360000pt;}
.y146{bottom:768.000000pt;}
.yb4{bottom:769.333333pt;}
.y113{bottom:776.000000pt;}
.y70{bottom:780.800000pt;}
.y145{bottom:783.360000pt;}
.yb3{bottom:785.333333pt;}
.y11{bottom:787.520000pt;}
.y54{bottom:790.720000pt;}
.y112{bottom:791.360000pt;}
.y6f{bottom:796.160000pt;}
.y10{bottom:798.080000pt;}
.y144{bottom:798.720000pt;}
.yac{bottom:801.333333pt;}
.y53{bottom:806.080000pt;}
.y111{bottom:806.720000pt;}
.y6e{bottom:811.520000pt;}
.y143{bottom:814.080000pt;}
.yb2{bottom:817.333333pt;}
.yf{bottom:818.240000pt;}
.y52{bottom:821.440000pt;}
.y110{bottom:822.080000pt;}
.ye{bottom:828.800000pt;}
.y142{bottom:829.440000pt;}
.yb1{bottom:833.333333pt;}
.y6d{bottom:834.880000pt;}
.y51{bottom:836.800000pt;}
.y10f{bottom:837.440000pt;}
.y141{bottom:844.800000pt;}
.yd{bottom:848.640000pt;}
.yb0{bottom:849.333333pt;}
.y6c{bottom:850.240000pt;}
.y50{bottom:852.160000pt;}
.y10e{bottom:852.800000pt;}
.yea{bottom:854.080000pt;}
.yc{bottom:859.200000pt;}
.y140{bottom:860.160000pt;}
.yad{bottom:865.333333pt;}
.y6b{bottom:866.560000pt;}
.ye9{bottom:866.666667pt;}
.y4f{bottom:867.520000pt;}
.y13f{bottom:875.520000pt;}
.y10d{bottom:876.160000pt;}
.yb{bottom:879.360000pt;}
.ya6{bottom:881.333333pt;}
.ye8{bottom:882.666667pt;}
.y6a{bottom:882.880000pt;}
.y4e{bottom:890.880000pt;}
.y10c{bottom:891.520000pt;}
.yab{bottom:897.333333pt;}
.ye7{bottom:898.666667pt;}
.y69{bottom:899.200000pt;}
.y4d{bottom:906.240000pt;}
.ya{bottom:906.560000pt;}
.y10b{bottom:906.880000pt;}
.yaa{bottom:913.333333pt;}
.ye6{bottom:914.666667pt;}
.y68{bottom:915.520000pt;}
.y4c{bottom:921.600000pt;}
.y10a{bottom:922.240000pt;}
.ya9{bottom:929.333333pt;}
.ye5{bottom:930.666667pt;}
.y67{bottom:931.840000pt;}
.y9{bottom:933.760000pt;}
.y4b{bottom:936.640000pt;}
.y109{bottom:937.600000pt;}
.ya8{bottom:945.333333pt;}
.ye4{bottom:946.666667pt;}
.y66{bottom:947.840000pt;}
.y13e{bottom:952.000000pt;}
.y108{bottom:952.640000pt;}
.y8{bottom:955.200000pt;}
.y4a{bottom:960.000000pt;}
.ya5{bottom:961.333333pt;}
.ye3{bottom:962.666667pt;}
.y65{bottom:964.160000pt;}
.y107{bottom:968.000000pt;}
.y13d{bottom:975.360000pt;}
.ya4{bottom:977.333333pt;}
.ye2{bottom:978.666667pt;}
.y64{bottom:980.480000pt;}
.y49{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.ya3{bottom:993.333333pt;}
.ye1{bottom:994.666667pt;}
.y63{bottom:996.800000pt;}
.y48{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.ya1{bottom:1009.333333pt;}
.y62{bottom:1013.120000pt;}
.y47{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y45{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hd{height:4.000000pt;}
.h16{height:16.000000pt;}
.hf{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.he{height:32.965000pt;}
.h5{height:36.435000pt;}
.ha{height:37.353750pt;}
.h6{height:39.243750pt;}
.hc{height:39.790000pt;}
.h2{height:39.905000pt;}
.h3{height:42.751250pt;}
.h11{height:49.333333pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h10{height:65.333333pt;}
.h13{height:81.333333pt;}
.h12{height:97.333333pt;}
.h14{height:161.333333pt;}
.h15{height:241.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w7{width:44.000000pt;}
.w8{width:82.666667pt;}
.wd{width:88.000000pt;}
.w12{width:93.333333pt;}
.w9{width:98.666667pt;}
.w5{width:108.000000pt;}
.w10{width:144.000000pt;}
.w4{width:185.333333pt;}
.wb{width:193.333333pt;}
.wa{width:201.333333pt;}
.we{width:205.333333pt;}
.w3{width:218.666667pt;}
.w13{width:220.000000pt;}
.w11{width:304.000000pt;}
.wc{width:325.333333pt;}
.wf{width:328.000000pt;}
.w6{width:394.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x11{left:1.386709pt;}
.x19{left:6.666667pt;}
.x1b{left:7.573237pt;}
.x18{left:89.333333pt;}
.x5{left:96.000000pt;}
.x12{left:97.552096pt;}
.xc{left:99.738944pt;}
.x16{left:102.237632pt;}
.x14{left:106.556000pt;}
.x9{left:109.361344pt;}
.xb{left:113.254560pt;}
.x4{left:115.388992pt;}
.x13{left:120.000000pt;}
.x10{left:142.666667pt;}
.xe{left:183.168608pt;}
.xd{left:184.272128pt;}
.xa{left:185.938816pt;}
.x2c{left:197.976576pt;}
.x26{left:200.561184pt;}
.x23{left:209.464192pt;}
.x2{left:265.722336pt;}
.x2d{left:288.728512pt;}
.x22{left:290.666667pt;}
.x1a{left:306.666667pt;}
.x8{left:319.351552pt;}
.x17{left:322.784640pt;}
.x1e{left:325.961600pt;}
.x29{left:393.333333pt;}
.x3{left:396.866560pt;}
.x24{left:413.333333pt;}
.x27{left:417.333333pt;}
.xf{left:420.480000pt;}
.x15{left:444.480000pt;}
.x1{left:456.943680pt;}
.x1f{left:482.666667pt;}
.x2a{left:485.333333pt;}
.x1c{left:490.666667pt;}
.x25{left:500.000000pt;}
.x20{left:525.333333pt;}
.x7{left:536.450240pt;}
.x28{left:561.333333pt;}
.x2b{left:591.906560pt;}
.x1d{left:597.333333pt;}
.x21{left:606.666667pt;}
.x6{left:682.866240pt;}
}




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