
    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_df913a0001dd26de016220df.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_673a27e58a518eeac087a7b6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_be10a79365a08f04b535fa10.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_9c6273b19e030ad375dc38da.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_80880b2b94db7fa1da84b133.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_318ac770cf4e8801218c4be8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7bcac8863e42486cde6b71d4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_302ed5c71651c15d1085c268.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_352dae340fd05ec86f83410b.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_a03bbccc32df94e0e044786e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c5edece1b21d0a1680e79789.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_1caffbe218280b096f236a4b.woff2')format("woff");}.fff{font-family:fff;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;}
.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;}
.ls33{letter-spacing:-1.926000px;}
.ls30{letter-spacing:-1.632000px;}
.ls2b{letter-spacing:-1.242000px;}
.ls2c{letter-spacing:-1.206000px;}
.ls1d{letter-spacing:-0.972000px;}
.ls19{letter-spacing:-0.853806px;}
.ls15{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.702000px;}
.ls1f{letter-spacing:-0.630000px;}
.ls13{letter-spacing:-0.573000px;}
.ls3a{letter-spacing:-0.507000px;}
.ls2f{letter-spacing:-0.486600px;}
.ls1a{letter-spacing:-0.349112px;}
.ls20{letter-spacing:-0.234006px;}
.ls1b{letter-spacing:-0.218827px;}
.ls22{letter-spacing:-0.185308px;}
.ls1c{letter-spacing:-0.115106px;}
.ls14{letter-spacing:-0.089400px;}
.ls1e{letter-spacing:-0.072000px;}
.ls2d{letter-spacing:-0.020160px;}
.lse{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.020160px;}
.ls31{letter-spacing:0.032160px;}
.ls32{letter-spacing:0.138000px;}
.ls38{letter-spacing:0.150000px;}
.ls25{letter-spacing:0.164160px;}
.ls27{letter-spacing:0.181440px;}
.ls2{letter-spacing:0.195840px;}
.ls35{letter-spacing:0.200160px;}
.ls28{letter-spacing:0.233280px;}
.ls24{letter-spacing:0.233400px;}
.ls29{letter-spacing:0.353280px;}
.ls17{letter-spacing:0.382632px;}
.ls1{letter-spacing:0.466560px;}
.ls10{letter-spacing:0.466800px;}
.ls39{letter-spacing:0.486600px;}
.ls12{letter-spacing:0.618000px;}
.ls2a{letter-spacing:0.636000px;}
.lsa{letter-spacing:0.661795px;}
.ls18{letter-spacing:0.664072px;}
.ls3{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.738000px;}
.lsb{letter-spacing:0.851530px;}
.ls4{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.261440px;}
.ls16{letter-spacing:1.350000px;}
.ls23{letter-spacing:1.906560px;}
.ls9{letter-spacing:2.179673px;}
.ls21{letter-spacing:2.181950px;}
.lsd{letter-spacing:2.369408px;}
.ls34{letter-spacing:3.346560px;}
.ls5{letter-spacing:3.697551px;}
.ls6{letter-spacing:5.215429px;}
.ls2e{letter-spacing:7.666560px;}
.ls26{letter-spacing:9.106560px;}
.ls8{letter-spacing:11.286942px;}
.ls7{letter-spacing:12.804820px;}
.ls36{letter-spacing:40.786560px;}
.ls37{letter-spacing:46.546560px;}
.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;}
}
.ws18{word-spacing:-60.480000px;}
.ws9{word-spacing:-18.399718px;}
.wsf{word-spacing:-17.449440px;}
.wsb{word-spacing:-17.431440px;}
.ws16{word-spacing:-17.300040px;}
.ws10{word-spacing:-17.046840px;}
.ws11{word-spacing:-16.994880px;}
.ws15{word-spacing:-16.963440px;}
.ws14{word-spacing:-16.951440px;}
.ws1{word-spacing:-16.813440px;}
.ws0{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.306440px;}
.wsa{word-spacing:-16.240440px;}
.ws8{word-spacing:-16.034864px;}
.ws12{word-spacing:-15.607440px;}
.ws13{word-spacing:-15.181440px;}
.ws2{word-spacing:-15.120000px;}
.ws7{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.050000px;}
.ws6{word-spacing:-11.790000px;}
.ws3{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsc{word-spacing:-8.928000px;}
.wse{word-spacing:0.000000px;}
._7{margin-left:-9.374400px;}
._9{margin-left:-8.290746px;}
._14{margin-left:-4.052160px;}
._4{margin-left:-2.119680px;}
._5{margin-left:-1.063680px;}
._1{width:1.227360px;}
._0{width:2.332800px;}
._6{width:3.364800px;}
._c{width:5.041913px;}
._12{width:6.521072px;}
._a{width:7.555997px;}
._8{width:8.588160px;}
._d{width:9.867043px;}
._b{width:11.269785px;}
._11{width:12.275895px;}
._10{width:13.881600px;}
._13{width:15.454080px;}
._f{width:18.712320px;}
._e{width:20.185440px;}
._2{width:118.920000px;}
._3{width:382.500000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs7{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fsc{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fsb{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y41{bottom:2.515500px;}
.y4d{bottom:3.595500px;}
.y5{bottom:4.320000px;}
.y77{bottom:5.385000px;}
.y105{bottom:5.389500px;}
.y7f{bottom:5.395500px;}
.y69{bottom:5.400000px;}
.ye9{bottom:5.430000px;}
.yb2{bottom:5.445000px;}
.y79{bottom:5.745000px;}
.y81{bottom:5.755500px;}
.y68{bottom:5.760000px;}
.yd6{bottom:5.775000px;}
.y4f{bottom:7.170000px;}
.y2{bottom:10.080000px;}
.y40{bottom:10.435500px;}
.y96{bottom:17.985000px;}
.y4c{bottom:22.351500px;}
.y4{bottom:23.400000px;}
.y37{bottom:24.480000px;}
.ybe{bottom:26.985000px;}
.yaf{bottom:27.031500px;}
.y7e{bottom:27.034500px;}
.y70{bottom:27.045000px;}
.y74{bottom:27.360000px;}
.y66{bottom:28.080000px;}
.y95{bottom:39.585000px;}
.y3f{bottom:39.994500px;}
.y93{bottom:40.305000px;}
.y36{bottom:44.280000px;}
.y4b{bottom:44.314500px;}
.y3{bottom:47.880000px;}
.ybd{bottom:48.630000px;}
.ye7{bottom:48.945000px;}
.ycf{bottom:49.725000px;}
.y3e{bottom:51.874500px;}
.y7{bottom:57.636000px;}
.y94{bottom:61.185000px;}
.y92{bottom:61.905000px;}
.y4a{bottom:63.754500px;}
.y35{bottom:64.440000px;}
.y3d{bottom:65.194500px;}
.ye5{bottom:71.265000px;}
.y3c{bottom:78.154500px;}
.y90{bottom:83.505000px;}
.y49{bottom:87.154500px;}
.yde{bottom:88.960500px;}
.y34{bottom:93.645000px;}
.yb0{bottom:97.600500px;}
.y3b{bottom:99.754500px;}
.y107{bottom:100.120500px;}
.y48{bottom:104.794500px;}
.y80{bottom:106.960500px;}
.y47{bottom:110.914500px;}
.ydd{bottom:111.280500px;}
.y33{bottom:116.685000px;}
.yae{bottom:119.920500px;}
.y38{bottom:121.360500px;}
.y106{bottom:122.800500px;}
.y46{bottom:126.754500px;}
.y7d{bottom:129.640500px;}
.ydc{bottom:133.600500px;}
.y32{bottom:140.085000px;}
.y45{bottom:142.594500px;}
.y104{bottom:145.165500px;}
.ydb{bottom:156.330000px;}
.y44{bottom:158.104500px;}
.y3a{bottom:162.064500px;}
.y31{bottom:162.765000px;}
.yad{bottom:163.890000px;}
.y103{bottom:167.490000px;}
.y39{bottom:172.864500px;}
.y43{bottom:173.584500px;}
.y7c{bottom:173.610000px;}
.yda{bottom:178.650000px;}
.y12e{bottom:179.355000px;}
.yac{bottom:186.570000px;}
.y42{bottom:188.704500px;}
.y30{bottom:189.045000px;}
.y102{bottom:190.170000px;}
.y7b{bottom:196.290000px;}
.y12d{bottom:198.435000px;}
.yd9{bottom:200.970000px;}
.yab{bottom:208.890000px;}
.y101{bottom:212.490000px;}
.y2f{bottom:214.995000px;}
.y7a{bottom:218.610000px;}
.yd8{bottom:223.650000px;}
.y12c{bottom:224.355000px;}
.yaa{bottom:231.210000px;}
.y100{bottom:234.810000px;}
.y2e{bottom:238.395000px;}
.y78{bottom:240.930000px;}
.yd7{bottom:245.970000px;}
.y12b{bottom:250.635000px;}
.ya9{bottom:253.890000px;}
.yff{bottom:257.490000px;}
.y2d{bottom:261.435000px;}
.y76{bottom:263.610000px;}
.yd5{bottom:268.290000px;}
.ya8{bottom:276.225000px;}
.y1d{bottom:276.915000px;}
.y12a{bottom:276.945000px;}
.yfe{bottom:279.825000px;}
.y2c{bottom:284.835000px;}
.y75{bottom:285.945000px;}
.yd4{bottom:290.985000px;}
.ya7{bottom:298.545000px;}
.y129{bottom:299.625000px;}
.y1c{bottom:301.035000px;}
.yfd{bottom:302.145000px;}
.y2b{bottom:307.515000px;}
.y73{bottom:308.265000px;}
.yd3{bottom:313.305000px;}
.ya6{bottom:321.225000px;}
.ye{bottom:323.745000px;}
.yfc{bottom:324.465000px;}
.y1b{bottom:325.155000px;}
.y128{bottom:325.185000px;}
.y2a{bottom:330.915000px;}
.yd2{bottom:335.625000px;}
.ya5{bottom:347.865000px;}
.y127{bottom:348.225000px;}
.y1a{bottom:349.305000px;}
.y29{bottom:351.105000px;}
.yfb{bottom:351.465000px;}
.y72{bottom:352.545000px;}
.yd1{bottom:358.305000px;}
.y126{bottom:365.505000px;}
.ya4{bottom:368.025000px;}
.y28{bottom:371.265000px;}
.y19{bottom:373.425000px;}
.y71{bottom:374.865000px;}
.yce{bottom:380.625000px;}
.y125{bottom:385.665000px;}
.y27{bottom:391.065000px;}
.yfa{bottom:391.425000px;}
.ya3{bottom:397.185000px;}
.y18{bottom:397.545000px;}
.y26{bottom:411.225000px;}
.yf9{bottom:411.630000px;}
.y124{bottom:411.990000px;}
.ya2{bottom:417.030000px;}
.y17{bottom:421.665000px;}
.yd0{bottom:424.950000px;}
.y25{bottom:433.905000px;}
.y123{bottom:438.270000px;}
.yf8{bottom:440.790000px;}
.y6f{bottom:441.510000px;}
.y16{bottom:445.785000px;}
.ya1{bottom:446.190000px;}
.ycd{bottom:451.590000px;}
.y24{bottom:457.305000px;}
.y122{bottom:461.310000px;}
.y6e{bottom:463.830000px;}
.ya0{bottom:466.350000px;}
.y15{bottom:469.905000px;}
.ycc{bottom:471.750000px;}
.y23{bottom:480.750000px;}
.y6d{bottom:486.510000px;}
.yf7{bottom:486.870000px;}
.y121{bottom:490.470000px;}
.ycb{bottom:491.550000px;}
.y14{bottom:494.430000px;}
.y22{bottom:504.510000px;}
.y6c{bottom:508.830000px;}
.y9f{bottom:509.550000px;}
.yf6{bottom:509.910000px;}
.y120{bottom:510.630000px;}
.yca{bottom:511.710000px;}
.y13{bottom:518.550000px;}
.y21{bottom:527.910000px;}
.y11f{bottom:530.790000px;}
.y6b{bottom:531.150000px;}
.yc9{bottom:531.870000px;}
.y9e{bottom:532.590000px;}
.yf5{bottom:533.310000px;}
.y12{bottom:542.670000px;}
.y9d{bottom:549.180000px;}
.yf4{bottom:549.900000px;}
.y11e{bottom:550.980000px;}
.y20{bottom:551.310000px;}
.yc8{bottom:552.060000px;}
.y6a{bottom:553.860000px;}
.y11{bottom:566.790000px;}
.y11d{bottom:571.140000px;}
.y9c{bottom:571.860000px;}
.yf3{bottom:572.220000px;}
.yc7{bottom:574.740000px;}
.y1f{bottom:575.070000px;}
.y65{bottom:576.180000px;}
.y10{bottom:590.910000px;}
.y11c{bottom:590.940000px;}
.y9b{bottom:594.180000px;}
.yf2{bottom:594.900000px;}
.yc6{bottom:598.140000px;}
.y1e{bottom:598.470000px;}
.y67{bottom:598.500000px;}
.y11b{bottom:611.100000px;}
.yc5{bottom:614.700000px;}
.yf{bottom:615.060000px;}
.y9a{bottom:616.500000px;}
.yf1{bottom:617.220000px;}
.y64{bottom:625.500000px;}
.y11a{bottom:631.260000px;}
.yc4{bottom:637.380000px;}
.y99{bottom:639.180000px;}
.yf0{bottom:639.540000px;}
.y63{bottom:645.300000px;}
.y119{bottom:651.420000px;}
.yc3{bottom:659.700000px;}
.y98{bottom:661.500000px;}
.yef{bottom:662.220000px;}
.y62{bottom:665.460000px;}
.yc2{bottom:682.065000px;}
.y118{bottom:683.130000px;}
.y97{bottom:683.865000px;}
.yee{bottom:684.585000px;}
.y61{bottom:685.650000px;}
.yc1{bottom:704.745000px;}
.y8f{bottom:706.545000px;}
.yed{bottom:706.905000px;}
.y117{bottom:709.410000px;}
.y60{bottom:714.810000px;}
.yc0{bottom:727.065000px;}
.yec{bottom:729.585000px;}
.y116{bottom:732.810000px;}
.y5f{bottom:734.970000px;}
.ybf{bottom:749.385000px;}
.yeb{bottom:751.905000px;}
.y115{bottom:752.970000px;}
.y5e{bottom:764.130000px;}
.ybc{bottom:772.065000px;}
.y114{bottom:773.130000px;}
.yea{bottom:774.225000px;}
.y91{bottom:784.665000px;}
.y5d{bottom:786.810000px;}
.y113{bottom:792.930000px;}
.ye8{bottom:796.905000px;}
.y8e{bottom:811.335000px;}
.y112{bottom:813.135000px;}
.y5c{bottom:819.255000px;}
.ye4{bottom:819.270000px;}
.y8d{bottom:831.495000px;}
.y111{bottom:833.295000px;}
.y5b{bottom:839.415000px;}
.ybb{bottom:841.935000px;}
.y8c{bottom:851.655000px;}
.y110{bottom:853.455000px;}
.y5a{bottom:862.095000px;}
.y8b{bottom:871.815000px;}
.y10f{bottom:873.615000px;}
.yba{bottom:882.255000px;}
.ye6{bottom:885.150000px;}
.y59{bottom:888.375000px;}
.y10e{bottom:893.775000px;}
.yb9{bottom:902.415000px;}
.y8a{bottom:903.495000px;}
.y58{bottom:911.775000px;}
.y10d{bottom:913.575000px;}
.y89{bottom:929.775000px;}
.yb8{bottom:931.575000px;}
.y57{bottom:931.935000px;}
.y10c{bottom:933.765000px;}
.yd{bottom:951.045000px;}
.yb7{bottom:951.405000px;}
.y56{bottom:951.765000px;}
.y88{bottom:953.205000px;}
.y10b{bottom:953.925000px;}
.yc{bottom:956.445000px;}
.ye3{bottom:971.925000px;}
.y87{bottom:973.365000px;}
.yb6{bottom:974.445000px;}
.yb{bottom:976.605000px;}
.y10a{bottom:976.965000px;}
.y55{bottom:980.925000px;}
.ye2{bottom:992.085000px;}
.y86{bottom:996.045000px;}
.yb5{bottom:997.845000px;}
.y54{bottom:1001.085000px;}
.ya{bottom:1002.885000px;}
.yb4{bottom:1014.405000px;}
.y85{bottom:1019.445000px;}
.ye1{bottom:1021.245000px;}
.y53{bottom:1024.125000px;}
.y109{bottom:1029.165000px;}
.y9{bottom:1032.405000px;}
.y84{bottom:1036.005000px;}
.yb3{bottom:1036.725000px;}
.ye0{bottom:1041.405000px;}
.y52{bottom:1047.525000px;}
.y108{bottom:1055.085000px;}
.y83{bottom:1058.685000px;}
.yb1{bottom:1059.405000px;}
.ydf{bottom:1064.085000px;}
.y51{bottom:1067.370000px;}
.y8{bottom:1072.050000px;}
.y4e{bottom:1075.320000px;}
.y82{bottom:1081.050000px;}
.y50{bottom:1087.530000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h14{height:5.650313px;}
.h1b{height:21.585000px;}
.h2c{height:21.586500px;}
.h26{height:21.595500px;}
.h19{height:21.600000px;}
.h23{height:21.621000px;}
.h21{height:21.630000px;}
.h2d{height:21.631500px;}
.h25{height:21.636000px;}
.h1c{height:21.945000px;}
.h20{height:21.955500px;}
.h18{height:21.960000px;}
.h1a{height:21.990000px;}
.h29{height:21.991500px;}
.h15{height:27.720000px;}
.h12{height:29.678906px;}
.h11{height:35.332031px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h1d{height:43.230000px;}
.h1f{height:43.231500px;}
.h1e{height:43.545000px;}
.h17{height:44.280000px;}
.h2f{height:51.064455px;}
.hf{height:53.677969px;}
.h13{height:55.147500px;}
.h7{height:57.290625px;}
.h6{height:59.357813px;}
.ha{height:60.952500px;}
.he{height:61.143509px;}
.h2e{height:62.163910px;}
.h16{height:63.565031px;}
.h9{height:64.112344px;}
.h27{height:64.821000px;}
.h5{height:65.010937px;}
.h2b{height:65.145000px;}
.h3{height:65.884219px;}
.h28{height:65.910000px;}
.h24{height:77.385000px;}
.h2{height:84.990000px;}
.h2a{height:87.465000px;}
.h8{height:88.536094px;}
.h22{height:99.741000px;}
.h4{height:116.640000px;}
.h10{height:201.645000px;}
.hb{height:624.405000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2c{width:68.781000px;}
.w14{width:73.440000px;}
.w16{width:73.461000px;}
.w13{width:73.470000px;}
.w2a{width:74.550000px;}
.w2d{width:75.270000px;}
.w1f{width:76.350000px;}
.wd{width:80.302500px;}
.w15{width:80.316000px;}
.w20{width:81.750000px;}
.w23{width:82.080000px;}
.w21{width:82.476000px;}
.w1e{width:84.240000px;}
.w24{width:84.270000px;}
.w2b{width:84.276000px;}
.w12{width:85.320000px;}
.w1a{width:85.680000px;}
.w1b{width:85.716000px;}
.w1c{width:86.061000px;}
.w19{width:86.070000px;}
.w10{width:86.760000px;}
.w11{width:87.150000px;}
.w2e{width:88.222500px;}
.w1d{width:88.582500px;}
.w29{width:93.270000px;}
.w34{width:93.621000px;}
.w36{width:93.630000px;}
.w33{width:94.716000px;}
.w18{width:99.045000px;}
.w22{width:99.381000px;}
.w35{width:100.440000px;}
.w37{width:102.960000px;}
.w2{width:103.702500px;}
.w9{width:107.310000px;}
.wc{width:114.120000px;}
.w31{width:120.600000px;}
.wb{width:120.672000px;}
.wa{width:120.990000px;}
.w32{width:126.072000px;}
.w4{width:132.502500px;}
.w7{width:134.325000px;}
.w39{width:144.756000px;}
.w3a{width:149.805000px;}
.w17{width:152.656500px;}
.w27{width:153.795000px;}
.w38{width:155.235000px;}
.w28{width:160.245000px;}
.w25{width:162.405000px;}
.w6{width:163.080000px;}
.w26{width:168.555000px;}
.w2f{width:189.075000px;}
.w30{width:194.805000px;}
.wf{width:228.675000px;}
.we{width:247.410000px;}
.w8{width:573.330000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.265000px;}
.x43{left:9.390000px;}
.x45{left:11.910000px;}
.x4{left:13.305000px;}
.x51{left:14.760000px;}
.x50{left:15.825000px;}
.x14{left:16.906500px;}
.x19{left:18.346500px;}
.x15{left:19.426500px;}
.x23{left:20.520000px;}
.x29{left:21.960000px;}
.x5a{left:23.040000px;}
.x2b{left:24.105000px;}
.x27{left:25.905000px;}
.x2a{left:27.360000px;}
.x6{left:28.785000px;}
.x2d{left:30.945000px;}
.x2f{left:32.400000px;}
.x2c{left:34.200000px;}
.x2e{left:35.985000px;}
.x63{left:37.065000px;}
.x48{left:38.160000px;}
.x30{left:39.240000px;}
.x68{left:41.040000px;}
.x31{left:42.825000px;}
.xf{left:43.906500px;}
.x55{left:45.750000px;}
.x1a{left:47.542500px;}
.x32{left:48.960000px;}
.x10{left:50.782500px;}
.x33{left:52.185000px;}
.x13{left:53.302500px;}
.xe{left:55.102500px;}
.x1c{left:57.262500px;}
.x5e{left:59.040000px;}
.x3e{left:60.529500px;}
.x17{left:62.295000px;}
.x60{left:63.375000px;}
.x1b{left:66.265500px;}
.x5c{left:70.215000px;}
.x12{left:75.985500px;}
.x1{left:78.529500px;}
.x34{left:79.969500px;}
.x7{left:86.436000px;}
.x20{left:92.569500px;}
.x36{left:94.335000px;}
.x2{left:95.425500px;}
.x1d{left:102.985500px;}
.x49{left:104.089500px;}
.x18{left:106.945500px;}
.x1e{left:121.020000px;}
.x52{left:123.169500px;}
.x11{left:124.585500px;}
.xb{left:139.032000px;}
.x35{left:161.010000px;}
.x65{left:169.290000px;}
.x5b{left:174.690000px;}
.x3{left:182.250000px;}
.x4a{left:193.410000px;}
.x3f{left:213.930000px;}
.x16{left:218.970000px;}
.x21{left:227.625000px;}
.x3a{left:247.065000px;}
.x66{left:272.985000px;}
.x22{left:277.665000px;}
.x53{left:286.305000px;}
.x61{left:296.025000px;}
.x40{left:313.710000px;}
.x3b{left:321.270000px;}
.x24{left:335.670000px;}
.x1f{left:345.360000px;}
.x4b{left:355.830000px;}
.x57{left:380.310000px;}
.x41{left:400.500000px;}
.x37{left:409.140000px;}
.x5d{left:422.820000px;}
.x67{left:428.940000px;}
.x4c{left:438.300000px;}
.x54{left:455.580000px;}
.x25{left:457.380000px;}
.x3c{left:483.300000px;}
.x42{left:487.260000px;}
.x62{left:518.265000px;}
.x4d{left:521.865000px;}
.x58{left:540.585000px;}
.x3d{left:564.345000px;}
.x44{left:573.705000px;}
.x26{left:578.790000px;}
.xc{left:605.415000px;}
.x56{left:610.110000px;}
.x5f{left:612.630000px;}
.x4e{left:622.350000px;}
.x38{left:638.910000px;}
.x46{left:660.510000px;}
.x28{left:693.645000px;}
.x59{left:695.085000px;}
.x4f{left:705.165000px;}
.x64{left:713.805000px;}
.xa{left:719.925000px;}
.x39{left:726.405000px;}
.x47{left:746.925000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls33{letter-spacing:-1.712000pt;}
.ls30{letter-spacing:-1.450667pt;}
.ls2b{letter-spacing:-1.104000pt;}
.ls2c{letter-spacing:-1.072000pt;}
.ls1d{letter-spacing:-0.864000pt;}
.ls19{letter-spacing:-0.758939pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.624000pt;}
.ls1f{letter-spacing:-0.560000pt;}
.ls13{letter-spacing:-0.509333pt;}
.ls3a{letter-spacing:-0.450667pt;}
.ls2f{letter-spacing:-0.432533pt;}
.ls1a{letter-spacing:-0.310322pt;}
.ls20{letter-spacing:-0.208006pt;}
.ls1b{letter-spacing:-0.194513pt;}
.ls22{letter-spacing:-0.164718pt;}
.ls1c{letter-spacing:-0.102316pt;}
.ls14{letter-spacing:-0.079467pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls2d{letter-spacing:-0.017920pt;}
.lse{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.017920pt;}
.ls31{letter-spacing:0.028587pt;}
.ls32{letter-spacing:0.122667pt;}
.ls38{letter-spacing:0.133333pt;}
.ls25{letter-spacing:0.145920pt;}
.ls27{letter-spacing:0.161280pt;}
.ls2{letter-spacing:0.174080pt;}
.ls35{letter-spacing:0.177920pt;}
.ls28{letter-spacing:0.207360pt;}
.ls24{letter-spacing:0.207467pt;}
.ls29{letter-spacing:0.314027pt;}
.ls17{letter-spacing:0.340117pt;}
.ls1{letter-spacing:0.414720pt;}
.ls10{letter-spacing:0.414933pt;}
.ls39{letter-spacing:0.432533pt;}
.ls12{letter-spacing:0.549333pt;}
.ls2a{letter-spacing:0.565333pt;}
.lsa{letter-spacing:0.588262pt;}
.ls18{letter-spacing:0.590286pt;}
.ls3{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.656000pt;}
.lsb{letter-spacing:0.756915pt;}
.ls4{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.121280pt;}
.ls16{letter-spacing:1.200000pt;}
.ls23{letter-spacing:1.694720pt;}
.ls9{letter-spacing:1.937487pt;}
.ls21{letter-spacing:1.939511pt;}
.lsd{letter-spacing:2.106140pt;}
.ls34{letter-spacing:2.974720pt;}
.ls5{letter-spacing:3.286712pt;}
.ls6{letter-spacing:4.635937pt;}
.ls2e{letter-spacing:6.814720pt;}
.ls26{letter-spacing:8.094720pt;}
.ls8{letter-spacing:10.032837pt;}
.ls7{letter-spacing:11.382062pt;}
.ls36{letter-spacing:36.254720pt;}
.ls37{letter-spacing:41.374720pt;}
.ws18{word-spacing:-53.760000pt;}
.ws9{word-spacing:-16.355305pt;}
.wsf{word-spacing:-15.510613pt;}
.wsb{word-spacing:-15.494613pt;}
.ws16{word-spacing:-15.377813pt;}
.ws10{word-spacing:-15.152747pt;}
.ws11{word-spacing:-15.106560pt;}
.ws15{word-spacing:-15.078613pt;}
.ws14{word-spacing:-15.067947pt;}
.ws1{word-spacing:-14.945280pt;}
.ws0{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.494613pt;}
.wsa{word-spacing:-14.435947pt;}
.ws8{word-spacing:-14.253213pt;}
.ws12{word-spacing:-13.873280pt;}
.ws13{word-spacing:-13.494613pt;}
.ws2{word-spacing:-13.440000pt;}
.ws7{word-spacing:-12.160000pt;}
.wsd{word-spacing:-11.600000pt;}
.ws6{word-spacing:-10.480000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsc{word-spacing:-7.936000pt;}
.wse{word-spacing:0.000000pt;}
._7{margin-left:-8.332800pt;}
._9{margin-left:-7.369552pt;}
._14{margin-left:-3.601920pt;}
._4{margin-left:-1.884160pt;}
._5{margin-left:-0.945493pt;}
._1{width:1.090987pt;}
._0{width:2.073600pt;}
._6{width:2.990933pt;}
._c{width:4.481701pt;}
._12{width:5.796508pt;}
._a{width:6.716442pt;}
._8{width:7.633920pt;}
._d{width:8.770705pt;}
._b{width:10.017586pt;}
._11{width:10.911907pt;}
._10{width:12.339200pt;}
._13{width:13.736960pt;}
._f{width:16.633173pt;}
._e{width:17.942613pt;}
._2{width:105.706667pt;}
._3{width:340.000000pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs7{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fsc{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fsb{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.236000pt;}
.y4d{bottom:3.196000pt;}
.y5{bottom:3.840000pt;}
.y77{bottom:4.786667pt;}
.y105{bottom:4.790667pt;}
.y7f{bottom:4.796000pt;}
.y69{bottom:4.800000pt;}
.ye9{bottom:4.826667pt;}
.yb2{bottom:4.840000pt;}
.y79{bottom:5.106667pt;}
.y81{bottom:5.116000pt;}
.y68{bottom:5.120000pt;}
.yd6{bottom:5.133333pt;}
.y4f{bottom:6.373333pt;}
.y2{bottom:8.960000pt;}
.y40{bottom:9.276000pt;}
.y96{bottom:15.986667pt;}
.y4c{bottom:19.868000pt;}
.y4{bottom:20.800000pt;}
.y37{bottom:21.760000pt;}
.ybe{bottom:23.986667pt;}
.yaf{bottom:24.028000pt;}
.y7e{bottom:24.030667pt;}
.y70{bottom:24.040000pt;}
.y74{bottom:24.320000pt;}
.y66{bottom:24.960000pt;}
.y95{bottom:35.186667pt;}
.y3f{bottom:35.550667pt;}
.y93{bottom:35.826667pt;}
.y36{bottom:39.360000pt;}
.y4b{bottom:39.390667pt;}
.y3{bottom:42.560000pt;}
.ybd{bottom:43.226667pt;}
.ye7{bottom:43.506667pt;}
.ycf{bottom:44.200000pt;}
.y3e{bottom:46.110667pt;}
.y7{bottom:51.232000pt;}
.y94{bottom:54.386667pt;}
.y92{bottom:55.026667pt;}
.y4a{bottom:56.670667pt;}
.y35{bottom:57.280000pt;}
.y3d{bottom:57.950667pt;}
.ye5{bottom:63.346667pt;}
.y3c{bottom:69.470667pt;}
.y90{bottom:74.226667pt;}
.y49{bottom:77.470667pt;}
.yde{bottom:79.076000pt;}
.y34{bottom:83.240000pt;}
.yb0{bottom:86.756000pt;}
.y3b{bottom:88.670667pt;}
.y107{bottom:88.996000pt;}
.y48{bottom:93.150667pt;}
.y80{bottom:95.076000pt;}
.y47{bottom:98.590667pt;}
.ydd{bottom:98.916000pt;}
.y33{bottom:103.720000pt;}
.yae{bottom:106.596000pt;}
.y38{bottom:107.876000pt;}
.y106{bottom:109.156000pt;}
.y46{bottom:112.670667pt;}
.y7d{bottom:115.236000pt;}
.ydc{bottom:118.756000pt;}
.y32{bottom:124.520000pt;}
.y45{bottom:126.750667pt;}
.y104{bottom:129.036000pt;}
.ydb{bottom:138.960000pt;}
.y44{bottom:140.537333pt;}
.y3a{bottom:144.057333pt;}
.y31{bottom:144.680000pt;}
.yad{bottom:145.680000pt;}
.y103{bottom:148.880000pt;}
.y39{bottom:153.657333pt;}
.y43{bottom:154.297333pt;}
.y7c{bottom:154.320000pt;}
.yda{bottom:158.800000pt;}
.y12e{bottom:159.426667pt;}
.yac{bottom:165.840000pt;}
.y42{bottom:167.737333pt;}
.y30{bottom:168.040000pt;}
.y102{bottom:169.040000pt;}
.y7b{bottom:174.480000pt;}
.y12d{bottom:176.386667pt;}
.yd9{bottom:178.640000pt;}
.yab{bottom:185.680000pt;}
.y101{bottom:188.880000pt;}
.y2f{bottom:191.106667pt;}
.y7a{bottom:194.320000pt;}
.yd8{bottom:198.800000pt;}
.y12c{bottom:199.426667pt;}
.yaa{bottom:205.520000pt;}
.y100{bottom:208.720000pt;}
.y2e{bottom:211.906667pt;}
.y78{bottom:214.160000pt;}
.yd7{bottom:218.640000pt;}
.y12b{bottom:222.786667pt;}
.ya9{bottom:225.680000pt;}
.yff{bottom:228.880000pt;}
.y2d{bottom:232.386667pt;}
.y76{bottom:234.320000pt;}
.yd5{bottom:238.480000pt;}
.ya8{bottom:245.533333pt;}
.y1d{bottom:246.146667pt;}
.y12a{bottom:246.173333pt;}
.yfe{bottom:248.733333pt;}
.y2c{bottom:253.186667pt;}
.y75{bottom:254.173333pt;}
.yd4{bottom:258.653333pt;}
.ya7{bottom:265.373333pt;}
.y129{bottom:266.333333pt;}
.y1c{bottom:267.586667pt;}
.yfd{bottom:268.573333pt;}
.y2b{bottom:273.346667pt;}
.y73{bottom:274.013333pt;}
.yd3{bottom:278.493333pt;}
.ya6{bottom:285.533333pt;}
.ye{bottom:287.773333pt;}
.yfc{bottom:288.413333pt;}
.y1b{bottom:289.026667pt;}
.y128{bottom:289.053333pt;}
.y2a{bottom:294.146667pt;}
.yd2{bottom:298.333333pt;}
.ya5{bottom:309.213333pt;}
.y127{bottom:309.533333pt;}
.y1a{bottom:310.493333pt;}
.y29{bottom:312.093333pt;}
.yfb{bottom:312.413333pt;}
.y72{bottom:313.373333pt;}
.yd1{bottom:318.493333pt;}
.y126{bottom:324.893333pt;}
.ya4{bottom:327.133333pt;}
.y28{bottom:330.013333pt;}
.y19{bottom:331.933333pt;}
.y71{bottom:333.213333pt;}
.yce{bottom:338.333333pt;}
.y125{bottom:342.813333pt;}
.y27{bottom:347.613333pt;}
.yfa{bottom:347.933333pt;}
.ya3{bottom:353.053333pt;}
.y18{bottom:353.373333pt;}
.y26{bottom:365.533333pt;}
.yf9{bottom:365.893333pt;}
.y124{bottom:366.213333pt;}
.ya2{bottom:370.693333pt;}
.y17{bottom:374.813333pt;}
.yd0{bottom:377.733333pt;}
.y25{bottom:385.693333pt;}
.y123{bottom:389.573333pt;}
.yf8{bottom:391.813333pt;}
.y6f{bottom:392.453333pt;}
.y16{bottom:396.253333pt;}
.ya1{bottom:396.613333pt;}
.ycd{bottom:401.413333pt;}
.y24{bottom:406.493333pt;}
.y122{bottom:410.053333pt;}
.y6e{bottom:412.293333pt;}
.ya0{bottom:414.533333pt;}
.y15{bottom:417.693333pt;}
.ycc{bottom:419.333333pt;}
.y23{bottom:427.333333pt;}
.y6d{bottom:432.453333pt;}
.yf7{bottom:432.773333pt;}
.y121{bottom:435.973333pt;}
.ycb{bottom:436.933333pt;}
.y14{bottom:439.493333pt;}
.y22{bottom:448.453333pt;}
.y6c{bottom:452.293333pt;}
.y9f{bottom:452.933333pt;}
.yf6{bottom:453.253333pt;}
.y120{bottom:453.893333pt;}
.yca{bottom:454.853333pt;}
.y13{bottom:460.933333pt;}
.y21{bottom:469.253333pt;}
.y11f{bottom:471.813333pt;}
.y6b{bottom:472.133333pt;}
.yc9{bottom:472.773333pt;}
.y9e{bottom:473.413333pt;}
.yf5{bottom:474.053333pt;}
.y12{bottom:482.373333pt;}
.y9d{bottom:488.160000pt;}
.yf4{bottom:488.800000pt;}
.y11e{bottom:489.760000pt;}
.y20{bottom:490.053333pt;}
.yc8{bottom:490.720000pt;}
.y6a{bottom:492.320000pt;}
.y11{bottom:503.813333pt;}
.y11d{bottom:507.680000pt;}
.y9c{bottom:508.320000pt;}
.yf3{bottom:508.640000pt;}
.yc7{bottom:510.880000pt;}
.y1f{bottom:511.173333pt;}
.y65{bottom:512.160000pt;}
.y10{bottom:525.253333pt;}
.y11c{bottom:525.280000pt;}
.y9b{bottom:528.160000pt;}
.yf2{bottom:528.800000pt;}
.yc6{bottom:531.680000pt;}
.y1e{bottom:531.973333pt;}
.y67{bottom:532.000000pt;}
.y11b{bottom:543.200000pt;}
.yc5{bottom:546.400000pt;}
.yf{bottom:546.720000pt;}
.y9a{bottom:548.000000pt;}
.yf1{bottom:548.640000pt;}
.y64{bottom:556.000000pt;}
.y11a{bottom:561.120000pt;}
.yc4{bottom:566.560000pt;}
.y99{bottom:568.160000pt;}
.yf0{bottom:568.480000pt;}
.y63{bottom:573.600000pt;}
.y119{bottom:579.040000pt;}
.yc3{bottom:586.400000pt;}
.y98{bottom:588.000000pt;}
.yef{bottom:588.640000pt;}
.y62{bottom:591.520000pt;}
.yc2{bottom:606.280000pt;}
.y118{bottom:607.226667pt;}
.y97{bottom:607.880000pt;}
.yee{bottom:608.520000pt;}
.y61{bottom:609.466667pt;}
.yc1{bottom:626.440000pt;}
.y8f{bottom:628.040000pt;}
.yed{bottom:628.360000pt;}
.y117{bottom:630.586667pt;}
.y60{bottom:635.386667pt;}
.yc0{bottom:646.280000pt;}
.yec{bottom:648.520000pt;}
.y116{bottom:651.386667pt;}
.y5f{bottom:653.306667pt;}
.ybf{bottom:666.120000pt;}
.yeb{bottom:668.360000pt;}
.y115{bottom:669.306667pt;}
.y5e{bottom:679.226667pt;}
.ybc{bottom:686.280000pt;}
.y114{bottom:687.226667pt;}
.yea{bottom:688.200000pt;}
.y91{bottom:697.480000pt;}
.y5d{bottom:699.386667pt;}
.y113{bottom:704.826667pt;}
.ye8{bottom:708.360000pt;}
.y8e{bottom:721.186667pt;}
.y112{bottom:722.786667pt;}
.y5c{bottom:728.226667pt;}
.ye4{bottom:728.240000pt;}
.y8d{bottom:739.106667pt;}
.y111{bottom:740.706667pt;}
.y5b{bottom:746.146667pt;}
.ybb{bottom:748.386667pt;}
.y8c{bottom:757.026667pt;}
.y110{bottom:758.626667pt;}
.y5a{bottom:766.306667pt;}
.y8b{bottom:774.946667pt;}
.y10f{bottom:776.546667pt;}
.yba{bottom:784.226667pt;}
.ye6{bottom:786.800000pt;}
.y59{bottom:789.666667pt;}
.y10e{bottom:794.466667pt;}
.yb9{bottom:802.146667pt;}
.y8a{bottom:803.106667pt;}
.y58{bottom:810.466667pt;}
.y10d{bottom:812.066667pt;}
.y89{bottom:826.466667pt;}
.yb8{bottom:828.066667pt;}
.y57{bottom:828.386667pt;}
.y10c{bottom:830.013333pt;}
.yd{bottom:845.373333pt;}
.yb7{bottom:845.693333pt;}
.y56{bottom:846.013333pt;}
.y88{bottom:847.293333pt;}
.y10b{bottom:847.933333pt;}
.yc{bottom:850.173333pt;}
.ye3{bottom:863.933333pt;}
.y87{bottom:865.213333pt;}
.yb6{bottom:866.173333pt;}
.yb{bottom:868.093333pt;}
.y10a{bottom:868.413333pt;}
.y55{bottom:871.933333pt;}
.ye2{bottom:881.853333pt;}
.y86{bottom:885.373333pt;}
.yb5{bottom:886.973333pt;}
.y54{bottom:889.853333pt;}
.ya{bottom:891.453333pt;}
.yb4{bottom:901.693333pt;}
.y85{bottom:906.173333pt;}
.ye1{bottom:907.773333pt;}
.y53{bottom:910.333333pt;}
.y109{bottom:914.813333pt;}
.y9{bottom:917.693333pt;}
.y84{bottom:920.893333pt;}
.yb3{bottom:921.533333pt;}
.ye0{bottom:925.693333pt;}
.y52{bottom:931.133333pt;}
.y108{bottom:937.853333pt;}
.y83{bottom:941.053333pt;}
.yb1{bottom:941.693333pt;}
.ydf{bottom:945.853333pt;}
.y51{bottom:948.773333pt;}
.y8{bottom:952.933333pt;}
.y4e{bottom:955.840000pt;}
.y82{bottom:960.933333pt;}
.y50{bottom:966.693333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h14{height:5.022500pt;}
.h1b{height:19.186667pt;}
.h2c{height:19.188000pt;}
.h26{height:19.196000pt;}
.h19{height:19.200000pt;}
.h23{height:19.218667pt;}
.h21{height:19.226667pt;}
.h2d{height:19.228000pt;}
.h25{height:19.232000pt;}
.h1c{height:19.506667pt;}
.h20{height:19.516000pt;}
.h18{height:19.520000pt;}
.h1a{height:19.546667pt;}
.h29{height:19.548000pt;}
.h15{height:24.640000pt;}
.h12{height:26.381250pt;}
.h11{height:31.406250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h1d{height:38.426667pt;}
.h1f{height:38.428000pt;}
.h1e{height:38.706667pt;}
.h17{height:39.360000pt;}
.h2f{height:45.390627pt;}
.hf{height:47.713750pt;}
.h13{height:49.020000pt;}
.h7{height:50.925000pt;}
.h6{height:52.762500pt;}
.ha{height:54.180000pt;}
.he{height:54.349786pt;}
.h2e{height:55.256809pt;}
.h16{height:56.502250pt;}
.h9{height:56.988750pt;}
.h27{height:57.618667pt;}
.h5{height:57.787500pt;}
.h2b{height:57.906667pt;}
.h3{height:58.563750pt;}
.h28{height:58.586667pt;}
.h24{height:68.786667pt;}
.h2{height:75.546667pt;}
.h2a{height:77.746667pt;}
.h8{height:78.698750pt;}
.h22{height:88.658667pt;}
.h4{height:103.680000pt;}
.h10{height:179.240000pt;}
.hb{height:555.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2c{width:61.138667pt;}
.w14{width:65.280000pt;}
.w16{width:65.298667pt;}
.w13{width:65.306667pt;}
.w2a{width:66.266667pt;}
.w2d{width:66.906667pt;}
.w1f{width:67.866667pt;}
.wd{width:71.380000pt;}
.w15{width:71.392000pt;}
.w20{width:72.666667pt;}
.w23{width:72.960000pt;}
.w21{width:73.312000pt;}
.w1e{width:74.880000pt;}
.w24{width:74.906667pt;}
.w2b{width:74.912000pt;}
.w12{width:75.840000pt;}
.w1a{width:76.160000pt;}
.w1b{width:76.192000pt;}
.w1c{width:76.498667pt;}
.w19{width:76.506667pt;}
.w10{width:77.120000pt;}
.w11{width:77.466667pt;}
.w2e{width:78.420000pt;}
.w1d{width:78.740000pt;}
.w29{width:82.906667pt;}
.w34{width:83.218667pt;}
.w36{width:83.226667pt;}
.w33{width:84.192000pt;}
.w18{width:88.040000pt;}
.w22{width:88.338667pt;}
.w35{width:89.280000pt;}
.w37{width:91.520000pt;}
.w2{width:92.180000pt;}
.w9{width:95.386667pt;}
.wc{width:101.440000pt;}
.w31{width:107.200000pt;}
.wb{width:107.264000pt;}
.wa{width:107.546667pt;}
.w32{width:112.064000pt;}
.w4{width:117.780000pt;}
.w7{width:119.400000pt;}
.w39{width:128.672000pt;}
.w3a{width:133.160000pt;}
.w17{width:135.694667pt;}
.w27{width:136.706667pt;}
.w38{width:137.986667pt;}
.w28{width:142.440000pt;}
.w25{width:144.360000pt;}
.w6{width:144.960000pt;}
.w26{width:149.826667pt;}
.w2f{width:168.066667pt;}
.w30{width:173.160000pt;}
.wf{width:203.266667pt;}
.we{width:219.920000pt;}
.w8{width:509.626667pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.346667pt;}
.x43{left:8.346667pt;}
.x45{left:10.586667pt;}
.x4{left:11.826667pt;}
.x51{left:13.120000pt;}
.x50{left:14.066667pt;}
.x14{left:15.028000pt;}
.x19{left:16.308000pt;}
.x15{left:17.268000pt;}
.x23{left:18.240000pt;}
.x29{left:19.520000pt;}
.x5a{left:20.480000pt;}
.x2b{left:21.426667pt;}
.x27{left:23.026667pt;}
.x2a{left:24.320000pt;}
.x6{left:25.586667pt;}
.x2d{left:27.506667pt;}
.x2f{left:28.800000pt;}
.x2c{left:30.400000pt;}
.x2e{left:31.986667pt;}
.x63{left:32.946667pt;}
.x48{left:33.920000pt;}
.x30{left:34.880000pt;}
.x68{left:36.480000pt;}
.x31{left:38.066667pt;}
.xf{left:39.028000pt;}
.x55{left:40.666667pt;}
.x1a{left:42.260000pt;}
.x32{left:43.520000pt;}
.x10{left:45.140000pt;}
.x33{left:46.386667pt;}
.x13{left:47.380000pt;}
.xe{left:48.980000pt;}
.x1c{left:50.900000pt;}
.x5e{left:52.480000pt;}
.x3e{left:53.804000pt;}
.x17{left:55.373333pt;}
.x60{left:56.333333pt;}
.x1b{left:58.902667pt;}
.x5c{left:62.413333pt;}
.x12{left:67.542667pt;}
.x1{left:69.804000pt;}
.x34{left:71.084000pt;}
.x7{left:76.832000pt;}
.x20{left:82.284000pt;}
.x36{left:83.853333pt;}
.x2{left:84.822667pt;}
.x1d{left:91.542667pt;}
.x49{left:92.524000pt;}
.x18{left:95.062667pt;}
.x1e{left:107.573333pt;}
.x52{left:109.484000pt;}
.x11{left:110.742667pt;}
.xb{left:123.584000pt;}
.x35{left:143.120000pt;}
.x65{left:150.480000pt;}
.x5b{left:155.280000pt;}
.x3{left:162.000000pt;}
.x4a{left:171.920000pt;}
.x3f{left:190.160000pt;}
.x16{left:194.640000pt;}
.x21{left:202.333333pt;}
.x3a{left:219.613333pt;}
.x66{left:242.653333pt;}
.x22{left:246.813333pt;}
.x53{left:254.493333pt;}
.x61{left:263.133333pt;}
.x40{left:278.853333pt;}
.x3b{left:285.573333pt;}
.x24{left:298.373333pt;}
.x1f{left:306.986667pt;}
.x4b{left:316.293333pt;}
.x57{left:338.053333pt;}
.x41{left:356.000000pt;}
.x37{left:363.680000pt;}
.x5d{left:375.840000pt;}
.x67{left:381.280000pt;}
.x4c{left:389.600000pt;}
.x54{left:404.960000pt;}
.x25{left:406.560000pt;}
.x3c{left:429.600000pt;}
.x42{left:433.120000pt;}
.x62{left:460.680000pt;}
.x4d{left:463.880000pt;}
.x58{left:480.520000pt;}
.x3d{left:501.640000pt;}
.x44{left:509.960000pt;}
.x26{left:514.480000pt;}
.xc{left:538.146667pt;}
.x56{left:542.320000pt;}
.x5f{left:544.560000pt;}
.x4e{left:553.200000pt;}
.x38{left:567.920000pt;}
.x46{left:587.120000pt;}
.x28{left:616.573333pt;}
.x59{left:617.853333pt;}
.x4f{left:626.813333pt;}
.x64{left:634.493333pt;}
.xa{left:639.933333pt;}
.x39{left:645.693333pt;}
.x47{left:663.933333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{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; }
  