
    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_995ce3d389e4472f69efa506.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_1a6b2a3c9fae60ffdf956cb8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_a9ed8e2582d574aa997d4b8a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_e63f314f2b942a7554fc83e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_c066b546d2ba61a394788631.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_c8320edfbe0d3df6af6680bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_c008db87d7289cfab4abacd5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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_ae467af0890aa49530ad153b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:21.599946px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:14.878080px;}
.ls8{letter-spacing:15.301440px;}
.ls7{letter-spacing:15.361920px;}
.ls0{letter-spacing:17.720640px;}
.lsc{letter-spacing:18.550080px;}
.ls5{letter-spacing:18.702720px;}
.ls6{letter-spacing:20.142720px;}
.lsa{letter-spacing:22.680000px;}
.ls9{letter-spacing:25.401600px;}
.lsb{letter-spacing:26.792640px;}
.ls4{letter-spacing:26.853120px;}
.ls1{letter-spacing:39.312000px;}
.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;}
}
.ws49{word-spacing:-54.720000px;}
.ws0{word-spacing:-16.813440px;}
.ws30{word-spacing:-16.752960px;}
.ws4a{word-spacing:-15.212160px;}
.ws2b{word-spacing:-4.354560px;}
.ws16{word-spacing:-3.810240px;}
.ws45{word-spacing:-3.447360px;}
.ws32{word-spacing:-2.963520px;}
.ws2{word-spacing:-2.903040px;}
.ws2e{word-spacing:-2.419200px;}
.ws44{word-spacing:-1.995840px;}
.ws2f{word-spacing:-1.935360px;}
.ws14{word-spacing:-1.512000px;}
.ws10{word-spacing:-1.451520px;}
.ws34{word-spacing:-1.391040px;}
.wse{word-spacing:-1.028160px;}
.ws24{word-spacing:-0.604800px;}
.ws4{word-spacing:-0.544320px;}
.ws48{word-spacing:-0.273600px;}
.ws1{word-spacing:-0.060480px;}
.ws33{word-spacing:-0.054720px;}
.ws5{word-spacing:0.000000px;}
.ws3c{word-spacing:0.120960px;}
.ws27{word-spacing:0.423360px;}
.ws3b{word-spacing:0.604800px;}
.ws3{word-spacing:0.846720px;}
.ws36{word-spacing:1.028160px;}
.ws1d{word-spacing:1.330560px;}
.wsa{word-spacing:1.391040px;}
.ws13{word-spacing:1.451520px;}
.ws1e{word-spacing:1.814400px;}
.ws1a{word-spacing:1.874880px;}
.wsc{word-spacing:2.298240px;}
.ws7{word-spacing:2.782080px;}
.ws25{word-spacing:2.842560px;}
.ws1f{word-spacing:3.265920px;}
.ws40{word-spacing:3.628800px;}
.ws28{word-spacing:3.689280px;}
.ws41{word-spacing:3.749760px;}
.ws35{word-spacing:3.870720px;}
.ws11{word-spacing:4.233600px;}
.ws31{word-spacing:5.201280px;}
.ws15{word-spacing:5.685120px;}
.ws1b{word-spacing:5.745600px;}
.ws12{word-spacing:6.592320px;}
.ws46{word-spacing:6.894720px;}
.ws2d{word-spacing:7.136640px;}
.ws18{word-spacing:8.043840px;}
.ws3f{word-spacing:8.104320px;}
.ws3e{word-spacing:8.527680px;}
.ws19{word-spacing:8.588160px;}
.ws17{word-spacing:9.072000px;}
.ws3d{word-spacing:9.495360px;}
.ws8{word-spacing:9.979200px;}
.ws3a{word-spacing:10.886400px;}
.ws6{word-spacing:11.430720px;}
.wsd{word-spacing:12.882240px;}
.wsb{word-spacing:13.366080px;}
.ws21{word-spacing:15.240960px;}
.ws47{word-spacing:15.540480px;}
.ws29{word-spacing:15.724800px;}
.ws9{word-spacing:15.785280px;}
.ws26{word-spacing:16.148160px;}
.wsf{word-spacing:17.176320px;}
.ws23{word-spacing:18.688320px;}
.ws1c{word-spacing:20.079360px;}
.ws42{word-spacing:22.498560px;}
.ws43{word-spacing:23.950080px;}
.ws2a{word-spacing:27.276480px;}
.ws2c{word-spacing:28.728000px;}
.ws20{word-spacing:51.226560px;}
.ws38{word-spacing:74.813760px;}
.ws37{word-spacing:76.265280px;}
.ws22{word-spacing:79.107840px;}
.ws39{word-spacing:89.208000px;}
._2d{margin-left:-4.777920px;}
._27{margin-left:-3.689280px;}
._1{margin-left:-2.479680px;}
._0{margin-left:-1.028160px;}
._5{width:1.391040px;}
._3{width:2.419200px;}
._20{width:3.447360px;}
._23{width:4.596480px;}
._c{width:5.866560px;}
._1e{width:7.378560px;}
._21{width:8.648640px;}
._13{width:9.979200px;}
._d{width:11.007360px;}
._8{width:12.882240px;}
._f{width:13.910400px;}
._7{width:15.240960px;}
._24{width:16.390080px;}
._25{width:17.599680px;}
._6{width:18.627840px;}
._10{width:20.381760px;}
._22{width:21.409920px;}
._b{width:22.438080px;}
._1a{width:24.131520px;}
._12{width:25.824960px;}
._e{width:27.216000px;}
._a{width:28.486080px;}
._9{width:29.695680px;}
._11{width:31.147200px;}
._14{width:32.417280px;}
._26{width:33.626880px;}
._1f{width:34.715520px;}
._16{width:36.348480px;}
._15{width:37.376640px;}
._1d{width:38.888640px;}
._2f{width:40.098240px;}
._1b{width:41.126400px;}
._1c{width:42.275520px;}
._2e{width:43.545600px;}
._29{width:45.480960px;}
._2c{width:46.872000px;}
._28{width:48.384000px;}
._2a{width:49.775040px;}
._17{width:51.589440px;}
._18{width:52.738560px;}
._19{width:53.766720px;}
._4{width:57.274560px;}
._2b{width:66.225600px;}
._2{width:74.269440px;}
._30{width:93.864960px;}
._31{width:109.347840px;}
.fc1{color:rgb(0,102,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.335000px;}
.yb9{bottom:3.584363px;}
.yb4{bottom:3.585861px;}
.yc7{bottom:3.597861px;}
.yc9{bottom:3.599361px;}
.ycb{bottom:4.319361px;}
.ycd{bottom:4.680861px;}
.yba{bottom:12.224361px;}
.ybb{bottom:12.584361px;}
.yb8{bottom:20.864361px;}
.y2{bottom:314.729361px;}
.y80{bottom:333.449403px;}
.y125{bottom:333.449406px;}
.y5a{bottom:333.449418px;}
.ya9{bottom:333.809348px;}
.yd6{bottom:336.329363px;}
.y166{bottom:336.689361px;}
.ya8{bottom:350.729354px;}
.y7f{bottom:350.729401px;}
.y124{bottom:350.729404px;}
.y59{bottom:350.729416px;}
.y165{bottom:352.169361px;}
.yd5{bottom:353.609361px;}
.y13c{bottom:353.969361px;}
.ya7{bottom:368.045352px;}
.y164{bottom:368.045361px;}
.y123{bottom:368.045403px;}
.y58{bottom:368.045414px;}
.y7e{bottom:368.405406px;}
.y2d{bottom:368.405422px;}
.yd4{bottom:370.925359px;}
.y13b{bottom:371.645331px;}
.y122{bottom:385.325400px;}
.y57{bottom:385.325412px;}
.ya6{bottom:385.685357px;}
.y163{bottom:385.685361px;}
.y13a{bottom:388.925329px;}
.yfe{bottom:391.088400px;}
.ye7{bottom:397.928401px;}
.ya5{bottom:402.608357px;}
.y162{bottom:402.608361px;}
.y7d{bottom:402.608404px;}
.y121{bottom:402.608407px;}
.y56{bottom:402.608419px;}
.y2c{bottom:402.968426px;}
.yd3{bottom:405.488364px;}
.y139{bottom:406.208336px;}
.yfd{bottom:408.368398px;}
.ye6{bottom:415.208399px;}
.ya4{bottom:419.888355px;}
.y161{bottom:419.888361px;}
.y7c{bottom:419.888402px;}
.y120{bottom:419.888405px;}
.y55{bottom:419.888417px;}
.y2b{bottom:420.248424px;}
.yd2{bottom:422.768361px;}
.y138{bottom:423.128341px;}
.yfc{bottom:425.648396px;}
.ye5{bottom:432.488397px;}
.ya3{bottom:436.808360px;}
.y7b{bottom:436.808407px;}
.y11f{bottom:436.808411px;}
.y54{bottom:436.808422px;}
.y160{bottom:437.168361px;}
.yd1{bottom:440.048359px;}
.y137{bottom:440.768346px;}
.yfb{bottom:442.928394px;}
.ye4{bottom:449.768394px;}
.ya2{bottom:454.088358px;}
.y7a{bottom:454.088405px;}
.y11e{bottom:454.088409px;}
.y15f{bottom:454.448361px;}
.y2a{bottom:454.448428px;}
.yd0{bottom:456.968365px;}
.y136{bottom:457.688352px;}
.yfa{bottom:460.208391px;}
.ye3{bottom:467.048392px;}
.ya1{bottom:471.398354px;}
.y79{bottom:471.398401px;}
.y11d{bottom:471.398404px;}
.y15e{bottom:471.758361px;}
.y29{bottom:471.758424px;}
.ycf{bottom:474.278361px;}
.y135{bottom:475.358355px;}
.yf9{bottom:477.518387px;}
.ye2{bottom:484.358388px;}
.y78{bottom:488.678399px;}
.y11c{bottom:488.678402px;}
.ya0{bottom:489.038359px;}
.y15d{bottom:489.038361px;}
.y28{bottom:489.038421px;}
.yce{bottom:490.012500px;}
.y134{bottom:492.278361px;}
.yf8{bottom:494.798385px;}
.ye1{bottom:501.278394px;}
.y15c{bottom:505.958361px;}
.y77{bottom:505.958397px;}
.y11b{bottom:505.958400px;}
.y53{bottom:505.958427px;}
.y9f{bottom:506.318357px;}
.y27{bottom:506.318419px;}
.y133{bottom:509.198357px;}
.ycc{bottom:510.532500px;}
.yf7{bottom:512.078383px;}
.ye0{bottom:518.558392px;}
.y9e{bottom:523.238363px;}
.y76{bottom:523.238395px;}
.y11a{bottom:523.238398px;}
.y52{bottom:523.238425px;}
.y15b{bottom:523.598361px;}
.y26{bottom:523.598417px;}
.y132{bottom:524.678357px;}
.yf6{bottom:529.358381px;}
.yca{bottom:530.694000px;}
.ydf{bottom:535.838390px;}
.y131{bottom:540.518347px;}
.y9d{bottom:540.518361px;}
.y119{bottom:540.518396px;}
.y51{bottom:540.518423px;}
.y75{bottom:540.878400px;}
.y25{bottom:540.878415px;}
.yf5{bottom:546.278387px;}
.yc8{bottom:550.134000px;}
.yde{bottom:553.118387px;}
.y15a{bottom:557.798361px;}
.y118{bottom:557.798394px;}
.y50{bottom:557.798421px;}
.y130{bottom:558.158352px;}
.y9c{bottom:558.158366px;}
.y24{bottom:558.158413px;}
.yf4{bottom:563.558385px;}
.yc6{bottom:568.135500px;}
.ydd{bottom:570.398385px;}
.y9b{bottom:575.123368px;}
.y117{bottom:575.123389px;}
.y4f{bottom:575.123415px;}
.y12f{bottom:575.483347px;}
.y159{bottom:575.483361px;}
.y74{bottom:575.483392px;}
.y23{bottom:575.483408px;}
.yf3{bottom:580.883379px;}
.ydc{bottom:587.723380px;}
.yc5{bottom:588.803371px;}
.y158{bottom:592.403361px;}
.y116{bottom:592.403386px;}
.y4e{bottom:592.403413px;}
.y12e{bottom:592.763345px;}
.y9a{bottom:592.763373px;}
.y22{bottom:592.763406px;}
.yf2{bottom:598.163377px;}
.ydb{bottom:605.003378px;}
.y12d{bottom:609.683351px;}
.y157{bottom:609.683361px;}
.y115{bottom:609.683384px;}
.y4d{bottom:609.683411px;}
.y21{bottom:610.043403px;}
.yf1{bottom:615.443375px;}
.yda{bottom:622.283376px;}
.yc4{bottom:623.003374px;}
.y99{bottom:626.603370px;}
.y73{bottom:626.603387px;}
.y114{bottom:626.603390px;}
.y4c{bottom:626.603417px;}
.y12c{bottom:626.963349px;}
.y156{bottom:626.963361px;}
.y20{bottom:626.963409px;}
.yf0{bottom:632.723373px;}
.yd9{bottom:639.563374px;}
.yc3{bottom:640.283372px;}
.y12b{bottom:643.883354px;}
.y98{bottom:643.883368px;}
.y72{bottom:643.883385px;}
.y113{bottom:643.883388px;}
.y4b{bottom:643.883415px;}
.y155{bottom:644.243361px;}
.y1f{bottom:644.243407px;}
.yef{bottom:650.003371px;}
.yc2{bottom:657.563370px;}
.y97{bottom:661.163366px;}
.y71{bottom:661.163382px;}
.y112{bottom:661.163386px;}
.y4a{bottom:661.163413px;}
.y12a{bottom:661.523359px;}
.y154{bottom:661.523361px;}
.y1e{bottom:661.523405px;}
.yee{bottom:667.283369px;}
.yd8{bottom:674.123369px;}
.yc1{bottom:674.843368px;}
.y153{bottom:678.443361px;}
.y96{bottom:678.443363px;}
.y129{bottom:678.443365px;}
.y70{bottom:678.443380px;}
.y111{bottom:678.443384px;}
.y49{bottom:678.443410px;}
.y1d{bottom:678.803403px;}
.yed{bottom:684.593365px;}
.yd7{bottom:691.793373px;}
.y95{bottom:695.753359px;}
.y128{bottom:695.753361px;}
.y6f{bottom:695.753376px;}
.y110{bottom:695.753379px;}
.y48{bottom:695.753406px;}
.y152{bottom:696.113361px;}
.y1c{bottom:696.113399px;}
.yec{bottom:701.873362px;}
.yc0{bottom:709.433362px;}
.y94{bottom:713.033357px;}
.y6e{bottom:713.033374px;}
.y10f{bottom:713.033377px;}
.y47{bottom:713.033404px;}
.y151{bottom:713.393361px;}
.y127{bottom:713.393366px;}
.y1b{bottom:713.393397px;}
.yeb{bottom:719.153360px;}
.ybf{bottom:726.713360px;}
.y93{bottom:730.313355px;}
.y150{bottom:730.313361px;}
.y6d{bottom:730.313372px;}
.y10e{bottom:730.313375px;}
.y46{bottom:730.313402px;}
.y1a{bottom:730.673394px;}
.yea{bottom:736.433358px;}
.ybe{bottom:743.633365px;}
.y14f{bottom:747.593347px;}
.y92{bottom:747.593353px;}
.y6c{bottom:747.593370px;}
.y10d{bottom:747.593373px;}
.y45{bottom:747.593400px;}
.y19{bottom:747.953392px;}
.ybd{bottom:760.913363px;}
.y91{bottom:764.873351px;}
.y10c{bottom:764.873371px;}
.y44{bottom:764.873398px;}
.y14e{bottom:765.233352px;}
.y6b{bottom:765.233375px;}
.y18{bottom:765.233390px;}
.ye9{bottom:770.633362px;}
.ybc{bottom:778.193361px;}
.y90{bottom:782.153349px;}
.y14d{bottom:782.153358px;}
.y10b{bottom:782.153369px;}
.y43{bottom:782.153396px;}
.y126{bottom:782.513373px;}
.y17{bottom:782.513388px;}
.ye8{bottom:788.303365px;}
.yb7{bottom:793.974000px;}
.y8f{bottom:799.463344px;}
.y14c{bottom:799.463354px;}
.y10a{bottom:799.463365px;}
.y6a{bottom:799.463376px;}
.y42{bottom:799.463391px;}
.y16{bottom:799.823384px;}
.y8e{bottom:816.383350px;}
.y109{bottom:816.383370px;}
.y69{bottom:816.383382px;}
.y41{bottom:816.383397px;}
.y14b{bottom:816.743351px;}
.y15{bottom:816.743390px;}
.yb6{bottom:829.252500px;}
.y14a{bottom:833.663357px;}
.y108{bottom:833.663368px;}
.y68{bottom:833.663380px;}
.y40{bottom:833.663395px;}
.y8d{bottom:834.023355px;}
.y14{bottom:834.023387px;}
.yb5{bottom:847.252500px;}
.y8c{bottom:850.943361px;}
.y67{bottom:850.943378px;}
.y3f{bottom:850.943393px;}
.y149{bottom:851.303362px;}
.y107{bottom:851.303373px;}
.y13{bottom:851.303385px;}
.yb3{bottom:865.252500px;}
.y8b{bottom:868.223361px;}
.y148{bottom:868.223368px;}
.y66{bottom:868.223376px;}
.y3e{bottom:868.223391px;}
.y12{bottom:868.583383px;}
.y8a{bottom:885.503361px;}
.y147{bottom:885.503366px;}
.y65{bottom:885.503373px;}
.y106{bottom:885.503377px;}
.y3d{bottom:885.503389px;}
.yb2{bottom:885.863375px;}
.y11{bottom:885.863381px;}
.y64{bottom:902.828368px;}
.y105{bottom:902.828372px;}
.y3c{bottom:902.828384px;}
.y89{bottom:903.188361px;}
.y146{bottom:903.188368px;}
.y10{bottom:903.188376px;}
.y63{bottom:920.108366px;}
.y104{bottom:920.108370px;}
.yb1{bottom:920.108376px;}
.y3b{bottom:920.108381px;}
.y88{bottom:920.468361px;}
.y145{bottom:920.468366px;}
.yf{bottom:920.468374px;}
.y62{bottom:937.388364px;}
.y103{bottom:937.388367px;}
.yb0{bottom:937.388374px;}
.y3a{bottom:937.388379px;}
.y87{bottom:937.748361px;}
.y144{bottom:937.748364px;}
.ye{bottom:937.748372px;}
.y61{bottom:954.668362px;}
.y102{bottom:954.668365px;}
.yaf{bottom:954.668372px;}
.y39{bottom:954.668377px;}
.y143{bottom:955.028361px;}
.yd{bottom:955.028369px;}
.y60{bottom:971.948360px;}
.y86{bottom:971.948361px;}
.y101{bottom:971.948363px;}
.y142{bottom:971.948367px;}
.yae{bottom:971.948369px;}
.y38{bottom:971.948375px;}
.yc{bottom:972.308367px;}
.y5f{bottom:989.228358px;}
.y100{bottom:989.228359px;}
.y141{bottom:989.228365px;}
.yad{bottom:989.228367px;}
.y37{bottom:989.228373px;}
.y85{bottom:989.588361px;}
.yb{bottom:989.588365px;}
.y140{bottom:1006.538338px;}
.y5e{bottom:1006.538354px;}
.yff{bottom:1006.538355px;}
.yac{bottom:1006.538363px;}
.y36{bottom:1006.538369px;}
.ya{bottom:1006.898361px;}
.y13f{bottom:1023.458344px;}
.y5d{bottom:1023.458359px;}
.y84{bottom:1023.458361px;}
.y35{bottom:1023.458374px;}
.yab{bottom:1023.818361px;}
.y83{bottom:1040.738361px;}
.y34{bottom:1040.738372px;}
.y13e{bottom:1041.098349px;}
.y9{bottom:1041.098361px;}
.y5c{bottom:1041.098364px;}
.y13d{bottom:1058.018355px;}
.y33{bottom:1058.018370px;}
.y8{bottom:1058.378361px;}
.y82{bottom:1058.378362px;}
.y32{bottom:1075.298368px;}
.yaa{bottom:1075.658360px;}
.y7{bottom:1075.658375px;}
.y31{bottom:1092.578366px;}
.y81{bottom:1092.938358px;}
.y6{bottom:1092.938373px;}
.y30{bottom:1109.903361px;}
.y5{bottom:1110.263368px;}
.y2f{bottom:1127.183359px;}
.y2e{bottom:1144.463356px;}
.y4{bottom:1144.823364px;}
.y5b{bottom:1161.743354px;}
.y3{bottom:1162.103361px;}
.h8{height:17.263500px;}
.h5{height:17.268000px;}
.h7{height:17.308500px;}
.h9{height:18.703500px;}
.ha{height:19.423500px;}
.hb{height:19.786500px;}
.h6{height:34.546500px;}
.he{height:37.373760px;}
.h10{height:40.547520px;}
.h3{height:44.815680px;}
.hf{height:44.815770px;}
.hc{height:50.410026px;}
.hd{height:50.410087px;}
.h4{height:54.219375px;}
.h2{height:1261.499646px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w6{width:84.286500px;}
.w5{width:95.062500px;}
.w3{width:95.431500px;}
.wb{width:100.125000px;}
.w9{width:101.232000px;}
.w8{width:104.425500px;}
.w4{width:106.236000px;}
.wa{width:107.659500px;}
.wc{width:133.605000px;}
.w7{width:165.328500px;}
.w2{width:892.500000px;}
.w0{width:892.913387px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.266500px;}
.x6{left:11.161500px;}
.x13{left:14.386500px;}
.x15{left:15.465000px;}
.x4{left:16.920000px;}
.x10{left:21.598500px;}
.xd{left:28.471500px;}
.xb{left:33.120000px;}
.xe{left:34.201500px;}
.x16{left:35.673000px;}
.xc{left:38.161500px;}
.x2{left:84.995996px;}
.xa{left:98.326500px;}
.xf{left:232.306500px;}
.x3{left:264.030000px;}
.x11{left:337.107000px;}
.x1{left:349.020000px;}
.x5{left:359.818500px;}
.x12{left:438.703500px;}
.x7{left:466.423500px;}
.x14{left:546.750000px;}
.x9{left:561.867000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.199952pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:13.224960pt;}
.ls8{letter-spacing:13.601280pt;}
.ls7{letter-spacing:13.655040pt;}
.ls0{letter-spacing:15.751680pt;}
.lsc{letter-spacing:16.488960pt;}
.ls5{letter-spacing:16.624640pt;}
.ls6{letter-spacing:17.904640pt;}
.lsa{letter-spacing:20.160000pt;}
.ls9{letter-spacing:22.579200pt;}
.lsb{letter-spacing:23.815680pt;}
.ls4{letter-spacing:23.869440pt;}
.ls1{letter-spacing:34.944000pt;}
.ws49{word-spacing:-48.640000pt;}
.ws0{word-spacing:-14.945280pt;}
.ws30{word-spacing:-14.891520pt;}
.ws4a{word-spacing:-13.521920pt;}
.ws2b{word-spacing:-3.870720pt;}
.ws16{word-spacing:-3.386880pt;}
.ws45{word-spacing:-3.064320pt;}
.ws32{word-spacing:-2.634240pt;}
.ws2{word-spacing:-2.580480pt;}
.ws2e{word-spacing:-2.150400pt;}
.ws44{word-spacing:-1.774080pt;}
.ws2f{word-spacing:-1.720320pt;}
.ws14{word-spacing:-1.344000pt;}
.ws10{word-spacing:-1.290240pt;}
.ws34{word-spacing:-1.236480pt;}
.wse{word-spacing:-0.913920pt;}
.ws24{word-spacing:-0.537600pt;}
.ws4{word-spacing:-0.483840pt;}
.ws48{word-spacing:-0.243200pt;}
.ws1{word-spacing:-0.053760pt;}
.ws33{word-spacing:-0.048640pt;}
.ws5{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.107520pt;}
.ws27{word-spacing:0.376320pt;}
.ws3b{word-spacing:0.537600pt;}
.ws3{word-spacing:0.752640pt;}
.ws36{word-spacing:0.913920pt;}
.ws1d{word-spacing:1.182720pt;}
.wsa{word-spacing:1.236480pt;}
.ws13{word-spacing:1.290240pt;}
.ws1e{word-spacing:1.612800pt;}
.ws1a{word-spacing:1.666560pt;}
.wsc{word-spacing:2.042880pt;}
.ws7{word-spacing:2.472960pt;}
.ws25{word-spacing:2.526720pt;}
.ws1f{word-spacing:2.903040pt;}
.ws40{word-spacing:3.225600pt;}
.ws28{word-spacing:3.279360pt;}
.ws41{word-spacing:3.333120pt;}
.ws35{word-spacing:3.440640pt;}
.ws11{word-spacing:3.763200pt;}
.ws31{word-spacing:4.623360pt;}
.ws15{word-spacing:5.053440pt;}
.ws1b{word-spacing:5.107200pt;}
.ws12{word-spacing:5.859840pt;}
.ws46{word-spacing:6.128640pt;}
.ws2d{word-spacing:6.343680pt;}
.ws18{word-spacing:7.150080pt;}
.ws3f{word-spacing:7.203840pt;}
.ws3e{word-spacing:7.580160pt;}
.ws19{word-spacing:7.633920pt;}
.ws17{word-spacing:8.064000pt;}
.ws3d{word-spacing:8.440320pt;}
.ws8{word-spacing:8.870400pt;}
.ws3a{word-spacing:9.676800pt;}
.ws6{word-spacing:10.160640pt;}
.wsd{word-spacing:11.450880pt;}
.wsb{word-spacing:11.880960pt;}
.ws21{word-spacing:13.547520pt;}
.ws47{word-spacing:13.813760pt;}
.ws29{word-spacing:13.977600pt;}
.ws9{word-spacing:14.031360pt;}
.ws26{word-spacing:14.353920pt;}
.wsf{word-spacing:15.267840pt;}
.ws23{word-spacing:16.611840pt;}
.ws1c{word-spacing:17.848320pt;}
.ws42{word-spacing:19.998720pt;}
.ws43{word-spacing:21.288960pt;}
.ws2a{word-spacing:24.245760pt;}
.ws2c{word-spacing:25.536000pt;}
.ws20{word-spacing:45.534720pt;}
.ws38{word-spacing:66.501120pt;}
.ws37{word-spacing:67.791360pt;}
.ws22{word-spacing:70.318080pt;}
.ws39{word-spacing:79.296000pt;}
._2d{margin-left:-4.247040pt;}
._27{margin-left:-3.279360pt;}
._1{margin-left:-2.204160pt;}
._0{margin-left:-0.913920pt;}
._5{width:1.236480pt;}
._3{width:2.150400pt;}
._20{width:3.064320pt;}
._23{width:4.085760pt;}
._c{width:5.214720pt;}
._1e{width:6.558720pt;}
._21{width:7.687680pt;}
._13{width:8.870400pt;}
._d{width:9.784320pt;}
._8{width:11.450880pt;}
._f{width:12.364800pt;}
._7{width:13.547520pt;}
._24{width:14.568960pt;}
._25{width:15.644160pt;}
._6{width:16.558080pt;}
._10{width:18.117120pt;}
._22{width:19.031040pt;}
._b{width:19.944960pt;}
._1a{width:21.450240pt;}
._12{width:22.955520pt;}
._e{width:24.192000pt;}
._a{width:25.320960pt;}
._9{width:26.396160pt;}
._11{width:27.686400pt;}
._14{width:28.815360pt;}
._26{width:29.890560pt;}
._1f{width:30.858240pt;}
._16{width:32.309760pt;}
._15{width:33.223680pt;}
._1d{width:34.567680pt;}
._2f{width:35.642880pt;}
._1b{width:36.556800pt;}
._1c{width:37.578240pt;}
._2e{width:38.707200pt;}
._29{width:40.427520pt;}
._2c{width:41.664000pt;}
._28{width:43.008000pt;}
._2a{width:44.244480pt;}
._17{width:45.857280pt;}
._18{width:46.878720pt;}
._19{width:47.792640pt;}
._4{width:50.910720pt;}
._2b{width:58.867200pt;}
._2{width:66.017280pt;}
._30{width:83.435520pt;}
._31{width:97.198080pt;}
.fs1{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.186667pt;}
.yb9{bottom:3.186101pt;}
.yb4{bottom:3.187432pt;}
.yc7{bottom:3.198099pt;}
.yc9{bottom:3.199432pt;}
.ycb{bottom:3.839432pt;}
.ycd{bottom:4.160765pt;}
.yba{bottom:10.866099pt;}
.ybb{bottom:11.186099pt;}
.yb8{bottom:18.546099pt;}
.y2{bottom:279.759432pt;}
.y80{bottom:296.399469pt;}
.y125{bottom:296.399472pt;}
.y5a{bottom:296.399483pt;}
.ya9{bottom:296.719420pt;}
.yd6{bottom:298.959433pt;}
.y166{bottom:299.279432pt;}
.ya8{bottom:311.759425pt;}
.y7f{bottom:311.759467pt;}
.y124{bottom:311.759470pt;}
.y59{bottom:311.759481pt;}
.y165{bottom:313.039432pt;}
.yd5{bottom:314.319432pt;}
.y13c{bottom:314.639432pt;}
.ya7{bottom:327.151424pt;}
.y164{bottom:327.151432pt;}
.y123{bottom:327.151469pt;}
.y58{bottom:327.151479pt;}
.y7e{bottom:327.471472pt;}
.y2d{bottom:327.471486pt;}
.yd4{bottom:329.711430pt;}
.y13b{bottom:330.351405pt;}
.y122{bottom:342.511467pt;}
.y57{bottom:342.511477pt;}
.ya6{bottom:342.831429pt;}
.y163{bottom:342.831432pt;}
.y13a{bottom:345.711403pt;}
.yfe{bottom:347.634133pt;}
.ye7{bottom:353.714134pt;}
.ya5{bottom:357.874095pt;}
.y162{bottom:357.874099pt;}
.y7d{bottom:357.874137pt;}
.y121{bottom:357.874140pt;}
.y56{bottom:357.874150pt;}
.y2c{bottom:358.194157pt;}
.yd3{bottom:360.434101pt;}
.y139{bottom:361.074076pt;}
.yfd{bottom:362.994132pt;}
.ye6{bottom:369.074132pt;}
.ya4{bottom:373.234093pt;}
.y161{bottom:373.234099pt;}
.y7c{bottom:373.234135pt;}
.y120{bottom:373.234138pt;}
.y55{bottom:373.234148pt;}
.y2b{bottom:373.554155pt;}
.yd2{bottom:375.794099pt;}
.y138{bottom:376.114081pt;}
.yfc{bottom:378.354130pt;}
.ye5{bottom:384.434130pt;}
.ya3{bottom:388.274098pt;}
.y7b{bottom:388.274140pt;}
.y11f{bottom:388.274143pt;}
.y54{bottom:388.274153pt;}
.y160{bottom:388.594099pt;}
.yd1{bottom:391.154097pt;}
.y137{bottom:391.794086pt;}
.yfb{bottom:393.714128pt;}
.ye4{bottom:399.794128pt;}
.ya2{bottom:403.634096pt;}
.y7a{bottom:403.634138pt;}
.y11e{bottom:403.634141pt;}
.y15f{bottom:403.954099pt;}
.y2a{bottom:403.954158pt;}
.yd0{bottom:406.194102pt;}
.y136{bottom:406.834091pt;}
.yfa{bottom:409.074126pt;}
.ye3{bottom:415.154126pt;}
.ya1{bottom:419.020759pt;}
.y79{bottom:419.020801pt;}
.y11d{bottom:419.020804pt;}
.y15e{bottom:419.340765pt;}
.y29{bottom:419.340821pt;}
.ycf{bottom:421.580765pt;}
.y135{bottom:422.540760pt;}
.yf9{bottom:424.460789pt;}
.ye2{bottom:430.540789pt;}
.y78{bottom:434.380799pt;}
.y11c{bottom:434.380802pt;}
.ya0{bottom:434.700764pt;}
.y15d{bottom:434.700765pt;}
.y28{bottom:434.700819pt;}
.yce{bottom:435.566667pt;}
.y134{bottom:437.580765pt;}
.yf8{bottom:439.820787pt;}
.ye1{bottom:445.580795pt;}
.y15c{bottom:449.740765pt;}
.y77{bottom:449.740797pt;}
.y11b{bottom:449.740800pt;}
.y53{bottom:449.740824pt;}
.y9f{bottom:450.060762pt;}
.y27{bottom:450.060817pt;}
.y133{bottom:452.620761pt;}
.ycc{bottom:453.806667pt;}
.yf7{bottom:455.180785pt;}
.ye0{bottom:460.940793pt;}
.y9e{bottom:465.100767pt;}
.y76{bottom:465.100795pt;}
.y11a{bottom:465.100798pt;}
.y52{bottom:465.100822pt;}
.y15b{bottom:465.420765pt;}
.y26{bottom:465.420815pt;}
.y132{bottom:466.380762pt;}
.yf6{bottom:470.540783pt;}
.yca{bottom:471.728000pt;}
.ydf{bottom:476.300791pt;}
.y131{bottom:480.460753pt;}
.y9d{bottom:480.460765pt;}
.y119{bottom:480.460796pt;}
.y51{bottom:480.460820pt;}
.y75{bottom:480.780800pt;}
.y25{bottom:480.780813pt;}
.yf5{bottom:485.580788pt;}
.yc8{bottom:489.008000pt;}
.yde{bottom:491.660789pt;}
.y15a{bottom:495.820765pt;}
.y118{bottom:495.820794pt;}
.y50{bottom:495.820818pt;}
.y130{bottom:496.140757pt;}
.y9c{bottom:496.140769pt;}
.y24{bottom:496.140811pt;}
.yf4{bottom:500.940786pt;}
.yc6{bottom:505.009333pt;}
.ydd{bottom:507.020787pt;}
.y9b{bottom:511.220772pt;}
.y117{bottom:511.220790pt;}
.y4f{bottom:511.220814pt;}
.y12f{bottom:511.540753pt;}
.y159{bottom:511.540765pt;}
.y74{bottom:511.540793pt;}
.y23{bottom:511.540807pt;}
.yf3{bottom:516.340782pt;}
.ydc{bottom:522.420782pt;}
.yc5{bottom:523.380774pt;}
.y158{bottom:526.580765pt;}
.y116{bottom:526.580788pt;}
.y4e{bottom:526.580812pt;}
.y12e{bottom:526.900751pt;}
.y9a{bottom:526.900776pt;}
.y22{bottom:526.900805pt;}
.yf2{bottom:531.700780pt;}
.ydb{bottom:537.780780pt;}
.y12d{bottom:541.940756pt;}
.y157{bottom:541.940765pt;}
.y115{bottom:541.940786pt;}
.y4d{bottom:541.940810pt;}
.y21{bottom:542.260803pt;}
.yf1{bottom:547.060778pt;}
.yda{bottom:553.140779pt;}
.yc4{bottom:553.780777pt;}
.y99{bottom:556.980773pt;}
.y73{bottom:556.980788pt;}
.y114{bottom:556.980791pt;}
.y4c{bottom:556.980815pt;}
.y12c{bottom:557.300754pt;}
.y156{bottom:557.300765pt;}
.y20{bottom:557.300808pt;}
.yf0{bottom:562.420776pt;}
.yd9{bottom:568.500777pt;}
.yc3{bottom:569.140775pt;}
.y12b{bottom:572.340759pt;}
.y98{bottom:572.340771pt;}
.y72{bottom:572.340786pt;}
.y113{bottom:572.340789pt;}
.y4b{bottom:572.340813pt;}
.y155{bottom:572.660765pt;}
.y1f{bottom:572.660806pt;}
.yef{bottom:577.780774pt;}
.yc2{bottom:584.500773pt;}
.y97{bottom:587.700769pt;}
.y71{bottom:587.700784pt;}
.y112{bottom:587.700787pt;}
.y4a{bottom:587.700811pt;}
.y12a{bottom:588.020764pt;}
.y154{bottom:588.020765pt;}
.y1e{bottom:588.020804pt;}
.yee{bottom:593.140772pt;}
.yd8{bottom:599.220773pt;}
.yc1{bottom:599.860772pt;}
.y153{bottom:603.060765pt;}
.y96{bottom:603.060767pt;}
.y129{bottom:603.060769pt;}
.y70{bottom:603.060782pt;}
.y111{bottom:603.060785pt;}
.y49{bottom:603.060809pt;}
.y1d{bottom:603.380802pt;}
.yed{bottom:608.527435pt;}
.yd7{bottom:614.927442pt;}
.y95{bottom:618.447431pt;}
.y128{bottom:618.447432pt;}
.y6f{bottom:618.447445pt;}
.y110{bottom:618.447448pt;}
.y48{bottom:618.447472pt;}
.y152{bottom:618.767432pt;}
.y1c{bottom:618.767465pt;}
.yec{bottom:623.887433pt;}
.yc0{bottom:630.607433pt;}
.y94{bottom:633.807429pt;}
.y6e{bottom:633.807444pt;}
.y10f{bottom:633.807447pt;}
.y47{bottom:633.807470pt;}
.y151{bottom:634.127432pt;}
.y127{bottom:634.127436pt;}
.y1b{bottom:634.127464pt;}
.yeb{bottom:639.247431pt;}
.ybf{bottom:645.967431pt;}
.y93{bottom:649.167427pt;}
.y150{bottom:649.167432pt;}
.y6d{bottom:649.167442pt;}
.y10e{bottom:649.167445pt;}
.y46{bottom:649.167468pt;}
.y1a{bottom:649.487462pt;}
.yea{bottom:654.607429pt;}
.ybe{bottom:661.007436pt;}
.y14f{bottom:664.527419pt;}
.y92{bottom:664.527425pt;}
.y6c{bottom:664.527440pt;}
.y10d{bottom:664.527443pt;}
.y45{bottom:664.527467pt;}
.y19{bottom:664.847460pt;}
.ybd{bottom:676.367434pt;}
.y91{bottom:679.887423pt;}
.y10c{bottom:679.887441pt;}
.y44{bottom:679.887465pt;}
.y14e{bottom:680.207424pt;}
.y6b{bottom:680.207444pt;}
.y18{bottom:680.207458pt;}
.ye9{bottom:685.007433pt;}
.ybc{bottom:691.727432pt;}
.y90{bottom:695.247421pt;}
.y14d{bottom:695.247429pt;}
.y10b{bottom:695.247439pt;}
.y43{bottom:695.247463pt;}
.y126{bottom:695.567442pt;}
.y17{bottom:695.567456pt;}
.ye8{bottom:700.714102pt;}
.yb7{bottom:705.754667pt;}
.y8f{bottom:710.634084pt;}
.y14c{bottom:710.634092pt;}
.y10a{bottom:710.634102pt;}
.y6a{bottom:710.634112pt;}
.y42{bottom:710.634126pt;}
.y16{bottom:710.954119pt;}
.y8e{bottom:725.674089pt;}
.y109{bottom:725.674107pt;}
.y69{bottom:725.674117pt;}
.y41{bottom:725.674131pt;}
.y14b{bottom:725.994090pt;}
.y15{bottom:725.994124pt;}
.yb6{bottom:737.113333pt;}
.y14a{bottom:741.034095pt;}
.y108{bottom:741.034105pt;}
.y68{bottom:741.034116pt;}
.y40{bottom:741.034129pt;}
.y8d{bottom:741.354094pt;}
.y14{bottom:741.354122pt;}
.yb5{bottom:753.113333pt;}
.y8c{bottom:756.394099pt;}
.y67{bottom:756.394114pt;}
.y3f{bottom:756.394127pt;}
.y149{bottom:756.714100pt;}
.y107{bottom:756.714110pt;}
.y13{bottom:756.714120pt;}
.yb3{bottom:769.113333pt;}
.y8b{bottom:771.754099pt;}
.y148{bottom:771.754105pt;}
.y66{bottom:771.754112pt;}
.y3e{bottom:771.754125pt;}
.y12{bottom:772.074118pt;}
.y8a{bottom:787.114099pt;}
.y147{bottom:787.114103pt;}
.y65{bottom:787.114110pt;}
.y106{bottom:787.114113pt;}
.y3d{bottom:787.114123pt;}
.yb2{bottom:787.434111pt;}
.y11{bottom:787.434116pt;}
.y64{bottom:802.514105pt;}
.y105{bottom:802.514108pt;}
.y3c{bottom:802.514119pt;}
.y89{bottom:802.834099pt;}
.y146{bottom:802.834105pt;}
.y10{bottom:802.834112pt;}
.y63{bottom:817.874103pt;}
.y104{bottom:817.874106pt;}
.yb1{bottom:817.874112pt;}
.y3b{bottom:817.874117pt;}
.y88{bottom:818.194099pt;}
.y145{bottom:818.194103pt;}
.yf{bottom:818.194110pt;}
.y62{bottom:833.234101pt;}
.y103{bottom:833.234104pt;}
.yb0{bottom:833.234110pt;}
.y3a{bottom:833.234115pt;}
.y87{bottom:833.554099pt;}
.y144{bottom:833.554101pt;}
.ye{bottom:833.554108pt;}
.y61{bottom:848.594100pt;}
.y102{bottom:848.594103pt;}
.yaf{bottom:848.594108pt;}
.y39{bottom:848.594113pt;}
.y143{bottom:848.914099pt;}
.yd{bottom:848.914106pt;}
.y60{bottom:863.954098pt;}
.y86{bottom:863.954099pt;}
.y101{bottom:863.954101pt;}
.y142{bottom:863.954104pt;}
.yae{bottom:863.954106pt;}
.y38{bottom:863.954111pt;}
.yc{bottom:864.274104pt;}
.y5f{bottom:879.314096pt;}
.y100{bottom:879.314097pt;}
.y141{bottom:879.314102pt;}
.yad{bottom:879.314104pt;}
.y37{bottom:879.314109pt;}
.y85{bottom:879.634099pt;}
.yb{bottom:879.634102pt;}
.y140{bottom:894.700745pt;}
.y5e{bottom:894.700759pt;}
.yff{bottom:894.700760pt;}
.yac{bottom:894.700767pt;}
.y36{bottom:894.700772pt;}
.ya{bottom:895.020765pt;}
.y13f{bottom:909.740750pt;}
.y5d{bottom:909.740764pt;}
.y84{bottom:909.740765pt;}
.y35{bottom:909.740777pt;}
.yab{bottom:910.060765pt;}
.y83{bottom:925.100765pt;}
.y34{bottom:925.100775pt;}
.y13e{bottom:925.420755pt;}
.y9{bottom:925.420765pt;}
.y5c{bottom:925.420768pt;}
.y13d{bottom:940.460760pt;}
.y33{bottom:940.460773pt;}
.y8{bottom:940.780765pt;}
.y82{bottom:940.780766pt;}
.y32{bottom:955.820772pt;}
.yaa{bottom:956.140764pt;}
.y7{bottom:956.140778pt;}
.y31{bottom:971.180770pt;}
.y81{bottom:971.500763pt;}
.y6{bottom:971.500776pt;}
.y30{bottom:986.580765pt;}
.y5{bottom:986.900772pt;}
.y2f{bottom:1001.940763pt;}
.y2e{bottom:1017.300761pt;}
.y4{bottom:1017.620768pt;}
.y5b{bottom:1032.660759pt;}
.y3{bottom:1032.980766pt;}
.h8{height:15.345333pt;}
.h5{height:15.349333pt;}
.h7{height:15.385333pt;}
.h9{height:16.625333pt;}
.ha{height:17.265333pt;}
.hb{height:17.588000pt;}
.h6{height:30.708000pt;}
.he{height:33.221120pt;}
.h10{height:36.042240pt;}
.h3{height:39.836160pt;}
.hf{height:39.836240pt;}
.hc{height:44.808912pt;}
.hd{height:44.808966pt;}
.h4{height:48.195000pt;}
.h2{height:1121.333019pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w6{width:74.921333pt;}
.w5{width:84.500000pt;}
.w3{width:84.828000pt;}
.wb{width:89.000000pt;}
.w9{width:89.984000pt;}
.w8{width:92.822667pt;}
.w4{width:94.432000pt;}
.wa{width:95.697333pt;}
.wc{width:118.760000pt;}
.w7{width:146.958667pt;}
.w2{width:793.333333pt;}
.w0{width:793.700788pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.348000pt;}
.x6{left:9.921333pt;}
.x13{left:12.788000pt;}
.x15{left:13.746667pt;}
.x4{left:15.040000pt;}
.x10{left:19.198667pt;}
.xd{left:25.308000pt;}
.xb{left:29.440000pt;}
.xe{left:30.401333pt;}
.x16{left:31.709333pt;}
.xc{left:33.921333pt;}
.x2{left:75.551997pt;}
.xa{left:87.401333pt;}
.xf{left:206.494667pt;}
.x3{left:234.693333pt;}
.x11{left:299.650667pt;}
.x1{left:310.240000pt;}
.x5{left:319.838667pt;}
.x12{left:389.958667pt;}
.x7{left:414.598667pt;}
.x14{left:486.000000pt;}
.x9{left:499.437333pt;}
}




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