
    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_5c76ebb18eaefb015f940e4b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a2fe86cc92ce9505231faf6f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bb9e75056f153eace51badb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_af59fc045edcad4dcbc47aac.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cca4f6e3405fe528f08d8611.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_157a38908347c65a7e7605bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01920967499a9a7edb3434db.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5cff8f3214363cf3230ea169.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_0f9ead7b6cd5d5192ffa3a5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727539;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_d7a4b8f8f6b54f6ac7a8b898.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_4fc6719bb1ebda153cb56aa5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936035;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_260c6881a011a1c3d0e32c48.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7{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:15.120000px;}
.v2{vertical-align:20.880000px;}
.lsf{letter-spacing:-0.684000px;}
.lse{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.038880px;}
.ls9{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.022320px;}
.ls3{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.054720px;}
.ls0{letter-spacing:0.109200px;}
.ls14{letter-spacing:0.243360px;}
.ls8{letter-spacing:0.245400px;}
.ls1{letter-spacing:0.245520px;}
.ls12{letter-spacing:0.447840px;}
.ls1c{letter-spacing:0.468000px;}
.ls16{letter-spacing:0.479400px;}
.ls5{letter-spacing:0.479520px;}
.ls1a{letter-spacing:0.544200px;}
.ls1b{letter-spacing:0.547800px;}
.ls4{letter-spacing:0.596400px;}
.ls1e{letter-spacing:0.648000px;}
.lsd{letter-spacing:0.659520px;}
.lsb{letter-spacing:0.660000px;}
.ls1d{letter-spacing:0.702000px;}
.lsa{letter-spacing:0.852000px;}
.ls10{letter-spacing:0.894000px;}
.ls19{letter-spacing:0.894240px;}
.ls17{letter-spacing:0.963360px;}
.ls18{letter-spacing:4.494240px;}
.ls15{letter-spacing:7.374240px;}
.ls13{letter-spacing:8.814240px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws5{word-spacing:-17.012400px;}
.ws8{word-spacing:-16.272000px;}
.wsc{word-spacing:-14.399760px;}
.ws9{word-spacing:-14.165760px;}
.wse{word-spacing:-14.053560px;}
.ws1{word-spacing:-13.734480px;}
.ws0{word-spacing:-13.625280px;}
.wsa{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.164000px;}
.wsf{word-spacing:-12.906000px;}
.ws7{word-spacing:-12.312000px;}
.ws3{word-spacing:-12.204000px;}
.ws4{word-spacing:-12.186000px;}
.ws2{word-spacing:-8.825760px;}
.wsb{word-spacing:0.000000px;}
._18{margin-left:-2.270880px;}
._3{margin-left:-1.126080px;}
._1{width:1.135440px;}
._2{width:2.564400px;}
._0{width:4.356720px;}
._8{width:6.035760px;}
._c{width:7.768800px;}
._2b{width:8.852400px;}
._d{width:10.159200px;}
._b{width:11.533680px;}
._23{width:15.358320px;}
._e{width:16.971840px;}
._19{width:18.047520px;}
._a{width:19.067280px;}
._9{width:20.318400px;}
._7{width:21.754800px;}
._17{width:23.306400px;}
._16{width:25.039440px;}
._f{width:26.338080px;}
._10{width:27.609120px;}
._1a{width:28.774560px;}
._1f{width:29.880000px;}
._20{width:30.895920px;}
._29{width:32.688720px;}
._15{width:33.899040px;}
._1e{width:35.138880px;}
._25{width:36.334080px;}
._13{width:38.306160px;}
._12{width:39.441600px;}
._2c{width:40.816080px;}
._14{width:43.206480px;}
._11{width:45.059040px;}
._1d{width:46.134720px;}
._30{width:47.329920px;}
._22{width:48.405600px;}
._21{width:49.780080px;}
._34{width:51.393600px;}
._35{width:53.126640px;}
._2e{width:54.620640px;}
._24{width:56.054880px;}
._1b{width:57.365040px;}
._1c{width:58.564800px;}
._26{width:62.090640px;}
._33{width:71.472960px;}
._2a{width:74.162160px;}
._38{width:76.331520px;}
._27{width:77.508720px;}
._28{width:78.660000px;}
._2f{width:86.831280px;}
._32{width:91.074240px;}
._5{width:102.849120px;}
._2d{width:115.695360px;}
._37{width:120.844800px;}
._4{width:123.468829px;}
._36{width:126.624240px;}
._31{width:223.920720px;}
._6{width:1794.352800px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs9{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fsa{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs6{font-size:144.000000px;}
.y41{bottom:-7.920000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:1.620000px;}
.yd{bottom:2.700000px;}
.y40{bottom:13.530000px;}
.y3f{bottom:39.450000px;}
.yb{bottom:56.520000px;}
.yc{bottom:66.780000px;}
.y3c{bottom:68.400000px;}
.y3b{bottom:72.360000px;}
.ya{bottom:72.720000px;}
.y3a{bottom:89.460000px;}
.y9{bottom:91.080000px;}
.y10e{bottom:113.940000px;}
.y95{bottom:119.340000px;}
.ybc{bottom:121.140000px;}
.y38{bottom:128.700000px;}
.y78{bottom:129.060000px;}
.y10d{bottom:130.500000px;}
.yd2{bottom:134.100000px;}
.y94{bottom:137.700000px;}
.ybb{bottom:139.500000px;}
.y37{bottom:147.060000px;}
.y77{bottom:147.420000px;}
.yd1{bottom:150.660000px;}
.y93{bottom:155.880000px;}
.yba{bottom:157.680000px;}
.y10c{bottom:163.440000px;}
.y36{bottom:165.420000px;}
.y76{bottom:165.600000px;}
.yd0{bottom:167.040000px;}
.y92{bottom:174.240000px;}
.yb9{bottom:176.040000px;}
.y10b{bottom:180.000000px;}
.y35{bottom:183.600000px;}
.y75{bottom:183.960000px;}
.y91{bottom:192.600000px;}
.yb8{bottom:194.400000px;}
.y10a{bottom:196.380000px;}
.ycf{bottom:200.160000px;}
.y34{bottom:201.960000px;}
.y74{bottom:202.320000px;}
.y90{bottom:210.990000px;}
.yb7{bottom:212.610000px;}
.y109{bottom:212.970000px;}
.yce{bottom:216.570000px;}
.y33{bottom:220.350000px;}
.y73{bottom:220.530000px;}
.y8f{bottom:229.170000px;}
.y108{bottom:229.350000px;}
.yb6{bottom:230.970000px;}
.ycd{bottom:233.130000px;}
.y32{bottom:238.710000px;}
.y72{bottom:238.890000px;}
.y107{bottom:245.910000px;}
.y8e{bottom:247.530000px;}
.yb5{bottom:249.330000px;}
.ycc{bottom:249.510000px;}
.y31{bottom:256.890000px;}
.y71{bottom:257.250000px;}
.y106{bottom:262.290000px;}
.y8d{bottom:265.890000px;}
.ycb{bottom:266.070000px;}
.yb4{bottom:267.690000px;}
.y30{bottom:275.250000px;}
.y70{bottom:275.610000px;}
.y105{bottom:278.850000px;}
.yca{bottom:282.450000px;}
.y8c{bottom:284.250000px;}
.yb3{bottom:285.870000px;}
.y2f{bottom:293.610000px;}
.y6f{bottom:293.790000px;}
.y104{bottom:295.410000px;}
.yc9{bottom:299.010000px;}
.y8b{bottom:302.430000px;}
.yb2{bottom:304.230000px;}
.y2e{bottom:311.070000px;}
.y103{bottom:311.790000px;}
.y6e{bottom:312.150000px;}
.yc8{bottom:315.390000px;}
.y8a{bottom:316.830000px;}
.yb1{bottom:322.590000px;}
.y102{bottom:328.350000px;}
.y2d{bottom:329.070000px;}
.y6d{bottom:330.510000px;}
.yc7{bottom:331.950000px;}
.yb0{bottom:340.950000px;}
.y101{bottom:344.730000px;}
.y2c{bottom:347.430000px;}
.yc6{bottom:348.510000px;}
.y6c{bottom:348.870000px;}
.yaf{bottom:359.130000px;}
.y100{bottom:361.290000px;}
.yc5{bottom:364.890000px;}
.y2b{bottom:365.790000px;}
.y6b{bottom:367.050000px;}
.yae{bottom:377.490000px;}
.yff{bottom:377.670000px;}
.yc4{bottom:381.450000px;}
.y2a{bottom:383.970000px;}
.y6a{bottom:385.410000px;}
.yfe{bottom:394.230000px;}
.yad{bottom:395.850000px;}
.yc3{bottom:397.830000px;}
.y29{bottom:402.330000px;}
.y69{bottom:403.770000px;}
.yfd{bottom:410.610000px;}
.yac{bottom:414.030000px;}
.yc2{bottom:414.390000px;}
.y28{bottom:420.690000px;}
.y68{bottom:421.950000px;}
.yfc{bottom:427.170000px;}
.yc1{bottom:430.770000px;}
.yab{bottom:432.390000px;}
.y27{bottom:438.870000px;}
.y67{bottom:440.310000px;}
.yfb{bottom:443.550000px;}
.yc0{bottom:447.375000px;}
.yaa{bottom:450.795000px;}
.y26{bottom:457.275000px;}
.y66{bottom:458.715000px;}
.yfa{bottom:460.155000px;}
.ybf{bottom:463.755000px;}
.ya9{bottom:469.155000px;}
.y25{bottom:475.635000px;}
.yf9{bottom:476.715000px;}
.y65{bottom:477.075000px;}
.ybe{bottom:480.315000px;}
.ya8{bottom:487.335000px;}
.yf8{bottom:493.095000px;}
.y24{bottom:493.995000px;}
.y64{bottom:495.255000px;}
.ybd{bottom:496.695000px;}
.ya7{bottom:505.695000px;}
.yf7{bottom:509.655000px;}
.y23{bottom:512.175000px;}
.y63{bottom:513.615000px;}
.ya6{bottom:524.055000px;}
.yf6{bottom:526.035000px;}
.y22{bottom:530.535000px;}
.y62{bottom:531.975000px;}
.ya5{bottom:542.415000px;}
.yf5{bottom:542.595000px;}
.y21{bottom:548.895000px;}
.y61{bottom:550.155000px;}
.yf4{bottom:558.975000px;}
.ya4{bottom:560.595000px;}
.y20{bottom:567.075000px;}
.y89{bottom:568.335000px;}
.y60{bottom:568.515000px;}
.yf3{bottom:575.535000px;}
.ya3{bottom:578.955000px;}
.y1f{bottom:585.435000px;}
.y88{bottom:586.695000px;}
.y5f{bottom:586.875000px;}
.yf2{bottom:591.915000px;}
.ya2{bottom:597.315000px;}
.y1e{bottom:603.795000px;}
.y87{bottom:604.875000px;}
.y5e{bottom:605.235000px;}
.yf1{bottom:608.475000px;}
.ya1{bottom:611.535000px;}
.y1d{bottom:622.155000px;}
.y86{bottom:623.235000px;}
.y5d{bottom:623.415000px;}
.yf0{bottom:625.035000px;}
.y1c{bottom:640.335000px;}
.yef{bottom:641.415000px;}
.y85{bottom:641.595000px;}
.y5c{bottom:641.775000px;}
.yee{bottom:657.975000px;}
.y1b{bottom:658.695000px;}
.y84{bottom:659.955000px;}
.y5b{bottom:660.135000px;}
.yed{bottom:674.355000px;}
.y1a{bottom:677.955000px;}
.y83{bottom:678.135000px;}
.y5a{bottom:678.495000px;}
.yec{bottom:690.945000px;}
.y82{bottom:696.525000px;}
.y59{bottom:696.705000px;}
.yeb{bottom:707.325000px;}
.y19{bottom:709.665000px;}
.y81{bottom:714.885000px;}
.y58{bottom:715.065000px;}
.yea{bottom:723.885000px;}
.y80{bottom:733.245000px;}
.y57{bottom:733.425000px;}
.y18{bottom:734.145000px;}
.ye9{bottom:740.265000px;}
.y17{bottom:749.625000px;}
.y7f{bottom:751.425000px;}
.y56{bottom:751.605000px;}
.y110{bottom:753.585000px;}
.ye8{bottom:756.825000px;}
.y7e{bottom:769.785000px;}
.y55{bottom:769.965000px;}
.y10f{bottom:771.765000px;}
.ye7{bottom:773.385000px;}
.y16{bottom:773.925000px;}
.y7d{bottom:788.145000px;}
.y54{bottom:788.325000px;}
.ye6{bottom:789.765000px;}
.y15{bottom:798.585000px;}
.ya0{bottom:800.025000px;}
.y7c{bottom:806.325000px;}
.y53{bottom:806.685000px;}
.y9f{bottom:818.385000px;}
.y14{bottom:819.285000px;}
.ye5{bottom:822.705000px;}
.y7b{bottom:824.685000px;}
.y52{bottom:824.865000px;}
.y9e{bottom:836.745000px;}
.ye4{bottom:839.265000px;}
.y7a{bottom:843.045000px;}
.y51{bottom:843.225000px;}
.y13{bottom:848.985000px;}
.y9d{bottom:855.105000px;}
.ye3{bottom:855.645000px;}
.y79{bottom:857.445000px;}
.y50{bottom:861.585000px;}
.ye2{bottom:872.205000px;}
.y9c{bottom:873.285000px;}
.y12{bottom:879.405000px;}
.y4f{bottom:879.945000px;}
.ye1{bottom:888.585000px;}
.y9b{bottom:891.645000px;}
.y4e{bottom:898.125000px;}
.y11{bottom:904.785000px;}
.ye0{bottom:905.145000px;}
.y9a{bottom:910.005000px;}
.y4d{bottom:916.530000px;}
.ydf{bottom:921.750000px;}
.y99{bottom:928.410000px;}
.y4c{bottom:934.890000px;}
.y10{bottom:935.250000px;}
.yde{bottom:938.130000px;}
.y98{bottom:946.590000px;}
.y4b{bottom:953.070000px;}
.ydd{bottom:954.690000px;}
.y97{bottom:964.950000px;}
.ydc{bottom:971.070000px;}
.y4a{bottom:971.430000px;}
.yf{bottom:976.650000px;}
.y96{bottom:979.350000px;}
.ydb{bottom:987.630000px;}
.y49{bottom:989.790000px;}
.yda{bottom:1004.010000px;}
.y48{bottom:1008.150000px;}
.ye{bottom:1017.870000px;}
.yd9{bottom:1020.570000px;}
.y47{bottom:1026.330000px;}
.yd8{bottom:1036.950000px;}
.y46{bottom:1044.690000px;}
.yd7{bottom:1053.510000px;}
.y8{bottom:1056.030000px;}
.y45{bottom:1063.050000px;}
.yd6{bottom:1069.890000px;}
.y7{bottom:1076.190000px;}
.y44{bottom:1081.410000px;}
.yd5{bottom:1086.450000px;}
.y6{bottom:1095.090000px;}
.y43{bottom:1099.590000px;}
.yd4{bottom:1103.010000px;}
.y5{bottom:1114.890000px;}
.y42{bottom:1117.950000px;}
.yd3{bottom:1119.390000px;}
.y4{bottom:1134.690000px;}
.y39{bottom:1144.050000px;}
.y3e{bottom:1150.890000px;}
.y3{bottom:1154.340000px;}
.y2{bottom:1175.220000px;}
.y1{bottom:1195.740000px;}
.h11{height:12.960000px;}
.h4{height:15.660000px;}
.hc{height:26.226562px;}
.ha{height:37.241719px;}
.hb{height:39.339844px;}
.h2{height:43.536094px;}
.h9{height:52.453125px;}
.h12{height:53.496000px;}
.h14{height:53.709961px;}
.hf{height:59.439023px;}
.h13{height:59.551172px;}
.h10{height:61.189805px;}
.h3{height:65.884219px;}
.h8{height:71.324297px;}
.h5{height:71.613281px;}
.he{height:73.722656px;}
.hd{height:74.004654px;}
.h7{height:81.078047px;}
.h6{height:104.906250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:33.120000px;}
.w3{width:37.980000px;}
.w5{width:342.795000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:10.620000px;}
.xa{left:12.060000px;}
.x7{left:44.099987px;}
.x18{left:52.230000px;}
.x14{left:66.059987px;}
.x6{left:108.035987px;}
.xc{left:118.655987px;}
.x20{left:129.275987px;}
.xb{left:150.509987px;}
.x1b{left:152.309987px;}
.x8{left:182.549987px;}
.x10{left:192.989987px;}
.x19{left:221.295000px;}
.x5{left:246.089987px;}
.x11{left:262.289987px;}
.x3{left:277.274987px;}
.xd{left:342.794987px;}
.x12{left:427.754987px;}
.x17{left:442.335000px;}
.x1c{left:446.504987px;}
.x13{left:457.304987px;}
.x21{left:478.544987px;}
.x4{left:515.084987px;}
.xe{left:541.544987px;}
.xf{left:543.704987px;}
.x1e{left:580.424987px;}
.x1f{left:583.844987px;}
.x1d{left:661.469987px;}
.x1a{left:668.309987px;}
.x2{left:679.109987px;}
.x9{left:748.950000px;}
.x15{left:753.990000px;}
.x1{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v2{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.608000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.034560pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.019840pt;}
.ls3{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.048640pt;}
.ls0{letter-spacing:0.097067pt;}
.ls14{letter-spacing:0.216320pt;}
.ls8{letter-spacing:0.218133pt;}
.ls1{letter-spacing:0.218240pt;}
.ls12{letter-spacing:0.398080pt;}
.ls1c{letter-spacing:0.416000pt;}
.ls16{letter-spacing:0.426133pt;}
.ls5{letter-spacing:0.426240pt;}
.ls1a{letter-spacing:0.483733pt;}
.ls1b{letter-spacing:0.486933pt;}
.ls4{letter-spacing:0.530133pt;}
.ls1e{letter-spacing:0.576000pt;}
.lsd{letter-spacing:0.586240pt;}
.lsb{letter-spacing:0.586667pt;}
.ls1d{letter-spacing:0.624000pt;}
.lsa{letter-spacing:0.757333pt;}
.ls10{letter-spacing:0.794667pt;}
.ls19{letter-spacing:0.794880pt;}
.ls17{letter-spacing:0.856320pt;}
.ls18{letter-spacing:3.994880pt;}
.ls15{letter-spacing:6.554880pt;}
.ls13{letter-spacing:7.834880pt;}
.wsd{word-spacing:-53.120000pt;}
.ws5{word-spacing:-15.122133pt;}
.ws8{word-spacing:-14.464000pt;}
.wsc{word-spacing:-12.799787pt;}
.ws9{word-spacing:-12.591787pt;}
.wse{word-spacing:-12.492053pt;}
.ws1{word-spacing:-12.208427pt;}
.ws0{word-spacing:-12.111360pt;}
.wsa{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.701333pt;}
.wsf{word-spacing:-11.472000pt;}
.ws7{word-spacing:-10.944000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.832000pt;}
.ws2{word-spacing:-7.845120pt;}
.wsb{word-spacing:0.000000pt;}
._18{margin-left:-2.018560pt;}
._3{margin-left:-1.000960pt;}
._1{width:1.009280pt;}
._2{width:2.279467pt;}
._0{width:3.872640pt;}
._8{width:5.365120pt;}
._c{width:6.905600pt;}
._2b{width:7.868800pt;}
._d{width:9.030400pt;}
._b{width:10.252160pt;}
._23{width:13.651840pt;}
._e{width:15.086080pt;}
._19{width:16.042240pt;}
._a{width:16.948693pt;}
._9{width:18.060800pt;}
._7{width:19.337600pt;}
._17{width:20.716800pt;}
._16{width:22.257280pt;}
._f{width:23.411627pt;}
._10{width:24.541440pt;}
._1a{width:25.577387pt;}
._1f{width:26.560000pt;}
._20{width:27.463040pt;}
._29{width:29.056640pt;}
._15{width:30.132480pt;}
._1e{width:31.234560pt;}
._25{width:32.296960pt;}
._13{width:34.049920pt;}
._12{width:35.059200pt;}
._2c{width:36.280960pt;}
._14{width:38.405760pt;}
._11{width:40.052480pt;}
._1d{width:41.008640pt;}
._30{width:42.071040pt;}
._22{width:43.027200pt;}
._21{width:44.248960pt;}
._34{width:45.683200pt;}
._35{width:47.223680pt;}
._2e{width:48.551680pt;}
._24{width:49.826560pt;}
._1b{width:50.991147pt;}
._1c{width:52.057600pt;}
._26{width:55.191680pt;}
._33{width:63.531520pt;}
._2a{width:65.921920pt;}
._38{width:67.850240pt;}
._27{width:68.896640pt;}
._28{width:69.920000pt;}
._2f{width:77.183360pt;}
._32{width:80.954880pt;}
._5{width:91.421440pt;}
._2d{width:102.840320pt;}
._37{width:107.417600pt;}
._4{width:109.750070pt;}
._36{width:112.554880pt;}
._31{width:199.040640pt;}
._6{width:1594.980267pt;}
.fs9{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fsa{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs6{font-size:128.000000pt;}
.y41{bottom:-7.040000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:1.440000pt;}
.yd{bottom:2.400000pt;}
.y40{bottom:12.026667pt;}
.y3f{bottom:35.066667pt;}
.yb{bottom:50.240000pt;}
.yc{bottom:59.360000pt;}
.y3c{bottom:60.800000pt;}
.y3b{bottom:64.320000pt;}
.ya{bottom:64.640000pt;}
.y3a{bottom:79.520000pt;}
.y9{bottom:80.960000pt;}
.y10e{bottom:101.280000pt;}
.y95{bottom:106.080000pt;}
.ybc{bottom:107.680000pt;}
.y38{bottom:114.400000pt;}
.y78{bottom:114.720000pt;}
.y10d{bottom:116.000000pt;}
.yd2{bottom:119.200000pt;}
.y94{bottom:122.400000pt;}
.ybb{bottom:124.000000pt;}
.y37{bottom:130.720000pt;}
.y77{bottom:131.040000pt;}
.yd1{bottom:133.920000pt;}
.y93{bottom:138.560000pt;}
.yba{bottom:140.160000pt;}
.y10c{bottom:145.280000pt;}
.y36{bottom:147.040000pt;}
.y76{bottom:147.200000pt;}
.yd0{bottom:148.480000pt;}
.y92{bottom:154.880000pt;}
.yb9{bottom:156.480000pt;}
.y10b{bottom:160.000000pt;}
.y35{bottom:163.200000pt;}
.y75{bottom:163.520000pt;}
.y91{bottom:171.200000pt;}
.yb8{bottom:172.800000pt;}
.y10a{bottom:174.560000pt;}
.ycf{bottom:177.920000pt;}
.y34{bottom:179.520000pt;}
.y74{bottom:179.840000pt;}
.y90{bottom:187.546667pt;}
.yb7{bottom:188.986667pt;}
.y109{bottom:189.306667pt;}
.yce{bottom:192.506667pt;}
.y33{bottom:195.866667pt;}
.y73{bottom:196.026667pt;}
.y8f{bottom:203.706667pt;}
.y108{bottom:203.866667pt;}
.yb6{bottom:205.306667pt;}
.ycd{bottom:207.226667pt;}
.y32{bottom:212.186667pt;}
.y72{bottom:212.346667pt;}
.y107{bottom:218.586667pt;}
.y8e{bottom:220.026667pt;}
.yb5{bottom:221.626667pt;}
.ycc{bottom:221.786667pt;}
.y31{bottom:228.346667pt;}
.y71{bottom:228.666667pt;}
.y106{bottom:233.146667pt;}
.y8d{bottom:236.346667pt;}
.ycb{bottom:236.506667pt;}
.yb4{bottom:237.946667pt;}
.y30{bottom:244.666667pt;}
.y70{bottom:244.986667pt;}
.y105{bottom:247.866667pt;}
.yca{bottom:251.066667pt;}
.y8c{bottom:252.666667pt;}
.yb3{bottom:254.106667pt;}
.y2f{bottom:260.986667pt;}
.y6f{bottom:261.146667pt;}
.y104{bottom:262.586667pt;}
.yc9{bottom:265.786667pt;}
.y8b{bottom:268.826667pt;}
.yb2{bottom:270.426667pt;}
.y2e{bottom:276.506667pt;}
.y103{bottom:277.146667pt;}
.y6e{bottom:277.466667pt;}
.yc8{bottom:280.346667pt;}
.y8a{bottom:281.626667pt;}
.yb1{bottom:286.746667pt;}
.y102{bottom:291.866667pt;}
.y2d{bottom:292.506667pt;}
.y6d{bottom:293.786667pt;}
.yc7{bottom:295.066667pt;}
.yb0{bottom:303.066667pt;}
.y101{bottom:306.426667pt;}
.y2c{bottom:308.826667pt;}
.yc6{bottom:309.786667pt;}
.y6c{bottom:310.106667pt;}
.yaf{bottom:319.226667pt;}
.y100{bottom:321.146667pt;}
.yc5{bottom:324.346667pt;}
.y2b{bottom:325.146667pt;}
.y6b{bottom:326.266667pt;}
.yae{bottom:335.546667pt;}
.yff{bottom:335.706667pt;}
.yc4{bottom:339.066667pt;}
.y2a{bottom:341.306667pt;}
.y6a{bottom:342.586667pt;}
.yfe{bottom:350.426667pt;}
.yad{bottom:351.866667pt;}
.yc3{bottom:353.626667pt;}
.y29{bottom:357.626667pt;}
.y69{bottom:358.906667pt;}
.yfd{bottom:364.986667pt;}
.yac{bottom:368.026667pt;}
.yc2{bottom:368.346667pt;}
.y28{bottom:373.946667pt;}
.y68{bottom:375.066667pt;}
.yfc{bottom:379.706667pt;}
.yc1{bottom:382.906667pt;}
.yab{bottom:384.346667pt;}
.y27{bottom:390.106667pt;}
.y67{bottom:391.386667pt;}
.yfb{bottom:394.266667pt;}
.yc0{bottom:397.666667pt;}
.yaa{bottom:400.706667pt;}
.y26{bottom:406.466667pt;}
.y66{bottom:407.746667pt;}
.yfa{bottom:409.026667pt;}
.ybf{bottom:412.226667pt;}
.ya9{bottom:417.026667pt;}
.y25{bottom:422.786667pt;}
.yf9{bottom:423.746667pt;}
.y65{bottom:424.066667pt;}
.ybe{bottom:426.946667pt;}
.ya8{bottom:433.186667pt;}
.yf8{bottom:438.306667pt;}
.y24{bottom:439.106667pt;}
.y64{bottom:440.226667pt;}
.ybd{bottom:441.506667pt;}
.ya7{bottom:449.506667pt;}
.yf7{bottom:453.026667pt;}
.y23{bottom:455.266667pt;}
.y63{bottom:456.546667pt;}
.ya6{bottom:465.826667pt;}
.yf6{bottom:467.586667pt;}
.y22{bottom:471.586667pt;}
.y62{bottom:472.866667pt;}
.ya5{bottom:482.146667pt;}
.yf5{bottom:482.306667pt;}
.y21{bottom:487.906667pt;}
.y61{bottom:489.026667pt;}
.yf4{bottom:496.866667pt;}
.ya4{bottom:498.306667pt;}
.y20{bottom:504.066667pt;}
.y89{bottom:505.186667pt;}
.y60{bottom:505.346667pt;}
.yf3{bottom:511.586667pt;}
.ya3{bottom:514.626667pt;}
.y1f{bottom:520.386667pt;}
.y88{bottom:521.506667pt;}
.y5f{bottom:521.666667pt;}
.yf2{bottom:526.146667pt;}
.ya2{bottom:530.946667pt;}
.y1e{bottom:536.706667pt;}
.y87{bottom:537.666667pt;}
.y5e{bottom:537.986667pt;}
.yf1{bottom:540.866667pt;}
.ya1{bottom:543.586667pt;}
.y1d{bottom:553.026667pt;}
.y86{bottom:553.986667pt;}
.y5d{bottom:554.146667pt;}
.yf0{bottom:555.586667pt;}
.y1c{bottom:569.186667pt;}
.yef{bottom:570.146667pt;}
.y85{bottom:570.306667pt;}
.y5c{bottom:570.466667pt;}
.yee{bottom:584.866667pt;}
.y1b{bottom:585.506667pt;}
.y84{bottom:586.626667pt;}
.y5b{bottom:586.786667pt;}
.yed{bottom:599.426667pt;}
.y1a{bottom:602.626667pt;}
.y83{bottom:602.786667pt;}
.y5a{bottom:603.106667pt;}
.yec{bottom:614.173333pt;}
.y82{bottom:619.133333pt;}
.y59{bottom:619.293333pt;}
.yeb{bottom:628.733333pt;}
.y19{bottom:630.813333pt;}
.y81{bottom:635.453333pt;}
.y58{bottom:635.613333pt;}
.yea{bottom:643.453333pt;}
.y80{bottom:651.773333pt;}
.y57{bottom:651.933333pt;}
.y18{bottom:652.573333pt;}
.ye9{bottom:658.013333pt;}
.y17{bottom:666.333333pt;}
.y7f{bottom:667.933333pt;}
.y56{bottom:668.093333pt;}
.y110{bottom:669.853333pt;}
.ye8{bottom:672.733333pt;}
.y7e{bottom:684.253333pt;}
.y55{bottom:684.413333pt;}
.y10f{bottom:686.013333pt;}
.ye7{bottom:687.453333pt;}
.y16{bottom:687.933333pt;}
.y7d{bottom:700.573333pt;}
.y54{bottom:700.733333pt;}
.ye6{bottom:702.013333pt;}
.y15{bottom:709.853333pt;}
.ya0{bottom:711.133333pt;}
.y7c{bottom:716.733333pt;}
.y53{bottom:717.053333pt;}
.y9f{bottom:727.453333pt;}
.y14{bottom:728.253333pt;}
.ye5{bottom:731.293333pt;}
.y7b{bottom:733.053333pt;}
.y52{bottom:733.213333pt;}
.y9e{bottom:743.773333pt;}
.ye4{bottom:746.013333pt;}
.y7a{bottom:749.373333pt;}
.y51{bottom:749.533333pt;}
.y13{bottom:754.653333pt;}
.y9d{bottom:760.093333pt;}
.ye3{bottom:760.573333pt;}
.y79{bottom:762.173333pt;}
.y50{bottom:765.853333pt;}
.ye2{bottom:775.293333pt;}
.y9c{bottom:776.253333pt;}
.y12{bottom:781.693333pt;}
.y4f{bottom:782.173333pt;}
.ye1{bottom:789.853333pt;}
.y9b{bottom:792.573333pt;}
.y4e{bottom:798.333333pt;}
.y11{bottom:804.253333pt;}
.ye0{bottom:804.573333pt;}
.y9a{bottom:808.893333pt;}
.y4d{bottom:814.693333pt;}
.ydf{bottom:819.333333pt;}
.y99{bottom:825.253333pt;}
.y4c{bottom:831.013333pt;}
.y10{bottom:831.333333pt;}
.yde{bottom:833.893333pt;}
.y98{bottom:841.413333pt;}
.y4b{bottom:847.173333pt;}
.ydd{bottom:848.613333pt;}
.y97{bottom:857.733333pt;}
.ydc{bottom:863.173333pt;}
.y4a{bottom:863.493333pt;}
.yf{bottom:868.133333pt;}
.y96{bottom:870.533333pt;}
.ydb{bottom:877.893333pt;}
.y49{bottom:879.813333pt;}
.yda{bottom:892.453333pt;}
.y48{bottom:896.133333pt;}
.ye{bottom:904.773333pt;}
.yd9{bottom:907.173333pt;}
.y47{bottom:912.293333pt;}
.yd8{bottom:921.733333pt;}
.y46{bottom:928.613333pt;}
.yd7{bottom:936.453333pt;}
.y8{bottom:938.693333pt;}
.y45{bottom:944.933333pt;}
.yd6{bottom:951.013333pt;}
.y7{bottom:956.613333pt;}
.y44{bottom:961.253333pt;}
.yd5{bottom:965.733333pt;}
.y6{bottom:973.413333pt;}
.y43{bottom:977.413333pt;}
.yd4{bottom:980.453333pt;}
.y5{bottom:991.013333pt;}
.y42{bottom:993.733333pt;}
.yd3{bottom:995.013333pt;}
.y4{bottom:1008.613333pt;}
.y39{bottom:1016.933333pt;}
.y3e{bottom:1023.013333pt;}
.y3{bottom:1026.080000pt;}
.y2{bottom:1044.640000pt;}
.y1{bottom:1062.880000pt;}
.h11{height:11.520000pt;}
.h4{height:13.920000pt;}
.hc{height:23.312500pt;}
.ha{height:33.103750pt;}
.hb{height:34.968750pt;}
.h2{height:38.698750pt;}
.h9{height:46.625000pt;}
.h12{height:47.552000pt;}
.h14{height:47.742188pt;}
.hf{height:52.834688pt;}
.h13{height:52.934375pt;}
.h10{height:54.390938pt;}
.h3{height:58.563750pt;}
.h8{height:63.399375pt;}
.h5{height:63.656250pt;}
.he{height:65.531250pt;}
.hd{height:65.781915pt;}
.h7{height:72.069375pt;}
.h6{height:93.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:29.440000pt;}
.w3{width:33.760000pt;}
.w5{width:304.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:9.440000pt;}
.xa{left:10.720000pt;}
.x7{left:39.199988pt;}
.x18{left:46.426667pt;}
.x14{left:58.719988pt;}
.x6{left:96.031988pt;}
.xc{left:105.471988pt;}
.x20{left:114.911988pt;}
.xb{left:133.786655pt;}
.x1b{left:135.386655pt;}
.x8{left:162.266655pt;}
.x10{left:171.546655pt;}
.x19{left:196.706667pt;}
.x5{left:218.746655pt;}
.x11{left:233.146655pt;}
.x3{left:246.466655pt;}
.xd{left:304.706655pt;}
.x12{left:380.226655pt;}
.x17{left:393.186667pt;}
.x1c{left:396.893322pt;}
.x13{left:406.493322pt;}
.x21{left:425.373322pt;}
.x4{left:457.853322pt;}
.xe{left:481.373322pt;}
.xf{left:483.293322pt;}
.x1e{left:515.933322pt;}
.x1f{left:518.973322pt;}
.x1d{left:587.973322pt;}
.x1a{left:594.053322pt;}
.x2{left:603.653322pt;}
.x9{left:665.733333pt;}
.x15{left:670.213333pt;}
.x1{left:697.893322pt;}
}




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