
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d1cecbcdc91e1da3051a0f16.woff2')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_5b9c5d60da426bf34e302f17.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_341e7aa75efd37b1071c1466.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_0b8c51d5005ee4d812f8e5af.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0fbe0a314765def5d6808eb5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6bb89b5a68527382a6826b08.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e314c499e61e305dc1a5efdb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fbbd367bbf64c521f2bc20de.woff2')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_83f3551058a7d1d52fe081a3.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2949d52adbb5165857065480.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;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_ddf377033d1e424033d36d22.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8097b3e98f8777b0085bd9ef.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7db1cf63e272f47ab3207e41.woff2')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_359d01edf130577d36b3965b.woff2')format("woff");}.fff{font-family:fff;line-height:1.035156;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);}
.v1{vertical-align:-59.040000px;}
.v5{vertical-align:-20.880000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v7{vertical-align:20.880000px;}
.v6{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.ls1e{letter-spacing:-1.170000px;}
.ls21{letter-spacing:-0.966000px;}
.ls12{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.486600px;}
.ls16{letter-spacing:-0.450600px;}
.ls9{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.269400px;}
.ls1c{letter-spacing:-0.243600px;}
.ls13{letter-spacing:-0.223800px;}
.lsa{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.045360px;}
.ls17{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.223800px;}
.ls20{letter-spacing:0.269400px;}
.ls6{letter-spacing:0.298800px;}
.ls1f{letter-spacing:0.314400px;}
.lse{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.493800px;}
.ls1b{letter-spacing:0.496080px;}
.ls10{letter-spacing:0.666000px;}
.lsb{letter-spacing:0.900000px;}
.ls19{letter-spacing:1.080000px;}
.ls1a{letter-spacing:3.060000px;}
.ls22{letter-spacing:9.540000px;}
.ls1{letter-spacing:27.720000px;}
.ls4{letter-spacing:66.960000px;}
.ls3{letter-spacing:67.680000px;}
.ls2{letter-spacing:763.740000px;}
.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;}
}
.ws18{word-spacing:-54.000000px;}
.ws3{word-spacing:-36.907200px;}
.ws4{word-spacing:-30.060000px;}
.ws12{word-spacing:-15.606000px;}
.wsf{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.046800px;}
.ws19{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.392000px;}
.wse{word-spacing:-13.284000px;}
.ws11{word-spacing:-13.140000px;}
.wsa{word-spacing:-12.420000px;}
.ws1c{word-spacing:-12.374400px;}
.ws1d{word-spacing:-12.329400px;}
.ws16{word-spacing:-12.283800px;}
.ws1b{word-spacing:-12.105360px;}
.ws8{word-spacing:-12.060000px;}
.ws17{word-spacing:-11.790600px;}
.ws9{word-spacing:-11.700000px;}
.ws1{word-spacing:-10.933800px;}
.ws0{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws15{word-spacing:-8.280000px;}
.ws13{word-spacing:-7.560000px;}
.ws1a{word-spacing:-7.316400px;}
.ws1f{word-spacing:-7.073400px;}
.ws7{word-spacing:-6.840000px;}
.ws1e{word-spacing:-6.594000px;}
.wsd{word-spacing:0.000000px;}
._2d{margin-left:-4.752000px;}
._2c{margin-left:-3.273600px;}
._2b{margin-left:-2.173680px;}
._0{margin-left:-1.013040px;}
._1{width:1.157760px;}
._8{width:3.152640px;}
._11{width:4.160160px;}
._b{width:5.238000px;}
._9{width:7.074000px;}
._a{width:8.208000px;}
._c{width:9.720000px;}
._d{width:10.908720px;}
._10{width:12.273840px;}
._14{width:13.616640px;}
._36{width:14.954400px;}
._15{width:16.493760px;}
._16{width:17.629200px;}
._18{width:18.645120px;}
._13{width:20.149920px;}
._1a{width:21.872160px;}
._f{width:23.819040px;}
._e{width:25.056000px;}
._4{width:26.863200px;}
._2{width:27.895680px;}
._3{width:29.273760px;}
._32{width:30.412800px;}
._12{width:31.732560px;}
._21{width:33.166800px;}
._20{width:34.242480px;}
._22{width:35.377920px;}
._17{width:36.931680px;}
._33{width:38.126880px;}
._23{width:39.202560px;}
._1b{width:40.278240px;}
._1c{width:41.832480px;}
._28{width:42.901200px;}
._26{width:44.879760px;}
._1d{width:45.895680px;}
._1e{width:46.971360px;}
._27{width:48.523440px;}
._30{width:50.078880px;}
._3d{width:51.145920px;}
._25{width:53.045040px;}
._24{width:54.321840px;}
._2e{width:56.831760px;}
._1f{width:58.803840px;}
._41{width:62.800560px;}
._2f{width:64.069920px;}
._31{width:65.718720px;}
._7{width:66.922320px;}
._19{width:68.916240px;}
._34{width:70.239600px;}
._2a{width:82.827360px;}
._3a{width:84.468240px;}
._3b{width:86.832000px;}
._3c{width:88.038000px;}
._29{width:102.488400px;}
._39{width:113.894640px;}
._3e{width:238.102320px;}
._35{width:273.424320px;}
._5{width:291.900000px;}
._3f{width:368.795280px;}
._40{width:369.822240px;}
._37{width:429.336000px;}
._38{width:1096.534080px;}
._6{width:1209.960000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:23.760000px;}
.fsc{font-size:27.360000px;}
.fse{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsf{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs9{font-size:120.240000px;}
.fs8{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.ya{bottom:4.320000px;}
.y51{bottom:4.500000px;}
.ybd{bottom:4.680000px;}
.yc2{bottom:5.040000px;}
.ybf{bottom:5.220000px;}
.yc4{bottom:5.580000px;}
.yc6{bottom:5.760000px;}
.ya4{bottom:6.300000px;}
.ya6{bottom:7.920000px;}
.yab{bottom:8.085000px;}
.ya8{bottom:8.280000px;}
.ya2{bottom:14.040000px;}
.y50{bottom:14.580000px;}
.ya3{bottom:21.780000px;}
.y53{bottom:22.680000px;}
.y9{bottom:30.780000px;}
.y4{bottom:37.080000px;}
.y3{bottom:49.140000px;}
.y2{bottom:61.740000px;}
.y8{bottom:66.270000px;}
.ydd{bottom:80.640000px;}
.y86{bottom:81.540000px;}
.y6{bottom:82.965000px;}
.y179{bottom:87.120000px;}
.yb9{bottom:89.820000px;}
.y137{bottom:96.120000px;}
.y98{bottom:100.440000px;}
.y85{bottom:101.340000px;}
.yf8{bottom:104.400000px;}
.y178{bottom:104.940000px;}
.yda{bottom:105.120000px;}
.yb8{bottom:109.800000px;}
.y44{bottom:110.520000px;}
.yf7{bottom:118.260000px;}
.y97{bottom:120.420000px;}
.y84{bottom:121.140000px;}
.y4e{bottom:121.860000px;}
.y177{bottom:122.940000px;}
.y136{bottom:123.660000px;}
.yd9{bottom:124.920000px;}
.yb7{bottom:129.600000px;}
.y43{bottom:130.320000px;}
.yf6{bottom:132.120000px;}
.y135{bottom:137.520000px;}
.y96{bottom:140.220000px;}
.y176{bottom:140.760000px;}
.y83{bottom:141.120000px;}
.y4d{bottom:141.660000px;}
.yd8{bottom:144.756000px;}
.yf5{bottom:145.836000px;}
.yb6{bottom:149.436000px;}
.y42{bottom:150.150000px;}
.y134{bottom:151.230000px;}
.y175{bottom:158.610000px;}
.yf4{bottom:159.690000px;}
.y95{bottom:160.050000px;}
.y82{bottom:160.950000px;}
.y4c{bottom:161.490000px;}
.yd7{bottom:164.730000px;}
.y133{bottom:165.990000px;}
.yb5{bottom:169.230000px;}
.y41{bottom:170.130000px;}
.yf3{bottom:173.550000px;}
.y174{bottom:176.430000px;}
.y94{bottom:179.850000px;}
.y81{bottom:180.750000px;}
.y4b{bottom:181.290000px;}
.yd6{bottom:184.530000px;}
.yb4{bottom:189.030000px;}
.y40{bottom:189.930000px;}
.yf2{bottom:193.350000px;}
.y173{bottom:194.250000px;}
.y132{bottom:194.430000px;}
.y93{bottom:199.650000px;}
.y80{bottom:200.190000px;}
.y4a{bottom:201.270000px;}
.yd5{bottom:204.330000px;}
.yf1{bottom:207.030000px;}
.yb3{bottom:209.010000px;}
.y3f{bottom:209.730000px;}
.y131{bottom:214.230000px;}
.y172{bottom:215.670000px;}
.y92{bottom:219.630000px;}
.y7f{bottom:219.990000px;}
.yf0{bottom:220.890000px;}
.y49{bottom:221.070000px;}
.y5{bottom:222.885000px;}
.yd4{bottom:224.130000px;}
.y130{bottom:228.090000px;}
.yb2{bottom:228.810000px;}
.y3e{bottom:229.530000px;}
.yef{bottom:234.750000px;}
.y7e{bottom:237.810000px;}
.y91{bottom:239.430000px;}
.y171{bottom:240.330000px;}
.y48{bottom:240.870000px;}
.y12f{bottom:241.950000px;}
.yd3{bottom:243.930000px;}
.yb1{bottom:248.610000px;}
.y3d{bottom:249.330000px;}
.yee{bottom:254.550000px;}
.y7d{bottom:255.090000px;}
.y12e{bottom:255.630000px;}
.y90{bottom:259.230000px;}
.y47{bottom:260.670000px;}
.yd2{bottom:263.910000px;}
.y170{bottom:264.990000px;}
.yed{bottom:268.230000px;}
.yb0{bottom:268.410000px;}
.y3c{bottom:269.310000px;}
.y7c{bottom:272.370000px;}
.y12d{bottom:275.430000px;}
.y8f{bottom:279.030000px;}
.y46{bottom:280.470000px;}
.yec{bottom:282.090000px;}
.yd1{bottom:283.710000px;}
.y3b{bottom:287.310000px;}
.yaf{bottom:288.210000px;}
.y12c{bottom:289.290000px;}
.y7b{bottom:289.650000px;}
.yeb{bottom:295.950000px;}
.y8e{bottom:298.830000px;}
.y3a{bottom:300.270000px;}
.y45{bottom:300.450000px;}
.y12b{bottom:302.970000px;}
.yd0{bottom:303.510000px;}
.y7a{bottom:306.570000px;}
.yae{bottom:308.190000px;}
.y16f{bottom:314.310000px;}
.yea{bottom:315.750000px;}
.y12a{bottom:316.830000px;}
.ye0{bottom:318.450000px;}
.y8d{bottom:318.810000px;}
.y39{bottom:322.590000px;}
.ycf{bottom:323.310000px;}
.y79{bottom:324.030000px;}
.yad{bottom:327.990000px;}
.ye9{bottom:329.430000px;}
.y38{bottom:334.470000px;}
.y129{bottom:336.630000px;}
.y8c{bottom:338.610000px;}
.y16e{bottom:338.970000px;}
.y78{bottom:340.950000px;}
.yce{bottom:342.750000px;}
.ydc{bottom:343.110000px;}
.ye8{bottom:343.290000px;}
.y37{bottom:345.810000px;}
.yac{bottom:349.770000px;}
.y128{bottom:350.490000px;}
.yaa{bottom:356.265000px;}
.ye7{bottom:356.970000px;}
.ydf{bottom:358.050000px;}
.y8b{bottom:358.410000px;}
.y77{bottom:358.590000px;}
.y36{bottom:360.030000px;}
.ycd{bottom:362.730000px;}
.ydb{bottom:363.090000px;}
.y16d{bottom:363.630000px;}
.y127{bottom:364.170000px;}
.y35{bottom:369.930000px;}
.ye6{bottom:370.830000px;}
.y126{bottom:378.075000px;}
.y76{bottom:378.255000px;}
.ya9{bottom:381.675000px;}
.y34{bottom:385.455000px;}
.y16c{bottom:388.335000px;}
.ye5{bottom:391.935000px;}
.y125{bottom:397.875000px;}
.y75{bottom:398.055000px;}
.y33{bottom:401.115000px;}
.ya7{bottom:407.055000px;}
.ycc{bottom:407.775000px;}
.y124{bottom:411.735000px;}
.y16b{bottom:412.815000px;}
.y32{bottom:416.595000px;}
.ye4{bottom:417.675000px;}
.y74{bottom:418.035000px;}
.ycb{bottom:423.255000px;}
.y123{bottom:425.415000px;}
.y31{bottom:432.075000px;}
.ya5{bottom:432.435000px;}
.yca{bottom:435.675000px;}
.y8a{bottom:437.475000px;}
.y73{bottom:437.835000px;}
.y122{bottom:439.275000px;}
.y30{bottom:447.555000px;}
.y89{bottom:457.275000px;}
.y72{bottom:457.635000px;}
.ya1{bottom:457.815000px;}
.y121{bottom:459.075000px;}
.y16a{bottom:462.135000px;}
.y2f{bottom:463.215000px;}
.y120{bottom:472.935000px;}
.y71{bottom:477.435000px;}
.y2e{bottom:478.695000px;}
.y11f{bottom:486.615000px;}
.y169{bottom:486.795000px;}
.y2d{bottom:494.175000px;}
.y70{bottom:497.235000px;}
.ya0{bottom:500.115000px;}
.y11e{bottom:500.475000px;}
.y2c{bottom:509.655000px;}
.y168{bottom:511.455000px;}
.y11d{bottom:514.335000px;}
.ye3{bottom:516.855000px;}
.y6f{bottom:517.215000px;}
.y9f{bottom:517.395000px;}
.y2b{bottom:525.315000px;}
.y11c{bottom:534.135000px;}
.y167{bottom:536.115000px;}
.y6e{bottom:537.015000px;}
.y2a{bottom:540.795000px;}
.y11b{bottom:547.815000px;}
.y29{bottom:556.275000px;}
.y6d{bottom:556.815000px;}
.y166{bottom:560.775000px;}
.y11a{bottom:561.675000px;}
.y28{bottom:571.755000px;}
.y119{bottom:575.535000px;}
.y6c{bottom:576.615000px;}
.y165{bottom:585.435000px;}
.y27{bottom:587.235000px;}
.y118{bottom:589.215000px;}
.y9c{bottom:596.055000px;}
.y6b{bottom:596.415000px;}
.y26{bottom:602.895000px;}
.y117{bottom:603.075000px;}
.y164{bottom:610.095000px;}
.yde{bottom:616.065000px;}
.y6a{bottom:616.425000px;}
.y116{bottom:616.965000px;}
.y25{bottom:618.405000px;}
.y163{bottom:633.345000px;}
.y24{bottom:633.885000px;}
.y69{bottom:636.225000px;}
.y115{bottom:636.765000px;}
.y23{bottom:649.365000px;}
.y114{bottom:650.445000px;}
.y162{bottom:653.325000px;}
.y68{bottom:656.025000px;}
.y113{bottom:664.305000px;}
.y22{bottom:665.025000px;}
.y14d{bottom:674.565000px;}
.y67{bottom:675.825000px;}
.y21{bottom:680.505000px;}
.y112{bottom:684.105000px;}
.y14c{bottom:688.425000px;}
.y88{bottom:695.265000px;}
.y66{bottom:695.625000px;}
.y20{bottom:695.985000px;}
.y111{bottom:697.965000px;}
.y161{bottom:700.485000px;}
.y14b{bottom:702.105000px;}
.y110{bottom:711.645000px;}
.yc9{bottom:713.625000px;}
.y160{bottom:714.165000px;}
.y87{bottom:715.245000px;}
.y65{bottom:715.605000px;}
.y14a{bottom:715.965000px;}
.y1f{bottom:720.285000px;}
.y10f{bottom:725.505000px;}
.y15f{bottom:728.025000px;}
.yc8{bottom:730.185000px;}
.ye2{bottom:735.045000px;}
.y64{bottom:735.405000px;}
.y149{bottom:735.765000px;}
.y10e{bottom:739.365000px;}
.y15e{bottom:741.885000px;}
.yc7{bottom:742.785000px;}
.y1e{bottom:744.045000px;}
.y148{bottom:749.625000px;}
.yc5{bottom:754.305000px;}
.y63{bottom:755.205000px;}
.y10d{bottom:759.165000px;}
.y1d{bottom:761.145000px;}
.y15d{bottom:761.685000px;}
.y147{bottom:763.305000px;}
.y1c{bottom:770.685000px;}
.y10c{bottom:772.845000px;}
.yc3{bottom:774.645000px;}
.y62{bottom:775.005000px;}
.y15c{bottom:775.365000px;}
.y146{bottom:777.165000px;}
.y1b{bottom:783.105000px;}
.y10b{bottom:786.705000px;}
.y15b{bottom:789.225000px;}
.y145{bottom:791.025000px;}
.y61{bottom:794.805000px;}
.yc1{bottom:794.985000px;}
.y1a{bottom:797.325000px;}
.y15a{bottom:803.085000px;}
.y144{bottom:804.705000px;}
.y10a{bottom:806.505000px;}
.y19{bottom:811.185000px;}
.yc0{bottom:814.065000px;}
.y9e{bottom:814.425000px;}
.y60{bottom:814.785000px;}
.y18{bottom:820.005000px;}
.y109{bottom:820.365000px;}
.y159{bottom:822.885000px;}
.y143{bottom:824.505000px;}
.y17{bottom:831.885000px;}
.ybe{bottom:833.325000px;}
.y108{bottom:834.045000px;}
.y9d{bottom:834.225000px;}
.y5f{bottom:834.585000px;}
.y158{bottom:836.565000px;}
.y142{bottom:838.365000px;}
.y107{bottom:847.950000px;}
.y157{bottom:850.470000px;}
.y16{bottom:852.090000px;}
.y141{bottom:852.270000px;}
.ybc{bottom:853.350000px;}
.y5e{bottom:854.430000px;}
.y156{bottom:864.330000px;}
.y140{bottom:865.950000px;}
.y106{bottom:867.750000px;}
.y15{bottom:873.150000px;}
.y5d{bottom:874.230000px;}
.ybb{bottom:877.110000px;}
.y155{bottom:878.010000px;}
.y13f{bottom:879.810000px;}
.y105{bottom:881.610000px;}
.y14{bottom:890.970000px;}
.y13e{bottom:893.670000px;}
.y5c{bottom:894.030000px;}
.yba{bottom:894.210000px;}
.y104{bottom:895.290000px;}
.y154{bottom:897.810000px;}
.y103{bottom:909.150000px;}
.y153{bottom:911.670000px;}
.y13d{bottom:913.470000px;}
.y5b{bottom:914.010000px;}
.y102{bottom:923.010000px;}
.y13{bottom:925.350000px;}
.y152{bottom:925.530000px;}
.y13c{bottom:927.150000px;}
.y5a{bottom:933.810000px;}
.y151{bottom:939.210000px;}
.y13b{bottom:941.010000px;}
.y101{bottom:942.270000px;}
.y150{bottom:953.070000px;}
.y59{bottom:953.610000px;}
.y100{bottom:954.330000px;}
.y13a{bottom:954.870000px;}
.y12{bottom:959.910000px;}
.yff{bottom:966.930000px;}
.y139{bottom:968.550000px;}
.y14f{bottom:972.870000px;}
.y58{bottom:973.410000px;}
.yfe{bottom:980.610000px;}
.y14e{bottom:986.730000px;}
.y138{bottom:987.990000px;}
.y11{bottom:992.310000px;}
.y57{bottom:993.210000px;}
.yfd{bottom:1000.410000px;}
.y10{bottom:1006.710000px;}
.y9b{bottom:1012.830000px;}
.y56{bottom:1013.190000px;}
.yfc{bottom:1014.270000px;}
.y4f{bottom:1015.170000px;}
.y7{bottom:1015.530000px;}
.y17c{bottom:1018.590000px;}
.yf{bottom:1020.390000px;}
.yfb{bottom:1028.130000px;}
.y55{bottom:1032.990000px;}
.ye{bottom:1036.050000px;}
.y17b{bottom:1036.410000px;}
.yfa{bottom:1041.810000px;}
.yd{bottom:1052.070000px;}
.ye1{bottom:1052.430000px;}
.y54{bottom:1052.790000px;}
.y17a{bottom:1054.230000px;}
.yf9{bottom:1055.670000px;}
.yc{bottom:1075.290000px;}
.y9a{bottom:1086.480000px;}
.yb{bottom:1100.880000px;}
.y52{bottom:1113.660000px;}
.y1{bottom:1119.420000px;}
.y99{bottom:1122.660000px;}
.h26{height:19.080000px;}
.h22{height:19.245000px;}
.h24{height:19.260000px;}
.h23{height:19.282500px;}
.h27{height:20.340000px;}
.h1b{height:21.405000px;}
.h13{height:23.319141px;}
.h1f{height:24.645000px;}
.h20{height:25.365000px;}
.h21{height:25.401000px;}
.h12{height:26.838984px;}
.h14{height:29.678906px;}
.h11{height:35.314453px;}
.h18{height:35.332031px;}
.h1e{height:37.785000px;}
.h1a{height:40.985156px;}
.h28{height:41.159180px;}
.h3{height:42.086250px;}
.h1d{height:43.215117px;}
.hc{height:47.321367px;}
.h2{height:47.344922px;}
.hf{height:48.616875px;}
.h2d{height:50.558906px;}
.h16{height:52.998047px;}
.h17{height:54.421875px;}
.h2e{height:55.503491px;}
.h6{height:56.084062px;}
.hb{height:58.651172px;}
.h25{height:59.092031px;}
.h1c{height:59.439023px;}
.h19{height:60.226875px;}
.h2a{height:61.423863px;}
.h2b{height:62.211094px;}
.h10{height:65.518594px;}
.h1{height:65.884219px;}
.h2f{height:67.824844px;}
.h2c{height:70.664062px;}
.h9{height:71.324297px;}
.h29{height:82.676953px;}
.hd{height:84.837305px;}
.h5{height:98.625000px;}
.h15{height:105.996094px;}
.h7{height:106.050000px;}
.h4{height:108.843750px;}
.he{height:121.179375px;}
.ha{height:141.257812px;}
.h8{height:142.038984px;}
.h0{height:1188.000000px;}
.w2{width:82.965000px;}
.w7{width:107.985000px;}
.w8{width:108.201000px;}
.w5{width:243.015000px;}
.w3{width:249.913500px;}
.w4{width:270.030000px;}
.w6{width:441.643500px;}
.w1{width:760.635000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:8.098500px;}
.x3{left:10.798500px;}
.x18{left:14.400000px;}
.x2b{left:32.580000px;}
.x2d{left:35.445000px;}
.x2c{left:38.685000px;}
.x29{left:46.965000px;}
.x27{left:50.925000px;}
.x25{left:73.065000px;}
.x24{left:75.225000px;}
.x1{left:81.000000px;}
.x2{left:82.081500px;}
.x22{left:84.585000px;}
.x1f{left:85.860000px;}
.x23{left:88.740000px;}
.x20{left:98.100000px;}
.xa{left:102.456000px;}
.x1b{left:108.036000px;}
.xe{left:109.476000px;}
.xd{left:111.636000px;}
.xf{left:126.216000px;}
.xb{left:154.830000px;}
.x2f{left:158.250000px;}
.x14{left:162.030000px;}
.x12{left:185.790000px;}
.x10{left:210.810000px;}
.xc{left:220.710000px;}
.x11{left:300.675000px;}
.x1e{left:330.915000px;}
.x5{left:336.135000px;}
.x1c{left:347.835000px;}
.x7{left:349.455000px;}
.x4{left:369.795000px;}
.x8{left:394.275000px;}
.x19{left:416.055000px;}
.x13{left:422.895000px;}
.x6{left:423.975000px;}
.x1a{left:451.155000px;}
.x9{left:462.495000px;}
.x15{left:488.955000px;}
.x16{left:515.985000px;}
.x26{left:522.660000px;}
.x2e{left:535.605000px;}
.x21{left:600.960000px;}
.x28{left:630.660000px;}
.x2a{left:738.870000px;}
.x17{left:761.730000px;}
@media print{
.v1{vertical-align:-52.480000pt;}
.v5{vertical-align:-18.560000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v7{vertical-align:18.560000pt;}
.v6{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls1e{letter-spacing:-1.040000pt;}
.ls21{letter-spacing:-0.858667pt;}
.ls12{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.432533pt;}
.ls16{letter-spacing:-0.400533pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.239467pt;}
.ls1c{letter-spacing:-0.216533pt;}
.ls13{letter-spacing:-0.198933pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.040320pt;}
.ls17{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.198933pt;}
.ls20{letter-spacing:0.239467pt;}
.ls6{letter-spacing:0.265600pt;}
.ls1f{letter-spacing:0.279467pt;}
.lse{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.438933pt;}
.ls1b{letter-spacing:0.440960pt;}
.ls10{letter-spacing:0.592000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls19{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:2.720000pt;}
.ls22{letter-spacing:8.480000pt;}
.ls1{letter-spacing:24.640000pt;}
.ls4{letter-spacing:59.520000pt;}
.ls3{letter-spacing:60.160000pt;}
.ls2{letter-spacing:678.880000pt;}
.ws18{word-spacing:-48.000000pt;}
.ws3{word-spacing:-32.806400pt;}
.ws4{word-spacing:-26.720000pt;}
.ws12{word-spacing:-13.872000pt;}
.wsf{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.374933pt;}
.ws19{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.904000pt;}
.wse{word-spacing:-11.808000pt;}
.ws11{word-spacing:-11.680000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws1c{word-spacing:-10.999467pt;}
.ws1d{word-spacing:-10.959467pt;}
.ws16{word-spacing:-10.918933pt;}
.ws1b{word-spacing:-10.760320pt;}
.ws8{word-spacing:-10.720000pt;}
.ws17{word-spacing:-10.480533pt;}
.ws9{word-spacing:-10.400000pt;}
.ws1{word-spacing:-9.718933pt;}
.ws0{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws15{word-spacing:-7.360000pt;}
.ws13{word-spacing:-6.720000pt;}
.ws1a{word-spacing:-6.503467pt;}
.ws1f{word-spacing:-6.287467pt;}
.ws7{word-spacing:-6.080000pt;}
.ws1e{word-spacing:-5.861333pt;}
.wsd{word-spacing:0.000000pt;}
._2d{margin-left:-4.224000pt;}
._2c{margin-left:-2.909867pt;}
._2b{margin-left:-1.932160pt;}
._0{margin-left:-0.900480pt;}
._1{width:1.029120pt;}
._8{width:2.802347pt;}
._11{width:3.697920pt;}
._b{width:4.656000pt;}
._9{width:6.288000pt;}
._a{width:7.296000pt;}
._c{width:8.640000pt;}
._d{width:9.696640pt;}
._10{width:10.910080pt;}
._14{width:12.103680pt;}
._36{width:13.292800pt;}
._15{width:14.661120pt;}
._16{width:15.670400pt;}
._18{width:16.573440pt;}
._13{width:17.911040pt;}
._1a{width:19.441920pt;}
._f{width:21.172480pt;}
._e{width:22.272000pt;}
._4{width:23.878400pt;}
._2{width:24.796160pt;}
._3{width:26.021120pt;}
._32{width:27.033600pt;}
._12{width:28.206720pt;}
._21{width:29.481600pt;}
._20{width:30.437760pt;}
._22{width:31.447040pt;}
._17{width:32.828160pt;}
._33{width:33.890560pt;}
._23{width:34.846720pt;}
._1b{width:35.802880pt;}
._1c{width:37.184427pt;}
._28{width:38.134400pt;}
._26{width:39.893120pt;}
._1d{width:40.796160pt;}
._1e{width:41.752320pt;}
._27{width:43.131947pt;}
._30{width:44.514560pt;}
._3d{width:45.463040pt;}
._25{width:47.151147pt;}
._24{width:48.286080pt;}
._2e{width:50.517120pt;}
._1f{width:52.270080pt;}
._41{width:55.822720pt;}
._2f{width:56.951040pt;}
._31{width:58.416640pt;}
._7{width:59.486507pt;}
._19{width:61.258880pt;}
._34{width:62.435200pt;}
._2a{width:73.624320pt;}
._3a{width:75.082880pt;}
._3b{width:77.184000pt;}
._3c{width:78.256000pt;}
._29{width:91.100800pt;}
._39{width:101.239680pt;}
._3e{width:211.646507pt;}
._35{width:243.043840pt;}
._5{width:259.466667pt;}
._3f{width:327.818027pt;}
._40{width:328.730880pt;}
._37{width:381.632000pt;}
._38{width:974.696960pt;}
._6{width:1075.520000pt;}
.fsd{font-size:21.120000pt;}
.fsc{font-size:24.320000pt;}
.fse{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsf{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs9{font-size:106.880000pt;}
.fs8{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.840000pt;}
.y51{bottom:4.000000pt;}
.ybd{bottom:4.160000pt;}
.yc2{bottom:4.480000pt;}
.ybf{bottom:4.640000pt;}
.yc4{bottom:4.960000pt;}
.yc6{bottom:5.120000pt;}
.ya4{bottom:5.600000pt;}
.ya6{bottom:7.040000pt;}
.yab{bottom:7.186667pt;}
.ya8{bottom:7.360000pt;}
.ya2{bottom:12.480000pt;}
.y50{bottom:12.960000pt;}
.ya3{bottom:19.360000pt;}
.y53{bottom:20.160000pt;}
.y9{bottom:27.360000pt;}
.y4{bottom:32.960000pt;}
.y3{bottom:43.680000pt;}
.y2{bottom:54.880000pt;}
.y8{bottom:58.906667pt;}
.ydd{bottom:71.680000pt;}
.y86{bottom:72.480000pt;}
.y6{bottom:73.746667pt;}
.y179{bottom:77.440000pt;}
.yb9{bottom:79.840000pt;}
.y137{bottom:85.440000pt;}
.y98{bottom:89.280000pt;}
.y85{bottom:90.080000pt;}
.yf8{bottom:92.800000pt;}
.y178{bottom:93.280000pt;}
.yda{bottom:93.440000pt;}
.yb8{bottom:97.600000pt;}
.y44{bottom:98.240000pt;}
.yf7{bottom:105.120000pt;}
.y97{bottom:107.040000pt;}
.y84{bottom:107.680000pt;}
.y4e{bottom:108.320000pt;}
.y177{bottom:109.280000pt;}
.y136{bottom:109.920000pt;}
.yd9{bottom:111.040000pt;}
.yb7{bottom:115.200000pt;}
.y43{bottom:115.840000pt;}
.yf6{bottom:117.440000pt;}
.y135{bottom:122.240000pt;}
.y96{bottom:124.640000pt;}
.y176{bottom:125.120000pt;}
.y83{bottom:125.440000pt;}
.y4d{bottom:125.920000pt;}
.yd8{bottom:128.672000pt;}
.yf5{bottom:129.632000pt;}
.yb6{bottom:132.832000pt;}
.y42{bottom:133.466667pt;}
.y134{bottom:134.426667pt;}
.y175{bottom:140.986667pt;}
.yf4{bottom:141.946667pt;}
.y95{bottom:142.266667pt;}
.y82{bottom:143.066667pt;}
.y4c{bottom:143.546667pt;}
.yd7{bottom:146.426667pt;}
.y133{bottom:147.546667pt;}
.yb5{bottom:150.426667pt;}
.y41{bottom:151.226667pt;}
.yf3{bottom:154.266667pt;}
.y174{bottom:156.826667pt;}
.y94{bottom:159.866667pt;}
.y81{bottom:160.666667pt;}
.y4b{bottom:161.146667pt;}
.yd6{bottom:164.026667pt;}
.yb4{bottom:168.026667pt;}
.y40{bottom:168.826667pt;}
.yf2{bottom:171.866667pt;}
.y173{bottom:172.666667pt;}
.y132{bottom:172.826667pt;}
.y93{bottom:177.466667pt;}
.y80{bottom:177.946667pt;}
.y4a{bottom:178.906667pt;}
.yd5{bottom:181.626667pt;}
.yf1{bottom:184.026667pt;}
.yb3{bottom:185.786667pt;}
.y3f{bottom:186.426667pt;}
.y131{bottom:190.426667pt;}
.y172{bottom:191.706667pt;}
.y92{bottom:195.226667pt;}
.y7f{bottom:195.546667pt;}
.yf0{bottom:196.346667pt;}
.y49{bottom:196.506667pt;}
.y5{bottom:198.120000pt;}
.yd4{bottom:199.226667pt;}
.y130{bottom:202.746667pt;}
.yb2{bottom:203.386667pt;}
.y3e{bottom:204.026667pt;}
.yef{bottom:208.666667pt;}
.y7e{bottom:211.386667pt;}
.y91{bottom:212.826667pt;}
.y171{bottom:213.626667pt;}
.y48{bottom:214.106667pt;}
.y12f{bottom:215.066667pt;}
.yd3{bottom:216.826667pt;}
.yb1{bottom:220.986667pt;}
.y3d{bottom:221.626667pt;}
.yee{bottom:226.266667pt;}
.y7d{bottom:226.746667pt;}
.y12e{bottom:227.226667pt;}
.y90{bottom:230.426667pt;}
.y47{bottom:231.706667pt;}
.yd2{bottom:234.586667pt;}
.y170{bottom:235.546667pt;}
.yed{bottom:238.426667pt;}
.yb0{bottom:238.586667pt;}
.y3c{bottom:239.386667pt;}
.y7c{bottom:242.106667pt;}
.y12d{bottom:244.826667pt;}
.y8f{bottom:248.026667pt;}
.y46{bottom:249.306667pt;}
.yec{bottom:250.746667pt;}
.yd1{bottom:252.186667pt;}
.y3b{bottom:255.386667pt;}
.yaf{bottom:256.186667pt;}
.y12c{bottom:257.146667pt;}
.y7b{bottom:257.466667pt;}
.yeb{bottom:263.066667pt;}
.y8e{bottom:265.626667pt;}
.y3a{bottom:266.906667pt;}
.y45{bottom:267.066667pt;}
.y12b{bottom:269.306667pt;}
.yd0{bottom:269.786667pt;}
.y7a{bottom:272.506667pt;}
.yae{bottom:273.946667pt;}
.y16f{bottom:279.386667pt;}
.yea{bottom:280.666667pt;}
.y12a{bottom:281.626667pt;}
.ye0{bottom:283.066667pt;}
.y8d{bottom:283.386667pt;}
.y39{bottom:286.746667pt;}
.ycf{bottom:287.386667pt;}
.y79{bottom:288.026667pt;}
.yad{bottom:291.546667pt;}
.ye9{bottom:292.826667pt;}
.y38{bottom:297.306667pt;}
.y129{bottom:299.226667pt;}
.y8c{bottom:300.986667pt;}
.y16e{bottom:301.306667pt;}
.y78{bottom:303.066667pt;}
.yce{bottom:304.666667pt;}
.ydc{bottom:304.986667pt;}
.ye8{bottom:305.146667pt;}
.y37{bottom:307.386667pt;}
.yac{bottom:310.906667pt;}
.y128{bottom:311.546667pt;}
.yaa{bottom:316.680000pt;}
.ye7{bottom:317.306667pt;}
.ydf{bottom:318.266667pt;}
.y8b{bottom:318.586667pt;}
.y77{bottom:318.746667pt;}
.y36{bottom:320.026667pt;}
.ycd{bottom:322.426667pt;}
.ydb{bottom:322.746667pt;}
.y16d{bottom:323.226667pt;}
.y127{bottom:323.706667pt;}
.y35{bottom:328.826667pt;}
.ye6{bottom:329.626667pt;}
.y126{bottom:336.066667pt;}
.y76{bottom:336.226667pt;}
.ya9{bottom:339.266667pt;}
.y34{bottom:342.626667pt;}
.y16c{bottom:345.186667pt;}
.ye5{bottom:348.386667pt;}
.y125{bottom:353.666667pt;}
.y75{bottom:353.826667pt;}
.y33{bottom:356.546667pt;}
.ya7{bottom:361.826667pt;}
.ycc{bottom:362.466667pt;}
.y124{bottom:365.986667pt;}
.y16b{bottom:366.946667pt;}
.y32{bottom:370.306667pt;}
.ye4{bottom:371.266667pt;}
.y74{bottom:371.586667pt;}
.ycb{bottom:376.226667pt;}
.y123{bottom:378.146667pt;}
.y31{bottom:384.066667pt;}
.ya5{bottom:384.386667pt;}
.yca{bottom:387.266667pt;}
.y8a{bottom:388.866667pt;}
.y73{bottom:389.186667pt;}
.y122{bottom:390.466667pt;}
.y30{bottom:397.826667pt;}
.y89{bottom:406.466667pt;}
.y72{bottom:406.786667pt;}
.ya1{bottom:406.946667pt;}
.y121{bottom:408.066667pt;}
.y16a{bottom:410.786667pt;}
.y2f{bottom:411.746667pt;}
.y120{bottom:420.386667pt;}
.y71{bottom:424.386667pt;}
.y2e{bottom:425.506667pt;}
.y11f{bottom:432.546667pt;}
.y169{bottom:432.706667pt;}
.y2d{bottom:439.266667pt;}
.y70{bottom:441.986667pt;}
.ya0{bottom:444.546667pt;}
.y11e{bottom:444.866667pt;}
.y2c{bottom:453.026667pt;}
.y168{bottom:454.626667pt;}
.y11d{bottom:457.186667pt;}
.ye3{bottom:459.426667pt;}
.y6f{bottom:459.746667pt;}
.y9f{bottom:459.906667pt;}
.y2b{bottom:466.946667pt;}
.y11c{bottom:474.786667pt;}
.y167{bottom:476.546667pt;}
.y6e{bottom:477.346667pt;}
.y2a{bottom:480.706667pt;}
.y11b{bottom:486.946667pt;}
.y29{bottom:494.466667pt;}
.y6d{bottom:494.946667pt;}
.y166{bottom:498.466667pt;}
.y11a{bottom:499.266667pt;}
.y28{bottom:508.226667pt;}
.y119{bottom:511.586667pt;}
.y6c{bottom:512.546667pt;}
.y165{bottom:520.386667pt;}
.y27{bottom:521.986667pt;}
.y118{bottom:523.746667pt;}
.y9c{bottom:529.826667pt;}
.y6b{bottom:530.146667pt;}
.y26{bottom:535.906667pt;}
.y117{bottom:536.066667pt;}
.y164{bottom:542.306667pt;}
.yde{bottom:547.613333pt;}
.y6a{bottom:547.933333pt;}
.y116{bottom:548.413333pt;}
.y25{bottom:549.693333pt;}
.y163{bottom:562.973333pt;}
.y24{bottom:563.453333pt;}
.y69{bottom:565.533333pt;}
.y115{bottom:566.013333pt;}
.y23{bottom:577.213333pt;}
.y114{bottom:578.173333pt;}
.y162{bottom:580.733333pt;}
.y68{bottom:583.133333pt;}
.y113{bottom:590.493333pt;}
.y22{bottom:591.133333pt;}
.y14d{bottom:599.613333pt;}
.y67{bottom:600.733333pt;}
.y21{bottom:604.893333pt;}
.y112{bottom:608.093333pt;}
.y14c{bottom:611.933333pt;}
.y88{bottom:618.013333pt;}
.y66{bottom:618.333333pt;}
.y20{bottom:618.653333pt;}
.y111{bottom:620.413333pt;}
.y161{bottom:622.653333pt;}
.y14b{bottom:624.093333pt;}
.y110{bottom:632.573333pt;}
.yc9{bottom:634.333333pt;}
.y160{bottom:634.813333pt;}
.y87{bottom:635.773333pt;}
.y65{bottom:636.093333pt;}
.y14a{bottom:636.413333pt;}
.y1f{bottom:640.253333pt;}
.y10f{bottom:644.893333pt;}
.y15f{bottom:647.133333pt;}
.yc8{bottom:649.053333pt;}
.ye2{bottom:653.373333pt;}
.y64{bottom:653.693333pt;}
.y149{bottom:654.013333pt;}
.y10e{bottom:657.213333pt;}
.y15e{bottom:659.453333pt;}
.yc7{bottom:660.253333pt;}
.y1e{bottom:661.373333pt;}
.y148{bottom:666.333333pt;}
.yc5{bottom:670.493333pt;}
.y63{bottom:671.293333pt;}
.y10d{bottom:674.813333pt;}
.y1d{bottom:676.573333pt;}
.y15d{bottom:677.053333pt;}
.y147{bottom:678.493333pt;}
.y1c{bottom:685.053333pt;}
.y10c{bottom:686.973333pt;}
.yc3{bottom:688.573333pt;}
.y62{bottom:688.893333pt;}
.y15c{bottom:689.213333pt;}
.y146{bottom:690.813333pt;}
.y1b{bottom:696.093333pt;}
.y10b{bottom:699.293333pt;}
.y15b{bottom:701.533333pt;}
.y145{bottom:703.133333pt;}
.y61{bottom:706.493333pt;}
.yc1{bottom:706.653333pt;}
.y1a{bottom:708.733333pt;}
.y15a{bottom:713.853333pt;}
.y144{bottom:715.293333pt;}
.y10a{bottom:716.893333pt;}
.y19{bottom:721.053333pt;}
.yc0{bottom:723.613333pt;}
.y9e{bottom:723.933333pt;}
.y60{bottom:724.253333pt;}
.y18{bottom:728.893333pt;}
.y109{bottom:729.213333pt;}
.y159{bottom:731.453333pt;}
.y143{bottom:732.893333pt;}
.y17{bottom:739.453333pt;}
.ybe{bottom:740.733333pt;}
.y108{bottom:741.373333pt;}
.y9d{bottom:741.533333pt;}
.y5f{bottom:741.853333pt;}
.y158{bottom:743.613333pt;}
.y142{bottom:745.213333pt;}
.y107{bottom:753.733333pt;}
.y157{bottom:755.973333pt;}
.y16{bottom:757.413333pt;}
.y141{bottom:757.573333pt;}
.ybc{bottom:758.533333pt;}
.y5e{bottom:759.493333pt;}
.y156{bottom:768.293333pt;}
.y140{bottom:769.733333pt;}
.y106{bottom:771.333333pt;}
.y15{bottom:776.133333pt;}
.y5d{bottom:777.093333pt;}
.ybb{bottom:779.653333pt;}
.y155{bottom:780.453333pt;}
.y13f{bottom:782.053333pt;}
.y105{bottom:783.653333pt;}
.y14{bottom:791.973333pt;}
.y13e{bottom:794.373333pt;}
.y5c{bottom:794.693333pt;}
.yba{bottom:794.853333pt;}
.y104{bottom:795.813333pt;}
.y154{bottom:798.053333pt;}
.y103{bottom:808.133333pt;}
.y153{bottom:810.373333pt;}
.y13d{bottom:811.973333pt;}
.y5b{bottom:812.453333pt;}
.y102{bottom:820.453333pt;}
.y13{bottom:822.533333pt;}
.y152{bottom:822.693333pt;}
.y13c{bottom:824.133333pt;}
.y5a{bottom:830.053333pt;}
.y151{bottom:834.853333pt;}
.y13b{bottom:836.453333pt;}
.y101{bottom:837.573333pt;}
.y150{bottom:847.173333pt;}
.y59{bottom:847.653333pt;}
.y100{bottom:848.293333pt;}
.y13a{bottom:848.773333pt;}
.y12{bottom:853.253333pt;}
.yff{bottom:859.493333pt;}
.y139{bottom:860.933333pt;}
.y14f{bottom:864.773333pt;}
.y58{bottom:865.253333pt;}
.yfe{bottom:871.653333pt;}
.y14e{bottom:877.093333pt;}
.y138{bottom:878.213333pt;}
.y11{bottom:882.053333pt;}
.y57{bottom:882.853333pt;}
.yfd{bottom:889.253333pt;}
.y10{bottom:894.853333pt;}
.y9b{bottom:900.293333pt;}
.y56{bottom:900.613333pt;}
.yfc{bottom:901.573333pt;}
.y4f{bottom:902.373333pt;}
.y7{bottom:902.693333pt;}
.y17c{bottom:905.413333pt;}
.yf{bottom:907.013333pt;}
.yfb{bottom:913.893333pt;}
.y55{bottom:918.213333pt;}
.ye{bottom:920.933333pt;}
.y17b{bottom:921.253333pt;}
.yfa{bottom:926.053333pt;}
.yd{bottom:935.173333pt;}
.ye1{bottom:935.493333pt;}
.y54{bottom:935.813333pt;}
.y17a{bottom:937.093333pt;}
.yf9{bottom:938.373333pt;}
.yc{bottom:955.813333pt;}
.y9a{bottom:965.760000pt;}
.yb{bottom:978.560000pt;}
.y52{bottom:989.920000pt;}
.y1{bottom:995.040000pt;}
.y99{bottom:997.920000pt;}
.h26{height:16.960000pt;}
.h22{height:17.106667pt;}
.h24{height:17.120000pt;}
.h23{height:17.140000pt;}
.h27{height:18.080000pt;}
.h1b{height:19.026667pt;}
.h13{height:20.728125pt;}
.h1f{height:21.906667pt;}
.h20{height:22.546667pt;}
.h21{height:22.578667pt;}
.h12{height:23.856875pt;}
.h14{height:26.381250pt;}
.h11{height:31.390625pt;}
.h18{height:31.406250pt;}
.h1e{height:33.586667pt;}
.h1a{height:36.431250pt;}
.h28{height:36.585938pt;}
.h3{height:37.410000pt;}
.h1d{height:38.413438pt;}
.hc{height:42.063437pt;}
.h2{height:42.084375pt;}
.hf{height:43.215000pt;}
.h2d{height:44.941250pt;}
.h16{height:47.109375pt;}
.h17{height:48.375000pt;}
.h2e{height:49.336436pt;}
.h6{height:49.852500pt;}
.hb{height:52.134375pt;}
.h25{height:52.526250pt;}
.h1c{height:52.834688pt;}
.h19{height:53.535000pt;}
.h2a{height:54.598989pt;}
.h2b{height:55.298750pt;}
.h10{height:58.238750pt;}
.h1{height:58.563750pt;}
.h2f{height:60.288750pt;}
.h2c{height:62.812500pt;}
.h9{height:63.399375pt;}
.h29{height:73.490625pt;}
.hd{height:75.410937pt;}
.h5{height:87.666667pt;}
.h15{height:94.218750pt;}
.h7{height:94.266667pt;}
.h4{height:96.750000pt;}
.he{height:107.715000pt;}
.ha{height:125.562500pt;}
.h8{height:126.256875pt;}
.h0{height:1056.000000pt;}
.w2{width:73.746667pt;}
.w7{width:95.986667pt;}
.w8{width:96.178667pt;}
.w5{width:216.013333pt;}
.w3{width:222.145333pt;}
.w4{width:240.026667pt;}
.w6{width:392.572000pt;}
.w1{width:676.120000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.198667pt;}
.x3{left:9.598667pt;}
.x18{left:12.800000pt;}
.x2b{left:28.960000pt;}
.x2d{left:31.506667pt;}
.x2c{left:34.386667pt;}
.x29{left:41.746667pt;}
.x27{left:45.266667pt;}
.x25{left:64.946667pt;}
.x24{left:66.866667pt;}
.x1{left:72.000000pt;}
.x2{left:72.961333pt;}
.x22{left:75.186667pt;}
.x1f{left:76.320000pt;}
.x23{left:78.880000pt;}
.x20{left:87.200000pt;}
.xa{left:91.072000pt;}
.x1b{left:96.032000pt;}
.xe{left:97.312000pt;}
.xd{left:99.232000pt;}
.xf{left:112.192000pt;}
.xb{left:137.626667pt;}
.x2f{left:140.666667pt;}
.x14{left:144.026667pt;}
.x12{left:165.146667pt;}
.x10{left:187.386667pt;}
.xc{left:196.186667pt;}
.x11{left:267.266667pt;}
.x1e{left:294.146667pt;}
.x5{left:298.786667pt;}
.x1c{left:309.186667pt;}
.x7{left:310.626667pt;}
.x4{left:328.706667pt;}
.x8{left:350.466667pt;}
.x19{left:369.826667pt;}
.x13{left:375.906667pt;}
.x6{left:376.866667pt;}
.x1a{left:401.026667pt;}
.x9{left:411.106667pt;}
.x15{left:434.626667pt;}
.x16{left:458.653333pt;}
.x26{left:464.586667pt;}
.x2e{left:476.093333pt;}
.x21{left:534.186667pt;}
.x28{left:560.586667pt;}
.x2a{left:656.773333pt;}
.x17{left:677.093333pt;}
}




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