
    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_dab109b290c45085d384a908.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_1ee3b4d0d96f8279c8962bbd.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_13110e5ec8526faf5fd988aa.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_1e596f58081635770c0182cc.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_1d809ea17bdcb1e9249e48e7.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_00d0c8326b10faf75cc25a8a.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_4ea5233558cb24b0afea3b3f.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_c902ebbec0e64c200b52e7e9.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_f895d376c65506d986f80d5a.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_aad0316c4eb576d38ef221a9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.912109;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_f78a149eea6a145d10c8ff2e.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_21045bf4cbedfb1f542589de.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_8ca930b82882f9f4cf96d5ba.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;}
.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;}
.lsf{letter-spacing:-0.459648px;}
.ls28{letter-spacing:-0.417312px;}
.ls19{letter-spacing:-0.381024px;}
.ls26{letter-spacing:-0.361152px;}
.ls17{letter-spacing:-0.338688px;}
.ls1c{letter-spacing:-0.320544px;}
.ls1d{letter-spacing:-0.302400px;}
.ls25{letter-spacing:-0.273600px;}
.ls29{letter-spacing:-0.272160px;}
.ls27{letter-spacing:-0.260064px;}
.ls1a{letter-spacing:-0.241920px;}
.ls10{letter-spacing:-0.223776px;}
.ls14{letter-spacing:-0.198720px;}
.ls12{letter-spacing:-0.175392px;}
.lse{letter-spacing:-0.158976px;}
.ls18{letter-spacing:-0.157248px;}
.lsd{letter-spacing:-0.152352px;}
.lsc{letter-spacing:-0.145728px;}
.ls1b{letter-spacing:-0.145152px;}
.ls13{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.120960px;}
.lsb{letter-spacing:-0.119232px;}
.lsa{letter-spacing:-0.079488px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.059904px;}
.ls5{letter-spacing:0.060048px;}
.ls1f{letter-spacing:0.123552px;}
.ls1{letter-spacing:0.159840px;}
.ls0{letter-spacing:0.160560px;}
.ls20{letter-spacing:0.161568px;}
.ls8{letter-spacing:0.194832px;}
.ls2{letter-spacing:0.239040px;}
.ls3{letter-spacing:0.240480px;}
.ls21{letter-spacing:0.242352px;}
.ls1e{letter-spacing:0.285120px;}
.ls16{letter-spacing:0.317376px;}
.ls15{letter-spacing:0.359136px;}
.ls22{letter-spacing:10.667520px;}
.ls2c{letter-spacing:16.185600px;}
.ls2b{letter-spacing:16.186608px;}
.ls24{letter-spacing:19.529280px;}
.ls7{letter-spacing:24.321600px;}
.ls2d{letter-spacing:38.185920px;}
.ls2a{letter-spacing:46.186560px;}
.ls23{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;}
}
.ws6{word-spacing:-21.239136px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.480512px;}
.ws2{word-spacing:-16.440768px;}
.ws8{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.974848px;}
.ws16{word-spacing:-14.962752px;}
.wsb{word-spacing:-14.944608px;}
.ws13{word-spacing:-14.896224px;}
.ws9{word-spacing:-14.878080px;}
.ws10{word-spacing:-14.859936px;}
.ws15{word-spacing:-14.847840px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws11{word-spacing:-14.817600px;}
.ws14{word-spacing:-14.799456px;}
.wsa{word-spacing:-14.781312px;}
.ws7{word-spacing:-14.738976px;}
.ws17{word-spacing:-14.702688px;}
.ws4{word-spacing:-14.660352px;}
.wse{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.318848px;}
.ws12{word-spacing:-0.060480px;}
.wsd{word-spacing:0.000000px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._8{width:3.024000px;}
._d{width:4.898880px;}
._a{width:6.108480px;}
._9{width:7.247952px;}
._10{width:8.406720px;}
._4{width:9.495360px;}
._c{width:10.571328px;}
._b{width:11.612160px;}
._5{width:12.700800px;}
._e{width:13.733280px;}
._2{width:16.504704px;}
._3{width:17.841600px;}
._17{width:18.930240px;}
._1b{width:20.265552px;}
._f{width:21.591360px;}
._27{width:22.661136px;}
._7{width:23.693472px;}
._6{width:24.927264px;}
._1d{width:26.187840px;}
._1c{width:27.284976px;}
._16{width:29.211840px;}
._1a{width:30.421440px;}
._25{width:32.196384px;}
._28{width:33.968736px;}
._2e{width:36.167040px;}
._24{width:37.679040px;}
._31{width:38.729952px;}
._30{width:40.279680px;}
._12{width:42.022944px;}
._11{width:43.122240px;}
._19{width:44.210880px;}
._1f{width:45.662400px;}
._1e{width:46.690560px;}
._35{width:48.202560px;}
._36{width:49.291200px;}
._21{width:50.593680px;}
._20{width:51.715152px;}
._2a{width:52.854768px;}
._29{width:55.872864px;}
._18{width:58.605120px;}
._2f{width:60.127632px;}
._13{width:61.145280px;}
._14{width:62.456976px;}
._37{width:63.759888px;}
._32{width:64.829952px;}
._2b{width:65.862720px;}
._34{width:68.523840px;}
._33{width:69.798672px;}
._2c{width:71.910720px;}
._15{width:76.153824px;}
._22{width:79.289280px;}
._23{width:80.438400px;}
._39{width:85.286304px;}
._26{width:95.497920px;}
._38{width:148.608864px;}
._2d{width:171.581760px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(31,31,31);}
.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;}
.y40{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:1.740000px;}
.ybb{bottom:3.780000px;}
.yde{bottom:4.020000px;}
.yc7{bottom:4.080000px;}
.ya5{bottom:4.560000px;}
.yd5{bottom:4.800000px;}
.yba{bottom:17.820000px;}
.ye0{bottom:22.020000px;}
.ybd{bottom:39.780000px;}
.ycf{bottom:40.080000px;}
.yb4{bottom:41.280000px;}
.y42{bottom:53.640000px;}
.y6{bottom:58.320000px;}
.yb2{bottom:58.560000px;}
.yac{bottom:60.000000px;}
.y3e{bottom:64.500000px;}
.yc9{bottom:76.080000px;}
.yab{bottom:77.280000px;}
.y5{bottom:86.400000px;}
.yaa{bottom:94.560000px;}
.ya7{bottom:112.560000px;}
.y3d{bottom:115.920000px;}
.yff{bottom:119.880000px;}
.y14a{bottom:121.680000px;}
.y130{bottom:129.960000px;}
.ya3{bottom:131.400000px;}
.y3c{bottom:133.200000px;}
.yfe{bottom:137.160000px;}
.y149{bottom:138.960000px;}
.y12f{bottom:147.240000px;}
.ya2{bottom:148.680000px;}
.y3b{bottom:150.480000px;}
.yfd{bottom:154.440000px;}
.y148{bottom:156.240000px;}
.y12e{bottom:164.520000px;}
.ya1{bottom:165.960000px;}
.y3a{bottom:167.760000px;}
.yfc{bottom:171.720000px;}
.y147{bottom:173.520000px;}
.y12d{bottom:181.800000px;}
.ya0{bottom:183.240000px;}
.y39{bottom:184.680000px;}
.yfb{bottom:189.000000px;}
.y146{bottom:190.800000px;}
.y12c{bottom:199.080000px;}
.y72{bottom:200.520000px;}
.y38{bottom:201.960000px;}
.yfa{bottom:206.280000px;}
.y145{bottom:208.080000px;}
.y12b{bottom:216.360000px;}
.y71{bottom:217.800000px;}
.y37{bottom:219.240000px;}
.y9f{bottom:220.680000px;}
.yf9{bottom:223.560000px;}
.y144{bottom:225.360000px;}
.y12a{bottom:233.280000px;}
.y70{bottom:235.080000px;}
.y36{bottom:236.520000px;}
.yf8{bottom:240.840000px;}
.y143{bottom:242.280000px;}
.ye4{bottom:243.000000px;}
.y9e{bottom:246.960000px;}
.y129{bottom:250.560000px;}
.y6f{bottom:252.360000px;}
.y35{bottom:253.800000px;}
.yf7{bottom:257.760000px;}
.ye2{bottom:259.500000px;}
.y142{bottom:259.560000px;}
.y9d{bottom:264.240000px;}
.y128{bottom:267.840000px;}
.y6e{bottom:269.280000px;}
.y34{bottom:271.080000px;}
.yf6{bottom:275.040000px;}
.y141{bottom:276.840000px;}
.ye3{bottom:277.500000px;}
.y9c{bottom:281.520000px;}
.y127{bottom:285.120000px;}
.y6d{bottom:286.560000px;}
.y33{bottom:288.360000px;}
.yf5{bottom:292.320000px;}
.y140{bottom:294.120000px;}
.ydf{bottom:295.500000px;}
.y9b{bottom:298.800000px;}
.y126{bottom:302.400000px;}
.y6c{bottom:303.840000px;}
.y32{bottom:305.640000px;}
.yf4{bottom:309.600000px;}
.y13f{bottom:311.400000px;}
.ye1{bottom:313.500000px;}
.y9a{bottom:316.080000px;}
.y125{bottom:319.680000px;}
.y6b{bottom:321.120000px;}
.y31{bottom:322.920000px;}
.yf3{bottom:326.880000px;}
.y13e{bottom:328.680000px;}
.ydd{bottom:331.500000px;}
.y99{bottom:333.360000px;}
.y124{bottom:336.960000px;}
.y6a{bottom:338.400000px;}
.y30{bottom:340.200000px;}
.yf2{bottom:344.160000px;}
.y13d{bottom:345.960000px;}
.y98{bottom:350.640000px;}
.ydc{bottom:353.520000px;}
.y123{bottom:354.240000px;}
.y69{bottom:355.680000px;}
.y2f{bottom:357.480000px;}
.yf1{bottom:361.440000px;}
.y13c{bottom:363.240000px;}
.ydb{bottom:370.800000px;}
.y122{bottom:371.520000px;}
.y68{bottom:372.960000px;}
.y97{bottom:376.560000px;}
.yf0{bottom:378.720000px;}
.y13b{bottom:380.520000px;}
.y2e{bottom:383.400000px;}
.yda{bottom:384.000000px;}
.y121{bottom:388.800000px;}
.y67{bottom:390.240000px;}
.y96{bottom:393.840000px;}
.yef{bottom:396.000000px;}
.yd9{bottom:402.000000px;}
.y13a{bottom:406.800000px;}
.y66{bottom:407.520000px;}
.y2d{bottom:411.120000px;}
.yee{bottom:413.280000px;}
.y120{bottom:415.080000px;}
.yd8{bottom:420.000000px;}
.y65{bottom:424.800000px;}
.y2c{bottom:425.160000px;}
.y95{bottom:428.400000px;}
.yed{bottom:430.560000px;}
.y11f{bottom:432.000000px;}
.y139{bottom:433.080000px;}
.yd7{bottom:438.000000px;}
.y2b{bottom:439.200000px;}
.y64{bottom:442.080000px;}
.y94{bottom:445.680000px;}
.yec{bottom:447.480000px;}
.y11e{bottom:449.280000px;}
.y138{bottom:450.000000px;}
.y2a{bottom:452.880000px;}
.yd6{bottom:456.000000px;}
.y63{bottom:459.000000px;}
.y93{bottom:462.960000px;}
.yeb{bottom:464.760000px;}
.y11d{bottom:466.560000px;}
.y137{bottom:467.280000px;}
.y29{bottom:468.000000px;}
.yd4{bottom:474.000000px;}
.y62{bottom:476.280000px;}
.y92{bottom:480.240000px;}
.yea{bottom:482.040000px;}
.y11c{bottom:483.840000px;}
.y136{bottom:484.560000px;}
.y28{bottom:485.280000px;}
.y61{bottom:493.560000px;}
.ye9{bottom:496.080000px;}
.yd3{bottom:496.800000px;}
.y91{bottom:497.520000px;}
.y11b{bottom:501.120000px;}
.y135{bottom:501.840000px;}
.y27{bottom:502.560000px;}
.y60{bottom:510.840000px;}
.yd2{bottom:514.080000px;}
.y11a{bottom:518.400000px;}
.y134{bottom:519.120000px;}
.y26{bottom:519.840000px;}
.y90{bottom:523.800000px;}
.yce{bottom:528.000000px;}
.y5f{bottom:528.120000px;}
.y133{bottom:536.400000px;}
.y25{bottom:537.120000px;}
.y8f{bottom:542.160000px;}
.y119{bottom:544.680000px;}
.y5e{bottom:545.400000px;}
.yd1{bottom:546.000000px;}
.y132{bottom:553.680000px;}
.y24{bottom:554.400000px;}
.y8e{bottom:560.520000px;}
.y5d{bottom:562.680000px;}
.yd0{bottom:564.000000px;}
.y118{bottom:570.960000px;}
.y23{bottom:571.680000px;}
.y8d{bottom:578.880000px;}
.y5c{bottom:579.960000px;}
.yc8{bottom:582.000000px;}
.y117{bottom:588.240000px;}
.y22{bottom:588.600000px;}
.y8c{bottom:596.880000px;}
.y5b{bottom:597.240000px;}
.ycd{bottom:600.000000px;}
.y116{bottom:605.520000px;}
.y21{bottom:605.880000px;}
.y8b{bottom:615.240000px;}
.ycc{bottom:618.000000px;}
.y115{bottom:622.800000px;}
.y20{bottom:623.160000px;}
.y5a{bottom:623.520000px;}
.y8a{bottom:633.600000px;}
.ycb{bottom:636.000000px;}
.y114{bottom:640.080000px;}
.y1f{bottom:640.440000px;}
.y59{bottom:640.800000px;}
.y89{bottom:650.880000px;}
.yca{bottom:654.000000px;}
.y113{bottom:657.000000px;}
.y1e{bottom:657.720000px;}
.y58{bottom:658.080000px;}
.y88{bottom:669.240000px;}
.yc6{bottom:672.000000px;}
.y112{bottom:674.280000px;}
.y1d{bottom:675.000000px;}
.y87{bottom:686.520000px;}
.y111{bottom:691.560000px;}
.y1c{bottom:692.280000px;}
.yc5{bottom:694.080000px;}
.y86{bottom:703.800000px;}
.y110{bottom:708.840000px;}
.y1b{bottom:709.560000px;}
.yc4{bottom:711.000000px;}
.y85{bottom:722.160000px;}
.y10f{bottom:726.120000px;}
.y1a{bottom:726.840000px;}
.yc3{bottom:728.280000px;}
.y131{bottom:735.120000px;}
.yc0{bottom:742.500000px;}
.y10e{bottom:743.400000px;}
.y19{bottom:744.120000px;}
.y84{bottom:749.520000px;}
.yc2{bottom:760.500000px;}
.y10d{bottom:760.680000px;}
.y18{bottom:761.400000px;}
.y83{bottom:775.800000px;}
.y10c{bottom:777.960000px;}
.yc1{bottom:778.500000px;}
.y17{bottom:778.680000px;}
.y82{bottom:792.720000px;}
.y16{bottom:795.600000px;}
.y57{bottom:795.960000px;}
.ybc{bottom:796.500000px;}
.y10b{bottom:804.240000px;}
.ye8{bottom:809.640000px;}
.y15{bottom:812.880000px;}
.y56{bottom:813.240000px;}
.ybf{bottom:814.500000px;}
.y81{bottom:819.000000px;}
.y10a{bottom:821.520000px;}
.ye7{bottom:826.920000px;}
.y14{bottom:830.160000px;}
.y55{bottom:830.520000px;}
.ybe{bottom:832.500000px;}
.y80{bottom:836.280000px;}
.y109{bottom:838.800000px;}
.ye6{bottom:844.200000px;}
.y54{bottom:847.800000px;}
.y13{bottom:849.600000px;}
.yb9{bottom:850.500000px;}
.y108{bottom:855.720000px;}
.ye5{bottom:858.240000px;}
.y7f{bottom:862.560000px;}
.y53{bottom:864.720000px;}
.y12{bottom:866.880000px;}
.yb8{bottom:872.280000px;}
.y107{bottom:873.000000px;}
.y7e{bottom:879.840000px;}
.y52{bottom:882.000000px;}
.y11{bottom:884.160000px;}
.yb7{bottom:889.560000px;}
.y106{bottom:890.280000px;}
.y51{bottom:899.280000px;}
.yb1{bottom:903.000000px;}
.y10{bottom:903.600000px;}
.y7d{bottom:906.120000px;}
.y105{bottom:907.560000px;}
.y50{bottom:916.560000px;}
.yb6{bottom:921.000000px;}
.y7c{bottom:923.400000px;}
.y104{bottom:924.840000px;}
.yf{bottom:926.280000px;}
.y4f{bottom:933.840000px;}
.ye{bottom:938.160000px;}
.yb5{bottom:939.000000px;}
.y103{bottom:942.120000px;}
.y7b{bottom:949.680000px;}
.y4e{bottom:951.120000px;}
.yb3{bottom:957.000000px;}
.y102{bottom:959.400000px;}
.yd{bottom:960.840000px;}
.y7a{bottom:966.960000px;}
.y4d{bottom:968.400000px;}
.yc{bottom:972.720000px;}
.ya6{bottom:975.000000px;}
.y101{bottom:976.680000px;}
.y79{bottom:984.240000px;}
.y4c{bottom:985.680000px;}
.yb0{bottom:993.000000px;}
.y100{bottom:993.960000px;}
.yb{bottom:995.400000px;}
.y4b{bottom:1002.960000px;}
.y78{bottom:1010.520000px;}
.yaf{bottom:1011.000000px;}
.ya{bottom:1019.880000px;}
.y4a{bottom:1020.240000px;}
.yae{bottom:1029.000000px;}
.y77{bottom:1036.800000px;}
.y49{bottom:1037.520000px;}
.yad{bottom:1047.000000px;}
.y9{bottom:1050.480000px;}
.y76{bottom:1053.720000px;}
.y48{bottom:1054.800000px;}
.ya9{bottom:1065.000000px;}
.y75{bottom:1071.000000px;}
.y47{bottom:1071.720000px;}
.y8{bottom:1074.600000px;}
.ya8{bottom:1083.000000px;}
.y74{bottom:1088.280000px;}
.y46{bottom:1089.000000px;}
.ya4{bottom:1101.000000px;}
.y45{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y73{bottom:1114.560000px;}
.y44{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.y43{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y41{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hc{height:4.500000px;}
.h12{height:18.000000px;}
.he{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.h15{height:36.000000px;}
.hd{height:37.085625px;}
.h5{height:40.989375px;}
.ha{height:42.111563px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h16{height:47.988281px;}
.h3{height:48.095156px;}
.h13{height:54.000000px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h11{height:73.500000px;}
.h14{height:90.000000px;}
.h10{height:109.500000px;}
.hf{height:127.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w1a{width:66.000000px;}
.w4{width:67.500000px;}
.w1c{width:69.000000px;}
.w19{width:73.500000px;}
.w18{width:75.000000px;}
.w1d{width:79.500000px;}
.w7{width:81.000000px;}
.w1b{width:87.000000px;}
.wa{width:88.500000px;}
.w17{width:93.000000px;}
.w10{width:99.000000px;}
.we{width:103.500000px;}
.w13{width:108.000000px;}
.wd{width:121.500000px;}
.wc{width:123.000000px;}
.w9{width:127.500000px;}
.w16{width:129.000000px;}
.wb{width:133.500000px;}
.w14{width:135.000000px;}
.w8{width:139.500000px;}
.w12{width:156.000000px;}
.w6{width:159.000000px;}
.w5{width:168.000000px;}
.w11{width:196.500000px;}
.w15{width:214.500000px;}
.w3{width:625.500000px;}
.wf{width:693.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x13{left:1.560048px;}
.x18{left:7.500000px;}
.x1b{left:8.760144px;}
.x17{left:100.500000px;}
.x5{left:108.000000px;}
.xd{left:110.148192px;}
.x15{left:111.900888px;}
.xb{left:118.267092px;}
.x4{left:121.562640px;}
.xf{left:123.031512px;}
.x34{left:128.343744px;}
.x24{left:131.251464px;}
.x37{left:135.000000px;}
.x8{left:143.118144px;}
.x1f{left:147.108384px;}
.x2b{left:149.591304px;}
.x12{left:160.500000px;}
.x2c{left:193.500000px;}
.x25{left:198.000000px;}
.xa{left:204.938244px;}
.x20{left:226.500000px;}
.x1a{left:267.000000px;}
.x36{left:289.831788px;}
.x29{left:292.739508px;}
.x2{left:298.937628px;}
.x21{left:315.000000px;}
.x2d{left:340.500000px;}
.x10{left:364.395960px;}
.x26{left:394.500000px;}
.xc{left:395.641080px;}
.x2e{left:406.500000px;}
.x9{left:413.821440px;}
.x16{left:420.645960px;}
.xe{left:423.974880px;}
.x1c{left:426.000000px;}
.x3{left:446.474880px;}
.x2f{left:471.000000px;}
.x11{left:473.040000px;}
.x14{left:500.040000px;}
.x1d{left:505.500000px;}
.x1{left:514.061640px;}
.x2a{left:529.500000px;}
.x27{left:550.500000px;}
.x30{left:556.500000px;}
.x22{left:568.500000px;}
.x1e{left:586.500000px;}
.x7{left:603.506520px;}
.x31{left:645.000000px;}
.x28{left:658.500000px;}
.x23{left:690.000000px;}
.x33{left:696.674880px;}
.x35{left:705.134880px;}
.x32{left:714.000000px;}
.x19{left:726.000000px;}
.x6{left:759.861720px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.lsf{letter-spacing:-0.408576pt;}
.ls28{letter-spacing:-0.370944pt;}
.ls19{letter-spacing:-0.338688pt;}
.ls26{letter-spacing:-0.321024pt;}
.ls17{letter-spacing:-0.301056pt;}
.ls1c{letter-spacing:-0.284928pt;}
.ls1d{letter-spacing:-0.268800pt;}
.ls25{letter-spacing:-0.243200pt;}
.ls29{letter-spacing:-0.241920pt;}
.ls27{letter-spacing:-0.231168pt;}
.ls1a{letter-spacing:-0.215040pt;}
.ls10{letter-spacing:-0.198912pt;}
.ls14{letter-spacing:-0.176640pt;}
.ls12{letter-spacing:-0.155904pt;}
.lse{letter-spacing:-0.141312pt;}
.ls18{letter-spacing:-0.139776pt;}
.lsd{letter-spacing:-0.135424pt;}
.lsc{letter-spacing:-0.129536pt;}
.ls1b{letter-spacing:-0.129024pt;}
.ls13{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.107520pt;}
.lsb{letter-spacing:-0.105984pt;}
.lsa{letter-spacing:-0.070656pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.053248pt;}
.ls5{letter-spacing:0.053376pt;}
.ls1f{letter-spacing:0.109824pt;}
.ls1{letter-spacing:0.142080pt;}
.ls0{letter-spacing:0.142720pt;}
.ls20{letter-spacing:0.143616pt;}
.ls8{letter-spacing:0.173184pt;}
.ls2{letter-spacing:0.212480pt;}
.ls3{letter-spacing:0.213760pt;}
.ls21{letter-spacing:0.215424pt;}
.ls1e{letter-spacing:0.253440pt;}
.ls16{letter-spacing:0.282112pt;}
.ls15{letter-spacing:0.319232pt;}
.ls22{letter-spacing:9.482240pt;}
.ls2c{letter-spacing:14.387200pt;}
.ls2b{letter-spacing:14.388096pt;}
.ls24{letter-spacing:17.359360pt;}
.ls7{letter-spacing:21.619200pt;}
.ls2d{letter-spacing:33.943040pt;}
.ls2a{letter-spacing:41.054720pt;}
.ls23{letter-spacing:56.522240pt;}
.ws6{word-spacing:-18.879232pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws8{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.310976pt;}
.ws16{word-spacing:-13.300224pt;}
.wsb{word-spacing:-13.284096pt;}
.ws13{word-spacing:-13.241088pt;}
.ws9{word-spacing:-13.224960pt;}
.ws10{word-spacing:-13.208832pt;}
.ws15{word-spacing:-13.198080pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws11{word-spacing:-13.171200pt;}
.ws14{word-spacing:-13.155072pt;}
.wsa{word-spacing:-13.138944pt;}
.ws7{word-spacing:-13.101312pt;}
.ws17{word-spacing:-13.069056pt;}
.ws4{word-spacing:-13.031424pt;}
.wse{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.838976pt;}
.ws12{word-spacing:-0.053760pt;}
.wsd{word-spacing:0.000000pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._8{width:2.688000pt;}
._d{width:4.354560pt;}
._a{width:5.429760pt;}
._9{width:6.442624pt;}
._10{width:7.472640pt;}
._4{width:8.440320pt;}
._c{width:9.396736pt;}
._b{width:10.321920pt;}
._5{width:11.289600pt;}
._e{width:12.207360pt;}
._2{width:14.670848pt;}
._3{width:15.859200pt;}
._17{width:16.826880pt;}
._1b{width:18.013824pt;}
._f{width:19.192320pt;}
._27{width:20.143232pt;}
._7{width:21.060864pt;}
._6{width:22.157568pt;}
._1d{width:23.278080pt;}
._1c{width:24.253312pt;}
._16{width:25.966080pt;}
._1a{width:27.041280pt;}
._25{width:28.619008pt;}
._28{width:30.194432pt;}
._2e{width:32.148480pt;}
._24{width:33.492480pt;}
._31{width:34.426624pt;}
._30{width:35.804160pt;}
._12{width:37.353728pt;}
._11{width:38.330880pt;}
._19{width:39.298560pt;}
._1f{width:40.588800pt;}
._1e{width:41.502720pt;}
._35{width:42.846720pt;}
._36{width:43.814400pt;}
._21{width:44.972160pt;}
._20{width:45.969024pt;}
._2a{width:46.982016pt;}
._29{width:49.664768pt;}
._18{width:52.093440pt;}
._2f{width:53.446784pt;}
._13{width:54.351360pt;}
._14{width:55.517312pt;}
._37{width:56.675456pt;}
._32{width:57.626624pt;}
._2b{width:58.544640pt;}
._34{width:60.910080pt;}
._33{width:62.043264pt;}
._2c{width:63.920640pt;}
._15{width:67.692288pt;}
._22{width:70.479360pt;}
._23{width:71.500800pt;}
._39{width:75.810048pt;}
._26{width:84.887040pt;}
._38{width:132.096768pt;}
._2d{width:152.517120pt;}
.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;}
.y40{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:1.546667pt;}
.ybb{bottom:3.360000pt;}
.yde{bottom:3.573333pt;}
.yc7{bottom:3.626667pt;}
.ya5{bottom:4.053333pt;}
.yd5{bottom:4.266667pt;}
.yba{bottom:15.840000pt;}
.ye0{bottom:19.573333pt;}
.ybd{bottom:35.360000pt;}
.ycf{bottom:35.626667pt;}
.yb4{bottom:36.693333pt;}
.y42{bottom:47.680000pt;}
.y6{bottom:51.840000pt;}
.yb2{bottom:52.053333pt;}
.yac{bottom:53.333333pt;}
.y3e{bottom:57.333333pt;}
.yc9{bottom:67.626667pt;}
.yab{bottom:68.693333pt;}
.y5{bottom:76.800000pt;}
.yaa{bottom:84.053333pt;}
.ya7{bottom:100.053333pt;}
.y3d{bottom:103.040000pt;}
.yff{bottom:106.560000pt;}
.y14a{bottom:108.160000pt;}
.y130{bottom:115.520000pt;}
.ya3{bottom:116.800000pt;}
.y3c{bottom:118.400000pt;}
.yfe{bottom:121.920000pt;}
.y149{bottom:123.520000pt;}
.y12f{bottom:130.880000pt;}
.ya2{bottom:132.160000pt;}
.y3b{bottom:133.760000pt;}
.yfd{bottom:137.280000pt;}
.y148{bottom:138.880000pt;}
.y12e{bottom:146.240000pt;}
.ya1{bottom:147.520000pt;}
.y3a{bottom:149.120000pt;}
.yfc{bottom:152.640000pt;}
.y147{bottom:154.240000pt;}
.y12d{bottom:161.600000pt;}
.ya0{bottom:162.880000pt;}
.y39{bottom:164.160000pt;}
.yfb{bottom:168.000000pt;}
.y146{bottom:169.600000pt;}
.y12c{bottom:176.960000pt;}
.y72{bottom:178.240000pt;}
.y38{bottom:179.520000pt;}
.yfa{bottom:183.360000pt;}
.y145{bottom:184.960000pt;}
.y12b{bottom:192.320000pt;}
.y71{bottom:193.600000pt;}
.y37{bottom:194.880000pt;}
.y9f{bottom:196.160000pt;}
.yf9{bottom:198.720000pt;}
.y144{bottom:200.320000pt;}
.y12a{bottom:207.360000pt;}
.y70{bottom:208.960000pt;}
.y36{bottom:210.240000pt;}
.yf8{bottom:214.080000pt;}
.y143{bottom:215.360000pt;}
.ye4{bottom:216.000000pt;}
.y9e{bottom:219.520000pt;}
.y129{bottom:222.720000pt;}
.y6f{bottom:224.320000pt;}
.y35{bottom:225.600000pt;}
.yf7{bottom:229.120000pt;}
.ye2{bottom:230.666667pt;}
.y142{bottom:230.720000pt;}
.y9d{bottom:234.880000pt;}
.y128{bottom:238.080000pt;}
.y6e{bottom:239.360000pt;}
.y34{bottom:240.960000pt;}
.yf6{bottom:244.480000pt;}
.y141{bottom:246.080000pt;}
.ye3{bottom:246.666667pt;}
.y9c{bottom:250.240000pt;}
.y127{bottom:253.440000pt;}
.y6d{bottom:254.720000pt;}
.y33{bottom:256.320000pt;}
.yf5{bottom:259.840000pt;}
.y140{bottom:261.440000pt;}
.ydf{bottom:262.666667pt;}
.y9b{bottom:265.600000pt;}
.y126{bottom:268.800000pt;}
.y6c{bottom:270.080000pt;}
.y32{bottom:271.680000pt;}
.yf4{bottom:275.200000pt;}
.y13f{bottom:276.800000pt;}
.ye1{bottom:278.666667pt;}
.y9a{bottom:280.960000pt;}
.y125{bottom:284.160000pt;}
.y6b{bottom:285.440000pt;}
.y31{bottom:287.040000pt;}
.yf3{bottom:290.560000pt;}
.y13e{bottom:292.160000pt;}
.ydd{bottom:294.666667pt;}
.y99{bottom:296.320000pt;}
.y124{bottom:299.520000pt;}
.y6a{bottom:300.800000pt;}
.y30{bottom:302.400000pt;}
.yf2{bottom:305.920000pt;}
.y13d{bottom:307.520000pt;}
.y98{bottom:311.680000pt;}
.ydc{bottom:314.240000pt;}
.y123{bottom:314.880000pt;}
.y69{bottom:316.160000pt;}
.y2f{bottom:317.760000pt;}
.yf1{bottom:321.280000pt;}
.y13c{bottom:322.880000pt;}
.ydb{bottom:329.600000pt;}
.y122{bottom:330.240000pt;}
.y68{bottom:331.520000pt;}
.y97{bottom:334.720000pt;}
.yf0{bottom:336.640000pt;}
.y13b{bottom:338.240000pt;}
.y2e{bottom:340.800000pt;}
.yda{bottom:341.333333pt;}
.y121{bottom:345.600000pt;}
.y67{bottom:346.880000pt;}
.y96{bottom:350.080000pt;}
.yef{bottom:352.000000pt;}
.yd9{bottom:357.333333pt;}
.y13a{bottom:361.600000pt;}
.y66{bottom:362.240000pt;}
.y2d{bottom:365.440000pt;}
.yee{bottom:367.360000pt;}
.y120{bottom:368.960000pt;}
.yd8{bottom:373.333333pt;}
.y65{bottom:377.600000pt;}
.y2c{bottom:377.920000pt;}
.y95{bottom:380.800000pt;}
.yed{bottom:382.720000pt;}
.y11f{bottom:384.000000pt;}
.y139{bottom:384.960000pt;}
.yd7{bottom:389.333333pt;}
.y2b{bottom:390.400000pt;}
.y64{bottom:392.960000pt;}
.y94{bottom:396.160000pt;}
.yec{bottom:397.760000pt;}
.y11e{bottom:399.360000pt;}
.y138{bottom:400.000000pt;}
.y2a{bottom:402.560000pt;}
.yd6{bottom:405.333333pt;}
.y63{bottom:408.000000pt;}
.y93{bottom:411.520000pt;}
.yeb{bottom:413.120000pt;}
.y11d{bottom:414.720000pt;}
.y137{bottom:415.360000pt;}
.y29{bottom:416.000000pt;}
.yd4{bottom:421.333333pt;}
.y62{bottom:423.360000pt;}
.y92{bottom:426.880000pt;}
.yea{bottom:428.480000pt;}
.y11c{bottom:430.080000pt;}
.y136{bottom:430.720000pt;}
.y28{bottom:431.360000pt;}
.y61{bottom:438.720000pt;}
.ye9{bottom:440.960000pt;}
.yd3{bottom:441.600000pt;}
.y91{bottom:442.240000pt;}
.y11b{bottom:445.440000pt;}
.y135{bottom:446.080000pt;}
.y27{bottom:446.720000pt;}
.y60{bottom:454.080000pt;}
.yd2{bottom:456.960000pt;}
.y11a{bottom:460.800000pt;}
.y134{bottom:461.440000pt;}
.y26{bottom:462.080000pt;}
.y90{bottom:465.600000pt;}
.yce{bottom:469.333333pt;}
.y5f{bottom:469.440000pt;}
.y133{bottom:476.800000pt;}
.y25{bottom:477.440000pt;}
.y8f{bottom:481.920000pt;}
.y119{bottom:484.160000pt;}
.y5e{bottom:484.800000pt;}
.yd1{bottom:485.333333pt;}
.y132{bottom:492.160000pt;}
.y24{bottom:492.800000pt;}
.y8e{bottom:498.240000pt;}
.y5d{bottom:500.160000pt;}
.yd0{bottom:501.333333pt;}
.y118{bottom:507.520000pt;}
.y23{bottom:508.160000pt;}
.y8d{bottom:514.560000pt;}
.y5c{bottom:515.520000pt;}
.yc8{bottom:517.333333pt;}
.y117{bottom:522.880000pt;}
.y22{bottom:523.200000pt;}
.y8c{bottom:530.560000pt;}
.y5b{bottom:530.880000pt;}
.ycd{bottom:533.333333pt;}
.y116{bottom:538.240000pt;}
.y21{bottom:538.560000pt;}
.y8b{bottom:546.880000pt;}
.ycc{bottom:549.333333pt;}
.y115{bottom:553.600000pt;}
.y20{bottom:553.920000pt;}
.y5a{bottom:554.240000pt;}
.y8a{bottom:563.200000pt;}
.ycb{bottom:565.333333pt;}
.y114{bottom:568.960000pt;}
.y1f{bottom:569.280000pt;}
.y59{bottom:569.600000pt;}
.y89{bottom:578.560000pt;}
.yca{bottom:581.333333pt;}
.y113{bottom:584.000000pt;}
.y1e{bottom:584.640000pt;}
.y58{bottom:584.960000pt;}
.y88{bottom:594.880000pt;}
.yc6{bottom:597.333333pt;}
.y112{bottom:599.360000pt;}
.y1d{bottom:600.000000pt;}
.y87{bottom:610.240000pt;}
.y111{bottom:614.720000pt;}
.y1c{bottom:615.360000pt;}
.yc5{bottom:616.960000pt;}
.y86{bottom:625.600000pt;}
.y110{bottom:630.080000pt;}
.y1b{bottom:630.720000pt;}
.yc4{bottom:632.000000pt;}
.y85{bottom:641.920000pt;}
.y10f{bottom:645.440000pt;}
.y1a{bottom:646.080000pt;}
.yc3{bottom:647.360000pt;}
.y131{bottom:653.440000pt;}
.yc0{bottom:660.000000pt;}
.y10e{bottom:660.800000pt;}
.y19{bottom:661.440000pt;}
.y84{bottom:666.240000pt;}
.yc2{bottom:676.000000pt;}
.y10d{bottom:676.160000pt;}
.y18{bottom:676.800000pt;}
.y83{bottom:689.600000pt;}
.y10c{bottom:691.520000pt;}
.yc1{bottom:692.000000pt;}
.y17{bottom:692.160000pt;}
.y82{bottom:704.640000pt;}
.y16{bottom:707.200000pt;}
.y57{bottom:707.520000pt;}
.ybc{bottom:708.000000pt;}
.y10b{bottom:714.880000pt;}
.ye8{bottom:719.680000pt;}
.y15{bottom:722.560000pt;}
.y56{bottom:722.880000pt;}
.ybf{bottom:724.000000pt;}
.y81{bottom:728.000000pt;}
.y10a{bottom:730.240000pt;}
.ye7{bottom:735.040000pt;}
.y14{bottom:737.920000pt;}
.y55{bottom:738.240000pt;}
.ybe{bottom:740.000000pt;}
.y80{bottom:743.360000pt;}
.y109{bottom:745.600000pt;}
.ye6{bottom:750.400000pt;}
.y54{bottom:753.600000pt;}
.y13{bottom:755.200000pt;}
.yb9{bottom:756.000000pt;}
.y108{bottom:760.640000pt;}
.ye5{bottom:762.880000pt;}
.y7f{bottom:766.720000pt;}
.y53{bottom:768.640000pt;}
.y12{bottom:770.560000pt;}
.yb8{bottom:775.360000pt;}
.y107{bottom:776.000000pt;}
.y7e{bottom:782.080000pt;}
.y52{bottom:784.000000pt;}
.y11{bottom:785.920000pt;}
.yb7{bottom:790.720000pt;}
.y106{bottom:791.360000pt;}
.y51{bottom:799.360000pt;}
.yb1{bottom:802.666667pt;}
.y10{bottom:803.200000pt;}
.y7d{bottom:805.440000pt;}
.y105{bottom:806.720000pt;}
.y50{bottom:814.720000pt;}
.yb6{bottom:818.666667pt;}
.y7c{bottom:820.800000pt;}
.y104{bottom:822.080000pt;}
.yf{bottom:823.360000pt;}
.y4f{bottom:830.080000pt;}
.ye{bottom:833.920000pt;}
.yb5{bottom:834.666667pt;}
.y103{bottom:837.440000pt;}
.y7b{bottom:844.160000pt;}
.y4e{bottom:845.440000pt;}
.yb3{bottom:850.666667pt;}
.y102{bottom:852.800000pt;}
.yd{bottom:854.080000pt;}
.y7a{bottom:859.520000pt;}
.y4d{bottom:860.800000pt;}
.yc{bottom:864.640000pt;}
.ya6{bottom:866.666667pt;}
.y101{bottom:868.160000pt;}
.y79{bottom:874.880000pt;}
.y4c{bottom:876.160000pt;}
.yb0{bottom:882.666667pt;}
.y100{bottom:883.520000pt;}
.yb{bottom:884.800000pt;}
.y4b{bottom:891.520000pt;}
.y78{bottom:898.240000pt;}
.yaf{bottom:898.666667pt;}
.ya{bottom:906.560000pt;}
.y4a{bottom:906.880000pt;}
.yae{bottom:914.666667pt;}
.y77{bottom:921.600000pt;}
.y49{bottom:922.240000pt;}
.yad{bottom:930.666667pt;}
.y9{bottom:933.760000pt;}
.y76{bottom:936.640000pt;}
.y48{bottom:937.600000pt;}
.ya9{bottom:946.666667pt;}
.y75{bottom:952.000000pt;}
.y47{bottom:952.640000pt;}
.y8{bottom:955.200000pt;}
.ya8{bottom:962.666667pt;}
.y74{bottom:967.360000pt;}
.y46{bottom:968.000000pt;}
.ya4{bottom:978.666667pt;}
.y45{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y73{bottom:990.720000pt;}
.y44{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.y43{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y41{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hc{height:4.000000pt;}
.h12{height:16.000000pt;}
.he{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.h15{height:32.000000pt;}
.hd{height:32.965000pt;}
.h5{height:36.435000pt;}
.ha{height:37.432500pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h16{height:42.656250pt;}
.h3{height:42.751250pt;}
.h13{height:48.000000pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h11{height:65.333333pt;}
.h14{height:80.000000pt;}
.h10{height:97.333333pt;}
.hf{height:113.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w1a{width:58.666667pt;}
.w4{width:60.000000pt;}
.w1c{width:61.333333pt;}
.w19{width:65.333333pt;}
.w18{width:66.666667pt;}
.w1d{width:70.666667pt;}
.w7{width:72.000000pt;}
.w1b{width:77.333333pt;}
.wa{width:78.666667pt;}
.w17{width:82.666667pt;}
.w10{width:88.000000pt;}
.we{width:92.000000pt;}
.w13{width:96.000000pt;}
.wd{width:108.000000pt;}
.wc{width:109.333333pt;}
.w9{width:113.333333pt;}
.w16{width:114.666667pt;}
.wb{width:118.666667pt;}
.w14{width:120.000000pt;}
.w8{width:124.000000pt;}
.w12{width:138.666667pt;}
.w6{width:141.333333pt;}
.w5{width:149.333333pt;}
.w11{width:174.666667pt;}
.w15{width:190.666667pt;}
.w3{width:556.000000pt;}
.wf{width:616.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x13{left:1.386709pt;}
.x18{left:6.666667pt;}
.x1b{left:7.786795pt;}
.x17{left:89.333333pt;}
.x5{left:96.000000pt;}
.xd{left:97.909504pt;}
.x15{left:99.467456pt;}
.xb{left:105.126304pt;}
.x4{left:108.055680pt;}
.xf{left:109.361344pt;}
.x34{left:114.083328pt;}
.x24{left:116.667968pt;}
.x37{left:120.000000pt;}
.x8{left:127.216128pt;}
.x1f{left:130.763008pt;}
.x2b{left:132.970048pt;}
.x12{left:142.666667pt;}
.x2c{left:172.000000pt;}
.x25{left:176.000000pt;}
.xa{left:182.167328pt;}
.x20{left:201.333333pt;}
.x1a{left:237.333333pt;}
.x36{left:257.628256pt;}
.x29{left:260.212896pt;}
.x2{left:265.722336pt;}
.x21{left:280.000000pt;}
.x2d{left:302.666667pt;}
.x10{left:323.907520pt;}
.x26{left:350.666667pt;}
.xc{left:351.680960pt;}
.x2e{left:361.333333pt;}
.x9{left:367.841280pt;}
.x16{left:373.907520pt;}
.xe{left:376.866560pt;}
.x1c{left:378.666667pt;}
.x3{left:396.866560pt;}
.x2f{left:418.666667pt;}
.x11{left:420.480000pt;}
.x14{left:444.480000pt;}
.x1d{left:449.333333pt;}
.x1{left:456.943680pt;}
.x2a{left:470.666667pt;}
.x27{left:489.333333pt;}
.x30{left:494.666667pt;}
.x22{left:505.333333pt;}
.x1e{left:521.333333pt;}
.x7{left:536.450240pt;}
.x31{left:573.333333pt;}
.x28{left:585.333333pt;}
.x23{left:613.333333pt;}
.x33{left:619.266560pt;}
.x35{left:626.786560pt;}
.x32{left:634.666667pt;}
.x19{left:645.333333pt;}
.x6{left:675.432640pt;}
}




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