
    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_31d68001fd048a1a60e77dbc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_cd0560731a25f106dad449ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.718000;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_1e4fc5eb8caccc06d95641d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_29a652d3222af766e38c68ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_c44b70441c6d092460009008.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_b6dac1b8190532fef82bbb26.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_567c30605f01766478ab578e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_b171e8446012322b83d065d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.727300px;}
.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;}
}
.wsd{word-spacing:-40.765125px;}
.wsc{word-spacing:-37.426940px;}
.ws11{word-spacing:-36.379667px;}
.wse{word-spacing:-36.248757px;}
.wsb{word-spacing:-35.463302px;}
.wsa{word-spacing:-31.470572px;}
.ws14{word-spacing:-30.750571px;}
.ws12{word-spacing:-27.608750px;}
.ws8{word-spacing:-26.899125px;}
.ws64{word-spacing:-20.906199px;}
.ws10{word-spacing:-18.183288px;}
.ws13{word-spacing:-16.743287px;}
.ws2a{word-spacing:-3.102548px;}
.ws60{word-spacing:-2.866911px;}
.ws69{word-spacing:-2.212365px;}
.ws68{word-spacing:-2.146911px;}
.ws58{word-spacing:-1.662547px;}
.ws59{word-spacing:-1.426910px;}
.ws2b{word-spacing:-0.314182px;}
.ws56{word-spacing:-0.288000px;}
.ws57{word-spacing:-0.248727px;}
.ws6{word-spacing:0.000000px;}
.ws5f{word-spacing:0.890183px;}
.ws47{word-spacing:2.042184px;}
.ws52{word-spacing:2.958548px;}
.ws5{word-spacing:3.613094px;}
.ws29{word-spacing:3.678549px;}
.ws6a{word-spacing:4.084367px;}
.ws7{word-spacing:4.162913px;}
.wsf{word-spacing:4.228367px;}
.ws1e{word-spacing:4.483200px;}
.ws3a{word-spacing:4.594913px;}
.ws67{word-spacing:4.725822px;}
.ws3c{word-spacing:4.791277px;}
.ws18{word-spacing:5.079277px;}
.ws5b{word-spacing:5.184004px;}
.ws2d{word-spacing:5.249459px;}
.ws39{word-spacing:5.341095px;}
.ws16{word-spacing:5.379825px;}
.ws3b{word-spacing:5.472005px;}
.ws34{word-spacing:5.773096px;}
.ws36{word-spacing:5.969460px;}
.ws5a{word-spacing:5.995641px;}
.ws2c{word-spacing:6.061096px;}
.ws33{word-spacing:6.126551px;}
.ws50{word-spacing:6.296733px;}
.ws22{word-spacing:6.427642px;}
.ws6c{word-spacing:6.637096px;}
.ws1b{word-spacing:6.702551px;}
.ws35{word-spacing:6.846551px;}
.ws1d{word-spacing:6.885824px;}
.ws2f{word-spacing:7.213097px;}
.ws23{word-spacing:7.435643px;}
.ws17{word-spacing:7.802188px;}
.ws19{word-spacing:7.867643px;}
.ws4a{word-spacing:8.155643px;}
.ws21{word-spacing:8.221098px;}
.ws2e{word-spacing:8.286552px;}
.ws31{word-spacing:8.325825px;}
.ws38{word-spacing:8.784007px;}
.ws0{word-spacing:9.295163px;}
.ws62{word-spacing:10.053827px;}
.ws37{word-spacing:10.119281px;}
.ws3e{word-spacing:10.551282px;}
.ws1a{word-spacing:10.564372px;}
.ws4c{word-spacing:10.616736px;}
.ws6b{word-spacing:10.760736px;}
.ws32{word-spacing:10.957100px;}
.ws5c{word-spacing:11.428373px;}
.ws65{word-spacing:11.624737px;}
.ws63{word-spacing:12.711283px;}
.ws61{word-spacing:12.776738px;}
.ws20{word-spacing:13.365829px;}
.ws66{word-spacing:14.347648px;}
.ws9{word-spacing:14.544012px;}
.ws1c{word-spacing:14.766558px;}
.ws30{word-spacing:17.515651px;}
.ws4e{word-spacing:18.929470px;}
.ws54{word-spacing:20.958563px;}
.ws45{word-spacing:21.024018px;}
.ws55{word-spacing:21.940382px;}
.ws4{word-spacing:23.312640px;}
.ws3{word-spacing:23.384371px;}
.ws48{word-spacing:25.409476px;}
.ws49{word-spacing:27.373114px;}
.ws1f{word-spacing:27.726569px;}
.ws2{word-spacing:27.975090px;}
.ws1{word-spacing:31.091012px;}
.ws43{word-spacing:33.722210px;}
.ws44{word-spacing:37.322213px;}
.ws26{word-spacing:39.246578px;}
.ws25{word-spacing:39.744033px;}
.ws27{word-spacing:42.034944px;}
.ws40{word-spacing:61.933143px;}
.ws41{word-spacing:110.107728px;}
.ws28{word-spacing:115.802278px;}
.ws24{word-spacing:153.792128px;}
.ws5d{word-spacing:183.966699px;}
.ws46{word-spacing:247.952905px;}
.ws3f{word-spacing:266.227829px;}
.ws42{word-spacing:299.256220px;}
.ws5e{word-spacing:389.363234px;}
.ws3d{word-spacing:418.665047px;}
.ws53{word-spacing:439.370548px;}
.ws4b{word-spacing:524.134255px;}
.ws51{word-spacing:525.639711px;}
.ws4d{word-spacing:546.454274px;}
.ws4f{word-spacing:636.781622px;}
.ws15{word-spacing:2389.403137px;}
._1a{margin-left:-38.160032px;}
._13{margin-left:-34.560029px;}
._11{margin-left:-32.727300px;}
._16{margin-left:-30.894571px;}
._14{margin-left:-10.865464px;}
._2a{margin-left:-8.074048px;}
._2c{margin-left:-6.742733px;}
._9{margin-left:-5.627132px;}
._0{margin-left:-4.610401px;}
._1{margin-left:-2.685602px;}
._5{margin-left:-1.049237px;}
._4{width:1.049237px;}
._2{width:2.685602px;}
._3d{width:4.385458px;}
._3f{width:5.958332px;}
._3e{width:14.991067px;}
._1d{width:18.521688px;}
._1c{width:19.832744px;}
._c{width:21.861836px;}
._20{width:23.765911px;}
._3c{width:25.660167px;}
._23{width:27.361987px;}
._d{width:28.996388px;}
._29{width:30.831080px;}
._27{width:32.856245px;}
._12{width:34.167301px;}
._2b{width:35.865600px;}
._3{width:37.443582px;}
._10{width:40.189124px;}
._19{width:42.152762px;}
._22{width:44.314728px;}
._1f{width:46.732621px;}
._e{width:47.847313px;}
._35{width:49.625315px;}
._18{width:54.259900px;}
._8{width:60.545505px;}
._b{width:66.894601px;}
._17{width:74.880062px;}
._3b{width:76.780210px;}
._36{width:81.098249px;}
._f{width:93.469169px;}
._39{width:120.698282px;}
._3a{width:189.556522px;}
._33{width:220.225281px;}
._2f{width:258.872943px;}
._30{width:286.820093px;}
._2e{width:350.642256px;}
._38{width:406.606848px;}
._31{width:461.162755px;}
._37{width:473.564031px;}
._2d{width:476.967670px;}
._32{width:489.301711px;}
._34{width:656.771456px;}
._1b{width:985.551876px;}
._a{width:1430.315883px;}
._25{width:1494.919573px;}
._1e{width:1525.355962px;}
._28{width:1649.065156px;}
._6{width:1667.261535px;}
._15{width:1747.445384px;}
._24{width:1834.757893px;}
._7{width:1870.234286px;}
._21{width:2050.496254px;}
._26{width:2067.250668px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(100,100,100);}
.fc0{color:rgb(30,60,120);}
.fs4{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y7{bottom:108.000000px;}
.ydb{bottom:117.876000px;}
.y6{bottom:128.323500px;}
.y66{bottom:140.013000px;}
.yc0{bottom:141.309000px;}
.y8c{bottom:147.259500px;}
.yda{bottom:151.650000px;}
.ya8{bottom:165.606000px;}
.y8b{bottom:167.584500px;}
.y65{bottom:172.024500px;}
.ybf{bottom:174.618000px;}
.yd9{bottom:185.422500px;}
.y8a{bottom:187.908000px;}
.y5{bottom:191.167500px;}
.y64{bottom:192.348000px;}
.y47{bottom:196.501500px;}
.ya7{bottom:199.378500px;}
.ybe{bottom:207.928500px;}
.y89{bottom:208.231500px;}
.y29{bottom:214.605000px;}
.yd8{bottom:216.315000px;}
.y46{bottom:216.825000px;}
.y63{bottom:223.240500px;}
.y88{bottom:228.555000px;}
.y4{bottom:232.750500px;}
.ya6{bottom:233.152500px;}
.y45{bottom:237.148500px;}
.ybd{bottom:238.819500px;}
.y87{bottom:248.878500px;}
.y28{bottom:251.292000px;}
.y44{bottom:257.472000px;}
.yd7{bottom:260.134500px;}
.y62{bottom:265.632000px;}
.ya5{bottom:266.925000px;}
.y86{bottom:269.800500px;}
.y43{bottom:277.795500px;}
.ybc{bottom:279.234000px;}
.y61{bottom:285.955500px;}
.y27{bottom:287.979000px;}
.y85{bottom:290.124000px;}
.yd6{bottom:293.907000px;}
.y42{bottom:298.120500px;}
.ya4{bottom:300.699000px;}
.y26{bottom:308.302500px;}
.y84{bottom:310.447500px;}
.y60{bottom:317.968500px;}
.y41{bottom:318.444000px;}
.yd5{bottom:327.681000px;}
.y25{bottom:328.627500px;}
.ybb{bottom:330.573000px;}
.y83{bottom:330.772500px;}
.y5f{bottom:338.292000px;}
.y40{bottom:338.767500px;}
.ya3{bottom:338.955000px;}
.y24{bottom:348.951000px;}
.y82{bottom:351.096000px;}
.y3f{bottom:359.091000px;}
.yd4{bottom:361.453500px;}
.yba{bottom:363.882000px;}
.ya2{bottom:369.847500px;}
.y5e{bottom:370.303500px;}
.y81{bottom:372.016500px;}
.y3e{bottom:379.414500px;}
.y23{bottom:385.638000px;}
.y5d{bottom:390.628500px;}
.y80{bottom:392.341500px;}
.yd3{bottom:392.346000px;}
.yb9{bottom:397.192500px;}
.y3d{bottom:399.739500px;}
.yfa{bottom:401.389500px;}
.y7f{bottom:412.665000px;}
.y5c{bottom:421.519500px;}
.y22{bottom:422.325000px;}
.y3c{bottom:428.278500px;}
.yb8{bottom:430.501500px;}
.y7e{bottom:432.988500px;}
.yf9{bottom:435.162000px;}
.yd2{bottom:436.165500px;}
.ya1{bottom:438.642000px;}
.y21{bottom:442.650000px;}
.y7d{bottom:453.312000px;}
.ya0{bottom:458.965500px;}
.y20{bottom:462.973500px;}
.yb7{bottom:463.810500px;}
.y5b{bottom:463.911000px;}
.yf8{bottom:468.936000px;}
.y3b{bottom:469.507500px;}
.yd1{bottom:469.938000px;}
.y7c{bottom:473.635500px;}
.y9f{bottom:479.289000px;}
.y7b{bottom:493.959000px;}
.y5a{bottom:495.924000px;}
.y9e{bottom:499.612500px;}
.y1f{bottom:499.660500px;}
.y3a{bottom:500.400000px;}
.yb6{bottom:500.676000px;}
.yf7{bottom:502.708500px;}
.yd0{bottom:503.712000px;}
.y7a{bottom:514.881000px;}
.y9d{bottom:519.937500px;}
.y1e{bottom:519.984000px;}
.y59{bottom:527.935500px;}
.yb5{bottom:531.567000px;}
.ycf{bottom:534.604500px;}
.y79{bottom:535.204500px;}
.yf6{bottom:536.482500px;}
.y9c{bottom:540.261000px;}
.y1d{bottom:540.309000px;}
.y39{bottom:544.219500px;}
.y58{bottom:548.260500px;}
.y78{bottom:555.529500px;}
.y9b{bottom:560.584500px;}
.y1c{bottom:560.632500px;}
.y38{bottom:564.543000px;}
.yf5{bottom:567.375000px;}
.yce{bottom:575.017500px;}
.yb4{bottom:575.167500px;}
.y77{bottom:575.853000px;}
.y57{bottom:579.151500px;}
.y9a{bottom:580.908000px;}
.y76{bottom:596.176500px;}
.y1b{bottom:597.319500px;}
.y99{bottom:601.231500px;}
.y37{bottom:603.597000px;}
.yb3{bottom:608.478000px;}
.yf4{bottom:611.193000px;}
.y56{bottom:611.718000px;}
.y75{bottom:616.500000px;}
.y1a{bottom:617.643000px;}
.y98{bottom:621.556500px;}
.y36{bottom:623.920500px;}
.ye9{bottom:630.789000px;}
.y74{bottom:637.422000px;}
.y19{bottom:637.966500px;}
.yb2{bottom:641.787000px;}
.y97{bottom:641.880000px;}
.y35{bottom:644.244000px;}
.yf3{bottom:644.967000px;}
.ycd{bottom:651.550500px;}
.y55{bottom:654.706500px;}
.y73{bottom:657.745500px;}
.y96{bottom:662.203500px;}
.ycc{bottom:671.875500px;}
.y18{bottom:674.655000px;}
.yb1{bottom:675.096000px;}
.y72{bottom:678.069000px;}
.yf2{bottom:678.741000px;}
.y34{bottom:683.298000px;}
.y54{bottom:686.719500px;}
.y95{bottom:690.742500px;}
.ycb{bottom:692.199000px;}
.y17{bottom:694.978500px;}
.y71{bottom:698.392500px;}
.yb0{bottom:708.405000px;}
.yf1{bottom:712.513500px;}
.yca{bottom:712.522500px;}
.y33{bottom:714.190500px;}
.y16{bottom:715.302000px;}
.y70{bottom:718.717500px;}
.y53{bottom:718.731000px;}
.ye8{bottom:725.014500px;}
.y94{bottom:731.973000px;}
.yc9{bottom:732.846000px;}
.y15{bottom:735.625500px;}
.y6f{bottom:739.638000px;}
.yaf{bottom:745.270500px;}
.ye7{bottom:745.338000px;}
.yf0{bottom:746.287500px;}
.y52{bottom:751.705500px;}
.y32{bottom:754.603500px;}
.yc8{bottom:761.386500px;}
.y93{bottom:762.864000px;}
.ye6{bottom:765.661500px;}
.y14{bottom:772.314000px;}
.y6e{bottom:775.578000px;}
.yae{bottom:776.161500px;}
.yef{bottom:777.178500px;}
.y51{bottom:782.596500px;}
.y13{bottom:792.637500px;}
.ye5{bottom:799.435500px;}
.yc7{bottom:802.615500px;}
.y92{bottom:803.278500px;}
.y31{bottom:806.161500px;}
.y6d{bottom:806.469000px;}
.y12{bottom:812.961000px;}
.ye4{bottom:819.759000px;}
.yad{bottom:819.762000px;}
.yee{bottom:820.998000px;}
.y50{bottom:823.011000px;}
.y30{bottom:826.485000px;}
.y11{bottom:833.284500px;}
.yc6{bottom:839.143500px;}
.ye3{bottom:840.082500px;}
.y3{bottom:840.448500px;}
.y6c{bottom:850.288500px;}
.yac{bottom:853.072500px;}
.y10{bottom:853.608000px;}
.yed{bottom:854.772000px;}
.y91{bottom:854.836500px;}
.ye2{bottom:860.406000px;}
.y2f{bottom:864.742500px;}
.y4f{bottom:873.738000px;}
.yf{bottom:873.933000px;}
.ye1{bottom:880.731000px;}
.y6b{bottom:884.062500px;}
.yab{bottom:886.381500px;}
.yec{bottom:888.544500px;}
.yc5{bottom:890.701500px;}
.y90{bottom:893.092500px;}
.y4e{bottom:894.063000px;}
.y2e{bottom:898.515000px;}
.ye0{bottom:901.054500px;}
.y2{bottom:903.291000px;}
.ye{bottom:910.620000px;}
.y6a{bottom:917.835000px;}
.yaa{bottom:919.690500px;}
.ydf{bottom:921.378000px;}
.yeb{bottom:922.318500px;}
.yc4{bottom:924.475500px;}
.y8f{bottom:926.866500px;}
.y4d{bottom:927.036000px;}
.yd{bottom:930.943500px;}
.y2d{bottom:932.289000px;}
.yde{bottom:941.701500px;}
.yc3{bottom:944.799000px;}
.y4c{bottom:947.359500px;}
.y1{bottom:951.208500px;}
.yc{bottom:951.267000px;}
.y69{bottom:951.609000px;}
.ya9{bottom:953.001000px;}
.yea{bottom:956.091000px;}
.y8e{bottom:960.640500px;}
.y2c{bottom:966.061500px;}
.yb{bottom:971.590500px;}
.ydd{bottom:978.229500px;}
.yc2{bottom:978.573000px;}
.y4b{bottom:979.372500px;}
.y68{bottom:989.865000px;}
.y8d{bottom:994.413000px;}
.y4a{bottom:999.696000px;}
.y2b{bottom:1004.319000px;}
.ya{bottom:1008.279000px;}
.yc1{bottom:1012.345500px;}
.y67{bottom:1020.757500px;}
.y2a{bottom:1024.642500px;}
.ydc{bottom:1029.789000px;}
.y49{bottom:1032.669000px;}
.y9{bottom:1061.170500px;}
.y48{bottom:1063.561500px;}
.y8{bottom:1121.065500px;}
.h6{height:45.425492px;}
.h9{height:46.145493px;}
.h5{height:49.090950px;}
.h4{height:51.216077px;}
.h8{height:53.798400px;}
.h3{height:61.459121px;}
.h7{height:64.557900px;}
.h2{height:72.511265px;}
.h1{height:111.541950px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.x14{left:116.967000px;}
.x11{left:118.143000px;}
.xe{left:126.091500px;}
.x10{left:127.999500px;}
.x9{left:132.546000px;}
.xc{left:134.136000px;}
.xb{left:143.101500px;}
.x1{left:146.346000px;}
.xf{left:148.909500px;}
.xa{left:170.182500px;}
.x6{left:172.408500px;}
.x3{left:222.042000px;}
.x12{left:290.515500px;}
.x2{left:302.220000px;}
.x7{left:308.661000px;}
.x4{left:320.928000px;}
.xd{left:327.568500px;}
.x13{left:362.665500px;}
.x15{left:378.817500px;}
.x5{left:386.449500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:29.090933pt;}
.wsd{word-spacing:-36.235667pt;}
.wsc{word-spacing:-33.268391pt;}
.ws11{word-spacing:-32.337481pt;}
.wse{word-spacing:-32.221118pt;}
.wsb{word-spacing:-31.522935pt;}
.wsa{word-spacing:-27.973841pt;}
.ws14{word-spacing:-27.333841pt;}
.ws12{word-spacing:-24.541111pt;}
.ws8{word-spacing:-23.910333pt;}
.ws64{word-spacing:-18.583288pt;}
.ws10{word-spacing:-16.162923pt;}
.ws13{word-spacing:-14.882921pt;}
.ws2a{word-spacing:-2.757820pt;}
.ws60{word-spacing:-2.548366pt;}
.ws69{word-spacing:-1.966547pt;}
.ws68{word-spacing:-1.908365pt;}
.ws58{word-spacing:-1.477819pt;}
.ws59{word-spacing:-1.268365pt;}
.ws2b{word-spacing:-0.279273pt;}
.ws56{word-spacing:-0.256000pt;}
.ws57{word-spacing:-0.221091pt;}
.ws6{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.791273pt;}
.ws47{word-spacing:1.815274pt;}
.ws52{word-spacing:2.629820pt;}
.ws5{word-spacing:3.211639pt;}
.ws29{word-spacing:3.269821pt;}
.ws6a{word-spacing:3.630548pt;}
.ws7{word-spacing:3.700367pt;}
.wsf{word-spacing:3.758549pt;}
.ws1e{word-spacing:3.985067pt;}
.ws3a{word-spacing:4.084367pt;}
.ws67{word-spacing:4.200731pt;}
.ws3c{word-spacing:4.258913pt;}
.ws18{word-spacing:4.514913pt;}
.ws5b{word-spacing:4.608004pt;}
.ws2d{word-spacing:4.666186pt;}
.ws39{word-spacing:4.747640pt;}
.ws16{word-spacing:4.782067pt;}
.ws3b{word-spacing:4.864004pt;}
.ws34{word-spacing:5.131641pt;}
.ws36{word-spacing:5.306186pt;}
.ws5a{word-spacing:5.329459pt;}
.ws2c{word-spacing:5.387641pt;}
.ws33{word-spacing:5.445823pt;}
.ws50{word-spacing:5.597096pt;}
.ws22{word-spacing:5.713459pt;}
.ws6c{word-spacing:5.899641pt;}
.ws1b{word-spacing:5.957823pt;}
.ws35{word-spacing:6.085823pt;}
.ws1d{word-spacing:6.120732pt;}
.ws2f{word-spacing:6.411642pt;}
.ws23{word-spacing:6.609460pt;}
.ws17{word-spacing:6.935279pt;}
.ws19{word-spacing:6.993460pt;}
.ws4a{word-spacing:7.249461pt;}
.ws21{word-spacing:7.307642pt;}
.ws2e{word-spacing:7.365824pt;}
.ws31{word-spacing:7.400733pt;}
.ws38{word-spacing:7.808007pt;}
.ws0{word-spacing:8.262367pt;}
.ws62{word-spacing:8.936735pt;}
.ws37{word-spacing:8.994917pt;}
.ws3e{word-spacing:9.378917pt;}
.ws1a{word-spacing:9.390553pt;}
.ws4c{word-spacing:9.437099pt;}
.ws6b{word-spacing:9.565099pt;}
.ws32{word-spacing:9.739644pt;}
.ws5c{word-spacing:10.158554pt;}
.ws65{word-spacing:10.333100pt;}
.ws63{word-spacing:11.298919pt;}
.ws61{word-spacing:11.357100pt;}
.ws20{word-spacing:11.880737pt;}
.ws66{word-spacing:12.753465pt;}
.ws9{word-spacing:12.928011pt;}
.ws1c{word-spacing:13.125829pt;}
.ws30{word-spacing:15.569468pt;}
.ws4e{word-spacing:16.826196pt;}
.ws54{word-spacing:18.629834pt;}
.ws45{word-spacing:18.688016pt;}
.ws55{word-spacing:19.502562pt;}
.ws4{word-spacing:20.722347pt;}
.ws3{word-spacing:20.786108pt;}
.ws48{word-spacing:22.586201pt;}
.ws49{word-spacing:24.331657pt;}
.ws1f{word-spacing:24.645839pt;}
.ws2{word-spacing:24.866747pt;}
.ws1{word-spacing:27.636455pt;}
.ws43{word-spacing:29.975298pt;}
.ws44{word-spacing:33.175300pt;}
.ws26{word-spacing:34.885847pt;}
.ws25{word-spacing:35.328029pt;}
.ws27{word-spacing:37.364395pt;}
.ws40{word-spacing:55.051682pt;}
.ws41{word-spacing:97.873536pt;}
.ws28{word-spacing:102.935359pt;}
.ws24{word-spacing:136.704114pt;}
.ws5d{word-spacing:163.525954pt;}
.ws46{word-spacing:220.402582pt;}
.ws3f{word-spacing:236.646959pt;}
.ws42{word-spacing:266.005529pt;}
.ws5e{word-spacing:346.100652pt;}
.ws3d{word-spacing:372.146708pt;}
.ws53{word-spacing:390.551598pt;}
.ws4b{word-spacing:465.897116pt;}
.ws51{word-spacing:467.235298pt;}
.ws4d{word-spacing:485.737132pt;}
.ws4f{word-spacing:566.028108pt;}
.ws15{word-spacing:2123.913900pt;}
._1a{margin-left:-33.920028pt;}
._13{margin-left:-30.720026pt;}
._11{margin-left:-29.090933pt;}
._16{margin-left:-27.461841pt;}
._14{margin-left:-9.658190pt;}
._2a{margin-left:-7.176931pt;}
._2c{margin-left:-5.993540pt;}
._9{margin-left:-5.001895pt;}
._0{margin-left:-4.098134pt;}
._1{margin-left:-2.387202pt;}
._5{margin-left:-0.932655pt;}
._4{width:0.932655pt;}
._2{width:2.387202pt;}
._3d{width:3.898185pt;}
._3f{width:5.296295pt;}
._3e{width:13.325393pt;}
._1d{width:16.463723pt;}
._1c{width:17.629106pt;}
._c{width:19.432743pt;}
._20{width:21.125254pt;}
._3c{width:22.809037pt;}
._23{width:24.321766pt;}
._d{width:25.774567pt;}
._29{width:27.405405pt;}
._27{width:29.205551pt;}
._12{width:30.370934pt;}
._2b{width:31.880533pt;}
._3{width:33.283184pt;}
._10{width:35.723666pt;}
._19{width:37.469122pt;}
._22{width:39.390869pt;}
._1f{width:41.540107pt;}
._e{width:42.530945pt;}
._35{width:44.111391pt;}
._18{width:48.231022pt;}
._8{width:53.818227pt;}
._b{width:59.461868pt;}
._17{width:66.560055pt;}
._3b{width:68.249075pt;}
._36{width:72.087333pt;}
._f{width:83.083706pt;}
._39{width:107.287362pt;}
._3a{width:168.494686pt;}
._33{width:195.755806pt;}
._2f{width:230.109283pt;}
._30{width:254.951194pt;}
._2e{width:311.682005pt;}
._38{width:361.428309pt;}
._31{width:409.922449pt;}
._37{width:420.945805pt;}
._2d{width:423.971262pt;}
._32{width:434.934854pt;}
._34{width:583.796850pt;}
._1b{width:876.046112pt;}
._a{width:1271.391896pt;}
._25{width:1328.817398pt;}
._1e{width:1355.871966pt;}
._28{width:1465.835694pt;}
._6{width:1482.010253pt;}
._15{width:1553.284786pt;}
._24{width:1630.895905pt;}
._7{width:1662.430476pt;}
._21{width:1822.663337pt;}
._26{width:1837.556149pt;}
.fs4{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:96.000000pt;}
.ydb{bottom:104.778667pt;}
.y6{bottom:114.065333pt;}
.y66{bottom:124.456000pt;}
.yc0{bottom:125.608000pt;}
.y8c{bottom:130.897333pt;}
.yda{bottom:134.800000pt;}
.ya8{bottom:147.205333pt;}
.y8b{bottom:148.964000pt;}
.y65{bottom:152.910667pt;}
.ybf{bottom:155.216000pt;}
.yd9{bottom:164.820000pt;}
.y8a{bottom:167.029333pt;}
.y5{bottom:169.926667pt;}
.y64{bottom:170.976000pt;}
.y47{bottom:174.668000pt;}
.ya7{bottom:177.225333pt;}
.ybe{bottom:184.825333pt;}
.y89{bottom:185.094667pt;}
.y29{bottom:190.760000pt;}
.yd8{bottom:192.280000pt;}
.y46{bottom:192.733333pt;}
.y63{bottom:198.436000pt;}
.y88{bottom:203.160000pt;}
.y4{bottom:206.889333pt;}
.ya6{bottom:207.246667pt;}
.y45{bottom:210.798667pt;}
.ybd{bottom:212.284000pt;}
.y87{bottom:221.225333pt;}
.y28{bottom:223.370667pt;}
.y44{bottom:228.864000pt;}
.yd7{bottom:231.230667pt;}
.y62{bottom:236.117333pt;}
.ya5{bottom:237.266667pt;}
.y86{bottom:239.822667pt;}
.y43{bottom:246.929333pt;}
.ybc{bottom:248.208000pt;}
.y61{bottom:254.182667pt;}
.y27{bottom:255.981333pt;}
.y85{bottom:257.888000pt;}
.yd6{bottom:261.250667pt;}
.y42{bottom:264.996000pt;}
.ya4{bottom:267.288000pt;}
.y26{bottom:274.046667pt;}
.y84{bottom:275.953333pt;}
.y60{bottom:282.638667pt;}
.y41{bottom:283.061333pt;}
.yd5{bottom:291.272000pt;}
.y25{bottom:292.113333pt;}
.ybb{bottom:293.842667pt;}
.y83{bottom:294.020000pt;}
.y5f{bottom:300.704000pt;}
.y40{bottom:301.126667pt;}
.ya3{bottom:301.293333pt;}
.y24{bottom:310.178667pt;}
.y82{bottom:312.085333pt;}
.y3f{bottom:319.192000pt;}
.yd4{bottom:321.292000pt;}
.yba{bottom:323.450667pt;}
.ya2{bottom:328.753333pt;}
.y5e{bottom:329.158667pt;}
.y81{bottom:330.681333pt;}
.y3e{bottom:337.257333pt;}
.y23{bottom:342.789333pt;}
.y5d{bottom:347.225333pt;}
.y80{bottom:348.748000pt;}
.yd3{bottom:348.752000pt;}
.yb9{bottom:353.060000pt;}
.y3d{bottom:355.324000pt;}
.yfa{bottom:356.790667pt;}
.y7f{bottom:366.813333pt;}
.y5c{bottom:374.684000pt;}
.y22{bottom:375.400000pt;}
.y3c{bottom:380.692000pt;}
.yb8{bottom:382.668000pt;}
.y7e{bottom:384.878667pt;}
.yf9{bottom:386.810667pt;}
.yd2{bottom:387.702667pt;}
.ya1{bottom:389.904000pt;}
.y21{bottom:393.466667pt;}
.y7d{bottom:402.944000pt;}
.ya0{bottom:407.969333pt;}
.y20{bottom:411.532000pt;}
.yb7{bottom:412.276000pt;}
.y5b{bottom:412.365333pt;}
.yf8{bottom:416.832000pt;}
.y3b{bottom:417.340000pt;}
.yd1{bottom:417.722667pt;}
.y7c{bottom:421.009333pt;}
.y9f{bottom:426.034667pt;}
.y7b{bottom:439.074667pt;}
.y5a{bottom:440.821333pt;}
.y9e{bottom:444.100000pt;}
.y1f{bottom:444.142667pt;}
.y3a{bottom:444.800000pt;}
.yb6{bottom:445.045333pt;}
.yf7{bottom:446.852000pt;}
.yd0{bottom:447.744000pt;}
.y7a{bottom:457.672000pt;}
.y9d{bottom:462.166667pt;}
.y1e{bottom:462.208000pt;}
.y59{bottom:469.276000pt;}
.yb5{bottom:472.504000pt;}
.ycf{bottom:475.204000pt;}
.y79{bottom:475.737333pt;}
.yf6{bottom:476.873333pt;}
.y9c{bottom:480.232000pt;}
.y1d{bottom:480.274667pt;}
.y39{bottom:483.750667pt;}
.y58{bottom:487.342667pt;}
.y78{bottom:493.804000pt;}
.y9b{bottom:498.297333pt;}
.y1c{bottom:498.340000pt;}
.y38{bottom:501.816000pt;}
.yf5{bottom:504.333333pt;}
.yce{bottom:511.126667pt;}
.yb4{bottom:511.260000pt;}
.y77{bottom:511.869333pt;}
.y57{bottom:514.801333pt;}
.y9a{bottom:516.362667pt;}
.y76{bottom:529.934667pt;}
.y1b{bottom:530.950667pt;}
.y99{bottom:534.428000pt;}
.y37{bottom:536.530667pt;}
.yb3{bottom:540.869333pt;}
.yf4{bottom:543.282667pt;}
.y56{bottom:543.749333pt;}
.y75{bottom:548.000000pt;}
.y1a{bottom:549.016000pt;}
.y98{bottom:552.494667pt;}
.y36{bottom:554.596000pt;}
.ye9{bottom:560.701333pt;}
.y74{bottom:566.597333pt;}
.y19{bottom:567.081333pt;}
.yb2{bottom:570.477333pt;}
.y97{bottom:570.560000pt;}
.y35{bottom:572.661333pt;}
.yf3{bottom:573.304000pt;}
.ycd{bottom:579.156000pt;}
.y55{bottom:581.961333pt;}
.y73{bottom:584.662667pt;}
.y96{bottom:588.625333pt;}
.ycc{bottom:597.222667pt;}
.y18{bottom:599.693333pt;}
.yb1{bottom:600.085333pt;}
.y72{bottom:602.728000pt;}
.yf2{bottom:603.325333pt;}
.y34{bottom:607.376000pt;}
.y54{bottom:610.417333pt;}
.y95{bottom:613.993333pt;}
.ycb{bottom:615.288000pt;}
.y17{bottom:617.758667pt;}
.y71{bottom:620.793333pt;}
.yb0{bottom:629.693333pt;}
.yf1{bottom:633.345333pt;}
.yca{bottom:633.353333pt;}
.y33{bottom:634.836000pt;}
.y16{bottom:635.824000pt;}
.y70{bottom:638.860000pt;}
.y53{bottom:638.872000pt;}
.ye8{bottom:644.457333pt;}
.y94{bottom:650.642667pt;}
.yc9{bottom:651.418667pt;}
.y15{bottom:653.889333pt;}
.y6f{bottom:657.456000pt;}
.yaf{bottom:662.462667pt;}
.ye7{bottom:662.522667pt;}
.yf0{bottom:663.366667pt;}
.y52{bottom:668.182667pt;}
.y32{bottom:670.758667pt;}
.yc8{bottom:676.788000pt;}
.y93{bottom:678.101333pt;}
.ye6{bottom:680.588000pt;}
.y14{bottom:686.501333pt;}
.y6e{bottom:689.402667pt;}
.yae{bottom:689.921333pt;}
.yef{bottom:690.825333pt;}
.y51{bottom:695.641333pt;}
.y13{bottom:704.566667pt;}
.ye5{bottom:710.609333pt;}
.yc7{bottom:713.436000pt;}
.y92{bottom:714.025333pt;}
.y31{bottom:716.588000pt;}
.y6d{bottom:716.861333pt;}
.y12{bottom:722.632000pt;}
.ye4{bottom:728.674667pt;}
.yad{bottom:728.677333pt;}
.yee{bottom:729.776000pt;}
.y50{bottom:731.565333pt;}
.y30{bottom:734.653333pt;}
.y11{bottom:740.697333pt;}
.yc6{bottom:745.905333pt;}
.ye3{bottom:746.740000pt;}
.y3{bottom:747.065333pt;}
.y6c{bottom:755.812000pt;}
.yac{bottom:758.286667pt;}
.y10{bottom:758.762667pt;}
.yed{bottom:759.797333pt;}
.y91{bottom:759.854667pt;}
.ye2{bottom:764.805333pt;}
.y2f{bottom:768.660000pt;}
.y4f{bottom:776.656000pt;}
.yf{bottom:776.829333pt;}
.ye1{bottom:782.872000pt;}
.y6b{bottom:785.833333pt;}
.yab{bottom:787.894667pt;}
.yec{bottom:789.817333pt;}
.yc5{bottom:791.734667pt;}
.y90{bottom:793.860000pt;}
.y4e{bottom:794.722667pt;}
.y2e{bottom:798.680000pt;}
.ye0{bottom:800.937333pt;}
.y2{bottom:802.925333pt;}
.ye{bottom:809.440000pt;}
.y6a{bottom:815.853333pt;}
.yaa{bottom:817.502667pt;}
.ydf{bottom:819.002667pt;}
.yeb{bottom:819.838667pt;}
.yc4{bottom:821.756000pt;}
.y8f{bottom:823.881333pt;}
.y4d{bottom:824.032000pt;}
.yd{bottom:827.505333pt;}
.y2d{bottom:828.701333pt;}
.yde{bottom:837.068000pt;}
.yc3{bottom:839.821333pt;}
.y4c{bottom:842.097333pt;}
.y1{bottom:845.518667pt;}
.yc{bottom:845.570667pt;}
.y69{bottom:845.874667pt;}
.ya9{bottom:847.112000pt;}
.yea{bottom:849.858667pt;}
.y8e{bottom:853.902667pt;}
.y2c{bottom:858.721333pt;}
.yb{bottom:863.636000pt;}
.ydd{bottom:869.537333pt;}
.yc2{bottom:869.842667pt;}
.y4b{bottom:870.553333pt;}
.y68{bottom:879.880000pt;}
.y8d{bottom:883.922667pt;}
.y4a{bottom:888.618667pt;}
.y2b{bottom:892.728000pt;}
.ya{bottom:896.248000pt;}
.yc1{bottom:899.862667pt;}
.y67{bottom:907.340000pt;}
.y2a{bottom:910.793333pt;}
.ydc{bottom:915.368000pt;}
.y49{bottom:917.928000pt;}
.y9{bottom:943.262667pt;}
.y48{bottom:945.388000pt;}
.y8{bottom:996.502667pt;}
.h6{height:40.378215pt;}
.h9{height:41.018216pt;}
.h5{height:43.636400pt;}
.h4{height:45.525402pt;}
.h8{height:47.820800pt;}
.h3{height:54.630330pt;}
.h7{height:57.384800pt;}
.h2{height:64.454458pt;}
.h1{height:99.148400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.x14{left:103.970667pt;}
.x11{left:105.016000pt;}
.xe{left:112.081333pt;}
.x10{left:113.777333pt;}
.x9{left:117.818667pt;}
.xc{left:119.232000pt;}
.xb{left:127.201333pt;}
.x1{left:130.085333pt;}
.xf{left:132.364000pt;}
.xa{left:151.273333pt;}
.x6{left:153.252000pt;}
.x3{left:197.370667pt;}
.x12{left:258.236000pt;}
.x2{left:268.640000pt;}
.x7{left:274.365333pt;}
.x4{left:285.269333pt;}
.xd{left:291.172000pt;}
.x13{left:322.369333pt;}
.x15{left:336.726667pt;}
.x5{left:343.510667pt;}
}




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