
    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_da3ba5605bbe4121b26cd1e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_526f66aa6e77e127b7ab7c2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_33dc73472134d82bf098d629.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.092285;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_d7c3652125528f0a554e28a5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ef8d8d77fa3ffe9df57aab33.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_69c454bc2c61bec632dfe911.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_6d2e0ce4e2289f1709b4327b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.031738;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_8f0a509350f194c468df1fef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.031738;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_4933e491829bbe4ffced71cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_068fe9f191cb6c194f6498f8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.151000;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_3e6ae4b34c2215d6abbd40ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.184000;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_d3cc1a5b6606ec8a54a9970a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_21ed79fd016a260107f06d27.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.030273;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_247de7459bacb90f0c0e0a12.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.974609;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_b7cc4d3fb57d0fa515a3a559.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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:ff10;src:url('chunks/assets/font_4013c8818eac80a15a286815.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.092285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:67.860000px;}
.ls5{letter-spacing:-1.530000px;}
.ls16{letter-spacing:-1.398000px;}
.ls9{letter-spacing:-0.471000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.237000px;}
.ls7{letter-spacing:-0.222000px;}
.ls20{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.136800px;}
.ls6{letter-spacing:-0.094200px;}
.ls1c{letter-spacing:-0.075000px;}
.ls15{letter-spacing:-0.000720px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.065400px;}
.ls19{letter-spacing:0.084600px;}
.ls10{letter-spacing:0.111000px;}
.ls1f{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.152400px;}
.ls1a{letter-spacing:0.157800px;}
.lsa{letter-spacing:0.165000px;}
.ls21{letter-spacing:0.226800px;}
.ls1d{letter-spacing:0.238200px;}
.lsd{letter-spacing:0.249000px;}
.ls3{letter-spacing:0.505440px;}
.ls8{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.720000px;}
.ls14{letter-spacing:26.448768px;}
.ls13{letter-spacing:27.240480px;}
.ls2{letter-spacing:38.063808px;}
.lse{letter-spacing:54.093600px;}
.lsf{letter-spacing:54.144000px;}
.ls11{letter-spacing:65.865600px;}
.ls12{letter-spacing:65.916000px;}
.ls22{letter-spacing:97.560000px;}
.ls18{letter-spacing:106.013376px;}
.ls17{letter-spacing:106.057440px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(228,4,33),0 0.015em rgb(228,4,33),0.015em 0 rgb(228,4,33),0 -0.015em  rgb(228,4,33);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(228,4,33);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws37{word-spacing:-65.088000px;}
.ws0{word-spacing:-49.986720px;}
.ws3{word-spacing:-43.877232px;}
.ws2e{word-spacing:-43.848000px;}
.ws3e{word-spacing:-39.280752px;}
.ws27{word-spacing:-39.024720px;}
.ws33{word-spacing:-38.949720px;}
.wsc{word-spacing:-38.537760px;}
.ws6{word-spacing:-37.913760px;}
.ws8{word-spacing:-36.416304px;}
.ws19{word-spacing:-36.151680px;}
.ws1{word-spacing:-33.847512px;}
.ws38{word-spacing:-32.576544px;}
.ws32{word-spacing:-32.544000px;}
.ws2d{word-spacing:-29.810304px;}
.ws29{word-spacing:-29.777760px;}
.ws40{word-spacing:-29.261232px;}
.ws3f{word-spacing:-29.232000px;}
.ws36{word-spacing:-27.206784px;}
.ws35{word-spacing:-27.174240px;}
.ws3a{word-spacing:-24.408000px;}
.ws3d{word-spacing:-20.016000px;}
.ws10{word-spacing:-12.128520px;}
.ws3c{word-spacing:-6.192000px;}
.ws39{word-spacing:-2.196000px;}
.ws1c{word-spacing:-1.672800px;}
.ws3b{word-spacing:-1.383120px;}
.ws1e{word-spacing:-1.308600px;}
.ws18{word-spacing:-1.072800px;}
.ws1f{word-spacing:-1.026720px;}
.ws17{word-spacing:-0.947040px;}
.ws1a{word-spacing:-0.938880px;}
.ws1d{word-spacing:-0.894960px;}
.ws23{word-spacing:-0.268560px;}
.ws1b{word-spacing:-0.227040px;}
.ws26{word-spacing:-0.064560px;}
.ws24{word-spacing:-0.035280px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:0.279744px;}
.ws22{word-spacing:0.288000px;}
.wsd{word-spacing:0.493920px;}
.ws11{word-spacing:0.501120px;}
.ws14{word-spacing:0.555120px;}
.ws15{word-spacing:0.640080px;}
.ws2a{word-spacing:0.692160px;}
.wsf{word-spacing:0.863280px;}
.ws13{word-spacing:0.882000px;}
.ws4{word-spacing:0.960000px;}
.ws12{word-spacing:1.042560px;}
.ws9{word-spacing:1.045680px;}
.ws16{word-spacing:1.212960px;}
.ws5{word-spacing:1.563360px;}
.wsa{word-spacing:2.092320px;}
.wse{word-spacing:2.161080px;}
.ws28{word-spacing:2.296320px;}
.ws2b{word-spacing:2.496480px;}
.ws2c{word-spacing:2.583360px;}
.ws25{word-spacing:2.996880px;}
.ws7{word-spacing:39.800256px;}
.wsb{word-spacing:75.882600px;}
.ws31{word-spacing:102.384000px;}
.ws30{word-spacing:113.103000px;}
.ws2f{word-spacing:113.180760px;}
.ws34{word-spacing:124.209000px;}
.ws21{word-spacing:1476.204480px;}
._13{margin-left:-14.279184px;}
._8{margin-left:-12.487440px;}
._b{margin-left:-10.433808px;}
._c{margin-left:-8.868816px;}
._d{margin-left:-7.218720px;}
._11{margin-left:-5.741280px;}
._7{margin-left:-4.529520px;}
._5{margin-left:-3.019680px;}
._3{margin-left:-1.845360px;}
._6{width:1.845360px;}
._4{width:3.845184px;}
._14{width:5.301360px;}
._2{width:9.116208px;}
._1{width:12.072816px;}
._0{width:13.551120px;}
._16{width:18.372960px;}
._9{width:19.626240px;}
._15{width:23.473296px;}
._a{width:26.147640px;}
._e{width:28.689120px;}
._f{width:31.277520px;}
._10{width:40.501536px;}
._12{width:45.505728px;}
.fc7{color:rgb(192,0,0);}
.fc5{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(228,4,33);}
.fc6{color:rgb(10,10,10);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(165,165,165);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs16{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs7{font-size:77.904000px;}
.fse{font-size:95.760000px;}
.fsf{font-size:95.904000px;}
.fs14{font-size:108.000000px;}
.fs13{font-size:108.144000px;}
.fsa{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fsc{font-size:131.760000px;}
.fsd{font-size:131.904000px;}
.fs10{font-size:144.000000px;}
.fs11{font-size:144.144000px;}
.fs2{font-size:167.760000px;}
.fs3{font-size:167.904000px;}
.fs9{font-size:192.240000px;}
.fs15{font-size:192.384000px;}
.fs5{font-size:216.000000px;}
.fs4{font-size:216.144000px;}
.fs1{font-size:246.240000px;}
.fs0{font-size:246.384000px;}
.fs12{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:20.592000px;}
.yd8{bottom:32.724000px;}
.yf7{bottom:46.872000px;}
.yc7{bottom:49.608000px;}
.yd7{bottom:57.564000px;}
.ycd{bottom:58.428000px;}
.y43{bottom:74.736000px;}
.yc6{bottom:78.408000px;}
.yd6{bottom:82.404000px;}
.yf6{bottom:82.872000px;}
.ycc{bottom:83.268000px;}
.y50{bottom:84.204000px;}
.y42{bottom:102.456000px;}
.yc5{bottom:107.208000px;}
.ybb{bottom:108.180000px;}
.y2c{bottom:111.600000px;}
.y70{bottom:112.608000px;}
.yd{bottom:113.112000px;}
.y96{bottom:114.984000px;}
.yf5{bottom:118.872000px;}
.y4f{bottom:119.844000px;}
.yd5{bottom:127.440000px;}
.yc{bottom:127.512000px;}
.ycb{bottom:128.304000px;}
.y41{bottom:130.176000px;}
.y5e{bottom:134.676000px;}
.yaa{bottom:135.936000px;}
.yc4{bottom:136.008000px;}
.y8c{bottom:139.536000px;}
.yba{bottom:140.616000px;}
.y6f{bottom:141.408000px;}
.y95{bottom:143.784000px;}
.y2b{bottom:147.600000px;}
.y1e{bottom:153.360000px;}
.yf4{bottom:154.875000px;}
.y40{bottom:157.890000px;}
.yc3{bottom:164.805000px;}
.y5d{bottom:169.230000px;}
.y6e{bottom:170.205000px;}
.y94{bottom:172.620000px;}
.y8b{bottom:172.650000px;}
.yb9{bottom:173.010000px;}
.ydd{bottom:177.375000px;}
.y4e{bottom:179.460000px;}
.y3f{bottom:185.610000px;}
.y1d{bottom:188.460000px;}
.y9b{bottom:189.210000px;}
.yf3{bottom:190.905000px;}
.y2a{bottom:190.980000px;}
.yc2{bottom:193.650000px;}
.y6d{bottom:199.005000px;}
.y93{bottom:201.420000px;}
.ydc{bottom:202.215000px;}
.y5c{bottom:203.790000px;}
.y8a{bottom:205.815000px;}
.y4d{bottom:215.100000px;}
.ya3{bottom:217.155000px;}
.y9a{bottom:221.610000px;}
.y1c{bottom:223.590000px;}
.y4{bottom:225.900000px;}
.yfb{bottom:226.620000px;}
.yf2{bottom:226.905000px;}
.y29{bottom:226.980000px;}
.ydb{bottom:227.055000px;}
.y6c{bottom:227.850000px;}
.y92{bottom:230.220000px;}
.yb8{bottom:230.295000px;}
.y3e{bottom:231.015000px;}
.y5b{bottom:238.395000px;}
.y89{bottom:238.935000px;}
.yd4{bottom:239.400000px;}
.yc1{bottom:243.510000px;}
.ya2{bottom:249.915000px;}
.yda{bottom:251.925000px;}
.y99{bottom:254.010000px;}
.y78{bottom:254.595000px;}
.y1b{bottom:258.690000px;}
.y3d{bottom:258.735000px;}
.y91{bottom:259.020000px;}
.yab{bottom:260.565000px;}
.yb7{bottom:262.695000px;}
.yf1{bottom:262.905000px;}
.yd3{bottom:264.240000px;}
.y28{bottom:270.570000px;}
.y6b{bottom:271.590000px;}
.y88{bottom:272.055000px;}
.y5a{bottom:272.955000px;}
.y4c{bottom:274.680000px;}
.y7e{bottom:276.195000px;}
.ya1{bottom:282.315000px;}
.y3{bottom:286.200000px;}
.y98{bottom:286.410000px;}
.y3c{bottom:286.455000px;}
.y90{bottom:287.820000px;}
.y1a{bottom:293.790000px;}
.yb6{bottom:295.095000px;}
.yd9{bottom:296.925000px;}
.y77{bottom:297.795000px;}
.yf0{bottom:298.905000px;}
.y6a{bottom:300.390000px;}
.yfa{bottom:304.380000px;}
.y87{bottom:305.175000px;}
.y27{bottom:306.570000px;}
.y59{bottom:307.515000px;}
.yd2{bottom:309.270000px;}
.y4b{bottom:310.350000px;}
.y3b{bottom:314.175000px;}
.ya0{bottom:314.745000px;}
.y8f{bottom:316.650000px;}
.y97{bottom:318.855000px;}
.y7d{bottom:319.395000px;}
.y19{bottom:328.890000px;}
.y69{bottom:329.190000px;}
.yef{bottom:334.905000px;}
.y76{bottom:340.995000px;}
.y3a{bottom:341.895000px;}
.y26{bottom:342.570000px;}
.yb5{bottom:347.610000px;}
.yb{bottom:347.655000px;}
.y86{bottom:356.325000px;}
.y58{bottom:357.195000px;}
.y7c{bottom:362.595000px;}
.y18{bottom:364.035000px;}
.y2e{bottom:366.195000px;}
.y39{bottom:369.615000px;}
.y4a{bottom:370.110000px;}
.yee{bottom:370.950000px;}
.y68{bottom:373.140000px;}
.y8e{bottom:374.250000px;}
.ye4{bottom:375.375000px;}
.yac{bottom:377.460000px;}
.yb4{bottom:380.055000px;}
.y75{bottom:384.195000px;}
.y25{bottom:386.130000px;}
.y2{bottom:386.280000px;}
.y85{bottom:389.445000px;}
.y5{bottom:390.525000px;}
.y57{bottom:391.785000px;}
.y38{bottom:397.365000px;}
.yf9{bottom:398.370000px;}
.y17{bottom:399.135000px;}
.y5f{bottom:399.495000px;}
.y67{bottom:401.940000px;}
.y8d{bottom:403.050000px;}
.y7b{bottom:405.795000px;}
.yed{bottom:406.950000px;}
.yb3{bottom:412.455000px;}
.ya{bottom:413.025000px;}
.yf8{bottom:414.720000px;}
.y2d{bottom:418.035000px;}
.y24{bottom:422.175000px;}
.y37{bottom:425.085000px;}
.y56{bottom:426.345000px;}
.y74{bottom:427.425000px;}
.y49{bottom:429.690000px;}
.y66{bottom:430.740000px;}
.y16{bottom:434.235000px;}
.yec{bottom:442.950000px;}
.y7a{bottom:447.585000px;}
.y36{bottom:452.805000px;}
.y84{bottom:454.935000px;}
.ya7{bottom:458.970000px;}
.y65{bottom:459.540000px;}
.y55{bottom:460.905000px;}
.ye2{bottom:465.330000px;}
.y48{bottom:465.375000px;}
.y9f{bottom:467.025000px;}
.y1{bottom:467.670000px;}
.yb2{bottom:468.720000px;}
.y79{bottom:469.185000px;}
.y15{bottom:469.335000px;}
.y73{bottom:470.625000px;}
.y9{bottom:478.365000px;}
.yeb{bottom:478.950000px;}
.ye3{bottom:479.085000px;}
.y35{bottom:480.525000px;}
.y83{bottom:483.735000px;}
.y64{bottom:488.340000px;}
.ye1{bottom:490.170000px;}
.ya6{bottom:492.090000px;}
.y54{bottom:495.465000px;}
.y9e{bottom:499.425000px;}
.y47{bottom:501.015000px;}
.yb1{bottom:501.150000px;}
.yad{bottom:501.990000px;}
.y14{bottom:504.435000px;}
.y34{bottom:508.245000px;}
.y82{bottom:512.535000px;}
.y23{bottom:513.075000px;}
.yea{bottom:514.980000px;}
.ye0{bottom:515.010000px;}
.yd1{bottom:522.930000px;}
.ya5{bottom:525.240000px;}
.y8{bottom:528.810000px;}
.y9d{bottom:531.825000px;}
.y63{bottom:532.110000px;}
.yb0{bottom:533.550000px;}
.y13{bottom:539.565000px;}
.ydf{bottom:539.850000px;}
.yaf{bottom:544.965000px;}
.y53{bottom:545.010000px;}
.y71{bottom:545.295000px;}
.y22{bottom:545.475000px;}
.yd0{bottom:547.770000px;}
.ye9{bottom:550.980000px;}
.yae{bottom:554.505000px;}
.y46{bottom:560.595000px;}
.y62{bottom:560.910000px;}
.y33{bottom:563.730000px;}
.y9c{bottom:564.225000px;}
.y81{bottom:568.335000px;}
.ycf{bottom:572.610000px;}
.y12{bottom:574.665000px;}
.ya4{bottom:576.360000px;}
.y21{bottom:577.875000px;}
.y52{bottom:579.570000px;}
.yde{bottom:584.895000px;}
.ye8{bottom:586.980000px;}
.y61{bottom:589.710000px;}
.y32{bottom:591.450000px;}
.y7{bottom:594.330000px;}
.y45{bottom:596.235000px;}
.y11{bottom:609.765000px;}
.y51{bottom:614.130000px;}
.yce{bottom:617.610000px;}
.y60{bottom:618.510000px;}
.y31{bottom:619.170000px;}
.ye7{bottom:622.980000px;}
.ya9{bottom:626.790000px;}
.y20{bottom:629.925000px;}
.y44{bottom:631.905000px;}
.y80{bottom:635.370000px;}
.yc0{bottom:640.800000px;}
.y10{bottom:644.865000px;}
.ye6{bottom:658.980000px;}
.yf{bottom:663.045000px;}
.ya8{bottom:677.190000px;}
.y7f{bottom:678.570000px;}
.yca{bottom:681.630000px;}
.ybd{bottom:686.130000px;}
.ybf{bottom:689.610000px;}
.y30{bottom:701.205000px;}
.ye5{bottom:710.460000px;}
.y6{bottom:724.680000px;}
.y72{bottom:730.260000px;}
.y1f{bottom:730.365000px;}
.yc9{bottom:733.500000px;}
.ye{bottom:734.730000px;}
.ybc{bottom:737.970000px;}
.ybe{bottom:741.450000px;}
.y2f{bottom:759.570000px;}
.ha{height:38.700352px;}
.hb{height:72.394560px;}
.hd{height:74.027520px;}
.hc{height:74.164608px;}
.h30{height:75.093750px;}
.h28{height:91.471641px;}
.h20{height:95.245664px;}
.h22{height:95.388891px;}
.h27{height:96.462070px;}
.h1f{height:98.051133px;}
.h21{height:98.198578px;}
.h2e{height:99.874688px;}
.h2f{height:100.024875px;}
.h2c{height:101.750344px;}
.h29{height:107.419922px;}
.h2a{height:107.563148px;}
.h24{height:110.583984px;}
.h23{height:110.731430px;}
.h2d{height:112.640625px;}
.h10{height:119.594180px;}
.h12{height:119.737406px;}
.h1d{height:121.710938px;}
.h1e{height:121.832648px;}
.hf{height:123.116836px;}
.h11{height:123.264281px;}
.h31{height:125.085938px;}
.h32{height:125.211023px;}
.h15{height:131.052305px;}
.h16{height:131.195531px;}
.h14{height:134.912461px;}
.h17{height:135.059906px;}
.h25{height:141.793242px;}
.h26{height:141.914953px;}
.h18{height:143.226562px;}
.h19{height:143.369789px;}
.h3{height:145.397461px;}
.h4{height:145.522266px;}
.h1b{height:147.445312px;}
.h1c{height:150.187500px;}
.h9{height:166.858945px;}
.h13{height:166.989727px;}
.h2b{height:167.114812px;}
.h7{height:171.773789px;}
.h8{height:171.921234px;}
.h6{height:187.628906px;}
.h5{height:187.753992px;}
.he{height:196.839492px;}
.h2{height:208.125703px;}
.h1{height:208.247414px;}
.h1a{height:294.890625px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x40{left:8.531979px;}
.x44{left:16.811979px;}
.x48{left:20.447979px;}
.x41{left:29.231979px;}
.x9{left:32.615979px;}
.xd{left:35.207979px;}
.x42{left:38.267979px;}
.x43{left:40.931979px;}
.x1f{left:45.395979px;}
.x4{left:47.231979px;}
.xc{left:51.371979px;}
.x45{left:52.811979px;}
.x47{left:54.503979px;}
.x36{left:58.391979px;}
.x34{left:60.731979px;}
.x3{left:63.863979px;}
.x2f{left:75.599979px;}
.x1{left:82.583979px;}
.x46{left:92.051979px;}
.xe{left:96.047979px;}
.xa{left:97.703979px;}
.x7{left:117.863979px;}
.xb{left:124.703979px;}
.x2{left:140.615979px;}
.x8{left:144.863979px;}
.x30{left:148.427979px;}
.x11{left:204.374979px;}
.x12{left:206.894979px;}
.x13{left:234.074979px;}
.x15{left:236.234979px;}
.x14{left:258.734979px;}
.x10{left:294.014979px;}
.x22{left:412.229979px;}
.x23{left:419.789979px;}
.x24{left:423.569979px;}
.x49{left:462.449979px;}
.x25{left:466.229979px;}
.x21{left:503.849979px;}
.x4c{left:510.944979px;}
.x4b{left:515.264979px;}
.x4a{left:545.684979px;}
.x29{left:576.614979px;}
.x28{left:578.414979px;}
.x27{left:589.574979px;}
.x33{left:602.024979px;}
.x1a{left:609.809979px;}
.x18{left:617.549979px;}
.x19{left:621.149979px;}
.x26{left:635.834979px;}
.x5{left:640.229979px;}
.x17{left:643.469979px;}
.x6{left:660.569979px;}
.x35{left:691.274979px;}
.x3e{left:693.284979px;}
.x16{left:704.129979px;}
.x3d{left:712.004979px;}
.x2c{left:717.839979px;}
.x2b{left:763.019979px;}
.xf{left:765.794979px;}
.x3f{left:780.404979px;}
.x2a{left:809.459979px;}
.x2d{left:863.849979px;}
.x2e{left:902.054979px;}
.x20{left:975.059979px;}
.x1d{left:1013.069979px;}
.x1c{left:1049.969979px;}
.x1e{left:1060.769979px;}
.x1b{left:1116.389979px;}
.x3a{left:1117.619979px;}
.x3b{left:1124.924979px;}
.x39{left:1132.379979px;}
.x38{left:1156.829979px;}
.x37{left:1158.629979px;}
.x3c{left:1219.424979px;}
.x32{left:1294.844979px;}
.x31{left:1330.844979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:60.320000pt;}
.ls5{letter-spacing:-1.360000pt;}
.ls16{letter-spacing:-1.242667pt;}
.ls9{letter-spacing:-0.418667pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.210667pt;}
.ls7{letter-spacing:-0.197333pt;}
.ls20{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.121600pt;}
.ls6{letter-spacing:-0.083733pt;}
.ls1c{letter-spacing:-0.066667pt;}
.ls15{letter-spacing:-0.000640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.058133pt;}
.ls19{letter-spacing:0.075200pt;}
.ls10{letter-spacing:0.098667pt;}
.ls1f{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.135467pt;}
.ls1a{letter-spacing:0.140267pt;}
.lsa{letter-spacing:0.146667pt;}
.ls21{letter-spacing:0.201600pt;}
.ls1d{letter-spacing:0.211733pt;}
.lsd{letter-spacing:0.221333pt;}
.ls3{letter-spacing:0.449280pt;}
.ls8{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls14{letter-spacing:23.510016pt;}
.ls13{letter-spacing:24.213760pt;}
.ls2{letter-spacing:33.834496pt;}
.lse{letter-spacing:48.083200pt;}
.lsf{letter-spacing:48.128000pt;}
.ls11{letter-spacing:58.547200pt;}
.ls12{letter-spacing:58.592000pt;}
.ls22{letter-spacing:86.720000pt;}
.ls18{letter-spacing:94.234112pt;}
.ls17{letter-spacing:94.273280pt;}
.ws37{word-spacing:-57.856000pt;}
.ws0{word-spacing:-44.432640pt;}
.ws3{word-spacing:-39.001984pt;}
.ws2e{word-spacing:-38.976000pt;}
.ws3e{word-spacing:-34.916224pt;}
.ws27{word-spacing:-34.688640pt;}
.ws33{word-spacing:-34.621973pt;}
.wsc{word-spacing:-34.255787pt;}
.ws6{word-spacing:-33.701120pt;}
.ws8{word-spacing:-32.370048pt;}
.ws19{word-spacing:-32.134827pt;}
.ws1{word-spacing:-30.086677pt;}
.ws38{word-spacing:-28.956928pt;}
.ws32{word-spacing:-28.928000pt;}
.ws2d{word-spacing:-26.498048pt;}
.ws29{word-spacing:-26.469120pt;}
.ws40{word-spacing:-26.009984pt;}
.ws3f{word-spacing:-25.984000pt;}
.ws36{word-spacing:-24.183808pt;}
.ws35{word-spacing:-24.154880pt;}
.ws3a{word-spacing:-21.696000pt;}
.ws3d{word-spacing:-17.792000pt;}
.ws10{word-spacing:-10.780907pt;}
.ws3c{word-spacing:-5.504000pt;}
.ws39{word-spacing:-1.952000pt;}
.ws1c{word-spacing:-1.486933pt;}
.ws3b{word-spacing:-1.229440pt;}
.ws1e{word-spacing:-1.163200pt;}
.ws18{word-spacing:-0.953600pt;}
.ws1f{word-spacing:-0.912640pt;}
.ws17{word-spacing:-0.841813pt;}
.ws1a{word-spacing:-0.834560pt;}
.ws1d{word-spacing:-0.795520pt;}
.ws23{word-spacing:-0.238720pt;}
.ws1b{word-spacing:-0.201813pt;}
.ws26{word-spacing:-0.057387pt;}
.ws24{word-spacing:-0.031360pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:0.248661pt;}
.ws22{word-spacing:0.256000pt;}
.wsd{word-spacing:0.439040pt;}
.ws11{word-spacing:0.445440pt;}
.ws14{word-spacing:0.493440pt;}
.ws15{word-spacing:0.568960pt;}
.ws2a{word-spacing:0.615253pt;}
.wsf{word-spacing:0.767360pt;}
.ws13{word-spacing:0.784000pt;}
.ws4{word-spacing:0.853333pt;}
.ws12{word-spacing:0.926720pt;}
.ws9{word-spacing:0.929493pt;}
.ws16{word-spacing:1.078187pt;}
.ws5{word-spacing:1.389653pt;}
.wsa{word-spacing:1.859840pt;}
.wse{word-spacing:1.920960pt;}
.ws28{word-spacing:2.041173pt;}
.ws2b{word-spacing:2.219093pt;}
.ws2c{word-spacing:2.296320pt;}
.ws25{word-spacing:2.663893pt;}
.ws7{word-spacing:35.378005pt;}
.wsb{word-spacing:67.451200pt;}
.ws31{word-spacing:91.008000pt;}
.ws30{word-spacing:100.536000pt;}
.ws2f{word-spacing:100.605120pt;}
.ws34{word-spacing:110.408000pt;}
.ws21{word-spacing:1312.181760pt;}
._13{margin-left:-12.692608pt;}
._8{margin-left:-11.099947pt;}
._b{margin-left:-9.274496pt;}
._c{margin-left:-7.883392pt;}
._d{margin-left:-6.416640pt;}
._11{margin-left:-5.103360pt;}
._7{margin-left:-4.026240pt;}
._5{margin-left:-2.684160pt;}
._3{margin-left:-1.640320pt;}
._6{width:1.640320pt;}
._4{width:3.417941pt;}
._14{width:4.712320pt;}
._2{width:8.103296pt;}
._1{width:10.731392pt;}
._0{width:12.045440pt;}
._16{width:16.331520pt;}
._9{width:17.445547pt;}
._15{width:20.865152pt;}
._a{width:23.242347pt;}
._e{width:25.501440pt;}
._f{width:27.802240pt;}
._10{width:36.001365pt;}
._12{width:40.449536pt;}
.fs6{font-size:42.880000pt;}
.fs16{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs7{font-size:69.248000pt;}
.fse{font-size:85.120000pt;}
.fsf{font-size:85.248000pt;}
.fs14{font-size:96.000000pt;}
.fs13{font-size:96.128000pt;}
.fsa{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fsc{font-size:117.120000pt;}
.fsd{font-size:117.248000pt;}
.fs10{font-size:128.000000pt;}
.fs11{font-size:128.128000pt;}
.fs2{font-size:149.120000pt;}
.fs3{font-size:149.248000pt;}
.fs9{font-size:170.880000pt;}
.fs15{font-size:171.008000pt;}
.fs5{font-size:192.000000pt;}
.fs4{font-size:192.128000pt;}
.fs1{font-size:218.880000pt;}
.fs0{font-size:219.008000pt;}
.fs12{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:18.304000pt;}
.yd8{bottom:29.088000pt;}
.yf7{bottom:41.664000pt;}
.yc7{bottom:44.096000pt;}
.yd7{bottom:51.168000pt;}
.ycd{bottom:51.936000pt;}
.y43{bottom:66.432000pt;}
.yc6{bottom:69.696000pt;}
.yd6{bottom:73.248000pt;}
.yf6{bottom:73.664000pt;}
.ycc{bottom:74.016000pt;}
.y50{bottom:74.848000pt;}
.y42{bottom:91.072000pt;}
.yc5{bottom:95.296000pt;}
.ybb{bottom:96.160000pt;}
.y2c{bottom:99.200000pt;}
.y70{bottom:100.096000pt;}
.yd{bottom:100.544000pt;}
.y96{bottom:102.208000pt;}
.yf5{bottom:105.664000pt;}
.y4f{bottom:106.528000pt;}
.yd5{bottom:113.280000pt;}
.yc{bottom:113.344000pt;}
.ycb{bottom:114.048000pt;}
.y41{bottom:115.712000pt;}
.y5e{bottom:119.712000pt;}
.yaa{bottom:120.832000pt;}
.yc4{bottom:120.896000pt;}
.y8c{bottom:124.032000pt;}
.yba{bottom:124.992000pt;}
.y6f{bottom:125.696000pt;}
.y95{bottom:127.808000pt;}
.y2b{bottom:131.200000pt;}
.y1e{bottom:136.320000pt;}
.yf4{bottom:137.666667pt;}
.y40{bottom:140.346667pt;}
.yc3{bottom:146.493333pt;}
.y5d{bottom:150.426667pt;}
.y6e{bottom:151.293333pt;}
.y94{bottom:153.440000pt;}
.y8b{bottom:153.466667pt;}
.yb9{bottom:153.786667pt;}
.ydd{bottom:157.666667pt;}
.y4e{bottom:159.520000pt;}
.y3f{bottom:164.986667pt;}
.y1d{bottom:167.520000pt;}
.y9b{bottom:168.186667pt;}
.yf3{bottom:169.693333pt;}
.y2a{bottom:169.760000pt;}
.yc2{bottom:172.133333pt;}
.y6d{bottom:176.893333pt;}
.y93{bottom:179.040000pt;}
.ydc{bottom:179.746667pt;}
.y5c{bottom:181.146667pt;}
.y8a{bottom:182.946667pt;}
.y4d{bottom:191.200000pt;}
.ya3{bottom:193.026667pt;}
.y9a{bottom:196.986667pt;}
.y1c{bottom:198.746667pt;}
.y4{bottom:200.800000pt;}
.yfb{bottom:201.440000pt;}
.yf2{bottom:201.693333pt;}
.y29{bottom:201.760000pt;}
.ydb{bottom:201.826667pt;}
.y6c{bottom:202.533333pt;}
.y92{bottom:204.640000pt;}
.yb8{bottom:204.706667pt;}
.y3e{bottom:205.346667pt;}
.y5b{bottom:211.906667pt;}
.y89{bottom:212.386667pt;}
.yd4{bottom:212.800000pt;}
.yc1{bottom:216.453333pt;}
.ya2{bottom:222.146667pt;}
.yda{bottom:223.933333pt;}
.y99{bottom:225.786667pt;}
.y78{bottom:226.306667pt;}
.y1b{bottom:229.946667pt;}
.y3d{bottom:229.986667pt;}
.y91{bottom:230.240000pt;}
.yab{bottom:231.613333pt;}
.yb7{bottom:233.506667pt;}
.yf1{bottom:233.693333pt;}
.yd3{bottom:234.880000pt;}
.y28{bottom:240.506667pt;}
.y6b{bottom:241.413333pt;}
.y88{bottom:241.826667pt;}
.y5a{bottom:242.626667pt;}
.y4c{bottom:244.160000pt;}
.y7e{bottom:245.506667pt;}
.ya1{bottom:250.946667pt;}
.y3{bottom:254.400000pt;}
.y98{bottom:254.586667pt;}
.y3c{bottom:254.626667pt;}
.y90{bottom:255.840000pt;}
.y1a{bottom:261.146667pt;}
.yb6{bottom:262.306667pt;}
.yd9{bottom:263.933333pt;}
.y77{bottom:264.706667pt;}
.yf0{bottom:265.693333pt;}
.y6a{bottom:267.013333pt;}
.yfa{bottom:270.560000pt;}
.y87{bottom:271.266667pt;}
.y27{bottom:272.506667pt;}
.y59{bottom:273.346667pt;}
.yd2{bottom:274.906667pt;}
.y4b{bottom:275.866667pt;}
.y3b{bottom:279.266667pt;}
.ya0{bottom:279.773333pt;}
.y8f{bottom:281.466667pt;}
.y97{bottom:283.426667pt;}
.y7d{bottom:283.906667pt;}
.y19{bottom:292.346667pt;}
.y69{bottom:292.613333pt;}
.yef{bottom:297.693333pt;}
.y76{bottom:303.106667pt;}
.y3a{bottom:303.906667pt;}
.y26{bottom:304.506667pt;}
.yb5{bottom:308.986667pt;}
.yb{bottom:309.026667pt;}
.y86{bottom:316.733333pt;}
.y58{bottom:317.506667pt;}
.y7c{bottom:322.306667pt;}
.y18{bottom:323.586667pt;}
.y2e{bottom:325.506667pt;}
.y39{bottom:328.546667pt;}
.y4a{bottom:328.986667pt;}
.yee{bottom:329.733333pt;}
.y68{bottom:331.680000pt;}
.y8e{bottom:332.666667pt;}
.ye4{bottom:333.666667pt;}
.yac{bottom:335.520000pt;}
.yb4{bottom:337.826667pt;}
.y75{bottom:341.506667pt;}
.y25{bottom:343.226667pt;}
.y2{bottom:343.360000pt;}
.y85{bottom:346.173333pt;}
.y5{bottom:347.133333pt;}
.y57{bottom:348.253333pt;}
.y38{bottom:353.213333pt;}
.yf9{bottom:354.106667pt;}
.y17{bottom:354.786667pt;}
.y5f{bottom:355.106667pt;}
.y67{bottom:357.280000pt;}
.y8d{bottom:358.266667pt;}
.y7b{bottom:360.706667pt;}
.yed{bottom:361.733333pt;}
.yb3{bottom:366.626667pt;}
.ya{bottom:367.133333pt;}
.yf8{bottom:368.640000pt;}
.y2d{bottom:371.586667pt;}
.y24{bottom:375.266667pt;}
.y37{bottom:377.853333pt;}
.y56{bottom:378.973333pt;}
.y74{bottom:379.933333pt;}
.y49{bottom:381.946667pt;}
.y66{bottom:382.880000pt;}
.y16{bottom:385.986667pt;}
.yec{bottom:393.733333pt;}
.y7a{bottom:397.853333pt;}
.y36{bottom:402.493333pt;}
.y84{bottom:404.386667pt;}
.ya7{bottom:407.973333pt;}
.y65{bottom:408.480000pt;}
.y55{bottom:409.693333pt;}
.ye2{bottom:413.626667pt;}
.y48{bottom:413.666667pt;}
.y9f{bottom:415.133333pt;}
.y1{bottom:415.706667pt;}
.yb2{bottom:416.640000pt;}
.y79{bottom:417.053333pt;}
.y15{bottom:417.186667pt;}
.y73{bottom:418.333333pt;}
.y9{bottom:425.213333pt;}
.yeb{bottom:425.733333pt;}
.ye3{bottom:425.853333pt;}
.y35{bottom:427.133333pt;}
.y83{bottom:429.986667pt;}
.y64{bottom:434.080000pt;}
.ye1{bottom:435.706667pt;}
.ya6{bottom:437.413333pt;}
.y54{bottom:440.413333pt;}
.y9e{bottom:443.933333pt;}
.y47{bottom:445.346667pt;}
.yb1{bottom:445.466667pt;}
.yad{bottom:446.213333pt;}
.y14{bottom:448.386667pt;}
.y34{bottom:451.773333pt;}
.y82{bottom:455.586667pt;}
.y23{bottom:456.066667pt;}
.yea{bottom:457.760000pt;}
.ye0{bottom:457.786667pt;}
.yd1{bottom:464.826667pt;}
.ya5{bottom:466.880000pt;}
.y8{bottom:470.053333pt;}
.y9d{bottom:472.733333pt;}
.y63{bottom:472.986667pt;}
.yb0{bottom:474.266667pt;}
.y13{bottom:479.613333pt;}
.ydf{bottom:479.866667pt;}
.yaf{bottom:484.413333pt;}
.y53{bottom:484.453333pt;}
.y71{bottom:484.706667pt;}
.y22{bottom:484.866667pt;}
.yd0{bottom:486.906667pt;}
.ye9{bottom:489.760000pt;}
.yae{bottom:492.893333pt;}
.y46{bottom:498.306667pt;}
.y62{bottom:498.586667pt;}
.y33{bottom:501.093333pt;}
.y9c{bottom:501.533333pt;}
.y81{bottom:505.186667pt;}
.ycf{bottom:508.986667pt;}
.y12{bottom:510.813333pt;}
.ya4{bottom:512.320000pt;}
.y21{bottom:513.666667pt;}
.y52{bottom:515.173333pt;}
.yde{bottom:519.906667pt;}
.ye8{bottom:521.760000pt;}
.y61{bottom:524.186667pt;}
.y32{bottom:525.733333pt;}
.y7{bottom:528.293333pt;}
.y45{bottom:529.986667pt;}
.y11{bottom:542.013333pt;}
.y51{bottom:545.893333pt;}
.yce{bottom:548.986667pt;}
.y60{bottom:549.786667pt;}
.y31{bottom:550.373333pt;}
.ye7{bottom:553.760000pt;}
.ya9{bottom:557.146667pt;}
.y20{bottom:559.933333pt;}
.y44{bottom:561.693333pt;}
.y80{bottom:564.773333pt;}
.yc0{bottom:569.600000pt;}
.y10{bottom:573.213333pt;}
.ye6{bottom:585.760000pt;}
.yf{bottom:589.373333pt;}
.ya8{bottom:601.946667pt;}
.y7f{bottom:603.173333pt;}
.yca{bottom:605.893333pt;}
.ybd{bottom:609.893333pt;}
.ybf{bottom:612.986667pt;}
.y30{bottom:623.293333pt;}
.ye5{bottom:631.520000pt;}
.y6{bottom:644.160000pt;}
.y72{bottom:649.120000pt;}
.y1f{bottom:649.213333pt;}
.yc9{bottom:652.000000pt;}
.ye{bottom:653.093333pt;}
.ybc{bottom:655.973333pt;}
.ybe{bottom:659.066667pt;}
.y2f{bottom:675.173333pt;}
.ha{height:34.400312pt;}
.hb{height:64.350720pt;}
.hd{height:65.802240pt;}
.hc{height:65.924096pt;}
.h30{height:66.750000pt;}
.h28{height:81.308125pt;}
.h20{height:84.662813pt;}
.h22{height:84.790125pt;}
.h27{height:85.744062pt;}
.h1f{height:87.156562pt;}
.h21{height:87.287625pt;}
.h2e{height:88.777500pt;}
.h2f{height:88.911000pt;}
.h2c{height:90.444750pt;}
.h29{height:95.484375pt;}
.h2a{height:95.611688pt;}
.h24{height:98.296875pt;}
.h23{height:98.427937pt;}
.h2d{height:100.125000pt;}
.h10{height:106.305937pt;}
.h12{height:106.433250pt;}
.h1d{height:108.187500pt;}
.h1e{height:108.295687pt;}
.hf{height:109.437187pt;}
.h11{height:109.568250pt;}
.h31{height:111.187500pt;}
.h32{height:111.298687pt;}
.h15{height:116.490937pt;}
.h16{height:116.618250pt;}
.h14{height:119.922187pt;}
.h17{height:120.053250pt;}
.h25{height:126.038437pt;}
.h26{height:126.146625pt;}
.h18{height:127.312500pt;}
.h19{height:127.439813pt;}
.h3{height:129.242188pt;}
.h4{height:129.353125pt;}
.h1b{height:131.062500pt;}
.h1c{height:133.500000pt;}
.h9{height:148.319063pt;}
.h13{height:148.435313pt;}
.h2b{height:148.546500pt;}
.h7{height:152.687812pt;}
.h8{height:152.818875pt;}
.h6{height:166.781250pt;}
.h5{height:166.892437pt;}
.he{height:174.968437pt;}
.h2{height:185.000625pt;}
.h1{height:185.108812pt;}
.h1a{height:262.125000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x40{left:7.583981pt;}
.x44{left:14.943981pt;}
.x48{left:18.175981pt;}
.x41{left:25.983981pt;}
.x9{left:28.991981pt;}
.xd{left:31.295981pt;}
.x42{left:34.015981pt;}
.x43{left:36.383981pt;}
.x1f{left:40.351981pt;}
.x4{left:41.983981pt;}
.xc{left:45.663981pt;}
.x45{left:46.943981pt;}
.x47{left:48.447981pt;}
.x36{left:51.903981pt;}
.x34{left:53.983981pt;}
.x3{left:56.767981pt;}
.x2f{left:67.199981pt;}
.x1{left:73.407981pt;}
.x46{left:81.823981pt;}
.xe{left:85.375981pt;}
.xa{left:86.847981pt;}
.x7{left:104.767981pt;}
.xb{left:110.847981pt;}
.x2{left:124.991981pt;}
.x8{left:128.767981pt;}
.x30{left:131.935981pt;}
.x11{left:181.666648pt;}
.x12{left:183.906648pt;}
.x13{left:208.066648pt;}
.x15{left:209.986648pt;}
.x14{left:229.986648pt;}
.x10{left:261.346648pt;}
.x22{left:366.426648pt;}
.x23{left:373.146648pt;}
.x24{left:376.506648pt;}
.x49{left:411.066648pt;}
.x25{left:414.426648pt;}
.x21{left:447.866648pt;}
.x4c{left:454.173314pt;}
.x4b{left:458.013314pt;}
.x4a{left:485.053314pt;}
.x29{left:512.546648pt;}
.x28{left:514.146648pt;}
.x27{left:524.066648pt;}
.x33{left:535.133314pt;}
.x1a{left:542.053314pt;}
.x18{left:548.933314pt;}
.x19{left:552.133314pt;}
.x26{left:565.186648pt;}
.x5{left:569.093314pt;}
.x17{left:571.973314pt;}
.x6{left:587.173314pt;}
.x35{left:614.466648pt;}
.x3e{left:616.253314pt;}
.x16{left:625.893314pt;}
.x3d{left:632.893314pt;}
.x2c{left:638.079981pt;}
.x2b{left:678.239981pt;}
.xf{left:680.706648pt;}
.x3f{left:693.693314pt;}
.x2a{left:719.519981pt;}
.x2d{left:767.866648pt;}
.x2e{left:801.826648pt;}
.x20{left:866.719981pt;}
.x1d{left:900.506648pt;}
.x1c{left:933.306648pt;}
.x1e{left:942.906648pt;}
.x1b{left:992.346648pt;}
.x3a{left:993.439981pt;}
.x3b{left:999.933314pt;}
.x39{left:1006.559981pt;}
.x38{left:1028.293314pt;}
.x37{left:1029.893314pt;}
.x3c{left:1083.933314pt;}
.x32{left:1150.973314pt;}
.x31{left:1182.973314pt;}
}




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