
    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_cb831bfc45030f6d94299355.woff')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_d9a235825d1a07d3021ee8e2.woff')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_b8c67a50f0dba5e86b7a6318.woff')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_e4e5afc24fc96e9b18fb80c8.woff')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_5440c1147a98daf15fef8a01.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_abdd9c6a6eebf09a9f1a8ab3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_82aa7add26d3e72a4a28ac5b.woff')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_70127a1f7f7b6fddc414d597.woff')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_26b63bf8fff50a76c00f583b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5432c6769fe0c89d1b5a5705.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_08db87e29f50672bd2b47cb2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_ea99bde2249ffdfc037b025a.woff')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_799025cc689f27d9c11f6763.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914062;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_bba4eb393199c9a09927862d.woff')format("woff");}.fff{font-family:fff;line-height:1.435059;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;}
.m2{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-72.000000px;}
.v7{vertical-align:-69.120000px;}
.v5{vertical-align:-64.800000px;}
.v4{vertical-align:-50.400000px;}
.v3{vertical-align:-25.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.v2{vertical-align:25.920000px;}
.ls22{letter-spacing:-2.880000px;}
.ls1f{letter-spacing:-1.926000px;}
.ls16{letter-spacing:-1.908000px;}
.ls20{letter-spacing:-1.458000px;}
.lsa{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-1.422000px;}
.ls19{letter-spacing:-1.266000px;}
.ls15{letter-spacing:-0.972000px;}
.ls17{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.630000px;}
.ls1e{letter-spacing:-0.486600px;}
.ls14{letter-spacing:-0.466800px;}
.ls18{letter-spacing:-0.345600px;}
.ls1b{letter-spacing:-0.172800px;}
.lsb{letter-spacing:-0.089400px;}
.lsf{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.020160px;}
.ls1a{letter-spacing:0.172800px;}
.ls4{letter-spacing:0.466800px;}
.ls21{letter-spacing:0.486600px;}
.lse{letter-spacing:0.507000px;}
.ls13{letter-spacing:0.610560px;}
.lsd{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.032000px;}
.ls1{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.686000px;}
.ls23{letter-spacing:1.908000px;}
.ls1d{letter-spacing:5.040000px;}
.ls3{letter-spacing:7.920000px;}
.ls11{letter-spacing:13.680000px;}
.ls1c{letter-spacing:16.306560px;}
.ls2{letter-spacing:46.546560px;}
.ls12{letter-spacing:92.880000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-36.936000px;}
.ws1{word-spacing:-26.825520px;}
.ws2{word-spacing:-26.171520px;}
.ws21{word-spacing:-17.028000px;}
.ws0{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.627000px;}
.ws1f{word-spacing:-15.606600px;}
.wsa{word-spacing:-15.586800px;}
.ws15{word-spacing:-15.140160px;}
.ws6{word-spacing:-15.120000px;}
.ws11{word-spacing:-14.653200px;}
.ws1c{word-spacing:-14.633400px;}
.ws18{word-spacing:-14.572800px;}
.ws19{word-spacing:-14.400000px;}
.ws9{word-spacing:-14.310000px;}
.ws1a{word-spacing:-14.227200px;}
.ws14{word-spacing:-14.184000px;}
.ws12{word-spacing:-14.148000px;}
.ws16{word-spacing:-14.054400px;}
.ws4{word-spacing:-13.698000px;}
.ws5{word-spacing:-13.680000px;}
.ws1e{word-spacing:-13.662000px;}
.ws13{word-spacing:-13.212000px;}
.ws1d{word-spacing:-13.194000px;}
.ws17{word-spacing:-13.134000px;}
.wse{word-spacing:-13.050000px;}
.ws1b{word-spacing:-12.960000px;}
.ws20{word-spacing:-12.240000px;}
.ws7{word-spacing:-11.160000px;}
.ws8{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.000000px;}
.wsc{word-spacing:-8.928000px;}
.ws10{word-spacing:0.000000px;}
._21{margin-left:-7.099680px;}
._1b{margin-left:-5.577120px;}
._7{margin-left:-4.530240px;}
._8{margin-left:-3.208320px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._d{width:4.963200px;}
._c{width:6.158400px;}
._a{width:7.237440px;}
._b{width:8.631840px;}
._f{width:10.085280px;}
._13{width:11.816640px;}
._16{width:13.155840px;}
._11{width:15.796800px;}
._12{width:16.954560px;}
._10{width:18.034560px;}
._15{width:19.059360px;}
._9{width:20.168640px;}
._e{width:22.106880px;}
._19{width:23.112000px;}
._18{width:25.018560px;}
._17{width:26.922240px;}
._14{width:28.287360px;}
._1a{width:31.068960px;}
._1c{width:34.427040px;}
._22{width:40.198560px;}
._6{width:69.989760px;}
._1e{width:78.067680px;}
._20{width:98.810880px;}
._1f{width:137.027040px;}
._1d{width:160.144800px;}
._5{width:980.525760px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fsc{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fsb{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.ycd{bottom:-11.940000px;}
.yad{bottom:-11.895000px;}
.yb4{bottom:-11.884500px;}
.ybf{bottom:-11.880000px;}
.y0{bottom:0.000000px;}
.ye3{bottom:3.585000px;}
.y73{bottom:3.600000px;}
.ye6{bottom:3.945000px;}
.y58{bottom:3.955500px;}
.y78{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y5a{bottom:5.370000px;}
.y2{bottom:10.080000px;}
.yaf{bottom:10.785000px;}
.yc2{bottom:11.160000px;}
.y7d{bottom:12.240000px;}
.y81{bottom:12.600000px;}
.ya6{bottom:16.545000px;}
.yab{bottom:16.905000px;}
.ybb{bottom:16.920000px;}
.ycb{bottom:17.265000px;}
.yb2{bottom:17.275500px;}
.ybd{bottom:17.280000px;}
.yc8{bottom:19.785000px;}
.yb8{bottom:19.800000px;}
.ye4{bottom:20.865000px;}
.y7b{bottom:20.880000px;}
.y72{bottom:20.910000px;}
.ye2{bottom:21.225000px;}
.y57{bottom:21.235500px;}
.y77{bottom:21.240000px;}
.y74{bottom:21.270000px;}
.y3f{bottom:22.320000px;}
.y4{bottom:23.400000px;}
.ya4{bottom:25.575000px;}
.yb0{bottom:25.905000px;}
.yb7{bottom:25.920000px;}
.yc4{bottom:25.935000px;}
.y49{bottom:28.075500px;}
.ya7{bottom:28.815000px;}
.y7c{bottom:29.520000px;}
.y80{bottom:29.880000px;}
.yaa{bottom:34.545000px;}
.ya1{bottom:34.575000px;}
.yb9{bottom:34.605000px;}
.ya9{bottom:34.905000px;}
.yc1{bottom:34.920000px;}
.y48{bottom:36.031500px;}
.y56{bottom:37.831500px;}
.y7a{bottom:38.160000px;}
.y7e{bottom:38.190000px;}
.ye1{bottom:38.505000px;}
.y76{bottom:38.520000px;}
.y71{bottom:38.550000px;}
.y3e{bottom:39.600000px;}
.ya3{bottom:43.215000px;}
.yc7{bottom:43.545000px;}
.yb6{bottom:43.605000px;}
.y3{bottom:47.880000px;}
.yc9{bottom:52.185000px;}
.ya0{bottom:52.215000px;}
.yba{bottom:52.245000px;}
.ycf{bottom:52.545000px;}
.y55{bottom:53.314500px;}
.y3d{bottom:56.880000px;}
.ya2{bottom:60.855000px;}
.y47{bottom:65.554500px;}
.ya5{bottom:69.855000px;}
.y54{bottom:70.954500px;}
.y8{bottom:71.676000px;}
.y3c{bottom:73.845000px;}
.y46{bottom:77.434500px;}
.y53{bottom:86.794500px;}
.y45{bottom:90.754500px;}
.y3b{bottom:91.125000px;}
.y7{bottom:91.476000px;}
.y52{bottom:102.274500px;}
.y44{bottom:103.714500px;}
.y40{bottom:105.520500px;}
.y3a{bottom:108.405000px;}
.y51{bottom:117.754500px;}
.yf3{bottom:118.116000px;}
.yb3{bottom:118.480500px;}
.yb1{bottom:121.360500px;}
.y127{bottom:123.516000px;}
.y43{bottom:125.314500px;}
.y39{bottom:125.685000px;}
.y50{bottom:130.714500px;}
.y4f{bottom:136.834500px;}
.yf2{bottom:137.916000px;}
.y38{bottom:142.965000px;}
.yae{bottom:151.290000px;}
.y126{bottom:151.635000px;}
.y4e{bottom:152.674500px;}
.yf1{bottom:158.115000px;}
.y37{bottom:160.245000px;}
.y4d{bottom:168.544500px;}
.y125{bottom:170.355000px;}
.y157{bottom:173.955000px;}
.yf0{bottom:175.755000px;}
.y36{bottom:177.525000px;}
.y8b{bottom:180.075000px;}
.y4c{bottom:184.024500px;}
.y42{bottom:187.624500px;}
.y124{bottom:188.715000px;}
.y156{bottom:191.595000px;}
.yef{bottom:194.115000px;}
.y35{bottom:194.805000px;}
.y41{bottom:198.424500px;}
.y8a{bottom:198.435000px;}
.yac{bottom:198.450000px;}
.y4b{bottom:199.504500px;}
.ya8{bottom:201.330000px;}
.y123{bottom:207.435000px;}
.y155{bottom:208.875000px;}
.ydc{bottom:211.755000px;}
.y34{bottom:212.115000px;}
.yee{bottom:212.475000px;}
.y4a{bottom:214.624500px;}
.y89{bottom:216.795000px;}
.y122{bottom:224.715000px;}
.y154{bottom:226.155000px;}
.y33{bottom:229.395000px;}
.ydb{bottom:230.835000px;}
.y21{bottom:234.795000px;}
.y121{bottom:243.435000px;}
.y32{bottom:246.675000px;}
.yda{bottom:248.835000px;}
.y9f{bottom:248.850000px;}
.yed{bottom:250.995000px;}
.y88{bottom:252.075000px;}
.y20{bottom:258.915000px;}
.y153{bottom:260.715000px;}
.y120{bottom:261.795000px;}
.y31{bottom:263.595000px;}
.yd9{bottom:267.195000px;}
.yec{bottom:269.355000px;}
.y87{bottom:270.435000px;}
.y152{bottom:278.025000px;}
.y11f{bottom:280.545000px;}
.y1f{bottom:283.035000px;}
.yd8{bottom:285.585000px;}
.yeb{bottom:286.665000px;}
.y86{bottom:288.465000px;}
.y30{bottom:290.595000px;}
.y151{bottom:295.305000px;}
.y11e{bottom:299.265000px;}
.yea{bottom:300.345000px;}
.yd7{bottom:305.745000px;}
.y1e{bottom:307.155000px;}
.y2f{bottom:307.515000px;}
.y150{bottom:312.585000px;}
.y11d{bottom:316.545000px;}
.y85{bottom:319.425000px;}
.yd6{bottom:320.145000px;}
.y2e{bottom:324.075000px;}
.y14f{bottom:329.505000px;}
.y1d{bottom:331.275000px;}
.y13{bottom:333.465000px;}
.y11c{bottom:334.905000px;}
.y9e{bottom:335.625000px;}
.y84{bottom:338.505000px;}
.y2d{bottom:341.025000px;}
.y14e{bottom:346.785000px;}
.y9d{bottom:349.305000px;}
.y83{bottom:352.545000px;}
.y11b{bottom:353.625000px;}
.y1c{bottom:355.425000px;}
.y2c{bottom:357.585000px;}
.y14d{bottom:364.065000px;}
.y11a{bottom:372.345000px;}
.y2b{bottom:374.505000px;}
.y1b{bottom:379.545000px;}
.y14c{bottom:381.345000px;}
.y2a{bottom:391.065000px;}
.y14b{bottom:398.625000px;}
.y1a{bottom:403.665000px;}
.y29{bottom:407.985000px;}
.y119{bottom:408.030000px;}
.y14a{bottom:415.950000px;}
.y28{bottom:424.545000px;}
.y118{bottom:426.750000px;}
.y19{bottom:428.145000px;}
.y82{bottom:433.230000px;}
.y27{bottom:441.465000px;}
.y117{bottom:445.470000px;}
.y7f{bottom:447.630000px;}
.y149{bottom:450.510000px;}
.y18{bottom:452.265000px;}
.y26{bottom:458.025000px;}
.y116{bottom:464.190000px;}
.y148{bottom:467.790000px;}
.y25{bottom:474.990000px;}
.y17{bottom:476.430000px;}
.y115{bottom:482.550000px;}
.y147{bottom:485.070000px;}
.y24{bottom:491.910000px;}
.y114{bottom:499.830000px;}
.y16{bottom:500.550000px;}
.y146{bottom:502.350000px;}
.y23{bottom:508.470000px;}
.y113{bottom:518.550000px;}
.y145{bottom:519.270000px;}
.y15{bottom:524.670000px;}
.y144{bottom:536.550000px;}
.y112{bottom:537.300000px;}
.y22{bottom:541.590000px;}
.y14{bottom:548.790000px;}
.y79{bottom:553.500000px;}
.y143{bottom:553.860000px;}
.y111{bottom:555.660000px;}
.ye9{bottom:559.980000px;}
.y142{bottom:571.140000px;}
.y110{bottom:574.380000px;}
.yd5{bottom:576.540000px;}
.ye8{bottom:583.740000px;}
.y141{bottom:588.420000px;}
.y10f{bottom:591.660000px;}
.yd4{bottom:594.900000px;}
.y140{bottom:605.700000px;}
.y75{bottom:606.060000px;}
.y10e{bottom:610.380000px;}
.yd3{bottom:613.260000px;}
.y9c{bottom:616.860000px;}
.y13f{bottom:622.980000px;}
.y10d{bottom:628.740000px;}
.y9b{bottom:633.420000px;}
.ye7{bottom:636.660000px;}
.y13e{bottom:640.260000px;}
.y10c{bottom:647.460000px;}
.y9a{bottom:651.060000px;}
.yd2{bottom:652.140000px;}
.y13d{bottom:657.540000px;}
.y70{bottom:658.980000px;}
.y10b{bottom:666.180000px;}
.y99{bottom:668.340000px;}
.ye5{bottom:672.345000px;}
.y13c{bottom:674.850000px;}
.y10a{bottom:684.570000px;}
.y98{bottom:685.650000px;}
.y13b{bottom:692.130000px;}
.yd1{bottom:700.410000px;}
.y109{bottom:703.290000px;}
.ye0{bottom:707.985000px;}
.y13a{bottom:709.410000px;}
.yd0{bottom:715.545000px;}
.y6f{bottom:715.890000px;}
.y97{bottom:720.210000px;}
.y108{bottom:720.570000px;}
.y139{bottom:726.330000px;}
.y6e{bottom:733.170000px;}
.y96{bottom:738.570000px;}
.y107{bottom:739.290000px;}
.y138{bottom:743.610000px;}
.yce{bottom:745.065000px;}
.y6d{bottom:750.450000px;}
.y95{bottom:756.210000px;}
.y106{bottom:757.650000px;}
.y137{bottom:760.890000px;}
.ydf{bottom:764.850000px;}
.y6c{bottom:767.730000px;}
.y94{bottom:773.490000px;}
.y105{bottom:776.370000px;}
.y136{bottom:778.530000px;}
.y6b{bottom:785.010000px;}
.y93{bottom:790.770000px;}
.y104{bottom:795.090000px;}
.y6a{bottom:803.055000px;}
.yde{bottom:803.415000px;}
.y135{bottom:805.215000px;}
.y92{bottom:808.095000px;}
.ycc{bottom:810.270000px;}
.yca{bottom:813.150000px;}
.y103{bottom:813.855000px;}
.ydd{bottom:817.095000px;}
.y134{bottom:822.495000px;}
.y91{bottom:825.015000px;}
.y69{bottom:829.695000px;}
.y102{bottom:832.215000px;}
.y133{bottom:839.775000px;}
.y90{bottom:842.295000px;}
.yc6{bottom:843.030000px;}
.y68{bottom:848.055000px;}
.y101{bottom:849.495000px;}
.y132{bottom:858.135000px;}
.y8f{bottom:859.575000px;}
.y67{bottom:866.415000px;}
.y100{bottom:868.215000px;}
.y131{bottom:875.415000px;}
.y66{bottom:884.775000px;}
.yff{bottom:886.935000px;}
.y130{bottom:892.335000px;}
.y8e{bottom:894.135000px;}
.y12{bottom:894.495000px;}
.y11{bottom:899.895000px;}
.y65{bottom:903.135000px;}
.yfe{bottom:905.295000px;}
.yc5{bottom:907.830000px;}
.y12f{bottom:909.615000px;}
.yc3{bottom:911.070000px;}
.y8d{bottom:911.775000px;}
.y10{bottom:917.175000px;}
.y64{bottom:920.415000px;}
.yfd{bottom:924.015000px;}
.y8c{bottom:925.095000px;}
.y12e{bottom:927.615000px;}
.y63{bottom:937.725000px;}
.yfc{bottom:941.325000px;}
.y12d{bottom:946.365000px;}
.yf{bottom:946.725000px;}
.ye{bottom:957.525000px;}
.yc0{bottom:958.245000px;}
.yfb{bottom:960.045000px;}
.y12c{bottom:964.725000px;}
.y62{bottom:967.605000px;}
.yfa{bottom:978.405000px;}
.y12b{bottom:983.085000px;}
.y61{bottom:986.325000px;}
.yd{bottom:987.405000px;}
.yc{bottom:994.245000px;}
.yf9{bottom:997.125000px;}
.y12a{bottom:1001.445000px;}
.y60{bottom:1003.965000px;}
.ybe{bottom:1005.765000px;}
.ybc{bottom:1008.645000px;}
.yf8{bottom:1015.845000px;}
.yb{bottom:1019.805000px;}
.y129{bottom:1020.885000px;}
.y5f{bottom:1021.245000px;}
.yf7{bottom:1034.205000px;}
.y5e{bottom:1038.165000px;}
.yb5{bottom:1038.525000px;}
.ya{bottom:1044.285000px;}
.yf6{bottom:1052.925000px;}
.y5d{bottom:1055.445000px;}
.yf5{bottom:1070.250000px;}
.y9{bottom:1072.050000px;}
.y5c{bottom:1072.770000px;}
.y59{bottom:1075.320000px;}
.yf4{bottom:1089.330000px;}
.y128{bottom:1089.690000px;}
.y5b{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h2b{height:1.424985px;}
.h25{height:1.425030px;}
.h28{height:1.435440px;}
.hb{height:4.165313px;}
.h17{height:5.650313px;}
.h19{height:27.720000px;}
.h2f{height:29.505000px;}
.h15{height:29.678906px;}
.h2a{height:29.865000px;}
.h27{height:29.911500px;}
.h30{height:34.545000px;}
.h31{height:34.596000px;}
.ha{height:38.158594px;}
.he{height:40.985156px;}
.h1b{height:41.993438px;}
.hd{height:42.086250px;}
.h26{height:47.145000px;}
.h2c{height:47.160000px;}
.h24{height:47.505000px;}
.h1e{height:51.480000px;}
.h1f{height:51.510000px;}
.h20{height:51.825000px;}
.h1d{height:51.840000px;}
.h1c{height:51.876000px;}
.hf{height:53.677969px;}
.h16{height:55.147500px;}
.h23{height:56.531250px;}
.h22{height:58.050000px;}
.h18{height:59.328281px;}
.h6{height:59.357813px;}
.h10{height:60.952500px;}
.h12{height:61.927031px;}
.h11{height:62.163910px;}
.h1a{height:63.565031px;}
.h8{height:63.577969px;}
.h2d{height:64.785000px;}
.h29{height:64.830000px;}
.h5{height:65.010937px;}
.h2e{height:65.181000px;}
.h3{height:65.884219px;}
.h14{height:70.664062px;}
.h21{height:82.800000px;}
.h7{height:84.172500px;}
.h2{height:84.990000px;}
.h9{height:89.583750px;}
.h4{height:116.640000px;}
.h13{height:227.205000px;}
.hc{height:558.150000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:49.305000px;}
.wd{width:68.790000px;}
.we{width:72.396000px;}
.w13{width:86.781000px;}
.w10{width:93.981000px;}
.wc{width:93.990000px;}
.w2{width:103.702500px;}
.w14{width:120.240000px;}
.w4{width:132.502500px;}
.w7{width:142.965000px;}
.wa{width:144.045000px;}
.w6{width:163.080000px;}
.w12{width:167.835000px;}
.w11{width:191.205000px;}
.wb{width:248.850000px;}
.w9{width:259.650000px;}
.w8{width:269.025000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:1.785000px;}
.x36{left:5.025000px;}
.x24{left:6.876000px;}
.x1c{left:8.295000px;}
.x46{left:9.720000px;}
.x31{left:10.800000px;}
.x44{left:12.240000px;}
.x4{left:13.305000px;}
.x4b{left:14.745000px;}
.x1a{left:16.546500px;}
.x17{left:17.626500px;}
.x4c{left:18.705000px;}
.x19{left:19.786500px;}
.x42{left:21.600000px;}
.x3a{left:24.465000px;}
.x18{left:26.266500px;}
.x39{left:28.080000px;}
.x20{left:29.146500px;}
.x47{left:30.240000px;}
.x35{left:31.320000px;}
.x57{left:32.385000px;}
.x6{left:35.265000px;}
.x4a{left:36.720000px;}
.x56{left:40.665000px;}
.x38{left:42.145500px;}
.x11{left:43.906500px;}
.x29{left:46.465500px;}
.x1f{left:47.542500px;}
.x3c{left:48.600000px;}
.x12{left:50.782500px;}
.x28{left:52.945500px;}
.x10{left:55.102500px;}
.x22{left:57.262500px;}
.x2e{left:59.430000px;}
.x55{left:60.495000px;}
.x1d{left:62.295000px;}
.x58{left:63.735000px;}
.x21{left:66.265500px;}
.x50{left:68.415000px;}
.x27{left:71.665500px;}
.x15{left:73.105500px;}
.x1{left:78.529500px;}
.x16{left:80.305500px;}
.x34{left:83.190000px;}
.x52{left:84.270000px;}
.x7{left:86.436000px;}
.x37{left:91.470000px;}
.x14{left:92.905500px;}
.x2{left:95.425500px;}
.x3b{left:99.390000px;}
.x23{left:102.985500px;}
.x26{left:104.809500px;}
.x1e{left:106.945500px;}
.x2f{left:110.569500px;}
.x25{left:113.436000px;}
.x32{left:123.525000px;}
.x13{left:124.585500px;}
.x2d{left:129.990000px;}
.x2b{left:134.685000px;}
.xb{left:138.672000px;}
.x5a{left:140.472000px;}
.x5{left:141.540000px;}
.x4f{left:162.090000px;}
.x3{left:182.250000px;}
.x1b{left:218.970000px;}
.xc{left:235.545000px;}
.x2a{left:248.865000px;}
.x30{left:255.705000px;}
.x43{left:350.790000px;}
.x51{left:354.390000px;}
.xd{left:363.750000px;}
.x45{left:420.300000px;}
.x40{left:446.580000px;}
.xa{left:468.180000px;}
.x48{left:493.425000px;}
.x2c{left:518.985000px;}
.x53{left:523.305000px;}
.x33{left:525.825000px;}
.x49{left:543.465000px;}
.xe{left:596.055000px;}
.x54{left:611.190000px;}
.x41{left:624.495000px;}
.x4d{left:656.895000px;}
.x3f{left:663.735000px;}
.x59{left:668.805000px;}
.x4e{left:683.925000px;}
.x3e{left:735.045000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xf{left:807.090000px;}
@media print{
.v6{vertical-align:-64.000000pt;}
.v7{vertical-align:-61.440000pt;}
.v5{vertical-align:-57.600000pt;}
.v4{vertical-align:-44.800000pt;}
.v3{vertical-align:-23.040000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.v2{vertical-align:23.040000pt;}
.ls22{letter-spacing:-2.560000pt;}
.ls1f{letter-spacing:-1.712000pt;}
.ls16{letter-spacing:-1.696000pt;}
.ls20{letter-spacing:-1.296000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-1.264000pt;}
.ls19{letter-spacing:-1.125333pt;}
.ls15{letter-spacing:-0.864000pt;}
.ls17{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.560000pt;}
.ls1e{letter-spacing:-0.432533pt;}
.ls14{letter-spacing:-0.414933pt;}
.ls18{letter-spacing:-0.307200pt;}
.ls1b{letter-spacing:-0.153600pt;}
.lsb{letter-spacing:-0.079467pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.017920pt;}
.ls1a{letter-spacing:0.153600pt;}
.ls4{letter-spacing:0.414933pt;}
.ls21{letter-spacing:0.432533pt;}
.lse{letter-spacing:0.450667pt;}
.ls13{letter-spacing:0.542720pt;}
.lsd{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.917333pt;}
.ls1{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.498667pt;}
.ls23{letter-spacing:1.696000pt;}
.ls1d{letter-spacing:4.480000pt;}
.ls3{letter-spacing:7.040000pt;}
.ls11{letter-spacing:12.160000pt;}
.ls1c{letter-spacing:14.494720pt;}
.ls2{letter-spacing:41.374720pt;}
.ls12{letter-spacing:82.560000pt;}
.wsf{word-spacing:-32.832000pt;}
.ws1{word-spacing:-23.844907pt;}
.ws2{word-spacing:-23.263573pt;}
.ws21{word-spacing:-15.136000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.890667pt;}
.ws1f{word-spacing:-13.872533pt;}
.wsa{word-spacing:-13.854933pt;}
.ws15{word-spacing:-13.457920pt;}
.ws6{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.025067pt;}
.ws1c{word-spacing:-13.007467pt;}
.ws18{word-spacing:-12.953600pt;}
.ws19{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.720000pt;}
.ws1a{word-spacing:-12.646400pt;}
.ws14{word-spacing:-12.608000pt;}
.ws12{word-spacing:-12.576000pt;}
.ws16{word-spacing:-12.492800pt;}
.ws4{word-spacing:-12.176000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws1e{word-spacing:-12.144000pt;}
.ws13{word-spacing:-11.744000pt;}
.ws1d{word-spacing:-11.728000pt;}
.ws17{word-spacing:-11.674667pt;}
.wse{word-spacing:-11.600000pt;}
.ws1b{word-spacing:-11.520000pt;}
.ws20{word-spacing:-10.880000pt;}
.ws7{word-spacing:-9.920000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.000000pt;}
.wsc{word-spacing:-7.936000pt;}
.ws10{word-spacing:0.000000pt;}
._21{margin-left:-6.310827pt;}
._1b{margin-left:-4.957440pt;}
._7{margin-left:-4.026880pt;}
._8{margin-left:-2.851840pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._d{width:4.411733pt;}
._c{width:5.474133pt;}
._a{width:6.433280pt;}
._b{width:7.672747pt;}
._f{width:8.964693pt;}
._13{width:10.503680pt;}
._16{width:11.694080pt;}
._11{width:14.041600pt;}
._12{width:15.070720pt;}
._10{width:16.030720pt;}
._15{width:16.941653pt;}
._9{width:17.927680pt;}
._e{width:19.650560pt;}
._19{width:20.544000pt;}
._18{width:22.238720pt;}
._17{width:23.930880pt;}
._14{width:25.144320pt;}
._1a{width:27.616853pt;}
._1c{width:30.601813pt;}
._22{width:35.732053pt;}
._6{width:62.213120pt;}
._1e{width:69.393493pt;}
._20{width:87.831893pt;}
._1f{width:121.801813pt;}
._1d{width:142.350933pt;}
._5{width:871.578453pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fsc{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fsb{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.ycd{bottom:-10.613333pt;}
.yad{bottom:-10.573333pt;}
.yb4{bottom:-10.564000pt;}
.ybf{bottom:-10.560000pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:3.186667pt;}
.y73{bottom:3.200000pt;}
.ye6{bottom:3.506667pt;}
.y58{bottom:3.516000pt;}
.y78{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y5a{bottom:4.773333pt;}
.y2{bottom:8.960000pt;}
.yaf{bottom:9.586667pt;}
.yc2{bottom:9.920000pt;}
.y7d{bottom:10.880000pt;}
.y81{bottom:11.200000pt;}
.ya6{bottom:14.706667pt;}
.yab{bottom:15.026667pt;}
.ybb{bottom:15.040000pt;}
.ycb{bottom:15.346667pt;}
.yb2{bottom:15.356000pt;}
.ybd{bottom:15.360000pt;}
.yc8{bottom:17.586667pt;}
.yb8{bottom:17.600000pt;}
.ye4{bottom:18.546667pt;}
.y7b{bottom:18.560000pt;}
.y72{bottom:18.586667pt;}
.ye2{bottom:18.866667pt;}
.y57{bottom:18.876000pt;}
.y77{bottom:18.880000pt;}
.y74{bottom:18.906667pt;}
.y3f{bottom:19.840000pt;}
.y4{bottom:20.800000pt;}
.ya4{bottom:22.733333pt;}
.yb0{bottom:23.026667pt;}
.yb7{bottom:23.040000pt;}
.yc4{bottom:23.053333pt;}
.y49{bottom:24.956000pt;}
.ya7{bottom:25.613333pt;}
.y7c{bottom:26.240000pt;}
.y80{bottom:26.560000pt;}
.yaa{bottom:30.706667pt;}
.ya1{bottom:30.733333pt;}
.yb9{bottom:30.760000pt;}
.ya9{bottom:31.026667pt;}
.yc1{bottom:31.040000pt;}
.y48{bottom:32.028000pt;}
.y56{bottom:33.628000pt;}
.y7a{bottom:33.920000pt;}
.y7e{bottom:33.946667pt;}
.ye1{bottom:34.226667pt;}
.y76{bottom:34.240000pt;}
.y71{bottom:34.266667pt;}
.y3e{bottom:35.200000pt;}
.ya3{bottom:38.413333pt;}
.yc7{bottom:38.706667pt;}
.yb6{bottom:38.760000pt;}
.y3{bottom:42.560000pt;}
.yc9{bottom:46.386667pt;}
.ya0{bottom:46.413333pt;}
.yba{bottom:46.440000pt;}
.ycf{bottom:46.706667pt;}
.y55{bottom:47.390667pt;}
.y3d{bottom:50.560000pt;}
.ya2{bottom:54.093333pt;}
.y47{bottom:58.270667pt;}
.ya5{bottom:62.093333pt;}
.y54{bottom:63.070667pt;}
.y8{bottom:63.712000pt;}
.y3c{bottom:65.640000pt;}
.y46{bottom:68.830667pt;}
.y53{bottom:77.150667pt;}
.y45{bottom:80.670667pt;}
.y3b{bottom:81.000000pt;}
.y7{bottom:81.312000pt;}
.y52{bottom:90.910667pt;}
.y44{bottom:92.190667pt;}
.y40{bottom:93.796000pt;}
.y3a{bottom:96.360000pt;}
.y51{bottom:104.670667pt;}
.yf3{bottom:104.992000pt;}
.yb3{bottom:105.316000pt;}
.yb1{bottom:107.876000pt;}
.y127{bottom:109.792000pt;}
.y43{bottom:111.390667pt;}
.y39{bottom:111.720000pt;}
.y50{bottom:116.190667pt;}
.y4f{bottom:121.630667pt;}
.yf2{bottom:122.592000pt;}
.y38{bottom:127.080000pt;}
.yae{bottom:134.480000pt;}
.y126{bottom:134.786667pt;}
.y4e{bottom:135.710667pt;}
.yf1{bottom:140.546667pt;}
.y37{bottom:142.440000pt;}
.y4d{bottom:149.817333pt;}
.y125{bottom:151.426667pt;}
.y157{bottom:154.626667pt;}
.yf0{bottom:156.226667pt;}
.y36{bottom:157.800000pt;}
.y8b{bottom:160.066667pt;}
.y4c{bottom:163.577333pt;}
.y42{bottom:166.777333pt;}
.y124{bottom:167.746667pt;}
.y156{bottom:170.306667pt;}
.yef{bottom:172.546667pt;}
.y35{bottom:173.160000pt;}
.y41{bottom:176.377333pt;}
.y8a{bottom:176.386667pt;}
.yac{bottom:176.400000pt;}
.y4b{bottom:177.337333pt;}
.ya8{bottom:178.960000pt;}
.y123{bottom:184.386667pt;}
.y155{bottom:185.666667pt;}
.ydc{bottom:188.226667pt;}
.y34{bottom:188.546667pt;}
.yee{bottom:188.866667pt;}
.y4a{bottom:190.777333pt;}
.y89{bottom:192.706667pt;}
.y122{bottom:199.746667pt;}
.y154{bottom:201.026667pt;}
.y33{bottom:203.906667pt;}
.ydb{bottom:205.186667pt;}
.y21{bottom:208.706667pt;}
.y121{bottom:216.386667pt;}
.y32{bottom:219.266667pt;}
.yda{bottom:221.186667pt;}
.y9f{bottom:221.200000pt;}
.yed{bottom:223.106667pt;}
.y88{bottom:224.066667pt;}
.y20{bottom:230.146667pt;}
.y153{bottom:231.746667pt;}
.y120{bottom:232.706667pt;}
.y31{bottom:234.306667pt;}
.yd9{bottom:237.506667pt;}
.yec{bottom:239.426667pt;}
.y87{bottom:240.386667pt;}
.y152{bottom:247.133333pt;}
.y11f{bottom:249.373333pt;}
.y1f{bottom:251.586667pt;}
.yd8{bottom:253.853333pt;}
.yeb{bottom:254.813333pt;}
.y86{bottom:256.413333pt;}
.y30{bottom:258.306667pt;}
.y151{bottom:262.493333pt;}
.y11e{bottom:266.013333pt;}
.yea{bottom:266.973333pt;}
.yd7{bottom:271.773333pt;}
.y1e{bottom:273.026667pt;}
.y2f{bottom:273.346667pt;}
.y150{bottom:277.853333pt;}
.y11d{bottom:281.373333pt;}
.y85{bottom:283.933333pt;}
.yd6{bottom:284.573333pt;}
.y2e{bottom:288.066667pt;}
.y14f{bottom:292.893333pt;}
.y1d{bottom:294.466667pt;}
.y13{bottom:296.413333pt;}
.y11c{bottom:297.693333pt;}
.y9e{bottom:298.333333pt;}
.y84{bottom:300.893333pt;}
.y2d{bottom:303.133333pt;}
.y14e{bottom:308.253333pt;}
.y9d{bottom:310.493333pt;}
.y83{bottom:313.373333pt;}
.y11b{bottom:314.333333pt;}
.y1c{bottom:315.933333pt;}
.y2c{bottom:317.853333pt;}
.y14d{bottom:323.613333pt;}
.y11a{bottom:330.973333pt;}
.y2b{bottom:332.893333pt;}
.y1b{bottom:337.373333pt;}
.y14c{bottom:338.973333pt;}
.y2a{bottom:347.613333pt;}
.y14b{bottom:354.333333pt;}
.y1a{bottom:358.813333pt;}
.y29{bottom:362.653333pt;}
.y119{bottom:362.693333pt;}
.y14a{bottom:369.733333pt;}
.y28{bottom:377.373333pt;}
.y118{bottom:379.333333pt;}
.y19{bottom:380.573333pt;}
.y82{bottom:385.093333pt;}
.y27{bottom:392.413333pt;}
.y117{bottom:395.973333pt;}
.y7f{bottom:397.893333pt;}
.y149{bottom:400.453333pt;}
.y18{bottom:402.013333pt;}
.y26{bottom:407.133333pt;}
.y116{bottom:412.613333pt;}
.y148{bottom:415.813333pt;}
.y25{bottom:422.213333pt;}
.y17{bottom:423.493333pt;}
.y115{bottom:428.933333pt;}
.y147{bottom:431.173333pt;}
.y24{bottom:437.253333pt;}
.y114{bottom:444.293333pt;}
.y16{bottom:444.933333pt;}
.y146{bottom:446.533333pt;}
.y23{bottom:451.973333pt;}
.y113{bottom:460.933333pt;}
.y145{bottom:461.573333pt;}
.y15{bottom:466.373333pt;}
.y144{bottom:476.933333pt;}
.y112{bottom:477.600000pt;}
.y22{bottom:481.413333pt;}
.y14{bottom:487.813333pt;}
.y79{bottom:492.000000pt;}
.y143{bottom:492.320000pt;}
.y111{bottom:493.920000pt;}
.ye9{bottom:497.760000pt;}
.y142{bottom:507.680000pt;}
.y110{bottom:510.560000pt;}
.yd5{bottom:512.480000pt;}
.ye8{bottom:518.880000pt;}
.y141{bottom:523.040000pt;}
.y10f{bottom:525.920000pt;}
.yd4{bottom:528.800000pt;}
.y140{bottom:538.400000pt;}
.y75{bottom:538.720000pt;}
.y10e{bottom:542.560000pt;}
.yd3{bottom:545.120000pt;}
.y9c{bottom:548.320000pt;}
.y13f{bottom:553.760000pt;}
.y10d{bottom:558.880000pt;}
.y9b{bottom:563.040000pt;}
.ye7{bottom:565.920000pt;}
.y13e{bottom:569.120000pt;}
.y10c{bottom:575.520000pt;}
.y9a{bottom:578.720000pt;}
.yd2{bottom:579.680000pt;}
.y13d{bottom:584.480000pt;}
.y70{bottom:585.760000pt;}
.y10b{bottom:592.160000pt;}
.y99{bottom:594.080000pt;}
.ye5{bottom:597.640000pt;}
.y13c{bottom:599.866667pt;}
.y10a{bottom:608.506667pt;}
.y98{bottom:609.466667pt;}
.y13b{bottom:615.226667pt;}
.yd1{bottom:622.586667pt;}
.y109{bottom:625.146667pt;}
.ye0{bottom:629.320000pt;}
.y13a{bottom:630.586667pt;}
.yd0{bottom:636.040000pt;}
.y6f{bottom:636.346667pt;}
.y97{bottom:640.186667pt;}
.y108{bottom:640.506667pt;}
.y139{bottom:645.626667pt;}
.y6e{bottom:651.706667pt;}
.y96{bottom:656.506667pt;}
.y107{bottom:657.146667pt;}
.y138{bottom:660.986667pt;}
.yce{bottom:662.280000pt;}
.y6d{bottom:667.066667pt;}
.y95{bottom:672.186667pt;}
.y106{bottom:673.466667pt;}
.y137{bottom:676.346667pt;}
.ydf{bottom:679.866667pt;}
.y6c{bottom:682.426667pt;}
.y94{bottom:687.546667pt;}
.y105{bottom:690.106667pt;}
.y136{bottom:692.026667pt;}
.y6b{bottom:697.786667pt;}
.y93{bottom:702.906667pt;}
.y104{bottom:706.746667pt;}
.y6a{bottom:713.826667pt;}
.yde{bottom:714.146667pt;}
.y135{bottom:715.746667pt;}
.y92{bottom:718.306667pt;}
.ycc{bottom:720.240000pt;}
.yca{bottom:722.800000pt;}
.y103{bottom:723.426667pt;}
.ydd{bottom:726.306667pt;}
.y134{bottom:731.106667pt;}
.y91{bottom:733.346667pt;}
.y69{bottom:737.506667pt;}
.y102{bottom:739.746667pt;}
.y133{bottom:746.466667pt;}
.y90{bottom:748.706667pt;}
.yc6{bottom:749.360000pt;}
.y68{bottom:753.826667pt;}
.y101{bottom:755.106667pt;}
.y132{bottom:762.786667pt;}
.y8f{bottom:764.066667pt;}
.y67{bottom:770.146667pt;}
.y100{bottom:771.746667pt;}
.y131{bottom:778.146667pt;}
.y66{bottom:786.466667pt;}
.yff{bottom:788.386667pt;}
.y130{bottom:793.186667pt;}
.y8e{bottom:794.786667pt;}
.y12{bottom:795.106667pt;}
.y11{bottom:799.906667pt;}
.y65{bottom:802.786667pt;}
.yfe{bottom:804.706667pt;}
.yc5{bottom:806.960000pt;}
.y12f{bottom:808.546667pt;}
.yc3{bottom:809.840000pt;}
.y8d{bottom:810.466667pt;}
.y10{bottom:815.266667pt;}
.y64{bottom:818.146667pt;}
.yfd{bottom:821.346667pt;}
.y8c{bottom:822.306667pt;}
.y12e{bottom:824.546667pt;}
.y63{bottom:833.533333pt;}
.yfc{bottom:836.733333pt;}
.y12d{bottom:841.213333pt;}
.yf{bottom:841.533333pt;}
.ye{bottom:851.133333pt;}
.yc0{bottom:851.773333pt;}
.yfb{bottom:853.373333pt;}
.y12c{bottom:857.533333pt;}
.y62{bottom:860.093333pt;}
.yfa{bottom:869.693333pt;}
.y12b{bottom:873.853333pt;}
.y61{bottom:876.733333pt;}
.yd{bottom:877.693333pt;}
.yc{bottom:883.773333pt;}
.yf9{bottom:886.333333pt;}
.y12a{bottom:890.173333pt;}
.y60{bottom:892.413333pt;}
.ybe{bottom:894.013333pt;}
.ybc{bottom:896.573333pt;}
.yf8{bottom:902.973333pt;}
.yb{bottom:906.493333pt;}
.y129{bottom:907.453333pt;}
.y5f{bottom:907.773333pt;}
.yf7{bottom:919.293333pt;}
.y5e{bottom:922.813333pt;}
.yb5{bottom:923.133333pt;}
.ya{bottom:928.253333pt;}
.yf6{bottom:935.933333pt;}
.y5d{bottom:938.173333pt;}
.yf5{bottom:951.333333pt;}
.y9{bottom:952.933333pt;}
.y5c{bottom:953.573333pt;}
.y59{bottom:955.840000pt;}
.yf4{bottom:968.293333pt;}
.y128{bottom:968.613333pt;}
.y5b{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h2b{height:1.266653pt;}
.h25{height:1.266693pt;}
.h28{height:1.275947pt;}
.hb{height:3.702500pt;}
.h17{height:5.022500pt;}
.h19{height:24.640000pt;}
.h2f{height:26.226667pt;}
.h15{height:26.381250pt;}
.h2a{height:26.546667pt;}
.h27{height:26.588000pt;}
.h30{height:30.706667pt;}
.h31{height:30.752000pt;}
.ha{height:33.918750pt;}
.he{height:36.431250pt;}
.h1b{height:37.327500pt;}
.hd{height:37.410000pt;}
.h26{height:41.906667pt;}
.h2c{height:41.920000pt;}
.h24{height:42.226667pt;}
.h1e{height:45.760000pt;}
.h1f{height:45.786667pt;}
.h20{height:46.066667pt;}
.h1d{height:46.080000pt;}
.h1c{height:46.112000pt;}
.hf{height:47.713750pt;}
.h16{height:49.020000pt;}
.h23{height:50.250000pt;}
.h22{height:51.600000pt;}
.h18{height:52.736250pt;}
.h6{height:52.762500pt;}
.h10{height:54.180000pt;}
.h12{height:55.046250pt;}
.h11{height:55.256809pt;}
.h1a{height:56.502250pt;}
.h8{height:56.513750pt;}
.h2d{height:57.586667pt;}
.h29{height:57.626667pt;}
.h5{height:57.787500pt;}
.h2e{height:57.938667pt;}
.h3{height:58.563750pt;}
.h14{height:62.812500pt;}
.h21{height:73.600000pt;}
.h7{height:74.820000pt;}
.h2{height:75.546667pt;}
.h9{height:79.630000pt;}
.h4{height:103.680000pt;}
.h13{height:201.960000pt;}
.hc{height:496.133333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:43.826667pt;}
.wd{width:61.146667pt;}
.we{width:64.352000pt;}
.w13{width:77.138667pt;}
.w10{width:83.538667pt;}
.wc{width:83.546667pt;}
.w2{width:92.180000pt;}
.w14{width:106.880000pt;}
.w4{width:117.780000pt;}
.w7{width:127.080000pt;}
.wa{width:128.040000pt;}
.w6{width:144.960000pt;}
.w12{width:149.186667pt;}
.w11{width:169.960000pt;}
.wb{width:221.200000pt;}
.w9{width:230.800000pt;}
.w8{width:239.133333pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:1.586667pt;}
.x36{left:4.466667pt;}
.x24{left:6.112000pt;}
.x1c{left:7.373333pt;}
.x46{left:8.640000pt;}
.x31{left:9.600000pt;}
.x44{left:10.880000pt;}
.x4{left:11.826667pt;}
.x4b{left:13.106667pt;}
.x1a{left:14.708000pt;}
.x17{left:15.668000pt;}
.x4c{left:16.626667pt;}
.x19{left:17.588000pt;}
.x42{left:19.200000pt;}
.x3a{left:21.746667pt;}
.x18{left:23.348000pt;}
.x39{left:24.960000pt;}
.x20{left:25.908000pt;}
.x47{left:26.880000pt;}
.x35{left:27.840000pt;}
.x57{left:28.786667pt;}
.x6{left:31.346667pt;}
.x4a{left:32.640000pt;}
.x56{left:36.146667pt;}
.x38{left:37.462667pt;}
.x11{left:39.028000pt;}
.x29{left:41.302667pt;}
.x1f{left:42.260000pt;}
.x3c{left:43.200000pt;}
.x12{left:45.140000pt;}
.x28{left:47.062667pt;}
.x10{left:48.980000pt;}
.x22{left:50.900000pt;}
.x2e{left:52.826667pt;}
.x55{left:53.773333pt;}
.x1d{left:55.373333pt;}
.x58{left:56.653333pt;}
.x21{left:58.902667pt;}
.x50{left:60.813333pt;}
.x27{left:63.702667pt;}
.x15{left:64.982667pt;}
.x1{left:69.804000pt;}
.x16{left:71.382667pt;}
.x34{left:73.946667pt;}
.x52{left:74.906667pt;}
.x7{left:76.832000pt;}
.x37{left:81.306667pt;}
.x14{left:82.582667pt;}
.x2{left:84.822667pt;}
.x3b{left:88.346667pt;}
.x23{left:91.542667pt;}
.x26{left:93.164000pt;}
.x1e{left:95.062667pt;}
.x2f{left:98.284000pt;}
.x25{left:100.832000pt;}
.x32{left:109.800000pt;}
.x13{left:110.742667pt;}
.x2d{left:115.546667pt;}
.x2b{left:119.720000pt;}
.xb{left:123.264000pt;}
.x5a{left:124.864000pt;}
.x5{left:125.813333pt;}
.x4f{left:144.080000pt;}
.x3{left:162.000000pt;}
.x1b{left:194.640000pt;}
.xc{left:209.373333pt;}
.x2a{left:221.213333pt;}
.x30{left:227.293333pt;}
.x43{left:311.813333pt;}
.x51{left:315.013333pt;}
.xd{left:323.333333pt;}
.x45{left:373.600000pt;}
.x40{left:396.960000pt;}
.xa{left:416.160000pt;}
.x48{left:438.600000pt;}
.x2c{left:461.320000pt;}
.x53{left:465.160000pt;}
.x33{left:467.400000pt;}
.x49{left:483.080000pt;}
.xe{left:529.826667pt;}
.x54{left:543.280000pt;}
.x41{left:555.106667pt;}
.x4d{left:583.906667pt;}
.x3f{left:589.986667pt;}
.x59{left:594.493333pt;}
.x4e{left:607.933333pt;}
.x3e{left:653.373333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xf{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; }
  