
    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_8c8d4bdebf928cddab959e41.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_d79c3bf12606e8e596e350ec.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_b01726368318aba182d856a8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.114746;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_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff4{font-family:ff4;line-height:0.729492;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_7633486050911b49073fc82e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1ffb7ef7ac6d2d389a5081d6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_08b3cf20d62458a23d4870ef.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8009ff54fbe7c7716229370f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_825b1ec1c046a60dac13e4d3.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e7990281e4c5ff45332982fe.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ebaa8aad1e002d2cae97df56.woff')format("woff");}.ffb{font-family:ffb;line-height:1.064941;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_c1f10c1f5c631ae87d2dbf7f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.114746;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_ea1b04925f2bd05cc31def54.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_79ad4d4329f01f5426aab456.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_bbec449eefd20a86bfb05496.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_754610a4c454736db913dba8.woff')format("woff");}.ff10{font-family:ff10;line-height:1.040039;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:ff11;src:url('chunks/assets/font_40cc4f554413c19d5dc98956.woff')format("woff");}.ff11{font-family:ff11;line-height:1.401855;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:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls3{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.085200px;}
.ls6{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012960px;}
.lse{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.132600px;}
.ls12{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.187200px;}
.ls15{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.241800px;}
.ls13{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.708000px;}
.ls14{letter-spacing:0.720000px;}
.ls16{letter-spacing:4.320000px;}
.lsc{letter-spacing:7.200000px;}
.lsf{letter-spacing:8.640000px;}
.ls10{letter-spacing:9.360000px;}
.ls7{letter-spacing:14.400000px;}
.ls8{letter-spacing:21.600000px;}
.lsb{letter-spacing:27.360000px;}
.ls11{letter-spacing:33.960000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.532800px;}
.wsb{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsd{word-spacing:-16.692600px;}
.wsc{word-spacing:-16.560000px;}
.ws3{word-spacing:-13.147200px;}
.ws5{word-spacing:-12.186000px;}
.ws4{word-spacing:-10.854600px;}
.ws0{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.527600px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-2.021040px;}
._0{margin-left:-1.013040px;}
._1{width:1.149120px;}
._2{width:2.977680px;}
._8{width:4.654320px;}
._e{width:5.904000px;}
._f{width:7.200000px;}
._10{width:8.712000px;}
._6{width:9.930960px;}
._5{width:11.309040px;}
._c{width:12.312000px;}
._b{width:13.506960px;}
._16{width:14.567040px;}
._24{width:15.600960px;}
._d{width:16.632000px;}
._11{width:19.301760px;}
._19{width:20.571840px;}
._17{width:22.248000px;}
._18{width:23.765040px;}
._3{width:24.768000px;}
._4{width:25.783920px;}
._13{width:27.424080px;}
._9{width:28.584000px;}
._a{width:30.112560px;}
._1a{width:31.543920px;}
._25{width:32.728080px;}
._14{width:33.775920px;}
._15{width:35.287920px;}
._1b{width:36.720000px;}
._26{width:38.146800px;}
._1e{width:39.168000px;}
._1f{width:40.320000px;}
._1c{width:42.120000px;}
._1d{width:43.148880px;}
._27{width:44.195040px;}
._21{width:46.320000px;}
._20{width:47.496000px;}
._23{width:48.576000px;}
._22{width:49.836000px;}
._12{width:1516.025760px;}
.fc9{color:rgb(0,0,255);}
.fc8{color:rgb(79,129,189);}
.fc7{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(238,78,60);}
.fc1{color:rgb(255,192,0);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs5{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs9{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y35{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:0.540000px;}
.y2f{bottom:1.230000px;}
.y2d{bottom:3.030000px;}
.y3{bottom:4.500000px;}
.y43{bottom:4.680000px;}
.y104{bottom:6.825000px;}
.yed{bottom:6.840000px;}
.y109{bottom:7.005000px;}
.yf3{bottom:7.020000px;}
.yf1{bottom:11.700000px;}
.y137{bottom:11.865000px;}
.y11f{bottom:11.880000px;}
.yf0{bottom:16.560000px;}
.y136{bottom:16.725000px;}
.y11e{bottom:16.740000px;}
.y108{bottom:17.805000px;}
.y3d{bottom:19.980000px;}
.y3f{bottom:20.160000px;}
.y6f{bottom:22.680000px;}
.y42{bottom:22.860000px;}
.y2{bottom:24.660000px;}
.y10b{bottom:28.605000px;}
.y11b{bottom:28.620000px;}
.yec{bottom:28.665000px;}
.y107{bottom:28.785000px;}
.y103{bottom:28.830000px;}
.y40{bottom:34.560000px;}
.y3e{bottom:34.740000px;}
.y41{bottom:36.900000px;}
.y32{bottom:41.040000px;}
.y38{bottom:42.660000px;}
.y1{bottom:42.840000px;}
.y36{bottom:70.020000px;}
.y3c{bottom:91.440000px;}
.y9b{bottom:114.840000px;}
.y114{bottom:115.560000px;}
.yc9{bottom:118.980000px;}
.ya6{bottom:124.020000px;}
.y2b{bottom:124.920000px;}
.y6e{bottom:131.400000px;}
.ye7{bottom:133.380000px;}
.y13d{bottom:134.820000px;}
.y9a{bottom:138.600000px;}
.y113{bottom:139.320000px;}
.yc8{bottom:142.740000px;}
.y2a{bottom:145.260000px;}
.ya5{bottom:147.960000px;}
.y6d{bottom:155.160000px;}
.ye6{bottom:157.140000px;}
.y13c{bottom:158.580000px;}
.y99{bottom:162.360000px;}
.y112{bottom:163.080000px;}
.y29{bottom:165.420000px;}
.yc7{bottom:166.500000px;}
.ya4{bottom:171.720000px;}
.y6c{bottom:178.920000px;}
.ye5{bottom:181.080000px;}
.y13b{bottom:182.520000px;}
.y28{bottom:185.580000px;}
.y98{bottom:186.120000px;}
.y111{bottom:186.840000px;}
.yc6{bottom:190.260000px;}
.ya3{bottom:195.480000px;}
.y6b{bottom:202.680000px;}
.y13a{bottom:206.310000px;}
.y27{bottom:207.210000px;}
.y97{bottom:210.090000px;}
.y110{bottom:210.810000px;}
.ye4{bottom:211.710000px;}
.ya2{bottom:219.270000px;}
.yc5{bottom:221.070000px;}
.y6a{bottom:226.650000px;}
.y139{bottom:230.070000px;}
.y26{bottom:231.150000px;}
.y96{bottom:233.850000px;}
.y10f{bottom:234.570000px;}
.ye3{bottom:235.830000px;}
.ya1{bottom:243.210000px;}
.yc4{bottom:245.190000px;}
.y138{bottom:247.185000px;}
.y69{bottom:250.410000px;}
.y25{bottom:254.910000px;}
.y95{bottom:257.610000px;}
.y10e{bottom:258.330000px;}
.ye2{bottom:259.770000px;}
.ya0{bottom:266.970000px;}
.yc3{bottom:268.950000px;}
.y135{bottom:268.965000px;}
.y68{bottom:274.170000px;}
.y94{bottom:281.370000px;}
.y10d{bottom:282.090000px;}
.ye1{bottom:283.530000px;}
.y24{bottom:288.210000px;}
.y9f{bottom:290.730000px;}
.yc2{bottom:292.890000px;}
.y67{bottom:297.930000px;}
.y134{bottom:301.365000px;}
.y93{bottom:305.310000px;}
.y10c{bottom:306.030000px;}
.ye0{bottom:307.290000px;}
.y9e{bottom:314.490000px;}
.y23{bottom:315.570000px;}
.yc1{bottom:316.650000px;}
.y66{bottom:321.870000px;}
.y10a{bottom:323.145000px;}
.y133{bottom:324.045000px;}
.y92{bottom:329.070000px;}
.ydf{bottom:331.050000px;}
.y141{bottom:338.430000px;}
.y22{bottom:339.510000px;}
.yc0{bottom:340.410000px;}
.y9d{bottom:345.270000px;}
.y65{bottom:345.630000px;}
.y91{bottom:352.830000px;}
.yde{bottom:354.990000px;}
.y21{bottom:363.270000px;}
.ybf{bottom:364.170000px;}
.y106{bottom:366.705000px;}
.y140{bottom:369.030000px;}
.y64{bottom:369.390000px;}
.y132{bottom:375.870000px;}
.y90{bottom:376.590000px;}
.ydd{bottom:378.750000px;}
.y20{bottom:387.030000px;}
.ybe{bottom:388.110000px;}
.y63{bottom:393.150000px;}
.y131{bottom:399.270000px;}
.y8f{bottom:400.530000px;}
.ydc{bottom:402.510000px;}
.y1f{bottom:410.790000px;}
.y105{bottom:411.165000px;}
.ybd{bottom:411.870000px;}
.y62{bottom:417.090000px;}
.y130{bottom:423.390000px;}
.y8e{bottom:424.290000px;}
.ydb{bottom:426.270000px;}
.y102{bottom:433.665000px;}
.y1e{bottom:434.730000px;}
.ybc{bottom:435.630000px;}
.y61{bottom:440.895000px;}
.y12f{bottom:447.195000px;}
.y8d{bottom:448.095000px;}
.yda{bottom:450.255000px;}
.y1d{bottom:458.535000px;}
.ybb{bottom:459.435000px;}
.y60{bottom:464.655000px;}
.y12e{bottom:471.135000px;}
.y8c{bottom:471.855000px;}
.yd9{bottom:474.015000px;}
.y1c{bottom:482.295000px;}
.y101{bottom:485.175000px;}
.y5f{bottom:488.415000px;}
.yba{bottom:490.215000px;}
.y8b{bottom:495.795000px;}
.yd8{bottom:497.775000px;}
.y12d{bottom:501.735000px;}
.y1b{bottom:506.055000px;}
.y100{bottom:508.935000px;}
.y5e{bottom:512.355000px;}
.yb9{bottom:514.335000px;}
.y8a{bottom:519.555000px;}
.yd7{bottom:521.535000px;}
.y12c{bottom:525.495000px;}
.y1a{bottom:529.995000px;}
.yff{bottom:532.875000px;}
.y5d{bottom:536.115000px;}
.yb8{bottom:538.095000px;}
.y89{bottom:543.315000px;}
.yd6{bottom:545.475000px;}
.y12b{bottom:549.795000px;}
.y19{bottom:553.755000px;}
.yfe{bottom:556.995000px;}
.y5c{bottom:559.875000px;}
.yb7{bottom:562.035000px;}
.y88{bottom:567.075000px;}
.yd5{bottom:568.875000px;}
.y12a{bottom:573.555000px;}
.y18{bottom:577.515000px;}
.yfd{bottom:580.755000px;}
.y5b{bottom:583.635000px;}
.yb6{bottom:585.795000px;}
.y87{bottom:591.015000px;}
.yd4{bottom:592.995000px;}
.y129{bottom:597.315000px;}
.y17{bottom:601.275000px;}
.yfc{bottom:604.515000px;}
.y5a{bottom:607.575000px;}
.yb5{bottom:609.555000px;}
.y142{bottom:614.415000px;}
.y86{bottom:614.775000px;}
.yd3{bottom:616.755000px;}
.y128{bottom:621.075000px;}
.y16{bottom:625.035000px;}
.yfb{bottom:628.455000px;}
.y59{bottom:631.335000px;}
.yb4{bottom:633.315000px;}
.y85{bottom:638.535000px;}
.yd2{bottom:640.515000px;}
.y127{bottom:645.015000px;}
.y15{bottom:648.975000px;}
.yfa{bottom:652.215000px;}
.y58{bottom:655.095000px;}
.yb3{bottom:657.075000px;}
.ye8{bottom:661.935000px;}
.y84{bottom:662.295000px;}
.yd1{bottom:664.455000px;}
.y126{bottom:668.775000px;}
.y14{bottom:672.735000px;}
.yf9{bottom:676.005000px;}
.y57{bottom:678.885000px;}
.yb2{bottom:681.045000px;}
.y13f{bottom:685.725000px;}
.y83{bottom:686.085000px;}
.yd0{bottom:688.245000px;}
.y125{bottom:692.565000px;}
.y13{bottom:696.525000px;}
.yf8{bottom:699.765000px;}
.y56{bottom:702.645000px;}
.yb1{bottom:704.805000px;}
.y82{bottom:710.025000px;}
.ycf{bottom:712.005000px;}
.y124{bottom:716.325000px;}
.y12{bottom:720.285000px;}
.yf7{bottom:723.705000px;}
.y55{bottom:726.585000px;}
.yb0{bottom:728.565000px;}
.y81{bottom:733.785000px;}
.yce{bottom:735.765000px;}
.y123{bottom:740.085000px;}
.yf6{bottom:747.465000px;}
.y54{bottom:750.345000px;}
.y11{bottom:753.765000px;}
.y80{bottom:757.545000px;}
.yaf{bottom:759.345000px;}
.ycd{bottom:759.705000px;}
.y122{bottom:764.025000px;}
.yf5{bottom:771.225000px;}
.y53{bottom:774.105000px;}
.y10{bottom:779.865000px;}
.y7f{bottom:781.305000px;}
.y121{bottom:787.785000px;}
.yae{bottom:790.305000px;}
.yf4{bottom:794.985000px;}
.y52{bottom:797.865000px;}
.yf{bottom:801.645000px;}
.y120{bottom:804.885000px;}
.y7e{bottom:805.245000px;}
.yf2{bottom:812.085000px;}
.yad{bottom:814.425000px;}
.ycc{bottom:821.445000px;}
.y51{bottom:821.805000px;}
.y11d{bottom:826.665000px;}
.y7d{bottom:829.005000px;}
.yef{bottom:834.045000px;}
.ye{bottom:834.585000px;}
.yac{bottom:838.365000px;}
.ycb{bottom:845.205000px;}
.y50{bottom:845.565000px;}
.y7c{bottom:852.765000px;}
.yd{bottom:856.545000px;}
.y11c{bottom:859.065000px;}
.yab{bottom:862.125000px;}
.yee{bottom:866.445000px;}
.y4f{bottom:869.325000px;}
.y7b{bottom:876.525000px;}
.y11a{bottom:881.745000px;}
.yc{bottom:883.365000px;}
.yaa{bottom:885.885000px;}
.yeb{bottom:888.945000px;}
.y4e{bottom:893.085000px;}
.y7a{bottom:900.465000px;}
.ya9{bottom:909.645000px;}
.yb{bottom:915.810000px;}
.y4d{bottom:917.070000px;}
.y79{bottom:924.270000px;}
.ya8{bottom:933.630000px;}
.y4c{bottom:940.830000px;}
.y13e{bottom:947.670000px;}
.y78{bottom:948.030000px;}
.ya{bottom:948.210000px;}
.y119{bottom:957.030000px;}
.ya7{bottom:964.230000px;}
.y4b{bottom:964.590000px;}
.y77{bottom:971.790000px;}
.y9{bottom:974.130000px;}
.y118{bottom:981.150000px;}
.y30{bottom:986.760000px;}
.y2c{bottom:987.120000px;}
.yea{bottom:987.990000px;}
.y4a{bottom:988.350000px;}
.y2e{bottom:989.280000px;}
.y8{bottom:993.390000px;}
.y76{bottom:995.730000px;}
.y117{bottom:1004.910000px;}
.y49{bottom:1012.290000px;}
.yca{bottom:1019.130000px;}
.y75{bottom:1019.490000px;}
.y7{bottom:1027.590000px;}
.y116{bottom:1028.850000px;}
.y48{bottom:1036.050000px;}
.y74{bottom:1043.250000px;}
.y115{bottom:1059.450000px;}
.y47{bottom:1059.810000px;}
.y6{bottom:1062.870000px;}
.y9c{bottom:1066.650000px;}
.y73{bottom:1067.010000px;}
.y46{bottom:1083.570000px;}
.ye9{bottom:1090.590000px;}
.y72{bottom:1090.950000px;}
.y5{bottom:1101.030000px;}
.y45{bottom:1107.510000px;}
.y71{bottom:1114.710000px;}
.y44{bottom:1138.110000px;}
.y70{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y3b{bottom:1169.460000px;}
.y3a{bottom:1183.500000px;}
.y39{bottom:1197.540000px;}
.y31{bottom:1207.620000px;}
.y34{bottom:1219.860000px;}
.y33{bottom:1235.700000px;}
.h11{height:12.600000px;}
.h10{height:14.400000px;}
.h25{height:21.765000px;}
.h20{height:21.780000px;}
.h29{height:21.945000px;}
.h22{height:21.960000px;}
.h16{height:23.220000px;}
.h21{height:31.500000px;}
.h2a{height:31.665000px;}
.h28{height:31.680000px;}
.h13{height:36.861328px;}
.h5{height:38.469727px;}
.h2{height:40.843828px;}
.h27{height:43.545000px;}
.h1e{height:43.582500px;}
.h26{height:43.725000px;}
.h24{height:43.761000px;}
.h14{height:46.445273px;}
.h19{height:48.235500px;}
.h1b{height:48.238500px;}
.h1a{height:48.240000px;}
.h15{height:49.394180px;}
.h12{height:49.680000px;}
.h1c{height:50.273438px;}
.hf{height:50.597578px;}
.h4{height:53.709961px;}
.h8{height:54.597656px;}
.h18{height:55.291992px;}
.h17{height:55.620000px;}
.ha{height:58.651172px;}
.h6{height:60.226875px;}
.h1f{height:65.010937px;}
.h3{height:65.884219px;}
.he{height:70.628906px;}
.hc{height:70.664062px;}
.hb{height:71.324297px;}
.hd{height:72.562500px;}
.h9{height:73.722656px;}
.h1d{height:74.004654px;}
.h23{height:80.464922px;}
.h7{height:81.078047px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:61.545000px;}
.w8{width:62.811000px;}
.w9{width:62.820000px;}
.w1f{width:70.221000px;}
.w1b{width:75.045000px;}
.wb{width:77.569500px;}
.w17{width:77.749500px;}
.w10{width:80.985000px;}
.w15{width:81.021000px;}
.w19{width:81.165000px;}
.w20{width:88.725000px;}
.w13{width:102.276000px;}
.wd{width:102.456000px;}
.w7{width:104.940000px;}
.w5{width:107.100000px;}
.w1c{width:111.801000px;}
.w21{width:123.480000px;}
.w16{width:123.660000px;}
.w11{width:123.681000px;}
.w12{width:131.569500px;}
.w1d{width:144.169500px;}
.w2{width:155.340000px;}
.w1a{width:168.675000px;}
.w3{width:178.740000px;}
.w14{width:183.975000px;}
.w18{width:186.855000px;}
.w1e{width:204.495000px;}
.wc{width:204.675000px;}
.w4{width:209.340000px;}
.wf{width:216.015000px;}
.w6{width:499.860000px;}
.wa{width:616.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.725000px;}
.xa{left:10.905000px;}
.x11{left:15.810000px;}
.xc{left:22.395000px;}
.x16{left:41.436000px;}
.xf{left:53.496000px;}
.x15{left:55.074000px;}
.xe{left:93.780000px;}
.xd{left:96.516000px;}
.x2{left:108.036000px;}
.x13{left:109.476000px;}
.x12{left:110.736000px;}
.x1{left:114.516000px;}
.x19{left:116.670000px;}
.x3{left:130.896000px;}
.x1b{left:135.036000px;}
.x4{left:146.736000px;}
.x1c{left:162.030000px;}
.x17{left:171.585000px;}
.x26{left:185.085000px;}
.x1a{left:186.150000px;}
.x5{left:192.270000px;}
.x21{left:239.625000px;}
.x2c{left:254.925000px;}
.x8{left:256.530000px;}
.x2b{left:260.145000px;}
.x20{left:274.005000px;}
.x25{left:320.655000px;}
.x30{left:335.955000px;}
.x27{left:371.955000px;}
.xb{left:380.880000px;}
.x1d{left:397.695000px;}
.x7{left:435.135000px;}
.x22{left:444.315000px;}
.x6{left:446.475000px;}
.x2d{left:459.435000px;}
.x28{left:474.420000px;}
.x1e{left:500.160000px;}
.x29{left:535.980000px;}
.x14{left:542.085000px;}
.x23{left:546.600000px;}
.x1f{left:561.720000px;}
.x24{left:608.160000px;}
.x2a{left:617.160000px;}
.x2e{left:623.460000px;}
.x9{left:636.120000px;}
.x2f{left:693.690000px;}
.x10{left:788.040000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.075733pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011520pt;}
.lse{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.117867pt;}
.ls12{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.166400pt;}
.ls15{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.214933pt;}
.ls13{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.629333pt;}
.ls14{letter-spacing:0.640000pt;}
.ls16{letter-spacing:3.840000pt;}
.lsc{letter-spacing:6.400000pt;}
.lsf{letter-spacing:7.680000pt;}
.ls10{letter-spacing:8.320000pt;}
.ls7{letter-spacing:12.800000pt;}
.ls8{letter-spacing:19.200000pt;}
.lsb{letter-spacing:24.320000pt;}
.ls11{letter-spacing:30.186667pt;}
.wsa{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.473600pt;}
.wsb{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsd{word-spacing:-14.837867pt;}
.wsc{word-spacing:-14.720000pt;}
.ws3{word-spacing:-11.686400pt;}
.ws5{word-spacing:-10.832000pt;}
.ws4{word-spacing:-9.648533pt;}
.ws0{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.357867pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-1.796480pt;}
._0{margin-left:-0.900480pt;}
._1{width:1.021440pt;}
._2{width:2.646827pt;}
._8{width:4.137173pt;}
._e{width:5.248000pt;}
._f{width:6.400000pt;}
._10{width:7.744000pt;}
._6{width:8.827520pt;}
._5{width:10.052480pt;}
._c{width:10.944000pt;}
._b{width:12.006187pt;}
._16{width:12.948480pt;}
._24{width:13.867520pt;}
._d{width:14.784000pt;}
._11{width:17.157120pt;}
._19{width:18.286080pt;}
._17{width:19.776000pt;}
._18{width:21.124480pt;}
._3{width:22.016000pt;}
._4{width:22.919040pt;}
._13{width:24.376960pt;}
._9{width:25.408000pt;}
._a{width:26.766720pt;}
._1a{width:28.039040pt;}
._25{width:29.091627pt;}
._14{width:30.023040pt;}
._15{width:31.367040pt;}
._1b{width:32.640000pt;}
._26{width:33.908267pt;}
._1e{width:34.816000pt;}
._1f{width:35.840000pt;}
._1c{width:37.440000pt;}
._1d{width:38.354560pt;}
._27{width:39.284480pt;}
._21{width:41.173333pt;}
._20{width:42.218667pt;}
._23{width:43.178667pt;}
._22{width:44.298667pt;}
._12{width:1347.578453pt;}
.fs5{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y35{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:0.480000pt;}
.y2f{bottom:1.093333pt;}
.y2d{bottom:2.693333pt;}
.y3{bottom:4.000000pt;}
.y43{bottom:4.160000pt;}
.y104{bottom:6.066667pt;}
.yed{bottom:6.080000pt;}
.y109{bottom:6.226667pt;}
.yf3{bottom:6.240000pt;}
.yf1{bottom:10.400000pt;}
.y137{bottom:10.546667pt;}
.y11f{bottom:10.560000pt;}
.yf0{bottom:14.720000pt;}
.y136{bottom:14.866667pt;}
.y11e{bottom:14.880000pt;}
.y108{bottom:15.826667pt;}
.y3d{bottom:17.760000pt;}
.y3f{bottom:17.920000pt;}
.y6f{bottom:20.160000pt;}
.y42{bottom:20.320000pt;}
.y2{bottom:21.920000pt;}
.y10b{bottom:25.426667pt;}
.y11b{bottom:25.440000pt;}
.yec{bottom:25.480000pt;}
.y107{bottom:25.586667pt;}
.y103{bottom:25.626667pt;}
.y40{bottom:30.720000pt;}
.y3e{bottom:30.880000pt;}
.y41{bottom:32.800000pt;}
.y32{bottom:36.480000pt;}
.y38{bottom:37.920000pt;}
.y1{bottom:38.080000pt;}
.y36{bottom:62.240000pt;}
.y3c{bottom:81.280000pt;}
.y9b{bottom:102.080000pt;}
.y114{bottom:102.720000pt;}
.yc9{bottom:105.760000pt;}
.ya6{bottom:110.240000pt;}
.y2b{bottom:111.040000pt;}
.y6e{bottom:116.800000pt;}
.ye7{bottom:118.560000pt;}
.y13d{bottom:119.840000pt;}
.y9a{bottom:123.200000pt;}
.y113{bottom:123.840000pt;}
.yc8{bottom:126.880000pt;}
.y2a{bottom:129.120000pt;}
.ya5{bottom:131.520000pt;}
.y6d{bottom:137.920000pt;}
.ye6{bottom:139.680000pt;}
.y13c{bottom:140.960000pt;}
.y99{bottom:144.320000pt;}
.y112{bottom:144.960000pt;}
.y29{bottom:147.040000pt;}
.yc7{bottom:148.000000pt;}
.ya4{bottom:152.640000pt;}
.y6c{bottom:159.040000pt;}
.ye5{bottom:160.960000pt;}
.y13b{bottom:162.240000pt;}
.y28{bottom:164.960000pt;}
.y98{bottom:165.440000pt;}
.y111{bottom:166.080000pt;}
.yc6{bottom:169.120000pt;}
.ya3{bottom:173.760000pt;}
.y6b{bottom:180.160000pt;}
.y13a{bottom:183.386667pt;}
.y27{bottom:184.186667pt;}
.y97{bottom:186.746667pt;}
.y110{bottom:187.386667pt;}
.ye4{bottom:188.186667pt;}
.ya2{bottom:194.906667pt;}
.yc5{bottom:196.506667pt;}
.y6a{bottom:201.466667pt;}
.y139{bottom:204.506667pt;}
.y26{bottom:205.466667pt;}
.y96{bottom:207.866667pt;}
.y10f{bottom:208.506667pt;}
.ye3{bottom:209.626667pt;}
.ya1{bottom:216.186667pt;}
.yc4{bottom:217.946667pt;}
.y138{bottom:219.720000pt;}
.y69{bottom:222.586667pt;}
.y25{bottom:226.586667pt;}
.y95{bottom:228.986667pt;}
.y10e{bottom:229.626667pt;}
.ye2{bottom:230.906667pt;}
.ya0{bottom:237.306667pt;}
.yc3{bottom:239.066667pt;}
.y135{bottom:239.080000pt;}
.y68{bottom:243.706667pt;}
.y94{bottom:250.106667pt;}
.y10d{bottom:250.746667pt;}
.ye1{bottom:252.026667pt;}
.y24{bottom:256.186667pt;}
.y9f{bottom:258.426667pt;}
.yc2{bottom:260.346667pt;}
.y67{bottom:264.826667pt;}
.y134{bottom:267.880000pt;}
.y93{bottom:271.386667pt;}
.y10c{bottom:272.026667pt;}
.ye0{bottom:273.146667pt;}
.y9e{bottom:279.546667pt;}
.y23{bottom:280.506667pt;}
.yc1{bottom:281.466667pt;}
.y66{bottom:286.106667pt;}
.y10a{bottom:287.240000pt;}
.y133{bottom:288.040000pt;}
.y92{bottom:292.506667pt;}
.ydf{bottom:294.266667pt;}
.y141{bottom:300.826667pt;}
.y22{bottom:301.786667pt;}
.yc0{bottom:302.586667pt;}
.y9d{bottom:306.906667pt;}
.y65{bottom:307.226667pt;}
.y91{bottom:313.626667pt;}
.yde{bottom:315.546667pt;}
.y21{bottom:322.906667pt;}
.ybf{bottom:323.706667pt;}
.y106{bottom:325.960000pt;}
.y140{bottom:328.026667pt;}
.y64{bottom:328.346667pt;}
.y132{bottom:334.106667pt;}
.y90{bottom:334.746667pt;}
.ydd{bottom:336.666667pt;}
.y20{bottom:344.026667pt;}
.ybe{bottom:344.986667pt;}
.y63{bottom:349.466667pt;}
.y131{bottom:354.906667pt;}
.y8f{bottom:356.026667pt;}
.ydc{bottom:357.786667pt;}
.y1f{bottom:365.146667pt;}
.y105{bottom:365.480000pt;}
.ybd{bottom:366.106667pt;}
.y62{bottom:370.746667pt;}
.y130{bottom:376.346667pt;}
.y8e{bottom:377.146667pt;}
.ydb{bottom:378.906667pt;}
.y102{bottom:385.480000pt;}
.y1e{bottom:386.426667pt;}
.ybc{bottom:387.226667pt;}
.y61{bottom:391.906667pt;}
.y12f{bottom:397.506667pt;}
.y8d{bottom:398.306667pt;}
.yda{bottom:400.226667pt;}
.y1d{bottom:407.586667pt;}
.ybb{bottom:408.386667pt;}
.y60{bottom:413.026667pt;}
.y12e{bottom:418.786667pt;}
.y8c{bottom:419.426667pt;}
.yd9{bottom:421.346667pt;}
.y1c{bottom:428.706667pt;}
.y101{bottom:431.266667pt;}
.y5f{bottom:434.146667pt;}
.yba{bottom:435.746667pt;}
.y8b{bottom:440.706667pt;}
.yd8{bottom:442.466667pt;}
.y12d{bottom:445.986667pt;}
.y1b{bottom:449.826667pt;}
.y100{bottom:452.386667pt;}
.y5e{bottom:455.426667pt;}
.yb9{bottom:457.186667pt;}
.y8a{bottom:461.826667pt;}
.yd7{bottom:463.586667pt;}
.y12c{bottom:467.106667pt;}
.y1a{bottom:471.106667pt;}
.yff{bottom:473.666667pt;}
.y5d{bottom:476.546667pt;}
.yb8{bottom:478.306667pt;}
.y89{bottom:482.946667pt;}
.yd6{bottom:484.866667pt;}
.y12b{bottom:488.706667pt;}
.y19{bottom:492.226667pt;}
.yfe{bottom:495.106667pt;}
.y5c{bottom:497.666667pt;}
.yb7{bottom:499.586667pt;}
.y88{bottom:504.066667pt;}
.yd5{bottom:505.666667pt;}
.y12a{bottom:509.826667pt;}
.y18{bottom:513.346667pt;}
.yfd{bottom:516.226667pt;}
.y5b{bottom:518.786667pt;}
.yb6{bottom:520.706667pt;}
.y87{bottom:525.346667pt;}
.yd4{bottom:527.106667pt;}
.y129{bottom:530.946667pt;}
.y17{bottom:534.466667pt;}
.yfc{bottom:537.346667pt;}
.y5a{bottom:540.066667pt;}
.yb5{bottom:541.826667pt;}
.y142{bottom:546.146667pt;}
.y86{bottom:546.466667pt;}
.yd3{bottom:548.226667pt;}
.y128{bottom:552.066667pt;}
.y16{bottom:555.586667pt;}
.yfb{bottom:558.626667pt;}
.y59{bottom:561.186667pt;}
.yb4{bottom:562.946667pt;}
.y85{bottom:567.586667pt;}
.yd2{bottom:569.346667pt;}
.y127{bottom:573.346667pt;}
.y15{bottom:576.866667pt;}
.yfa{bottom:579.746667pt;}
.y58{bottom:582.306667pt;}
.yb3{bottom:584.066667pt;}
.ye8{bottom:588.386667pt;}
.y84{bottom:588.706667pt;}
.yd1{bottom:590.626667pt;}
.y126{bottom:594.466667pt;}
.y14{bottom:597.986667pt;}
.yf9{bottom:600.893333pt;}
.y57{bottom:603.453333pt;}
.yb2{bottom:605.373333pt;}
.y13f{bottom:609.533333pt;}
.y83{bottom:609.853333pt;}
.yd0{bottom:611.773333pt;}
.y125{bottom:615.613333pt;}
.y13{bottom:619.133333pt;}
.yf8{bottom:622.013333pt;}
.y56{bottom:624.573333pt;}
.yb1{bottom:626.493333pt;}
.y82{bottom:631.133333pt;}
.ycf{bottom:632.893333pt;}
.y124{bottom:636.733333pt;}
.y12{bottom:640.253333pt;}
.yf7{bottom:643.293333pt;}
.y55{bottom:645.853333pt;}
.yb0{bottom:647.613333pt;}
.y81{bottom:652.253333pt;}
.yce{bottom:654.013333pt;}
.y123{bottom:657.853333pt;}
.yf6{bottom:664.413333pt;}
.y54{bottom:666.973333pt;}
.y11{bottom:670.013333pt;}
.y80{bottom:673.373333pt;}
.yaf{bottom:674.973333pt;}
.ycd{bottom:675.293333pt;}
.y122{bottom:679.133333pt;}
.yf5{bottom:685.533333pt;}
.y53{bottom:688.093333pt;}
.y10{bottom:693.213333pt;}
.y7f{bottom:694.493333pt;}
.y121{bottom:700.253333pt;}
.yae{bottom:702.493333pt;}
.yf4{bottom:706.653333pt;}
.y52{bottom:709.213333pt;}
.yf{bottom:712.573333pt;}
.y120{bottom:715.453333pt;}
.y7e{bottom:715.773333pt;}
.yf2{bottom:721.853333pt;}
.yad{bottom:723.933333pt;}
.ycc{bottom:730.173333pt;}
.y51{bottom:730.493333pt;}
.y11d{bottom:734.813333pt;}
.y7d{bottom:736.893333pt;}
.yef{bottom:741.373333pt;}
.ye{bottom:741.853333pt;}
.yac{bottom:745.213333pt;}
.ycb{bottom:751.293333pt;}
.y50{bottom:751.613333pt;}
.y7c{bottom:758.013333pt;}
.yd{bottom:761.373333pt;}
.y11c{bottom:763.613333pt;}
.yab{bottom:766.333333pt;}
.yee{bottom:770.173333pt;}
.y4f{bottom:772.733333pt;}
.y7b{bottom:779.133333pt;}
.y11a{bottom:783.773333pt;}
.yc{bottom:785.213333pt;}
.yaa{bottom:787.453333pt;}
.yeb{bottom:790.173333pt;}
.y4e{bottom:793.853333pt;}
.y7a{bottom:800.413333pt;}
.ya9{bottom:808.573333pt;}
.yb{bottom:814.053333pt;}
.y4d{bottom:815.173333pt;}
.y79{bottom:821.573333pt;}
.ya8{bottom:829.893333pt;}
.y4c{bottom:836.293333pt;}
.y13e{bottom:842.373333pt;}
.y78{bottom:842.693333pt;}
.ya{bottom:842.853333pt;}
.y119{bottom:850.693333pt;}
.ya7{bottom:857.093333pt;}
.y4b{bottom:857.413333pt;}
.y77{bottom:863.813333pt;}
.y9{bottom:865.893333pt;}
.y118{bottom:872.133333pt;}
.y30{bottom:877.120000pt;}
.y2c{bottom:877.440000pt;}
.yea{bottom:878.213333pt;}
.y4a{bottom:878.533333pt;}
.y2e{bottom:879.360000pt;}
.y8{bottom:883.013333pt;}
.y76{bottom:885.093333pt;}
.y117{bottom:893.253333pt;}
.y49{bottom:899.813333pt;}
.yca{bottom:905.893333pt;}
.y75{bottom:906.213333pt;}
.y7{bottom:913.413333pt;}
.y116{bottom:914.533333pt;}
.y48{bottom:920.933333pt;}
.y74{bottom:927.333333pt;}
.y115{bottom:941.733333pt;}
.y47{bottom:942.053333pt;}
.y6{bottom:944.773333pt;}
.y9c{bottom:948.133333pt;}
.y73{bottom:948.453333pt;}
.y46{bottom:963.173333pt;}
.ye9{bottom:969.413333pt;}
.y72{bottom:969.733333pt;}
.y5{bottom:978.693333pt;}
.y45{bottom:984.453333pt;}
.y71{bottom:990.853333pt;}
.y44{bottom:1011.653333pt;}
.y70{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y3b{bottom:1039.520000pt;}
.y3a{bottom:1052.000000pt;}
.y39{bottom:1064.480000pt;}
.y31{bottom:1073.440000pt;}
.y34{bottom:1084.320000pt;}
.y33{bottom:1098.400000pt;}
.h11{height:11.200000pt;}
.h10{height:12.800000pt;}
.h25{height:19.346667pt;}
.h20{height:19.360000pt;}
.h29{height:19.506667pt;}
.h22{height:19.520000pt;}
.h16{height:20.640000pt;}
.h21{height:28.000000pt;}
.h2a{height:28.146667pt;}
.h28{height:28.160000pt;}
.h13{height:32.765625pt;}
.h5{height:34.195312pt;}
.h2{height:36.305625pt;}
.h27{height:38.706667pt;}
.h1e{height:38.740000pt;}
.h26{height:38.866667pt;}
.h24{height:38.898667pt;}
.h14{height:41.284687pt;}
.h19{height:42.876000pt;}
.h1b{height:42.878667pt;}
.h1a{height:42.880000pt;}
.h15{height:43.905937pt;}
.h12{height:44.160000pt;}
.h1c{height:44.687500pt;}
.hf{height:44.975625pt;}
.h4{height:47.742188pt;}
.h8{height:48.531250pt;}
.h18{height:49.148438pt;}
.h17{height:49.440000pt;}
.ha{height:52.134375pt;}
.h6{height:53.535000pt;}
.h1f{height:57.787500pt;}
.h3{height:58.563750pt;}
.he{height:62.781250pt;}
.hc{height:62.812500pt;}
.hb{height:63.399375pt;}
.hd{height:64.500000pt;}
.h9{height:65.531250pt;}
.h1d{height:65.781915pt;}
.h23{height:71.524375pt;}
.h7{height:72.069375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:54.706667pt;}
.w8{width:55.832000pt;}
.w9{width:55.840000pt;}
.w1f{width:62.418667pt;}
.w1b{width:66.706667pt;}
.wb{width:68.950667pt;}
.w17{width:69.110667pt;}
.w10{width:71.986667pt;}
.w15{width:72.018667pt;}
.w19{width:72.146667pt;}
.w20{width:78.866667pt;}
.w13{width:90.912000pt;}
.wd{width:91.072000pt;}
.w7{width:93.280000pt;}
.w5{width:95.200000pt;}
.w1c{width:99.378667pt;}
.w21{width:109.760000pt;}
.w16{width:109.920000pt;}
.w11{width:109.938667pt;}
.w12{width:116.950667pt;}
.w1d{width:128.150667pt;}
.w2{width:138.080000pt;}
.w1a{width:149.933333pt;}
.w3{width:158.880000pt;}
.w14{width:163.533333pt;}
.w18{width:166.093333pt;}
.w1e{width:181.773333pt;}
.wc{width:181.933333pt;}
.w4{width:186.080000pt;}
.wf{width:192.013333pt;}
.w6{width:444.320000pt;}
.wa{width:548.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.866667pt;}
.xa{left:9.693333pt;}
.x11{left:14.053333pt;}
.xc{left:19.906667pt;}
.x16{left:36.832000pt;}
.xf{left:47.552000pt;}
.x15{left:48.954667pt;}
.xe{left:83.360000pt;}
.xd{left:85.792000pt;}
.x2{left:96.032000pt;}
.x13{left:97.312000pt;}
.x12{left:98.432000pt;}
.x1{left:101.792000pt;}
.x19{left:103.706667pt;}
.x3{left:116.352000pt;}
.x1b{left:120.032000pt;}
.x4{left:130.432000pt;}
.x1c{left:144.026667pt;}
.x17{left:152.520000pt;}
.x26{left:164.520000pt;}
.x1a{left:165.466667pt;}
.x5{left:170.906667pt;}
.x21{left:213.000000pt;}
.x2c{left:226.600000pt;}
.x8{left:228.026667pt;}
.x2b{left:231.240000pt;}
.x20{left:243.560000pt;}
.x25{left:285.026667pt;}
.x30{left:298.626667pt;}
.x27{left:330.626667pt;}
.xb{left:338.560000pt;}
.x1d{left:353.506667pt;}
.x7{left:386.786667pt;}
.x22{left:394.946667pt;}
.x6{left:396.866667pt;}
.x2d{left:408.386667pt;}
.x28{left:421.706667pt;}
.x1e{left:444.586667pt;}
.x29{left:476.426667pt;}
.x14{left:481.853333pt;}
.x23{left:485.866667pt;}
.x1f{left:499.306667pt;}
.x24{left:540.586667pt;}
.x2a{left:548.586667pt;}
.x2e{left:554.186667pt;}
.x9{left:565.440000pt;}
.x2f{left:616.613333pt;}
.x10{left:700.480000pt;}
}




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