
    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_cd6bc47d3537b337e163ab6c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_163751f5e4b6d55d23f8349a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d239531a99d3c998a1612924.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_26a62bf2b28aaa9817c56eee.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_d6180ece43a97fb4600b6d0b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f83a871b4613699fdcbb5011.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cff5ea837174a940cf07105d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.968262;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_d86ceb2c5c4e435f696018e9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_22989283a0f8d643352d71a2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.884766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_898b71db6e5a8c864f3f33a1.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_640284339a3dcc53b98f0657.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls16{letter-spacing:-1.176000px;}
.lsa{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.414600px;}
.ls12{letter-spacing:-0.305400px;}
.ls1a{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.190200px;}
.ls8{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.114000px;}
.lsf{letter-spacing:-0.109200px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.078000px;}
.lse{letter-spacing:0.109200px;}
.ls14{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.187200px;}
.ls11{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.315600px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.567360px;}
.ls13{letter-spacing:0.567600px;}
.ls3{letter-spacing:0.576000px;}
.ls18{letter-spacing:6.785280px;}
.ls17{letter-spacing:39.881280px;}
.ls19{letter-spacing:39.905280px;}
.lsc{letter-spacing:49.680000px;}
.lsb{letter-spacing:59.321280px;}
.ls4{letter-spacing:59.345280px;}
.ls10{letter-spacing:89.585280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-66.240000px;}
.ws9{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws6{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.127600px;}
.wse{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.669200px;}
.wsb{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.450800px;}
.ws13{word-spacing:-16.297800px;}
.wsf{word-spacing:-16.254600px;}
.ws11{word-spacing:-16.145400px;}
.ws4{word-spacing:-15.912000px;}
.wsa{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.696000px;}
.ws12{word-spacing:-15.384000px;}
.ws3{word-spacing:-14.650800px;}
.ws14{word-spacing:-10.755600px;}
.ws8{word-spacing:0.000000px;}
._34{margin-left:-2.119680px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.323200px;}
._14{width:3.682080px;}
._b{width:4.835520px;}
._6{width:6.303360px;}
._5{width:7.387920px;}
._7{width:8.611200px;}
._8{width:9.966960px;}
._18{width:11.327040px;}
._19{width:12.453120px;}
._e{width:13.910400px;}
._24{width:15.071760px;}
._16{width:17.838000px;}
._33{width:19.474560px;}
._2a{width:20.834640px;}
._4{width:21.864720px;}
._3{width:23.040000px;}
._f{width:24.243840px;}
._a{width:25.833600px;}
._10{width:27.555840px;}
._9{width:29.013120px;}
._25{width:30.536640px;}
._15{width:31.932480px;}
._3d{width:33.174000px;}
._17{width:34.246080px;}
._23{width:35.274960px;}
._3c{width:36.299520px;}
._2f{width:38.180880px;}
._21{width:39.314880px;}
._d{width:40.574160px;}
._c{width:42.062400px;}
._26{width:43.374000px;}
._29{width:44.577600px;}
._3b{width:45.838080px;}
._28{width:47.502480px;}
._4f{width:48.545520px;}
._27{width:49.649040px;}
._13{width:51.071040px;}
._35{width:52.929360px;}
._1b{width:54.422640px;}
._1a{width:55.575360px;}
._2e{width:56.966400px;}
._2d{width:57.995280px;}
._3f{width:59.331600px;}
._22{width:60.344640px;}
._1d{width:61.470720px;}
._1c{width:62.499600px;}
._3e{width:64.782720px;}
._39{width:66.209040px;}
._49{width:68.425920px;}
._4a{width:69.485760px;}
._4b{width:71.009280px;}
._42{width:72.965520px;}
._40{width:76.998720px;}
._37{width:78.693120px;}
._38{width:79.819200px;}
._4e{width:81.406080px;}
._36{width:83.661120px;}
._45{width:89.556480px;}
._41{width:90.616320px;}
._51{width:94.154400px;}
._50{width:95.385600px;}
._11{width:96.842880px;}
._12{width:98.300160px;}
._2b{width:99.889920px;}
._2c{width:101.285280px;}
._30{width:102.465360px;}
._48{width:105.196080px;}
._47{width:106.740960px;}
._31{width:109.494720px;}
._32{width:116.616000px;}
._43{width:120.821760px;}
._44{width:122.610240px;}
._46{width:124.061160px;}
._4d{width:147.384000px;}
._4c{width:148.576320px;}
._20{width:152.893440px;}
._1e{width:189.617520px;}
._1f{width:197.647200px;}
._3a{width:261.184320px;}
._52{width:847.596000px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y17{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ye{bottom:22.860000px;}
.y14{bottom:26.640000px;}
.y5{bottom:33.120000px;}
.y13{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y12{bottom:70.560000px;}
.y51{bottom:75.240000px;}
.y122{bottom:127.080000px;}
.y4e{bottom:131.400000px;}
.y101{bottom:131.760000px;}
.y7c{bottom:133.020000px;}
.ya7{bottom:134.100000px;}
.y121{bottom:151.740000px;}
.y4d{bottom:156.060000px;}
.yf1{bottom:156.420000px;}
.y7b{bottom:157.680000px;}
.y37{bottom:158.580000px;}
.ya6{bottom:158.760000px;}
.yca{bottom:170.460000px;}
.y120{bottom:176.400000px;}
.y4c{bottom:180.900000px;}
.yf0{bottom:181.080000px;}
.y100{bottom:181.260000px;}
.y7a{bottom:182.340000px;}
.yfa{bottom:183.060000px;}
.y36{bottom:183.240000px;}
.ya5{bottom:183.420000px;}
.yc9{bottom:195.120000px;}
.y11f{bottom:201.060000px;}
.y4b{bottom:205.560000px;}
.yef{bottom:205.740000px;}
.y79{bottom:207.030000px;}
.ya4{bottom:208.110000px;}
.y35{bottom:209.010000px;}
.yc8{bottom:220.890000px;}
.y11e{bottom:225.750000px;}
.y4a{bottom:230.250000px;}
.yee{bottom:230.430000px;}
.y78{bottom:231.690000px;}
.ya3{bottom:232.770000px;}
.y34{bottom:233.850000px;}
.yc7{bottom:245.550000px;}
.y11d{bottom:250.410000px;}
.y49{bottom:254.910000px;}
.yed{bottom:255.090000px;}
.y77{bottom:256.350000px;}
.yff{bottom:257.070000px;}
.ya2{bottom:257.430000px;}
.y33{bottom:259.590000px;}
.yc6{bottom:270.210000px;}
.y11c{bottom:275.070000px;}
.yec{bottom:279.750000px;}
.y48{bottom:280.650000px;}
.y76{bottom:281.010000px;}
.ya1{bottom:282.090000px;}
.y32{bottom:284.250000px;}
.yc5{bottom:295.050000px;}
.y11b{bottom:299.730000px;}
.yeb{bottom:304.410000px;}
.y47{bottom:305.310000px;}
.y75{bottom:305.670000px;}
.ya0{bottom:306.750000px;}
.y31{bottom:308.910000px;}
.yc4{bottom:319.710000px;}
.y11a{bottom:324.390000px;}
.yea{bottom:329.070000px;}
.y46{bottom:329.970000px;}
.y74{bottom:330.330000px;}
.y9f{bottom:331.410000px;}
.y30{bottom:333.750000px;}
.yc3{bottom:345.450000px;}
.y119{bottom:349.050000px;}
.ye9{bottom:353.730000px;}
.y45{bottom:354.810000px;}
.y73{bottom:354.990000px;}
.yf8{bottom:355.710000px;}
.y9e{bottom:356.070000px;}
.y2f{bottom:359.490000px;}
.yc2{bottom:370.110000px;}
.y118{bottom:373.710000px;}
.ye8{bottom:378.390000px;}
.y72{bottom:379.650000px;}
.yf7{bottom:380.370000px;}
.y44{bottom:380.550000px;}
.y9d{bottom:380.730000px;}
.y2e{bottom:384.150000px;}
.yc1{bottom:394.770000px;}
.y117{bottom:398.370000px;}
.ye7{bottom:403.050000px;}
.y71{bottom:404.310000px;}
.yf3{bottom:405.030000px;}
.y43{bottom:405.210000px;}
.y9c{bottom:405.390000px;}
.y2d{bottom:408.810000px;}
.yc0{bottom:419.430000px;}
.y116{bottom:423.030000px;}
.ye6{bottom:427.710000px;}
.y70{bottom:428.970000px;}
.yf6{bottom:429.690000px;}
.y42{bottom:429.870000px;}
.y9b{bottom:430.050000px;}
.y2c{bottom:433.470000px;}
.ybf{bottom:444.135000px;}
.y115{bottom:447.735000px;}
.ye5{bottom:452.415000px;}
.y6f{bottom:453.675000px;}
.yf5{bottom:454.395000px;}
.y41{bottom:454.575000px;}
.y9a{bottom:454.755000px;}
.y2b{bottom:458.175000px;}
.ybe{bottom:468.975000px;}
.y114{bottom:472.395000px;}
.ye4{bottom:477.075000px;}
.y6e{bottom:478.335000px;}
.y40{bottom:479.235000px;}
.y99{bottom:479.595000px;}
.y2a{bottom:482.835000px;}
.ybd{bottom:494.715000px;}
.y113{bottom:497.055000px;}
.ye3{bottom:501.735000px;}
.y6d{bottom:502.995000px;}
.y3f{bottom:504.075000px;}
.y98{bottom:504.255000px;}
.y29{bottom:507.495000px;}
.ybc{bottom:519.375000px;}
.y112{bottom:521.715000px;}
.ye2{bottom:526.395000px;}
.y6c{bottom:527.655000px;}
.y128{bottom:528.555000px;}
.y97{bottom:528.915000px;}
.y3e{bottom:529.815000px;}
.y28{bottom:532.155000px;}
.ybb{bottom:544.035000px;}
.y111{bottom:546.375000px;}
.ye1{bottom:551.055000px;}
.y6b{bottom:552.315000px;}
.y127{bottom:553.215000px;}
.y96{bottom:553.575000px;}
.y3d{bottom:554.475000px;}
.y27{bottom:556.815000px;}
.yba{bottom:568.695000px;}
.y110{bottom:571.035000px;}
.ye0{bottom:575.715000px;}
.y6a{bottom:576.975000px;}
.y126{bottom:577.875000px;}
.y95{bottom:578.235000px;}
.y3c{bottom:580.215000px;}
.y26{bottom:581.475000px;}
.yb9{bottom:593.355000px;}
.y10f{bottom:595.695000px;}
.ydf{bottom:600.555000px;}
.y69{bottom:601.635000px;}
.y125{bottom:602.535000px;}
.y94{bottom:602.895000px;}
.y3b{bottom:604.875000px;}
.y25{bottom:606.135000px;}
.yb8{bottom:618.195000px;}
.y10e{bottom:620.355000px;}
.yde{bottom:625.215000px;}
.y68{bottom:626.295000px;}
.yfe{bottom:627.195000px;}
.y93{bottom:627.555000px;}
.y3a{bottom:629.535000px;}
.y24{bottom:630.795000px;}
.yb7{bottom:643.575000px;}
.y10d{bottom:645.015000px;}
.ydd{bottom:649.875000px;}
.y67{bottom:650.955000px;}
.yfd{bottom:651.855000px;}
.y92{bottom:652.215000px;}
.y39{bottom:654.375000px;}
.y23{bottom:655.455000px;}
.yb6{bottom:668.595000px;}
.y10c{bottom:669.675000px;}
.ydc{bottom:674.535000px;}
.y66{bottom:675.615000px;}
.y91{bottom:676.905000px;}
.y22{bottom:680.145000px;}
.yb5{bottom:693.285000px;}
.y10b{bottom:694.365000px;}
.ydb{bottom:699.225000px;}
.y65{bottom:700.305000px;}
.y90{bottom:701.205000px;}
.yf2{bottom:701.565000px;}
.y21{bottom:704.445000px;}
.y38{bottom:704.805000px;}
.yb4{bottom:719.025000px;}
.yda{bottom:723.885000px;}
.y64{bottom:724.965000px;}
.yf4{bottom:725.865000px;}
.y8f{bottom:726.225000px;}
.y20{bottom:729.105000px;}
.y10a{bottom:743.685000px;}
.yb3{bottom:743.865000px;}
.yd9{bottom:748.545000px;}
.y63{bottom:749.625000px;}
.y8e{bottom:750.885000px;}
.y1f{bottom:753.045000px;}
.y109{bottom:768.345000px;}
.yb2{bottom:769.605000px;}
.yd8{bottom:773.205000px;}
.y62{bottom:774.285000px;}
.y8d{bottom:775.545000px;}
.y1e{bottom:779.865000px;}
.y108{bottom:793.005000px;}
.yb1{bottom:794.445000px;}
.yd7{bottom:797.865000px;}
.y61{bottom:798.945000px;}
.y123{bottom:799.845000px;}
.y8c{bottom:800.205000px;}
.y1d{bottom:801.645000px;}
.y107{bottom:817.665000px;}
.yb0{bottom:820.185000px;}
.yd6{bottom:822.525000px;}
.y1c{bottom:823.425000px;}
.y60{bottom:823.605000px;}
.y8b{bottom:824.865000px;}
.y106{bottom:841.965000px;}
.yaf{bottom:844.845000px;}
.y1b{bottom:845.385000px;}
.yd5{bottom:847.185000px;}
.y5f{bottom:848.265000px;}
.y8a{bottom:849.525000px;}
.y1a{bottom:867.165000px;}
.yae{bottom:870.585000px;}
.yd4{bottom:871.845000px;}
.y5e{bottom:872.925000px;}
.y89{bottom:874.185000px;}
.y19{bottom:888.945000px;}
.y105{bottom:893.085000px;}
.yad{bottom:895.425000px;}
.yd3{bottom:896.505000px;}
.y5d{bottom:897.585000px;}
.yf9{bottom:898.485000px;}
.y88{bottom:898.845000px;}
.y18{bottom:910.365000px;}
.y104{bottom:918.870000px;}
.yd2{bottom:920.850000px;}
.yac{bottom:921.210000px;}
.y5c{bottom:922.290000px;}
.y87{bottom:923.550000px;}
.y16{bottom:925.710000px;}
.y11{bottom:932.910000px;}
.y15{bottom:937.050043px;}
.y103{bottom:943.530000px;}
.yd1{bottom:945.510000px;}
.yab{bottom:945.870000px;}
.y5b{bottom:947.130000px;}
.yfc{bottom:947.850000px;}
.y86{bottom:948.210000px;}
.y102{bottom:969.450000px;}
.yd0{bottom:970.170000px;}
.yaa{bottom:970.530000px;}
.y5a{bottom:971.790000px;}
.yfb{bottom:972.510000px;}
.y85{bottom:972.870000px;}
.ycf{bottom:995.190000px;}
.ya9{bottom:995.370000px;}
.y59{bottom:996.450000px;}
.y84{bottom:997.530000px;}
.yce{bottom:1019.850000px;}
.y58{bottom:1021.110000px;}
.y83{bottom:1022.190000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.ycd{bottom:1044.510000px;}
.y57{bottom:1045.770000px;}
.y82{bottom:1046.850000px;}
.ycc{bottom:1069.170000px;}
.y56{bottom:1070.430000px;}
.y81{bottom:1071.150000px;}
.ya8{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.ycb{bottom:1094.010000px;}
.y55{bottom:1095.090000px;}
.y124{bottom:1095.810000px;}
.y80{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y54{bottom:1119.750000px;}
.y7f{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y53{bottom:1144.410000px;}
.y7e{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y52{bottom:1169.100000px;}
.y129{bottom:1169.820000px;}
.y7d{bottom:1170.180000px;}
.y50{bottom:1187.280000px;}
.y4f{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h16{height:7.185000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1c{height:30.480469px;}
.he{height:41.025000px;}
.h1e{height:46.251562px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1d{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h18{height:64.978594px;}
.h1a{height:65.010937px;}
.h19{height:66.757500px;}
.h14{height:67.803750px;}
.h1b{height:68.084282px;}
.h1f{height:71.225156px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h12{height:96.285000px;}
.h3{height:103.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x13{left:103.123500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1a{left:113.076000px;}
.x20{left:123.516000px;}
.x1b{left:140.076000px;}
.x21{left:150.510000px;}
.x19{left:162.030000px;}
.x16{left:167.248500px;}
.x4{left:168.885000px;}
.x15{left:206.848500px;}
.x6{left:209.010000px;}
.x14{left:225.028500px;}
.x17{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x26{left:471.165000px;}
.x1e{left:473.505000px;}
.x25{left:475.665000px;}
.x1d{left:478.545000px;}
.x24{left:480.345000px;}
.x27{left:484.125000px;}
.x22{left:488.985000px;}
.x1c{left:505.545000px;}
.x23{left:515.985000px;}
.x1f{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls16{letter-spacing:-1.045333pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls1a{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.169067pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.101333pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.069333pt;}
.lse{letter-spacing:0.097067pt;}
.ls14{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.166400pt;}
.ls11{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.280533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.504320pt;}
.ls13{letter-spacing:0.504533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls18{letter-spacing:6.031360pt;}
.ls17{letter-spacing:35.450027pt;}
.ls19{letter-spacing:35.471360pt;}
.lsc{letter-spacing:44.160000pt;}
.lsb{letter-spacing:52.730027pt;}
.ls4{letter-spacing:52.751360pt;}
.ls10{letter-spacing:79.631360pt;}
.ws7{word-spacing:-58.880000pt;}
.ws9{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws6{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.224533pt;}
.wse{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.817067pt;}
.wsb{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.622933pt;}
.ws13{word-spacing:-14.486933pt;}
.wsf{word-spacing:-14.448533pt;}
.ws11{word-spacing:-14.351467pt;}
.ws4{word-spacing:-14.144000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws12{word-spacing:-13.674667pt;}
.ws3{word-spacing:-13.022933pt;}
.ws14{word-spacing:-9.560533pt;}
.ws8{word-spacing:0.000000pt;}
._34{margin-left:-1.884160pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:2.065067pt;}
._14{width:3.272960pt;}
._b{width:4.298240pt;}
._6{width:5.602987pt;}
._5{width:6.567040pt;}
._7{width:7.654400pt;}
._8{width:8.859520pt;}
._18{width:10.068480pt;}
._19{width:11.069440pt;}
._e{width:12.364800pt;}
._24{width:13.397120pt;}
._16{width:15.856000pt;}
._33{width:17.310720pt;}
._2a{width:18.519680pt;}
._4{width:19.435307pt;}
._3{width:20.480000pt;}
._f{width:21.550080pt;}
._a{width:22.963200pt;}
._10{width:24.494080pt;}
._9{width:25.789440pt;}
._25{width:27.143680pt;}
._15{width:28.384427pt;}
._3d{width:29.488000pt;}
._17{width:30.440960pt;}
._23{width:31.355520pt;}
._3c{width:32.266240pt;}
._2f{width:33.938560pt;}
._21{width:34.946560pt;}
._d{width:36.065920pt;}
._c{width:37.388800pt;}
._26{width:38.554667pt;}
._29{width:39.624533pt;}
._3b{width:40.744960pt;}
._28{width:42.224427pt;}
._4f{width:43.151573pt;}
._27{width:44.132480pt;}
._13{width:45.396480pt;}
._35{width:47.048320pt;}
._1b{width:48.375680pt;}
._1a{width:49.400320pt;}
._2e{width:50.636800pt;}
._2d{width:51.551360pt;}
._3f{width:52.739200pt;}
._22{width:53.639680pt;}
._1d{width:54.640640pt;}
._1c{width:55.555200pt;}
._3e{width:57.584640pt;}
._39{width:58.852480pt;}
._49{width:60.823040pt;}
._4a{width:61.765120pt;}
._4b{width:63.119360pt;}
._42{width:64.858240pt;}
._40{width:68.443307pt;}
._37{width:69.949440pt;}
._38{width:70.950400pt;}
._4e{width:72.360960pt;}
._36{width:74.365440pt;}
._45{width:79.605760pt;}
._41{width:80.547840pt;}
._51{width:83.692800pt;}
._50{width:84.787200pt;}
._11{width:86.082560pt;}
._12{width:87.377920pt;}
._2b{width:88.791040pt;}
._2c{width:90.031360pt;}
._30{width:91.080320pt;}
._48{width:93.507627pt;}
._47{width:94.880853pt;}
._31{width:97.328640pt;}
._32{width:103.658667pt;}
._43{width:107.397120pt;}
._44{width:108.986880pt;}
._46{width:110.276587pt;}
._4d{width:131.008000pt;}
._4c{width:132.067840pt;}
._20{width:135.905280pt;}
._1e{width:168.548907pt;}
._1f{width:175.686400pt;}
._3a{width:232.163840pt;}
._52{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y17{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ye{bottom:20.320000pt;}
.y14{bottom:23.680000pt;}
.y5{bottom:29.440000pt;}
.y13{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y12{bottom:62.720000pt;}
.y51{bottom:66.880000pt;}
.y122{bottom:112.960000pt;}
.y4e{bottom:116.800000pt;}
.y101{bottom:117.120000pt;}
.y7c{bottom:118.240000pt;}
.ya7{bottom:119.200000pt;}
.y121{bottom:134.880000pt;}
.y4d{bottom:138.720000pt;}
.yf1{bottom:139.040000pt;}
.y7b{bottom:140.160000pt;}
.y37{bottom:140.960000pt;}
.ya6{bottom:141.120000pt;}
.yca{bottom:151.520000pt;}
.y120{bottom:156.800000pt;}
.y4c{bottom:160.800000pt;}
.yf0{bottom:160.960000pt;}
.y100{bottom:161.120000pt;}
.y7a{bottom:162.080000pt;}
.yfa{bottom:162.720000pt;}
.y36{bottom:162.880000pt;}
.ya5{bottom:163.040000pt;}
.yc9{bottom:173.440000pt;}
.y11f{bottom:178.720000pt;}
.y4b{bottom:182.720000pt;}
.yef{bottom:182.880000pt;}
.y79{bottom:184.026667pt;}
.ya4{bottom:184.986667pt;}
.y35{bottom:185.786667pt;}
.yc8{bottom:196.346667pt;}
.y11e{bottom:200.666667pt;}
.y4a{bottom:204.666667pt;}
.yee{bottom:204.826667pt;}
.y78{bottom:205.946667pt;}
.ya3{bottom:206.906667pt;}
.y34{bottom:207.866667pt;}
.yc7{bottom:218.266667pt;}
.y11d{bottom:222.586667pt;}
.y49{bottom:226.586667pt;}
.yed{bottom:226.746667pt;}
.y77{bottom:227.866667pt;}
.yff{bottom:228.506667pt;}
.ya2{bottom:228.826667pt;}
.y33{bottom:230.746667pt;}
.yc6{bottom:240.186667pt;}
.y11c{bottom:244.506667pt;}
.yec{bottom:248.666667pt;}
.y48{bottom:249.466667pt;}
.y76{bottom:249.786667pt;}
.ya1{bottom:250.746667pt;}
.y32{bottom:252.666667pt;}
.yc5{bottom:262.266667pt;}
.y11b{bottom:266.426667pt;}
.yeb{bottom:270.586667pt;}
.y47{bottom:271.386667pt;}
.y75{bottom:271.706667pt;}
.ya0{bottom:272.666667pt;}
.y31{bottom:274.586667pt;}
.yc4{bottom:284.186667pt;}
.y11a{bottom:288.346667pt;}
.yea{bottom:292.506667pt;}
.y46{bottom:293.306667pt;}
.y74{bottom:293.626667pt;}
.y9f{bottom:294.586667pt;}
.y30{bottom:296.666667pt;}
.yc3{bottom:307.066667pt;}
.y119{bottom:310.266667pt;}
.ye9{bottom:314.426667pt;}
.y45{bottom:315.386667pt;}
.y73{bottom:315.546667pt;}
.yf8{bottom:316.186667pt;}
.y9e{bottom:316.506667pt;}
.y2f{bottom:319.546667pt;}
.yc2{bottom:328.986667pt;}
.y118{bottom:332.186667pt;}
.ye8{bottom:336.346667pt;}
.y72{bottom:337.466667pt;}
.yf7{bottom:338.106667pt;}
.y44{bottom:338.266667pt;}
.y9d{bottom:338.426667pt;}
.y2e{bottom:341.466667pt;}
.yc1{bottom:350.906667pt;}
.y117{bottom:354.106667pt;}
.ye7{bottom:358.266667pt;}
.y71{bottom:359.386667pt;}
.yf3{bottom:360.026667pt;}
.y43{bottom:360.186667pt;}
.y9c{bottom:360.346667pt;}
.y2d{bottom:363.386667pt;}
.yc0{bottom:372.826667pt;}
.y116{bottom:376.026667pt;}
.ye6{bottom:380.186667pt;}
.y70{bottom:381.306667pt;}
.yf6{bottom:381.946667pt;}
.y42{bottom:382.106667pt;}
.y9b{bottom:382.266667pt;}
.y2c{bottom:385.306667pt;}
.ybf{bottom:394.786667pt;}
.y115{bottom:397.986667pt;}
.ye5{bottom:402.146667pt;}
.y6f{bottom:403.266667pt;}
.yf5{bottom:403.906667pt;}
.y41{bottom:404.066667pt;}
.y9a{bottom:404.226667pt;}
.y2b{bottom:407.266667pt;}
.ybe{bottom:416.866667pt;}
.y114{bottom:419.906667pt;}
.ye4{bottom:424.066667pt;}
.y6e{bottom:425.186667pt;}
.y40{bottom:425.986667pt;}
.y99{bottom:426.306667pt;}
.y2a{bottom:429.186667pt;}
.ybd{bottom:439.746667pt;}
.y113{bottom:441.826667pt;}
.ye3{bottom:445.986667pt;}
.y6d{bottom:447.106667pt;}
.y3f{bottom:448.066667pt;}
.y98{bottom:448.226667pt;}
.y29{bottom:451.106667pt;}
.ybc{bottom:461.666667pt;}
.y112{bottom:463.746667pt;}
.ye2{bottom:467.906667pt;}
.y6c{bottom:469.026667pt;}
.y128{bottom:469.826667pt;}
.y97{bottom:470.146667pt;}
.y3e{bottom:470.946667pt;}
.y28{bottom:473.026667pt;}
.ybb{bottom:483.586667pt;}
.y111{bottom:485.666667pt;}
.ye1{bottom:489.826667pt;}
.y6b{bottom:490.946667pt;}
.y127{bottom:491.746667pt;}
.y96{bottom:492.066667pt;}
.y3d{bottom:492.866667pt;}
.y27{bottom:494.946667pt;}
.yba{bottom:505.506667pt;}
.y110{bottom:507.586667pt;}
.ye0{bottom:511.746667pt;}
.y6a{bottom:512.866667pt;}
.y126{bottom:513.666667pt;}
.y95{bottom:513.986667pt;}
.y3c{bottom:515.746667pt;}
.y26{bottom:516.866667pt;}
.yb9{bottom:527.426667pt;}
.y10f{bottom:529.506667pt;}
.ydf{bottom:533.826667pt;}
.y69{bottom:534.786667pt;}
.y125{bottom:535.586667pt;}
.y94{bottom:535.906667pt;}
.y3b{bottom:537.666667pt;}
.y25{bottom:538.786667pt;}
.yb8{bottom:549.506667pt;}
.y10e{bottom:551.426667pt;}
.yde{bottom:555.746667pt;}
.y68{bottom:556.706667pt;}
.yfe{bottom:557.506667pt;}
.y93{bottom:557.826667pt;}
.y3a{bottom:559.586667pt;}
.y24{bottom:560.706667pt;}
.yb7{bottom:572.066667pt;}
.y10d{bottom:573.346667pt;}
.ydd{bottom:577.666667pt;}
.y67{bottom:578.626667pt;}
.yfd{bottom:579.426667pt;}
.y92{bottom:579.746667pt;}
.y39{bottom:581.666667pt;}
.y23{bottom:582.626667pt;}
.yb6{bottom:594.306667pt;}
.y10c{bottom:595.266667pt;}
.ydc{bottom:599.586667pt;}
.y66{bottom:600.546667pt;}
.y91{bottom:601.693333pt;}
.y22{bottom:604.573333pt;}
.yb5{bottom:616.253333pt;}
.y10b{bottom:617.213333pt;}
.ydb{bottom:621.533333pt;}
.y65{bottom:622.493333pt;}
.y90{bottom:623.293333pt;}
.yf2{bottom:623.613333pt;}
.y21{bottom:626.173333pt;}
.y38{bottom:626.493333pt;}
.yb4{bottom:639.133333pt;}
.yda{bottom:643.453333pt;}
.y64{bottom:644.413333pt;}
.yf4{bottom:645.213333pt;}
.y8f{bottom:645.533333pt;}
.y20{bottom:648.093333pt;}
.y10a{bottom:661.053333pt;}
.yb3{bottom:661.213333pt;}
.yd9{bottom:665.373333pt;}
.y63{bottom:666.333333pt;}
.y8e{bottom:667.453333pt;}
.y1f{bottom:669.373333pt;}
.y109{bottom:682.973333pt;}
.yb2{bottom:684.093333pt;}
.yd8{bottom:687.293333pt;}
.y62{bottom:688.253333pt;}
.y8d{bottom:689.373333pt;}
.y1e{bottom:693.213333pt;}
.y108{bottom:704.893333pt;}
.yb1{bottom:706.173333pt;}
.yd7{bottom:709.213333pt;}
.y61{bottom:710.173333pt;}
.y123{bottom:710.973333pt;}
.y8c{bottom:711.293333pt;}
.y1d{bottom:712.573333pt;}
.y107{bottom:726.813333pt;}
.yb0{bottom:729.053333pt;}
.yd6{bottom:731.133333pt;}
.y1c{bottom:731.933333pt;}
.y60{bottom:732.093333pt;}
.y8b{bottom:733.213333pt;}
.y106{bottom:748.413333pt;}
.yaf{bottom:750.973333pt;}
.y1b{bottom:751.453333pt;}
.yd5{bottom:753.053333pt;}
.y5f{bottom:754.013333pt;}
.y8a{bottom:755.133333pt;}
.y1a{bottom:770.813333pt;}
.yae{bottom:773.853333pt;}
.yd4{bottom:774.973333pt;}
.y5e{bottom:775.933333pt;}
.y89{bottom:777.053333pt;}
.y19{bottom:790.173333pt;}
.y105{bottom:793.853333pt;}
.yad{bottom:795.933333pt;}
.yd3{bottom:796.893333pt;}
.y5d{bottom:797.853333pt;}
.yf9{bottom:798.653333pt;}
.y88{bottom:798.973333pt;}
.y18{bottom:809.213333pt;}
.y104{bottom:816.773333pt;}
.yd2{bottom:818.533333pt;}
.yac{bottom:818.853333pt;}
.y5c{bottom:819.813333pt;}
.y87{bottom:820.933333pt;}
.y16{bottom:822.853333pt;}
.y11{bottom:829.253333pt;}
.y15{bottom:832.933372pt;}
.y103{bottom:838.693333pt;}
.yd1{bottom:840.453333pt;}
.yab{bottom:840.773333pt;}
.y5b{bottom:841.893333pt;}
.yfc{bottom:842.533333pt;}
.y86{bottom:842.853333pt;}
.y102{bottom:861.733333pt;}
.yd0{bottom:862.373333pt;}
.yaa{bottom:862.693333pt;}
.y5a{bottom:863.813333pt;}
.yfb{bottom:864.453333pt;}
.y85{bottom:864.773333pt;}
.ycf{bottom:884.613333pt;}
.ya9{bottom:884.773333pt;}
.y59{bottom:885.733333pt;}
.y84{bottom:886.693333pt;}
.yce{bottom:906.533333pt;}
.y58{bottom:907.653333pt;}
.y83{bottom:908.613333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.ycd{bottom:928.453333pt;}
.y57{bottom:929.573333pt;}
.y82{bottom:930.533333pt;}
.ycc{bottom:950.373333pt;}
.y56{bottom:951.493333pt;}
.y81{bottom:952.133333pt;}
.ya8{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.ycb{bottom:972.453333pt;}
.y55{bottom:973.413333pt;}
.y124{bottom:974.053333pt;}
.y80{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y54{bottom:995.333333pt;}
.y7f{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y53{bottom:1017.253333pt;}
.y7e{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y52{bottom:1039.200000pt;}
.y129{bottom:1039.840000pt;}
.y7d{bottom:1040.160000pt;}
.y50{bottom:1055.360000pt;}
.y4f{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h16{height:6.386667pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1c{height:27.093750pt;}
.he{height:36.466667pt;}
.h1e{height:41.112500pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1d{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h18{height:57.758750pt;}
.h1a{height:57.787500pt;}
.h19{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1b{height:60.519362pt;}
.h1f{height:63.311250pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h12{height:85.586667pt;}
.h3{height:92.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x13{left:91.665333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1a{left:100.512000pt;}
.x20{left:109.792000pt;}
.x1b{left:124.512000pt;}
.x21{left:133.786667pt;}
.x19{left:144.026667pt;}
.x16{left:148.665333pt;}
.x4{left:150.120000pt;}
.x15{left:183.865333pt;}
.x6{left:185.786667pt;}
.x14{left:200.025333pt;}
.x17{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x26{left:418.813333pt;}
.x1e{left:420.893333pt;}
.x25{left:422.813333pt;}
.x1d{left:425.373333pt;}
.x24{left:426.973333pt;}
.x27{left:430.333333pt;}
.x22{left:434.653333pt;}
.x1c{left:449.373333pt;}
.x23{left:458.653333pt;}
.x1f{left:468.893333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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