
    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_381f30ad28aedc3675cb0055.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_9c6273b19e030ad375dc38da.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5e59bc2b375e2ee0ae04e72f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331331;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cc4b425a7ff8ae0be55ca754.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d0114b9eec35a351c47f0fac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331331;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e0e096ffddaa8c8160eb30ef.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.331331;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_46448410d19f8472eca100d9.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_050e0efd991c970a04526e32.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6fdf0d890d6ac8146553e6a2.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_f375a53ffb7131d2275313e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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);}
.v0{vertical-align:0.000000px;}
.ls59{letter-spacing:-3.828000px;}
.ls6e{letter-spacing:-1.344000px;}
.ls21{letter-spacing:-0.972000px;}
.ls19{letter-spacing:-0.853806px;}
.ls25{letter-spacing:-0.752615px;}
.ls15{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.708343px;}
.ls23{letter-spacing:-0.630000px;}
.ls3d{letter-spacing:-0.593400px;}
.ls6f{letter-spacing:-0.573000px;}
.ls67{letter-spacing:-0.555600px;}
.ls43{letter-spacing:-0.553200px;}
.ls5a{letter-spacing:-0.466800px;}
.ls1d{letter-spacing:-0.385794px;}
.ls16{letter-spacing:-0.360000px;}
.ls5b{letter-spacing:-0.316800px;}
.ls66{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.200486px;}
.ls6d{letter-spacing:-0.190200px;}
.ls6c{letter-spacing:-0.172800px;}
.ls40{letter-spacing:-0.152400px;}
.ls54{letter-spacing:-0.121200px;}
.ls14{letter-spacing:-0.089400px;}
.ls22{letter-spacing:-0.072000px;}
.ls3f{letter-spacing:-0.031680px;}
.ls42{letter-spacing:-0.020160px;}
.ls12{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.012143px;}
.ls26{letter-spacing:0.020160px;}
.ls3b{letter-spacing:0.032160px;}
.ls64{letter-spacing:0.089400px;}
.ls56{letter-spacing:0.094800px;}
.ls65{letter-spacing:0.097800px;}
.ls3e{letter-spacing:0.129600px;}
.ls57{letter-spacing:0.150000px;}
.ls68{letter-spacing:0.164160px;}
.ls45{letter-spacing:0.195600px;}
.ls6b{letter-spacing:0.200160px;}
.ls62{letter-spacing:0.233280px;}
.ls52{letter-spacing:0.233400px;}
.ls1a{letter-spacing:0.382632px;}
.ls69{letter-spacing:0.388800px;}
.ls6a{letter-spacing:0.391800px;}
.ls2b{letter-spacing:0.397200px;}
.ls2e{letter-spacing:0.466560px;}
.ls20{letter-spacing:0.466800px;}
.ls2d{letter-spacing:0.478560px;}
.ls1e{letter-spacing:0.485721px;}
.lsc{letter-spacing:0.525186px;}
.ls30{letter-spacing:0.544320px;}
.ls35{letter-spacing:0.586560px;}
.ls36{letter-spacing:0.596400px;}
.ls27{letter-spacing:0.610560px;}
.ls3c{letter-spacing:0.618000px;}
.ls61{letter-spacing:0.619200px;}
.ls58{letter-spacing:0.636000px;}
.ls2f{letter-spacing:0.646560px;}
.lsa{letter-spacing:0.661795px;}
.ls17{letter-spacing:0.664072px;}
.ls0{letter-spacing:0.720000px;}
.ls53{letter-spacing:0.973440px;}
.ls51{letter-spacing:1.093440px;}
.ls41{letter-spacing:1.152000px;}
.ls13{letter-spacing:1.260000px;}
.ls28{letter-spacing:1.460160px;}
.ls55{letter-spacing:1.536000px;}
.ls1f{letter-spacing:1.821454px;}
.ls34{letter-spacing:1.906560px;}
.ls44{letter-spacing:1.908000px;}
.ls5f{letter-spacing:2.026560px;}
.ls5e{letter-spacing:2.086560px;}
.ls1{letter-spacing:2.179673px;}
.ls18{letter-spacing:2.181950px;}
.ls3{letter-spacing:2.306163px;}
.ls49{letter-spacing:3.346560px;}
.ls4a{letter-spacing:3.466560px;}
.ls4b{letter-spacing:3.526560px;}
.ls2{letter-spacing:3.697551px;}
.ls9{letter-spacing:3.824041px;}
.ls47{letter-spacing:4.786560px;}
.ls4c{letter-spacing:4.906560px;}
.lsd{letter-spacing:5.215429px;}
.ls32{letter-spacing:6.226560px;}
.lse{letter-spacing:6.733307px;}
.ls11{letter-spacing:6.923042px;}
.ls31{letter-spacing:7.666560px;}
.ls63{letter-spacing:7.786560px;}
.ls33{letter-spacing:7.846560px;}
.lsf{letter-spacing:8.251185px;}
.ls10{letter-spacing:8.377675px;}
.ls60{letter-spacing:9.106560px;}
.ls4{letter-spacing:9.769063px;}
.ls5{letter-spacing:9.895553px;}
.ls29{letter-spacing:10.546560px;}
.lsb{letter-spacing:11.286942px;}
.ls2a{letter-spacing:11.986560px;}
.ls2c{letter-spacing:12.166560px;}
.ls7{letter-spacing:12.804820px;}
.ls8{letter-spacing:12.994554px;}
.ls46{letter-spacing:13.426560px;}
.ls6{letter-spacing:14.322698px;}
.ls48{letter-spacing:14.866560px;}
.ls4e{letter-spacing:16.306560px;}
.ls4f{letter-spacing:17.746560px;}
.ls4d{letter-spacing:17.758560px;}
.ls50{letter-spacing:17.866560px;}
.ls37{letter-spacing:19.330560px;}
.ls38{letter-spacing:20.626560px;}
.ls39{letter-spacing:20.746560px;}
.ls3a{letter-spacing:20.806560px;}
.ls5d{letter-spacing:29.266560px;}
.ls5c{letter-spacing:30.706560px;}
.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;}
}
.ws1{word-spacing:-23.218560px;}
.ws14{word-spacing:-19.293120px;}
.ws5{word-spacing:-18.399718px;}
.ws12{word-spacing:-17.449440px;}
.wsd{word-spacing:-17.431440px;}
.wsc{word-spacing:-17.409840px;}
.wsf{word-spacing:-17.280240px;}
.ws18{word-spacing:-17.205240px;}
.ws17{word-spacing:-17.202240px;}
.ws13{word-spacing:-17.046840px;}
.ws11{word-spacing:-17.009040px;}
.ws1d{word-spacing:-16.963440px;}
.ws16{word-spacing:-16.902840px;}
.ws7{word-spacing:-16.813440px;}
.ws19{word-spacing:-16.640640px;}
.ws1a{word-spacing:-16.623240px;}
.ws15{word-spacing:-16.496640px;}
.ws10{word-spacing:-16.260240px;}
.ws1c{word-spacing:-16.240440px;}
.wse{word-spacing:-16.220040px;}
.ws6{word-spacing:-16.034864px;}
.ws1b{word-spacing:-15.469440px;}
.ws0{word-spacing:-15.120000px;}
.wsa{word-spacing:-13.680000px;}
.ws9{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsb{word-spacing:0.000000px;}
._a{margin-left:-8.598506px;}
._5{margin-left:-7.526193px;}
._12{margin-left:-4.514766px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._b{width:5.310621px;}
._d{width:6.442268px;}
._6{width:7.555997px;}
._7{width:8.592005px;}
._c{width:9.692820px;}
._f{width:11.178651px;}
._8{width:12.287223px;}
._9{width:13.501029px;}
._e{width:14.774674px;}
._16{width:15.831360px;}
._13{width:18.567360px;}
._10{width:20.599200px;}
._11{width:22.341600px;}
._17{width:24.312960px;}
._18{width:26.369280px;}
._14{width:28.814400px;}
._15{width:30.332640px;}
.fc5{color:rgb(27,28,29);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(94,94,94);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs8{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:3.595500px;}
.y5{bottom:3.960000px;}
.y3a{bottom:4.320000px;}
.y51{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y43{bottom:10.075500px;}
.y4{bottom:21.240000px;}
.y4e{bottom:22.315500px;}
.y39{bottom:24.120000px;}
.y42{bottom:39.595500px;}
.y4d{bottom:44.275500px;}
.y3{bottom:44.280000px;}
.y38{bottom:47.160000px;}
.y41{bottom:51.511500px;}
.y7{bottom:57.636000px;}
.y4c{bottom:63.754500px;}
.y40{bottom:64.474500px;}
.y37{bottom:73.440000px;}
.y3f{bottom:77.794500px;}
.y4b{bottom:87.154500px;}
.y3b{bottom:93.280500px;}
.y79{bottom:95.436000px;}
.y36{bottom:96.840000px;}
.y3e{bottom:99.394500px;}
.y12e{bottom:99.756000px;}
.ye4{bottom:102.996000px;}
.y10b{bottom:103.356000px;}
.yc7{bottom:104.436000px;}
.y4a{bottom:104.794500px;}
.ya2{bottom:105.516000px;}
.y49{bottom:110.914500px;}
.y78{bottom:115.596000px;}
.y35{bottom:116.685000px;}
.y12d{bottom:119.916000px;}
.ye3{bottom:125.676000px;}
.y48{bottom:126.754500px;}
.ya1{bottom:128.916000px;}
.y10a{bottom:129.636000px;}
.yc6{bottom:130.716000px;}
.y77{bottom:138.276000px;}
.y34{bottom:139.725000px;}
.y12c{bottom:140.076000px;}
.y47{bottom:142.234500px;}
.ya0{bottom:151.995000px;}
.y109{bottom:155.955000px;}
.yc5{bottom:156.675000px;}
.y46{bottom:158.074500px;}
.y3d{bottom:161.674500px;}
.y12b{bottom:163.155000px;}
.y76{bottom:164.595000px;}
.y33{bottom:166.005000px;}
.y3c{bottom:172.474500px;}
.y45{bottom:173.554500px;}
.y9f{bottom:177.915000px;}
.y108{bottom:181.875000px;}
.yc4{bottom:182.955000px;}
.y75{bottom:187.995000px;}
.y44{bottom:188.704500px;}
.y12a{bottom:189.075000px;}
.y32{bottom:191.925000px;}
.y9e{bottom:201.315000px;}
.y107{bottom:208.155000px;}
.yc3{bottom:209.235000px;}
.y31{bottom:215.325000px;}
.y129{bottom:215.355000px;}
.y74{bottom:216.795000px;}
.y9d{bottom:221.475000px;}
.y106{bottom:234.075000px;}
.yc2{bottom:235.155000px;}
.y128{bottom:238.755000px;}
.y73{bottom:239.835000px;}
.ye2{bottom:241.635000px;}
.y9c{bottom:244.515000px;}
.y30{bottom:246.675000px;}
.y105{bottom:257.475000px;}
.yc1{bottom:258.555000px;}
.y127{bottom:261.435000px;}
.y72{bottom:263.235000px;}
.ye1{bottom:264.315000px;}
.y9b{bottom:267.555000px;}
.y2f{bottom:270.435000px;}
.y104{bottom:277.665000px;}
.yc0{bottom:281.625000px;}
.y126{bottom:284.865000px;}
.y71{bottom:285.945000px;}
.y9a{bottom:287.745000px;}
.ye0{bottom:290.625000px;}
.y1f{bottom:292.035000px;}
.y2e{bottom:293.835000px;}
.yf{bottom:295.305000px;}
.y103{bottom:300.705000px;}
.ybf{bottom:307.545000px;}
.y99{bottom:310.785000px;}
.y70{bottom:312.225000px;}
.ydf{bottom:314.025000px;}
.y1e{bottom:316.155000px;}
.y2d{bottom:317.235000px;}
.y102{bottom:326.625000px;}
.ybe{bottom:333.825000px;}
.y125{bottom:334.185000px;}
.y98{bottom:336.705000px;}
.y6f{bottom:338.505000px;}
.y1d{bottom:340.275000px;}
.y2c{bottom:340.995000px;}
.yde{bottom:343.185000px;}
.y101{bottom:352.905000px;}
.y124{bottom:356.865000px;}
.ybd{bottom:359.745000px;}
.y97{bottom:360.105000px;}
.ydd{bottom:362.985000px;}
.y1c{bottom:364.395000px;}
.y6e{bottom:364.425000px;}
.y100{bottom:376.305000px;}
.y96{bottom:380.265000px;}
.y123{bottom:383.145000px;}
.ybc{bottom:386.025000px;}
.y2b{bottom:387.825000px;}
.y1b{bottom:388.545000px;}
.yff{bottom:396.465000px;}
.y6d{bottom:396.825000px;}
.y95{bottom:403.305000px;}
.y122{bottom:409.110000px;}
.ydc{bottom:409.470000px;}
.y2a{bottom:411.585000px;}
.ybb{bottom:412.350000px;}
.y1a{bottom:412.665000px;}
.yfe{bottom:416.310000px;}
.y6c{bottom:419.910000px;}
.y94{bottom:429.270000px;}
.ydb{bottom:429.630000px;}
.y29{bottom:434.985000px;}
.y121{bottom:435.390000px;}
.y19{bottom:436.785000px;}
.yba{bottom:438.270000px;}
.yfd{bottom:439.350000px;}
.y6b{bottom:445.830000px;}
.yda{bottom:452.310000px;}
.y93{bottom:452.670000px;}
.y28{bottom:458.385000px;}
.y18{bottom:460.905000px;}
.y120{bottom:461.670000px;}
.yb9{bottom:464.550000px;}
.yfc{bottom:465.630000px;}
.y6a{bottom:474.270000px;}
.yd9{bottom:475.710000px;}
.y92{bottom:481.830000px;}
.y27{bottom:482.145000px;}
.y17{bottom:485.025000px;}
.y11f{bottom:487.590000px;}
.yfb{bottom:488.670000px;}
.yb8{bottom:490.470000px;}
.yd8{bottom:498.750000px;}
.y91{bottom:501.990000px;}
.y69{bottom:502.350000px;}
.y26{bottom:505.590000px;}
.y16{bottom:509.190000px;}
.y11e{bottom:510.990000px;}
.yfa{bottom:511.710000px;}
.yb7{bottom:516.750000px;}
.y90{bottom:524.670000px;}
.y25{bottom:528.990000px;}
.y68{bottom:530.430000px;}
.y11d{bottom:531.150000px;}
.y15{bottom:533.670000px;}
.yf9{bottom:538.020000px;}
.yb6{bottom:543.060000px;}
.yd7{bottom:548.100000px;}
.y8f{bottom:550.980000px;}
.y24{bottom:552.750000px;}
.y14{bottom:557.790000px;}
.y67{bottom:558.900000px;}
.y11c{bottom:560.340000px;}
.yf8{bottom:563.940000px;}
.yb5{bottom:568.980000px;}
.yd6{bottom:571.140000px;}
.y23{bottom:576.150000px;}
.y8e{bottom:576.900000px;}
.y13{bottom:581.910000px;}
.y11b{bottom:583.020000px;}
.y66{bottom:586.980000px;}
.yf7{bottom:587.340000px;}
.yb4{bottom:595.260000px;}
.yd5{bottom:597.060000px;}
.y22{bottom:599.550000px;}
.y8d{bottom:600.300000px;}
.y12{bottom:606.030000px;}
.y11a{bottom:606.420000px;}
.yf6{bottom:607.500000px;}
.y65{bottom:615.060000px;}
.y8c{bottom:620.460000px;}
.yb3{bottom:621.180000px;}
.y21{bottom:623.310000px;}
.yf5{bottom:627.660000px;}
.y119{bottom:629.460000px;}
.y11{bottom:630.150000px;}
.yd4{bottom:640.620000px;}
.y64{bottom:643.500000px;}
.y20{bottom:646.740000px;}
.yb2{bottom:647.460000px;}
.yf4{bottom:650.340000px;}
.y10{bottom:654.300000px;}
.y118{bottom:655.380000px;}
.yd3{bottom:663.660000px;}
.y8b{bottom:669.450000px;}
.y63{bottom:671.610000px;}
.yb1{bottom:673.770000px;}
.yf3{bottom:676.650000px;}
.y117{bottom:681.690000px;}
.yd2{bottom:689.610000px;}
.y8a{bottom:695.730000px;}
.y62{bottom:699.690000px;}
.yf2{bottom:700.050000px;}
.y116{bottom:707.610000px;}
.yd1{bottom:713.010000px;}
.y89{bottom:719.130000px;}
.yf1{bottom:719.850000px;}
.yb0{bottom:725.970000px;}
.y61{bottom:728.130000px;}
.y115{bottom:733.890000px;}
.yd0{bottom:736.050000px;}
.y88{bottom:739.290000px;}
.yf0{bottom:742.890000px;}
.yaf{bottom:751.890000px;}
.ycf{bottom:759.090000px;}
.y60{bottom:760.170000px;}
.yef{bottom:766.290000px;}
.y87{bottom:768.090000px;}
.yce{bottom:779.250000px;}
.y5f{bottom:783.210000px;}
.yae{bottom:784.290000px;}
.y114{bottom:786.090000px;}
.yee{bottom:786.450000px;}
.y86{bottom:788.250000px;}
.ycd{bottom:802.335000px;}
.yed{bottom:806.295000px;}
.yad{bottom:807.375000px;}
.y5e{bottom:809.535000px;}
.y85{bottom:811.335000px;}
.y113{bottom:812.415000px;}
.ycc{bottom:828.255000px;}
.yec{bottom:829.335000px;}
.yac{bottom:833.295000px;}
.y5d{bottom:835.455000px;}
.y112{bottom:835.815000px;}
.y84{bottom:837.255000px;}
.ycb{bottom:854.535000px;}
.yeb{bottom:855.615000px;}
.yab{bottom:856.695000px;}
.y111{bottom:858.495000px;}
.y5c{bottom:858.855000px;}
.y83{bottom:863.535000px;}
.yaa{bottom:876.855000px;}
.yca{bottom:880.815000px;}
.yea{bottom:881.535000px;}
.y110{bottom:881.895000px;}
.y5b{bottom:888.015000px;}
.y82{bottom:889.815000px;}
.ya9{bottom:899.895000px;}
.yc9{bottom:906.735000px;}
.ye9{bottom:907.815000px;}
.y5a{bottom:910.695000px;}
.y10f{bottom:911.055000px;}
.y81{bottom:915.735000px;}
.ya8{bottom:922.935000px;}
.yc8{bottom:933.045000px;}
.ye8{bottom:933.765000px;}
.y59{bottom:934.125000px;}
.y80{bottom:942.045000px;}
.ya7{bottom:943.125000px;}
.y58{bottom:957.165000px;}
.ye7{bottom:960.045000px;}
.ye{bottom:961.845000px;}
.ya6{bottom:966.165000px;}
.yd{bottom:967.245000px;}
.y7f{bottom:967.965000px;}
.y10e{bottom:980.205000px;}
.y57{bottom:980.565000px;}
.ye6{bottom:983.445000px;}
.yc{bottom:984.885000px;}
.ya5{bottom:989.565000px;}
.y7e{bottom:994.245000px;}
.y10d{bottom:1003.605000px;}
.yb{bottom:1004.685000px;}
.ye5{bottom:1006.125000px;}
.y56{bottom:1009.365000px;}
.y7d{bottom:1020.525000px;}
.ya{bottom:1024.845000px;}
.y10c{bottom:1026.285000px;}
.ya4{bottom:1029.525000px;}
.y55{bottom:1032.405000px;}
.y7c{bottom:1046.445000px;}
.y9{bottom:1051.125000px;}
.ya3{bottom:1052.565000px;}
.y54{bottom:1055.805000px;}
.y7b{bottom:1072.770000px;}
.y53{bottom:1078.530000px;}
.y8{bottom:1086.450000px;}
.y50{bottom:1089.720000px;}
.y7a{bottom:1098.690000px;}
.y52{bottom:1101.930000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.h15{height:5.650313px;}
.h16{height:27.720000px;}
.h12{height:29.678906px;}
.h6{height:30.077578px;}
.h11{height:35.332031px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h13{height:53.677969px;}
.h14{height:55.147500px;}
.hf{height:58.006406px;}
.h7{height:58.050000px;}
.h5{height:59.357813px;}
.ha{height:60.952500px;}
.he{height:61.143509px;}
.h17{height:63.455625px;}
.h9{height:64.112344px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h8{height:88.536094px;}
.h4{height:116.640000px;}
.h10{height:201.285000px;}
.hb{height:663.645000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:6.876000px;}
.x18{left:8.266500px;}
.x4{left:13.305000px;}
.x16{left:17.266500px;}
.x1d{left:18.346500px;}
.x5{left:19.425000px;}
.x17{left:29.146500px;}
.x6{left:38.145000px;}
.x10{left:43.906500px;}
.x1e{left:47.542500px;}
.x11{left:50.782500px;}
.x15{left:54.022500px;}
.xf{left:55.102500px;}
.x20{left:57.262500px;}
.x1a{left:62.295000px;}
.x1f{left:66.265500px;}
.x14{left:73.105500px;}
.x13{left:75.265500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x21{left:102.985500px;}
.x1c{left:106.945500px;}
.x22{left:117.780000px;}
.x1b{left:120.660000px;}
.x12{left:124.585500px;}
.x26{left:140.472000px;}
.x23{left:163.140000px;}
.x3{left:182.250000px;}
.x19{left:218.970000px;}
.xb{left:289.545000px;}
.xc{left:427.500000px;}
.x24{left:458.475000px;}
.xd{left:632.415000px;}
.xa{left:678.165000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xe{left:807.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls59{letter-spacing:-3.402667pt;}
.ls6e{letter-spacing:-1.194667pt;}
.ls21{letter-spacing:-0.864000pt;}
.ls19{letter-spacing:-0.758939pt;}
.ls25{letter-spacing:-0.668991pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.629638pt;}
.ls23{letter-spacing:-0.560000pt;}
.ls3d{letter-spacing:-0.527467pt;}
.ls6f{letter-spacing:-0.509333pt;}
.ls67{letter-spacing:-0.493867pt;}
.ls43{letter-spacing:-0.491733pt;}
.ls5a{letter-spacing:-0.414933pt;}
.ls1d{letter-spacing:-0.342928pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls5b{letter-spacing:-0.281600pt;}
.ls66{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.178210pt;}
.ls6d{letter-spacing:-0.169067pt;}
.ls6c{letter-spacing:-0.153600pt;}
.ls40{letter-spacing:-0.135467pt;}
.ls54{letter-spacing:-0.107733pt;}
.ls14{letter-spacing:-0.079467pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls3f{letter-spacing:-0.028160pt;}
.ls42{letter-spacing:-0.017920pt;}
.ls12{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.010794pt;}
.ls26{letter-spacing:0.017920pt;}
.ls3b{letter-spacing:0.028587pt;}
.ls64{letter-spacing:0.079467pt;}
.ls56{letter-spacing:0.084267pt;}
.ls65{letter-spacing:0.086933pt;}
.ls3e{letter-spacing:0.115200pt;}
.ls57{letter-spacing:0.133333pt;}
.ls68{letter-spacing:0.145920pt;}
.ls45{letter-spacing:0.173867pt;}
.ls6b{letter-spacing:0.177920pt;}
.ls62{letter-spacing:0.207360pt;}
.ls52{letter-spacing:0.207467pt;}
.ls1a{letter-spacing:0.340117pt;}
.ls69{letter-spacing:0.345600pt;}
.ls6a{letter-spacing:0.348267pt;}
.ls2b{letter-spacing:0.353067pt;}
.ls2e{letter-spacing:0.414720pt;}
.ls20{letter-spacing:0.414933pt;}
.ls2d{letter-spacing:0.425387pt;}
.ls1e{letter-spacing:0.431752pt;}
.lsc{letter-spacing:0.466832pt;}
.ls30{letter-spacing:0.483840pt;}
.ls35{letter-spacing:0.521387pt;}
.ls36{letter-spacing:0.530133pt;}
.ls27{letter-spacing:0.542720pt;}
.ls3c{letter-spacing:0.549333pt;}
.ls61{letter-spacing:0.550400pt;}
.ls58{letter-spacing:0.565333pt;}
.ls2f{letter-spacing:0.574720pt;}
.lsa{letter-spacing:0.588262pt;}
.ls17{letter-spacing:0.590286pt;}
.ls0{letter-spacing:0.640000pt;}
.ls53{letter-spacing:0.865280pt;}
.ls51{letter-spacing:0.971947pt;}
.ls41{letter-spacing:1.024000pt;}
.ls13{letter-spacing:1.120000pt;}
.ls28{letter-spacing:1.297920pt;}
.ls55{letter-spacing:1.365333pt;}
.ls1f{letter-spacing:1.619070pt;}
.ls34{letter-spacing:1.694720pt;}
.ls44{letter-spacing:1.696000pt;}
.ls5f{letter-spacing:1.801387pt;}
.ls5e{letter-spacing:1.854720pt;}
.ls1{letter-spacing:1.937487pt;}
.ls18{letter-spacing:1.939511pt;}
.ls3{letter-spacing:2.049922pt;}
.ls49{letter-spacing:2.974720pt;}
.ls4a{letter-spacing:3.081387pt;}
.ls4b{letter-spacing:3.134720pt;}
.ls2{letter-spacing:3.286712pt;}
.ls9{letter-spacing:3.399147pt;}
.ls47{letter-spacing:4.254720pt;}
.ls4c{letter-spacing:4.361387pt;}
.lsd{letter-spacing:4.635937pt;}
.ls32{letter-spacing:5.534720pt;}
.lse{letter-spacing:5.985162pt;}
.ls11{letter-spacing:6.153815pt;}
.ls31{letter-spacing:6.814720pt;}
.ls63{letter-spacing:6.921387pt;}
.ls33{letter-spacing:6.974720pt;}
.lsf{letter-spacing:7.334387pt;}
.ls10{letter-spacing:7.446822pt;}
.ls60{letter-spacing:8.094720pt;}
.ls4{letter-spacing:8.683612pt;}
.ls5{letter-spacing:8.796047pt;}
.ls29{letter-spacing:9.374720pt;}
.lsb{letter-spacing:10.032837pt;}
.ls2a{letter-spacing:10.654720pt;}
.ls2c{letter-spacing:10.814720pt;}
.ls7{letter-spacing:11.382062pt;}
.ls8{letter-spacing:11.550715pt;}
.ls46{letter-spacing:11.934720pt;}
.ls6{letter-spacing:12.731287pt;}
.ls48{letter-spacing:13.214720pt;}
.ls4e{letter-spacing:14.494720pt;}
.ls4f{letter-spacing:15.774720pt;}
.ls4d{letter-spacing:15.785387pt;}
.ls50{letter-spacing:15.881387pt;}
.ls37{letter-spacing:17.182720pt;}
.ls38{letter-spacing:18.334720pt;}
.ls39{letter-spacing:18.441387pt;}
.ls3a{letter-spacing:18.494720pt;}
.ls5d{letter-spacing:26.014720pt;}
.ls5c{letter-spacing:27.294720pt;}
.ws1{word-spacing:-20.638720pt;}
.ws14{word-spacing:-17.149440pt;}
.ws5{word-spacing:-16.355305pt;}
.ws12{word-spacing:-15.510613pt;}
.wsd{word-spacing:-15.494613pt;}
.wsc{word-spacing:-15.475413pt;}
.wsf{word-spacing:-15.360213pt;}
.ws18{word-spacing:-15.293547pt;}
.ws17{word-spacing:-15.290880pt;}
.ws13{word-spacing:-15.152747pt;}
.ws11{word-spacing:-15.119147pt;}
.ws1d{word-spacing:-15.078613pt;}
.ws16{word-spacing:-15.024747pt;}
.ws7{word-spacing:-14.945280pt;}
.ws19{word-spacing:-14.791680pt;}
.ws1a{word-spacing:-14.776213pt;}
.ws15{word-spacing:-14.663680pt;}
.ws10{word-spacing:-14.453547pt;}
.ws1c{word-spacing:-14.435947pt;}
.wse{word-spacing:-14.417813pt;}
.ws6{word-spacing:-14.253213pt;}
.ws1b{word-spacing:-13.750613pt;}
.ws0{word-spacing:-13.440000pt;}
.wsa{word-spacing:-12.160000pt;}
.ws9{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsb{word-spacing:0.000000pt;}
._a{margin-left:-7.643116pt;}
._5{margin-left:-6.689950pt;}
._12{margin-left:-4.013126pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._b{width:4.720552pt;}
._d{width:5.726460pt;}
._6{width:6.716442pt;}
._7{width:7.637338pt;}
._c{width:8.615840pt;}
._f{width:9.936579pt;}
._8{width:10.921976pt;}
._9{width:12.000914pt;}
._e{width:13.133044pt;}
._16{width:14.072320pt;}
._13{width:16.504320pt;}
._10{width:18.310400pt;}
._11{width:19.859200pt;}
._17{width:21.611520pt;}
._18{width:23.439360pt;}
._14{width:25.612800pt;}
._15{width:26.962347pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs8{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:3.196000pt;}
.y5{bottom:3.520000pt;}
.y3a{bottom:3.840000pt;}
.y51{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y43{bottom:8.956000pt;}
.y4{bottom:18.880000pt;}
.y4e{bottom:19.836000pt;}
.y39{bottom:21.440000pt;}
.y42{bottom:35.196000pt;}
.y4d{bottom:39.356000pt;}
.y3{bottom:39.360000pt;}
.y38{bottom:41.920000pt;}
.y41{bottom:45.788000pt;}
.y7{bottom:51.232000pt;}
.y4c{bottom:56.670667pt;}
.y40{bottom:57.310667pt;}
.y37{bottom:65.280000pt;}
.y3f{bottom:69.150667pt;}
.y4b{bottom:77.470667pt;}
.y3b{bottom:82.916000pt;}
.y79{bottom:84.832000pt;}
.y36{bottom:86.080000pt;}
.y3e{bottom:88.350667pt;}
.y12e{bottom:88.672000pt;}
.ye4{bottom:91.552000pt;}
.y10b{bottom:91.872000pt;}
.yc7{bottom:92.832000pt;}
.y4a{bottom:93.150667pt;}
.ya2{bottom:93.792000pt;}
.y49{bottom:98.590667pt;}
.y78{bottom:102.752000pt;}
.y35{bottom:103.720000pt;}
.y12d{bottom:106.592000pt;}
.ye3{bottom:111.712000pt;}
.y48{bottom:112.670667pt;}
.ya1{bottom:114.592000pt;}
.y10a{bottom:115.232000pt;}
.yc6{bottom:116.192000pt;}
.y77{bottom:122.912000pt;}
.y34{bottom:124.200000pt;}
.y12c{bottom:124.512000pt;}
.y47{bottom:126.430667pt;}
.ya0{bottom:135.106667pt;}
.y109{bottom:138.626667pt;}
.yc5{bottom:139.266667pt;}
.y46{bottom:140.510667pt;}
.y3d{bottom:143.710667pt;}
.y12b{bottom:145.026667pt;}
.y76{bottom:146.306667pt;}
.y33{bottom:147.560000pt;}
.y3c{bottom:153.310667pt;}
.y45{bottom:154.270667pt;}
.y9f{bottom:158.146667pt;}
.y108{bottom:161.666667pt;}
.yc4{bottom:162.626667pt;}
.y75{bottom:167.106667pt;}
.y44{bottom:167.737333pt;}
.y12a{bottom:168.066667pt;}
.y32{bottom:170.600000pt;}
.y9e{bottom:178.946667pt;}
.y107{bottom:185.026667pt;}
.yc3{bottom:185.986667pt;}
.y31{bottom:191.400000pt;}
.y129{bottom:191.426667pt;}
.y74{bottom:192.706667pt;}
.y9d{bottom:196.866667pt;}
.y106{bottom:208.066667pt;}
.yc2{bottom:209.026667pt;}
.y128{bottom:212.226667pt;}
.y73{bottom:213.186667pt;}
.ye2{bottom:214.786667pt;}
.y9c{bottom:217.346667pt;}
.y30{bottom:219.266667pt;}
.y105{bottom:228.866667pt;}
.yc1{bottom:229.826667pt;}
.y127{bottom:232.386667pt;}
.y72{bottom:233.986667pt;}
.ye1{bottom:234.946667pt;}
.y9b{bottom:237.826667pt;}
.y2f{bottom:240.386667pt;}
.y104{bottom:246.813333pt;}
.yc0{bottom:250.333333pt;}
.y126{bottom:253.213333pt;}
.y71{bottom:254.173333pt;}
.y9a{bottom:255.773333pt;}
.ye0{bottom:258.333333pt;}
.y1f{bottom:259.586667pt;}
.y2e{bottom:261.186667pt;}
.yf{bottom:262.493333pt;}
.y103{bottom:267.293333pt;}
.ybf{bottom:273.373333pt;}
.y99{bottom:276.253333pt;}
.y70{bottom:277.533333pt;}
.ydf{bottom:279.133333pt;}
.y1e{bottom:281.026667pt;}
.y2d{bottom:281.986667pt;}
.y102{bottom:290.333333pt;}
.ybe{bottom:296.733333pt;}
.y125{bottom:297.053333pt;}
.y98{bottom:299.293333pt;}
.y6f{bottom:300.893333pt;}
.y1d{bottom:302.466667pt;}
.y2c{bottom:303.106667pt;}
.yde{bottom:305.053333pt;}
.y101{bottom:313.693333pt;}
.y124{bottom:317.213333pt;}
.ybd{bottom:319.773333pt;}
.y97{bottom:320.093333pt;}
.ydd{bottom:322.653333pt;}
.y1c{bottom:323.906667pt;}
.y6e{bottom:323.933333pt;}
.y100{bottom:334.493333pt;}
.y96{bottom:338.013333pt;}
.y123{bottom:340.573333pt;}
.ybc{bottom:343.133333pt;}
.y2b{bottom:344.733333pt;}
.y1b{bottom:345.373333pt;}
.yff{bottom:352.413333pt;}
.y6d{bottom:352.733333pt;}
.y95{bottom:358.493333pt;}
.y122{bottom:363.653333pt;}
.ydc{bottom:363.973333pt;}
.y2a{bottom:365.853333pt;}
.ybb{bottom:366.533333pt;}
.y1a{bottom:366.813333pt;}
.yfe{bottom:370.053333pt;}
.y6c{bottom:373.253333pt;}
.y94{bottom:381.573333pt;}
.ydb{bottom:381.893333pt;}
.y29{bottom:386.653333pt;}
.y121{bottom:387.013333pt;}
.y19{bottom:388.253333pt;}
.yba{bottom:389.573333pt;}
.yfd{bottom:390.533333pt;}
.y6b{bottom:396.293333pt;}
.yda{bottom:402.053333pt;}
.y93{bottom:402.373333pt;}
.y28{bottom:407.453333pt;}
.y18{bottom:409.693333pt;}
.y120{bottom:410.373333pt;}
.yb9{bottom:412.933333pt;}
.yfc{bottom:413.893333pt;}
.y6a{bottom:421.573333pt;}
.yd9{bottom:422.853333pt;}
.y92{bottom:428.293333pt;}
.y27{bottom:428.573333pt;}
.y17{bottom:431.133333pt;}
.y11f{bottom:433.413333pt;}
.yfb{bottom:434.373333pt;}
.yb8{bottom:435.973333pt;}
.yd8{bottom:443.333333pt;}
.y91{bottom:446.213333pt;}
.y69{bottom:446.533333pt;}
.y26{bottom:449.413333pt;}
.y16{bottom:452.613333pt;}
.y11e{bottom:454.213333pt;}
.yfa{bottom:454.853333pt;}
.yb7{bottom:459.333333pt;}
.y90{bottom:466.373333pt;}
.y25{bottom:470.213333pt;}
.y68{bottom:471.493333pt;}
.y11d{bottom:472.133333pt;}
.y15{bottom:474.373333pt;}
.yf9{bottom:478.240000pt;}
.yb6{bottom:482.720000pt;}
.yd7{bottom:487.200000pt;}
.y8f{bottom:489.760000pt;}
.y24{bottom:491.333333pt;}
.y14{bottom:495.813333pt;}
.y67{bottom:496.800000pt;}
.y11c{bottom:498.080000pt;}
.yf8{bottom:501.280000pt;}
.yb5{bottom:505.760000pt;}
.yd6{bottom:507.680000pt;}
.y23{bottom:512.133333pt;}
.y8e{bottom:512.800000pt;}
.y13{bottom:517.253333pt;}
.y11b{bottom:518.240000pt;}
.y66{bottom:521.760000pt;}
.yf7{bottom:522.080000pt;}
.yb4{bottom:529.120000pt;}
.yd5{bottom:530.720000pt;}
.y22{bottom:532.933333pt;}
.y8d{bottom:533.600000pt;}
.y12{bottom:538.693333pt;}
.y11a{bottom:539.040000pt;}
.yf6{bottom:540.000000pt;}
.y65{bottom:546.720000pt;}
.y8c{bottom:551.520000pt;}
.yb3{bottom:552.160000pt;}
.y21{bottom:554.053333pt;}
.yf5{bottom:557.920000pt;}
.y119{bottom:559.520000pt;}
.y11{bottom:560.133333pt;}
.yd4{bottom:569.440000pt;}
.y64{bottom:572.000000pt;}
.y20{bottom:574.880000pt;}
.yb2{bottom:575.520000pt;}
.yf4{bottom:578.080000pt;}
.y10{bottom:581.600000pt;}
.y118{bottom:582.560000pt;}
.yd3{bottom:589.920000pt;}
.y8b{bottom:595.066667pt;}
.y63{bottom:596.986667pt;}
.yb1{bottom:598.906667pt;}
.yf3{bottom:601.466667pt;}
.y117{bottom:605.946667pt;}
.yd2{bottom:612.986667pt;}
.y8a{bottom:618.426667pt;}
.y62{bottom:621.946667pt;}
.yf2{bottom:622.266667pt;}
.y116{bottom:628.986667pt;}
.yd1{bottom:633.786667pt;}
.y89{bottom:639.226667pt;}
.yf1{bottom:639.866667pt;}
.yb0{bottom:645.306667pt;}
.y61{bottom:647.226667pt;}
.y115{bottom:652.346667pt;}
.yd0{bottom:654.266667pt;}
.y88{bottom:657.146667pt;}
.yf0{bottom:660.346667pt;}
.yaf{bottom:668.346667pt;}
.ycf{bottom:674.746667pt;}
.y60{bottom:675.706667pt;}
.yef{bottom:681.146667pt;}
.y87{bottom:682.746667pt;}
.yce{bottom:692.666667pt;}
.y5f{bottom:696.186667pt;}
.yae{bottom:697.146667pt;}
.y114{bottom:698.746667pt;}
.yee{bottom:699.066667pt;}
.y86{bottom:700.666667pt;}
.ycd{bottom:713.186667pt;}
.yed{bottom:716.706667pt;}
.yad{bottom:717.666667pt;}
.y5e{bottom:719.586667pt;}
.y85{bottom:721.186667pt;}
.y113{bottom:722.146667pt;}
.ycc{bottom:736.226667pt;}
.yec{bottom:737.186667pt;}
.yac{bottom:740.706667pt;}
.y5d{bottom:742.626667pt;}
.y112{bottom:742.946667pt;}
.y84{bottom:744.226667pt;}
.ycb{bottom:759.586667pt;}
.yeb{bottom:760.546667pt;}
.yab{bottom:761.506667pt;}
.y111{bottom:763.106667pt;}
.y5c{bottom:763.426667pt;}
.y83{bottom:767.586667pt;}
.yaa{bottom:779.426667pt;}
.yca{bottom:782.946667pt;}
.yea{bottom:783.586667pt;}
.y110{bottom:783.906667pt;}
.y5b{bottom:789.346667pt;}
.y82{bottom:790.946667pt;}
.ya9{bottom:799.906667pt;}
.yc9{bottom:805.986667pt;}
.ye9{bottom:806.946667pt;}
.y5a{bottom:809.506667pt;}
.y10f{bottom:809.826667pt;}
.y81{bottom:813.986667pt;}
.ya8{bottom:820.386667pt;}
.yc8{bottom:829.373333pt;}
.ye8{bottom:830.013333pt;}
.y59{bottom:830.333333pt;}
.y80{bottom:837.373333pt;}
.ya7{bottom:838.333333pt;}
.y58{bottom:850.813333pt;}
.ye7{bottom:853.373333pt;}
.ye{bottom:854.973333pt;}
.ya6{bottom:858.813333pt;}
.yd{bottom:859.773333pt;}
.y7f{bottom:860.413333pt;}
.y10e{bottom:871.293333pt;}
.y57{bottom:871.613333pt;}
.ye6{bottom:874.173333pt;}
.yc{bottom:875.453333pt;}
.ya5{bottom:879.613333pt;}
.y7e{bottom:883.773333pt;}
.y10d{bottom:892.093333pt;}
.yb{bottom:893.053333pt;}
.ye5{bottom:894.333333pt;}
.y56{bottom:897.213333pt;}
.y7d{bottom:907.133333pt;}
.ya{bottom:910.973333pt;}
.y10c{bottom:912.253333pt;}
.ya4{bottom:915.133333pt;}
.y55{bottom:917.693333pt;}
.y7c{bottom:930.173333pt;}
.y9{bottom:934.333333pt;}
.ya3{bottom:935.613333pt;}
.y54{bottom:938.493333pt;}
.y7b{bottom:953.573333pt;}
.y53{bottom:958.693333pt;}
.y8{bottom:965.733333pt;}
.y50{bottom:968.640000pt;}
.y7a{bottom:976.613333pt;}
.y52{bottom:979.493333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.h15{height:5.022500pt;}
.h16{height:24.640000pt;}
.h12{height:26.381250pt;}
.h6{height:26.735625pt;}
.h11{height:31.406250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h13{height:47.713750pt;}
.h14{height:49.020000pt;}
.hf{height:51.561250pt;}
.h7{height:51.600000pt;}
.h5{height:52.762500pt;}
.ha{height:54.180000pt;}
.he{height:54.349786pt;}
.h17{height:56.405000pt;}
.h9{height:56.988750pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h8{height:78.698750pt;}
.h4{height:103.680000pt;}
.h10{height:178.920000pt;}
.hb{height:589.906667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.112000pt;}
.x18{left:7.348000pt;}
.x4{left:11.826667pt;}
.x16{left:15.348000pt;}
.x1d{left:16.308000pt;}
.x5{left:17.266667pt;}
.x17{left:25.908000pt;}
.x6{left:33.906667pt;}
.x10{left:39.028000pt;}
.x1e{left:42.260000pt;}
.x11{left:45.140000pt;}
.x15{left:48.020000pt;}
.xf{left:48.980000pt;}
.x20{left:50.900000pt;}
.x1a{left:55.373333pt;}
.x1f{left:58.902667pt;}
.x14{left:64.982667pt;}
.x13{left:66.902667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x21{left:91.542667pt;}
.x1c{left:95.062667pt;}
.x22{left:104.693333pt;}
.x1b{left:107.253333pt;}
.x12{left:110.742667pt;}
.x26{left:124.864000pt;}
.x23{left:145.013333pt;}
.x3{left:162.000000pt;}
.x19{left:194.640000pt;}
.xb{left:257.373333pt;}
.xc{left:380.000000pt;}
.x24{left:407.533333pt;}
.xd{left:562.146667pt;}
.xa{left:602.813333pt;}
.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; }
  