
    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_31d5545a492b76b5c0f02fe2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_ebc71f641ed6fa1f5e8f8646.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_3184c608b4878125a2d4c01d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_812c0227d10cc2662948a1bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_dc017a255b68bcfe6d7e7695.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_f1974326b9256a642ded010c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_faf3e4362de263f45fb6403a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_0ca329e392622d37e5e7d353.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_69774d298d7d3015fa7c4a46.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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:-23.760001px;}
.v3{vertical-align:-21.383997px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.135995px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000104px;}
.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:-29.999999px;}
.ws2{word-spacing:-17.490000px;}
.ws7{word-spacing:-17.094000px;}
.ws6{word-spacing:-15.900000px;}
.ws3{word-spacing:-15.642000px;}
.ws9{word-spacing:-14.310000px;}
.ws4{word-spacing:-10.494000px;}
.ws5{word-spacing:-9.540000px;}
.ws8{word-spacing:-8.586000px;}
.ws0{word-spacing:0.000000px;}
._26{margin-left:-16.799997px;}
._2a{margin-left:-13.199997px;}
._20{margin-left:-11.639997px;}
._1{margin-left:-8.812598px;}
._4{margin-left:-7.640947px;}
._6{margin-left:-6.555641px;}
._3{margin-left:-4.561531px;}
._2{margin-left:-3.324273px;}
._0{margin-left:-1.438724px;}
._5{width:1.566300px;}
._7{width:4.293426px;}
._23{width:5.349247px;}
._19{width:8.951839px;}
._15{width:13.054945px;}
._14{width:14.255444px;}
._24{width:17.328365px;}
._1a{width:18.531957px;}
._17{width:21.789804px;}
._18{width:23.041604px;}
._16{width:26.793424px;}
._1f{width:27.881487px;}
._1d{width:31.436435px;}
._21{width:35.099526px;}
._1c{width:36.336136px;}
._1b{width:40.277861px;}
._22{width:41.406318px;}
._29{width:44.648398px;}
._2d{width:45.831168px;}
._28{width:48.769758px;}
._25{width:49.798827px;}
._27{width:53.889110px;}
._31{width:54.944011px;}
._2c{width:57.616428px;}
._30{width:58.914147px;}
._2b{width:62.910842px;}
._2f{width:76.122152px;}
._2e{width:80.910842px;}
._1e{width:697.450191px;}
._d{width:799.273090px;}
._b{width:1207.085126px;}
._10{width:1449.284802px;}
._a{width:1474.015684px;}
._12{width:1531.764804px;}
._f{width:1761.392457px;}
._13{width:1882.224536px;}
._e{width:1884.975669px;}
._c{width:2091.870224px;}
._9{width:2235.169428px;}
._11{width:2298.389109px;}
._8{width:2429.706087px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(10,186,240);}
.fc0{color:rgb(69,84,107);}
.fs8{font-size:32.399999px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:39.600001px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:59.999999px;}
.fs1{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:83.999997px;}
.fs3{font-size:96.000003px;}
.fs2{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yc{bottom:11.969927px;}
.y1a{bottom:11.970109px;}
.y18{bottom:16.342398px;}
.y11{bottom:16.342406px;}
.y23{bottom:16.342574px;}
.y1c{bottom:16.342581px;}
.y15{bottom:16.342583px;}
.y38{bottom:20.969745px;}
.y9{bottom:20.969928px;}
.y3{bottom:20.969994px;}
.y12e{bottom:20.970293px;}
.y63{bottom:20.970294px;}
.yea{bottom:20.971026px;}
.y14{bottom:39.112478px;}
.y10{bottom:39.112479px;}
.y22{bottom:39.112484px;}
.y12d{bottom:58.769121px;}
.y8{bottom:58.769855px;}
.y2{bottom:58.769996px;}
.y62{bottom:58.770221px;}
.yf{bottom:61.882469px;}
.y21{bottom:61.882559px;}
.ye9{bottom:73.769115px;}
.y48{bottom:73.769850px;}
.y6{bottom:73.770030px;}
.ye{bottom:84.652457px;}
.y12b{bottom:111.569415px;}
.y60{bottom:111.570150px;}
.y1a7{bottom:132.517153px;}
.y12a{bottom:132.916410px;}
.ye8{bottom:137.774642px;}
.yc7{bottom:138.854940px;}
.y129{bottom:150.916411px;}
.y1a6{bottom:154.064325px;}
.y109{bottom:156.854235px;}
.y150{bottom:158.639892px;}
.ye7{bottom:160.544175px;}
.ya1{bottom:166.404294px;}
.yc6{bottom:169.374255px;}
.y128{bottom:174.856410px;}
.y108{bottom:179.624502px;}
.y14f{bottom:181.417244px;}
.ya0{bottom:189.173820px;}
.y173{bottom:190.936755px;}
.ye6{bottom:192.313709px;}
.y36{bottom:197.437365px;}
.y192{bottom:199.321517px;}
.yc5{bottom:201.143779px;}
.y107{bottom:202.393299px;}
.y127{bottom:208.150140px;}
.y9f{bottom:211.944087px;}
.y14e{bottom:213.237544px;}
.y172{bottom:213.707752px;}
.ye5{bottom:215.083972px;}
.y191{bottom:222.091050px;}
.yc4{bottom:223.914044px;}
.y106{bottom:225.164295px;}
.y35{bottom:229.207455px;}
.y9e{bottom:234.713617px;}
.y14d{bottom:236.013434px;}
.y171{bottom:236.475819px;}
.ye4{bottom:237.854235px;}
.y126{bottom:239.927489px;}
.y81{bottom:239.947491px;}
.yc3{bottom:246.684316px;}
.y105{bottom:247.933830px;}
.y190{bottom:253.860584px;}
.y9d{bottom:257.483880px;}
.y170{bottom:259.246815px;}
.y34{bottom:260.977530px;}
.y80{bottom:262.717386px;}
.y14c{bottom:267.841559px;}
.yc2{bottom:269.453841px;}
.ye3{bottom:269.624500px;}
.y104{bottom:270.704820px;}
.y125{bottom:271.755614px;}
.y18f{bottom:276.630114px;}
.y7f{bottom:285.487653px;}
.y16f{bottom:291.017807px;}
.yc1{bottom:292.224105px;}
.ye2{bottom:292.393304px;}
.y33{bottom:292.747605px;}
.y18e{bottom:299.401110px;}
.y14b{bottom:299.660385px;}
.y9c{bottom:301.591500px;}
.y103{bottom:302.473620px;}
.y124{bottom:303.580814px;}
.y7e{bottom:308.257552px;}
.y16e{bottom:313.787340px;}
.yc0{bottom:314.994372px;}
.ye1{bottom:315.164297px;}
.y32{bottom:315.517500px;}
.y102{bottom:325.251704px;}
.y7d{bottom:331.027815px;}
.y18d{bottom:331.170645px;}
.y14a{bottom:331.429929px;}
.y123{bottom:335.401110px;}
.ybf{bottom:337.763902px;}
.ye0{bottom:337.933830px;}
.y31{bottom:342.915120px;}
.y16d{bottom:345.556877px;}
.y149{bottom:354.200925px;}
.y101{bottom:357.071280px;}
.ybe{bottom:360.534165px;}
.y18c{bottom:362.940179px;}
.y9b{bottom:364.381641px;}
.y122{bottom:367.170636px;}
.y16c{bottom:368.326410px;}
.ydf{bottom:369.704821px;}
.y30{bottom:376.087515px;}
.y7c{bottom:377.804741px;}
.y100{bottom:379.847894px;}
.y18b{bottom:385.711172px;}
.y148{bottom:385.970454px;}
.y121{bottom:389.940171px;}
.ybd{bottom:392.303707px;}
.yde{bottom:392.473620px;}
.y16b{bottom:400.097400px;}
.y9a{bottom:405.781784px;}
.y2f{bottom:407.857410px;}
.y18a{bottom:408.480705px;}
.y147{bottom:408.741450px;}
.yff{bottom:411.668205px;}
.y120{bottom:412.711167px;}
.ybc{bottom:415.073970px;}
.y7b{bottom:419.205254px;}
.ydd{bottom:424.243890px;}
.y16a{bottom:431.866935px;}
.y11f{bottom:435.480697px;}
.y2e{bottom:439.627500px;}
.y189{bottom:440.250240px;}
.y146{bottom:440.510972px;}
.yfe{bottom:443.436997px;}
.ybb{bottom:446.843504px;}
.y169{bottom:454.644284px;}
.ydc{bottom:458.016120px;}
.y11e{bottom:458.250960px;}
.y145{bottom:463.280505px;}
.yfd{bottom:466.207260px;}
.y99{bottom:468.173817px;}
.yba{bottom:469.614497px;}
.y2d{bottom:471.397575px;}
.y7a{bottom:481.597651px;}
.y168{bottom:486.472409px;}
.y188{bottom:487.028609px;}
.y11d{bottom:490.019763px;}
.y98{bottom:490.944077px;}
.yb9{bottom:492.384030px;}
.y144{bottom:495.050040px;}
.yfc{bottom:497.977530px;}
.y1a5{bottom:500.090564px;}
.ydb{bottom:502.993890px;}
.y2c{bottom:503.167470px;}
.y79{bottom:504.367914px;}
.y11c{bottom:512.790764px;}
.y97{bottom:513.713610px;}
.y5f{bottom:518.227530px;}
.y167{bottom:518.297609px;}
.yfb{bottom:520.747800px;}
.y1a4{bottom:522.860094px;}
.yda{bottom:525.764157px;}
.yb8{bottom:526.156995px;}
.y143{bottom:526.821032px;}
.y78{bottom:527.137440px;}
.y2b{bottom:534.937365px;}
.y11b{bottom:535.560294px;}
.y5e{bottom:540.997428px;}
.yfa{bottom:543.517320px;}
.y96{bottom:545.483871px;}
.y1a3{bottom:545.631090px;}
.yd9{bottom:548.534417px;}
.y187{bottom:549.420645px;}
.y142{bottom:549.590565px;}
.y77{bottom:549.907707px;}
.y166{bottom:550.124264px;}
.y11a{bottom:558.331290px;}
.y5d{bottom:563.767327px;}
.y2a{bottom:566.707455px;}
.y95{bottom:568.254135px;}
.yb7{bottom:571.134027px;}
.yd8{bottom:571.303950px;}
.y186{bottom:572.190179px;}
.y76{bottom:572.677237px;}
.y1a2{bottom:577.400622px;}
.y141{bottom:581.360100px;}
.y165{bottom:581.950934px;}
.yf9{bottom:586.290300px;}
.y5c{bottom:586.537590px;}
.y119{bottom:590.100090px;}
.y94{bottom:591.023669px;}
.yb6{bottom:593.904287px;}
.y185{bottom:594.961172px;}
.y75{bottom:595.447500px;}
.y29{bottom:598.477530px;}
.y1a1{bottom:600.177974px;}
.yd7{bottom:603.073467px;}
.y164{bottom:613.769760px;}
.y93{bottom:613.793932px;}
.yb5{bottom:616.673820px;}
.y184{bottom:617.730705px;}
.y5b{bottom:618.307485px;}
.y118{bottom:621.878174px;}
.y1a0{bottom:622.998274px;}
.y140{bottom:625.469175px;}
.yd6{bottom:625.844469px;}
.y74{bottom:627.217398px;}
.y28{bottom:630.247605px;}
.yf8{bottom:631.267320px;}
.y92{bottom:636.564195px;}
.yb4{bottom:639.444075px;}
.y5a{bottom:641.077383px;}
.y163{bottom:645.540767px;}
.y19f{bottom:645.774164px;}
.yd5{bottom:648.613995px;}
.y183{bottom:649.500240px;}
.y73{bottom:649.987663px;}
.y117{bottom:653.704829px;}
.yf7{bottom:654.036855px;}
.y27{bottom:662.017500px;}
.yb3{bottom:662.221439px;}
.y59{bottom:663.847648px;}
.y162{bottom:668.310297px;}
.y19e{bottom:668.602289px;}
.yd4{bottom:671.384992px;}
.y72{bottom:672.757560px;}
.y182{bottom:681.277589px;}
.y13f{bottom:682.251210px;}
.y91{bottom:683.341109px;}
.y116{bottom:685.531499px;}
.yf6{bottom:685.807845px;}
.y58{bottom:686.617545px;}
.y161{bottom:691.087649px;}
.y19d{bottom:691.421142px;}
.y26{bottom:693.787590px;}
.yb2{bottom:694.040268px;}
.yd3{bottom:694.153792px;}
.y71{bottom:704.527816px;}
.y13e{bottom:705.020744px;}
.y25{bottom:709.215087px;}
.y24{bottom:712.185059px;}
.y181{bottom:713.097889px;}
.y19c{bottom:714.198494px;}
.yb1{bottom:716.811261px;}
.yd2{bottom:716.924055px;}
.y115{bottom:717.358154px;}
.y57{bottom:718.387437px;}
.y160{bottom:722.906484px;}
.y70{bottom:727.297350px;}
.y13d{bottom:727.790274px;}
.yf5{bottom:729.915465px;}
.y47{bottom:733.927605px;}
.y180{bottom:735.873779px;}
.yb0{bottom:739.587884px;}
.y20{bottom:740.984987px;}
.y56{bottom:741.157333px;}
.y15f{bottom:745.677482px;}
.y90{bottom:745.733872px;}
.y19b{bottom:746.017320px;}
.yd1{bottom:748.694320px;}
.y114{bottom:749.184809px;}
.y6f{bottom:750.067614px;}
.y13c{bottom:750.561270px;}
.y46{bottom:753.727530px;}
.y55{bottom:763.927230px;}
.y17f{bottom:767.701904px;}
.y15e{bottom:768.448474px;}
.y8f{bottom:768.504135px;}
.yaf{bottom:771.407462px;}
.yd0{bottom:771.464587px;}
.y6e{bottom:772.837143px;}
.y19a{bottom:777.786858px;}
.y45{bottom:778.027455px;}
.y113{bottom:781.003650px;}
.y13b{bottom:782.330792px;}
.yf4{bottom:786.697502px;}
.y1f{bottom:789.495118px;}
.y15d{bottom:791.224364px;}
.yae{bottom:794.176992px;}
.ycf{bottom:794.234117px;}
.y6d{bottom:795.607408px;}
.y54{bottom:795.697500px;}
.y17e{bottom:799.520745px;}
.y8e{bottom:800.273667px;}
.y199{bottom:800.557859px;}
.y44{bottom:802.327380px;}
.y13a{bottom:805.100325px;}
.yf3{bottom:809.467035px;}
.y112{bottom:812.780999px;}
.yad{bottom:816.954344px;}
.yce{bottom:817.003650px;}
.y1e{bottom:818.295042px;}
.y6c{bottom:818.377305px;}
.y53{bottom:818.467395px;}
.y1d{bottom:821.265014px;}
.y15c{bottom:823.044658px;}
.y8d{bottom:823.051754px;}
.y198{bottom:823.327389px;}
.y43{bottom:826.627500px;}
.y17d{bottom:831.298094px;}
.y139{bottom:836.871332px;}
.y52{bottom:841.237293px;}
.yf2{bottom:841.238027px;}
.y111{bottom:844.608404px;}
.y15b{bottom:845.812729px;}
.y197{bottom:846.098385px;}
.yac{bottom:848.774657px;}
.y1b{bottom:850.064934px;}
.y42{bottom:850.927605px;}
.y19{bottom:853.034906px;}
.y8c{bottom:854.870592px;}
.y138{bottom:859.640865px;}
.y17c{bottom:863.124749px;}
.y51{bottom:864.007558px;}
.yf1{bottom:864.007560px;}
.y6b{bottom:865.155314px;}
.y15a{bottom:868.583727px;}
.yab{bottom:871.544187px;}
.y41{bottom:875.227530px;}
.y110{bottom:876.427965px;}
.y8b{bottom:877.647944px;}
.y196{bottom:877.866440px;}
.y17{bottom:881.835027px;}
.y16{bottom:884.804999px;}
.y50{bottom:886.777455px;}
.y159{bottom:891.361079px;}
.y137{bottom:891.410385px;}
.yaa{bottom:894.321539px;}
.y17b{bottom:894.943602px;}
.y10f{bottom:899.197500px;}
.y40{bottom:899.527455px;}
.y195{bottom:900.637434px;}
.y8a{bottom:909.467517px;}
.yf0{bottom:910.785209px;}
.y13{bottom:913.604918px;}
.ycd{bottom:917.141106px;}
.y17a{bottom:917.720954px;}
.y4f{bottom:918.547722px;}
.y136{bottom:923.179919px;}
.y158{bottom:923.179920px;}
.y194{bottom:923.408430px;}
.y3f{bottom:923.827380px;}
.ya9{bottom:926.140369px;}
.y6a{bottom:927.547357px;}
.y89{bottom:932.244869px;}
.y12{bottom:939.344969px;}
.ycc{bottom:939.917729px;}
.y4e{bottom:941.317618px;}
.y10e{bottom:941.970465px;}
.y135{bottom:945.958739px;}
.y3e{bottom:948.127500px;}
.ya8{bottom:948.910632px;}
.y179{bottom:949.541254px;}
.y69{bottom:950.317620px;}
.y157{bottom:954.950922px;}
.y193{bottom:955.177965px;}
.y88{bottom:964.064436px;}
.y4d{bottom:964.087515px;}
.yd{bottom:968.145079px;}
.ya7{bottom:971.688719px;}
.ycb{bottom:971.738027px;}
.y178{bottom:972.317144px;}
.y3d{bottom:972.427605px;}
.yef{bottom:973.177968px;}
.y156{bottom:977.728274px;}
.y134{bottom:977.777580px;}
.y68{bottom:982.087149px;}
.y87{bottom:986.841059px;}
.y10d{bottom:986.947502px;}
.yca{bottom:994.507560px;}
.y4c{bottom:995.857412px;}
.yee{bottom:995.947502px;}
.y3c{bottom:996.727530px;}
.y133{bottom:1000.554932px;}
.ya6{bottom:1003.507559px;}
.y177{bottom:1004.137442px;}
.y67{bottom:1004.857412px;}
.y155{bottom:1009.554932px;}
.y10c{bottom:1009.717032px;}
.y4b{bottom:1018.627676px;}
.y86{bottom:1018.660636px;}
.yed{bottom:1018.717032px;}
.y3b{bottom:1021.027457px;}
.yc9{bottom:1028.280526px;}
.y132{bottom:1032.381593px;}
.y10b{bottom:1032.488028px;}
.ya5{bottom:1035.277824px;}
.y176{bottom:1035.908438px;}
.y66{bottom:1036.627311px;}
.yb{bottom:1039.425109px;}
.y154{bottom:1041.375234px;}
.y4a{bottom:1041.397574px;}
.y85{bottom:1041.430900px;}
.yec{bottom:1041.488028px;}
.y3a{bottom:1052.797536px;}
.ya4{bottom:1058.047354px;}
.y65{bottom:1059.397574px;}
.y153{bottom:1064.151123px;}
.y131{bottom:1064.200432px;}
.y84{bottom:1064.208252px;}
.y10a{bottom:1064.257559px;}
.y175{bottom:1067.677968px;}
.yc8{bottom:1073.257560px;}
.ya3{bottom:1080.817617px;}
.y130{bottom:1086.977784px;}
.y5{bottom:1087.027502px;}
.y49{bottom:1088.175218px;}
.y152{bottom:1095.971428px;}
.yeb{bottom:1096.027090px;}
.y83{bottom:1096.027820px;}
.y64{bottom:1106.174855px;}
.ya{bottom:1106.175038px;}
.y39{bottom:1106.175221px;}
.y174{bottom:1111.785586px;}
.ya2{bottom:1114.589853px;}
.y151{bottom:1118.748780px;}
.y82{bottom:1118.797353px;}
.y4{bottom:1118.797503px;}
.y12f{bottom:1118.798087px;}
.y61{bottom:1134.224853px;}
.y1{bottom:1134.225003px;}
.y7{bottom:1134.225036px;}
.y37{bottom:1134.225219px;}
.y12c{bottom:1134.225586px;}
.h7{height:28.799927px;}
.hb{height:28.800109px;}
.ha{height:31.769898px;}
.hc{height:31.770081px;}
.h18{height:35.316003px;}
.h14{height:39.239998px;}
.h9{height:54.539977px;}
.h19{height:56.700008px;}
.h15{height:62.999998px;}
.h3{height:69.300002px;}
.h2{height:75.600000px;}
.hd{height:77.310058px;}
.h13{height:88.199997px;}
.h8{height:100.079957px;}
.h12{height:100.800003px;}
.h4{height:105.975030px;}
.he{height:105.975225px;}
.h6{height:125.999997px;}
.h16{height:128.399415px;}
.h10{height:128.400150px;}
.h17{height:128.774414px;}
.hf{height:128.774781px;}
.h5{height:128.774964px;}
.h1{height:128.774997px;}
.h11{height:128.775147px;}
.h0{height:1263.000000px;}
.w2{width:191.249988px;}
.w3{width:488.250045px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:106.350003px;}
.x5{left:133.350003px;}
.x7{left:160.350003px;}
.x1{left:232.742232px;}
.x3{left:280.725003px;}
.x4{left:297.599985px;}
.xa{left:768.725343px;}
.xb{left:771.227343px;}
.x9{left:776.645388px;}
.x8{left:777.653377px;}
.x6{left:778.769388px;}
@media print{
.v2{vertical-align:-21.120001pt;}
.v3{vertical-align:-19.007998pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.231996pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000093pt;}
.ws1{word-spacing:-26.666666pt;}
.ws2{word-spacing:-15.546667pt;}
.ws7{word-spacing:-15.194667pt;}
.ws6{word-spacing:-14.133333pt;}
.ws3{word-spacing:-13.904000pt;}
.ws9{word-spacing:-12.720000pt;}
.ws4{word-spacing:-9.328000pt;}
.ws5{word-spacing:-8.480000pt;}
.ws8{word-spacing:-7.632000pt;}
.ws0{word-spacing:0.000000pt;}
._26{margin-left:-14.933331pt;}
._2a{margin-left:-11.733331pt;}
._20{margin-left:-10.346664pt;}
._1{margin-left:-7.833421pt;}
._4{margin-left:-6.791953pt;}
._6{margin-left:-5.827236pt;}
._3{margin-left:-4.054694pt;}
._2{margin-left:-2.954909pt;}
._0{margin-left:-1.278866pt;}
._5{width:1.392267pt;}
._7{width:3.816378pt;}
._23{width:4.754887pt;}
._19{width:7.957190pt;}
._15{width:11.604395pt;}
._14{width:12.671506pt;}
._24{width:15.402991pt;}
._1a{width:16.472850pt;}
._17{width:19.368715pt;}
._18{width:20.481426pt;}
._16{width:23.816377pt;}
._1f{width:24.783544pt;}
._1d{width:27.943498pt;}
._21{width:31.199579pt;}
._1c{width:32.298788pt;}
._1b{width:35.802543pt;}
._22{width:36.805616pt;}
._29{width:39.687465pt;}
._2d{width:40.738816pt;}
._28{width:43.350896pt;}
._25{width:44.265624pt;}
._27{width:47.901431pt;}
._31{width:48.839121pt;}
._2c{width:51.214603pt;}
._30{width:52.368130pt;}
._2b{width:55.920748pt;}
._2f{width:67.664135pt;}
._2e{width:71.920748pt;}
._1e{width:619.955725pt;}
._d{width:710.464969pt;}
._b{width:1072.964556pt;}
._10{width:1288.253157pt;}
._a{width:1310.236164pt;}
._12{width:1361.568714pt;}
._f{width:1565.682184pt;}
._13{width:1673.088477pt;}
._e{width:1675.533928pt;}
._c{width:1859.440199pt;}
._9{width:1986.817270pt;}
._11{width:2043.012541pt;}
._8{width:2159.738744pt;}
.fs8{font-size:28.799999pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:35.200001pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.333332pt;}
.fs1{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.666664pt;}
.fs3{font-size:85.333336pt;}
.fs2{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:10.639935pt;}
.y1a{bottom:10.640097pt;}
.y18{bottom:14.526576pt;}
.y11{bottom:14.526583pt;}
.y23{bottom:14.526732pt;}
.y1c{bottom:14.526739pt;}
.y15{bottom:14.526740pt;}
.y38{bottom:18.639773pt;}
.y9{bottom:18.639936pt;}
.y3{bottom:18.639995pt;}
.y12e{bottom:18.640260pt;}
.y63{bottom:18.640261pt;}
.yea{bottom:18.640912pt;}
.y14{bottom:34.766647pt;}
.y10{bottom:34.766648pt;}
.y22{bottom:34.766652pt;}
.y12d{bottom:52.239219pt;}
.y8{bottom:52.239871pt;}
.y2{bottom:52.239996pt;}
.y62{bottom:52.240196pt;}
.yf{bottom:55.006639pt;}
.y21{bottom:55.006719pt;}
.ye9{bottom:65.572547pt;}
.y48{bottom:65.573200pt;}
.y6{bottom:65.573360pt;}
.ye{bottom:75.246628pt;}
.y12b{bottom:99.172813pt;}
.y60{bottom:99.173467pt;}
.y1a7{bottom:117.793025pt;}
.y12a{bottom:118.147920pt;}
.ye8{bottom:122.466349pt;}
.yc7{bottom:123.426614pt;}
.y129{bottom:134.147920pt;}
.y1a6{bottom:136.946067pt;}
.y109{bottom:139.425986pt;}
.y150{bottom:141.013237pt;}
.ye7{bottom:142.705934pt;}
.ya1{bottom:147.914928pt;}
.yc6{bottom:150.554894pt;}
.y128{bottom:155.427920pt;}
.y108{bottom:159.666224pt;}
.y14f{bottom:161.259772pt;}
.ya0{bottom:168.154506pt;}
.y173{bottom:169.721560pt;}
.ye6{bottom:170.945519pt;}
.y36{bottom:175.499880pt;}
.y192{bottom:177.174682pt;}
.yc5{bottom:178.794471pt;}
.y107{bottom:179.905154pt;}
.y127{bottom:185.022347pt;}
.y9f{bottom:188.394744pt;}
.y14e{bottom:189.544484pt;}
.y172{bottom:189.962447pt;}
.ye5{bottom:191.185753pt;}
.y191{bottom:197.414267pt;}
.yc4{bottom:199.034706pt;}
.y106{bottom:200.146040pt;}
.y35{bottom:203.739960pt;}
.y9e{bottom:208.634326pt;}
.y14d{bottom:209.789719pt;}
.y171{bottom:210.200728pt;}
.ye4{bottom:211.425987pt;}
.y126{bottom:213.268879pt;}
.y81{bottom:213.286659pt;}
.yc3{bottom:219.274948pt;}
.y105{bottom:220.385627pt;}
.y190{bottom:225.653852pt;}
.y9d{bottom:228.874560pt;}
.y170{bottom:230.441614pt;}
.y34{bottom:231.980027pt;}
.y80{bottom:233.526565pt;}
.y14c{bottom:238.081386pt;}
.yc2{bottom:239.514526pt;}
.ye3{bottom:239.666222pt;}
.y104{bottom:240.626507pt;}
.y125{bottom:241.560546pt;}
.y18f{bottom:245.893434pt;}
.y7f{bottom:253.766803pt;}
.y16f{bottom:258.682495pt;}
.yc1{bottom:259.754760pt;}
.ye2{bottom:259.905159pt;}
.y33{bottom:260.220094pt;}
.y18e{bottom:266.134320pt;}
.y14b{bottom:266.364787pt;}
.y9c{bottom:268.081333pt;}
.y103{bottom:268.865440pt;}
.y124{bottom:269.849612pt;}
.y7e{bottom:274.006713pt;}
.y16e{bottom:278.922080pt;}
.yc0{bottom:279.994998pt;}
.ye1{bottom:280.146042pt;}
.y32{bottom:280.460000pt;}
.y102{bottom:289.112625pt;}
.y7d{bottom:294.246947pt;}
.y18d{bottom:294.373907pt;}
.y14a{bottom:294.604381pt;}
.y123{bottom:298.134320pt;}
.ybf{bottom:300.234580pt;}
.ye0{bottom:300.385627pt;}
.y31{bottom:304.813440pt;}
.y16d{bottom:307.161669pt;}
.y149{bottom:314.845267pt;}
.y101{bottom:317.396694pt;}
.ybe{bottom:320.474814pt;}
.y18c{bottom:322.613492pt;}
.y9b{bottom:323.894792pt;}
.y122{bottom:326.373899pt;}
.y16c{bottom:327.401254pt;}
.ydf{bottom:328.626507pt;}
.y30{bottom:334.300014pt;}
.y7c{bottom:335.826437pt;}
.y100{bottom:337.642572pt;}
.y18b{bottom:342.854375pt;}
.y148{bottom:343.084848pt;}
.y121{bottom:346.613485pt;}
.ybd{bottom:348.714406pt;}
.yde{bottom:348.865440pt;}
.y16b{bottom:355.642134pt;}
.y9a{bottom:360.694919pt;}
.y2f{bottom:362.539920pt;}
.y18a{bottom:363.093960pt;}
.y147{bottom:363.325734pt;}
.yff{bottom:365.927294pt;}
.y120{bottom:366.854371pt;}
.ybc{bottom:368.954640pt;}
.y7b{bottom:372.626893pt;}
.ydd{bottom:377.105680pt;}
.y16a{bottom:383.881720pt;}
.y11f{bottom:387.093953pt;}
.y2e{bottom:390.780000pt;}
.y189{bottom:391.333547pt;}
.y146{bottom:391.565309pt;}
.yfe{bottom:394.166220pt;}
.ybb{bottom:397.194226pt;}
.y169{bottom:404.128252pt;}
.ydc{bottom:407.125440pt;}
.y11e{bottom:407.334187pt;}
.y145{bottom:411.804894pt;}
.yfd{bottom:414.406454pt;}
.y99{bottom:416.154504pt;}
.yba{bottom:417.435109pt;}
.y2d{bottom:419.020067pt;}
.y7a{bottom:428.086801pt;}
.y168{bottom:432.419919pt;}
.y188{bottom:432.914319pt;}
.y11d{bottom:435.573122pt;}
.y98{bottom:436.394735pt;}
.yb9{bottom:437.674694pt;}
.y144{bottom:440.044480pt;}
.yfc{bottom:442.646694pt;}
.y1a5{bottom:444.524946pt;}
.ydb{bottom:447.105680pt;}
.y2c{bottom:447.259974pt;}
.y79{bottom:448.327035pt;}
.y11c{bottom:455.814012pt;}
.y97{bottom:456.634320pt;}
.y5f{bottom:460.646693pt;}
.y167{bottom:460.708985pt;}
.yfb{bottom:462.886934pt;}
.y1a4{bottom:464.764528pt;}
.yda{bottom:467.345918pt;}
.yb8{bottom:467.695107pt;}
.y143{bottom:468.285362pt;}
.y78{bottom:468.566613pt;}
.y2b{bottom:475.499880pt;}
.y11b{bottom:476.053594pt;}
.y5e{bottom:480.886603pt;}
.yfa{bottom:483.126507pt;}
.y96{bottom:484.874552pt;}
.y1a3{bottom:485.005414pt;}
.yd9{bottom:487.586149pt;}
.y187{bottom:488.373906pt;}
.y142{bottom:488.524947pt;}
.y77{bottom:488.806851pt;}
.y166{bottom:488.999345pt;}
.y11a{bottom:496.294480pt;}
.y5d{bottom:501.126513pt;}
.y2a{bottom:503.739960pt;}
.y95{bottom:505.114786pt;}
.yb7{bottom:507.674691pt;}
.yd8{bottom:507.825734pt;}
.y186{bottom:508.613492pt;}
.y76{bottom:509.046433pt;}
.y1a2{bottom:513.244997pt;}
.y141{bottom:516.764534pt;}
.y165{bottom:517.289719pt;}
.yf9{bottom:521.146934pt;}
.y5c{bottom:521.366747pt;}
.y119{bottom:524.533414pt;}
.y94{bottom:525.354372pt;}
.yb6{bottom:527.914922pt;}
.y185{bottom:528.854375pt;}
.y75{bottom:529.286667pt;}
.y29{bottom:531.980027pt;}
.y1a1{bottom:533.491532pt;}
.yd7{bottom:536.065304pt;}
.y164{bottom:545.573120pt;}
.y93{bottom:545.594606pt;}
.yb5{bottom:548.154507pt;}
.y184{bottom:549.093960pt;}
.y5b{bottom:549.606653pt;}
.y118{bottom:552.780599pt;}
.y1a0{bottom:553.776244pt;}
.y140{bottom:555.972600pt;}
.yd6{bottom:556.306195pt;}
.y74{bottom:557.526576pt;}
.y28{bottom:560.220094pt;}
.yf8{bottom:561.126507pt;}
.y92{bottom:565.834840pt;}
.yb4{bottom:568.394734pt;}
.y5a{bottom:569.846563pt;}
.y163{bottom:573.814015pt;}
.y19f{bottom:574.021479pt;}
.yd5{bottom:576.545773pt;}
.y183{bottom:577.333547pt;}
.y73{bottom:577.766811pt;}
.y117{bottom:581.070959pt;}
.yf7{bottom:581.366094pt;}
.y27{bottom:588.460000pt;}
.yb3{bottom:588.641279pt;}
.y59{bottom:590.086798pt;}
.y162{bottom:594.053597pt;}
.y19e{bottom:594.313146pt;}
.yd4{bottom:596.786660pt;}
.y72{bottom:598.006720pt;}
.y182{bottom:605.580079pt;}
.y13f{bottom:606.445520pt;}
.y91{bottom:607.414319pt;}
.y116{bottom:609.361332pt;}
.yf6{bottom:609.606974pt;}
.y58{bottom:610.326707pt;}
.y161{bottom:614.300132pt;}
.y19d{bottom:614.596571pt;}
.y26{bottom:616.700080pt;}
.yb2{bottom:616.924682pt;}
.yd3{bottom:617.025593pt;}
.y71{bottom:626.246948pt;}
.y13e{bottom:626.685106pt;}
.y25{bottom:630.413411pt;}
.y24{bottom:633.053385pt;}
.y181{bottom:633.864791pt;}
.y19c{bottom:634.843106pt;}
.yb1{bottom:637.165565pt;}
.yd2{bottom:637.265827pt;}
.y115{bottom:637.651692pt;}
.y57{bottom:638.566611pt;}
.y160{bottom:642.583542pt;}
.y70{bottom:646.486534pt;}
.y13d{bottom:646.924688pt;}
.yf5{bottom:648.813746pt;}
.y47{bottom:652.380094pt;}
.y180{bottom:654.110026pt;}
.yb0{bottom:657.411452pt;}
.y20{bottom:658.653321pt;}
.y56{bottom:658.806518pt;}
.y15f{bottom:662.824429pt;}
.y90{bottom:662.874553pt;}
.y19b{bottom:663.126507pt;}
.yd1{bottom:665.506062pt;}
.y114{bottom:665.942052pt;}
.y6f{bottom:666.726768pt;}
.y13c{bottom:667.165574pt;}
.y46{bottom:669.980027pt;}
.y55{bottom:679.046427pt;}
.y17f{bottom:682.401692pt;}
.y15e{bottom:683.065311pt;}
.y8f{bottom:683.114787pt;}
.yaf{bottom:685.695522pt;}
.yd0{bottom:685.746300pt;}
.y6e{bottom:686.966350pt;}
.y19a{bottom:691.366096pt;}
.y45{bottom:691.579960pt;}
.y113{bottom:694.225467pt;}
.y13b{bottom:695.405149pt;}
.yf4{bottom:699.286669pt;}
.y1f{bottom:701.773439pt;}
.y15d{bottom:703.310546pt;}
.yae{bottom:705.935104pt;}
.ycf{bottom:705.985882pt;}
.y6d{bottom:707.206585pt;}
.y54{bottom:707.286667pt;}
.y17e{bottom:710.685107pt;}
.y8e{bottom:711.354371pt;}
.y199{bottom:711.606986pt;}
.y44{bottom:713.179894pt;}
.y13a{bottom:715.644734pt;}
.yf3{bottom:719.526254pt;}
.y112{bottom:722.471999pt;}
.yad{bottom:726.181639pt;}
.yce{bottom:726.225467pt;}
.y1e{bottom:727.373371pt;}
.y6c{bottom:727.446494pt;}
.y53{bottom:727.526573pt;}
.y1d{bottom:730.013345pt;}
.y15c{bottom:731.595252pt;}
.y8d{bottom:731.601559pt;}
.y198{bottom:731.846568pt;}
.y43{bottom:734.780000pt;}
.y17d{bottom:738.931639pt;}
.y139{bottom:743.885629pt;}
.y52{bottom:747.766483pt;}
.yf2{bottom:747.767135pt;}
.y111{bottom:750.763026pt;}
.y15b{bottom:751.833537pt;}
.y197{bottom:752.087454pt;}
.yac{bottom:754.466362pt;}
.y1b{bottom:755.613275pt;}
.y42{bottom:756.380094pt;}
.y19{bottom:758.253249pt;}
.y8c{bottom:759.884971pt;}
.y138{bottom:764.125214pt;}
.y17c{bottom:767.221999pt;}
.y51{bottom:768.006718pt;}
.yf1{bottom:768.006720pt;}
.y6b{bottom:769.026946pt;}
.y15a{bottom:772.074424pt;}
.yab{bottom:774.705944pt;}
.y41{bottom:777.980027pt;}
.y110{bottom:779.047080pt;}
.y8b{bottom:780.131506pt;}
.y196{bottom:780.325725pt;}
.y17{bottom:783.853357pt;}
.y16{bottom:786.493332pt;}
.y50{bottom:788.246627pt;}
.y159{bottom:792.320959pt;}
.y137{bottom:792.364787pt;}
.yaa{bottom:794.952479pt;}
.y17b{bottom:795.505424pt;}
.y10f{bottom:799.286667pt;}
.y40{bottom:799.579960pt;}
.y195{bottom:800.566608pt;}
.y8a{bottom:808.415571pt;}
.yf0{bottom:809.586853pt;}
.y13{bottom:812.093260pt;}
.ycd{bottom:815.236539pt;}
.y17a{bottom:815.751959pt;}
.y4f{bottom:816.486864pt;}
.y136{bottom:820.604372pt;}
.y158{bottom:820.604374pt;}
.y194{bottom:820.807494pt;}
.y3f{bottom:821.179894pt;}
.ya9{bottom:823.235884pt;}
.y6a{bottom:824.486540pt;}
.y89{bottom:828.662106pt;}
.y12{bottom:834.973305pt;}
.ycc{bottom:835.482426pt;}
.y4e{bottom:836.726771pt;}
.y10e{bottom:837.307080pt;}
.y135{bottom:840.852212pt;}
.y3e{bottom:842.780000pt;}
.ya8{bottom:843.476118pt;}
.y179{bottom:844.036671pt;}
.y69{bottom:844.726774pt;}
.y157{bottom:848.845264pt;}
.y193{bottom:849.047080pt;}
.y88{bottom:856.946165pt;}
.y4d{bottom:856.966680pt;}
.yd{bottom:860.573404pt;}
.ya7{bottom:863.723306pt;}
.ycb{bottom:863.767135pt;}
.y178{bottom:864.281906pt;}
.y3d{bottom:864.380094pt;}
.yef{bottom:865.047082pt;}
.y156{bottom:869.091799pt;}
.y134{bottom:869.135627pt;}
.y68{bottom:872.966354pt;}
.y87{bottom:877.192052pt;}
.y10d{bottom:877.286668pt;}
.yca{bottom:884.006720pt;}
.y4c{bottom:885.206588pt;}
.yee{bottom:885.286668pt;}
.y3c{bottom:885.980027pt;}
.y133{bottom:889.382162pt;}
.ya6{bottom:892.006719pt;}
.y177{bottom:892.566615pt;}
.y67{bottom:893.206588pt;}
.y155{bottom:897.382162pt;}
.y10c{bottom:897.526250pt;}
.y4b{bottom:905.446823pt;}
.y86{bottom:905.476121pt;}
.yed{bottom:905.526250pt;}
.y3b{bottom:907.579962pt;}
.yc9{bottom:914.027134pt;}
.y132{bottom:917.672527pt;}
.y10b{bottom:917.767136pt;}
.ya5{bottom:920.246955pt;}
.y176{bottom:920.807500pt;}
.y66{bottom:921.446498pt;}
.yb{bottom:923.933431pt;}
.y154{bottom:925.666875pt;}
.y4a{bottom:925.686732pt;}
.y85{bottom:925.716356pt;}
.yec{bottom:925.767136pt;}
.y3a{bottom:935.820032pt;}
.ya4{bottom:940.486537pt;}
.y65{bottom:941.686732pt;}
.y153{bottom:945.912110pt;}
.y131{bottom:945.955940pt;}
.y84{bottom:945.962891pt;}
.y10a{bottom:946.006719pt;}
.y175{bottom:949.047083pt;}
.yc8{bottom:954.006720pt;}
.ya3{bottom:960.726771pt;}
.y130{bottom:966.202475pt;}
.y5{bottom:966.246668pt;}
.y49{bottom:967.266861pt;}
.y152{bottom:974.196825pt;}
.yeb{bottom:974.246302pt;}
.y83{bottom:974.246951pt;}
.y64{bottom:983.266537pt;}
.ya{bottom:983.266700pt;}
.y39{bottom:983.266863pt;}
.y174{bottom:988.253854pt;}
.ya2{bottom:990.746536pt;}
.y151{bottom:994.443360pt;}
.y82{bottom:994.486536pt;}
.y4{bottom:994.486670pt;}
.y12f{bottom:994.487188pt;}
.y61{bottom:1008.199869pt;}
.y1{bottom:1008.200003pt;}
.y7{bottom:1008.200032pt;}
.y37{bottom:1008.200195pt;}
.y12c{bottom:1008.200521pt;}
.h7{height:25.599935pt;}
.hb{height:25.600097pt;}
.ha{height:28.239909pt;}
.hc{height:28.240072pt;}
.h18{height:31.392002pt;}
.h14{height:34.879998pt;}
.h9{height:48.479980pt;}
.h19{height:50.400007pt;}
.h15{height:55.999999pt;}
.h3{height:61.600001pt;}
.h2{height:67.200000pt;}
.hd{height:68.720052pt;}
.h13{height:78.399997pt;}
.h8{height:88.959961pt;}
.h12{height:89.600003pt;}
.h4{height:94.200027pt;}
.he{height:94.200200pt;}
.h6{height:111.999997pt;}
.h16{height:114.132813pt;}
.h10{height:114.133467pt;}
.h17{height:114.466145pt;}
.hf{height:114.466472pt;}
.h5{height:114.466635pt;}
.h1{height:114.466664pt;}
.h11{height:114.466797pt;}
.h0{height:1122.666667pt;}
.w2{width:169.999989pt;}
.w3{width:434.000040pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:94.533336pt;}
.x5{left:118.533336pt;}
.x7{left:142.533336pt;}
.x1{left:206.881984pt;}
.x3{left:249.533336pt;}
.x4{left:264.533320pt;}
.xa{left:683.311416pt;}
.xb{left:685.535416pt;}
.x9{left:690.351456pt;}
.x8{left:691.247446pt;}
.x6{left:692.239456pt;}
}




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