
    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_b094a588a2b3e95e990f5707.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_34c47303e88adf571aa6a9ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_b8e84776753d112eb6305cbc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_46e85897c59ddd389847cdf2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_ec5b64f7ebd46687e8f42a63.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fe2bad187c6063006ddfbd7c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_110ee1b127d1392a11ca4f88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_b094a588a2b3e95e990f5707.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_25db3707de1e609fe226b46d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_9b59f92bb06d60793566bfbb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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;}
.ls1{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws71{word-spacing:-18.000000px;}
.ws85{word-spacing:-16.500000px;}
.ws41{word-spacing:-10.008000px;}
.ws78{word-spacing:-6.696000px;}
.ws7f{word-spacing:-5.832000px;}
.ws26{word-spacing:-5.544000px;}
.ws2{word-spacing:-5.451000px;}
.ws35{word-spacing:-5.400000px;}
.ws10{word-spacing:-4.896000px;}
.ws48{word-spacing:-4.752000px;}
.ws42{word-spacing:-4.608000px;}
.ws63{word-spacing:-4.392000px;}
.ws16{word-spacing:-3.888000px;}
.wsb{word-spacing:-3.816000px;}
.ws18{word-spacing:-3.528000px;}
.ws50{word-spacing:-3.312000px;}
.ws1e{word-spacing:-3.096000px;}
.ws3f{word-spacing:-2.952000px;}
.ws5d{word-spacing:-2.880000px;}
.ws79{word-spacing:-2.736000px;}
.ws1c{word-spacing:-2.232000px;}
.ws43{word-spacing:-2.088000px;}
.ws4f{word-spacing:-2.016000px;}
.ws1{word-spacing:-2.001000px;}
.ws65{word-spacing:-1.944000px;}
.ws61{word-spacing:-1.800000px;}
.ws11{word-spacing:-1.584000px;}
.ws2f{word-spacing:-1.512000px;}
.ws7d{word-spacing:-1.296000px;}
.ws6{word-spacing:-0.936000px;}
.ws33{word-spacing:-0.792000px;}
.ws80{word-spacing:-0.720000px;}
.ws3a{word-spacing:-0.504000px;}
.ws7b{word-spacing:-0.360000px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.144000px;}
.ws4b{word-spacing:0.216000px;}
.ws67{word-spacing:0.360000px;}
.ws6a{word-spacing:0.432000px;}
.ws13{word-spacing:0.720000px;}
.ws6b{word-spacing:0.792000px;}
.ws6e{word-spacing:1.296000px;}
.ws7a{word-spacing:1.512000px;}
.ws74{word-spacing:1.584000px;}
.ws1b{word-spacing:1.656000px;}
.ws25{word-spacing:2.088000px;}
.ws81{word-spacing:2.232000px;}
.ws29{word-spacing:2.520000px;}
.ws6f{word-spacing:2.592000px;}
.ws27{word-spacing:3.096000px;}
.wsf{word-spacing:3.168000px;}
.ws69{word-spacing:3.384000px;}
.ws5a{word-spacing:3.528000px;}
.ws51{word-spacing:3.744000px;}
.ws2b{word-spacing:3.816000px;}
.ws19{word-spacing:4.176000px;}
.ws20{word-spacing:4.320000px;}
.ws82{word-spacing:4.896000px;}
.ws55{word-spacing:5.256000px;}
.ws3{word-spacing:5.472000px;}
.ws28{word-spacing:5.544000px;}
.ws76{word-spacing:5.616000px;}
.ws77{word-spacing:5.688000px;}
.ws1d{word-spacing:5.760000px;}
.ws56{word-spacing:5.832000px;}
.ws5f{word-spacing:6.120000px;}
.ws5b{word-spacing:6.264000px;}
.ws3c{word-spacing:6.480000px;}
.ws34{word-spacing:6.552000px;}
.ws31{word-spacing:6.624000px;}
.ws1f{word-spacing:6.840000px;}
.ws1a{word-spacing:6.984000px;}
.ws47{word-spacing:7.200000px;}
.ws7e{word-spacing:7.272000px;}
.ws2d{word-spacing:7.344000px;}
.ws6c{word-spacing:7.416000px;}
.ws36{word-spacing:7.560000px;}
.ws8{word-spacing:7.704000px;}
.ws4{word-spacing:8.208000px;}
.ws66{word-spacing:8.280000px;}
.ws24{word-spacing:8.640000px;}
.ws57{word-spacing:8.784000px;}
.ws44{word-spacing:8.856000px;}
.ws5c{word-spacing:9.216000px;}
.ws30{word-spacing:9.504000px;}
.ws15{word-spacing:9.936000px;}
.ws5{word-spacing:10.008000px;}
.wsd{word-spacing:10.152000px;}
.wse{word-spacing:10.440000px;}
.ws12{word-spacing:10.584000px;}
.wsc{word-spacing:10.728000px;}
.ws4d{word-spacing:10.800000px;}
.ws68{word-spacing:10.872000px;}
.ws59{word-spacing:11.016000px;}
.ws84{word-spacing:11.088000px;}
.ws70{word-spacing:11.448000px;}
.ws9{word-spacing:11.592000px;}
.ws64{word-spacing:11.808000px;}
.ws5e{word-spacing:11.880000px;}
.ws14{word-spacing:11.952000px;}
.ws4c{word-spacing:12.168000px;}
.wsa{word-spacing:12.240000px;}
.ws40{word-spacing:12.384000px;}
.ws73{word-spacing:12.456000px;}
.ws72{word-spacing:12.600000px;}
.ws83{word-spacing:12.744000px;}
.ws7{word-spacing:13.104000px;}
.ws6d{word-spacing:13.392000px;}
.ws60{word-spacing:13.680000px;}
.ws52{word-spacing:14.400000px;}
.ws21{word-spacing:14.832000px;}
.ws58{word-spacing:15.120000px;}
.ws2c{word-spacing:15.768000px;}
.ws86{word-spacing:15.972000px;}
.ws54{word-spacing:16.128000px;}
.ws4a{word-spacing:16.848000px;}
.ws2e{word-spacing:17.064000px;}
.ws62{word-spacing:17.640000px;}
.ws45{word-spacing:19.008000px;}
.ws37{word-spacing:19.080000px;}
.ws2a{word-spacing:19.296000px;}
.ws38{word-spacing:19.872000px;}
.ws46{word-spacing:20.736000px;}
.ws7c{word-spacing:21.312000px;}
.ws53{word-spacing:21.672000px;}
.ws4e{word-spacing:23.328000px;}
.ws23{word-spacing:24.552000px;}
.ws39{word-spacing:24.624000px;}
.ws3b{word-spacing:25.272000px;}
.ws49{word-spacing:26.712000px;}
.ws3d{word-spacing:27.576000px;}
.ws3e{word-spacing:30.744000px;}
.ws75{word-spacing:30.816000px;}
.ws32{word-spacing:34.776000px;}
.ws22{word-spacing:40.536000px;}
._1e{margin-left:-10.094400px;}
._1a{margin-left:-8.625600px;}
._1{margin-left:-7.063200px;}
._0{margin-left:-5.352000px;}
._14{margin-left:-4.269600px;}
._2{margin-left:-3.133200px;}
._3{margin-left:-1.495200px;}
._a{width:1.442100px;}
._b{width:2.452800px;}
._5{width:3.905400px;}
._c{width:5.094900px;}
._13{width:6.573600px;}
._9{width:8.114400px;}
._4{width:9.591000px;}
._11{width:11.350500px;}
._7{width:12.558600px;}
._8{width:13.562100px;}
._6{width:14.724600px;}
._d{width:16.127100px;}
._18{width:19.179000px;}
._e{width:20.493000px;}
._15{width:21.729600px;}
._19{width:23.169600px;}
._10{width:24.494400px;}
._f{width:25.675500px;}
._1d{width:27.064500px;}
._1c{width:28.130400px;}
._12{width:29.181600px;}
._20{width:33.040800px;}
._1b{width:34.308000px;}
._21{width:36.768600px;}
._1f{width:38.556000px;}
._17{width:43.149600px;}
._16{width:44.166000px;}
.fc1{color:rgb(16,15,13);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.138100px;}
.yf0{bottom:79.352550px;}
.y11d{bottom:80.824800px;}
.y99{bottom:82.104450px;}
.y4c{bottom:82.394550px;}
.ye3{bottom:89.754600px;}
.yb6{bottom:90.452550px;}
.ycd{bottom:98.004600px;}
.y72{bottom:100.244550px;}
.yef{bottom:100.352550px;}
.yfb{bottom:101.252550px;}
.y11c{bottom:101.824800px;}
.y98{bottom:103.104450px;}
.y4b{bottom:103.394550px;}
.yb5{bottom:111.452550px;}
.ye2{bottom:111.504600px;}
.ycc{bottom:119.004600px;}
.y142{bottom:119.992650px;}
.y71{bottom:121.244550px;}
.yee{bottom:121.352550px;}
.y11b{bottom:122.824800px;}
.yfa{bottom:123.002550px;}
.y97{bottom:124.104450px;}
.y4a{bottom:124.394550px;}
.yb4{bottom:132.452550px;}
.ye1{bottom:133.254600px;}
.ycb{bottom:140.004600px;}
.y141{bottom:140.992650px;}
.y70{bottom:142.244550px;}
.yed{bottom:142.352550px;}
.y23{bottom:142.358850px;}
.y11a{bottom:143.824800px;}
.yf9{bottom:144.752550px;}
.y96{bottom:145.104450px;}
.y49{bottom:145.394550px;}
.yb3{bottom:153.452550px;}
.ye0{bottom:155.004600px;}
.yca{bottom:161.004600px;}
.y140{bottom:161.992650px;}
.y6f{bottom:163.244550px;}
.yec{bottom:163.352550px;}
.y119{bottom:164.824800px;}
.y95{bottom:166.104450px;}
.y22{bottom:166.110900px;}
.y48{bottom:166.394550px;}
.yf8{bottom:166.502550px;}
.yb2{bottom:174.452550px;}
.ydf{bottom:176.754600px;}
.yc9{bottom:182.004600px;}
.y13f{bottom:182.992650px;}
.y6e{bottom:184.244550px;}
.yeb{bottom:184.352550px;}
.y21{bottom:185.610900px;}
.y118{bottom:186.574950px;}
.y94{bottom:187.104600px;}
.y47{bottom:187.394550px;}
.yf7{bottom:188.252550px;}
.yb1{bottom:195.452550px;}
.yde{bottom:198.504600px;}
.yc8{bottom:203.004600px;}
.y13e{bottom:203.992650px;}
.y20{bottom:205.110900px;}
.y6d{bottom:205.244550px;}
.yea{bottom:205.352550px;}
.y93{bottom:208.104600px;}
.y117{bottom:208.324950px;}
.y46{bottom:208.394550px;}
.yb0{bottom:216.452550px;}
.ydd{bottom:220.254600px;}
.yc7{bottom:224.004600px;}
.y13d{bottom:224.992650px;}
.yf6{bottom:225.002550px;}
.y6c{bottom:226.244550px;}
.ye9{bottom:226.352550px;}
.y1f{bottom:228.862800px;}
.y92{bottom:229.104600px;}
.y45{bottom:229.394550px;}
.y116{bottom:230.074950px;}
.yaf{bottom:237.452550px;}
.yc6{bottom:245.754600px;}
.y13c{bottom:245.992650px;}
.y6b{bottom:247.244550px;}
.ye8{bottom:247.352550px;}
.y1e{bottom:248.362800px;}
.y91{bottom:250.104600px;}
.y44{bottom:250.394550px;}
.y115{bottom:251.824950px;}
.ydc{bottom:254.004600px;}
.yae{bottom:258.452550px;}
.y13b{bottom:266.992650px;}
.yc5{bottom:267.504600px;}
.y1d{bottom:267.862800px;}
.yf5{bottom:268.202550px;}
.y6a{bottom:268.244550px;}
.ye7{bottom:269.102550px;}
.y90{bottom:271.104600px;}
.y43{bottom:271.394550px;}
.yad{bottom:279.452550px;}
.y114{bottom:282.078900px;}
.y1c{bottom:287.362800px;}
.y13a{bottom:287.992650px;}
.y69{bottom:289.244550px;}
.yc4{bottom:289.254600px;}
.yf4{bottom:289.952550px;}
.ye6{bottom:290.852550px;}
.y8f{bottom:292.104600px;}
.y42{bottom:292.394550px;}
.ydb{bottom:297.204600px;}
.yac{bottom:300.452550px;}
.y113{bottom:303.828900px;}
.y1b{bottom:306.862800px;}
.y139{bottom:308.992650px;}
.y68{bottom:310.244550px;}
.yc3{bottom:311.004600px;}
.yf3{bottom:311.702550px;}
.ye5{bottom:312.602550px;}
.y8e{bottom:313.104600px;}
.y41{bottom:313.394550px;}
.yda{bottom:318.204600px;}
.yab{bottom:321.452550px;}
.y112{bottom:325.578900px;}
.y1a{bottom:326.362800px;}
.y138{bottom:329.992650px;}
.y67{bottom:331.244550px;}
.yc2{bottom:332.754600px;}
.yf2{bottom:333.452550px;}
.y8d{bottom:334.104600px;}
.y40{bottom:334.394550px;}
.ye4{bottom:338.604600px;}
.yd9{bottom:339.204600px;}
.yaa{bottom:342.452550px;}
.y19{bottom:345.862800px;}
.y111{bottom:347.328900px;}
.y137{bottom:350.992650px;}
.y66{bottom:352.244550px;}
.yc1{bottom:354.504600px;}
.y8c{bottom:355.104600px;}
.yf1{bottom:355.202550px;}
.y3f{bottom:355.394550px;}
.yd8{bottom:360.204600px;}
.ya9{bottom:363.452550px;}
.y18{bottom:365.362800px;}
.y110{bottom:369.078900px;}
.y136{bottom:371.992650px;}
.y65{bottom:373.244550px;}
.y8b{bottom:376.104600px;}
.y3e{bottom:376.394550px;}
.yd7{bottom:381.204600px;}
.ya8{bottom:384.452550px;}
.y17{bottom:384.862800px;}
.y135{bottom:392.992650px;}
.y64{bottom:394.244550px;}
.y8a{bottom:397.104600px;}
.y3d{bottom:397.394550px;}
.yc0{bottom:398.004600px;}
.y10f{bottom:399.332700px;}
.yd6{bottom:402.204600px;}
.y16{bottom:404.362800px;}
.ya7{bottom:405.452550px;}
.y15b{bottom:409.122900px;}
.y134{bottom:413.992650px;}
.y63{bottom:415.244550px;}
.y89{bottom:418.104600px;}
.y3c{bottom:418.394550px;}
.y10e{bottom:421.082700px;}
.yd5{bottom:423.204600px;}
.y15{bottom:423.862800px;}
.ya6{bottom:426.452550px;}
.y15a{bottom:427.122900px;}
.y133{bottom:434.992650px;}
.y62{bottom:436.244550px;}
.y88{bottom:439.104600px;}
.y3b{bottom:439.394550px;}
.ybf{bottom:441.204600px;}
.y10d{bottom:442.832700px;}
.y14{bottom:443.362800px;}
.yd4{bottom:444.204600px;}
.ya5{bottom:447.452550px;}
.y159{bottom:449.374950px;}
.y132{bottom:455.992650px;}
.y61{bottom:457.244550px;}
.y87{bottom:460.104600px;}
.y3a{bottom:460.394550px;}
.ybe{bottom:462.204600px;}
.y13{bottom:462.862800px;}
.y10c{bottom:464.582700px;}
.yd3{bottom:465.204600px;}
.y158{bottom:467.374950px;}
.ya4{bottom:468.452550px;}
.y131{bottom:476.992650px;}
.y60{bottom:478.244550px;}
.y86{bottom:481.104600px;}
.y39{bottom:481.394550px;}
.y12{bottom:482.362800px;}
.ybd{bottom:483.204600px;}
.yd2{bottom:486.204600px;}
.y10b{bottom:486.332700px;}
.y157{bottom:489.626850px;}
.ya3{bottom:490.202550px;}
.y130{bottom:497.992650px;}
.y5f{bottom:499.244550px;}
.y11{bottom:501.862800px;}
.y85{bottom:502.104600px;}
.y38{bottom:502.394550px;}
.ybc{bottom:504.204600px;}
.yd1{bottom:507.204600px;}
.y156{bottom:507.626850px;}
.ya2{bottom:511.952550px;}
.y10a{bottom:516.586650px;}
.y12f{bottom:518.992650px;}
.y5e{bottom:520.244550px;}
.y10{bottom:521.362800px;}
.y84{bottom:523.104600px;}
.y37{bottom:523.394550px;}
.ybb{bottom:525.204600px;}
.yd0{bottom:528.204600px;}
.y155{bottom:529.878750px;}
.ya1{bottom:533.702550px;}
.y109{bottom:538.336650px;}
.y12e{bottom:539.992650px;}
.yf{bottom:540.862800px;}
.y5d{bottom:541.244550px;}
.y83{bottom:544.104600px;}
.y36{bottom:544.394550px;}
.yba{bottom:546.204600px;}
.y154{bottom:547.878750px;}
.ycf{bottom:549.204600px;}
.ya0{bottom:559.704600px;}
.y108{bottom:560.086650px;}
.ye{bottom:560.362800px;}
.y12d{bottom:560.992650px;}
.y5c{bottom:562.244550px;}
.y35{bottom:565.394550px;}
.y82{bottom:565.854600px;}
.yb9{bottom:567.954600px;}
.y153{bottom:570.130800px;}
.yce{bottom:570.204600px;}
.yd{bottom:579.862800px;}
.y107{bottom:581.836650px;}
.y12c{bottom:581.992650px;}
.y5b{bottom:583.244550px;}
.y34{bottom:586.394550px;}
.y81{bottom:587.604600px;}
.y152{bottom:588.130800px;}
.yb8{bottom:589.704600px;}
.y9f{bottom:591.204600px;}
.yc{bottom:599.362800px;}
.y12b{bottom:602.992650px;}
.y106{bottom:603.586650px;}
.y5a{bottom:604.244550px;}
.y33{bottom:607.394550px;}
.y80{bottom:609.354600px;}
.y151{bottom:610.382700px;}
.yb7{bottom:611.454600px;}
.y9e{bottom:612.204600px;}
.yb{bottom:618.862800px;}
.y12a{bottom:623.992650px;}
.y59{bottom:625.244550px;}
.y150{bottom:628.382700px;}
.y32{bottom:628.394550px;}
.y7f{bottom:631.104600px;}
.y9d{bottom:633.204600px;}
.y105{bottom:636.136650px;}
.ya{bottom:638.362800px;}
.y129{bottom:644.992650px;}
.y58{bottom:646.244550px;}
.y31{bottom:649.394550px;}
.y14f{bottom:650.634750px;}
.y9c{bottom:654.204600px;}
.y9{bottom:657.862800px;}
.y128{bottom:665.992650px;}
.y57{bottom:667.244550px;}
.y14e{bottom:668.634750px;}
.y30{bottom:670.394550px;}
.y104{bottom:671.236650px;}
.y7e{bottom:674.604600px;}
.y9b{bottom:675.204600px;}
.y127{bottom:686.992650px;}
.y56{bottom:688.244550px;}
.y14d{bottom:690.886650px;}
.y2f{bottom:691.394550px;}
.y103{bottom:692.986650px;}
.y9a{bottom:696.204600px;}
.y8{bottom:696.862800px;}
.y126{bottom:707.992650px;}
.y14c{bottom:708.886650px;}
.y55{bottom:709.994550px;}
.y2e{bottom:712.394550px;}
.y102{bottom:714.736650px;}
.y7d{bottom:717.204600px;}
.y7{bottom:718.462800px;}
.y125{bottom:728.992650px;}
.y14b{bottom:731.138700px;}
.y54{bottom:731.744550px;}
.y2d{bottom:733.394550px;}
.y101{bottom:736.486650px;}
.y7c{bottom:738.204600px;}
.y6{bottom:740.062800px;}
.y14a{bottom:749.138700px;}
.y124{bottom:749.992650px;}
.y53{bottom:753.494550px;}
.y2c{bottom:754.394550px;}
.y7b{bottom:759.204600px;}
.y100{bottom:766.740600px;}
.y123{bottom:770.992650px;}
.y149{bottom:771.390600px;}
.y52{bottom:775.244550px;}
.y2b{bottom:775.394550px;}
.y7a{bottom:780.204600px;}
.yff{bottom:788.490600px;}
.y148{bottom:789.390600px;}
.y5{bottom:790.462800px;}
.y122{bottom:792.742650px;}
.y51{bottom:796.994550px;}
.y2a{bottom:797.144550px;}
.y79{bottom:801.204600px;}
.yfe{bottom:810.240600px;}
.y147{bottom:811.642650px;}
.y121{bottom:814.492650px;}
.y4{bottom:817.462800px;}
.y50{bottom:818.744550px;}
.y29{bottom:818.894550px;}
.y78{bottom:822.204600px;}
.y146{bottom:829.642650px;}
.yfd{bottom:831.990600px;}
.y120{bottom:836.242650px;}
.y4f{bottom:840.494550px;}
.y28{bottom:840.644550px;}
.y77{bottom:843.204600px;}
.y3{bottom:844.462800px;}
.y145{bottom:847.642650px;}
.y11f{bottom:857.992650px;}
.y4e{bottom:862.244550px;}
.y27{bottom:862.394550px;}
.y76{bottom:864.204600px;}
.y144{bottom:869.894550px;}
.y11e{bottom:879.742650px;}
.y4d{bottom:883.994550px;}
.y26{bottom:884.144550px;}
.y75{bottom:885.204600px;}
.y143{bottom:887.894550px;}
.yfc{bottom:905.744550px;}
.y74{bottom:906.204600px;}
.y73{bottom:927.204600px;}
.y24{bottom:927.477600px;}
.y25{bottom:927.494550px;}
.y1{bottom:965.377200px;}
.h2{height:33.328125px;}
.h7{height:41.689453px;}
.hc{height:45.826172px;}
.hb{height:45.858398px;}
.h6{height:47.909180px;}
.ha{height:48.761719px;}
.h8{height:48.796875px;}
.h9{height:49.992188px;}
.h5{height:50.027344px;}
.h3{height:50.400000px;}
.h4{height:56.929688px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.787450px;}
.x1{left:84.330750px;}
.x3{left:97.317750px;}
.x4{left:115.292850px;}
.xc{left:123.307050px;}
.xb{left:134.787450px;}
.xd{left:136.063050px;}
.x5{left:143.537250px;}
.x7{left:202.792350px;}
.x6{left:210.141450px;}
.x8{left:265.159500px;}
.xa{left:266.897850px;}
.x2{left:352.068750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws71{word-spacing:-16.000000pt;}
.ws85{word-spacing:-14.666667pt;}
.ws41{word-spacing:-8.896000pt;}
.ws78{word-spacing:-5.952000pt;}
.ws7f{word-spacing:-5.184000pt;}
.ws26{word-spacing:-4.928000pt;}
.ws2{word-spacing:-4.845333pt;}
.ws35{word-spacing:-4.800000pt;}
.ws10{word-spacing:-4.352000pt;}
.ws48{word-spacing:-4.224000pt;}
.ws42{word-spacing:-4.096000pt;}
.ws63{word-spacing:-3.904000pt;}
.ws16{word-spacing:-3.456000pt;}
.wsb{word-spacing:-3.392000pt;}
.ws18{word-spacing:-3.136000pt;}
.ws50{word-spacing:-2.944000pt;}
.ws1e{word-spacing:-2.752000pt;}
.ws3f{word-spacing:-2.624000pt;}
.ws5d{word-spacing:-2.560000pt;}
.ws79{word-spacing:-2.432000pt;}
.ws1c{word-spacing:-1.984000pt;}
.ws43{word-spacing:-1.856000pt;}
.ws4f{word-spacing:-1.792000pt;}
.ws1{word-spacing:-1.778667pt;}
.ws65{word-spacing:-1.728000pt;}
.ws61{word-spacing:-1.600000pt;}
.ws11{word-spacing:-1.408000pt;}
.ws2f{word-spacing:-1.344000pt;}
.ws7d{word-spacing:-1.152000pt;}
.ws6{word-spacing:-0.832000pt;}
.ws33{word-spacing:-0.704000pt;}
.ws80{word-spacing:-0.640000pt;}
.ws3a{word-spacing:-0.448000pt;}
.ws7b{word-spacing:-0.320000pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.128000pt;}
.ws4b{word-spacing:0.192000pt;}
.ws67{word-spacing:0.320000pt;}
.ws6a{word-spacing:0.384000pt;}
.ws13{word-spacing:0.640000pt;}
.ws6b{word-spacing:0.704000pt;}
.ws6e{word-spacing:1.152000pt;}
.ws7a{word-spacing:1.344000pt;}
.ws74{word-spacing:1.408000pt;}
.ws1b{word-spacing:1.472000pt;}
.ws25{word-spacing:1.856000pt;}
.ws81{word-spacing:1.984000pt;}
.ws29{word-spacing:2.240000pt;}
.ws6f{word-spacing:2.304000pt;}
.ws27{word-spacing:2.752000pt;}
.wsf{word-spacing:2.816000pt;}
.ws69{word-spacing:3.008000pt;}
.ws5a{word-spacing:3.136000pt;}
.ws51{word-spacing:3.328000pt;}
.ws2b{word-spacing:3.392000pt;}
.ws19{word-spacing:3.712000pt;}
.ws20{word-spacing:3.840000pt;}
.ws82{word-spacing:4.352000pt;}
.ws55{word-spacing:4.672000pt;}
.ws3{word-spacing:4.864000pt;}
.ws28{word-spacing:4.928000pt;}
.ws76{word-spacing:4.992000pt;}
.ws77{word-spacing:5.056000pt;}
.ws1d{word-spacing:5.120000pt;}
.ws56{word-spacing:5.184000pt;}
.ws5f{word-spacing:5.440000pt;}
.ws5b{word-spacing:5.568000pt;}
.ws3c{word-spacing:5.760000pt;}
.ws34{word-spacing:5.824000pt;}
.ws31{word-spacing:5.888000pt;}
.ws1f{word-spacing:6.080000pt;}
.ws1a{word-spacing:6.208000pt;}
.ws47{word-spacing:6.400000pt;}
.ws7e{word-spacing:6.464000pt;}
.ws2d{word-spacing:6.528000pt;}
.ws6c{word-spacing:6.592000pt;}
.ws36{word-spacing:6.720000pt;}
.ws8{word-spacing:6.848000pt;}
.ws4{word-spacing:7.296000pt;}
.ws66{word-spacing:7.360000pt;}
.ws24{word-spacing:7.680000pt;}
.ws57{word-spacing:7.808000pt;}
.ws44{word-spacing:7.872000pt;}
.ws5c{word-spacing:8.192000pt;}
.ws30{word-spacing:8.448000pt;}
.ws15{word-spacing:8.832000pt;}
.ws5{word-spacing:8.896000pt;}
.wsd{word-spacing:9.024000pt;}
.wse{word-spacing:9.280000pt;}
.ws12{word-spacing:9.408000pt;}
.wsc{word-spacing:9.536000pt;}
.ws4d{word-spacing:9.600000pt;}
.ws68{word-spacing:9.664000pt;}
.ws59{word-spacing:9.792000pt;}
.ws84{word-spacing:9.856000pt;}
.ws70{word-spacing:10.176000pt;}
.ws9{word-spacing:10.304000pt;}
.ws64{word-spacing:10.496000pt;}
.ws5e{word-spacing:10.560000pt;}
.ws14{word-spacing:10.624000pt;}
.ws4c{word-spacing:10.816000pt;}
.wsa{word-spacing:10.880000pt;}
.ws40{word-spacing:11.008000pt;}
.ws73{word-spacing:11.072000pt;}
.ws72{word-spacing:11.200000pt;}
.ws83{word-spacing:11.328000pt;}
.ws7{word-spacing:11.648000pt;}
.ws6d{word-spacing:11.904000pt;}
.ws60{word-spacing:12.160000pt;}
.ws52{word-spacing:12.800000pt;}
.ws21{word-spacing:13.184000pt;}
.ws58{word-spacing:13.440000pt;}
.ws2c{word-spacing:14.016000pt;}
.ws86{word-spacing:14.197333pt;}
.ws54{word-spacing:14.336000pt;}
.ws4a{word-spacing:14.976000pt;}
.ws2e{word-spacing:15.168000pt;}
.ws62{word-spacing:15.680000pt;}
.ws45{word-spacing:16.896000pt;}
.ws37{word-spacing:16.960000pt;}
.ws2a{word-spacing:17.152000pt;}
.ws38{word-spacing:17.664000pt;}
.ws46{word-spacing:18.432000pt;}
.ws7c{word-spacing:18.944000pt;}
.ws53{word-spacing:19.264000pt;}
.ws4e{word-spacing:20.736000pt;}
.ws23{word-spacing:21.824000pt;}
.ws39{word-spacing:21.888000pt;}
.ws3b{word-spacing:22.464000pt;}
.ws49{word-spacing:23.744000pt;}
.ws3d{word-spacing:24.512000pt;}
.ws3e{word-spacing:27.328000pt;}
.ws75{word-spacing:27.392000pt;}
.ws32{word-spacing:30.912000pt;}
.ws22{word-spacing:36.032000pt;}
._1e{margin-left:-8.972800pt;}
._1a{margin-left:-7.667200pt;}
._1{margin-left:-6.278400pt;}
._0{margin-left:-4.757333pt;}
._14{margin-left:-3.795200pt;}
._2{margin-left:-2.785067pt;}
._3{margin-left:-1.329067pt;}
._a{width:1.281867pt;}
._b{width:2.180267pt;}
._5{width:3.471467pt;}
._c{width:4.528800pt;}
._13{width:5.843200pt;}
._9{width:7.212800pt;}
._4{width:8.525333pt;}
._11{width:10.089333pt;}
._7{width:11.163200pt;}
._8{width:12.055200pt;}
._6{width:13.088533pt;}
._d{width:14.335200pt;}
._18{width:17.048000pt;}
._e{width:18.216000pt;}
._15{width:19.315200pt;}
._19{width:20.595200pt;}
._10{width:21.772800pt;}
._f{width:22.822667pt;}
._1d{width:24.057333pt;}
._1c{width:25.004800pt;}
._12{width:25.939200pt;}
._20{width:29.369600pt;}
._1b{width:30.496000pt;}
._21{width:32.683200pt;}
._1f{width:34.272000pt;}
._17{width:38.355200pt;}
._16{width:39.258667pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.900533pt;}
.yf0{bottom:70.535600pt;}
.y11d{bottom:71.844267pt;}
.y99{bottom:72.981733pt;}
.y4c{bottom:73.239600pt;}
.ye3{bottom:79.781867pt;}
.yb6{bottom:80.402267pt;}
.ycd{bottom:87.115200pt;}
.y72{bottom:89.106267pt;}
.yef{bottom:89.202267pt;}
.yfb{bottom:90.002267pt;}
.y11c{bottom:90.510933pt;}
.y98{bottom:91.648400pt;}
.y4b{bottom:91.906267pt;}
.yb5{bottom:99.068933pt;}
.ye2{bottom:99.115200pt;}
.ycc{bottom:105.781867pt;}
.y142{bottom:106.660133pt;}
.y71{bottom:107.772933pt;}
.yee{bottom:107.868933pt;}
.y11b{bottom:109.177600pt;}
.yfa{bottom:109.335600pt;}
.y97{bottom:110.315067pt;}
.y4a{bottom:110.572933pt;}
.yb4{bottom:117.735600pt;}
.ye1{bottom:118.448533pt;}
.ycb{bottom:124.448533pt;}
.y141{bottom:125.326800pt;}
.y70{bottom:126.439600pt;}
.yed{bottom:126.535600pt;}
.y23{bottom:126.541200pt;}
.y11a{bottom:127.844267pt;}
.yf9{bottom:128.668933pt;}
.y96{bottom:128.981733pt;}
.y49{bottom:129.239600pt;}
.yb3{bottom:136.402267pt;}
.ye0{bottom:137.781867pt;}
.yca{bottom:143.115200pt;}
.y140{bottom:143.993467pt;}
.y6f{bottom:145.106267pt;}
.yec{bottom:145.202267pt;}
.y119{bottom:146.510933pt;}
.y95{bottom:147.648400pt;}
.y22{bottom:147.654133pt;}
.y48{bottom:147.906267pt;}
.yf8{bottom:148.002267pt;}
.yb2{bottom:155.068933pt;}
.ydf{bottom:157.115200pt;}
.yc9{bottom:161.781867pt;}
.y13f{bottom:162.660133pt;}
.y6e{bottom:163.772933pt;}
.yeb{bottom:163.868933pt;}
.y21{bottom:164.987467pt;}
.y118{bottom:165.844400pt;}
.y94{bottom:166.315200pt;}
.y47{bottom:166.572933pt;}
.yf7{bottom:167.335600pt;}
.yb1{bottom:173.735600pt;}
.yde{bottom:176.448533pt;}
.yc8{bottom:180.448533pt;}
.y13e{bottom:181.326800pt;}
.y20{bottom:182.320800pt;}
.y6d{bottom:182.439600pt;}
.yea{bottom:182.535600pt;}
.y93{bottom:184.981867pt;}
.y117{bottom:185.177733pt;}
.y46{bottom:185.239600pt;}
.yb0{bottom:192.402267pt;}
.ydd{bottom:195.781867pt;}
.yc7{bottom:199.115200pt;}
.y13d{bottom:199.993467pt;}
.yf6{bottom:200.002267pt;}
.y6c{bottom:201.106267pt;}
.ye9{bottom:201.202267pt;}
.y1f{bottom:203.433600pt;}
.y92{bottom:203.648533pt;}
.y45{bottom:203.906267pt;}
.y116{bottom:204.511067pt;}
.yaf{bottom:211.068933pt;}
.yc6{bottom:218.448533pt;}
.y13c{bottom:218.660133pt;}
.y6b{bottom:219.772933pt;}
.ye8{bottom:219.868933pt;}
.y1e{bottom:220.766933pt;}
.y91{bottom:222.315200pt;}
.y44{bottom:222.572933pt;}
.y115{bottom:223.844400pt;}
.ydc{bottom:225.781867pt;}
.yae{bottom:229.735600pt;}
.y13b{bottom:237.326800pt;}
.yc5{bottom:237.781867pt;}
.y1d{bottom:238.100267pt;}
.yf5{bottom:238.402267pt;}
.y6a{bottom:238.439600pt;}
.ye7{bottom:239.202267pt;}
.y90{bottom:240.981867pt;}
.y43{bottom:241.239600pt;}
.yad{bottom:248.402267pt;}
.y114{bottom:250.736800pt;}
.y1c{bottom:255.433600pt;}
.y13a{bottom:255.993467pt;}
.y69{bottom:257.106267pt;}
.yc4{bottom:257.115200pt;}
.yf4{bottom:257.735600pt;}
.ye6{bottom:258.535600pt;}
.y8f{bottom:259.648533pt;}
.y42{bottom:259.906267pt;}
.ydb{bottom:264.181867pt;}
.yac{bottom:267.068933pt;}
.y113{bottom:270.070133pt;}
.y1b{bottom:272.766933pt;}
.y139{bottom:274.660133pt;}
.y68{bottom:275.772933pt;}
.yc3{bottom:276.448533pt;}
.yf3{bottom:277.068933pt;}
.ye5{bottom:277.868933pt;}
.y8e{bottom:278.315200pt;}
.y41{bottom:278.572933pt;}
.yda{bottom:282.848533pt;}
.yab{bottom:285.735600pt;}
.y112{bottom:289.403467pt;}
.y1a{bottom:290.100267pt;}
.y138{bottom:293.326800pt;}
.y67{bottom:294.439600pt;}
.yc2{bottom:295.781867pt;}
.yf2{bottom:296.402267pt;}
.y8d{bottom:296.981867pt;}
.y40{bottom:297.239600pt;}
.ye4{bottom:300.981867pt;}
.yd9{bottom:301.515200pt;}
.yaa{bottom:304.402267pt;}
.y19{bottom:307.433600pt;}
.y111{bottom:308.736800pt;}
.y137{bottom:311.993467pt;}
.y66{bottom:313.106267pt;}
.yc1{bottom:315.115200pt;}
.y8c{bottom:315.648533pt;}
.yf1{bottom:315.735600pt;}
.y3f{bottom:315.906267pt;}
.yd8{bottom:320.181867pt;}
.ya9{bottom:323.068933pt;}
.y18{bottom:324.766933pt;}
.y110{bottom:328.070133pt;}
.y136{bottom:330.660133pt;}
.y65{bottom:331.772933pt;}
.y8b{bottom:334.315200pt;}
.y3e{bottom:334.572933pt;}
.yd7{bottom:338.848533pt;}
.ya8{bottom:341.735600pt;}
.y17{bottom:342.100267pt;}
.y135{bottom:349.326800pt;}
.y64{bottom:350.439600pt;}
.y8a{bottom:352.981867pt;}
.y3d{bottom:353.239600pt;}
.yc0{bottom:353.781867pt;}
.y10f{bottom:354.962400pt;}
.yd6{bottom:357.515200pt;}
.y16{bottom:359.433600pt;}
.ya7{bottom:360.402267pt;}
.y15b{bottom:363.664800pt;}
.y134{bottom:367.993467pt;}
.y63{bottom:369.106267pt;}
.y89{bottom:371.648533pt;}
.y3c{bottom:371.906267pt;}
.y10e{bottom:374.295733pt;}
.yd5{bottom:376.181867pt;}
.y15{bottom:376.766933pt;}
.ya6{bottom:379.068933pt;}
.y15a{bottom:379.664800pt;}
.y133{bottom:386.660133pt;}
.y62{bottom:387.772933pt;}
.y88{bottom:390.315200pt;}
.y3b{bottom:390.572933pt;}
.ybf{bottom:392.181867pt;}
.y10d{bottom:393.629067pt;}
.y14{bottom:394.100267pt;}
.yd4{bottom:394.848533pt;}
.ya5{bottom:397.735600pt;}
.y159{bottom:399.444400pt;}
.y132{bottom:405.326800pt;}
.y61{bottom:406.439600pt;}
.y87{bottom:408.981867pt;}
.y3a{bottom:409.239600pt;}
.ybe{bottom:410.848533pt;}
.y13{bottom:411.433600pt;}
.y10c{bottom:412.962400pt;}
.yd3{bottom:413.515200pt;}
.y158{bottom:415.444400pt;}
.ya4{bottom:416.402267pt;}
.y131{bottom:423.993467pt;}
.y60{bottom:425.106267pt;}
.y86{bottom:427.648533pt;}
.y39{bottom:427.906267pt;}
.y12{bottom:428.766933pt;}
.ybd{bottom:429.515200pt;}
.yd2{bottom:432.181867pt;}
.y10b{bottom:432.295733pt;}
.y157{bottom:435.223867pt;}
.ya3{bottom:435.735600pt;}
.y130{bottom:442.660133pt;}
.y5f{bottom:443.772933pt;}
.y11{bottom:446.100267pt;}
.y85{bottom:446.315200pt;}
.y38{bottom:446.572933pt;}
.ybc{bottom:448.181867pt;}
.yd1{bottom:450.848533pt;}
.y156{bottom:451.223867pt;}
.ya2{bottom:455.068933pt;}
.y10a{bottom:459.188133pt;}
.y12f{bottom:461.326800pt;}
.y5e{bottom:462.439600pt;}
.y10{bottom:463.433600pt;}
.y84{bottom:464.981867pt;}
.y37{bottom:465.239600pt;}
.ybb{bottom:466.848533pt;}
.yd0{bottom:469.515200pt;}
.y155{bottom:471.003333pt;}
.ya1{bottom:474.402267pt;}
.y109{bottom:478.521467pt;}
.y12e{bottom:479.993467pt;}
.yf{bottom:480.766933pt;}
.y5d{bottom:481.106267pt;}
.y83{bottom:483.648533pt;}
.y36{bottom:483.906267pt;}
.yba{bottom:485.515200pt;}
.y154{bottom:487.003333pt;}
.ycf{bottom:488.181867pt;}
.ya0{bottom:497.515200pt;}
.y108{bottom:497.854800pt;}
.ye{bottom:498.100267pt;}
.y12d{bottom:498.660133pt;}
.y5c{bottom:499.772933pt;}
.y35{bottom:502.572933pt;}
.y82{bottom:502.981867pt;}
.yb9{bottom:504.848533pt;}
.y153{bottom:506.782933pt;}
.yce{bottom:506.848533pt;}
.yd{bottom:515.433600pt;}
.y107{bottom:517.188133pt;}
.y12c{bottom:517.326800pt;}
.y5b{bottom:518.439600pt;}
.y34{bottom:521.239600pt;}
.y81{bottom:522.315200pt;}
.y152{bottom:522.782933pt;}
.yb8{bottom:524.181867pt;}
.y9f{bottom:525.515200pt;}
.yc{bottom:532.766933pt;}
.y12b{bottom:535.993467pt;}
.y106{bottom:536.521467pt;}
.y5a{bottom:537.106267pt;}
.y33{bottom:539.906267pt;}
.y80{bottom:541.648533pt;}
.y151{bottom:542.562400pt;}
.yb7{bottom:543.515200pt;}
.y9e{bottom:544.181867pt;}
.yb{bottom:550.100267pt;}
.y12a{bottom:554.660133pt;}
.y59{bottom:555.772933pt;}
.y150{bottom:558.562400pt;}
.y32{bottom:558.572933pt;}
.y7f{bottom:560.981867pt;}
.y9d{bottom:562.848533pt;}
.y105{bottom:565.454800pt;}
.ya{bottom:567.433600pt;}
.y129{bottom:573.326800pt;}
.y58{bottom:574.439600pt;}
.y31{bottom:577.239600pt;}
.y14f{bottom:578.342000pt;}
.y9c{bottom:581.515200pt;}
.y9{bottom:584.766933pt;}
.y128{bottom:591.993467pt;}
.y57{bottom:593.106267pt;}
.y14e{bottom:594.342000pt;}
.y30{bottom:595.906267pt;}
.y104{bottom:596.654800pt;}
.y7e{bottom:599.648533pt;}
.y9b{bottom:600.181867pt;}
.y127{bottom:610.660133pt;}
.y56{bottom:611.772933pt;}
.y14d{bottom:614.121467pt;}
.y2f{bottom:614.572933pt;}
.y103{bottom:615.988133pt;}
.y9a{bottom:618.848533pt;}
.y8{bottom:619.433600pt;}
.y126{bottom:629.326800pt;}
.y14c{bottom:630.121467pt;}
.y55{bottom:631.106267pt;}
.y2e{bottom:633.239600pt;}
.y102{bottom:635.321467pt;}
.y7d{bottom:637.515200pt;}
.y7{bottom:638.633600pt;}
.y125{bottom:647.993467pt;}
.y14b{bottom:649.901067pt;}
.y54{bottom:650.439600pt;}
.y2d{bottom:651.906267pt;}
.y101{bottom:654.654800pt;}
.y7c{bottom:656.181867pt;}
.y6{bottom:657.833600pt;}
.y14a{bottom:665.901067pt;}
.y124{bottom:666.660133pt;}
.y53{bottom:669.772933pt;}
.y2c{bottom:670.572933pt;}
.y7b{bottom:674.848533pt;}
.y100{bottom:681.547200pt;}
.y123{bottom:685.326800pt;}
.y149{bottom:685.680533pt;}
.y52{bottom:689.106267pt;}
.y2b{bottom:689.239600pt;}
.y7a{bottom:693.515200pt;}
.yff{bottom:700.880533pt;}
.y148{bottom:701.680533pt;}
.y5{bottom:702.633600pt;}
.y122{bottom:704.660133pt;}
.y51{bottom:708.439600pt;}
.y2a{bottom:708.572933pt;}
.y79{bottom:712.181867pt;}
.yfe{bottom:720.213867pt;}
.y147{bottom:721.460133pt;}
.y121{bottom:723.993467pt;}
.y4{bottom:726.633600pt;}
.y50{bottom:727.772933pt;}
.y29{bottom:727.906267pt;}
.y78{bottom:730.848533pt;}
.y146{bottom:737.460133pt;}
.yfd{bottom:739.547200pt;}
.y120{bottom:743.326800pt;}
.y4f{bottom:747.106267pt;}
.y28{bottom:747.239600pt;}
.y77{bottom:749.515200pt;}
.y3{bottom:750.633600pt;}
.y145{bottom:753.460133pt;}
.y11f{bottom:762.660133pt;}
.y4e{bottom:766.439600pt;}
.y27{bottom:766.572933pt;}
.y76{bottom:768.181867pt;}
.y144{bottom:773.239600pt;}
.y11e{bottom:781.993467pt;}
.y4d{bottom:785.772933pt;}
.y26{bottom:785.906267pt;}
.y75{bottom:786.848533pt;}
.y143{bottom:789.239600pt;}
.yfc{bottom:805.106267pt;}
.y74{bottom:805.515200pt;}
.y73{bottom:824.181867pt;}
.y24{bottom:824.424533pt;}
.y25{bottom:824.439600pt;}
.y1{bottom:858.113067pt;}
.h2{height:29.625000pt;}
.h7{height:37.057292pt;}
.hc{height:40.734375pt;}
.hb{height:40.763021pt;}
.h6{height:42.585938pt;}
.ha{height:43.343750pt;}
.h8{height:43.375000pt;}
.h9{height:44.437500pt;}
.h5{height:44.468750pt;}
.h3{height:44.800000pt;}
.h4{height:50.604167pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.811067pt;}
.x1{left:74.960667pt;}
.x3{left:86.504667pt;}
.x4{left:102.482533pt;}
.xc{left:109.606267pt;}
.xb{left:119.811067pt;}
.xd{left:120.944933pt;}
.x5{left:127.588667pt;}
.x7{left:180.259867pt;}
.x6{left:186.792400pt;}
.x8{left:235.697333pt;}
.xa{left:237.242533pt;}
.x2{left:312.950000pt;}
}




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