
    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_022591f2e8aac5357a9b0ff9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.251953;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_c653f93356b58b5be43d1ba5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.251953;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f3381acb3ca4463d57f7859e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.974000;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_8db990b5cc2d11a1cb494020.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.111133;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_34ffcbaca1111337dd2b74d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.110533;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_05816a906fdd016c2e1b598b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.110533;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_9d7207ccd453d181d84703c3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.111133;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_2f5af08d731b97bbdacc181e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971000;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_9faa00c1215408e6241db8bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.974000;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_6b167809c8f6d5a48cc064db.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971000;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_cf577af5cc4435bc2c7261bd.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_3e5f530dc3bc973fd0d6095c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.690918;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_130bc531fe25050561fae632.woff2')format("woff");}.fff{font-family:fff;line-height:0.747559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.314400px;}
.lsc{letter-spacing:-0.172200px;}
.ls14{letter-spacing:-0.032400px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.015840px;}
.ls7{letter-spacing:0.051840px;}
.lsa{letter-spacing:0.147000px;}
.ls10{letter-spacing:0.163200px;}
.lsd{letter-spacing:0.317400px;}
.lsb{letter-spacing:0.322560px;}
.ls0{letter-spacing:0.342720px;}
.ls8{letter-spacing:0.417000px;}
.lse{letter-spacing:0.522000px;}
.ls18{letter-spacing:1.318320px;}
.ls9{letter-spacing:2.038320px;}
.ls1{letter-spacing:2.758320px;}
.ls17{letter-spacing:3.478320px;}
.ls4{letter-spacing:4.918320px;}
.ls13{letter-spacing:9.958320px;}
.ls2{letter-spacing:10.678320px;}
.ls1b{letter-spacing:12.118320px;}
.ls3{letter-spacing:12.838320px;}
.ls1c{letter-spacing:15.718320px;}
.ls16{letter-spacing:16.438320px;}
.ls1a{letter-spacing:46.678320px;}
.ls12{letter-spacing:61.866720px;}
.ls19{letter-spacing:85.018320px;}
.ls15{letter-spacing:223.798320px;}
.ls1d{letter-spacing:847.740000px;}
.ls1e{letter-spacing:849.240000px;}
.lsf{letter-spacing:849.360000px;}
.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;}
}
.ws4{word-spacing:-17.884800px;}
.ws5{word-spacing:-16.135200px;}
.ws8{word-spacing:-14.839080px;}
.ws9{word-spacing:-14.684880px;}
.ws7{word-spacing:-14.668680px;}
.wsa{word-spacing:-14.537520px;}
.ws3{word-spacing:-14.521680px;}
.wsb{word-spacing:-14.349480px;}
.ws2{word-spacing:-12.727560px;}
.ws1{word-spacing:-12.310560px;}
.ws0{word-spacing:-11.996160px;}
.ws6{word-spacing:0.000000px;}
._e{margin-left:-2.868480px;}
._4{margin-left:-1.523520px;}
._0{width:1.015920px;}
._3{width:2.250480px;}
._5{width:3.561840px;}
._d{width:5.079600px;}
._14{width:6.215040px;}
._6{width:7.410240px;}
._7{width:8.724960px;}
._1a{width:9.800640px;}
._8{width:11.294640px;}
._15{width:13.147200px;}
._c{width:16.194960px;}
._10{width:17.210880px;}
._20{width:18.525600px;}
._19{width:20.198880px;}
._12{width:21.334320px;}
._28{width:22.649040px;}
._f{width:23.784480px;}
._2c{width:24.979680px;}
._b{width:26.234640px;}
._13{width:27.967680px;}
._17{width:29.521440px;}
._21{width:30.716640px;}
._16{width:32.210640px;}
._29{width:33.468000px;}
._1c{width:34.601040px;}
._1d{width:35.613120px;}
._18{width:37.589040px;}
._1f{width:39.381840px;}
._11{width:40.636800px;}
._a{width:42.549120px;}
._2a{width:43.804080px;}
._25{width:45.178560px;}
._2e{width:47.015760px;}
._27{width:48.465360px;}
._32{width:49.543440px;}
._24{width:58.234320px;}
._9{width:63.584640px;}
._2d{width:67.469040px;}
._1e{width:71.054640px;}
._22{width:80.735760px;}
._23{width:82.050480px;}
._30{width:85.098240px;}
._31{width:86.763600px;}
._33{width:115.934400px;}
._1{width:205.816320px;}
._2f{width:224.599680px;}
._2b{width:725.089440px;}
._1b{width:727.969440px;}
._2{width:730.129440px;}
._26{width:732.289440px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y48{bottom:4.320000px;}
.y50{bottom:4.500000px;}
.y5{bottom:10.260000px;}
.y94{bottom:14.214000px;}
.y46{bottom:14.220000px;}
.y57{bottom:14.400000px;}
.y66{bottom:14.445000px;}
.y87{bottom:24.120000px;}
.y99{bottom:24.294000px;}
.y47{bottom:24.300000px;}
.y72{bottom:24.336000px;}
.y60{bottom:24.345000px;}
.y92{bottom:34.194000px;}
.y56{bottom:34.200000px;}
.y6c{bottom:34.230000px;}
.y65{bottom:34.245000px;}
.y98{bottom:44.094000px;}
.y69{bottom:44.100000px;}
.y5d{bottom:44.145000px;}
.y4d{bottom:44.280000px;}
.y71{bottom:44.310000px;}
.y91{bottom:53.994000px;}
.y89{bottom:54.000000px;}
.y55{bottom:54.180000px;}
.y6b{bottom:54.210000px;}
.y64{bottom:54.225000px;}
.y8e{bottom:63.900000px;}
.y97{bottom:64.074000px;}
.y4b{bottom:64.080000px;}
.y70{bottom:64.110000px;}
.y5c{bottom:64.125000px;}
.y8d{bottom:73.800000px;}
.y90{bottom:73.974000px;}
.y54{bottom:73.980000px;}
.y6a{bottom:74.010000px;}
.y63{bottom:74.025000px;}
.y96{bottom:83.874000px;}
.y4a{bottom:83.880000px;}
.y5b{bottom:83.925000px;}
.y6f{bottom:84.090000px;}
.y104{bottom:90.180000px;}
.y93{bottom:93.774000px;}
.y68{bottom:93.780000px;}
.y62{bottom:93.825000px;}
.y53{bottom:93.960000px;}
.y6d{bottom:93.990000px;}
.y37{bottom:100.440000px;}
.y95{bottom:103.674000px;}
.y73{bottom:103.680000px;}
.y4c{bottom:103.860000px;}
.y6e{bottom:103.890000px;}
.y5f{bottom:103.905000px;}
.ycc{bottom:107.280000px;}
.y103{bottom:111.600000px;}
.y52{bottom:113.760000px;}
.y61{bottom:113.805000px;}
.y36{bottom:119.880000px;}
.y4f{bottom:123.660000px;}
.y59{bottom:123.690000px;}
.y5e{bottom:123.705000px;}
.y9a{bottom:125.460000px;}
.ycb{bottom:126.720000px;}
.y102{bottom:131.040000px;}
.y51{bottom:133.560000px;}
.y35{bottom:139.536000px;}
.y8f{bottom:141.876000px;}
.y4e{bottom:143.640000px;}
.yca{bottom:146.196000px;}
.yb0{bottom:147.636000px;}
.y101{bottom:150.510000px;}
.y34{bottom:158.970000px;}
.yc9{bottom:165.630000px;}
.yaf{bottom:168.510000px;}
.y100{bottom:170.130000px;}
.y33{bottom:178.410000px;}
.yc8{bottom:185.250000px;}
.yae{bottom:189.390000px;}
.yff{bottom:189.570000px;}
.y32{bottom:197.850000px;}
.yc7{bottom:204.690000px;}
.yfe{bottom:209.010000px;}
.yad{bottom:210.270000px;}
.y31{bottom:217.290000px;}
.yc6{bottom:224.130000px;}
.yfd{bottom:228.450000px;}
.yac{bottom:230.970000px;}
.y30{bottom:236.730000px;}
.y67{bottom:239.970000px;}
.yc5{bottom:243.570000px;}
.yfc{bottom:247.890000px;}
.yab{bottom:251.850000px;}
.y2f{bottom:256.170000px;}
.y8c{bottom:261.930000px;}
.yc4{bottom:263.010000px;}
.yfb{bottom:267.330000px;}
.yaa{bottom:272.730000px;}
.y2e{bottom:275.610000px;}
.yc3{bottom:282.450000px;}
.yfa{bottom:286.770000px;}
.ya9{bottom:293.610000px;}
.y2d{bottom:295.230000px;}
.yc2{bottom:301.890000px;}
.yf9{bottom:306.210000px;}
.ya8{bottom:314.490000px;}
.y2c{bottom:314.670000px;}
.yc1{bottom:321.330000px;}
.yf8{bottom:325.830000px;}
.y2b{bottom:334.110000px;}
.ya7{bottom:335.370000px;}
.yc0{bottom:340.770000px;}
.yf7{bottom:345.270000px;}
.y2a{bottom:353.550000px;}
.ya6{bottom:356.250000px;}
.ybf{bottom:360.390000px;}
.yf6{bottom:364.710000px;}
.y29{bottom:372.990000px;}
.ya5{bottom:377.130000px;}
.y5a{bottom:379.830000px;}
.y8b{bottom:381.810000px;}
.yf5{bottom:384.150000px;}
.y28{bottom:392.475000px;}
.ya4{bottom:398.055000px;}
.ybe{bottom:399.315000px;}
.yf4{bottom:403.635000px;}
.y27{bottom:411.915000px;}
.ybd{bottom:418.755000px;}
.ya3{bottom:418.935000px;}
.yf3{bottom:423.075000px;}
.y26{bottom:431.355000px;}
.ybc{bottom:438.195000px;}
.ya2{bottom:439.815000px;}
.yf2{bottom:442.515000px;}
.y25{bottom:450.795000px;}
.ybb{bottom:457.635000px;}
.ya1{bottom:460.695000px;}
.yf1{bottom:461.955000px;}
.y24{bottom:470.415000px;}
.yba{bottom:477.075000px;}
.yf0{bottom:481.395000px;}
.ya0{bottom:481.575000px;}
.y23{bottom:489.855000px;}
.yb9{bottom:497.595000px;}
.yef{bottom:501.015000px;}
.y9f{bottom:502.455000px;}
.y22{bottom:509.295000px;}
.yb8{bottom:513.975000px;}
.y58{bottom:519.735000px;}
.yee{bottom:520.455000px;}
.y8a{bottom:521.715000px;}
.y9e{bottom:523.335000px;}
.y21{bottom:528.735000px;}
.yed{bottom:539.895000px;}
.y9d{bottom:544.215000px;}
.y20{bottom:548.175000px;}
.yec{bottom:559.335000px;}
.y9c{bottom:564.915000px;}
.y1f{bottom:567.615000px;}
.yeb{bottom:578.775000px;}
.y9b{bottom:581.655000px;}
.y1e{bottom:587.055000px;}
.yb7{bottom:594.255000px;}
.yea{bottom:598.215000px;}
.y1d{bottom:606.495000px;}
.ye9{bottom:617.655000px;}
.y1c{bottom:625.935000px;}
.ye8{bottom:637.095000px;}
.y88{bottom:641.805000px;}
.y1b{bottom:645.585000px;}
.ye7{bottom:656.565000px;}
.y49{bottom:659.625000px;}
.y1a{bottom:665.205000px;}
.yb6{bottom:674.565000px;}
.ye6{bottom:676.185000px;}
.y19{bottom:685.005000px;}
.ye5{bottom:695.625000px;}
.y18{bottom:704.985000px;}
.ye4{bottom:715.065000px;}
.y17{bottom:724.785000px;}
.ye3{bottom:734.505000px;}
.y16{bottom:744.765000px;}
.ye2{bottom:753.945000px;}
.yb5{bottom:754.845000px;}
.y86{bottom:761.865000px;}
.y15{bottom:764.565000px;}
.ye1{bottom:773.385000px;}
.y14{bottom:784.365000px;}
.ye0{bottom:792.825000px;}
.y13{bottom:804.345000px;}
.y85{bottom:807.585000px;}
.ydf{bottom:812.265000px;}
.y45{bottom:819.465000px;}
.y12{bottom:824.145000px;}
.y10c{bottom:824.505000px;}
.y84{bottom:828.285000px;}
.yde{bottom:831.885000px;}
.y11{bottom:844.125000px;}
.y10b{bottom:844.485000px;}
.y83{bottom:849.165000px;}
.ydd{bottom:851.325000px;}
.yb4{bottom:854.925000px;}
.y10{bottom:863.925000px;}
.y44{bottom:864.285000px;}
.y82{bottom:870.045000px;}
.ydc{bottom:870.765000px;}
.yf{bottom:883.905000px;}
.y43{bottom:884.265000px;}
.ydb{bottom:890.205000px;}
.y81{bottom:890.925000px;}
.ye{bottom:903.750000px;}
.y42{bottom:904.110000px;}
.yda{bottom:909.690000px;}
.y80{bottom:911.850000px;}
.yd{bottom:923.550000px;}
.y41{bottom:924.090000px;}
.yd9{bottom:929.130000px;}
.y7f{bottom:932.730000px;}
.yb3{bottom:935.250000px;}
.y40{bottom:943.890000px;}
.yc{bottom:944.610000px;}
.yd8{bottom:948.570000px;}
.y7e{bottom:953.610000px;}
.y3f{bottom:963.690000px;}
.yd7{bottom:968.010000px;}
.yb{bottom:970.530000px;}
.y7d{bottom:974.490000px;}
.y3e{bottom:983.670000px;}
.yd6{bottom:987.450000px;}
.y7c{bottom:995.370000px;}
.ya{bottom:996.270000px;}
.y3d{bottom:1003.470000px;}
.yd5{bottom:1007.070000px;}
.yb2{bottom:1015.530000px;}
.y7b{bottom:1016.250000px;}
.y9{bottom:1021.470000px;}
.y3c{bottom:1023.450000px;}
.yd4{bottom:1026.510000px;}
.y7a{bottom:1037.130000px;}
.y8{bottom:1043.250000px;}
.y10a{bottom:1044.510000px;}
.yd3{bottom:1045.950000px;}
.y79{bottom:1058.010000px;}
.y3b{bottom:1063.050000px;}
.y7{bottom:1065.030000px;}
.yd2{bottom:1065.390000px;}
.y109{bottom:1070.250000px;}
.y78{bottom:1078.890000px;}
.y3a{bottom:1083.030000px;}
.yd1{bottom:1084.830000px;}
.y6{bottom:1086.630000px;}
.y108{bottom:1095.270000px;}
.y77{bottom:1099.770000px;}
.y39{bottom:1102.830000px;}
.yd0{bottom:1104.270000px;}
.y4{bottom:1106.610000px;}
.yb1{bottom:1115.610000px;}
.y107{bottom:1117.230000px;}
.y76{bottom:1120.650000px;}
.y38{bottom:1122.810000px;}
.ycf{bottom:1123.710000px;}
.y106{bottom:1139.010000px;}
.y75{bottom:1141.530000px;}
.y3{bottom:1142.610000px;}
.yce{bottom:1143.150000px;}
.y105{bottom:1161.000000px;}
.y74{bottom:1162.440000px;}
.y2{bottom:1162.620000px;}
.ycd{bottom:1162.800000px;}
.y1{bottom:1194.120000px;}
.h11{height:19.800000px;}
.h4{height:31.680000px;}
.hf{height:39.600000px;}
.ha{height:39.780000px;}
.h3{height:45.537120px;}
.h8{height:52.656528px;}
.h9{height:53.517072px;}
.h5{height:58.366272px;}
.h6{height:59.320128px;}
.h2{height:59.439023px;}
.h7{height:69.636672px;}
.h13{height:79.560000px;}
.h14{height:79.596000px;}
.h12{height:99.360000px;}
.h10{height:119.160000px;}
.he{height:119.376000px;}
.hd{height:139.140000px;}
.hc{height:139.176000px;}
.hb{height:159.120000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:50.400000px;}
.w5{width:135.756000px;}
.wb{width:148.176000px;}
.w9{width:151.770000px;}
.wd{width:179.670000px;}
.w6{width:181.470000px;}
.w4{width:190.290000px;}
.w7{width:190.650000px;}
.wa{width:197.310000px;}
.w8{width:211.530000px;}
.wc{width:222.150000px;}
.we{width:233.355000px;}
.wf{width:307.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x1b{left:9.900000px;}
.x2a{left:10.980000px;}
.x1d{left:12.240000px;}
.x2e{left:14.040000px;}
.x18{left:15.336000px;}
.x24{left:17.100000px;}
.x1a{left:18.360000px;}
.x25{left:19.440000px;}
.x22{left:21.060000px;}
.x1f{left:23.040000px;}
.x36{left:24.120000px;}
.x17{left:25.920000px;}
.x21{left:27.396000px;}
.x27{left:28.836000px;}
.x2c{left:31.860000px;}
.x28{left:32.940000px;}
.x1e{left:34.380000px;}
.x2d{left:36.036000px;}
.x23{left:38.520000px;}
.x19{left:40.176000px;}
.x4{left:42.300000px;}
.x35{left:43.596000px;}
.x15{left:47.160000px;}
.x26{left:49.680000px;}
.x2b{left:50.940000px;}
.x12{left:53.100000px;}
.x14{left:55.980000px;}
.x32{left:61.245000px;}
.x2f{left:66.990000px;}
.x38{left:68.265000px;}
.x20{left:71.865000px;}
.x1c{left:77.625000px;}
.x37{left:79.965000px;}
.x29{left:81.570000px;}
.x3a{left:83.205000px;}
.x1{left:84.959987px;}
.x3f{left:86.805000px;}
.x39{left:91.305000px;}
.x44{left:97.380000px;}
.x43{left:100.665000px;}
.xc{left:106.235987px;}
.x30{left:113.795987px;}
.x41{left:119.520000px;}
.xa{left:137.015987px;}
.x10{left:139.895987px;}
.x42{left:141.120000px;}
.x48{left:151.409987px;}
.x49{left:161.849987px;}
.x11{left:222.330000px;}
.x3d{left:234.749987px;}
.x31{left:238.350000px;}
.x9{left:244.469987px;}
.x8{left:263.909987px;}
.x3e{left:266.250000px;}
.x47{left:294.914987px;}
.xb{left:295.994987px;}
.x3c{left:317.594987px;}
.x3{left:326.235000px;}
.x7{left:333.074987px;}
.x5{left:376.635000px;}
.x46{left:392.474987px;}
.x13{left:404.535000px;}
.x33{left:436.395000px;}
.x2{left:446.474987px;}
.xd{left:473.144987px;}
.xe{left:494.384987px;}
.x40{left:500.325000px;}
.x34{left:585.285000px;}
.x16{left:595.905000px;}
.x45{left:651.164987px;}
.xf{left:737.249987px;}
.x3b{left:789.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.279467pt;}
.lsc{letter-spacing:-0.153067pt;}
.ls14{letter-spacing:-0.028800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.014080pt;}
.ls7{letter-spacing:0.046080pt;}
.lsa{letter-spacing:0.130667pt;}
.ls10{letter-spacing:0.145067pt;}
.lsd{letter-spacing:0.282133pt;}
.lsb{letter-spacing:0.286720pt;}
.ls0{letter-spacing:0.304640pt;}
.ls8{letter-spacing:0.370667pt;}
.lse{letter-spacing:0.464000pt;}
.ls18{letter-spacing:1.171840pt;}
.ls9{letter-spacing:1.811840pt;}
.ls1{letter-spacing:2.451840pt;}
.ls17{letter-spacing:3.091840pt;}
.ls4{letter-spacing:4.371840pt;}
.ls13{letter-spacing:8.851840pt;}
.ls2{letter-spacing:9.491840pt;}
.ls1b{letter-spacing:10.771840pt;}
.ls3{letter-spacing:11.411840pt;}
.ls1c{letter-spacing:13.971840pt;}
.ls16{letter-spacing:14.611840pt;}
.ls1a{letter-spacing:41.491840pt;}
.ls12{letter-spacing:54.992640pt;}
.ls19{letter-spacing:75.571840pt;}
.ls15{letter-spacing:198.931840pt;}
.ls1d{letter-spacing:753.546667pt;}
.ls1e{letter-spacing:754.880000pt;}
.lsf{letter-spacing:754.986667pt;}
.ws4{word-spacing:-15.897600pt;}
.ws5{word-spacing:-14.342400pt;}
.ws8{word-spacing:-13.190293pt;}
.ws9{word-spacing:-13.053227pt;}
.ws7{word-spacing:-13.038827pt;}
.wsa{word-spacing:-12.922240pt;}
.ws3{word-spacing:-12.908160pt;}
.wsb{word-spacing:-12.755093pt;}
.ws2{word-spacing:-11.313387pt;}
.ws1{word-spacing:-10.942720pt;}
.ws0{word-spacing:-10.663253pt;}
.ws6{word-spacing:0.000000pt;}
._e{margin-left:-2.549760pt;}
._4{margin-left:-1.354240pt;}
._0{width:0.903040pt;}
._3{width:2.000427pt;}
._5{width:3.166080pt;}
._d{width:4.515200pt;}
._14{width:5.524480pt;}
._6{width:6.586880pt;}
._7{width:7.755520pt;}
._1a{width:8.711680pt;}
._8{width:10.039680pt;}
._15{width:11.686400pt;}
._c{width:14.395520pt;}
._10{width:15.298560pt;}
._20{width:16.467200pt;}
._19{width:17.954560pt;}
._12{width:18.963840pt;}
._28{width:20.132480pt;}
._f{width:21.141760pt;}
._2c{width:22.204160pt;}
._b{width:23.319680pt;}
._13{width:24.860160pt;}
._17{width:26.241280pt;}
._21{width:27.303680pt;}
._16{width:28.631680pt;}
._29{width:29.749333pt;}
._1c{width:30.756480pt;}
._1d{width:31.656107pt;}
._18{width:33.412480pt;}
._1f{width:35.006080pt;}
._11{width:36.121600pt;}
._a{width:37.821440pt;}
._2a{width:38.936960pt;}
._25{width:40.158720pt;}
._2e{width:41.791787pt;}
._27{width:43.080320pt;}
._32{width:44.038613pt;}
._24{width:51.763840pt;}
._9{width:56.519680pt;}
._2d{width:59.972480pt;}
._1e{width:63.159680pt;}
._22{width:71.765120pt;}
._23{width:72.933760pt;}
._30{width:75.642880pt;}
._31{width:77.123200pt;}
._33{width:103.052800pt;}
._1{width:182.947840pt;}
._2f{width:199.644160pt;}
._2b{width:644.523947pt;}
._1b{width:647.083947pt;}
._2{width:649.003947pt;}
._26{width:650.923947pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:3.840000pt;}
.y50{bottom:4.000000pt;}
.y5{bottom:9.120000pt;}
.y94{bottom:12.634667pt;}
.y46{bottom:12.640000pt;}
.y57{bottom:12.800000pt;}
.y66{bottom:12.840000pt;}
.y87{bottom:21.440000pt;}
.y99{bottom:21.594667pt;}
.y47{bottom:21.600000pt;}
.y72{bottom:21.632000pt;}
.y60{bottom:21.640000pt;}
.y92{bottom:30.394667pt;}
.y56{bottom:30.400000pt;}
.y6c{bottom:30.426667pt;}
.y65{bottom:30.440000pt;}
.y98{bottom:39.194667pt;}
.y69{bottom:39.200000pt;}
.y5d{bottom:39.240000pt;}
.y4d{bottom:39.360000pt;}
.y71{bottom:39.386667pt;}
.y91{bottom:47.994667pt;}
.y89{bottom:48.000000pt;}
.y55{bottom:48.160000pt;}
.y6b{bottom:48.186667pt;}
.y64{bottom:48.200000pt;}
.y8e{bottom:56.800000pt;}
.y97{bottom:56.954667pt;}
.y4b{bottom:56.960000pt;}
.y70{bottom:56.986667pt;}
.y5c{bottom:57.000000pt;}
.y8d{bottom:65.600000pt;}
.y90{bottom:65.754667pt;}
.y54{bottom:65.760000pt;}
.y6a{bottom:65.786667pt;}
.y63{bottom:65.800000pt;}
.y96{bottom:74.554667pt;}
.y4a{bottom:74.560000pt;}
.y5b{bottom:74.600000pt;}
.y6f{bottom:74.746667pt;}
.y104{bottom:80.160000pt;}
.y93{bottom:83.354667pt;}
.y68{bottom:83.360000pt;}
.y62{bottom:83.400000pt;}
.y53{bottom:83.520000pt;}
.y6d{bottom:83.546667pt;}
.y37{bottom:89.280000pt;}
.y95{bottom:92.154667pt;}
.y73{bottom:92.160000pt;}
.y4c{bottom:92.320000pt;}
.y6e{bottom:92.346667pt;}
.y5f{bottom:92.360000pt;}
.ycc{bottom:95.360000pt;}
.y103{bottom:99.200000pt;}
.y52{bottom:101.120000pt;}
.y61{bottom:101.160000pt;}
.y36{bottom:106.560000pt;}
.y4f{bottom:109.920000pt;}
.y59{bottom:109.946667pt;}
.y5e{bottom:109.960000pt;}
.y9a{bottom:111.520000pt;}
.ycb{bottom:112.640000pt;}
.y102{bottom:116.480000pt;}
.y51{bottom:118.720000pt;}
.y35{bottom:124.032000pt;}
.y8f{bottom:126.112000pt;}
.y4e{bottom:127.680000pt;}
.yca{bottom:129.952000pt;}
.yb0{bottom:131.232000pt;}
.y101{bottom:133.786667pt;}
.y34{bottom:141.306667pt;}
.yc9{bottom:147.226667pt;}
.yaf{bottom:149.786667pt;}
.y100{bottom:151.226667pt;}
.y33{bottom:158.586667pt;}
.yc8{bottom:164.666667pt;}
.yae{bottom:168.346667pt;}
.yff{bottom:168.506667pt;}
.y32{bottom:175.866667pt;}
.yc7{bottom:181.946667pt;}
.yfe{bottom:185.786667pt;}
.yad{bottom:186.906667pt;}
.y31{bottom:193.146667pt;}
.yc6{bottom:199.226667pt;}
.yfd{bottom:203.066667pt;}
.yac{bottom:205.306667pt;}
.y30{bottom:210.426667pt;}
.y67{bottom:213.306667pt;}
.yc5{bottom:216.506667pt;}
.yfc{bottom:220.346667pt;}
.yab{bottom:223.866667pt;}
.y2f{bottom:227.706667pt;}
.y8c{bottom:232.826667pt;}
.yc4{bottom:233.786667pt;}
.yfb{bottom:237.626667pt;}
.yaa{bottom:242.426667pt;}
.y2e{bottom:244.986667pt;}
.yc3{bottom:251.066667pt;}
.yfa{bottom:254.906667pt;}
.ya9{bottom:260.986667pt;}
.y2d{bottom:262.426667pt;}
.yc2{bottom:268.346667pt;}
.yf9{bottom:272.186667pt;}
.ya8{bottom:279.546667pt;}
.y2c{bottom:279.706667pt;}
.yc1{bottom:285.626667pt;}
.yf8{bottom:289.626667pt;}
.y2b{bottom:296.986667pt;}
.ya7{bottom:298.106667pt;}
.yc0{bottom:302.906667pt;}
.yf7{bottom:306.906667pt;}
.y2a{bottom:314.266667pt;}
.ya6{bottom:316.666667pt;}
.ybf{bottom:320.346667pt;}
.yf6{bottom:324.186667pt;}
.y29{bottom:331.546667pt;}
.ya5{bottom:335.226667pt;}
.y5a{bottom:337.626667pt;}
.y8b{bottom:339.386667pt;}
.yf5{bottom:341.466667pt;}
.y28{bottom:348.866667pt;}
.ya4{bottom:353.826667pt;}
.ybe{bottom:354.946667pt;}
.yf4{bottom:358.786667pt;}
.y27{bottom:366.146667pt;}
.ybd{bottom:372.226667pt;}
.ya3{bottom:372.386667pt;}
.yf3{bottom:376.066667pt;}
.y26{bottom:383.426667pt;}
.ybc{bottom:389.506667pt;}
.ya2{bottom:390.946667pt;}
.yf2{bottom:393.346667pt;}
.y25{bottom:400.706667pt;}
.ybb{bottom:406.786667pt;}
.ya1{bottom:409.506667pt;}
.yf1{bottom:410.626667pt;}
.y24{bottom:418.146667pt;}
.yba{bottom:424.066667pt;}
.yf0{bottom:427.906667pt;}
.ya0{bottom:428.066667pt;}
.y23{bottom:435.426667pt;}
.yb9{bottom:442.306667pt;}
.yef{bottom:445.346667pt;}
.y9f{bottom:446.626667pt;}
.y22{bottom:452.706667pt;}
.yb8{bottom:456.866667pt;}
.y58{bottom:461.986667pt;}
.yee{bottom:462.626667pt;}
.y8a{bottom:463.746667pt;}
.y9e{bottom:465.186667pt;}
.y21{bottom:469.986667pt;}
.yed{bottom:479.906667pt;}
.y9d{bottom:483.746667pt;}
.y20{bottom:487.266667pt;}
.yec{bottom:497.186667pt;}
.y9c{bottom:502.146667pt;}
.y1f{bottom:504.546667pt;}
.yeb{bottom:514.466667pt;}
.y9b{bottom:517.026667pt;}
.y1e{bottom:521.826667pt;}
.yb7{bottom:528.226667pt;}
.yea{bottom:531.746667pt;}
.y1d{bottom:539.106667pt;}
.ye9{bottom:549.026667pt;}
.y1c{bottom:556.386667pt;}
.ye8{bottom:566.306667pt;}
.y88{bottom:570.493333pt;}
.y1b{bottom:573.853333pt;}
.ye7{bottom:583.613333pt;}
.y49{bottom:586.333333pt;}
.y1a{bottom:591.293333pt;}
.yb6{bottom:599.613333pt;}
.ye6{bottom:601.053333pt;}
.y19{bottom:608.893333pt;}
.ye5{bottom:618.333333pt;}
.y18{bottom:626.653333pt;}
.ye4{bottom:635.613333pt;}
.y17{bottom:644.253333pt;}
.ye3{bottom:652.893333pt;}
.y16{bottom:662.013333pt;}
.ye2{bottom:670.173333pt;}
.yb5{bottom:670.973333pt;}
.y86{bottom:677.213333pt;}
.y15{bottom:679.613333pt;}
.ye1{bottom:687.453333pt;}
.y14{bottom:697.213333pt;}
.ye0{bottom:704.733333pt;}
.y13{bottom:714.973333pt;}
.y85{bottom:717.853333pt;}
.ydf{bottom:722.013333pt;}
.y45{bottom:728.413333pt;}
.y12{bottom:732.573333pt;}
.y10c{bottom:732.893333pt;}
.y84{bottom:736.253333pt;}
.yde{bottom:739.453333pt;}
.y11{bottom:750.333333pt;}
.y10b{bottom:750.653333pt;}
.y83{bottom:754.813333pt;}
.ydd{bottom:756.733333pt;}
.yb4{bottom:759.933333pt;}
.y10{bottom:767.933333pt;}
.y44{bottom:768.253333pt;}
.y82{bottom:773.373333pt;}
.ydc{bottom:774.013333pt;}
.yf{bottom:785.693333pt;}
.y43{bottom:786.013333pt;}
.ydb{bottom:791.293333pt;}
.y81{bottom:791.933333pt;}
.ye{bottom:803.333333pt;}
.y42{bottom:803.653333pt;}
.yda{bottom:808.613333pt;}
.y80{bottom:810.533333pt;}
.yd{bottom:820.933333pt;}
.y41{bottom:821.413333pt;}
.yd9{bottom:825.893333pt;}
.y7f{bottom:829.093333pt;}
.yb3{bottom:831.333333pt;}
.y40{bottom:839.013333pt;}
.yc{bottom:839.653333pt;}
.yd8{bottom:843.173333pt;}
.y7e{bottom:847.653333pt;}
.y3f{bottom:856.613333pt;}
.yd7{bottom:860.453333pt;}
.yb{bottom:862.693333pt;}
.y7d{bottom:866.213333pt;}
.y3e{bottom:874.373333pt;}
.yd6{bottom:877.733333pt;}
.y7c{bottom:884.773333pt;}
.ya{bottom:885.573333pt;}
.y3d{bottom:891.973333pt;}
.yd5{bottom:895.173333pt;}
.yb2{bottom:902.693333pt;}
.y7b{bottom:903.333333pt;}
.y9{bottom:907.973333pt;}
.y3c{bottom:909.733333pt;}
.yd4{bottom:912.453333pt;}
.y7a{bottom:921.893333pt;}
.y8{bottom:927.333333pt;}
.y10a{bottom:928.453333pt;}
.yd3{bottom:929.733333pt;}
.y79{bottom:940.453333pt;}
.y3b{bottom:944.933333pt;}
.y7{bottom:946.693333pt;}
.yd2{bottom:947.013333pt;}
.y109{bottom:951.333333pt;}
.y78{bottom:959.013333pt;}
.y3a{bottom:962.693333pt;}
.yd1{bottom:964.293333pt;}
.y6{bottom:965.893333pt;}
.y108{bottom:973.573333pt;}
.y77{bottom:977.573333pt;}
.y39{bottom:980.293333pt;}
.yd0{bottom:981.573333pt;}
.y4{bottom:983.653333pt;}
.yb1{bottom:991.653333pt;}
.y107{bottom:993.093333pt;}
.y76{bottom:996.133333pt;}
.y38{bottom:998.053333pt;}
.ycf{bottom:998.853333pt;}
.y106{bottom:1012.453333pt;}
.y75{bottom:1014.693333pt;}
.y3{bottom:1015.653333pt;}
.yce{bottom:1016.133333pt;}
.y105{bottom:1032.000000pt;}
.y74{bottom:1033.280000pt;}
.y2{bottom:1033.440000pt;}
.ycd{bottom:1033.600000pt;}
.y1{bottom:1061.440000pt;}
.h11{height:17.600000pt;}
.h4{height:28.160000pt;}
.hf{height:35.200000pt;}
.ha{height:35.360000pt;}
.h3{height:40.477440pt;}
.h8{height:46.805803pt;}
.h9{height:47.570731pt;}
.h5{height:51.881131pt;}
.h6{height:52.729003pt;}
.h2{height:52.834688pt;}
.h7{height:61.899264pt;}
.h13{height:70.720000pt;}
.h14{height:70.752000pt;}
.h12{height:88.320000pt;}
.h10{height:105.920000pt;}
.he{height:106.112000pt;}
.hd{height:123.680000pt;}
.hc{height:123.712000pt;}
.hb{height:141.440000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:44.800000pt;}
.w5{width:120.672000pt;}
.wb{width:131.712000pt;}
.w9{width:134.906667pt;}
.wd{width:159.706667pt;}
.w6{width:161.306667pt;}
.w4{width:169.146667pt;}
.w7{width:169.466667pt;}
.wa{width:175.386667pt;}
.w8{width:188.026667pt;}
.wc{width:197.466667pt;}
.we{width:207.426667pt;}
.wf{width:272.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x1b{left:8.800000pt;}
.x2a{left:9.760000pt;}
.x1d{left:10.880000pt;}
.x2e{left:12.480000pt;}
.x18{left:13.632000pt;}
.x24{left:15.200000pt;}
.x1a{left:16.320000pt;}
.x25{left:17.280000pt;}
.x22{left:18.720000pt;}
.x1f{left:20.480000pt;}
.x36{left:21.440000pt;}
.x17{left:23.040000pt;}
.x21{left:24.352000pt;}
.x27{left:25.632000pt;}
.x2c{left:28.320000pt;}
.x28{left:29.280000pt;}
.x1e{left:30.560000pt;}
.x2d{left:32.032000pt;}
.x23{left:34.240000pt;}
.x19{left:35.712000pt;}
.x4{left:37.600000pt;}
.x35{left:38.752000pt;}
.x15{left:41.920000pt;}
.x26{left:44.160000pt;}
.x2b{left:45.280000pt;}
.x12{left:47.200000pt;}
.x14{left:49.760000pt;}
.x32{left:54.440000pt;}
.x2f{left:59.546667pt;}
.x38{left:60.680000pt;}
.x20{left:63.880000pt;}
.x1c{left:69.000000pt;}
.x37{left:71.080000pt;}
.x29{left:72.506667pt;}
.x3a{left:73.960000pt;}
.x1{left:75.519988pt;}
.x3f{left:77.160000pt;}
.x39{left:81.160000pt;}
.x44{left:86.560000pt;}
.x43{left:89.480000pt;}
.xc{left:94.431988pt;}
.x30{left:101.151988pt;}
.x41{left:106.240000pt;}
.xa{left:121.791988pt;}
.x10{left:124.351988pt;}
.x42{left:125.440000pt;}
.x48{left:134.586655pt;}
.x49{left:143.866655pt;}
.x11{left:197.626667pt;}
.x3d{left:208.666655pt;}
.x31{left:211.866667pt;}
.x9{left:217.306655pt;}
.x8{left:234.586655pt;}
.x3e{left:236.666667pt;}
.x47{left:262.146655pt;}
.xb{left:263.106655pt;}
.x3c{left:282.306655pt;}
.x3{left:289.986667pt;}
.x7{left:296.066655pt;}
.x5{left:334.786667pt;}
.x46{left:348.866655pt;}
.x13{left:359.586667pt;}
.x33{left:387.906667pt;}
.x2{left:396.866655pt;}
.xd{left:420.573322pt;}
.xe{left:439.453322pt;}
.x40{left:444.733333pt;}
.x34{left:520.253333pt;}
.x16{left:529.693333pt;}
.x45{left:578.813322pt;}
.xf{left:655.333322pt;}
.x3b{left:702.213322pt;}
}




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