
    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_fb24978fc120ad3fe0fa93b9.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_f0e3a287149c9d1386199327.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_ec8b187f51dada435c2c6fae.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_96dfe128c49d6befc44306f3.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_ead2736f3a9139338685787a.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_0152ca2cb34e214fbde2b053.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_a3f0006e4fbbef4c546e17d7.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_18348cb9fb3a41bdd7ba3b91.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;}
.m1{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls29{letter-spacing:-0.508896px;}
.ls19{letter-spacing:-0.459648px;}
.ls34{letter-spacing:-0.417312px;}
.ls2b{letter-spacing:-0.399168px;}
.ls1f{letter-spacing:-0.381024px;}
.ls2a{letter-spacing:-0.361152px;}
.ls18{letter-spacing:-0.338688px;}
.ls1d{letter-spacing:-0.320544px;}
.lse{letter-spacing:-0.302400px;}
.ls28{letter-spacing:-0.273600px;}
.ls2c{letter-spacing:-0.272160px;}
.ls1a{letter-spacing:-0.260064px;}
.ls1b{letter-spacing:-0.241920px;}
.ls1c{letter-spacing:-0.223776px;}
.ls13{letter-spacing:-0.198720px;}
.ls11{letter-spacing:-0.175392px;}
.ls1e{letter-spacing:-0.157248px;}
.lsd{letter-spacing:-0.152352px;}
.lsc{letter-spacing:-0.145728px;}
.lsf{letter-spacing:-0.145152px;}
.ls12{letter-spacing:-0.132480px;}
.ls10{letter-spacing:-0.120960px;}
.lsb{letter-spacing:-0.119232px;}
.lsa{letter-spacing:-0.079488px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.059904px;}
.ls5{letter-spacing:0.060048px;}
.ls0{letter-spacing:0.119520px;}
.ls21{letter-spacing:0.123552px;}
.ls22{letter-spacing:0.161568px;}
.ls8{letter-spacing:0.237600px;}
.ls2{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.239904px;}
.ls3{letter-spacing:0.240480px;}
.ls15{letter-spacing:0.242208px;}
.ls23{letter-spacing:0.242352px;}
.ls14{letter-spacing:0.275616px;}
.ls17{letter-spacing:0.283968px;}
.ls20{letter-spacing:0.285120px;}
.ls16{letter-spacing:0.359136px;}
.ls7{letter-spacing:0.820800px;}
.ls6{letter-spacing:1.910880px;}
.ls27{letter-spacing:2.770560px;}
.ls33{letter-spacing:4.428000px;}
.ls26{letter-spacing:4.557600px;}
.ls25{letter-spacing:7.365600px;}
.ls2e{letter-spacing:14.294880px;}
.ls24{letter-spacing:18.830736px;}
.ls31{letter-spacing:35.986896px;}
.ls32{letter-spacing:35.987040px;}
.ls2d{letter-spacing:49.167648px;}
.ls30{letter-spacing:65.986848px;}
.ls2f{letter-spacing:65.988000px;}
.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.163968px;}
.ws7{word-spacing:-18.000000px;}
.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;}
.wsd{word-spacing:-14.962752px;}
.wsb{word-spacing:-14.944608px;}
.ws13{word-spacing:-14.896224px;}
.ws9{word-spacing:-14.878080px;}
.ws16{word-spacing:-14.859936px;}
.ws15{word-spacing:-14.847840px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws4{word-spacing:-14.817600px;}
.ws17{word-spacing:-14.799456px;}
.wsa{word-spacing:-14.781312px;}
.ws12{word-spacing:-14.738976px;}
.ws14{word-spacing:-14.720832px;}
.wsf{word-spacing:-13.680000px;}
.ws10{word-spacing:-13.406400px;}
.ws11{word-spacing:-13.318848px;}
.wse{word-spacing:0.000000px;}
._8{margin-left:-4.303872px;}
._7{margin-left:-3.278592px;}
._6{margin-left:-2.050272px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._4{width:2.605392px;}
._9{width:3.681072px;}
._2{width:5.468400px;}
._3{width:6.899472px;}
._1d{width:8.382384px;}
._e{width:9.737280px;}
._5{width:10.765440px;}
._f{width:11.854080px;}
._11{width:13.184640px;}
._1a{width:16.039296px;}
._10{width:18.023040px;}
._b{width:19.535040px;}
._a{width:20.865600px;}
._13{width:22.014720px;}
._15{width:23.224320px;}
._16{width:24.373440px;}
._19{width:25.587792px;}
._18{width:27.651024px;}
._c{width:29.272320px;}
._d{width:30.300480px;}
._1c{width:31.389120px;}
._1f{width:33.143040px;}
._14{width:35.690976px;}
._12{width:36.711360px;}
._2c{width:38.172384px;}
._23{width:39.432960px;}
._22{width:40.642560px;}
._2b{width:43.736544px;}
._27{width:44.815680px;}
._2a{width:46.637712px;}
._28{width:47.658240px;}
._25{width:49.006944px;}
._1b{width:50.924160px;}
._1e{width:54.915840px;}
._2d{width:57.214080px;}
._17{width:58.423680px;}
._26{width:60.359040px;}
._29{width:64.536912px;}
._20{width:67.132800px;}
._24{width:69.370560px;}
._21{width:90.881856px;}
.fc2{color:transparent;}
.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;}
.y3f{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:1.740000px;}
.yac{bottom:3.840000px;}
.y9c{bottom:4.200000px;}
.yaa{bottom:21.840000px;}
.y9a{bottom:22.200000px;}
.y41{bottom:53.640000px;}
.y6{bottom:58.320000px;}
.y3d{bottom:64.500000px;}
.y5{bottom:86.400000px;}
.yfb{bottom:114.120000px;}
.y8a{bottom:116.280000px;}
.y3c{bottom:123.120000px;}
.ya8{bottom:126.000000px;}
.y89{bottom:130.320000px;}
.yfa{bottom:131.400000px;}
.ye3{bottom:133.560000px;}
.y3b{bottom:140.400000px;}
.ya7{bottom:143.280000px;}
.yf9{bottom:148.680000px;}
.ye2{bottom:150.840000px;}
.y3a{bottom:157.680000px;}
.ya6{bottom:160.200000px;}
.yf8{bottom:165.960000px;}
.ye1{bottom:168.120000px;}
.ya5{bottom:174.000000px;}
.y39{bottom:174.600000px;}
.yf7{bottom:183.240000px;}
.ye0{bottom:185.400000px;}
.y38{bottom:191.880000px;}
.ya4{bottom:192.000000px;}
.yf6{bottom:200.520000px;}
.ydf{bottom:202.680000px;}
.y37{bottom:209.160000px;}
.ya3{bottom:210.000000px;}
.yf5{bottom:217.800000px;}
.yde{bottom:219.960000px;}
.y36{bottom:226.440000px;}
.ya2{bottom:228.000000px;}
.yf4{bottom:235.080000px;}
.ydd{bottom:237.240000px;}
.y35{bottom:243.720000px;}
.ya1{bottom:246.000000px;}
.yf3{bottom:252.360000px;}
.ydc{bottom:254.520000px;}
.ya0{bottom:264.000000px;}
.yf2{bottom:269.280000px;}
.y34{bottom:270.000000px;}
.ydb{bottom:271.800000px;}
.y9f{bottom:282.000000px;}
.y88{bottom:286.560000px;}
.yda{bottom:289.080000px;}
.y33{bottom:297.720000px;}
.y9e{bottom:300.000000px;}
.y71{bottom:303.840000px;}
.yd9{bottom:306.360000px;}
.y32{bottom:311.760000px;}
.y9d{bottom:318.000000px;}
.y70{bottom:321.120000px;}
.yd8{bottom:323.280000px;}
.y31{bottom:325.440000px;}
.y99{bottom:336.000000px;}
.y6f{bottom:338.400000px;}
.y30{bottom:339.480000px;}
.yd7{bottom:340.560000px;}
.y9b{bottom:354.000000px;}
.y2f{bottom:354.600000px;}
.y6e{bottom:355.680000px;}
.yd6{bottom:357.840000px;}
.yf1{bottom:364.680000px;}
.y2e{bottom:371.520000px;}
.y6d{bottom:372.960000px;}
.yd5{bottom:375.120000px;}
.y98{bottom:376.200000px;}
.y2d{bottom:388.800000px;}
.y6c{bottom:390.240000px;}
.yf0{bottom:390.960000px;}
.yd4{bottom:392.400000px;}
.y97{bottom:393.480000px;}
.y2c{bottom:406.080000px;}
.y6b{bottom:407.520000px;}
.yef{bottom:408.240000px;}
.yd3{bottom:409.680000px;}
.y96{bottom:410.760000px;}
.y2b{bottom:423.360000px;}
.y6a{bottom:424.800000px;}
.yee{bottom:425.520000px;}
.yd2{bottom:426.960000px;}
.y95{bottom:428.040000px;}
.y2a{bottom:440.640000px;}
.y69{bottom:442.080000px;}
.yed{bottom:442.800000px;}
.yd1{bottom:444.240000px;}
.y94{bottom:445.320000px;}
.y29{bottom:457.920000px;}
.y68{bottom:459.000000px;}
.yec{bottom:460.080000px;}
.yd0{bottom:461.520000px;}
.y93{bottom:462.600000px;}
.y28{bottom:475.200000px;}
.y67{bottom:476.280000px;}
.y92{bottom:476.640000px;}
.ycf{bottom:478.800000px;}
.yeb{bottom:486.000000px;}
.y27{bottom:492.480000px;}
.y66{bottom:493.560000px;}
.yce{bottom:496.080000px;}
.y26{bottom:509.760000px;}
.y65{bottom:510.840000px;}
.yea{bottom:512.280000px;}
.ycd{bottom:513.000000px;}
.y25{bottom:527.040000px;}
.y64{bottom:528.120000px;}
.ye9{bottom:529.560000px;}
.ycc{bottom:530.280000px;}
.y24{bottom:544.320000px;}
.y63{bottom:545.400000px;}
.ye8{bottom:546.840000px;}
.ycb{bottom:547.560000px;}
.y106{bottom:554.400000px;}
.y23{bottom:561.600000px;}
.y62{bottom:562.680000px;}
.ye7{bottom:564.120000px;}
.yca{bottom:564.840000px;}
.y105{bottom:571.680000px;}
.y22{bottom:578.520000px;}
.y61{bottom:579.960000px;}
.ye6{bottom:581.400000px;}
.yc9{bottom:582.120000px;}
.y104{bottom:588.960000px;}
.y21{bottom:595.800000px;}
.y60{bottom:597.240000px;}
.ye5{bottom:598.680000px;}
.yc8{bottom:599.400000px;}
.y103{bottom:606.240000px;}
.y20{bottom:613.080000px;}
.y5f{bottom:614.520000px;}
.yc7{bottom:616.680000px;}
.y102{bottom:623.520000px;}
.ye4{bottom:624.960000px;}
.y1f{bottom:630.360000px;}
.y5e{bottom:631.800000px;}
.yc6{bottom:633.960000px;}
.y101{bottom:640.800000px;}
.y1e{bottom:647.640000px;}
.y5d{bottom:649.080000px;}
.yc5{bottom:651.240000px;}
.y91{bottom:657.720000px;}
.y100{bottom:658.080000px;}
.y1d{bottom:664.920000px;}
.y5c{bottom:666.000000px;}
.yc4{bottom:668.520000px;}
.y90{bottom:675.000000px;}
.y1c{bottom:682.200000px;}
.y5b{bottom:683.280000px;}
.yc3{bottom:685.800000px;}
.y8f{bottom:691.920000px;}
.yff{bottom:692.280000px;}
.y1b{bottom:699.480000px;}
.y5a{bottom:700.560000px;}
.yc2{bottom:703.080000px;}
.y8e{bottom:705.960000px;}
.yfe{bottom:709.560000px;}
.y1a{bottom:716.760000px;}
.y59{bottom:717.840000px;}
.yc1{bottom:720.000000px;}
.yfd{bottom:726.840000px;}
.y58{bottom:735.120000px;}
.y19{bottom:736.200000px;}
.yc0{bottom:737.280000px;}
.yfc{bottom:744.120000px;}
.y87{bottom:752.400000px;}
.y18{bottom:753.480000px;}
.ybf{bottom:754.560000px;}
.y57{bottom:761.400000px;}
.y86{bottom:769.680000px;}
.y17{bottom:770.760000px;}
.ybe{bottom:771.840000px;}
.y56{bottom:778.680000px;}
.y85{bottom:786.960000px;}
.ybd{bottom:789.120000px;}
.y16{bottom:790.200000px;}
.y55{bottom:795.960000px;}
.y84{bottom:804.240000px;}
.ybc{bottom:806.400000px;}
.y15{bottom:812.880000px;}
.y54{bottom:813.240000px;}
.y83{bottom:821.520000px;}
.ybb{bottom:823.680000px;}
.y14{bottom:824.760000px;}
.y53{bottom:830.520000px;}
.y82{bottom:838.800000px;}
.yba{bottom:840.960000px;}
.y13{bottom:847.440000px;}
.y52{bottom:847.800000px;}
.y81{bottom:855.720000px;}
.yb9{bottom:858.240000px;}
.y12{bottom:859.320000px;}
.y51{bottom:864.720000px;}
.y80{bottom:873.000000px;}
.yb8{bottom:875.520000px;}
.y11{bottom:881.640000px;}
.y50{bottom:882.000000px;}
.y7f{bottom:890.280000px;}
.y10{bottom:893.520000px;}
.y4f{bottom:899.280000px;}
.yb7{bottom:901.800000px;}
.y7e{bottom:907.560000px;}
.yf{bottom:916.200000px;}
.y4e{bottom:916.560000px;}
.y8d{bottom:923.400000px;}
.y7d{bottom:924.840000px;}
.yb6{bottom:927.720000px;}
.ye{bottom:928.080000px;}
.y4d{bottom:933.840000px;}
.y8c{bottom:940.680000px;}
.y7c{bottom:942.120000px;}
.yb5{bottom:945.000000px;}
.yd{bottom:950.760000px;}
.y4c{bottom:951.120000px;}
.y8b{bottom:954.720000px;}
.y7b{bottom:959.400000px;}
.yb4{bottom:962.280000px;}
.y4b{bottom:968.400000px;}
.yc{bottom:972.720000px;}
.y7a{bottom:976.680000px;}
.yb3{bottom:979.560000px;}
.y4a{bottom:985.680000px;}
.yb{bottom:993.240000px;}
.y79{bottom:993.960000px;}
.yb2{bottom:996.840000px;}
.y49{bottom:1002.960000px;}
.yb1{bottom:1011.000000px;}
.y78{bottom:1011.240000px;}
.y48{bottom:1020.240000px;}
.ya{bottom:1023.480000px;}
.y77{bottom:1028.520000px;}
.yb0{bottom:1029.000000px;}
.y47{bottom:1037.520000px;}
.y76{bottom:1045.800000px;}
.yaf{bottom:1047.000000px;}
.y9{bottom:1047.600000px;}
.y46{bottom:1054.800000px;}
.y75{bottom:1062.720000px;}
.yae{bottom:1065.000000px;}
.y8{bottom:1071.720000px;}
.y74{bottom:1080.000000px;}
.yad{bottom:1083.000000px;}
.y45{bottom:1089.000000px;}
.y73{bottom:1097.280000px;}
.ya9{bottom:1101.000000px;}
.y44{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y72{bottom:1114.560000px;}
.yab{bottom:1119.000000px;}
.y43{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.y42{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y40{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hd{height:4.500000px;}
.h12{height:18.000000px;}
.h10{height:19.500000px;}
.h9{height:26.274375px;}
.hc{height:32.994844px;}
.h11{height:36.000000px;}
.he{height:37.085625px;}
.hf{height:37.500000px;}
.h5{height:40.989375px;}
.hb{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.ha{height:47.874375px;}
.h3{height:48.095156px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w7{width:132.000000px;}
.w6{width:133.500000px;}
.w3{width:151.500000px;}
.w8{width:225.000000px;}
.wb{width:226.500000px;}
.wa{width:228.000000px;}
.w5{width:262.500000px;}
.w4{width:264.000000px;}
.w9{width:453.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x16{left:1.560048px;}
.x1f{left:8.640036px;}
.x5{left:108.000000px;}
.x11{left:110.726820px;}
.xf{left:114.290028px;}
.x9{left:120.410892px;}
.x4{left:121.562640px;}
.xd{left:129.081312px;}
.xb{left:140.414796px;}
.x19{left:143.362044px;}
.x24{left:148.573260px;}
.x15{left:160.500000px;}
.x8{left:169.968024px;}
.x1e{left:205.035660px;}
.x20{left:258.000000px;}
.xe{left:281.885004px;}
.x1d{left:288.985860px;}
.x2{left:298.937628px;}
.x10{left:307.501452px;}
.x25{left:331.500000px;}
.x12{left:334.377684px;}
.x22{left:390.000000px;}
.xa{left:397.461240px;}
.x1b{left:402.309720px;}
.xc{left:413.469000px;}
.x3{left:446.474880px;}
.x14{left:473.040000px;}
.x27{left:504.990360px;}
.x1{left:514.061640px;}
.x21{left:522.000000px;}
.x17{left:551.054880px;}
.x26{left:558.000000px;}
.x1a{left:575.714880px;}
.x18{left:583.814880px;}
.x1c{left:585.974880px;}
.x7{left:603.506520px;}
.x23{left:652.500000px;}
.x6{left:759.861720px;}
.x13{left:766.564525px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls29{letter-spacing:-0.452352pt;}
.ls19{letter-spacing:-0.408576pt;}
.ls34{letter-spacing:-0.370944pt;}
.ls2b{letter-spacing:-0.354816pt;}
.ls1f{letter-spacing:-0.338688pt;}
.ls2a{letter-spacing:-0.321024pt;}
.ls18{letter-spacing:-0.301056pt;}
.ls1d{letter-spacing:-0.284928pt;}
.lse{letter-spacing:-0.268800pt;}
.ls28{letter-spacing:-0.243200pt;}
.ls2c{letter-spacing:-0.241920pt;}
.ls1a{letter-spacing:-0.231168pt;}
.ls1b{letter-spacing:-0.215040pt;}
.ls1c{letter-spacing:-0.198912pt;}
.ls13{letter-spacing:-0.176640pt;}
.ls11{letter-spacing:-0.155904pt;}
.ls1e{letter-spacing:-0.139776pt;}
.lsd{letter-spacing:-0.135424pt;}
.lsc{letter-spacing:-0.129536pt;}
.lsf{letter-spacing:-0.129024pt;}
.ls12{letter-spacing:-0.117760pt;}
.ls10{letter-spacing:-0.107520pt;}
.lsb{letter-spacing:-0.105984pt;}
.lsa{letter-spacing:-0.070656pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.053248pt;}
.ls5{letter-spacing:0.053376pt;}
.ls0{letter-spacing:0.106240pt;}
.ls21{letter-spacing:0.109824pt;}
.ls22{letter-spacing:0.143616pt;}
.ls8{letter-spacing:0.211200pt;}
.ls2{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.213248pt;}
.ls3{letter-spacing:0.213760pt;}
.ls15{letter-spacing:0.215296pt;}
.ls23{letter-spacing:0.215424pt;}
.ls14{letter-spacing:0.244992pt;}
.ls17{letter-spacing:0.252416pt;}
.ls20{letter-spacing:0.253440pt;}
.ls16{letter-spacing:0.319232pt;}
.ls7{letter-spacing:0.729600pt;}
.ls6{letter-spacing:1.698560pt;}
.ls27{letter-spacing:2.462720pt;}
.ls33{letter-spacing:3.936000pt;}
.ls26{letter-spacing:4.051200pt;}
.ls25{letter-spacing:6.547200pt;}
.ls2e{letter-spacing:12.706560pt;}
.ls24{letter-spacing:16.738432pt;}
.ls31{letter-spacing:31.988352pt;}
.ls32{letter-spacing:31.988480pt;}
.ls2d{letter-spacing:43.704576pt;}
.ls30{letter-spacing:58.654976pt;}
.ls2f{letter-spacing:58.656000pt;}
.ws6{word-spacing:-18.812416pt;}
.ws7{word-spacing:-16.000000pt;}
.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;}
.wsd{word-spacing:-13.300224pt;}
.wsb{word-spacing:-13.284096pt;}
.ws13{word-spacing:-13.241088pt;}
.ws9{word-spacing:-13.224960pt;}
.ws16{word-spacing:-13.208832pt;}
.ws15{word-spacing:-13.198080pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws4{word-spacing:-13.171200pt;}
.ws17{word-spacing:-13.155072pt;}
.wsa{word-spacing:-13.138944pt;}
.ws12{word-spacing:-13.101312pt;}
.ws14{word-spacing:-13.085184pt;}
.wsf{word-spacing:-12.160000pt;}
.ws10{word-spacing:-11.916800pt;}
.ws11{word-spacing:-11.838976pt;}
.wse{word-spacing:0.000000pt;}
._8{margin-left:-3.825664pt;}
._7{margin-left:-2.914304pt;}
._6{margin-left:-1.822464pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._4{width:2.315904pt;}
._9{width:3.272064pt;}
._2{width:4.860800pt;}
._3{width:6.132864pt;}
._1d{width:7.451008pt;}
._e{width:8.655360pt;}
._5{width:9.569280pt;}
._f{width:10.536960pt;}
._11{width:11.719680pt;}
._1a{width:14.257152pt;}
._10{width:16.020480pt;}
._b{width:17.364480pt;}
._a{width:18.547200pt;}
._13{width:19.568640pt;}
._15{width:20.643840pt;}
._16{width:21.665280pt;}
._19{width:22.744704pt;}
._18{width:24.578688pt;}
._c{width:26.019840pt;}
._d{width:26.933760pt;}
._1c{width:27.901440pt;}
._1f{width:29.460480pt;}
._14{width:31.725312pt;}
._12{width:32.632320pt;}
._2c{width:33.931008pt;}
._23{width:35.051520pt;}
._22{width:36.126720pt;}
._2b{width:38.876928pt;}
._27{width:39.836160pt;}
._2a{width:41.455744pt;}
._28{width:42.362880pt;}
._25{width:43.561728pt;}
._1b{width:45.265920pt;}
._1e{width:48.814080pt;}
._2d{width:50.856960pt;}
._17{width:51.932160pt;}
._26{width:53.652480pt;}
._29{width:57.366144pt;}
._20{width:59.673600pt;}
._24{width:61.662720pt;}
._21{width:80.783872pt;}
.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;}
.y3f{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:1.546667pt;}
.yac{bottom:3.413333pt;}
.y9c{bottom:3.733333pt;}
.yaa{bottom:19.413333pt;}
.y9a{bottom:19.733333pt;}
.y41{bottom:47.680000pt;}
.y6{bottom:51.840000pt;}
.y3d{bottom:57.333333pt;}
.y5{bottom:76.800000pt;}
.yfb{bottom:101.440000pt;}
.y8a{bottom:103.360000pt;}
.y3c{bottom:109.440000pt;}
.ya8{bottom:112.000000pt;}
.y89{bottom:115.840000pt;}
.yfa{bottom:116.800000pt;}
.ye3{bottom:118.720000pt;}
.y3b{bottom:124.800000pt;}
.ya7{bottom:127.360000pt;}
.yf9{bottom:132.160000pt;}
.ye2{bottom:134.080000pt;}
.y3a{bottom:140.160000pt;}
.ya6{bottom:142.400000pt;}
.yf8{bottom:147.520000pt;}
.ye1{bottom:149.440000pt;}
.ya5{bottom:154.666667pt;}
.y39{bottom:155.200000pt;}
.yf7{bottom:162.880000pt;}
.ye0{bottom:164.800000pt;}
.y38{bottom:170.560000pt;}
.ya4{bottom:170.666667pt;}
.yf6{bottom:178.240000pt;}
.ydf{bottom:180.160000pt;}
.y37{bottom:185.920000pt;}
.ya3{bottom:186.666667pt;}
.yf5{bottom:193.600000pt;}
.yde{bottom:195.520000pt;}
.y36{bottom:201.280000pt;}
.ya2{bottom:202.666667pt;}
.yf4{bottom:208.960000pt;}
.ydd{bottom:210.880000pt;}
.y35{bottom:216.640000pt;}
.ya1{bottom:218.666667pt;}
.yf3{bottom:224.320000pt;}
.ydc{bottom:226.240000pt;}
.ya0{bottom:234.666667pt;}
.yf2{bottom:239.360000pt;}
.y34{bottom:240.000000pt;}
.ydb{bottom:241.600000pt;}
.y9f{bottom:250.666667pt;}
.y88{bottom:254.720000pt;}
.yda{bottom:256.960000pt;}
.y33{bottom:264.640000pt;}
.y9e{bottom:266.666667pt;}
.y71{bottom:270.080000pt;}
.yd9{bottom:272.320000pt;}
.y32{bottom:277.120000pt;}
.y9d{bottom:282.666667pt;}
.y70{bottom:285.440000pt;}
.yd8{bottom:287.360000pt;}
.y31{bottom:289.280000pt;}
.y99{bottom:298.666667pt;}
.y6f{bottom:300.800000pt;}
.y30{bottom:301.760000pt;}
.yd7{bottom:302.720000pt;}
.y9b{bottom:314.666667pt;}
.y2f{bottom:315.200000pt;}
.y6e{bottom:316.160000pt;}
.yd6{bottom:318.080000pt;}
.yf1{bottom:324.160000pt;}
.y2e{bottom:330.240000pt;}
.y6d{bottom:331.520000pt;}
.yd5{bottom:333.440000pt;}
.y98{bottom:334.400000pt;}
.y2d{bottom:345.600000pt;}
.y6c{bottom:346.880000pt;}
.yf0{bottom:347.520000pt;}
.yd4{bottom:348.800000pt;}
.y97{bottom:349.760000pt;}
.y2c{bottom:360.960000pt;}
.y6b{bottom:362.240000pt;}
.yef{bottom:362.880000pt;}
.yd3{bottom:364.160000pt;}
.y96{bottom:365.120000pt;}
.y2b{bottom:376.320000pt;}
.y6a{bottom:377.600000pt;}
.yee{bottom:378.240000pt;}
.yd2{bottom:379.520000pt;}
.y95{bottom:380.480000pt;}
.y2a{bottom:391.680000pt;}
.y69{bottom:392.960000pt;}
.yed{bottom:393.600000pt;}
.yd1{bottom:394.880000pt;}
.y94{bottom:395.840000pt;}
.y29{bottom:407.040000pt;}
.y68{bottom:408.000000pt;}
.yec{bottom:408.960000pt;}
.yd0{bottom:410.240000pt;}
.y93{bottom:411.200000pt;}
.y28{bottom:422.400000pt;}
.y67{bottom:423.360000pt;}
.y92{bottom:423.680000pt;}
.ycf{bottom:425.600000pt;}
.yeb{bottom:432.000000pt;}
.y27{bottom:437.760000pt;}
.y66{bottom:438.720000pt;}
.yce{bottom:440.960000pt;}
.y26{bottom:453.120000pt;}
.y65{bottom:454.080000pt;}
.yea{bottom:455.360000pt;}
.ycd{bottom:456.000000pt;}
.y25{bottom:468.480000pt;}
.y64{bottom:469.440000pt;}
.ye9{bottom:470.720000pt;}
.ycc{bottom:471.360000pt;}
.y24{bottom:483.840000pt;}
.y63{bottom:484.800000pt;}
.ye8{bottom:486.080000pt;}
.ycb{bottom:486.720000pt;}
.y106{bottom:492.800000pt;}
.y23{bottom:499.200000pt;}
.y62{bottom:500.160000pt;}
.ye7{bottom:501.440000pt;}
.yca{bottom:502.080000pt;}
.y105{bottom:508.160000pt;}
.y22{bottom:514.240000pt;}
.y61{bottom:515.520000pt;}
.ye6{bottom:516.800000pt;}
.yc9{bottom:517.440000pt;}
.y104{bottom:523.520000pt;}
.y21{bottom:529.600000pt;}
.y60{bottom:530.880000pt;}
.ye5{bottom:532.160000pt;}
.yc8{bottom:532.800000pt;}
.y103{bottom:538.880000pt;}
.y20{bottom:544.960000pt;}
.y5f{bottom:546.240000pt;}
.yc7{bottom:548.160000pt;}
.y102{bottom:554.240000pt;}
.ye4{bottom:555.520000pt;}
.y1f{bottom:560.320000pt;}
.y5e{bottom:561.600000pt;}
.yc6{bottom:563.520000pt;}
.y101{bottom:569.600000pt;}
.y1e{bottom:575.680000pt;}
.y5d{bottom:576.960000pt;}
.yc5{bottom:578.880000pt;}
.y91{bottom:584.640000pt;}
.y100{bottom:584.960000pt;}
.y1d{bottom:591.040000pt;}
.y5c{bottom:592.000000pt;}
.yc4{bottom:594.240000pt;}
.y90{bottom:600.000000pt;}
.y1c{bottom:606.400000pt;}
.y5b{bottom:607.360000pt;}
.yc3{bottom:609.600000pt;}
.y8f{bottom:615.040000pt;}
.yff{bottom:615.360000pt;}
.y1b{bottom:621.760000pt;}
.y5a{bottom:622.720000pt;}
.yc2{bottom:624.960000pt;}
.y8e{bottom:627.520000pt;}
.yfe{bottom:630.720000pt;}
.y1a{bottom:637.120000pt;}
.y59{bottom:638.080000pt;}
.yc1{bottom:640.000000pt;}
.yfd{bottom:646.080000pt;}
.y58{bottom:653.440000pt;}
.y19{bottom:654.400000pt;}
.yc0{bottom:655.360000pt;}
.yfc{bottom:661.440000pt;}
.y87{bottom:668.800000pt;}
.y18{bottom:669.760000pt;}
.ybf{bottom:670.720000pt;}
.y57{bottom:676.800000pt;}
.y86{bottom:684.160000pt;}
.y17{bottom:685.120000pt;}
.ybe{bottom:686.080000pt;}
.y56{bottom:692.160000pt;}
.y85{bottom:699.520000pt;}
.ybd{bottom:701.440000pt;}
.y16{bottom:702.400000pt;}
.y55{bottom:707.520000pt;}
.y84{bottom:714.880000pt;}
.ybc{bottom:716.800000pt;}
.y15{bottom:722.560000pt;}
.y54{bottom:722.880000pt;}
.y83{bottom:730.240000pt;}
.ybb{bottom:732.160000pt;}
.y14{bottom:733.120000pt;}
.y53{bottom:738.240000pt;}
.y82{bottom:745.600000pt;}
.yba{bottom:747.520000pt;}
.y13{bottom:753.280000pt;}
.y52{bottom:753.600000pt;}
.y81{bottom:760.640000pt;}
.yb9{bottom:762.880000pt;}
.y12{bottom:763.840000pt;}
.y51{bottom:768.640000pt;}
.y80{bottom:776.000000pt;}
.yb8{bottom:778.240000pt;}
.y11{bottom:783.680000pt;}
.y50{bottom:784.000000pt;}
.y7f{bottom:791.360000pt;}
.y10{bottom:794.240000pt;}
.y4f{bottom:799.360000pt;}
.yb7{bottom:801.600000pt;}
.y7e{bottom:806.720000pt;}
.yf{bottom:814.400000pt;}
.y4e{bottom:814.720000pt;}
.y8d{bottom:820.800000pt;}
.y7d{bottom:822.080000pt;}
.yb6{bottom:824.640000pt;}
.ye{bottom:824.960000pt;}
.y4d{bottom:830.080000pt;}
.y8c{bottom:836.160000pt;}
.y7c{bottom:837.440000pt;}
.yb5{bottom:840.000000pt;}
.yd{bottom:845.120000pt;}
.y4c{bottom:845.440000pt;}
.y8b{bottom:848.640000pt;}
.y7b{bottom:852.800000pt;}
.yb4{bottom:855.360000pt;}
.y4b{bottom:860.800000pt;}
.yc{bottom:864.640000pt;}
.y7a{bottom:868.160000pt;}
.yb3{bottom:870.720000pt;}
.y4a{bottom:876.160000pt;}
.yb{bottom:882.880000pt;}
.y79{bottom:883.520000pt;}
.yb2{bottom:886.080000pt;}
.y49{bottom:891.520000pt;}
.yb1{bottom:898.666667pt;}
.y78{bottom:898.880000pt;}
.y48{bottom:906.880000pt;}
.ya{bottom:909.760000pt;}
.y77{bottom:914.240000pt;}
.yb0{bottom:914.666667pt;}
.y47{bottom:922.240000pt;}
.y76{bottom:929.600000pt;}
.yaf{bottom:930.666667pt;}
.y9{bottom:931.200000pt;}
.y46{bottom:937.600000pt;}
.y75{bottom:944.640000pt;}
.yae{bottom:946.666667pt;}
.y8{bottom:952.640000pt;}
.y74{bottom:960.000000pt;}
.yad{bottom:962.666667pt;}
.y45{bottom:968.000000pt;}
.y73{bottom:975.360000pt;}
.ya9{bottom:978.666667pt;}
.y44{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y72{bottom:990.720000pt;}
.yab{bottom:994.666667pt;}
.y43{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.y42{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y40{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hd{height:4.000000pt;}
.h12{height:16.000000pt;}
.h10{height:17.333333pt;}
.h9{height:23.355000pt;}
.hc{height:29.328750pt;}
.h11{height:32.000000pt;}
.he{height:32.965000pt;}
.hf{height:33.333333pt;}
.h5{height:36.435000pt;}
.hb{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.ha{height:42.555000pt;}
.h3{height:42.751250pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w7{width:117.333333pt;}
.w6{width:118.666667pt;}
.w3{width:134.666667pt;}
.w8{width:200.000000pt;}
.wb{width:201.333333pt;}
.wa{width:202.666667pt;}
.w5{width:233.333333pt;}
.w4{width:234.666667pt;}
.w9{width:402.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x16{left:1.386709pt;}
.x1f{left:7.680032pt;}
.x5{left:96.000000pt;}
.x11{left:98.423840pt;}
.xf{left:101.591136pt;}
.x9{left:107.031904pt;}
.x4{left:108.055680pt;}
.xd{left:114.738944pt;}
.xb{left:124.813152pt;}
.x19{left:127.432928pt;}
.x24{left:132.065120pt;}
.x15{left:142.666667pt;}
.x8{left:151.082688pt;}
.x1e{left:182.253920pt;}
.x20{left:229.333333pt;}
.xe{left:250.564448pt;}
.x1d{left:256.876320pt;}
.x2{left:265.722336pt;}
.x10{left:273.334624pt;}
.x25{left:294.666667pt;}
.x12{left:297.224608pt;}
.x22{left:346.666667pt;}
.xa{left:353.298880pt;}
.x1b{left:357.608640pt;}
.xc{left:367.528000pt;}
.x3{left:396.866560pt;}
.x14{left:420.480000pt;}
.x27{left:448.880320pt;}
.x1{left:456.943680pt;}
.x21{left:464.000000pt;}
.x17{left:489.826560pt;}
.x26{left:496.000000pt;}
.x1a{left:511.746560pt;}
.x18{left:518.946560pt;}
.x1c{left:520.866560pt;}
.x7{left:536.450240pt;}
.x23{left:580.000000pt;}
.x6{left:675.432640pt;}
.x13{left:681.390689pt;}
}




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