
    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_aa782cc18740385d9d6c217a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.011230;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_4dea57055aac533d611fe72b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.031738;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_9b6632fc12361f86d7c65adf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_da4b97f3df395fc981360154.woff')format("woff");}.ff4{font-family:ff4;line-height:0.976094;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_421b6b06bbacb006065728f0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.011230;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_524b1e181485a7456adf9507.woff')format("woff");}.ff6{font-family:ff6;line-height:0.956000;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_b4ec004bec57400fc1c48f5a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.976111;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_885de76c74afbf9e955320c2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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;}
.v1{vertical-align:24.000000px;}
.ls2{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.468000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.002910px;}
.ls4{letter-spacing:40.023705px;}
.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;}
}
.ws8{word-spacing:-29.160000px;}
.ws4{word-spacing:-14.936265px;}
.ws3{word-spacing:-14.816295px;}
.ws6{word-spacing:-14.756310px;}
.ws5{word-spacing:-14.696325px;}
.ws7{word-spacing:-11.859705px;}
.ws2{word-spacing:-3.355635px;}
.ws1{word-spacing:-0.599775px;}
.ws0{word-spacing:0.000000px;}
._4{width:2.455725px;}
._5{width:3.754155px;}
._8{width:5.946690px;}
._9{width:8.401890px;}
._6{width:9.458190px;}
._2{width:10.784235px;}
._7{width:12.507285px;}
._1{width:13.651755px;}
._a{width:29.976000px;}
._c{width:38.523735px;}
._b{width:40.023705px;}
._3{width:64.460775px;}
._0{width:113.888415px;}
._10{width:737.718000px;}
._11{width:743.550000px;}
._f{width:836.754000px;}
._13{width:980.880000px;}
._e{width:994.434000px;}
._12{width:1119.390000px;}
._14{width:1160.808000px;}
._d{width:2023.350000px;}
.fc5{color:rgb(0,51,102);}
.fc2{color:rgb(16,98,251);}
.fc1{color:rgb(107,119,140);}
.fc4{color:rgb(0,130,0);}
.fc3{color:rgb(255,20,147);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.690000px;}
.fs6{font-size:47.250000px;}
.fs3{font-size:48.015000px;}
.fs8{font-size:48.600000px;}
.fsa{font-size:54.000000px;}
.fs2{font-size:59.985000px;}
.fs9{font-size:77.985000px;}
.fs1{font-size:84.015000px;}
.fs7{font-size:90.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.yb1{bottom:5.760000px;}
.y24{bottom:15.870000px;}
.y5{bottom:16.620000px;}
.y5f{bottom:21.630000px;}
.y26{bottom:24.465000px;}
.y7{bottom:24.480000px;}
.yb0{bottom:25.260000px;}
.yc4{bottom:34.260000px;}
.y5e{bottom:38.505000px;}
.yaf{bottom:44.760000px;}
.y23{bottom:45.870000px;}
.yc3{bottom:53.760000px;}
.y5d{bottom:55.380000px;}
.yae{bottom:64.260000px;}
.y25{bottom:67.155000px;}
.y5c{bottom:72.255000px;}
.yc2{bottom:73.260000px;}
.y22{bottom:75.870000px;}
.yad{bottom:83.760000px;}
.yc1{bottom:92.760000px;}
.yac{bottom:103.260000px;}
.y21{bottom:105.870000px;}
.yc0{bottom:112.260000px;}
.yab{bottom:122.760000px;}
.ybf{bottom:131.760000px;}
.y20{bottom:135.870000px;}
.y4{bottom:137.730000px;}
.yaa{bottom:142.260000px;}
.yf6{bottom:151.125000px;}
.ybe{bottom:151.260000px;}
.y35{bottom:153.585000px;}
.y92{bottom:158.775000px;}
.yd1{bottom:160.725000px;}
.ya9{bottom:161.760000px;}
.y125{bottom:163.080000px;}
.y1f{bottom:165.870000px;}
.y134{bottom:166.980000px;}
.yd2{bottom:167.025000px;}
.y4e{bottom:168.945000px;}
.ybd{bottom:170.760000px;}
.ya8{bottom:181.260000px;}
.y124{bottom:182.580000px;}
.y4d{bottom:184.290000px;}
.y3{bottom:185.625000px;}
.y133{bottom:186.480000px;}
.ybc{bottom:190.260000px;}
.y87{bottom:191.775000px;}
.y1e{bottom:195.870000px;}
.y4c{bottom:199.650000px;}
.ya7{bottom:200.760000px;}
.y123{bottom:202.080000px;}
.y132{bottom:205.980000px;}
.y153{bottom:208.980000px;}
.ybb{bottom:209.760000px;}
.y69{bottom:211.995000px;}
.y4b{bottom:215.010000px;}
.y101{bottom:215.745000px;}
.ya6{bottom:220.260000px;}
.y1d{bottom:225.870000px;}
.y8{bottom:227.625000px;}
.y152{bottom:228.480000px;}
.yba{bottom:229.260000px;}
.y147{bottom:232.980000px;}
.y100{bottom:235.245000px;}
.y122{bottom:235.500000px;}
.y131{bottom:239.400000px;}
.y2{bottom:239.625000px;}
.ya5{bottom:239.760000px;}
.y68{bottom:243.495000px;}
.yb9{bottom:248.760000px;}
.y146{bottom:252.480000px;}
.y1c{bottom:255.870000px;}
.ya4{bottom:259.260000px;}
.y151{bottom:259.980000px;}
.yff{bottom:266.745000px;}
.yb8{bottom:268.260000px;}
.y67{bottom:274.995000px;}
.ya3{bottom:278.760000px;}
.y150{bottom:279.480000px;}
.y145{bottom:283.980000px;}
.y86{bottom:285.645000px;}
.y1b{bottom:285.870000px;}
.yfe{bottom:286.245000px;}
.yb7{bottom:287.760000px;}
.y66{bottom:294.495000px;}
.ya2{bottom:298.260000px;}
.y144{bottom:303.480000px;}
.yb6{bottom:307.260000px;}
.y14f{bottom:310.980000px;}
.y65{bottom:313.995000px;}
.y1a{bottom:315.870000px;}
.yfd{bottom:317.745000px;}
.ya1{bottom:317.760000px;}
.y119{bottom:320.295000px;}
.y143{bottom:322.980000px;}
.yb5{bottom:326.760000px;}
.y14e{bottom:330.480000px;}
.yfc{bottom:337.245000px;}
.ya0{bottom:337.260000px;}
.y118{bottom:339.795000px;}
.y85{bottom:342.330000px;}
.y142{bottom:342.480000px;}
.y64{bottom:345.495000px;}
.y19{bottom:345.870000px;}
.yb4{bottom:346.260000px;}
.y14d{bottom:349.980000px;}
.y13c{bottom:354.480000px;}
.y9f{bottom:356.760000px;}
.y117{bottom:359.295000px;}
.y13e{bottom:361.980000px;}
.yf5{bottom:363.150000px;}
.y63{bottom:364.995000px;}
.yb3{bottom:365.760000px;}
.yfb{bottom:368.745000px;}
.y14c{bottom:369.480000px;}
.y13b{bottom:373.980000px;}
.y18{bottom:375.870000px;}
.y9e{bottom:376.260000px;}
.y116{bottom:378.795000px;}
.y13d{bottom:381.480000px;}
.y62{bottom:384.495000px;}
.yf4{bottom:385.260000px;}
.y16b{bottom:385.605000px;}
.yfa{bottom:388.245000px;}
.y14b{bottom:388.980000px;}
.y13a{bottom:393.480000px;}
.y9d{bottom:395.760000px;}
.y115{bottom:398.295000px;}
.y141{bottom:400.980000px;}
.yf3{bottom:404.760000px;}
.y84{bottom:405.645000px;}
.y17{bottom:405.870000px;}
.ye4{bottom:411.525000px;}
.y139{bottom:412.980000px;}
.y9c{bottom:415.260000px;}
.y114{bottom:417.795000px;}
.y61{bottom:418.875000px;}
.y140{bottom:420.480000px;}
.yf9{bottom:421.650000px;}
.y14a{bottom:422.400000px;}
.yf2{bottom:424.260000px;}
.y83{bottom:425.145000px;}
.y138{bottom:432.480000px;}
.y9b{bottom:434.760000px;}
.y16{bottom:435.870000px;}
.y15c{bottom:439.980000px;}
.yf1{bottom:443.760000px;}
.y113{bottom:449.295000px;}
.y137{bottom:451.980000px;}
.y13f{bottom:453.900000px;}
.y9a{bottom:454.260000px;}
.y82{bottom:456.645000px;}
.yf0{bottom:463.260000px;}
.y15{bottom:465.870000px;}
.y112{bottom:468.795000px;}
.yf8{bottom:470.025000px;}
.y136{bottom:471.480000px;}
.y15b{bottom:473.400000px;}
.y99{bottom:473.760000px;}
.y81{bottom:476.145000px;}
.yef{bottom:482.760000px;}
.y98{bottom:493.260000px;}
.y80{bottom:495.645000px;}
.y14{bottom:495.870000px;}
.y111{bottom:500.295000px;}
.yee{bottom:502.260000px;}
.y135{bottom:504.900000px;}
.y149{bottom:506.880000px;}
.y60{bottom:512.745000px;}
.y97{bottom:512.760000px;}
.y110{bottom:519.795000px;}
.yed{bottom:521.760000px;}
.y13{bottom:525.870000px;}
.y148{bottom:526.380000px;}
.y1{bottom:529.875000px;}
.y96{bottom:532.260000px;}
.yec{bottom:541.260000px;}
.y5b{bottom:547.125000px;}
.y10f{bottom:551.295000px;}
.y95{bottom:551.760000px;}
.y12{bottom:555.870000px;}
.y7f{bottom:558.645000px;}
.yeb{bottom:560.760000px;}
.y94{bottom:571.260000px;}
.y7e{bottom:578.145000px;}
.yea{bottom:580.260000px;}
.y10e{bottom:582.795000px;}
.y11{bottom:585.870000px;}
.y93{bottom:590.760000px;}
.y7d{bottom:597.645000px;}
.ye9{bottom:599.760000px;}
.y10d{bottom:602.295000px;}
.ye3{bottom:610.260000px;}
.y10{bottom:615.870000px;}
.ye8{bottom:619.260000px;}
.y4a{bottom:626.745000px;}
.y7c{bottom:629.145000px;}
.ye2{bottom:629.760000px;}
.y10c{bottom:633.795000px;}
.y158{bottom:634.605000px;}
.ye7{bottom:638.760000px;}
.yd0{bottom:645.750000px;}
.yf{bottom:645.870000px;}
.y49{bottom:646.245000px;}
.y7b{bottom:648.645000px;}
.ye1{bottom:649.260000px;}
.y157{bottom:654.105000px;}
.ye6{bottom:658.260000px;}
.y10b{bottom:665.295000px;}
.y7a{bottom:668.145000px;}
.ye0{bottom:668.760000px;}
.y156{bottom:673.605000px;}
.y5a{bottom:674.745000px;}
.ye{bottom:675.870000px;}
.y48{bottom:677.745000px;}
.ye5{bottom:677.760000px;}
.y10a{bottom:684.795000px;}
.ydf{bottom:688.260000px;}
.ycf{bottom:699.930000px;}
.yd{bottom:705.870000px;}
.y155{bottom:707.025000px;}
.yde{bottom:707.760000px;}
.y47{bottom:709.245000px;}
.y16a{bottom:713.745000px;}
.y2e{bottom:726.660000px;}
.ydd{bottom:727.260000px;}
.y46{bottom:728.745000px;}
.y79{bottom:731.145000px;}
.y59{bottom:731.430000px;}
.y169{bottom:733.245000px;}
.yc{bottom:735.870000px;}
.yb2{bottom:743.025000px;}
.ydc{bottom:746.760000px;}
.y45{bottom:748.245000px;}
.y78{bottom:750.645000px;}
.y58{bottom:758.430000px;}
.y2d{bottom:761.280000px;}
.yce{bottom:763.995000px;}
.y168{bottom:764.745000px;}
.yb{bottom:765.870000px;}
.ydb{bottom:766.260000px;}
.y109{bottom:769.530000px;}
.y16c{bottom:772.005000px;}
.y44{bottom:779.745000px;}
.y77{bottom:782.145000px;}
.yda{bottom:785.760000px;}
.ycd{bottom:789.495000px;}
.y15a{bottom:791.505000px;}
.ya{bottom:795.870000px;}
.y167{bottom:796.245000px;}
.y76{bottom:801.645000px;}
.yd9{bottom:805.260000px;}
.y159{bottom:811.005000px;}
.y43{bottom:811.245000px;}
.ycc{bottom:814.995000px;}
.y166{bottom:815.745000px;}
.y108{bottom:817.230000px;}
.y91{bottom:818.895000px;}
.y75{bottom:821.145000px;}
.y57{bottom:821.745000px;}
.y2c{bottom:824.280000px;}
.yd8{bottom:824.760000px;}
.y90{bottom:838.395000px;}
.ycb{bottom:840.495000px;}
.y56{bottom:841.245000px;}
.y154{bottom:841.545000px;}
.y42{bottom:842.745000px;}
.y2b{bottom:843.780000px;}
.yd7{bottom:844.260000px;}
.y165{bottom:847.245000px;}
.y3c{bottom:849.495000px;}
.y74{bottom:852.645000px;}
.y8f{bottom:857.895000px;}
.y55{bottom:860.745000px;}
.y130{bottom:861.645000px;}
.y41{bottom:862.245000px;}
.yd6{bottom:863.760000px;}
.y107{bottom:864.930000px;}
.y9{bottom:864.960000px;}
.yca{bottom:865.995000px;}
.y164{bottom:866.745000px;}
.y73{bottom:872.145000px;}
.y2a{bottom:875.280000px;}
.y121{bottom:877.245000px;}
.y54{bottom:880.245000px;}
.y3b{bottom:880.995000px;}
.y12f{bottom:881.145000px;}
.yd5{bottom:883.260000px;}
.y163{bottom:886.245000px;}
.y8e{bottom:889.395000px;}
.yc9{bottom:891.495000px;}
.y72{bottom:891.645000px;}
.y40{bottom:893.745000px;}
.y29{bottom:894.780000px;}
.y120{bottom:896.745000px;}
.y53{bottom:899.745000px;}
.y3a{bottom:900.495000px;}
.yd4{bottom:902.760000px;}
.y8d{bottom:908.895000px;}
.y106{bottom:912.630000px;}
.y12e{bottom:912.645000px;}
.y3f{bottom:913.245000px;}
.y11f{bottom:916.245000px;}
.yc8{bottom:916.995000px;}
.y162{bottom:917.745000px;}
.y52{bottom:919.245000px;}
.yd3{bottom:922.260000px;}
.y71{bottom:923.145000px;}
.y34{bottom:925.245000px;}
.y28{bottom:926.280000px;}
.y39{bottom:931.410000px;}
.y12d{bottom:932.145000px;}
.y3e{bottom:932.745000px;}
.y11e{bottom:935.745000px;}
.y160{bottom:937.245000px;}
.y51{bottom:938.745000px;}
.y8c{bottom:940.395000px;}
.yf7{bottom:941.760000px;}
.yc7{bottom:942.495000px;}
.y70{bottom:942.645000px;}
.y12c{bottom:951.645000px;}
.y11d{bottom:955.245000px;}
.y33{bottom:956.745000px;}
.y27{bottom:957.780000px;}
.y50{bottom:958.245000px;}
.y8b{bottom:959.895000px;}
.y105{bottom:960.330000px;}
.y38{bottom:962.745000px;}
.y3d{bottom:964.245000px;}
.yc6{bottom:967.995000px;}
.y12b{bottom:971.145000px;}
.y6f{bottom:974.145000px;}
.y11c{bottom:974.745000px;}
.y15f{bottom:988.245000px;}
.y12a{bottom:990.645000px;}
.yc5{bottom:993.495000px;}
.y6e{bottom:993.645000px;}
.y37{bottom:994.245000px;}
.y8a{bottom:994.275000px;}
.y4f{bottom:995.430000px;}
.y32{bottom:995.745000px;}
.y161{bottom:1007.745000px;}
.y104{bottom:1008.030000px;}
.y129{bottom:1010.145000px;}
.y11b{bottom:1013.745000px;}
.y15e{bottom:1019.745000px;}
.y6d{bottom:1025.145000px;}
.y31{bottom:1027.245000px;}
.y128{bottom:1029.645000px;}
.y36{bottom:1031.430000px;}
.y15d{bottom:1039.245000px;}
.y6c{bottom:1044.645000px;}
.y11a{bottom:1047.150000px;}
.y127{bottom:1049.145000px;}
.y103{bottom:1055.730000px;}
.y30{bottom:1058.745000px;}
.y6b{bottom:1064.145000px;}
.y126{bottom:1068.645000px;}
.y89{bottom:1088.145000px;}
.y2f{bottom:1097.085000px;}
.y102{bottom:1098.180000px;}
.y6a{bottom:1101.330000px;}
.y88{bottom:1107.645000px;}
.y6{bottom:1159.905000px;}
.h13{height:35.575200px;}
.h6{height:35.775000px;}
.he{height:37.906128px;}
.h7{height:38.519846px;}
.h1e{height:42.609375px;}
.h1f{height:43.321289px;}
.h16{height:43.465693px;}
.h10{height:43.909020px;}
.ha{height:45.663575px;}
.h11{height:45.663605px;}
.hc{height:47.331914px;}
.h5{height:48.122732px;}
.hd{height:48.620933px;}
.h18{height:61.535039px;}
.h4{height:67.400706px;}
.h14{height:69.750000px;}
.hf{height:72.202148px;}
.h9{height:85.218750px;}
.hb{height:86.642578px;}
.h12{height:103.500000px;}
.h3{height:142.031250px;}
.h1c{height:192.000000px;}
.h2{height:282.000000px;}
.h17{height:379.500000px;}
.h19{height:465.000000px;}
.h15{height:621.000000px;}
.h1d{height:652.500000px;}
.h1b{height:711.000000px;}
.h8{height:890.400000px;}
.h1a{height:955.500000px;}
.h0{height:1262.834657px;}
.h1{height:1263.000000px;}
.w3{width:445.620000px;}
.w4{width:677.310000px;}
.w2{width:680.310000px;}
.w0{width:892.913453px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:18.000000px;}
.x12{left:19.500000px;}
.x2{left:41.325000px;}
.x1{left:106.305000px;}
.xf{left:107.805000px;}
.x18{left:116.430000px;}
.x17{left:117.930000px;}
.xc{left:118.935000px;}
.x14{left:133.095000px;}
.xe{left:149.805000px;}
.x15{left:167.595000px;}
.x16{left:178.740000px;}
.x3{left:210.120000px;}
.x4{left:220.845000px;}
.x13{left:232.365000px;}
.x11{left:239.100000px;}
.xa{left:276.120000px;}
.x5{left:287.430000px;}
.x6{left:300.180000px;}
.x1a{left:311.640000px;}
.x1b{left:316.920000px;}
.x7{left:336.450000px;}
.xb{left:341.700000px;}
.xd{left:349.770000px;}
.x9{left:425.100000px;}
.x8{left:438.900000px;}
.x19{left:485.430000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.416000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002587pt;}
.ls4{letter-spacing:35.576627pt;}
.ws8{word-spacing:-25.920000pt;}
.ws4{word-spacing:-13.276680pt;}
.ws3{word-spacing:-13.170040pt;}
.ws6{word-spacing:-13.116720pt;}
.ws5{word-spacing:-13.063400pt;}
.ws7{word-spacing:-10.541960pt;}
.ws2{word-spacing:-2.982787pt;}
.ws1{word-spacing:-0.533133pt;}
.ws0{word-spacing:0.000000pt;}
._4{width:2.182867pt;}
._5{width:3.337027pt;}
._8{width:5.285947pt;}
._9{width:7.468347pt;}
._6{width:8.407280pt;}
._2{width:9.585987pt;}
._7{width:11.117587pt;}
._1{width:12.134893pt;}
._a{width:26.645333pt;}
._c{width:34.243320pt;}
._b{width:35.576627pt;}
._3{width:57.298467pt;}
._0{width:101.234147pt;}
._10{width:655.749333pt;}
._11{width:660.933333pt;}
._f{width:743.781333pt;}
._13{width:871.893333pt;}
._e{width:883.941333pt;}
._12{width:995.013333pt;}
._14{width:1031.829333pt;}
._d{width:1798.533333pt;}
.fs5{font-size:27.280000pt;}
.fs6{font-size:42.000000pt;}
.fs3{font-size:42.680000pt;}
.fs8{font-size:43.200000pt;}
.fsa{font-size:48.000000pt;}
.fs2{font-size:53.320000pt;}
.fs9{font-size:69.320000pt;}
.fs1{font-size:74.680000pt;}
.fs7{font-size:80.000000pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:5.120000pt;}
.y24{bottom:14.106667pt;}
.y5{bottom:14.773333pt;}
.y5f{bottom:19.226667pt;}
.y26{bottom:21.746667pt;}
.y7{bottom:21.760000pt;}
.yb0{bottom:22.453333pt;}
.yc4{bottom:30.453333pt;}
.y5e{bottom:34.226667pt;}
.yaf{bottom:39.786667pt;}
.y23{bottom:40.773333pt;}
.yc3{bottom:47.786667pt;}
.y5d{bottom:49.226667pt;}
.yae{bottom:57.120000pt;}
.y25{bottom:59.693333pt;}
.y5c{bottom:64.226667pt;}
.yc2{bottom:65.120000pt;}
.y22{bottom:67.440000pt;}
.yad{bottom:74.453333pt;}
.yc1{bottom:82.453333pt;}
.yac{bottom:91.786667pt;}
.y21{bottom:94.106667pt;}
.yc0{bottom:99.786667pt;}
.yab{bottom:109.120000pt;}
.ybf{bottom:117.120000pt;}
.y20{bottom:120.773333pt;}
.y4{bottom:122.426667pt;}
.yaa{bottom:126.453333pt;}
.yf6{bottom:134.333333pt;}
.ybe{bottom:134.453333pt;}
.y35{bottom:136.520000pt;}
.y92{bottom:141.133333pt;}
.yd1{bottom:142.866667pt;}
.ya9{bottom:143.786667pt;}
.y125{bottom:144.960000pt;}
.y1f{bottom:147.440000pt;}
.y134{bottom:148.426667pt;}
.yd2{bottom:148.466667pt;}
.y4e{bottom:150.173333pt;}
.ybd{bottom:151.786667pt;}
.ya8{bottom:161.120000pt;}
.y124{bottom:162.293333pt;}
.y4d{bottom:163.813333pt;}
.y3{bottom:165.000000pt;}
.y133{bottom:165.760000pt;}
.ybc{bottom:169.120000pt;}
.y87{bottom:170.466667pt;}
.y1e{bottom:174.106667pt;}
.y4c{bottom:177.466667pt;}
.ya7{bottom:178.453333pt;}
.y123{bottom:179.626667pt;}
.y132{bottom:183.093333pt;}
.y153{bottom:185.760000pt;}
.ybb{bottom:186.453333pt;}
.y69{bottom:188.440000pt;}
.y4b{bottom:191.120000pt;}
.y101{bottom:191.773333pt;}
.ya6{bottom:195.786667pt;}
.y1d{bottom:200.773333pt;}
.y8{bottom:202.333333pt;}
.y152{bottom:203.093333pt;}
.yba{bottom:203.786667pt;}
.y147{bottom:207.093333pt;}
.y100{bottom:209.106667pt;}
.y122{bottom:209.333333pt;}
.y131{bottom:212.800000pt;}
.y2{bottom:213.000000pt;}
.ya5{bottom:213.120000pt;}
.y68{bottom:216.440000pt;}
.yb9{bottom:221.120000pt;}
.y146{bottom:224.426667pt;}
.y1c{bottom:227.440000pt;}
.ya4{bottom:230.453333pt;}
.y151{bottom:231.093333pt;}
.yff{bottom:237.106667pt;}
.yb8{bottom:238.453333pt;}
.y67{bottom:244.440000pt;}
.ya3{bottom:247.786667pt;}
.y150{bottom:248.426667pt;}
.y145{bottom:252.426667pt;}
.y86{bottom:253.906667pt;}
.y1b{bottom:254.106667pt;}
.yfe{bottom:254.440000pt;}
.yb7{bottom:255.786667pt;}
.y66{bottom:261.773333pt;}
.ya2{bottom:265.120000pt;}
.y144{bottom:269.760000pt;}
.yb6{bottom:273.120000pt;}
.y14f{bottom:276.426667pt;}
.y65{bottom:279.106667pt;}
.y1a{bottom:280.773333pt;}
.yfd{bottom:282.440000pt;}
.ya1{bottom:282.453333pt;}
.y119{bottom:284.706667pt;}
.y143{bottom:287.093333pt;}
.yb5{bottom:290.453333pt;}
.y14e{bottom:293.760000pt;}
.yfc{bottom:299.773333pt;}
.ya0{bottom:299.786667pt;}
.y118{bottom:302.040000pt;}
.y85{bottom:304.293333pt;}
.y142{bottom:304.426667pt;}
.y64{bottom:307.106667pt;}
.y19{bottom:307.440000pt;}
.yb4{bottom:307.786667pt;}
.y14d{bottom:311.093333pt;}
.y13c{bottom:315.093333pt;}
.y9f{bottom:317.120000pt;}
.y117{bottom:319.373333pt;}
.y13e{bottom:321.760000pt;}
.yf5{bottom:322.800000pt;}
.y63{bottom:324.440000pt;}
.yb3{bottom:325.120000pt;}
.yfb{bottom:327.773333pt;}
.y14c{bottom:328.426667pt;}
.y13b{bottom:332.426667pt;}
.y18{bottom:334.106667pt;}
.y9e{bottom:334.453333pt;}
.y116{bottom:336.706667pt;}
.y13d{bottom:339.093333pt;}
.y62{bottom:341.773333pt;}
.yf4{bottom:342.453333pt;}
.y16b{bottom:342.760000pt;}
.yfa{bottom:345.106667pt;}
.y14b{bottom:345.760000pt;}
.y13a{bottom:349.760000pt;}
.y9d{bottom:351.786667pt;}
.y115{bottom:354.040000pt;}
.y141{bottom:356.426667pt;}
.yf3{bottom:359.786667pt;}
.y84{bottom:360.573333pt;}
.y17{bottom:360.773333pt;}
.ye4{bottom:365.800000pt;}
.y139{bottom:367.093333pt;}
.y9c{bottom:369.120000pt;}
.y114{bottom:371.373333pt;}
.y61{bottom:372.333333pt;}
.y140{bottom:373.760000pt;}
.yf9{bottom:374.800000pt;}
.y14a{bottom:375.466667pt;}
.yf2{bottom:377.120000pt;}
.y83{bottom:377.906667pt;}
.y138{bottom:384.426667pt;}
.y9b{bottom:386.453333pt;}
.y16{bottom:387.440000pt;}
.y15c{bottom:391.093333pt;}
.yf1{bottom:394.453333pt;}
.y113{bottom:399.373333pt;}
.y137{bottom:401.760000pt;}
.y13f{bottom:403.466667pt;}
.y9a{bottom:403.786667pt;}
.y82{bottom:405.906667pt;}
.yf0{bottom:411.786667pt;}
.y15{bottom:414.106667pt;}
.y112{bottom:416.706667pt;}
.yf8{bottom:417.800000pt;}
.y136{bottom:419.093333pt;}
.y15b{bottom:420.800000pt;}
.y99{bottom:421.120000pt;}
.y81{bottom:423.240000pt;}
.yef{bottom:429.120000pt;}
.y98{bottom:438.453333pt;}
.y80{bottom:440.573333pt;}
.y14{bottom:440.773333pt;}
.y111{bottom:444.706667pt;}
.yee{bottom:446.453333pt;}
.y135{bottom:448.800000pt;}
.y149{bottom:450.560000pt;}
.y60{bottom:455.773333pt;}
.y97{bottom:455.786667pt;}
.y110{bottom:462.040000pt;}
.yed{bottom:463.786667pt;}
.y13{bottom:467.440000pt;}
.y148{bottom:467.893333pt;}
.y1{bottom:471.000000pt;}
.y96{bottom:473.120000pt;}
.yec{bottom:481.120000pt;}
.y5b{bottom:486.333333pt;}
.y10f{bottom:490.040000pt;}
.y95{bottom:490.453333pt;}
.y12{bottom:494.106667pt;}
.y7f{bottom:496.573333pt;}
.yeb{bottom:498.453333pt;}
.y94{bottom:507.786667pt;}
.y7e{bottom:513.906667pt;}
.yea{bottom:515.786667pt;}
.y10e{bottom:518.040000pt;}
.y11{bottom:520.773333pt;}
.y93{bottom:525.120000pt;}
.y7d{bottom:531.240000pt;}
.ye9{bottom:533.120000pt;}
.y10d{bottom:535.373333pt;}
.ye3{bottom:542.453333pt;}
.y10{bottom:547.440000pt;}
.ye8{bottom:550.453333pt;}
.y4a{bottom:557.106667pt;}
.y7c{bottom:559.240000pt;}
.ye2{bottom:559.786667pt;}
.y10c{bottom:563.373333pt;}
.y158{bottom:564.093333pt;}
.ye7{bottom:567.786667pt;}
.yd0{bottom:574.000000pt;}
.yf{bottom:574.106667pt;}
.y49{bottom:574.440000pt;}
.y7b{bottom:576.573333pt;}
.ye1{bottom:577.120000pt;}
.y157{bottom:581.426667pt;}
.ye6{bottom:585.120000pt;}
.y10b{bottom:591.373333pt;}
.y7a{bottom:593.906667pt;}
.ye0{bottom:594.453333pt;}
.y156{bottom:598.760000pt;}
.y5a{bottom:599.773333pt;}
.ye{bottom:600.773333pt;}
.y48{bottom:602.440000pt;}
.ye5{bottom:602.453333pt;}
.y10a{bottom:608.706667pt;}
.ydf{bottom:611.786667pt;}
.ycf{bottom:622.160000pt;}
.yd{bottom:627.440000pt;}
.y155{bottom:628.466667pt;}
.yde{bottom:629.120000pt;}
.y47{bottom:630.440000pt;}
.y16a{bottom:634.440000pt;}
.y2e{bottom:645.920000pt;}
.ydd{bottom:646.453333pt;}
.y46{bottom:647.773333pt;}
.y79{bottom:649.906667pt;}
.y59{bottom:650.160000pt;}
.y169{bottom:651.773333pt;}
.yc{bottom:654.106667pt;}
.yb2{bottom:660.466667pt;}
.ydc{bottom:663.786667pt;}
.y45{bottom:665.106667pt;}
.y78{bottom:667.240000pt;}
.y58{bottom:674.160000pt;}
.y2d{bottom:676.693333pt;}
.yce{bottom:679.106667pt;}
.y168{bottom:679.773333pt;}
.yb{bottom:680.773333pt;}
.ydb{bottom:681.120000pt;}
.y109{bottom:684.026667pt;}
.y16c{bottom:686.226667pt;}
.y44{bottom:693.106667pt;}
.y77{bottom:695.240000pt;}
.yda{bottom:698.453333pt;}
.ycd{bottom:701.773333pt;}
.y15a{bottom:703.560000pt;}
.ya{bottom:707.440000pt;}
.y167{bottom:707.773333pt;}
.y76{bottom:712.573333pt;}
.yd9{bottom:715.786667pt;}
.y159{bottom:720.893333pt;}
.y43{bottom:721.106667pt;}
.ycc{bottom:724.440000pt;}
.y166{bottom:725.106667pt;}
.y108{bottom:726.426667pt;}
.y91{bottom:727.906667pt;}
.y75{bottom:729.906667pt;}
.y57{bottom:730.440000pt;}
.y2c{bottom:732.693333pt;}
.yd8{bottom:733.120000pt;}
.y90{bottom:745.240000pt;}
.ycb{bottom:747.106667pt;}
.y56{bottom:747.773333pt;}
.y154{bottom:748.040000pt;}
.y42{bottom:749.106667pt;}
.y2b{bottom:750.026667pt;}
.yd7{bottom:750.453333pt;}
.y165{bottom:753.106667pt;}
.y3c{bottom:755.106667pt;}
.y74{bottom:757.906667pt;}
.y8f{bottom:762.573333pt;}
.y55{bottom:765.106667pt;}
.y130{bottom:765.906667pt;}
.y41{bottom:766.440000pt;}
.yd6{bottom:767.786667pt;}
.y107{bottom:768.826667pt;}
.y9{bottom:768.853333pt;}
.yca{bottom:769.773333pt;}
.y164{bottom:770.440000pt;}
.y73{bottom:775.240000pt;}
.y2a{bottom:778.026667pt;}
.y121{bottom:779.773333pt;}
.y54{bottom:782.440000pt;}
.y3b{bottom:783.106667pt;}
.y12f{bottom:783.240000pt;}
.yd5{bottom:785.120000pt;}
.y163{bottom:787.773333pt;}
.y8e{bottom:790.573333pt;}
.yc9{bottom:792.440000pt;}
.y72{bottom:792.573333pt;}
.y40{bottom:794.440000pt;}
.y29{bottom:795.360000pt;}
.y120{bottom:797.106667pt;}
.y53{bottom:799.773333pt;}
.y3a{bottom:800.440000pt;}
.yd4{bottom:802.453333pt;}
.y8d{bottom:807.906667pt;}
.y106{bottom:811.226667pt;}
.y12e{bottom:811.240000pt;}
.y3f{bottom:811.773333pt;}
.y11f{bottom:814.440000pt;}
.yc8{bottom:815.106667pt;}
.y162{bottom:815.773333pt;}
.y52{bottom:817.106667pt;}
.yd3{bottom:819.786667pt;}
.y71{bottom:820.573333pt;}
.y34{bottom:822.440000pt;}
.y28{bottom:823.360000pt;}
.y39{bottom:827.920000pt;}
.y12d{bottom:828.573333pt;}
.y3e{bottom:829.106667pt;}
.y11e{bottom:831.773333pt;}
.y160{bottom:833.106667pt;}
.y51{bottom:834.440000pt;}
.y8c{bottom:835.906667pt;}
.yf7{bottom:837.120000pt;}
.yc7{bottom:837.773333pt;}
.y70{bottom:837.906667pt;}
.y12c{bottom:845.906667pt;}
.y11d{bottom:849.106667pt;}
.y33{bottom:850.440000pt;}
.y27{bottom:851.360000pt;}
.y50{bottom:851.773333pt;}
.y8b{bottom:853.240000pt;}
.y105{bottom:853.626667pt;}
.y38{bottom:855.773333pt;}
.y3d{bottom:857.106667pt;}
.yc6{bottom:860.440000pt;}
.y12b{bottom:863.240000pt;}
.y6f{bottom:865.906667pt;}
.y11c{bottom:866.440000pt;}
.y15f{bottom:878.440000pt;}
.y12a{bottom:880.573333pt;}
.yc5{bottom:883.106667pt;}
.y6e{bottom:883.240000pt;}
.y37{bottom:883.773333pt;}
.y8a{bottom:883.800000pt;}
.y4f{bottom:884.826667pt;}
.y32{bottom:885.106667pt;}
.y161{bottom:895.773333pt;}
.y104{bottom:896.026667pt;}
.y129{bottom:897.906667pt;}
.y11b{bottom:901.106667pt;}
.y15e{bottom:906.440000pt;}
.y6d{bottom:911.240000pt;}
.y31{bottom:913.106667pt;}
.y128{bottom:915.240000pt;}
.y36{bottom:916.826667pt;}
.y15d{bottom:923.773333pt;}
.y6c{bottom:928.573333pt;}
.y11a{bottom:930.800000pt;}
.y127{bottom:932.573333pt;}
.y103{bottom:938.426667pt;}
.y30{bottom:941.106667pt;}
.y6b{bottom:945.906667pt;}
.y126{bottom:949.906667pt;}
.y89{bottom:967.240000pt;}
.y2f{bottom:975.186667pt;}
.y102{bottom:976.160000pt;}
.y6a{bottom:978.960000pt;}
.y88{bottom:984.573333pt;}
.y6{bottom:1031.026667pt;}
.h13{height:31.622400pt;}
.h6{height:31.800000pt;}
.he{height:33.694336pt;}
.h7{height:34.239863pt;}
.h1e{height:37.875000pt;}
.h1f{height:38.507813pt;}
.h16{height:38.636172pt;}
.h10{height:39.030240pt;}
.ha{height:40.589845pt;}
.h11{height:40.589871pt;}
.hc{height:42.072813pt;}
.h5{height:42.775762pt;}
.hd{height:43.218607pt;}
.h18{height:54.697813pt;}
.h4{height:59.911738pt;}
.h14{height:62.000000pt;}
.hf{height:64.179688pt;}
.h9{height:75.750000pt;}
.hb{height:77.015625pt;}
.h12{height:92.000000pt;}
.h3{height:126.250000pt;}
.h1c{height:170.666667pt;}
.h2{height:250.666667pt;}
.h17{height:337.333333pt;}
.h19{height:413.333333pt;}
.h15{height:552.000000pt;}
.h1d{height:580.000000pt;}
.h1b{height:632.000000pt;}
.h8{height:791.466667pt;}
.h1a{height:849.333333pt;}
.h0{height:1122.519695pt;}
.h1{height:1122.666667pt;}
.w3{width:396.106667pt;}
.w4{width:602.053333pt;}
.w2{width:604.720000pt;}
.w0{width:793.700847pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:16.000000pt;}
.x12{left:17.333333pt;}
.x2{left:36.733333pt;}
.x1{left:94.493333pt;}
.xf{left:95.826667pt;}
.x18{left:103.493333pt;}
.x17{left:104.826667pt;}
.xc{left:105.720000pt;}
.x14{left:118.306667pt;}
.xe{left:133.160000pt;}
.x15{left:148.973333pt;}
.x16{left:158.880000pt;}
.x3{left:186.773333pt;}
.x4{left:196.306667pt;}
.x13{left:206.546667pt;}
.x11{left:212.533333pt;}
.xa{left:245.440000pt;}
.x5{left:255.493333pt;}
.x6{left:266.826667pt;}
.x1a{left:277.013333pt;}
.x1b{left:281.706667pt;}
.x7{left:299.066667pt;}
.xb{left:303.733333pt;}
.xd{left:310.906667pt;}
.x9{left:377.866667pt;}
.x8{left:390.133333pt;}
.x19{left:431.493333pt;}
}




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