
    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_346d36afbf5e399eeacaad33.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.149414;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_2b332b0161edf7268d35e484.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9ec08012154ddf25169a519d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_e55f17be663d3fae83201556.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d4d156a9ba5dfd9b0b3fe1a0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_21442c6a01f5013c0be3e5b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_c3c69428769f44f23a8340f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_2fd90b65448de37098582e8f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_729b2577e0d5d7f36c357e1a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f04134984129e402db345808.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_00d334655208fd68f88934ff.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.920410;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.756000px;}
.ls1a{letter-spacing:-0.612000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.513600px;}
.ls12{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.253200px;}
.ls7{letter-spacing:-0.127200px;}
.lsf{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.132600px;}
.ls10{letter-spacing:0.153600px;}
.ls4{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.ls13{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.513600px;}
.lsd{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.786240px;}
.ls19{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.ls18{letter-spacing:46.170720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.ws9{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.686800px;}
.wsc{word-spacing:-14.580000px;}
.wse{word-spacing:-14.426400px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._d{margin-left:-3.391920px;}
._2{margin-left:-2.274480px;}
._0{margin-left:-1.158000px;}
._1{width:1.026000px;}
._7{width:2.413200px;}
._4{width:3.824640px;}
._3{width:4.960080px;}
._a{width:5.976000px;}
._6{width:7.721520px;}
._5{width:9.143280px;}
._e{width:10.143360px;}
._8{width:11.284560px;}
._b{width:13.053360px;}
._9{width:16.493760px;}
._14{width:17.601600px;}
._15{width:18.943920px;}
._10{width:19.959840px;}
._c{width:21.144960px;}
._18{width:23.117040px;}
._19{width:24.123600px;}
._17{width:26.354160px;}
._16{width:27.549360px;}
._22{width:28.598880px;}
._2b{width:30.139920px;}
._26{width:32.341680px;}
._f{width:33.444000px;}
._13{width:34.720560px;}
._23{width:35.766000px;}
._27{width:41.881680px;}
._28{width:44.457360px;}
._1b{width:46.336560px;}
._1a{width:47.568960px;}
._1c{width:49.295280px;}
._1d{width:51.572880px;}
._11{width:52.997040px;}
._24{width:64.530720px;}
._25{width:69.909120px;}
._2a{width:85.397040px;}
._29{width:86.472720px;}
._12{width:101.283120px;}
._21{width:131.433120px;}
._1f{width:154.290240px;}
._20{width:155.559360px;}
._1e{width:158.675280px;}
.fc5{color:rgb(238,0,0);}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y1a{bottom:3.960000px;}
.y99{bottom:5.220000px;}
.yc7{bottom:6.660000px;}
.ya1{bottom:6.840000px;}
.y9f{bottom:7.560000px;}
.y111{bottom:8.460000px;}
.y102{bottom:8.640000px;}
.y44{bottom:9.360000px;}
.yf{bottom:9.540000px;}
.yfc{bottom:10.620000px;}
.ybb{bottom:11.160000px;}
.yf5{bottom:11.880000px;}
.y116{bottom:12.240000px;}
.y1c{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.yef{bottom:19.080000px;}
.yec{bottom:20.160000px;}
.y3{bottom:20.196000px;}
.y40{bottom:20.340000px;}
.yf7{bottom:20.514000px;}
.y45{bottom:20.520000px;}
.y43{bottom:23.220000px;}
.ycc{bottom:23.400000px;}
.ya7{bottom:23.580000px;}
.y9e{bottom:24.840000px;}
.y19{bottom:28.080000px;}
.yba{bottom:28.440000px;}
.yf4{bottom:29.154000px;}
.yc{bottom:30.240000px;}
.y6{bottom:30.780000px;}
.y5{bottom:33.876000px;}
.y2{bottom:36.576000px;}
.yed{bottom:37.080000px;}
.y3f{bottom:37.620000px;}
.yf6{bottom:37.794000px;}
.yf2{bottom:37.800000px;}
.ya6{bottom:40.680000px;}
.y18{bottom:43.560000px;}
.yb{bottom:46.620000px;}
.y1{bottom:52.920000px;}
.y3e{bottom:54.900000px;}
.ya5{bottom:57.960000px;}
.ycb{bottom:58.005000px;}
.y17{bottom:59.445000px;}
.y16{bottom:69.165000px;}
.y3d{bottom:72.180000px;}
.ya{bottom:73.440000px;}
.ya4{bottom:75.240000px;}
.yca{bottom:75.285000px;}
.y15{bottom:87.165000px;}
.y3c{bottom:89.460000px;}
.y9{bottom:93.060000px;}
.y14{bottom:106.065000px;}
.y3b{bottom:106.740000px;}
.y8{bottom:111.450000px;}
.y8f{bottom:112.536000px;}
.y52{bottom:118.476000px;}
.yb8{bottom:119.196000px;}
.y3a{bottom:123.840000px;}
.y8e{bottom:129.816000px;}
.y13{bottom:131.805000px;}
.y133{bottom:132.336000px;}
.yf3{bottom:133.236000px;}
.yb7{bottom:133.956000px;}
.y51{bottom:135.756000px;}
.y39{bottom:141.120000px;}
.y8d{bottom:147.096000px;}
.y132{bottom:149.616000px;}
.yb6{bottom:151.950000px;}
.y50{bottom:153.030000px;}
.y12{bottom:157.545000px;}
.y38{bottom:158.400000px;}
.y8c{bottom:164.370000px;}
.y131{bottom:166.890000px;}
.y4f{bottom:170.310000px;}
.yb5{bottom:173.190000px;}
.y2a{bottom:174.060000px;}
.y37{bottom:175.680000px;}
.y8b{bottom:181.470000px;}
.y11{bottom:182.025000px;}
.y130{bottom:184.170000px;}
.yf1{bottom:185.790000px;}
.y4e{bottom:187.590000px;}
.y29{bottom:188.640000px;}
.yb4{bottom:190.470000px;}
.y36{bottom:192.960000px;}
.y8a{bottom:198.750000px;}
.y12f{bottom:201.450000px;}
.y4d{bottom:204.870000px;}
.yb3{bottom:205.230000px;}
.y28{bottom:205.920000px;}
.y35{bottom:210.240000px;}
.y89{bottom:216.030000px;}
.y12e{bottom:218.550000px;}
.y4c{bottom:221.970000px;}
.y27{bottom:223.050000px;}
.yb2{bottom:223.230000px;}
.y34{bottom:227.370000px;}
.y88{bottom:233.310000px;}
.y12d{bottom:235.830000px;}
.yf0{bottom:238.350000px;}
.y4b{bottom:239.250000px;}
.y26{bottom:240.330000px;}
.yb1{bottom:244.470000px;}
.y33{bottom:244.650000px;}
.y87{bottom:250.590000px;}
.y12c{bottom:253.110000px;}
.y4a{bottom:256.530000px;}
.y25{bottom:257.430000px;}
.yb0{bottom:261.570000px;}
.y32{bottom:261.930000px;}
.y86{bottom:267.870000px;}
.y12b{bottom:270.390000px;}
.y24{bottom:273.810000px;}
.yaf{bottom:276.330000px;}
.y31{bottom:279.210000px;}
.y85{bottom:284.970000px;}
.y12a{bottom:287.670000px;}
.y23{bottom:290.190000px;}
.yeb{bottom:290.730000px;}
.y49{bottom:291.090000px;}
.yae{bottom:294.330000px;}
.y30{bottom:296.490000px;}
.y84{bottom:302.250000px;}
.y129{bottom:304.770000px;}
.y22{bottom:306.570000px;}
.y48{bottom:308.370000px;}
.yad{bottom:312.330000px;}
.y2f{bottom:313.590000px;}
.y83{bottom:319.530000px;}
.y128{bottom:322.050000px;}
.y21{bottom:322.950000px;}
.yee{bottom:324.570000px;}
.y47{bottom:325.470000px;}
.y2e{bottom:330.870000px;}
.yac{bottom:333.570000px;}
.y82{bottom:336.855000px;}
.y122{bottom:337.575000px;}
.y127{bottom:339.375000px;}
.y20{bottom:342.210000px;}
.y46{bottom:342.795000px;}
.yea{bottom:345.855000px;}
.y2d{bottom:348.150000px;}
.yab{bottom:350.895000px;}
.y81{bottom:354.135000px;}
.y121{bottom:355.755000px;}
.y126{bottom:356.655000px;}
.y42{bottom:356.835000px;}
.ye9{bottom:363.135000px;}
.y2c{bottom:365.430000px;}
.ya3{bottom:365.655000px;}
.y1f{bottom:367.950000px;}
.y80{bottom:371.415000px;}
.y125{bottom:373.935000px;}
.ye8{bottom:377.895000px;}
.y120{bottom:378.255000px;}
.y2b{bottom:382.710000px;}
.yaa{bottom:383.655000px;}
.y1e{bottom:385.410000px;}
.y7f{bottom:388.515000px;}
.y124{bottom:391.215000px;}
.y1d{bottom:391.395000px;}
.ye7{bottom:395.895000px;}
.y11f{bottom:400.755000px;}
.ya9{bottom:401.655000px;}
.y123{bottom:405.075000px;}
.y7e{bottom:405.795000px;}
.ye6{bottom:413.895000px;}
.ya8{bottom:419.655000px;}
.y7d{bottom:423.075000px;}
.y11e{bottom:423.255000px;}
.ye5{bottom:431.895000px;}
.ya2{bottom:437.655000px;}
.y7c{bottom:440.355000px;}
.y11d{bottom:448.635000px;}
.ye4{bottom:453.135000px;}
.y9d{bottom:455.655000px;}
.y7b{bottom:457.635000px;}
.y11c{bottom:465.915000px;}
.ye3{bottom:470.235000px;}
.ya0{bottom:473.655000px;}
.y7a{bottom:474.735000px;}
.y11a{bottom:480.675000px;}
.ye2{bottom:484.995000px;}
.y79{bottom:492.015000px;}
.y9c{bottom:498.495000px;}
.y11b{bottom:498.675000px;}
.ye1{bottom:502.995000px;}
.y78{bottom:509.295000px;}
.y9b{bottom:515.775000px;}
.y118{bottom:516.675000px;}
.ye0{bottom:520.995000px;}
.y77{bottom:526.575000px;}
.y9a{bottom:530.535000px;}
.y119{bottom:534.675000px;}
.ydf{bottom:538.995000px;}
.y76{bottom:543.855000px;}
.y98{bottom:550.515000px;}
.y115{bottom:552.675000px;}
.yde{bottom:560.235000px;}
.y75{bottom:561.135000px;}
.y117{bottom:570.675000px;}
.y97{bottom:573.735000px;}
.ydd{bottom:577.515000px;}
.y74{bottom:578.235000px;}
.y114{bottom:588.675000px;}
.y96{bottom:591.015000px;}
.ydc{bottom:594.795000px;}
.y73{bottom:595.515000px;}
.y95{bottom:605.805000px;}
.ydb{bottom:609.585000px;}
.y113{bottom:609.945000px;}
.y72{bottom:612.825000px;}
.y94{bottom:623.805000px;}
.y112{bottom:627.225000px;}
.yda{bottom:627.585000px;}
.y71{bottom:630.105000px;}
.y93{bottom:645.045000px;}
.yd9{bottom:645.585000px;}
.y110{bottom:646.125000px;}
.y70{bottom:647.385000px;}
.y92{bottom:662.325000px;}
.yd8{bottom:663.585000px;}
.y6f{bottom:664.665000px;}
.y10f{bottom:667.725000px;}
.y91{bottom:677.085000px;}
.y6e{bottom:681.765000px;}
.yd7{bottom:684.825000px;}
.y10e{bottom:690.225000px;}
.y90{bottom:695.085000px;}
.y6d{bottom:699.045000px;}
.yd6{bottom:702.105000px;}
.y10d{bottom:712.005000px;}
.y6c{bottom:716.325000px;}
.yd2{bottom:716.865000px;}
.y6b{bottom:733.605000px;}
.y10c{bottom:734.505000px;}
.yd5{bottom:734.865000px;}
.y6a{bottom:750.885000px;}
.yd4{bottom:752.865000px;}
.y10b{bottom:756.285000px;}
.y69{bottom:768.165000px;}
.yd3{bottom:770.865000px;}
.y10a{bottom:778.785000px;}
.y68{bottom:785.265000px;}
.y1b{bottom:788.145000px;}
.yd1{bottom:788.865000px;}
.y67{bottom:802.545000px;}
.y109{bottom:804.165000px;}
.yd0{bottom:806.865000px;}
.y10{bottom:817.665000px;}
.y66{bottom:819.825000px;}
.y108{bottom:821.445000px;}
.yc9{bottom:824.865000px;}
.y65{bottom:837.105000px;}
.y107{bottom:838.725000px;}
.ycf{bottom:842.865000px;}
.y64{bottom:854.385000px;}
.y106{bottom:857.445000px;}
.yce{bottom:860.865000px;}
.y63{bottom:871.530000px;}
.ycd{bottom:878.910000px;}
.y105{bottom:879.270000px;}
.y62{bottom:888.810000px;}
.yc8{bottom:896.910000px;}
.y104{bottom:901.770000px;}
.y61{bottom:906.090000px;}
.yc6{bottom:914.910000px;}
.y60{bottom:923.370000px;}
.y103{bottom:923.550000px;}
.yc4{bottom:936.330000px;}
.y5f{bottom:940.650000px;}
.y101{bottom:946.050000px;}
.yc5{bottom:954.330000px;}
.y5e{bottom:957.930000px;}
.y100{bottom:967.830000px;}
.y5d{bottom:975.030000px;}
.yc3{bottom:979.170000px;}
.yff{bottom:990.330000px;}
.y5c{bottom:992.310000px;}
.yc2{bottom:996.450000px;}
.y5b{bottom:1009.590000px;}
.ybe{bottom:1011.210000px;}
.ye{bottom:1014.810000px;}
.yfe{bottom:1015.710000px;}
.y5a{bottom:1026.870000px;}
.yc1{bottom:1029.210000px;}
.yfd{bottom:1032.990000px;}
.y7{bottom:1040.010000px;}
.y59{bottom:1044.150000px;}
.yc0{bottom:1047.210000px;}
.yfb{bottom:1047.750000px;}
.y58{bottom:1061.430000px;}
.ybf{bottom:1065.210000px;}
.yfa{bottom:1073.130000px;}
.y57{bottom:1078.530000px;}
.ybd{bottom:1083.210000px;}
.yf9{bottom:1091.130000px;}
.y56{bottom:1095.810000px;}
.yb9{bottom:1101.210000px;}
.yf8{bottom:1109.130000px;}
.y55{bottom:1113.090000px;}
.ybc{bottom:1122.810000px;}
.y54{bottom:1130.370000px;}
.y53{bottom:1147.680000px;}
.h27{height:17.100000px;}
.h22{height:17.280000px;}
.h2c{height:17.316000px;}
.h23{height:19.260000px;}
.h2a{height:20.700000px;}
.h25{height:20.880000px;}
.h29{height:20.916000px;}
.h32{height:24.660000px;}
.hd{height:24.840000px;}
.h14{height:28.968750px;}
.h16{height:29.520000px;}
.h15{height:29.671875px;}
.h2e{height:33.120000px;}
.h21{height:34.560000px;}
.h31{height:34.596000px;}
.h33{height:35.280000px;}
.h13{height:35.806641px;}
.h9{height:36.180000px;}
.h24{height:38.880000px;}
.h20{height:39.760312px;}
.h1d{height:41.132461px;}
.h1b{height:42.164648px;}
.h28{height:42.516000px;}
.h1c{height:43.215117px;}
.h5{height:43.453125px;}
.h34{height:43.506914px;}
.hf{height:44.002969px;}
.hb{height:44.820000px;}
.h1e{height:46.881563px;}
.h1a{height:47.980898px;}
.h12{height:48.312422px;}
.h1f{height:49.255313px;}
.h2{height:49.536000px;}
.h17{height:50.800781px;}
.h2d{height:51.156000px;}
.h2f{height:51.660000px;}
.h30{height:51.840000px;}
.h7{height:52.066406px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h11{height:59.439023px;}
.h10{height:63.180000px;}
.h6{height:67.824844px;}
.hc{height:71.613281px;}
.h18{height:73.722656px;}
.h26{height:89.280000px;}
.h2b{height:89.316000px;}
.h8{height:121.536000px;}
.he{height:197.130000px;}
.h19{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4d{width:4.320000px;}
.w4e{width:4.500000px;}
.w3a{width:5.040000px;}
.w3d{width:5.220000px;}
.w41{width:7.380000px;}
.w44{width:7.560000px;}
.w4c{width:49.320000px;}
.w46{width:51.480000px;}
.w3{width:73.080000px;}
.w28{width:73.656000px;}
.w27{width:73.800000px;}
.w16{width:74.700000px;}
.w15{width:74.736000px;}
.w14{width:74.880000px;}
.w17{width:75.240000px;}
.w1d{width:77.256000px;}
.w1e{width:77.400000px;}
.w22{width:77.436000px;}
.w21{width:77.580000px;}
.w1f{width:77.616000px;}
.w3c{width:79.740000px;}
.w35{width:85.500000px;}
.w29{width:87.300000px;}
.w36{width:92.520000px;}
.w2b{width:96.840000px;}
.w2a{width:97.056000px;}
.w1a{width:99.576000px;}
.w19{width:99.720000px;}
.w18{width:99.756000px;}
.w47{width:102.276000px;}
.w38{width:103.320000px;}
.w37{width:103.356000px;}
.w32{width:104.256000px;}
.w33{width:109.656000px;}
.w3b{width:117.576000px;}
.w2e{width:121.896000px;}
.w20{width:122.040000px;}
.w24{width:131.796000px;}
.w11{width:132.516000px;}
.w3e{width:137.160000px;}
.w39{width:143.856000px;}
.w2f{width:144.036000px;}
.w23{width:144.180000px;}
.w30{width:144.216000px;}
.wc{width:146.160000px;}
.wb{width:146.196000px;}
.wa{width:146.376000px;}
.w5{width:151.950000px;}
.wf{width:160.200000px;}
.w42{width:172.830000px;}
.w31{width:176.790000px;}
.wd{width:182.730000px;}
.w10{width:182.910000px;}
.w3f{width:187.410000px;}
.w45{width:196.410000px;}
.we{width:205.275000px;}
.w48{width:208.110000px;}
.w49{width:208.290000px;}
.w4f{width:211.350000px;}
.w40{width:211.935000px;}
.w4a{width:212.430000px;}
.w4b{width:214.635000px;}
.w8{width:223.455000px;}
.w25{width:290.955000px;}
.w12{width:299.235000px;}
.w13{width:299.550000px;}
.w43{width:308.190000px;}
.w26{width:308.370000px;}
.w1b{width:354.315000px;}
.w2c{width:365.115000px;}
.w2d{width:366.015000px;}
.w1c{width:376.815000px;}
.w9{width:507.675000px;}
.w34{width:517.215000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x45{left:1.080000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xc{left:16.596000px;}
.xb{left:28.296000px;}
.x10{left:48.636000px;}
.x67{left:75.239987px;}
.x1{left:81.000000px;}
.x44{left:83.340000px;}
.x4{left:98.130000px;}
.x68{left:102.275987px;}
.x65{left:108.035987px;}
.x14{left:135.035987px;}
.x5d{left:140.795987px;}
.xd{left:142.590000px;}
.x29{left:158.250000px;}
.xf{left:170.670000px;}
.x27{left:178.229987px;}
.xe{left:180.210000px;}
.x5a{left:183.270000px;}
.x3e{left:185.250000px;}
.x39{left:202.890000px;}
.x2f{left:203.969987px;}
.x20{left:213.510000px;}
.x11{left:215.175000px;}
.x16{left:227.370000px;}
.x46{left:229.530000px;}
.x5{left:232.950000px;}
.x2a{left:235.650000px;}
.x47{left:236.730000px;}
.x36{left:239.069987px;}
.x59{left:245.729987px;}
.x4e{left:255.449987px;}
.x1b{left:263.730000px;}
.x3d{left:265.529987px;}
.x38{left:267.689987px;}
.x8{left:272.235000px;}
.x37{left:279.974987px;}
.x2e{left:282.134987px;}
.x15{left:293.654987px;}
.x3f{left:294.915000px;}
.x4f{left:297.615000px;}
.x5e{left:300.135000px;}
.x1a{left:302.294987px;}
.x12{left:304.455000px;}
.x50{left:307.335000px;}
.x2d{left:308.774987px;}
.x34{left:309.855000px;}
.x25{left:313.275000px;}
.x6{left:331.995000px;}
.x43{left:335.054987px;}
.x3a{left:346.935000px;}
.x7{left:351.255000px;}
.x48{left:356.655000px;}
.x5f{left:358.275000px;}
.x1e{left:364.394987px;}
.xa{left:365.475000px;}
.x17{left:373.575000px;}
.x40{left:380.415000px;}
.x5b{left:391.395000px;}
.x66{left:396.074987px;}
.x35{left:406.695000px;}
.x26{left:412.995000px;}
.x28{left:435.315000px;}
.x9{left:439.500000px;}
.x1f{left:446.475000px;}
.x49{left:453.315000px;}
.x4a{left:460.875000px;}
.x1c{left:469.005000px;}
.x51{left:482.505000px;}
.x3b{left:491.145000px;}
.x53{left:501.765000px;}
.x30{left:503.745000px;}
.x54{left:511.485000px;}
.x21{left:512.565000px;}
.x18{left:519.765000px;}
.x55{left:521.205000px;}
.x56{left:530.745000px;}
.x31{left:577.365000px;}
.x60{left:578.625000px;}
.x61{left:585.105000px;}
.x22{left:587.445000px;}
.x2b{left:590.505000px;}
.x62{left:591.765000px;}
.x63{left:598.425000px;}
.x5c{left:599.685000px;}
.x41{left:605.445000px;}
.x4b{left:607.605000px;}
.x4c{left:614.985000px;}
.x4d{left:622.365000px;}
.x1d{left:629.205000px;}
.x3c{left:635.325000px;}
.x32{left:651.165000px;}
.x23{left:662.190000px;}
.x19{left:665.970000px;}
.x2c{left:667.950000px;}
.x42{left:708.810000px;}
.x33{left:724.830000px;}
.x57{left:729.330000px;}
.x24{left:736.890000px;}
.x3{left:739.050000px;}
.x64{left:743.549987px;}
.x58{left:748.770000px;}
.x52{left:802.410000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.672000pt;}
.ls1a{letter-spacing:-0.544000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.456533pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.225067pt;}
.ls7{letter-spacing:-0.113067pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.117867pt;}
.ls10{letter-spacing:0.136533pt;}
.ls4{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.ls13{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.456533pt;}
.lsd{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls19{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls18{letter-spacing:41.040640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.054933pt;}
.wsc{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.823467pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._d{margin-left:-3.015040pt;}
._2{margin-left:-2.021760pt;}
._0{margin-left:-1.029333pt;}
._1{width:0.912000pt;}
._7{width:2.145067pt;}
._4{width:3.399680pt;}
._3{width:4.408960pt;}
._a{width:5.312000pt;}
._6{width:6.863573pt;}
._5{width:8.127360pt;}
._e{width:9.016320pt;}
._8{width:10.030720pt;}
._b{width:11.602987pt;}
._9{width:14.661120pt;}
._14{width:15.645867pt;}
._15{width:16.839040pt;}
._10{width:17.742080pt;}
._c{width:18.795520pt;}
._18{width:20.548480pt;}
._19{width:21.443200pt;}
._17{width:23.425920pt;}
._16{width:24.488320pt;}
._22{width:25.421227pt;}
._2b{width:26.791040pt;}
._26{width:28.748160pt;}
._f{width:29.728000pt;}
._13{width:30.862720pt;}
._23{width:31.792000pt;}
._27{width:37.228160pt;}
._28{width:39.517653pt;}
._1b{width:41.188053pt;}
._1a{width:42.283520pt;}
._1c{width:43.818027pt;}
._1d{width:45.842560pt;}
._11{width:47.108480pt;}
._24{width:57.360640pt;}
._25{width:62.141440pt;}
._2a{width:75.908480pt;}
._29{width:76.864640pt;}
._12{width:90.029440pt;}
._21{width:116.829440pt;}
._1f{width:137.146880pt;}
._20{width:138.274987pt;}
._1e{width:141.044693pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y1a{bottom:3.520000pt;}
.y99{bottom:4.640000pt;}
.yc7{bottom:5.920000pt;}
.ya1{bottom:6.080000pt;}
.y9f{bottom:6.720000pt;}
.y111{bottom:7.520000pt;}
.y102{bottom:7.680000pt;}
.y44{bottom:8.320000pt;}
.yf{bottom:8.480000pt;}
.yfc{bottom:9.440000pt;}
.ybb{bottom:9.920000pt;}
.yf5{bottom:10.560000pt;}
.y116{bottom:10.880000pt;}
.y1c{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.yef{bottom:16.960000pt;}
.yec{bottom:17.920000pt;}
.y3{bottom:17.952000pt;}
.y40{bottom:18.080000pt;}
.yf7{bottom:18.234667pt;}
.y45{bottom:18.240000pt;}
.y43{bottom:20.640000pt;}
.ycc{bottom:20.800000pt;}
.ya7{bottom:20.960000pt;}
.y9e{bottom:22.080000pt;}
.y19{bottom:24.960000pt;}
.yba{bottom:25.280000pt;}
.yf4{bottom:25.914667pt;}
.yc{bottom:26.880000pt;}
.y6{bottom:27.360000pt;}
.y5{bottom:30.112000pt;}
.y2{bottom:32.512000pt;}
.yed{bottom:32.960000pt;}
.y3f{bottom:33.440000pt;}
.yf6{bottom:33.594667pt;}
.yf2{bottom:33.600000pt;}
.ya6{bottom:36.160000pt;}
.y18{bottom:38.720000pt;}
.yb{bottom:41.440000pt;}
.y1{bottom:47.040000pt;}
.y3e{bottom:48.800000pt;}
.ya5{bottom:51.520000pt;}
.ycb{bottom:51.560000pt;}
.y17{bottom:52.840000pt;}
.y16{bottom:61.480000pt;}
.y3d{bottom:64.160000pt;}
.ya{bottom:65.280000pt;}
.ya4{bottom:66.880000pt;}
.yca{bottom:66.920000pt;}
.y15{bottom:77.480000pt;}
.y3c{bottom:79.520000pt;}
.y9{bottom:82.720000pt;}
.y14{bottom:94.280000pt;}
.y3b{bottom:94.880000pt;}
.y8{bottom:99.066667pt;}
.y8f{bottom:100.032000pt;}
.y52{bottom:105.312000pt;}
.yb8{bottom:105.952000pt;}
.y3a{bottom:110.080000pt;}
.y8e{bottom:115.392000pt;}
.y13{bottom:117.160000pt;}
.y133{bottom:117.632000pt;}
.yf3{bottom:118.432000pt;}
.yb7{bottom:119.072000pt;}
.y51{bottom:120.672000pt;}
.y39{bottom:125.440000pt;}
.y8d{bottom:130.752000pt;}
.y132{bottom:132.992000pt;}
.yb6{bottom:135.066667pt;}
.y50{bottom:136.026667pt;}
.y12{bottom:140.040000pt;}
.y38{bottom:140.800000pt;}
.y8c{bottom:146.106667pt;}
.y131{bottom:148.346667pt;}
.y4f{bottom:151.386667pt;}
.yb5{bottom:153.946667pt;}
.y2a{bottom:154.720000pt;}
.y37{bottom:156.160000pt;}
.y8b{bottom:161.306667pt;}
.y11{bottom:161.800000pt;}
.y130{bottom:163.706667pt;}
.yf1{bottom:165.146667pt;}
.y4e{bottom:166.746667pt;}
.y29{bottom:167.680000pt;}
.yb4{bottom:169.306667pt;}
.y36{bottom:171.520000pt;}
.y8a{bottom:176.666667pt;}
.y12f{bottom:179.066667pt;}
.y4d{bottom:182.106667pt;}
.yb3{bottom:182.426667pt;}
.y28{bottom:183.040000pt;}
.y35{bottom:186.880000pt;}
.y89{bottom:192.026667pt;}
.y12e{bottom:194.266667pt;}
.y4c{bottom:197.306667pt;}
.y27{bottom:198.266667pt;}
.yb2{bottom:198.426667pt;}
.y34{bottom:202.106667pt;}
.y88{bottom:207.386667pt;}
.y12d{bottom:209.626667pt;}
.yf0{bottom:211.866667pt;}
.y4b{bottom:212.666667pt;}
.y26{bottom:213.626667pt;}
.yb1{bottom:217.306667pt;}
.y33{bottom:217.466667pt;}
.y87{bottom:222.746667pt;}
.y12c{bottom:224.986667pt;}
.y4a{bottom:228.026667pt;}
.y25{bottom:228.826667pt;}
.yb0{bottom:232.506667pt;}
.y32{bottom:232.826667pt;}
.y86{bottom:238.106667pt;}
.y12b{bottom:240.346667pt;}
.y24{bottom:243.386667pt;}
.yaf{bottom:245.626667pt;}
.y31{bottom:248.186667pt;}
.y85{bottom:253.306667pt;}
.y12a{bottom:255.706667pt;}
.y23{bottom:257.946667pt;}
.yeb{bottom:258.426667pt;}
.y49{bottom:258.746667pt;}
.yae{bottom:261.626667pt;}
.y30{bottom:263.546667pt;}
.y84{bottom:268.666667pt;}
.y129{bottom:270.906667pt;}
.y22{bottom:272.506667pt;}
.y48{bottom:274.106667pt;}
.yad{bottom:277.626667pt;}
.y2f{bottom:278.746667pt;}
.y83{bottom:284.026667pt;}
.y128{bottom:286.266667pt;}
.y21{bottom:287.066667pt;}
.yee{bottom:288.506667pt;}
.y47{bottom:289.306667pt;}
.y2e{bottom:294.106667pt;}
.yac{bottom:296.506667pt;}
.y82{bottom:299.426667pt;}
.y122{bottom:300.066667pt;}
.y127{bottom:301.666667pt;}
.y20{bottom:304.186667pt;}
.y46{bottom:304.706667pt;}
.yea{bottom:307.426667pt;}
.y2d{bottom:309.466667pt;}
.yab{bottom:311.906667pt;}
.y81{bottom:314.786667pt;}
.y121{bottom:316.226667pt;}
.y126{bottom:317.026667pt;}
.y42{bottom:317.186667pt;}
.ye9{bottom:322.786667pt;}
.y2c{bottom:324.826667pt;}
.ya3{bottom:325.026667pt;}
.y1f{bottom:327.066667pt;}
.y80{bottom:330.146667pt;}
.y125{bottom:332.386667pt;}
.ye8{bottom:335.906667pt;}
.y120{bottom:336.226667pt;}
.y2b{bottom:340.186667pt;}
.yaa{bottom:341.026667pt;}
.y1e{bottom:342.586667pt;}
.y7f{bottom:345.346667pt;}
.y124{bottom:347.746667pt;}
.y1d{bottom:347.906667pt;}
.ye7{bottom:351.906667pt;}
.y11f{bottom:356.226667pt;}
.ya9{bottom:357.026667pt;}
.y123{bottom:360.066667pt;}
.y7e{bottom:360.706667pt;}
.ye6{bottom:367.906667pt;}
.ya8{bottom:373.026667pt;}
.y7d{bottom:376.066667pt;}
.y11e{bottom:376.226667pt;}
.ye5{bottom:383.906667pt;}
.ya2{bottom:389.026667pt;}
.y7c{bottom:391.426667pt;}
.y11d{bottom:398.786667pt;}
.ye4{bottom:402.786667pt;}
.y9d{bottom:405.026667pt;}
.y7b{bottom:406.786667pt;}
.y11c{bottom:414.146667pt;}
.ye3{bottom:417.986667pt;}
.ya0{bottom:421.026667pt;}
.y7a{bottom:421.986667pt;}
.y11a{bottom:427.266667pt;}
.ye2{bottom:431.106667pt;}
.y79{bottom:437.346667pt;}
.y9c{bottom:443.106667pt;}
.y11b{bottom:443.266667pt;}
.ye1{bottom:447.106667pt;}
.y78{bottom:452.706667pt;}
.y9b{bottom:458.466667pt;}
.y118{bottom:459.266667pt;}
.ye0{bottom:463.106667pt;}
.y77{bottom:468.066667pt;}
.y9a{bottom:471.586667pt;}
.y119{bottom:475.266667pt;}
.ydf{bottom:479.106667pt;}
.y76{bottom:483.426667pt;}
.y98{bottom:489.346667pt;}
.y115{bottom:491.266667pt;}
.yde{bottom:497.986667pt;}
.y75{bottom:498.786667pt;}
.y117{bottom:507.266667pt;}
.y97{bottom:509.986667pt;}
.ydd{bottom:513.346667pt;}
.y74{bottom:513.986667pt;}
.y114{bottom:523.266667pt;}
.y96{bottom:525.346667pt;}
.ydc{bottom:528.706667pt;}
.y73{bottom:529.346667pt;}
.y95{bottom:538.493333pt;}
.ydb{bottom:541.853333pt;}
.y113{bottom:542.173333pt;}
.y72{bottom:544.733333pt;}
.y94{bottom:554.493333pt;}
.y112{bottom:557.533333pt;}
.yda{bottom:557.853333pt;}
.y71{bottom:560.093333pt;}
.y93{bottom:573.373333pt;}
.yd9{bottom:573.853333pt;}
.y110{bottom:574.333333pt;}
.y70{bottom:575.453333pt;}
.y92{bottom:588.733333pt;}
.yd8{bottom:589.853333pt;}
.y6f{bottom:590.813333pt;}
.y10f{bottom:593.533333pt;}
.y91{bottom:601.853333pt;}
.y6e{bottom:606.013333pt;}
.yd7{bottom:608.733333pt;}
.y10e{bottom:613.533333pt;}
.y90{bottom:617.853333pt;}
.y6d{bottom:621.373333pt;}
.yd6{bottom:624.093333pt;}
.y10d{bottom:632.893333pt;}
.y6c{bottom:636.733333pt;}
.yd2{bottom:637.213333pt;}
.y6b{bottom:652.093333pt;}
.y10c{bottom:652.893333pt;}
.yd5{bottom:653.213333pt;}
.y6a{bottom:667.453333pt;}
.yd4{bottom:669.213333pt;}
.y10b{bottom:672.253333pt;}
.y69{bottom:682.813333pt;}
.yd3{bottom:685.213333pt;}
.y10a{bottom:692.253333pt;}
.y68{bottom:698.013333pt;}
.y1b{bottom:700.573333pt;}
.yd1{bottom:701.213333pt;}
.y67{bottom:713.373333pt;}
.y109{bottom:714.813333pt;}
.yd0{bottom:717.213333pt;}
.y10{bottom:726.813333pt;}
.y66{bottom:728.733333pt;}
.y108{bottom:730.173333pt;}
.yc9{bottom:733.213333pt;}
.y65{bottom:744.093333pt;}
.y107{bottom:745.533333pt;}
.ycf{bottom:749.213333pt;}
.y64{bottom:759.453333pt;}
.y106{bottom:762.173333pt;}
.yce{bottom:765.213333pt;}
.y63{bottom:774.693333pt;}
.ycd{bottom:781.253333pt;}
.y105{bottom:781.573333pt;}
.y62{bottom:790.053333pt;}
.yc8{bottom:797.253333pt;}
.y104{bottom:801.573333pt;}
.y61{bottom:805.413333pt;}
.yc6{bottom:813.253333pt;}
.y60{bottom:820.773333pt;}
.y103{bottom:820.933333pt;}
.yc4{bottom:832.293333pt;}
.y5f{bottom:836.133333pt;}
.y101{bottom:840.933333pt;}
.yc5{bottom:848.293333pt;}
.y5e{bottom:851.493333pt;}
.y100{bottom:860.293333pt;}
.y5d{bottom:866.693333pt;}
.yc3{bottom:870.373333pt;}
.yff{bottom:880.293333pt;}
.y5c{bottom:882.053333pt;}
.yc2{bottom:885.733333pt;}
.y5b{bottom:897.413333pt;}
.ybe{bottom:898.853333pt;}
.ye{bottom:902.053333pt;}
.yfe{bottom:902.853333pt;}
.y5a{bottom:912.773333pt;}
.yc1{bottom:914.853333pt;}
.yfd{bottom:918.213333pt;}
.y7{bottom:924.453333pt;}
.y59{bottom:928.133333pt;}
.yc0{bottom:930.853333pt;}
.yfb{bottom:931.333333pt;}
.y58{bottom:943.493333pt;}
.ybf{bottom:946.853333pt;}
.yfa{bottom:953.893333pt;}
.y57{bottom:958.693333pt;}
.ybd{bottom:962.853333pt;}
.yf9{bottom:969.893333pt;}
.y56{bottom:974.053333pt;}
.yb9{bottom:978.853333pt;}
.yf8{bottom:985.893333pt;}
.y55{bottom:989.413333pt;}
.ybc{bottom:998.053333pt;}
.y54{bottom:1004.773333pt;}
.y53{bottom:1020.160000pt;}
.h27{height:15.200000pt;}
.h22{height:15.360000pt;}
.h2c{height:15.392000pt;}
.h23{height:17.120000pt;}
.h2a{height:18.400000pt;}
.h25{height:18.560000pt;}
.h29{height:18.592000pt;}
.h32{height:21.920000pt;}
.hd{height:22.080000pt;}
.h14{height:25.750000pt;}
.h16{height:26.240000pt;}
.h15{height:26.375000pt;}
.h2e{height:29.440000pt;}
.h21{height:30.720000pt;}
.h31{height:30.752000pt;}
.h33{height:31.360000pt;}
.h13{height:31.828125pt;}
.h9{height:32.160000pt;}
.h24{height:34.560000pt;}
.h20{height:35.342500pt;}
.h1d{height:36.562188pt;}
.h1b{height:37.479688pt;}
.h28{height:37.792000pt;}
.h1c{height:38.413438pt;}
.h5{height:38.625000pt;}
.h34{height:38.672812pt;}
.hf{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1e{height:41.672500pt;}
.h1a{height:42.649687pt;}
.h12{height:42.944375pt;}
.h1f{height:43.782500pt;}
.h2{height:44.032000pt;}
.h17{height:45.156250pt;}
.h2d{height:45.472000pt;}
.h2f{height:45.920000pt;}
.h30{height:46.080000pt;}
.h7{height:46.281250pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h11{height:52.834688pt;}
.h10{height:56.160000pt;}
.h6{height:60.288750pt;}
.hc{height:63.656250pt;}
.h18{height:65.531250pt;}
.h26{height:79.360000pt;}
.h2b{height:79.392000pt;}
.h8{height:108.032000pt;}
.he{height:175.226667pt;}
.h19{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4d{width:3.840000pt;}
.w4e{width:4.000000pt;}
.w3a{width:4.480000pt;}
.w3d{width:4.640000pt;}
.w41{width:6.560000pt;}
.w44{width:6.720000pt;}
.w4c{width:43.840000pt;}
.w46{width:45.760000pt;}
.w3{width:64.960000pt;}
.w28{width:65.472000pt;}
.w27{width:65.600000pt;}
.w16{width:66.400000pt;}
.w15{width:66.432000pt;}
.w14{width:66.560000pt;}
.w17{width:66.880000pt;}
.w1d{width:68.672000pt;}
.w1e{width:68.800000pt;}
.w22{width:68.832000pt;}
.w21{width:68.960000pt;}
.w1f{width:68.992000pt;}
.w3c{width:70.880000pt;}
.w35{width:76.000000pt;}
.w29{width:77.600000pt;}
.w36{width:82.240000pt;}
.w2b{width:86.080000pt;}
.w2a{width:86.272000pt;}
.w1a{width:88.512000pt;}
.w19{width:88.640000pt;}
.w18{width:88.672000pt;}
.w47{width:90.912000pt;}
.w38{width:91.840000pt;}
.w37{width:91.872000pt;}
.w32{width:92.672000pt;}
.w33{width:97.472000pt;}
.w3b{width:104.512000pt;}
.w2e{width:108.352000pt;}
.w20{width:108.480000pt;}
.w24{width:117.152000pt;}
.w11{width:117.792000pt;}
.w3e{width:121.920000pt;}
.w39{width:127.872000pt;}
.w2f{width:128.032000pt;}
.w23{width:128.160000pt;}
.w30{width:128.192000pt;}
.wc{width:129.920000pt;}
.wb{width:129.952000pt;}
.wa{width:130.112000pt;}
.w5{width:135.066667pt;}
.wf{width:142.400000pt;}
.w42{width:153.626667pt;}
.w31{width:157.146667pt;}
.wd{width:162.426667pt;}
.w10{width:162.586667pt;}
.w3f{width:166.586667pt;}
.w45{width:174.586667pt;}
.we{width:182.466667pt;}
.w48{width:184.986667pt;}
.w49{width:185.146667pt;}
.w4f{width:187.866667pt;}
.w40{width:188.386667pt;}
.w4a{width:188.826667pt;}
.w4b{width:190.786667pt;}
.w8{width:198.626667pt;}
.w25{width:258.626667pt;}
.w12{width:265.986667pt;}
.w13{width:266.266667pt;}
.w43{width:273.946667pt;}
.w26{width:274.106667pt;}
.w1b{width:314.946667pt;}
.w2c{width:324.546667pt;}
.w2d{width:325.346667pt;}
.w1c{width:334.946667pt;}
.w9{width:451.266667pt;}
.w34{width:459.746667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x45{left:0.960000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xc{left:14.752000pt;}
.xb{left:25.152000pt;}
.x10{left:43.232000pt;}
.x67{left:66.879988pt;}
.x1{left:72.000000pt;}
.x44{left:74.080000pt;}
.x4{left:87.226667pt;}
.x68{left:90.911988pt;}
.x65{left:96.031988pt;}
.x14{left:120.031988pt;}
.x5d{left:125.151988pt;}
.xd{left:126.746667pt;}
.x29{left:140.666667pt;}
.xf{left:151.706667pt;}
.x27{left:158.426655pt;}
.xe{left:160.186667pt;}
.x5a{left:162.906667pt;}
.x3e{left:164.666667pt;}
.x39{left:180.346667pt;}
.x2f{left:181.306655pt;}
.x20{left:189.786667pt;}
.x11{left:191.266667pt;}
.x16{left:202.106667pt;}
.x46{left:204.026667pt;}
.x5{left:207.066667pt;}
.x2a{left:209.466667pt;}
.x47{left:210.426667pt;}
.x36{left:212.506655pt;}
.x59{left:218.426655pt;}
.x4e{left:227.066655pt;}
.x1b{left:234.426667pt;}
.x3d{left:236.026655pt;}
.x38{left:237.946655pt;}
.x8{left:241.986667pt;}
.x37{left:248.866655pt;}
.x2e{left:250.786655pt;}
.x15{left:261.026655pt;}
.x3f{left:262.146667pt;}
.x4f{left:264.546667pt;}
.x5e{left:266.786667pt;}
.x1a{left:268.706655pt;}
.x12{left:270.626667pt;}
.x50{left:273.186667pt;}
.x2d{left:274.466655pt;}
.x34{left:275.426667pt;}
.x25{left:278.466667pt;}
.x6{left:295.106667pt;}
.x43{left:297.826655pt;}
.x3a{left:308.386667pt;}
.x7{left:312.226667pt;}
.x48{left:317.026667pt;}
.x5f{left:318.466667pt;}
.x1e{left:323.906655pt;}
.xa{left:324.866667pt;}
.x17{left:332.066667pt;}
.x40{left:338.146667pt;}
.x5b{left:347.906667pt;}
.x66{left:352.066655pt;}
.x35{left:361.506667pt;}
.x26{left:367.106667pt;}
.x28{left:386.946667pt;}
.x9{left:390.666667pt;}
.x1f{left:396.866667pt;}
.x49{left:402.946667pt;}
.x4a{left:409.666667pt;}
.x1c{left:416.893333pt;}
.x51{left:428.893333pt;}
.x3b{left:436.573333pt;}
.x53{left:446.013333pt;}
.x30{left:447.773333pt;}
.x54{left:454.653333pt;}
.x21{left:455.613333pt;}
.x18{left:462.013333pt;}
.x55{left:463.293333pt;}
.x56{left:471.773333pt;}
.x31{left:513.213333pt;}
.x60{left:514.333333pt;}
.x61{left:520.093333pt;}
.x22{left:522.173333pt;}
.x2b{left:524.893333pt;}
.x62{left:526.013333pt;}
.x63{left:531.933333pt;}
.x5c{left:533.053333pt;}
.x41{left:538.173333pt;}
.x4b{left:540.093333pt;}
.x4c{left:546.653333pt;}
.x4d{left:553.213333pt;}
.x1d{left:559.293333pt;}
.x3c{left:564.733333pt;}
.x32{left:578.813333pt;}
.x23{left:588.613333pt;}
.x19{left:591.973333pt;}
.x2c{left:593.733333pt;}
.x42{left:630.053333pt;}
.x33{left:644.293333pt;}
.x57{left:648.293333pt;}
.x24{left:655.013333pt;}
.x3{left:656.933333pt;}
.x64{left:660.933322pt;}
.x58{left:665.573333pt;}
.x52{left:713.253333pt;}
}




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