
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3d9ccce6e3577b0f9f61e028.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_93fd3b92af3047c2c48bf7e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.331543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ae6523285bf0e1bacc00e073.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5c4e6f89714f40e2f2064050.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2af57ada44c4e27b87130ae6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.331543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_46448410d19f8472eca100d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_302ed5c71651c15d1085c268.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1caffbe218280b096f236a4b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.801000;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_c203a5c9edc213d54f89ea50.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7fee0f5a9c3807608d05aadc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.331543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b742d57fcd86ab427d1a40f0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.312988;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_d7a1567110512a852af75f7a.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_868604ca7ce2a2a1888f413a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.ls2c{letter-spacing:-8.095350px;}
.ls3e{letter-spacing:-1.206000px;}
.ls39{letter-spacing:-1.146000px;}
.ls30{letter-spacing:-0.853806px;}
.ls3a{letter-spacing:-0.822000px;}
.ls29{letter-spacing:-0.752615px;}
.ls33{letter-spacing:-0.714668px;}
.ls32{letter-spacing:-0.630000px;}
.ls24{letter-spacing:-0.573000px;}
.ls43{letter-spacing:-0.555600px;}
.ls28{letter-spacing:-0.507224px;}
.ls52{letter-spacing:-0.507000px;}
.ls2e{letter-spacing:-0.385794px;}
.ls2a{letter-spacing:-0.349112px;}
.ls4f{letter-spacing:-0.230400px;}
.ls34{letter-spacing:-0.218827px;}
.ls2d{letter-spacing:-0.158112px;}
.ls25{letter-spacing:-0.089400px;}
.ls31{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.020160px;}
.ls4e{letter-spacing:0.078000px;}
.ls42{letter-spacing:0.135600px;}
.ls45{letter-spacing:0.140160px;}
.ls21{letter-spacing:0.150000px;}
.ls44{letter-spacing:0.181440px;}
.ls3{letter-spacing:0.195840px;}
.ls3d{letter-spacing:0.200160px;}
.ls3f{letter-spacing:0.233280px;}
.ls3c{letter-spacing:0.233400px;}
.ls2b{letter-spacing:0.242860px;}
.ls2f{letter-spacing:0.303576px;}
.ls47{letter-spacing:0.328320px;}
.ls27{letter-spacing:0.382632px;}
.ls20{letter-spacing:0.388800px;}
.ls46{letter-spacing:0.400320px;}
.ls2{letter-spacing:0.423360px;}
.ls1{letter-spacing:0.466560px;}
.ls23{letter-spacing:0.466800px;}
.ls35{letter-spacing:0.478560px;}
.ls36{letter-spacing:0.610560px;}
.ls37{letter-spacing:0.618000px;}
.ls51{letter-spacing:0.646560px;}
.lsb{letter-spacing:0.661795px;}
.ls26{letter-spacing:0.664072px;}
.ls4{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.738000px;}
.lsc{letter-spacing:0.788285px;}
.ls1f{letter-spacing:1.260000px;}
.ls0{letter-spacing:1.261440px;}
.ls6{letter-spacing:2.179673px;}
.ls4c{letter-spacing:2.701440px;}
.ls41{letter-spacing:3.346560px;}
.ls5{letter-spacing:3.697551px;}
.ls12{letter-spacing:3.824041px;}
.ls7{letter-spacing:3.887286px;}
.ls40{letter-spacing:4.786560px;}
.ls11{letter-spacing:5.215429px;}
.ls13{letter-spacing:5.341919px;}
.ls10{letter-spacing:6.733307px;}
.ls38{letter-spacing:7.666560px;}
.lsd{letter-spacing:8.251185px;}
.lsf{letter-spacing:8.377675px;}
.ls4a{letter-spacing:9.447840px;}
.lse{letter-spacing:9.769063px;}
.ls4b{letter-spacing:10.887840px;}
.ls14{letter-spacing:11.286942px;}
.ls15{letter-spacing:12.804820px;}
.ls16{letter-spacing:12.994554px;}
.ls48{letter-spacing:13.707840px;}
.ls1c{letter-spacing:17.358454px;}
.ls1d{letter-spacing:17.484944px;}
.ls1b{letter-spacing:18.876332px;}
.ls49{letter-spacing:29.547840px;}
.ls19{letter-spacing:38.608747px;}
.ls1a{letter-spacing:38.735237px;}
.ls17{letter-spacing:38.798482px;}
.ls18{letter-spacing:40.126625px;}
.ls50{letter-spacing:40.786560px;}
.ls8{letter-spacing:46.198138px;}
.lsa{letter-spacing:46.387873px;}
.ls9{letter-spacing:47.716016px;}
.ls4d{letter-spacing:91.647840px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-83.520000px;}
.ws12{word-spacing:-55.048320px;}
.ws13{word-spacing:-54.720000px;}
.ws15{word-spacing:-54.489600px;}
.ws14{word-spacing:-36.060480px;}
.ws1{word-spacing:-26.642880px;}
.ws4{word-spacing:-19.293120px;}
.ws8{word-spacing:-18.399718px;}
.ws18{word-spacing:-17.431440px;}
.wsc{word-spacing:-17.046840px;}
.ws11{word-spacing:-16.994880px;}
.wse{word-spacing:-16.949040px;}
.ws10{word-spacing:-16.891440px;}
.ws2{word-spacing:-16.813440px;}
.ws0{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.306440px;}
.wsf{word-spacing:-16.257840px;}
.ws7{word-spacing:-16.034864px;}
.wsd{word-spacing:-15.607440px;}
.wsa{word-spacing:-13.050000px;}
.ws5{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.808640px;}
.ws6{word-spacing:-10.440000px;}
.ws9{word-spacing:-8.928000px;}
.wsb{word-spacing:0.000000px;}
._21{margin-left:-17.943891px;}
._7{margin-left:-11.108160px;}
._16{margin-left:-9.330363px;}
._b{margin-left:-8.132791px;}
._18{margin-left:-7.059363px;}
._e{margin-left:-4.248909px;}
._11{margin-left:-3.225434px;}
._5{margin-left:-2.119680px;}
._6{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._a{width:4.606080px;}
._13{width:6.352951px;}
._c{width:7.555997px;}
._10{width:8.603859px;}
._14{width:9.977853px;}
._8{width:11.442240px;}
._9{width:12.798720px;}
._15{width:14.308634px;}
._17{width:15.376593px;}
._f{width:16.411279px;}
._12{width:18.282467px;}
._1f{width:19.303678px;}
._1b{width:20.566080px;}
._20{width:21.688027px;}
._1e{width:25.445280px;}
._1d{width:27.218880px;}
._1c{width:28.730880px;}
._1a{width:38.928960px;}
._19{width:40.590720px;}
._d{width:47.099757px;}
._3{width:118.920000px;}
._4{width:382.500000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsb{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs8{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fsc{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fsd{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y40{bottom:2.911500px;}
.y5{bottom:4.320000px;}
.ya9{bottom:5.385000px;}
.yd9{bottom:5.389500px;}
.ydb{bottom:5.395500px;}
.ya1{bottom:5.400000px;}
.ya7{bottom:5.745000px;}
.ydc{bottom:5.755500px;}
.ya3{bottom:5.760000px;}
.yfa{bottom:5.805000px;}
.y4f{bottom:7.170000px;}
.y36{bottom:7.200000px;}
.y2{bottom:10.080000px;}
.y3f{bottom:10.471500px;}
.yc5{bottom:14.040000px;}
.y4b{bottom:15.514500px;}
.y107{bottom:15.876000px;}
.y4{bottom:23.400000px;}
.y35{bottom:30.600000px;}
.y4a{bottom:34.234500px;}
.yc4{bottom:38.520000px;}
.ycd{bottom:38.865000px;}
.yd5{bottom:38.875500px;}
.ybd{bottom:38.880000px;}
.y3e{bottom:39.994500px;}
.y105{bottom:47.232000px;}
.y3{bottom:47.880000px;}
.y34{bottom:50.400000px;}
.y3d{bottom:51.874500px;}
.y49{bottom:56.194500px;}
.y7{bottom:57.636000px;}
.ybc{bottom:64.080000px;}
.ycc{bottom:64.095000px;}
.yd4{bottom:64.114500px;}
.y3c{bottom:65.194500px;}
.yfe{bottom:65.550000px;}
.y33{bottom:70.605000px;}
.y48{bottom:75.634500px;}
.y3b{bottom:78.154500px;}
.yff{bottom:87.945000px;}
.y7e{bottom:90.756000px;}
.y32{bottom:90.765000px;}
.ycb{bottom:92.175000px;}
.yc3{bottom:92.205000px;}
.ybb{bottom:92.520000px;}
.yd3{bottom:92.554500px;}
.y47{bottom:92.914500px;}
.y4d{bottom:94.356000px;}
.yfc{bottom:96.876000px;}
.yfd{bottom:99.360000px;}
.y46{bottom:99.394500px;}
.y3a{bottom:99.754500px;}
.yd2{bottom:101.560500px;}
.y100{bottom:110.340000px;}
.y7d{bottom:110.556000px;}
.y31{bottom:110.925000px;}
.y45{bottom:115.234500px;}
.y4c{bottom:117.396000px;}
.yda{bottom:124.240500px;}
.y44{bottom:130.714500px;}
.y7c{bottom:130.716000px;}
.y30{bottom:131.085000px;}
.y101{bottom:132.735000px;}
.y9f{bottom:134.676000px;}
.y37{bottom:139.000500px;}
.y43{bottom:146.224500px;}
.yd8{bottom:146.605500px;}
.y2f{bottom:150.885000px;}
.y7b{bottom:150.915000px;}
.y9e{bottom:154.875000px;}
.y102{bottom:155.160000px;}
.y42{bottom:161.704500px;}
.y39{bottom:162.064500px;}
.yd7{bottom:168.930000px;}
.y2e{bottom:171.045000px;}
.y7a{bottom:171.075000px;}
.y38{bottom:172.864500px;}
.y9d{bottom:175.035000px;}
.y41{bottom:176.824500px;}
.y103{bottom:177.555000px;}
.y2d{bottom:191.205000px;}
.y79{bottom:191.235000px;}
.yd6{bottom:191.610000px;}
.y9c{bottom:195.195000px;}
.y104{bottom:199.950000px;}
.y78{bottom:213.915000px;}
.yca{bottom:213.930000px;}
.y2c{bottom:214.275000px;}
.y9b{bottom:214.995000px;}
.y106{bottom:228.990000px;}
.y9a{bottom:235.155000px;}
.yd1{bottom:236.250000px;}
.y77{bottom:237.315000px;}
.y2b{bottom:248.835000px;}
.y1d{bottom:257.115000px;}
.y76{bottom:257.475000px;}
.y99{bottom:258.195000px;}
.yd0{bottom:258.930000px;}
.y2a{bottom:272.235000px;}
.y75{bottom:280.545000px;}
.y1c{bottom:281.235000px;}
.ycf{bottom:281.265000px;}
.y98{bottom:281.625000px;}
.y29{bottom:295.995000px;}
.y97{bottom:301.785000px;}
.yce{bottom:303.585000px;}
.y1b{bottom:305.715000px;}
.y74{bottom:312.585000px;}
.y28{bottom:319.395000px;}
.y96{bottom:321.585000px;}
.yc2{bottom:326.265000px;}
.y1a{bottom:329.865000px;}
.y73{bottom:332.745000px;}
.yf{bottom:341.385000px;}
.y95{bottom:341.745000px;}
.y27{bottom:342.825000px;}
.yc9{bottom:348.585000px;}
.y72{bottom:352.905000px;}
.y19{bottom:353.985000px;}
.y94{bottom:361.905000px;}
.y26{bottom:366.585000px;}
.yc8{bottom:370.905000px;}
.y71{bottom:373.065000px;}
.y18{bottom:378.105000px;}
.y93{bottom:382.065000px;}
.yfb{bottom:387.105000px;}
.y25{bottom:389.985000px;}
.y70{bottom:393.225000px;}
.yc7{bottom:393.585000px;}
.y17{bottom:402.225000px;}
.yf9{bottom:404.025000px;}
.y24{bottom:413.385000px;}
.y6f{bottom:413.430000px;}
.yc6{bottom:415.950000px;}
.y92{bottom:422.430000px;}
.y16{bottom:426.345000px;}
.yf8{bottom:426.750000px;}
.y6e{bottom:433.230000px;}
.y23{bottom:437.145000px;}
.yba{bottom:438.270000px;}
.y91{bottom:442.230000px;}
.yf7{bottom:449.070000px;}
.y15{bottom:450.465000px;}
.y11b{bottom:452.310000px;}
.y6d{bottom:453.390000px;}
.y22{bottom:460.590000px;}
.yc1{bottom:460.950000px;}
.y90{bottom:462.390000px;}
.yf6{bottom:471.390000px;}
.y6c{bottom:473.550000px;}
.y14{bottom:474.630000px;}
.y11a{bottom:477.150000px;}
.y8f{bottom:482.550000px;}
.yc0{bottom:483.270000px;}
.y21{bottom:483.990000px;}
.yf5{bottom:494.070000px;}
.y6b{bottom:496.590000px;}
.y13{bottom:498.750000px;}
.y119{bottom:500.190000px;}
.y8e{bottom:502.710000px;}
.ybf{bottom:505.590000px;}
.y20{bottom:507.750000px;}
.yf4{bottom:516.390000px;}
.y12{bottom:522.870000px;}
.y118{bottom:523.590000px;}
.ybe{bottom:528.270000px;}
.y6a{bottom:528.630000px;}
.y1f{bottom:531.150000px;}
.y8d{bottom:542.700000px;}
.yf3{bottom:543.060000px;}
.y117{bottom:546.660000px;}
.y11{bottom:546.990000px;}
.y69{bottom:548.820000px;}
.yb9{bottom:550.620000px;}
.y1e{bottom:554.550000px;}
.y8c{bottom:562.860000px;}
.yf2{bottom:563.220000px;}
.y68{bottom:568.980000px;}
.y116{bottom:569.700000px;}
.y10{bottom:571.110000px;}
.yb8{bottom:577.260000px;}
.y8b{bottom:583.020000px;}
.yf1{bottom:583.380000px;}
.y67{bottom:589.140000px;}
.y115{bottom:595.980000px;}
.yb7{bottom:597.420000px;}
.y8a{bottom:603.180000px;}
.yf0{bottom:603.540000px;}
.y66{bottom:609.300000px;}
.yb6{bottom:617.580000px;}
.y114{bottom:619.020000px;}
.y89{bottom:623.340000px;}
.y65{bottom:629.460000px;}
.yb5{bottom:637.740000px;}
.y113{bottom:642.060000px;}
.y88{bottom:643.500000px;}
.y64{bottom:649.260000px;}
.yb4{bottom:660.420000px;}
.yef{bottom:663.660000px;}
.y112{bottom:665.100000px;}
.y87{bottom:666.180000px;}
.y63{bottom:672.330000px;}
.yee{bottom:683.850000px;}
.y111{bottom:688.170000px;}
.yb3{bottom:692.850000px;}
.y86{bottom:698.610000px;}
.y62{bottom:704.730000px;}
.yed{bottom:706.530000px;}
.y110{bottom:711.570000px;}
.yb2{bottom:713.010000px;}
.y85{bottom:718.770000px;}
.y61{bottom:724.890000px;}
.yb1{bottom:733.170000px;}
.y10f{bottom:734.610000px;}
.yec{bottom:735.705000px;}
.y84{bottom:741.450000px;}
.y60{bottom:744.690000px;}
.yb0{bottom:752.970000px;}
.y10e{bottom:757.650000px;}
.yeb{bottom:758.025000px;}
.y5f{bottom:764.850000px;}
.yaf{bottom:773.130000px;}
.yea{bottom:780.345000px;}
.y10d{bottom:783.930000px;}
.y5e{bottom:785.010000px;}
.yae{bottom:793.290000px;}
.ye9{bottom:803.070000px;}
.y5d{bottom:805.215000px;}
.y10c{bottom:807.015000px;}
.yad{bottom:813.495000px;}
.y5c{bottom:825.375000px;}
.ye8{bottom:825.390000px;}
.y10b{bottom:832.935000px;}
.yac{bottom:833.655000px;}
.y5b{bottom:845.535000px;}
.ye7{bottom:847.710000px;}
.yab{bottom:856.335000px;}
.y10a{bottom:859.215000px;}
.y5a{bottom:865.335000px;}
.y83{bottom:868.215000px;}
.ye6{bottom:870.390000px;}
.y109{bottom:882.255000px;}
.yaa{bottom:882.615000px;}
.y59{bottom:885.495000px;}
.ye5{bottom:892.710000px;}
.y82{bottom:900.615000px;}
.ya8{bottom:902.430000px;}
.y58{bottom:905.655000px;}
.y108{bottom:908.535000px;}
.ye4{bottom:919.335000px;}
.y81{bottom:920.775000px;}
.ye{bottom:924.735000px;}
.ya6{bottom:924.750000px;}
.y57{bottom:925.815000px;}
.yd{bottom:929.775000px;}
.ye3{bottom:939.525000px;}
.y80{bottom:940.965000px;}
.ya5{bottom:947.445000px;}
.y56{bottom:948.525000px;}
.yc{bottom:954.285000px;}
.y7f{bottom:960.765000px;}
.ye2{bottom:962.205000px;}
.ya4{bottom:969.765000px;}
.yb{bottom:980.205000px;}
.y55{bottom:980.925000px;}
.ydd{bottom:991.365000px;}
.ya2{bottom:992.085000px;}
.y54{bottom:1001.085000px;}
.ya{bottom:1002.885000px;}
.ye1{bottom:1013.685000px;}
.ya0{bottom:1014.765000px;}
.y53{bottom:1021.245000px;}
.y9{bottom:1032.405000px;}
.ye0{bottom:1036.005000px;}
.y52{bottom:1041.405000px;}
.ydf{bottom:1058.685000px;}
.y51{bottom:1061.565000px;}
.y8{bottom:1072.050000px;}
.y4e{bottom:1075.320000px;}
.yde{bottom:1081.050000px;}
.y50{bottom:1084.290000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h15{height:5.650313px;}
.h19{height:21.585000px;}
.h22{height:21.586500px;}
.h1c{height:21.600000px;}
.h25{height:21.621000px;}
.h1e{height:21.630000px;}
.h23{height:21.631500px;}
.h1a{height:21.945000px;}
.h24{height:21.955500px;}
.h1b{height:21.960000px;}
.h26{height:21.990000px;}
.h17{height:27.720000px;}
.h12{height:29.678906px;}
.h11{height:35.332031px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.ha{height:49.712344px;}
.h16{height:51.064455px;}
.h13{height:53.677969px;}
.h14{height:55.147500px;}
.h7{height:57.290625px;}
.h28{height:58.140000px;}
.h6{height:59.357813px;}
.hb{height:60.952500px;}
.hf{height:61.143509px;}
.h18{height:63.565031px;}
.h9{height:64.112344px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h2{height:84.990000px;}
.h8{height:88.536094px;}
.h29{height:88.740000px;}
.h20{height:111.240000px;}
.h1f{height:111.270000px;}
.h1d{height:111.630000px;}
.h21{height:111.631500px;}
.h4{height:116.640000px;}
.h10{height:201.645000px;}
.h27{height:263.160000px;}
.hc{height:580.470000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:43.920000px;}
.wb{width:60.105000px;}
.wc{width:95.070000px;}
.w2{width:103.702500px;}
.wd{width:104.070000px;}
.w15{width:114.525000px;}
.w9{width:114.876000px;}
.wa{width:114.885000px;}
.w13{width:121.710000px;}
.w12{width:123.885000px;}
.w14{width:124.236000px;}
.wf{width:130.320000px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.we{width:184.410000px;}
.w8{width:189.795000px;}
.w11{width:225.045000px;}
.w10{width:244.185000px;}
.w16{width:465.840000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.265000px;}
.x4a{left:9.285000px;}
.x2f{left:10.800000px;}
.x4{left:13.305000px;}
.x2d{left:15.480000px;}
.x15{left:16.906500px;}
.x1a{left:18.346500px;}
.x16{left:19.426500px;}
.x26{left:20.520000px;}
.x34{left:23.040000px;}
.x37{left:24.870000px;}
.x6{left:28.785000px;}
.x33{left:29.880000px;}
.x28{left:31.350000px;}
.x38{left:32.790000px;}
.x47{left:34.560000px;}
.x35{left:36.030000px;}
.x39{left:37.125000px;}
.x2b{left:38.160000px;}
.x36{left:39.630000px;}
.x29{left:41.070000px;}
.x31{left:42.870000px;}
.x10{left:43.906500px;}
.x24{left:46.080000px;}
.x1b{left:47.542500px;}
.x11{left:50.782500px;}
.x14{left:53.302500px;}
.xf{left:55.102500px;}
.x1d{left:57.262500px;}
.x18{left:62.295000px;}
.x1c{left:66.265500px;}
.x3a{left:68.070000px;}
.x2a{left:72.045000px;}
.x13{left:75.985500px;}
.x1{left:78.529500px;}
.x3e{left:81.045000px;}
.x7{left:86.436000px;}
.x42{left:88.230000px;}
.x41{left:90.405000px;}
.x3f{left:92.910000px;}
.x2{left:95.425500px;}
.x40{left:97.950000px;}
.x1e{left:102.985500px;}
.x19{left:106.945500px;}
.x12{left:124.585500px;}
.x4b{left:140.010000px;}
.x3b{left:146.254500px;}
.x4c{left:153.390000px;}
.x3{left:182.250000px;}
.x1f{left:188.010000px;}
.x43{left:203.490000px;}
.x49{left:212.400000px;}
.x22{left:213.930000px;}
.x17{left:218.970000px;}
.x2c{left:223.665000px;}
.x20{left:230.490000px;}
.x23{left:258.945000px;}
.x3c{left:277.305000px;}
.x2e{left:284.505000px;}
.x44{left:328.110000px;}
.xc{left:372.030000px;}
.x30{left:380.310000px;}
.x25{left:449.460000px;}
.x45{left:450.540000px;}
.x21{left:463.155000px;}
.x32{left:485.460000px;}
.x3d{left:522.225000px;}
.xb{left:540.210000px;}
.x27{left:565.065000px;}
.x46{left:575.505000px;}
.xa{left:578.775000px;}
.x48{left:680.685000px;}
.xd{left:763.890000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xe{left:807.090000px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.ls2c{letter-spacing:-7.195867pt;}
.ls3e{letter-spacing:-1.072000pt;}
.ls39{letter-spacing:-1.018667pt;}
.ls30{letter-spacing:-0.758939pt;}
.ls3a{letter-spacing:-0.730667pt;}
.ls29{letter-spacing:-0.668991pt;}
.ls33{letter-spacing:-0.635260pt;}
.ls32{letter-spacing:-0.560000pt;}
.ls24{letter-spacing:-0.509333pt;}
.ls43{letter-spacing:-0.493867pt;}
.ls28{letter-spacing:-0.450866pt;}
.ls52{letter-spacing:-0.450667pt;}
.ls2e{letter-spacing:-0.342928pt;}
.ls2a{letter-spacing:-0.310322pt;}
.ls4f{letter-spacing:-0.204800pt;}
.ls34{letter-spacing:-0.194513pt;}
.ls2d{letter-spacing:-0.140544pt;}
.ls25{letter-spacing:-0.079467pt;}
.ls31{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.017920pt;}
.ls4e{letter-spacing:0.069333pt;}
.ls42{letter-spacing:0.120533pt;}
.ls45{letter-spacing:0.124587pt;}
.ls21{letter-spacing:0.133333pt;}
.ls44{letter-spacing:0.161280pt;}
.ls3{letter-spacing:0.174080pt;}
.ls3d{letter-spacing:0.177920pt;}
.ls3f{letter-spacing:0.207360pt;}
.ls3c{letter-spacing:0.207467pt;}
.ls2b{letter-spacing:0.215876pt;}
.ls2f{letter-spacing:0.269845pt;}
.ls47{letter-spacing:0.291840pt;}
.ls27{letter-spacing:0.340117pt;}
.ls20{letter-spacing:0.345600pt;}
.ls46{letter-spacing:0.355840pt;}
.ls2{letter-spacing:0.376320pt;}
.ls1{letter-spacing:0.414720pt;}
.ls23{letter-spacing:0.414933pt;}
.ls35{letter-spacing:0.425387pt;}
.ls36{letter-spacing:0.542720pt;}
.ls37{letter-spacing:0.549333pt;}
.ls51{letter-spacing:0.574720pt;}
.lsb{letter-spacing:0.588262pt;}
.ls26{letter-spacing:0.590286pt;}
.ls4{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.656000pt;}
.lsc{letter-spacing:0.700698pt;}
.ls1f{letter-spacing:1.120000pt;}
.ls0{letter-spacing:1.121280pt;}
.ls6{letter-spacing:1.937487pt;}
.ls4c{letter-spacing:2.401280pt;}
.ls41{letter-spacing:2.974720pt;}
.ls5{letter-spacing:3.286712pt;}
.ls12{letter-spacing:3.399147pt;}
.ls7{letter-spacing:3.455365pt;}
.ls40{letter-spacing:4.254720pt;}
.ls11{letter-spacing:4.635937pt;}
.ls13{letter-spacing:4.748372pt;}
.ls10{letter-spacing:5.985162pt;}
.ls38{letter-spacing:6.814720pt;}
.lsd{letter-spacing:7.334387pt;}
.lsf{letter-spacing:7.446822pt;}
.ls4a{letter-spacing:8.398080pt;}
.lse{letter-spacing:8.683612pt;}
.ls4b{letter-spacing:9.678080pt;}
.ls14{letter-spacing:10.032837pt;}
.ls15{letter-spacing:11.382062pt;}
.ls16{letter-spacing:11.550715pt;}
.ls48{letter-spacing:12.184747pt;}
.ls1c{letter-spacing:15.429737pt;}
.ls1d{letter-spacing:15.542172pt;}
.ls1b{letter-spacing:16.778962pt;}
.ls49{letter-spacing:26.264747pt;}
.ls19{letter-spacing:34.318887pt;}
.ls1a{letter-spacing:34.431322pt;}
.ls17{letter-spacing:34.487540pt;}
.ls18{letter-spacing:35.668111pt;}
.ls50{letter-spacing:36.254720pt;}
.ls8{letter-spacing:41.065011pt;}
.lsa{letter-spacing:41.233665pt;}
.ls9{letter-spacing:42.414236pt;}
.ls4d{letter-spacing:81.464747pt;}
.ws16{word-spacing:-74.240000pt;}
.ws12{word-spacing:-48.931840pt;}
.ws13{word-spacing:-48.640000pt;}
.ws15{word-spacing:-48.435200pt;}
.ws14{word-spacing:-32.053760pt;}
.ws1{word-spacing:-23.682560pt;}
.ws4{word-spacing:-17.149440pt;}
.ws8{word-spacing:-16.355305pt;}
.ws18{word-spacing:-15.494613pt;}
.wsc{word-spacing:-15.152747pt;}
.ws11{word-spacing:-15.106560pt;}
.wse{word-spacing:-15.065813pt;}
.ws10{word-spacing:-15.014613pt;}
.ws2{word-spacing:-14.945280pt;}
.ws0{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.494613pt;}
.wsf{word-spacing:-14.451413pt;}
.ws7{word-spacing:-14.253213pt;}
.wsd{word-spacing:-13.873280pt;}
.wsa{word-spacing:-11.600000pt;}
.ws5{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.607680pt;}
.ws6{word-spacing:-9.280000pt;}
.ws9{word-spacing:-7.936000pt;}
.wsb{word-spacing:0.000000pt;}
._21{margin-left:-15.950125pt;}
._7{margin-left:-9.873920pt;}
._16{margin-left:-8.293656pt;}
._b{margin-left:-7.229147pt;}
._18{margin-left:-6.274990pt;}
._e{margin-left:-3.776808pt;}
._11{margin-left:-2.867053pt;}
._5{margin-left:-1.884160pt;}
._6{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._a{width:4.094293pt;}
._13{width:5.647067pt;}
._c{width:6.716442pt;}
._10{width:7.647875pt;}
._14{width:8.869203pt;}
._8{width:10.170880pt;}
._9{width:11.376640pt;}
._15{width:12.718785pt;}
._17{width:13.668082pt;}
._f{width:14.587804pt;}
._12{width:16.251082pt;}
._1f{width:17.158825pt;}
._1b{width:18.280960pt;}
._20{width:19.278246pt;}
._1e{width:22.618027pt;}
._1d{width:24.194560pt;}
._1c{width:25.538560pt;}
._1a{width:34.603520pt;}
._19{width:36.080640pt;}
._d{width:41.866451pt;}
._3{width:105.706667pt;}
._4{width:340.000000pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsb{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs8{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fsc{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fsd{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:2.588000pt;}
.y5{bottom:3.840000pt;}
.ya9{bottom:4.786667pt;}
.yd9{bottom:4.790667pt;}
.ydb{bottom:4.796000pt;}
.ya1{bottom:4.800000pt;}
.ya7{bottom:5.106667pt;}
.ydc{bottom:5.116000pt;}
.ya3{bottom:5.120000pt;}
.yfa{bottom:5.160000pt;}
.y4f{bottom:6.373333pt;}
.y36{bottom:6.400000pt;}
.y2{bottom:8.960000pt;}
.y3f{bottom:9.308000pt;}
.yc5{bottom:12.480000pt;}
.y4b{bottom:13.790667pt;}
.y107{bottom:14.112000pt;}
.y4{bottom:20.800000pt;}
.y35{bottom:27.200000pt;}
.y4a{bottom:30.430667pt;}
.yc4{bottom:34.240000pt;}
.ycd{bottom:34.546667pt;}
.yd5{bottom:34.556000pt;}
.ybd{bottom:34.560000pt;}
.y3e{bottom:35.550667pt;}
.y105{bottom:41.984000pt;}
.y3{bottom:42.560000pt;}
.y34{bottom:44.800000pt;}
.y3d{bottom:46.110667pt;}
.y49{bottom:49.950667pt;}
.y7{bottom:51.232000pt;}
.ybc{bottom:56.960000pt;}
.ycc{bottom:56.973333pt;}
.yd4{bottom:56.990667pt;}
.y3c{bottom:57.950667pt;}
.yfe{bottom:58.266667pt;}
.y33{bottom:62.760000pt;}
.y48{bottom:67.230667pt;}
.y3b{bottom:69.470667pt;}
.yff{bottom:78.173333pt;}
.y7e{bottom:80.672000pt;}
.y32{bottom:80.680000pt;}
.ycb{bottom:81.933333pt;}
.yc3{bottom:81.960000pt;}
.ybb{bottom:82.240000pt;}
.yd3{bottom:82.270667pt;}
.y47{bottom:82.590667pt;}
.y4d{bottom:83.872000pt;}
.yfc{bottom:86.112000pt;}
.yfd{bottom:88.320000pt;}
.y46{bottom:88.350667pt;}
.y3a{bottom:88.670667pt;}
.yd2{bottom:90.276000pt;}
.y100{bottom:98.080000pt;}
.y7d{bottom:98.272000pt;}
.y31{bottom:98.600000pt;}
.y45{bottom:102.430667pt;}
.y4c{bottom:104.352000pt;}
.yda{bottom:110.436000pt;}
.y44{bottom:116.190667pt;}
.y7c{bottom:116.192000pt;}
.y30{bottom:116.520000pt;}
.y101{bottom:117.986667pt;}
.y9f{bottom:119.712000pt;}
.y37{bottom:123.556000pt;}
.y43{bottom:129.977333pt;}
.yd8{bottom:130.316000pt;}
.y2f{bottom:134.120000pt;}
.y7b{bottom:134.146667pt;}
.y9e{bottom:137.666667pt;}
.y102{bottom:137.920000pt;}
.y42{bottom:143.737333pt;}
.y39{bottom:144.057333pt;}
.yd7{bottom:150.160000pt;}
.y2e{bottom:152.040000pt;}
.y7a{bottom:152.066667pt;}
.y38{bottom:153.657333pt;}
.y9d{bottom:155.586667pt;}
.y41{bottom:157.177333pt;}
.y103{bottom:157.826667pt;}
.y2d{bottom:169.960000pt;}
.y79{bottom:169.986667pt;}
.yd6{bottom:170.320000pt;}
.y9c{bottom:173.506667pt;}
.y104{bottom:177.733333pt;}
.y78{bottom:190.146667pt;}
.yca{bottom:190.160000pt;}
.y2c{bottom:190.466667pt;}
.y9b{bottom:191.106667pt;}
.y106{bottom:203.546667pt;}
.y9a{bottom:209.026667pt;}
.yd1{bottom:210.000000pt;}
.y77{bottom:210.946667pt;}
.y2b{bottom:221.186667pt;}
.y1d{bottom:228.546667pt;}
.y76{bottom:228.866667pt;}
.y99{bottom:229.506667pt;}
.yd0{bottom:230.160000pt;}
.y2a{bottom:241.986667pt;}
.y75{bottom:249.373333pt;}
.y1c{bottom:249.986667pt;}
.ycf{bottom:250.013333pt;}
.y98{bottom:250.333333pt;}
.y29{bottom:263.106667pt;}
.y97{bottom:268.253333pt;}
.yce{bottom:269.853333pt;}
.y1b{bottom:271.746667pt;}
.y74{bottom:277.853333pt;}
.y28{bottom:283.906667pt;}
.y96{bottom:285.853333pt;}
.yc2{bottom:290.013333pt;}
.y1a{bottom:293.213333pt;}
.y73{bottom:295.773333pt;}
.yf{bottom:303.453333pt;}
.y95{bottom:303.773333pt;}
.y27{bottom:304.733333pt;}
.yc9{bottom:309.853333pt;}
.y72{bottom:313.693333pt;}
.y19{bottom:314.653333pt;}
.y94{bottom:321.693333pt;}
.y26{bottom:325.853333pt;}
.yc8{bottom:329.693333pt;}
.y71{bottom:331.613333pt;}
.y18{bottom:336.093333pt;}
.y93{bottom:339.613333pt;}
.yfb{bottom:344.093333pt;}
.y25{bottom:346.653333pt;}
.y70{bottom:349.533333pt;}
.yc7{bottom:349.853333pt;}
.y17{bottom:357.533333pt;}
.yf9{bottom:359.133333pt;}
.y24{bottom:367.453333pt;}
.y6f{bottom:367.493333pt;}
.yc6{bottom:369.733333pt;}
.y92{bottom:375.493333pt;}
.y16{bottom:378.973333pt;}
.yf8{bottom:379.333333pt;}
.y6e{bottom:385.093333pt;}
.y23{bottom:388.573333pt;}
.yba{bottom:389.573333pt;}
.y91{bottom:393.093333pt;}
.yf7{bottom:399.173333pt;}
.y15{bottom:400.413333pt;}
.y11b{bottom:402.053333pt;}
.y6d{bottom:403.013333pt;}
.y22{bottom:409.413333pt;}
.yc1{bottom:409.733333pt;}
.y90{bottom:411.013333pt;}
.yf6{bottom:419.013333pt;}
.y6c{bottom:420.933333pt;}
.y14{bottom:421.893333pt;}
.y11a{bottom:424.133333pt;}
.y8f{bottom:428.933333pt;}
.yc0{bottom:429.573333pt;}
.y21{bottom:430.213333pt;}
.yf5{bottom:439.173333pt;}
.y6b{bottom:441.413333pt;}
.y13{bottom:443.333333pt;}
.y119{bottom:444.613333pt;}
.y8e{bottom:446.853333pt;}
.ybf{bottom:449.413333pt;}
.y20{bottom:451.333333pt;}
.yf4{bottom:459.013333pt;}
.y12{bottom:464.773333pt;}
.y118{bottom:465.413333pt;}
.ybe{bottom:469.573333pt;}
.y6a{bottom:469.893333pt;}
.y1f{bottom:472.133333pt;}
.y8d{bottom:482.400000pt;}
.yf3{bottom:482.720000pt;}
.y117{bottom:485.920000pt;}
.y11{bottom:486.213333pt;}
.y69{bottom:487.840000pt;}
.yb9{bottom:489.440000pt;}
.y1e{bottom:492.933333pt;}
.y8c{bottom:500.320000pt;}
.yf2{bottom:500.640000pt;}
.y68{bottom:505.760000pt;}
.y116{bottom:506.400000pt;}
.y10{bottom:507.653333pt;}
.yb8{bottom:513.120000pt;}
.y8b{bottom:518.240000pt;}
.yf1{bottom:518.560000pt;}
.y67{bottom:523.680000pt;}
.y115{bottom:529.760000pt;}
.yb7{bottom:531.040000pt;}
.y8a{bottom:536.160000pt;}
.yf0{bottom:536.480000pt;}
.y66{bottom:541.600000pt;}
.yb6{bottom:548.960000pt;}
.y114{bottom:550.240000pt;}
.y89{bottom:554.080000pt;}
.y65{bottom:559.520000pt;}
.yb5{bottom:566.880000pt;}
.y113{bottom:570.720000pt;}
.y88{bottom:572.000000pt;}
.y64{bottom:577.120000pt;}
.yb4{bottom:587.040000pt;}
.yef{bottom:589.920000pt;}
.y112{bottom:591.200000pt;}
.y87{bottom:592.160000pt;}
.y63{bottom:597.626667pt;}
.yee{bottom:607.866667pt;}
.y111{bottom:611.706667pt;}
.yb3{bottom:615.866667pt;}
.y86{bottom:620.986667pt;}
.y62{bottom:626.426667pt;}
.yed{bottom:628.026667pt;}
.y110{bottom:632.506667pt;}
.yb2{bottom:633.786667pt;}
.y85{bottom:638.906667pt;}
.y61{bottom:644.346667pt;}
.yb1{bottom:651.706667pt;}
.y10f{bottom:652.986667pt;}
.yec{bottom:653.960000pt;}
.y84{bottom:659.066667pt;}
.y60{bottom:661.946667pt;}
.yb0{bottom:669.306667pt;}
.y10e{bottom:673.466667pt;}
.yeb{bottom:673.800000pt;}
.y5f{bottom:679.866667pt;}
.yaf{bottom:687.226667pt;}
.yea{bottom:693.640000pt;}
.y10d{bottom:696.826667pt;}
.y5e{bottom:697.786667pt;}
.yae{bottom:705.146667pt;}
.ye9{bottom:713.840000pt;}
.y5d{bottom:715.746667pt;}
.y10c{bottom:717.346667pt;}
.yad{bottom:723.106667pt;}
.y5c{bottom:733.666667pt;}
.ye8{bottom:733.680000pt;}
.y10b{bottom:740.386667pt;}
.yac{bottom:741.026667pt;}
.y5b{bottom:751.586667pt;}
.ye7{bottom:753.520000pt;}
.yab{bottom:761.186667pt;}
.y10a{bottom:763.746667pt;}
.y5a{bottom:769.186667pt;}
.y83{bottom:771.746667pt;}
.ye6{bottom:773.680000pt;}
.y109{bottom:784.226667pt;}
.yaa{bottom:784.546667pt;}
.y59{bottom:787.106667pt;}
.ye5{bottom:793.520000pt;}
.y82{bottom:800.546667pt;}
.ya8{bottom:802.160000pt;}
.y58{bottom:805.026667pt;}
.y108{bottom:807.586667pt;}
.ye4{bottom:817.186667pt;}
.y81{bottom:818.466667pt;}
.ye{bottom:821.986667pt;}
.ya6{bottom:822.000000pt;}
.y57{bottom:822.946667pt;}
.yd{bottom:826.466667pt;}
.ye3{bottom:835.133333pt;}
.y80{bottom:836.413333pt;}
.ya5{bottom:842.173333pt;}
.y56{bottom:843.133333pt;}
.yc{bottom:848.253333pt;}
.y7f{bottom:854.013333pt;}
.ye2{bottom:855.293333pt;}
.ya4{bottom:862.013333pt;}
.yb{bottom:871.293333pt;}
.y55{bottom:871.933333pt;}
.ydd{bottom:881.213333pt;}
.ya2{bottom:881.853333pt;}
.y54{bottom:889.853333pt;}
.ya{bottom:891.453333pt;}
.ye1{bottom:901.053333pt;}
.ya0{bottom:902.013333pt;}
.y53{bottom:907.773333pt;}
.y9{bottom:917.693333pt;}
.ye0{bottom:920.893333pt;}
.y52{bottom:925.693333pt;}
.ydf{bottom:941.053333pt;}
.y51{bottom:943.613333pt;}
.y8{bottom:952.933333pt;}
.y4e{bottom:955.840000pt;}
.yde{bottom:960.933333pt;}
.y50{bottom:963.813333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h15{height:5.022500pt;}
.h19{height:19.186667pt;}
.h22{height:19.188000pt;}
.h1c{height:19.200000pt;}
.h25{height:19.218667pt;}
.h1e{height:19.226667pt;}
.h23{height:19.228000pt;}
.h1a{height:19.506667pt;}
.h24{height:19.516000pt;}
.h1b{height:19.520000pt;}
.h26{height:19.546667pt;}
.h17{height:24.640000pt;}
.h12{height:26.381250pt;}
.h11{height:31.406250pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.ha{height:44.188750pt;}
.h16{height:45.390627pt;}
.h13{height:47.713750pt;}
.h14{height:49.020000pt;}
.h7{height:50.925000pt;}
.h28{height:51.680000pt;}
.h6{height:52.762500pt;}
.hb{height:54.180000pt;}
.hf{height:54.349786pt;}
.h18{height:56.502250pt;}
.h9{height:56.988750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h2{height:75.546667pt;}
.h8{height:78.698750pt;}
.h29{height:78.880000pt;}
.h20{height:98.880000pt;}
.h1f{height:98.906667pt;}
.h1d{height:99.226667pt;}
.h21{height:99.228000pt;}
.h4{height:103.680000pt;}
.h10{height:179.240000pt;}
.h27{height:233.920000pt;}
.hc{height:515.973333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:39.040000pt;}
.wb{width:53.426667pt;}
.wc{width:84.506667pt;}
.w2{width:92.180000pt;}
.wd{width:92.506667pt;}
.w15{width:101.800000pt;}
.w9{width:102.112000pt;}
.wa{width:102.120000pt;}
.w13{width:108.186667pt;}
.w12{width:110.120000pt;}
.w14{width:110.432000pt;}
.wf{width:115.840000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.we{width:163.920000pt;}
.w8{width:168.706667pt;}
.w11{width:200.040000pt;}
.w10{width:217.053333pt;}
.w16{width:414.080000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.346667pt;}
.x4a{left:8.253333pt;}
.x2f{left:9.600000pt;}
.x4{left:11.826667pt;}
.x2d{left:13.760000pt;}
.x15{left:15.028000pt;}
.x1a{left:16.308000pt;}
.x16{left:17.268000pt;}
.x26{left:18.240000pt;}
.x34{left:20.480000pt;}
.x37{left:22.106667pt;}
.x6{left:25.586667pt;}
.x33{left:26.560000pt;}
.x28{left:27.866667pt;}
.x38{left:29.146667pt;}
.x47{left:30.720000pt;}
.x35{left:32.026667pt;}
.x39{left:33.000000pt;}
.x2b{left:33.920000pt;}
.x36{left:35.226667pt;}
.x29{left:36.506667pt;}
.x31{left:38.106667pt;}
.x10{left:39.028000pt;}
.x24{left:40.960000pt;}
.x1b{left:42.260000pt;}
.x11{left:45.140000pt;}
.x14{left:47.380000pt;}
.xf{left:48.980000pt;}
.x1d{left:50.900000pt;}
.x18{left:55.373333pt;}
.x1c{left:58.902667pt;}
.x3a{left:60.506667pt;}
.x2a{left:64.040000pt;}
.x13{left:67.542667pt;}
.x1{left:69.804000pt;}
.x3e{left:72.040000pt;}
.x7{left:76.832000pt;}
.x42{left:78.426667pt;}
.x41{left:80.360000pt;}
.x3f{left:82.586667pt;}
.x2{left:84.822667pt;}
.x40{left:87.066667pt;}
.x1e{left:91.542667pt;}
.x19{left:95.062667pt;}
.x12{left:110.742667pt;}
.x4b{left:124.453333pt;}
.x3b{left:130.004000pt;}
.x4c{left:136.346667pt;}
.x3{left:162.000000pt;}
.x1f{left:167.120000pt;}
.x43{left:180.880000pt;}
.x49{left:188.800000pt;}
.x22{left:190.160000pt;}
.x17{left:194.640000pt;}
.x2c{left:198.813333pt;}
.x20{left:204.880000pt;}
.x23{left:230.173333pt;}
.x3c{left:246.493333pt;}
.x2e{left:252.893333pt;}
.x44{left:291.653333pt;}
.xc{left:330.693333pt;}
.x30{left:338.053333pt;}
.x25{left:399.520000pt;}
.x45{left:400.480000pt;}
.x21{left:411.693333pt;}
.x32{left:431.520000pt;}
.x3d{left:464.200000pt;}
.xb{left:480.186667pt;}
.x27{left:502.280000pt;}
.x46{left:511.560000pt;}
.xa{left:514.466667pt;}
.x48{left:605.053333pt;}
.xd{left:679.013333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xe{left:717.413333pt;}
}




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