
    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_af4134d45ab53106dea67828.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_64b7edcbff5633ae63e04f39.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_91150d63ff1410b71aaa381b.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_7c7e82660a7f4a6c4c101108.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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d74b4ace65817fba3430d716.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_6ef13545d3e427b503e891dd.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_d9ca5434f97e3db87bc90eeb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f6cba6cd48f74b05c776299b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b28e7d5ea9fb0c08d6c5f70e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1a07e46e315f02760b18469a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_777b1f71462a5602a2dc9761.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5a63350478213f3ea7597c6e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_84c7f405a2e022614e1f833c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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_848d227a6af0b3691e9714b3.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b18fd693ee15763cb093ddfa.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls18{letter-spacing:-2.520000px;}
.lsc{letter-spacing:-2.076000px;}
.lsb{letter-spacing:-1.596000px;}
.lsa{letter-spacing:-1.356000px;}
.ls10{letter-spacing:-0.460200px;}
.lsf{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.298200px;}
.lse{letter-spacing:-0.208800px;}
.ls9{letter-spacing:-0.127200px;}
.ls19{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls17{letter-spacing:0.153600px;}
.ls12{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.312000px;}
.ls6{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls13{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.786240px;}
.ls1c{letter-spacing:16.506720px;}
.ls1b{letter-spacing:46.026720px;}
.ls14{letter-spacing:64.026720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws3{word-spacing:-22.231200px;}
.ws4{word-spacing:-21.991200px;}
.ws5{word-spacing:-21.511200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsf{word-spacing:-15.300000px;}
.wse{word-spacing:-15.252000px;}
.ws10{word-spacing:-15.238800px;}
.ws12{word-spacing:-15.093600px;}
.ws14{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.296960px;}
.ws11{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.186000px;}
.wsd{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._17{margin-left:-7.620720px;}
._4{margin-left:-5.557680px;}
._16{margin-left:-4.482000px;}
._2{margin-left:-3.246480px;}
._3{margin-left:-2.203200px;}
._0{margin-left:-1.134000px;}
._1{width:1.038000px;}
._5{width:2.155440px;}
._9{width:3.944160px;}
._8{width:5.856480px;}
._7{width:6.969840px;}
._11{width:8.184480px;}
._10{width:9.231600px;}
._f{width:10.615200px;}
._15{width:12.146640px;}
._12{width:13.640880px;}
._19{width:15.955200px;}
._18{width:17.030160px;}
._6{width:18.286560px;}
._e{width:19.437600px;}
._b{width:20.689920px;}
._a{width:22.051440px;}
._d{width:23.169840px;}
._c{width:24.240480px;}
._13{width:25.457760px;}
._14{width:26.593200px;}
._1a{width:31.906800px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.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;}
.y32{bottom:3.240000px;}
.ya3{bottom:3.270000px;}
.y3{bottom:3.600000px;}
.y37{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y35{bottom:10.620000px;}
.ycb{bottom:11.880000px;}
.yb3{bottom:12.240000px;}
.y19{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.y31{bottom:20.520000px;}
.y36{bottom:22.320000px;}
.y17{bottom:23.940000px;}
.y34{bottom:25.200000px;}
.y25{bottom:29.160000px;}
.yb{bottom:30.240000px;}
.y30{bottom:37.800000px;}
.y16{bottom:40.320000px;}
.y24{bottom:46.620000px;}
.ya{bottom:46.650000px;}
.y15{bottom:52.740000px;}
.y2f{bottom:55.080000px;}
.y5{bottom:58.680000px;}
.y23{bottom:63.900000px;}
.y14{bottom:67.500000px;}
.y2e{bottom:72.360000px;}
.y9{bottom:73.470000px;}
.y22{bottom:81.180000px;}
.y1{bottom:81.216000px;}
.y13{bottom:82.800000px;}
.y2d{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y21{bottom:99.000000px;}
.y12{bottom:101.700000px;}
.y2c{bottom:106.740000px;}
.y7{bottom:111.450000px;}
.y20{bottom:116.460000px;}
.y2b{bottom:124.020000px;}
.y11{bottom:127.440000px;}
.y91{bottom:129.996000px;}
.y100{bottom:132.156000px;}
.yf9{bottom:132.336000px;}
.y1f{bottom:133.560000px;}
.ybd{bottom:137.916000px;}
.y2a{bottom:141.300000px;}
.y90{bottom:147.096000px;}
.y52{bottom:148.896000px;}
.yff{bottom:149.256000px;}
.yf8{bottom:149.436000px;}
.y1e{bottom:150.300000px;}
.y10{bottom:151.920000px;}
.ybc{bottom:156.270000px;}
.y29{bottom:158.580000px;}
.y8f{bottom:164.370000px;}
.y51{bottom:165.990000px;}
.yfe{bottom:166.530000px;}
.yf7{bottom:166.710000px;}
.y1d{bottom:167.760000px;}
.ybb{bottom:174.630000px;}
.y28{bottom:175.860000px;}
.y8e{bottom:181.650000px;}
.y50{bottom:183.270000px;}
.yfd{bottom:183.810000px;}
.yf6{bottom:183.990000px;}
.yba{bottom:189.390000px;}
.y27{bottom:192.960000px;}
.y1c{bottom:195.300000px;}
.y8d{bottom:198.930000px;}
.y4f{bottom:200.550000px;}
.yfc{bottom:201.090000px;}
.yf5{bottom:201.270000px;}
.yb9{bottom:207.390000px;}
.y26{bottom:210.240000px;}
.y1b{bottom:212.940000px;}
.y8c{bottom:216.210000px;}
.y4e{bottom:217.830000px;}
.yfb{bottom:218.370000px;}
.yf4{bottom:218.550000px;}
.yb8{bottom:225.390000px;}
.y8b{bottom:234.390000px;}
.y4d{bottom:235.110000px;}
.yfa{bottom:235.470000px;}
.yf3{bottom:235.830000px;}
.yb7{bottom:243.390000px;}
.y4c{bottom:252.390000px;}
.y8a{bottom:252.750000px;}
.yf2{bottom:252.930000px;}
.yb6{bottom:261.390000px;}
.y4b{bottom:269.490000px;}
.y89{bottom:270.030000px;}
.yf1{bottom:270.210000px;}
.yb5{bottom:279.390000px;}
.y4a{bottom:286.770000px;}
.y88{bottom:287.310000px;}
.yf0{bottom:287.490000px;}
.yb2{bottom:297.390000px;}
.y49{bottom:304.050000px;}
.y87{bottom:304.590000px;}
.yef{bottom:304.770000px;}
.yb4{bottom:315.390000px;}
.y48{bottom:321.330000px;}
.y86{bottom:321.870000px;}
.yee{bottom:322.050000px;}
.yb1{bottom:336.675000px;}
.y47{bottom:338.655000px;}
.y85{bottom:339.015000px;}
.yed{bottom:339.195000px;}
.yb0{bottom:353.775000px;}
.y46{bottom:355.935000px;}
.y84{bottom:356.295000px;}
.yec{bottom:356.475000px;}
.yaf{bottom:371.055000px;}
.y45{bottom:373.035000px;}
.y83{bottom:373.575000px;}
.yeb{bottom:373.755000px;}
.yae{bottom:385.815000px;}
.y44{bottom:390.315000px;}
.y82{bottom:390.855000px;}
.yea{bottom:391.035000px;}
.yad{bottom:403.815000px;}
.y43{bottom:407.595000px;}
.y81{bottom:408.135000px;}
.ye9{bottom:408.315000px;}
.yac{bottom:421.815000px;}
.y42{bottom:424.875000px;}
.y80{bottom:425.415000px;}
.ye8{bottom:425.595000px;}
.yab{bottom:439.815000px;}
.y41{bottom:442.155000px;}
.y7f{bottom:442.515000px;}
.ye7{bottom:442.695000px;}
.yaa{bottom:457.815000px;}
.y40{bottom:459.255000px;}
.y7e{bottom:459.795000px;}
.ye6{bottom:459.975000px;}
.ya9{bottom:475.815000px;}
.y3f{bottom:476.535000px;}
.y7d{bottom:477.075000px;}
.ye5{bottom:477.255000px;}
.y3e{bottom:493.815000px;}
.y7c{bottom:494.355000px;}
.ye4{bottom:494.535000px;}
.y3d{bottom:511.095000px;}
.y7b{bottom:511.635000px;}
.ya8{bottom:511.815000px;}
.y3c{bottom:528.375000px;}
.y7a{bottom:528.735000px;}
.ye3{bottom:529.095000px;}
.ya7{bottom:533.055000px;}
.y3b{bottom:545.655000px;}
.y79{bottom:546.015000px;}
.ye2{bottom:546.195000px;}
.ya6{bottom:550.335000px;}
.y3a{bottom:562.755000px;}
.y78{bottom:563.295000px;}
.ye1{bottom:563.475000px;}
.ya5{bottom:567.615000px;}
.y39{bottom:580.035000px;}
.y77{bottom:580.575000px;}
.ye0{bottom:580.755000px;}
.ya4{bottom:584.895000px;}
.y38{bottom:597.315000px;}
.y76{bottom:597.855000px;}
.ydf{bottom:598.035000px;}
.ya2{bottom:600.735000px;}
.y33{bottom:611.385000px;}
.y75{bottom:615.165000px;}
.yde{bottom:615.345000px;}
.ya1{bottom:618.765000px;}
.y74{bottom:632.265000px;}
.ydd{bottom:632.625000px;}
.ya0{bottom:636.765000px;}
.y1a{bottom:647.925000px;}
.y73{bottom:649.545000px;}
.ydc{bottom:649.725000px;}
.y9f{bottom:654.765000px;}
.y72{bottom:666.825000px;}
.ydb{bottom:667.005000px;}
.y9e{bottom:676.005000px;}
.y71{bottom:684.105000px;}
.yda{bottom:684.285000px;}
.y9d{bottom:693.105000px;}
.y70{bottom:701.385000px;}
.yd9{bottom:701.565000px;}
.y9c{bottom:710.385000px;}
.yd8{bottom:716.325000px;}
.y6f{bottom:718.665000px;}
.y9b{bottom:726.225000px;}
.yd7{bottom:734.325000px;}
.y6e{bottom:735.765000px;}
.y9a{bottom:744.225000px;}
.yd6{bottom:752.325000px;}
.y6d{bottom:753.045000px;}
.y99{bottom:762.225000px;}
.y6c{bottom:770.325000px;}
.y98{bottom:780.225000px;}
.y6b{bottom:787.605000px;}
.yd5{bottom:788.325000px;}
.y97{bottom:798.225000px;}
.y6a{bottom:804.885000px;}
.yd4{bottom:806.325000px;}
.y96{bottom:816.225000px;}
.y69{bottom:822.165000px;}
.yd3{bottom:824.325000px;}
.y95{bottom:834.225000px;}
.y68{bottom:839.265000px;}
.yd2{bottom:845.565000px;}
.y94{bottom:855.465000px;}
.y67{bottom:856.545000px;}
.yd1{bottom:862.845000px;}
.y18{bottom:872.250000px;}
.y93{bottom:872.790000px;}
.y66{bottom:873.870000px;}
.yd0{bottom:879.990000px;}
.y92{bottom:890.070000px;}
.y65{bottom:891.150000px;}
.ycf{bottom:897.270000px;}
.yf{bottom:901.770000px;}
.y64{bottom:908.430000px;}
.yce{bottom:914.550000px;}
.y63{bottom:925.530000px;}
.ycd{bottom:929.310000px;}
.y62{bottom:942.810000px;}
.ycc{bottom:947.310000px;}
.y61{bottom:960.090000px;}
.yca{bottom:965.310000px;}
.y60{bottom:977.370000px;}
.y5f{bottom:994.650000px;}
.yc9{bottom:1000.590000px;}
.y5e{bottom:1011.930000px;}
.yc8{bottom:1018.590000px;}
.y5d{bottom:1029.030000px;}
.yc7{bottom:1036.590000px;}
.y5c{bottom:1046.310000px;}
.yc6{bottom:1054.590000px;}
.y5b{bottom:1063.590000px;}
.yd{bottom:1068.810000px;}
.yc5{bottom:1072.590000px;}
.y5a{bottom:1080.870000px;}
.yc4{bottom:1093.830000px;}
.y6{bottom:1094.010000px;}
.y59{bottom:1098.150000px;}
.yc3{bottom:1111.110000px;}
.y58{bottom:1115.430000px;}
.yc2{bottom:1128.210000px;}
.y57{bottom:1132.530000px;}
.yc1{bottom:1145.520000px;}
.y56{bottom:1149.840000px;}
.yc0{bottom:1163.880000px;}
.y55{bottom:1167.120000px;}
.ybf{bottom:1182.240000px;}
.y54{bottom:1184.400000px;}
.ybe{bottom:1200.600000px;}
.y53{bottom:1201.680000px;}
.h21{height:17.100000px;}
.h22{height:17.136000px;}
.h20{height:17.280000px;}
.hb{height:24.840000px;}
.h12{height:29.520000px;}
.h2{height:32.940000px;}
.h24{height:34.560000px;}
.h23{height:35.100000px;}
.h8{height:36.180000px;}
.h1b{height:36.540000px;}
.h19{height:38.818125px;}
.h1a{height:41.726953px;}
.h1d{height:42.164648px;}
.h1e{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1f{height:48.027656px;}
.h1c{height:48.088125px;}
.h18{height:49.255313px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h11{height:56.493281px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:167.040000px;}
.h14{height:224.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w17{width:134.640000px;}
.w5{width:151.950000px;}
.w16{width:157.350000px;}
.w1a{width:187.050000px;}
.w1d{width:191.910000px;}
.w12{width:199.650000px;}
.w15{width:207.930000px;}
.w19{width:209.370000px;}
.wf{width:217.830000px;}
.w1c{width:218.730000px;}
.w8{width:223.275000px;}
.w11{width:223.950000px;}
.wc{width:224.310000px;}
.w13{width:245.595000px;}
.we{width:247.530000px;}
.wb{width:255.810000px;}
.wa{width:265.035000px;}
.wd{width:280.515000px;}
.w10{width:322.275000px;}
.w1b{width:335.235000px;}
.w18{width:349.455000px;}
.w14{width:500.655000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x13{left:12.600000px;}
.xc{left:34.236000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x14{left:108.035987px;}
.xd{left:127.110000px;}
.x1b{left:135.035987px;}
.x10{left:179.310000px;}
.xf{left:198.210000px;}
.x11{left:215.175000px;}
.x6{left:224.850000px;}
.x26{left:237.269987px;}
.xe{left:256.035000px;}
.x9{left:288.435000px;}
.x12{left:296.175000px;}
.x1f{left:308.594987px;}
.x20{left:319.215000px;}
.x1c{left:327.134987px;}
.x17{left:339.015000px;}
.x23{left:345.134987px;}
.x7{left:348.195000px;}
.x19{left:354.135000px;}
.x16{left:358.094987px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x1d{left:395.895000px;}
.x27{left:408.855000px;}
.x24{left:423.075000px;}
.x15{left:446.474987px;}
.xa{left:455.700000px;}
.x21{left:527.505000px;}
.x18{left:595.545000px;}
.x1a{left:602.025000px;}
.x1e{left:620.205000px;}
.x28{left:627.945000px;}
.x25{left:632.805000px;}
.x22{left:685.230000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls18{letter-spacing:-2.240000pt;}
.lsc{letter-spacing:-1.845333pt;}
.lsb{letter-spacing:-1.418667pt;}
.lsa{letter-spacing:-1.205333pt;}
.ls10{letter-spacing:-0.409067pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.265067pt;}
.lse{letter-spacing:-0.185600pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls17{letter-spacing:0.136533pt;}
.ls12{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.277333pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls13{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls1c{letter-spacing:14.672640pt;}
.ls1b{letter-spacing:40.912640pt;}
.ls14{letter-spacing:56.912640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws3{word-spacing:-19.761067pt;}
.ws4{word-spacing:-19.547733pt;}
.ws5{word-spacing:-19.121067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsf{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.557333pt;}
.ws10{word-spacing:-13.545600pt;}
.ws12{word-spacing:-13.416533pt;}
.ws14{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.819520pt;}
.ws11{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.832000pt;}
.wsd{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._17{margin-left:-6.773973pt;}
._4{margin-left:-4.940160pt;}
._16{margin-left:-3.984000pt;}
._2{margin-left:-2.885760pt;}
._3{margin-left:-1.958400pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.922667pt;}
._5{width:1.915947pt;}
._9{width:3.505920pt;}
._8{width:5.205760pt;}
._7{width:6.195413pt;}
._11{width:7.275093pt;}
._10{width:8.205867pt;}
._f{width:9.435733pt;}
._15{width:10.797013pt;}
._12{width:12.125227pt;}
._19{width:14.182400pt;}
._18{width:15.137920pt;}
._6{width:16.254720pt;}
._e{width:17.277867pt;}
._b{width:18.391040pt;}
._a{width:19.601280pt;}
._d{width:20.595413pt;}
._c{width:21.547093pt;}
._13{width:22.629120pt;}
._14{width:23.638400pt;}
._1a{width:28.361600pt;}
.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;}
.y32{bottom:2.880000pt;}
.ya3{bottom:2.906667pt;}
.y3{bottom:3.200000pt;}
.y37{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y35{bottom:9.440000pt;}
.ycb{bottom:10.560000pt;}
.yb3{bottom:10.880000pt;}
.y19{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.y31{bottom:18.240000pt;}
.y36{bottom:19.840000pt;}
.y17{bottom:21.280000pt;}
.y34{bottom:22.400000pt;}
.y25{bottom:25.920000pt;}
.yb{bottom:26.880000pt;}
.y30{bottom:33.600000pt;}
.y16{bottom:35.840000pt;}
.y24{bottom:41.440000pt;}
.ya{bottom:41.466667pt;}
.y15{bottom:46.880000pt;}
.y2f{bottom:48.960000pt;}
.y5{bottom:52.160000pt;}
.y23{bottom:56.800000pt;}
.y14{bottom:60.000000pt;}
.y2e{bottom:64.320000pt;}
.y9{bottom:65.306667pt;}
.y22{bottom:72.160000pt;}
.y1{bottom:72.192000pt;}
.y13{bottom:73.600000pt;}
.y2d{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y21{bottom:88.000000pt;}
.y12{bottom:90.400000pt;}
.y2c{bottom:94.880000pt;}
.y7{bottom:99.066667pt;}
.y20{bottom:103.520000pt;}
.y2b{bottom:110.240000pt;}
.y11{bottom:113.280000pt;}
.y91{bottom:115.552000pt;}
.y100{bottom:117.472000pt;}
.yf9{bottom:117.632000pt;}
.y1f{bottom:118.720000pt;}
.ybd{bottom:122.592000pt;}
.y2a{bottom:125.600000pt;}
.y90{bottom:130.752000pt;}
.y52{bottom:132.352000pt;}
.yff{bottom:132.672000pt;}
.yf8{bottom:132.832000pt;}
.y1e{bottom:133.600000pt;}
.y10{bottom:135.040000pt;}
.ybc{bottom:138.906667pt;}
.y29{bottom:140.960000pt;}
.y8f{bottom:146.106667pt;}
.y51{bottom:147.546667pt;}
.yfe{bottom:148.026667pt;}
.yf7{bottom:148.186667pt;}
.y1d{bottom:149.120000pt;}
.ybb{bottom:155.226667pt;}
.y28{bottom:156.320000pt;}
.y8e{bottom:161.466667pt;}
.y50{bottom:162.906667pt;}
.yfd{bottom:163.386667pt;}
.yf6{bottom:163.546667pt;}
.yba{bottom:168.346667pt;}
.y27{bottom:171.520000pt;}
.y1c{bottom:173.600000pt;}
.y8d{bottom:176.826667pt;}
.y4f{bottom:178.266667pt;}
.yfc{bottom:178.746667pt;}
.yf5{bottom:178.906667pt;}
.yb9{bottom:184.346667pt;}
.y26{bottom:186.880000pt;}
.y1b{bottom:189.280000pt;}
.y8c{bottom:192.186667pt;}
.y4e{bottom:193.626667pt;}
.yfb{bottom:194.106667pt;}
.yf4{bottom:194.266667pt;}
.yb8{bottom:200.346667pt;}
.y8b{bottom:208.346667pt;}
.y4d{bottom:208.986667pt;}
.yfa{bottom:209.306667pt;}
.yf3{bottom:209.626667pt;}
.yb7{bottom:216.346667pt;}
.y4c{bottom:224.346667pt;}
.y8a{bottom:224.666667pt;}
.yf2{bottom:224.826667pt;}
.yb6{bottom:232.346667pt;}
.y4b{bottom:239.546667pt;}
.y89{bottom:240.026667pt;}
.yf1{bottom:240.186667pt;}
.yb5{bottom:248.346667pt;}
.y4a{bottom:254.906667pt;}
.y88{bottom:255.386667pt;}
.yf0{bottom:255.546667pt;}
.yb2{bottom:264.346667pt;}
.y49{bottom:270.266667pt;}
.y87{bottom:270.746667pt;}
.yef{bottom:270.906667pt;}
.yb4{bottom:280.346667pt;}
.y48{bottom:285.626667pt;}
.y86{bottom:286.106667pt;}
.yee{bottom:286.266667pt;}
.yb1{bottom:299.266667pt;}
.y47{bottom:301.026667pt;}
.y85{bottom:301.346667pt;}
.yed{bottom:301.506667pt;}
.yb0{bottom:314.466667pt;}
.y46{bottom:316.386667pt;}
.y84{bottom:316.706667pt;}
.yec{bottom:316.866667pt;}
.yaf{bottom:329.826667pt;}
.y45{bottom:331.586667pt;}
.y83{bottom:332.066667pt;}
.yeb{bottom:332.226667pt;}
.yae{bottom:342.946667pt;}
.y44{bottom:346.946667pt;}
.y82{bottom:347.426667pt;}
.yea{bottom:347.586667pt;}
.yad{bottom:358.946667pt;}
.y43{bottom:362.306667pt;}
.y81{bottom:362.786667pt;}
.ye9{bottom:362.946667pt;}
.yac{bottom:374.946667pt;}
.y42{bottom:377.666667pt;}
.y80{bottom:378.146667pt;}
.ye8{bottom:378.306667pt;}
.yab{bottom:390.946667pt;}
.y41{bottom:393.026667pt;}
.y7f{bottom:393.346667pt;}
.ye7{bottom:393.506667pt;}
.yaa{bottom:406.946667pt;}
.y40{bottom:408.226667pt;}
.y7e{bottom:408.706667pt;}
.ye6{bottom:408.866667pt;}
.ya9{bottom:422.946667pt;}
.y3f{bottom:423.586667pt;}
.y7d{bottom:424.066667pt;}
.ye5{bottom:424.226667pt;}
.y3e{bottom:438.946667pt;}
.y7c{bottom:439.426667pt;}
.ye4{bottom:439.586667pt;}
.y3d{bottom:454.306667pt;}
.y7b{bottom:454.786667pt;}
.ya8{bottom:454.946667pt;}
.y3c{bottom:469.666667pt;}
.y7a{bottom:469.986667pt;}
.ye3{bottom:470.306667pt;}
.ya7{bottom:473.826667pt;}
.y3b{bottom:485.026667pt;}
.y79{bottom:485.346667pt;}
.ye2{bottom:485.506667pt;}
.ya6{bottom:489.186667pt;}
.y3a{bottom:500.226667pt;}
.y78{bottom:500.706667pt;}
.ye1{bottom:500.866667pt;}
.ya5{bottom:504.546667pt;}
.y39{bottom:515.586667pt;}
.y77{bottom:516.066667pt;}
.ye0{bottom:516.226667pt;}
.ya4{bottom:519.906667pt;}
.y38{bottom:530.946667pt;}
.y76{bottom:531.426667pt;}
.ydf{bottom:531.586667pt;}
.ya2{bottom:533.986667pt;}
.y33{bottom:543.453333pt;}
.y75{bottom:546.813333pt;}
.yde{bottom:546.973333pt;}
.ya1{bottom:550.013333pt;}
.y74{bottom:562.013333pt;}
.ydd{bottom:562.333333pt;}
.ya0{bottom:566.013333pt;}
.y1a{bottom:575.933333pt;}
.y73{bottom:577.373333pt;}
.ydc{bottom:577.533333pt;}
.y9f{bottom:582.013333pt;}
.y72{bottom:592.733333pt;}
.ydb{bottom:592.893333pt;}
.y9e{bottom:600.893333pt;}
.y71{bottom:608.093333pt;}
.yda{bottom:608.253333pt;}
.y9d{bottom:616.093333pt;}
.y70{bottom:623.453333pt;}
.yd9{bottom:623.613333pt;}
.y9c{bottom:631.453333pt;}
.yd8{bottom:636.733333pt;}
.y6f{bottom:638.813333pt;}
.y9b{bottom:645.533333pt;}
.yd7{bottom:652.733333pt;}
.y6e{bottom:654.013333pt;}
.y9a{bottom:661.533333pt;}
.yd6{bottom:668.733333pt;}
.y6d{bottom:669.373333pt;}
.y99{bottom:677.533333pt;}
.y6c{bottom:684.733333pt;}
.y98{bottom:693.533333pt;}
.y6b{bottom:700.093333pt;}
.yd5{bottom:700.733333pt;}
.y97{bottom:709.533333pt;}
.y6a{bottom:715.453333pt;}
.yd4{bottom:716.733333pt;}
.y96{bottom:725.533333pt;}
.y69{bottom:730.813333pt;}
.yd3{bottom:732.733333pt;}
.y95{bottom:741.533333pt;}
.y68{bottom:746.013333pt;}
.yd2{bottom:751.613333pt;}
.y94{bottom:760.413333pt;}
.y67{bottom:761.373333pt;}
.yd1{bottom:766.973333pt;}
.y18{bottom:775.333333pt;}
.y93{bottom:775.813333pt;}
.y66{bottom:776.773333pt;}
.yd0{bottom:782.213333pt;}
.y92{bottom:791.173333pt;}
.y65{bottom:792.133333pt;}
.ycf{bottom:797.573333pt;}
.yf{bottom:801.573333pt;}
.y64{bottom:807.493333pt;}
.yce{bottom:812.933333pt;}
.y63{bottom:822.693333pt;}
.ycd{bottom:826.053333pt;}
.y62{bottom:838.053333pt;}
.ycc{bottom:842.053333pt;}
.y61{bottom:853.413333pt;}
.yca{bottom:858.053333pt;}
.y60{bottom:868.773333pt;}
.y5f{bottom:884.133333pt;}
.yc9{bottom:889.413333pt;}
.y5e{bottom:899.493333pt;}
.yc8{bottom:905.413333pt;}
.y5d{bottom:914.693333pt;}
.yc7{bottom:921.413333pt;}
.y5c{bottom:930.053333pt;}
.yc6{bottom:937.413333pt;}
.y5b{bottom:945.413333pt;}
.yd{bottom:950.053333pt;}
.yc5{bottom:953.413333pt;}
.y5a{bottom:960.773333pt;}
.yc4{bottom:972.293333pt;}
.y6{bottom:972.453333pt;}
.y59{bottom:976.133333pt;}
.yc3{bottom:987.653333pt;}
.y58{bottom:991.493333pt;}
.yc2{bottom:1002.853333pt;}
.y57{bottom:1006.693333pt;}
.yc1{bottom:1018.240000pt;}
.y56{bottom:1022.080000pt;}
.yc0{bottom:1034.560000pt;}
.y55{bottom:1037.440000pt;}
.ybf{bottom:1050.880000pt;}
.y54{bottom:1052.800000pt;}
.ybe{bottom:1067.200000pt;}
.y53{bottom:1068.160000pt;}
.h21{height:15.200000pt;}
.h22{height:15.232000pt;}
.h20{height:15.360000pt;}
.hb{height:22.080000pt;}
.h12{height:26.240000pt;}
.h2{height:29.280000pt;}
.h24{height:30.720000pt;}
.h23{height:31.200000pt;}
.h8{height:32.160000pt;}
.h1b{height:32.480000pt;}
.h19{height:34.505000pt;}
.h1a{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h1e{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1f{height:42.691250pt;}
.h1c{height:42.745000pt;}
.h18{height:43.782500pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h11{height:50.216250pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:148.480000pt;}
.h14{height:199.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w17{width:119.680000pt;}
.w5{width:135.066667pt;}
.w16{width:139.866667pt;}
.w1a{width:166.266667pt;}
.w1d{width:170.586667pt;}
.w12{width:177.466667pt;}
.w15{width:184.826667pt;}
.w19{width:186.106667pt;}
.wf{width:193.626667pt;}
.w1c{width:194.426667pt;}
.w8{width:198.466667pt;}
.w11{width:199.066667pt;}
.wc{width:199.386667pt;}
.w13{width:218.306667pt;}
.we{width:220.026667pt;}
.wb{width:227.386667pt;}
.wa{width:235.586667pt;}
.wd{width:249.346667pt;}
.w10{width:286.466667pt;}
.w1b{width:297.986667pt;}
.w18{width:310.626667pt;}
.w14{width:445.026667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x13{left:11.200000pt;}
.xc{left:30.432000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x14{left:96.031988pt;}
.xd{left:112.986667pt;}
.x1b{left:120.031988pt;}
.x10{left:159.386667pt;}
.xf{left:176.186667pt;}
.x11{left:191.266667pt;}
.x6{left:199.866667pt;}
.x26{left:210.906655pt;}
.xe{left:227.586667pt;}
.x9{left:256.386667pt;}
.x12{left:263.266667pt;}
.x1f{left:274.306655pt;}
.x20{left:283.746667pt;}
.x1c{left:290.786655pt;}
.x17{left:301.346667pt;}
.x23{left:306.786655pt;}
.x7{left:309.506667pt;}
.x19{left:314.786667pt;}
.x16{left:318.306655pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x1d{left:351.906667pt;}
.x27{left:363.426667pt;}
.x24{left:376.066667pt;}
.x15{left:396.866655pt;}
.xa{left:405.066667pt;}
.x21{left:468.893333pt;}
.x18{left:529.373333pt;}
.x1a{left:535.133333pt;}
.x1e{left:551.293333pt;}
.x28{left:558.173333pt;}
.x25{left:562.493333pt;}
.x22{left:609.093333pt;}
.x3{left:663.013333pt;}
}




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