
    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_319433e1af404e79d8f0e928.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956543;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_71827c4535f51b56f42153fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002571;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_dbad633693ad4eea5d0cb0e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.028809;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_23eeabd39818ac6e46a7de2e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0513d38ef41ed78d72552d4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.864258;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_0a14dba505b4f8facd496a50.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000488;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_ff47b8a934fd1e8d871e86fc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4619faf30bafc2bfece03a56.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964000;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_5af3c26c54f7fe094a2981d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959000;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_16a9064a6696a76ff3012368.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.747000;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:0.036000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-14.061195px;}
.ws0{word-spacing:-13.419000px;}
.ws2{word-spacing:-11.502000px;}
.ws4{word-spacing:-10.760445px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:16.960095px;}
._0{margin-left:-1.536000px;}
._2{width:1.882710px;}
._3{width:3.163470px;}
._4{width:5.038065px;}
._5{width:6.275985px;}
._6{width:7.380345px;}
._b{width:8.391615px;}
._a{width:9.511815px;}
._9{width:10.808040px;}
._10{width:12.203415px;}
._1a{width:13.214340px;}
._c{width:15.261840px;}
._17{width:16.267755px;}
._8{width:17.399235px;}
._e{width:18.572730px;}
._7{width:19.608765px;}
._f{width:21.025365px;}
._1b{width:22.224000px;}
._22{width:23.604330px;}
._19{width:24.695145px;}
._13{width:25.878390px;}
._d{width:27.160650px;}
._18{width:28.384575px;}
._16{width:30.083730px;}
._14{width:31.834650px;}
._12{width:33.006960px;}
._2e{width:34.019775px;}
._1d{width:35.058390px;}
._23{width:36.286830px;}
._11{width:37.535025px;}
._1e{width:38.709840px;}
._24{width:39.770790px;}
._1c{width:40.824000px;}
._27{width:42.087195px;}
._21{width:45.488460px;}
._28{width:47.858340px;}
._2f{width:48.943035px;}
._1f{width:51.037050px;}
._2a{width:52.965855px;}
._2b{width:54.233070px;}
._29{width:55.484475px;}
._2d{width:57.255180px;}
._30{width:64.612890px;}
._20{width:66.322155px;}
._15{width:73.955295px;}
._26{width:76.441005px;}
._25{width:79.402575px;}
._1{width:325.779000px;}
._2c{width:450.094875px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(195,197,200);}
.fc0{color:rgb(127,128,128);}
.fs0{font-size:46.800000px;}
.fs6{font-size:48.015000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.985000px;}
.fs3{font-size:63.000000px;}
.fs8{font-size:66.015000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:77.985000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:3.450000px;}
.y4{bottom:24.360000px;}
.y1{bottom:31.860000px;}
.y3{bottom:39.360000px;}
.y2{bottom:54.360000px;}
.yec{bottom:89.130000px;}
.y58{bottom:91.365000px;}
.yc2{bottom:96.930000px;}
.y121{bottom:97.650000px;}
.y8c{bottom:98.895000px;}
.y13d{bottom:102.045000px;}
.yeb{bottom:104.460000px;}
.y57{bottom:110.115000px;}
.y120{bottom:112.980000px;}
.yc1{bottom:115.665000px;}
.y8b{bottom:117.630000px;}
.yea{bottom:119.790000px;}
.y13c{bottom:120.780000px;}
.y11f{bottom:128.310000px;}
.y56{bottom:128.850000px;}
.yc0{bottom:134.415000px;}
.ye9{bottom:135.120000px;}
.y8a{bottom:136.365000px;}
.y13b{bottom:139.515000px;}
.y11e{bottom:143.640000px;}
.y55{bottom:147.585000px;}
.ye8{bottom:150.450000px;}
.ybf{bottom:153.150000px;}
.y89{bottom:155.115000px;}
.y13a{bottom:158.265000px;}
.y11d{bottom:158.970000px;}
.ye7{bottom:166.560000px;}
.y192{bottom:171.660000px;}
.ybe{bottom:171.885000px;}
.y88{bottom:173.850000px;}
.y11c{bottom:174.315000px;}
.y187{bottom:174.390000px;}
.y139{bottom:177.000000px;}
.y54{bottom:185.100000px;}
.ye6{bottom:185.295000px;}
.ybd{bottom:189.870000px;}
.y11b{bottom:190.410000px;}
.y186{bottom:190.890000px;}
.y87{bottom:192.585000px;}
.y138{bottom:195.735000px;}
.ye5{bottom:204.030000px;}
.ybc{bottom:205.200000px;}
.y11a{bottom:209.145000px;}
.y86{bottom:211.335000px;}
.y137{bottom:214.485000px;}
.y191{bottom:215.160000px;}
.ybb{bottom:220.530000px;}
.ye4{bottom:222.780000px;}
.y53{bottom:224.475000px;}
.y119{bottom:227.880000px;}
.y85{bottom:230.070000px;}
.y136{bottom:233.220000px;}
.yba{bottom:235.860000px;}
.ye3{bottom:241.515000px;}
.y52{bottom:243.225000px;}
.y118{bottom:246.630000px;}
.y84{bottom:248.805000px;}
.yb9{bottom:251.190000px;}
.y135{bottom:251.955000px;}
.y185{bottom:252.390000px;}
.y190{bottom:258.660000px;}
.ye2{bottom:260.250000px;}
.y51{bottom:261.960000px;}
.y117{bottom:265.365000px;}
.yb8{bottom:266.520000px;}
.y83{bottom:267.555000px;}
.y134{bottom:270.705000px;}
.y18f{bottom:275.850000px;}
.y184{bottom:277.890000px;}
.ye1{bottom:279.000000px;}
.y50{bottom:280.695000px;}
.yb7{bottom:281.865000px;}
.y116{bottom:284.100000px;}
.y82{bottom:286.290000px;}
.y133{bottom:289.440000px;}
.y18e{bottom:293.025000px;}
.yb6{bottom:297.195000px;}
.ye0{bottom:297.735000px;}
.y4f{bottom:299.430000px;}
.y115{bottom:302.850000px;}
.y183{bottom:303.390000px;}
.y81{bottom:305.025000px;}
.y132{bottom:308.175000px;}
.y18d{bottom:309.525000px;}
.yb5{bottom:312.525000px;}
.ydf{bottom:316.470000px;}
.y4e{bottom:318.180000px;}
.y1f{bottom:321.195000px;}
.y114{bottom:321.585000px;}
.y131{bottom:326.925000px;}
.yb4{bottom:328.620000px;}
.y182{bottom:328.890000px;}
.y80{bottom:331.620000px;}
.yde{bottom:335.220000px;}
.y4d{bottom:336.915000px;}
.y1e{bottom:339.720000px;}
.y113{bottom:340.320000px;}
.y26{bottom:345.255000px;}
.y130{bottom:345.660000px;}
.yb3{bottom:347.370000px;}
.y18c{bottom:353.025000px;}
.ydd{bottom:353.955000px;}
.y4c{bottom:355.650000px;}
.y1d{bottom:358.230000px;}
.y7f{bottom:358.875000px;}
.y112{bottom:359.070000px;}
.y12f{bottom:364.395000px;}
.yb2{bottom:366.105000px;}
.y18b{bottom:369.525000px;}
.y181{bottom:372.390000px;}
.y7e{bottom:372.510000px;}
.ydc{bottom:372.690000px;}
.y4b{bottom:374.400000px;}
.y150{bottom:376.320000px;}
.y1c{bottom:376.755000px;}
.y111{bottom:377.805000px;}
.y12e{bottom:383.145000px;}
.yb1{bottom:384.840000px;}
.y18a{bottom:386.025000px;}
.y25{bottom:386.130000px;}
.y180{bottom:388.890000px;}
.ydb{bottom:391.440000px;}
.y4a{bottom:393.135000px;}
.y14f{bottom:395.070000px;}
.y1b{bottom:395.565000px;}
.y110{bottom:396.540000px;}
.y7d{bottom:399.765000px;}
.y12d{bottom:401.880000px;}
.y189{bottom:402.525000px;}
.yb0{bottom:403.575000px;}
.y17f{bottom:405.390000px;}
.yda{bottom:410.175000px;}
.y49{bottom:411.870000px;}
.y24{bottom:413.400000px;}
.y14e{bottom:413.805000px;}
.y1a{bottom:414.360000px;}
.y10f{bottom:415.290000px;}
.y188{bottom:419.700000px;}
.y12c{bottom:420.615000px;}
.yaf{bottom:421.560000px;}
.y23{bottom:427.020000px;}
.yd9{bottom:428.910000px;}
.y48{bottom:430.620000px;}
.y14d{bottom:432.540000px;}
.y19{bottom:432.885000px;}
.y10e{bottom:434.025000px;}
.yae{bottom:436.890000px;}
.y12b{bottom:439.365000px;}
.yd8{bottom:447.645000px;}
.y47{bottom:449.355000px;}
.y14c{bottom:451.290000px;}
.y18{bottom:451.410000px;}
.yad{bottom:452.220000px;}
.y10d{bottom:452.760000px;}
.y12a{bottom:458.100000px;}
.y7c{bottom:459.795000px;}
.yd7{bottom:466.395000px;}
.yac{bottom:467.550000px;}
.y46{bottom:468.090000px;}
.y17{bottom:469.935000px;}
.y14b{bottom:470.025000px;}
.y10c{bottom:471.495000px;}
.y129{bottom:476.835000px;}
.y7b{bottom:478.545000px;}
.yab{bottom:482.880000px;}
.yd6{bottom:485.130000px;}
.y45{bottom:486.840000px;}
.y16{bottom:488.730000px;}
.y14a{bottom:488.760000px;}
.y10b{bottom:490.245000px;}
.y128{bottom:495.570000px;}
.y7a{bottom:497.280000px;}
.yaa{bottom:498.225000px;}
.yd5{bottom:503.865000px;}
.y44{bottom:505.575000px;}
.y149{bottom:507.495000px;}
.y10a{bottom:508.980000px;}
.ya9{bottom:513.555000px;}
.y127{bottom:514.320000px;}
.y79{bottom:516.015000px;}
.yd4{bottom:522.615000px;}
.y14{bottom:523.530000px;}
.y43{bottom:524.310000px;}
.y148{bottom:526.245000px;}
.y109{bottom:527.715000px;}
.ya8{bottom:528.885000px;}
.y126{bottom:533.055000px;}
.y78{bottom:534.765000px;}
.yd3{bottom:541.350000px;}
.y13{bottom:541.425000px;}
.y42{bottom:543.060000px;}
.ya7{bottom:544.215000px;}
.y147{bottom:544.980000px;}
.y125{bottom:551.790000px;}
.y77{bottom:553.500000px;}
.y12{bottom:559.305000px;}
.yd2{bottom:560.085000px;}
.ya6{bottom:560.310000px;}
.y41{bottom:561.795000px;}
.y146{bottom:563.715000px;}
.y108{bottom:565.230000px;}
.y124{bottom:570.540000px;}
.y76{bottom:572.235000px;}
.y11{bottom:577.200000px;}
.yd1{bottom:578.070000px;}
.ya5{bottom:579.060000px;}
.y40{bottom:580.530000px;}
.y145{bottom:582.465000px;}
.y107{bottom:587.370000px;}
.y123{bottom:589.275000px;}
.y75{bottom:590.220000px;}
.yd0{bottom:593.400000px;}
.y10{bottom:596.205000px;}
.y17e{bottom:596.550000px;}
.ya4{bottom:597.795000px;}
.y3f{bottom:599.280000px;}
.y144{bottom:601.200000px;}
.y74{bottom:605.550000px;}
.y122{bottom:608.010000px;}
.ycf{bottom:608.730000px;}
.yf{bottom:614.100000px;}
.y17d{bottom:615.300000px;}
.ya3{bottom:616.530000px;}
.y3e{bottom:618.015000px;}
.y165{bottom:618.525000px;}
.y143{bottom:619.935000px;}
.y73{bottom:620.880000px;}
.yce{bottom:624.060000px;}
.y106{bottom:626.760000px;}
.ye{bottom:632.745000px;}
.y17c{bottom:634.905000px;}
.ya2{bottom:635.280000px;}
.y72{bottom:636.210000px;}
.y3d{bottom:636.750000px;}
.y140{bottom:636.780000px;}
.y164{bottom:637.260000px;}
.y142{bottom:638.685000px;}
.ycd{bottom:639.390000px;}
.y105{bottom:645.495000px;}
.yd{bottom:651.465000px;}
.y71{bottom:651.540000px;}
.ya1{bottom:654.015000px;}
.ycc{bottom:654.720000px;}
.y17b{bottom:655.275000px;}
.y3c{bottom:655.500000px;}
.y163{bottom:655.995000px;}
.y141{bottom:657.420000px;}
.y104{bottom:664.230000px;}
.y70{bottom:666.870000px;}
.y15{bottom:667.830000px;}
.yc{bottom:670.080000px;}
.ycb{bottom:670.830000px;}
.ya0{bottom:672.750000px;}
.y3b{bottom:674.235000px;}
.y162{bottom:674.745000px;}
.y17a{bottom:675.660000px;}
.y13f{bottom:676.155000px;}
.y6f{bottom:682.215000px;}
.y103{bottom:682.980000px;}
.yca{bottom:689.565000px;}
.y9f{bottom:691.500000px;}
.y3a{bottom:692.970000px;}
.y13e{bottom:694.905000px;}
.y6e{bottom:697.545000px;}
.y161{bottom:697.980000px;}
.y179{bottom:700.530000px;}
.y102{bottom:701.715000px;}
.yc9{bottom:708.300000px;}
.y9e{bottom:710.235000px;}
.y39{bottom:711.705000px;}
.y6d{bottom:713.640000px;}
.y160{bottom:717.585000px;}
.y101{bottom:720.450000px;}
.y178{bottom:720.900000px;}
.yc8{bottom:727.050000px;}
.y9d{bottom:728.970000px;}
.y38{bottom:730.455000px;}
.y6c{bottom:732.375000px;}
.y100{bottom:739.200000px;}
.y177{bottom:741.285000px;}
.y15f{bottom:741.585000px;}
.yb{bottom:743.550000px;}
.yc7{bottom:745.785000px;}
.y9c{bottom:747.705000px;}
.y37{bottom:749.190000px;}
.y6b{bottom:751.125000px;}
.yff{bottom:757.935000px;}
.y176{bottom:760.785000px;}
.y15e{bottom:761.205000px;}
.yc6{bottom:764.520000px;}
.ya{bottom:765.270000px;}
.y9b{bottom:766.455000px;}
.y36{bottom:767.925000px;}
.y6a{bottom:769.860000px;}
.yfe{bottom:776.670000px;}
.y15d{bottom:781.575000px;}
.yc5{bottom:783.270000px;}
.y175{bottom:784.020000px;}
.y9a{bottom:785.190000px;}
.y9{bottom:786.525000px;}
.y35{bottom:786.675000px;}
.y69{bottom:788.595000px;}
.yfd{bottom:795.420000px;}
.y174{bottom:802.770000px;}
.y99{bottom:803.925000px;}
.y34{bottom:805.410000px;}
.y15c{bottom:805.590000px;}
.y68{bottom:807.345000px;}
.y8{bottom:807.765000px;}
.yfc{bottom:814.155000px;}
.yc4{bottom:820.770000px;}
.y173{bottom:822.375000px;}
.y98{bottom:822.675000px;}
.y33{bottom:824.145000px;}
.y15b{bottom:824.325000px;}
.y67{bottom:826.080000px;}
.yfb{bottom:832.890000px;}
.y97{bottom:841.410000px;}
.y172{bottom:842.745000px;}
.y32{bottom:842.895000px;}
.yc3{bottom:842.910000px;}
.y15a{bottom:843.930000px;}
.y66{bottom:844.815000px;}
.yfa{bottom:851.625000px;}
.y96{bottom:859.380000px;}
.y31{bottom:861.630000px;}
.y171{bottom:862.260000px;}
.y159{bottom:863.430000px;}
.y65{bottom:863.565000px;}
.yf9{bottom:870.375000px;}
.y95{bottom:874.710000px;}
.y7{bottom:878.085000px;}
.y30{bottom:880.365000px;}
.y170{bottom:880.995000px;}
.y158{bottom:882.180000px;}
.y64{bottom:882.300000px;}
.yf8{bottom:889.110000px;}
.y94{bottom:890.055000px;}
.y2f{bottom:899.115000px;}
.y16f{bottom:899.730000px;}
.y63{bottom:901.035000px;}
.y93{bottom:905.385000px;}
.y157{bottom:905.415000px;}
.yf7{bottom:907.845000px;}
.y2e{bottom:917.850000px;}
.y62{bottom:919.770000px;}
.y6{bottom:920.475000px;}
.y92{bottom:920.715000px;}
.y16e{bottom:922.980000px;}
.y156{bottom:925.020000px;}
.yf6{bottom:926.595000px;}
.y91{bottom:936.045000px;}
.y2d{bottom:936.585000px;}
.y61{bottom:938.520000px;}
.y16d{bottom:942.585000px;}
.yf5{bottom:945.330000px;}
.y155{bottom:945.405000px;}
.y90{bottom:951.375000px;}
.y5{bottom:951.435000px;}
.y2c{bottom:955.335000px;}
.y60{bottom:957.255000px;}
.y16c{bottom:962.085000px;}
.yf4{bottom:964.065000px;}
.y154{bottom:964.905000px;}
.y8f{bottom:966.705000px;}
.y2b{bottom:974.070000px;}
.y5f{bottom:975.990000px;}
.y8e{bottom:982.050000px;}
.yf3{bottom:982.815000px;}
.y16b{bottom:985.335000px;}
.y153{bottom:988.140000px;}
.y2a{bottom:992.805000px;}
.y5e{bottom:994.740000px;}
.y8d{bottom:997.380000px;}
.yf2{bottom:1001.550000px;}
.y16a{bottom:1004.940000px;}
.y152{bottom:1007.760000px;}
.y29{bottom:1011.555000px;}
.y5d{bottom:1013.475000px;}
.yf1{bottom:1020.285000px;}
.y169{bottom:1025.310000px;}
.y151{bottom:1028.130000px;}
.y28{bottom:1030.290000px;}
.y5c{bottom:1032.210000px;}
.yf0{bottom:1039.035000px;}
.y168{bottom:1044.825000px;}
.y5b{bottom:1050.960000px;}
.yef{bottom:1057.770000px;}
.y27{bottom:1067.790000px;}
.y167{bottom:1068.060000px;}
.y5a{bottom:1069.695000px;}
.yee{bottom:1075.740000px;}
.y166{bottom:1087.665000px;}
.y59{bottom:1088.430000px;}
.yed{bottom:1091.070000px;}
.y21{bottom:1137.810000px;}
.y20{bottom:1141.260000px;}
.hc{height:15.330000px;}
.h1{height:34.414453px;}
.hd{height:35.776802px;}
.h13{height:39.690000px;}
.hb{height:40.236328px;}
.h12{height:40.662000px;}
.h9{height:44.695854px;}
.h5{height:45.250488px;}
.ha{height:45.779568px;}
.h4{height:45.988770px;}
.h6{height:46.942383px;}
.h8{height:47.126953px;}
.h7{height:48.080566px;}
.hf{height:49.188911px;}
.h11{height:50.381565px;}
.h3{height:54.949219px;}
.he{height:58.107964px;}
.h10{height:58.336436px;}
.h2{height:80.789063px;}
.h0{height:1188.000000px;}
.w2{width:398.085000px;}
.w1{width:590.085000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x22{left:79.125000px;}
.x5{left:85.740000px;}
.x1c{left:96.480000px;}
.xc{left:100.785000px;}
.x12{left:101.910000px;}
.xd{left:107.535000px;}
.x19{left:113.160000px;}
.x20{left:119.535000px;}
.x13{left:123.240000px;}
.x7{left:152.670000px;}
.x1d{left:208.965000px;}
.x1e{left:214.665000px;}
.x11{left:216.195000px;}
.x1f{left:219.510000px;}
.x6{left:233.175000px;}
.xf{left:242.880000px;}
.x2{left:245.145000px;}
.x17{left:336.165000px;}
.x4{left:355.680000px;}
.x3{left:364.755000px;}
.xe{left:459.000000px;}
.x14{left:467.250000px;}
.x1a{left:472.380000px;}
.x23{left:477.570000px;}
.x18{left:483.120000px;}
.x15{left:484.125000px;}
.x9{left:491.040000px;}
.x10{left:495.225000px;}
.x21{left:501.750000px;}
.x16{left:512.250000px;}
.xb{left:573.135000px;}
.x1b{left:621.375000px;}
.x8{left:635.715000px;}
.xa{left:648.570000px;}
.x1{left:832.965000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ws3{word-spacing:-12.498840pt;}
.ws0{word-spacing:-11.928000pt;}
.ws2{word-spacing:-10.224000pt;}
.ws4{word-spacing:-9.564840pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:15.075640pt;}
._0{margin-left:-1.365333pt;}
._2{width:1.673520pt;}
._3{width:2.811973pt;}
._4{width:4.478280pt;}
._5{width:5.578653pt;}
._6{width:6.560307pt;}
._b{width:7.459213pt;}
._a{width:8.454947pt;}
._9{width:9.607147pt;}
._10{width:10.847480pt;}
._1a{width:11.746080pt;}
._c{width:13.566080pt;}
._17{width:14.460227pt;}
._8{width:15.465987pt;}
._e{width:16.509093pt;}
._7{width:17.430013pt;}
._f{width:18.689213pt;}
._1b{width:19.754667pt;}
._22{width:20.981627pt;}
._19{width:21.951240pt;}
._13{width:23.003013pt;}
._d{width:24.142800pt;}
._18{width:25.230733pt;}
._16{width:26.741093pt;}
._14{width:28.297467pt;}
._12{width:29.339520pt;}
._2e{width:30.239800pt;}
._1d{width:31.163013pt;}
._23{width:32.254960pt;}
._11{width:33.364467pt;}
._1e{width:34.408747pt;}
._24{width:35.351813pt;}
._1c{width:36.288000pt;}
._27{width:37.410840pt;}
._21{width:40.434187pt;}
._28{width:42.540747pt;}
._2f{width:43.504920pt;}
._1f{width:45.366267pt;}
._2a{width:47.080760pt;}
._2b{width:48.207173pt;}
._29{width:49.319533pt;}
._2d{width:50.893493pt;}
._30{width:57.433680pt;}
._20{width:58.953027pt;}
._15{width:65.738040pt;}
._26{width:67.947560pt;}
._25{width:70.580067pt;}
._1{width:289.581333pt;}
._2c{width:400.084333pt;}
.fs0{font-size:41.600000pt;}
.fs6{font-size:42.680000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.320000pt;}
.fs3{font-size:56.000000pt;}
.fs8{font-size:58.680000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:69.320000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:3.066667pt;}
.y4{bottom:21.653333pt;}
.y1{bottom:28.320000pt;}
.y3{bottom:34.986667pt;}
.y2{bottom:48.320000pt;}
.yec{bottom:79.226667pt;}
.y58{bottom:81.213333pt;}
.yc2{bottom:86.160000pt;}
.y121{bottom:86.800000pt;}
.y8c{bottom:87.906667pt;}
.y13d{bottom:90.706667pt;}
.yeb{bottom:92.853333pt;}
.y57{bottom:97.880000pt;}
.y120{bottom:100.426667pt;}
.yc1{bottom:102.813333pt;}
.y8b{bottom:104.560000pt;}
.yea{bottom:106.480000pt;}
.y13c{bottom:107.360000pt;}
.y11f{bottom:114.053333pt;}
.y56{bottom:114.533333pt;}
.yc0{bottom:119.480000pt;}
.ye9{bottom:120.106667pt;}
.y8a{bottom:121.213333pt;}
.y13b{bottom:124.013333pt;}
.y11e{bottom:127.680000pt;}
.y55{bottom:131.186667pt;}
.ye8{bottom:133.733333pt;}
.ybf{bottom:136.133333pt;}
.y89{bottom:137.880000pt;}
.y13a{bottom:140.680000pt;}
.y11d{bottom:141.306667pt;}
.ye7{bottom:148.053333pt;}
.y192{bottom:152.586667pt;}
.ybe{bottom:152.786667pt;}
.y88{bottom:154.533333pt;}
.y11c{bottom:154.946667pt;}
.y187{bottom:155.013333pt;}
.y139{bottom:157.333333pt;}
.y54{bottom:164.533333pt;}
.ye6{bottom:164.706667pt;}
.ybd{bottom:168.773333pt;}
.y11b{bottom:169.253333pt;}
.y186{bottom:169.680000pt;}
.y87{bottom:171.186667pt;}
.y138{bottom:173.986667pt;}
.ye5{bottom:181.360000pt;}
.ybc{bottom:182.400000pt;}
.y11a{bottom:185.906667pt;}
.y86{bottom:187.853333pt;}
.y137{bottom:190.653333pt;}
.y191{bottom:191.253333pt;}
.ybb{bottom:196.026667pt;}
.ye4{bottom:198.026667pt;}
.y53{bottom:199.533333pt;}
.y119{bottom:202.560000pt;}
.y85{bottom:204.506667pt;}
.y136{bottom:207.306667pt;}
.yba{bottom:209.653333pt;}
.ye3{bottom:214.680000pt;}
.y52{bottom:216.200000pt;}
.y118{bottom:219.226667pt;}
.y84{bottom:221.160000pt;}
.yb9{bottom:223.280000pt;}
.y135{bottom:223.960000pt;}
.y185{bottom:224.346667pt;}
.y190{bottom:229.920000pt;}
.ye2{bottom:231.333333pt;}
.y51{bottom:232.853333pt;}
.y117{bottom:235.880000pt;}
.yb8{bottom:236.906667pt;}
.y83{bottom:237.826667pt;}
.y134{bottom:240.626667pt;}
.y18f{bottom:245.200000pt;}
.y184{bottom:247.013333pt;}
.ye1{bottom:248.000000pt;}
.y50{bottom:249.506667pt;}
.yb7{bottom:250.546667pt;}
.y116{bottom:252.533333pt;}
.y82{bottom:254.480000pt;}
.y133{bottom:257.280000pt;}
.y18e{bottom:260.466667pt;}
.yb6{bottom:264.173333pt;}
.ye0{bottom:264.653333pt;}
.y4f{bottom:266.160000pt;}
.y115{bottom:269.200000pt;}
.y183{bottom:269.680000pt;}
.y81{bottom:271.133333pt;}
.y132{bottom:273.933333pt;}
.y18d{bottom:275.133333pt;}
.yb5{bottom:277.800000pt;}
.ydf{bottom:281.306667pt;}
.y4e{bottom:282.826667pt;}
.y1f{bottom:285.506667pt;}
.y114{bottom:285.853333pt;}
.y131{bottom:290.600000pt;}
.yb4{bottom:292.106667pt;}
.y182{bottom:292.346667pt;}
.y80{bottom:294.773333pt;}
.yde{bottom:297.973333pt;}
.y4d{bottom:299.480000pt;}
.y1e{bottom:301.973333pt;}
.y113{bottom:302.506667pt;}
.y26{bottom:306.893333pt;}
.y130{bottom:307.253333pt;}
.yb3{bottom:308.773333pt;}
.y18c{bottom:313.800000pt;}
.ydd{bottom:314.626667pt;}
.y4c{bottom:316.133333pt;}
.y1d{bottom:318.426667pt;}
.y7f{bottom:319.000000pt;}
.y112{bottom:319.173333pt;}
.y12f{bottom:323.906667pt;}
.yb2{bottom:325.426667pt;}
.y18b{bottom:328.466667pt;}
.y181{bottom:331.013333pt;}
.y7e{bottom:331.120000pt;}
.ydc{bottom:331.280000pt;}
.y4b{bottom:332.800000pt;}
.y150{bottom:334.506667pt;}
.y1c{bottom:334.893333pt;}
.y111{bottom:335.826667pt;}
.y12e{bottom:340.573333pt;}
.yb1{bottom:342.080000pt;}
.y18a{bottom:343.133333pt;}
.y25{bottom:343.226667pt;}
.y180{bottom:345.680000pt;}
.ydb{bottom:347.946667pt;}
.y4a{bottom:349.453333pt;}
.y14f{bottom:351.173333pt;}
.y1b{bottom:351.613333pt;}
.y110{bottom:352.480000pt;}
.y7d{bottom:355.346667pt;}
.y12d{bottom:357.226667pt;}
.y189{bottom:357.800000pt;}
.yb0{bottom:358.733333pt;}
.y17f{bottom:360.346667pt;}
.yda{bottom:364.600000pt;}
.y49{bottom:366.106667pt;}
.y24{bottom:367.466667pt;}
.y14e{bottom:367.826667pt;}
.y1a{bottom:368.320000pt;}
.y10f{bottom:369.146667pt;}
.y188{bottom:373.066667pt;}
.y12c{bottom:373.880000pt;}
.yaf{bottom:374.720000pt;}
.y23{bottom:379.573333pt;}
.yd9{bottom:381.253333pt;}
.y48{bottom:382.773333pt;}
.y14d{bottom:384.480000pt;}
.y19{bottom:384.786667pt;}
.y10e{bottom:385.800000pt;}
.yae{bottom:388.346667pt;}
.y12b{bottom:390.546667pt;}
.yd8{bottom:397.906667pt;}
.y47{bottom:399.426667pt;}
.y14c{bottom:401.146667pt;}
.y18{bottom:401.253333pt;}
.yad{bottom:401.973333pt;}
.y10d{bottom:402.453333pt;}
.y12a{bottom:407.200000pt;}
.y7c{bottom:408.706667pt;}
.yd7{bottom:414.573333pt;}
.yac{bottom:415.600000pt;}
.y46{bottom:416.080000pt;}
.y17{bottom:417.720000pt;}
.y14b{bottom:417.800000pt;}
.y10c{bottom:419.106667pt;}
.y129{bottom:423.853333pt;}
.y7b{bottom:425.373333pt;}
.yab{bottom:429.226667pt;}
.yd6{bottom:431.226667pt;}
.y45{bottom:432.746667pt;}
.y16{bottom:434.426667pt;}
.y14a{bottom:434.453333pt;}
.y10b{bottom:435.773333pt;}
.y128{bottom:440.506667pt;}
.y7a{bottom:442.026667pt;}
.yaa{bottom:442.866667pt;}
.yd5{bottom:447.880000pt;}
.y44{bottom:449.400000pt;}
.y149{bottom:451.106667pt;}
.y10a{bottom:452.426667pt;}
.ya9{bottom:456.493333pt;}
.y127{bottom:457.173333pt;}
.y79{bottom:458.680000pt;}
.yd4{bottom:464.546667pt;}
.y14{bottom:465.360000pt;}
.y43{bottom:466.053333pt;}
.y148{bottom:467.773333pt;}
.y109{bottom:469.080000pt;}
.ya8{bottom:470.120000pt;}
.y126{bottom:473.826667pt;}
.y78{bottom:475.346667pt;}
.yd3{bottom:481.200000pt;}
.y13{bottom:481.266667pt;}
.y42{bottom:482.720000pt;}
.ya7{bottom:483.746667pt;}
.y147{bottom:484.426667pt;}
.y125{bottom:490.480000pt;}
.y77{bottom:492.000000pt;}
.y12{bottom:497.160000pt;}
.yd2{bottom:497.853333pt;}
.ya6{bottom:498.053333pt;}
.y41{bottom:499.373333pt;}
.y146{bottom:501.080000pt;}
.y108{bottom:502.426667pt;}
.y124{bottom:507.146667pt;}
.y76{bottom:508.653333pt;}
.y11{bottom:513.066667pt;}
.yd1{bottom:513.840000pt;}
.ya5{bottom:514.720000pt;}
.y40{bottom:516.026667pt;}
.y145{bottom:517.746667pt;}
.y107{bottom:522.106667pt;}
.y123{bottom:523.800000pt;}
.y75{bottom:524.640000pt;}
.yd0{bottom:527.466667pt;}
.y10{bottom:529.960000pt;}
.y17e{bottom:530.266667pt;}
.ya4{bottom:531.373333pt;}
.y3f{bottom:532.693333pt;}
.y144{bottom:534.400000pt;}
.y74{bottom:538.266667pt;}
.y122{bottom:540.453333pt;}
.ycf{bottom:541.093333pt;}
.yf{bottom:545.866667pt;}
.y17d{bottom:546.933333pt;}
.ya3{bottom:548.026667pt;}
.y3e{bottom:549.346667pt;}
.y165{bottom:549.800000pt;}
.y143{bottom:551.053333pt;}
.y73{bottom:551.893333pt;}
.yce{bottom:554.720000pt;}
.y106{bottom:557.120000pt;}
.ye{bottom:562.440000pt;}
.y17c{bottom:564.360000pt;}
.ya2{bottom:564.693333pt;}
.y72{bottom:565.520000pt;}
.y3d{bottom:566.000000pt;}
.y140{bottom:566.026667pt;}
.y164{bottom:566.453333pt;}
.y142{bottom:567.720000pt;}
.ycd{bottom:568.346667pt;}
.y105{bottom:573.773333pt;}
.yd{bottom:579.080000pt;}
.y71{bottom:579.146667pt;}
.ya1{bottom:581.346667pt;}
.ycc{bottom:581.973333pt;}
.y17b{bottom:582.466667pt;}
.y3c{bottom:582.666667pt;}
.y163{bottom:583.106667pt;}
.y141{bottom:584.373333pt;}
.y104{bottom:590.426667pt;}
.y70{bottom:592.773333pt;}
.y15{bottom:593.626667pt;}
.yc{bottom:595.626667pt;}
.ycb{bottom:596.293333pt;}
.ya0{bottom:598.000000pt;}
.y3b{bottom:599.320000pt;}
.y162{bottom:599.773333pt;}
.y17a{bottom:600.586667pt;}
.y13f{bottom:601.026667pt;}
.y6f{bottom:606.413333pt;}
.y103{bottom:607.093333pt;}
.yca{bottom:612.946667pt;}
.y9f{bottom:614.666667pt;}
.y3a{bottom:615.973333pt;}
.y13e{bottom:617.693333pt;}
.y6e{bottom:620.040000pt;}
.y161{bottom:620.426667pt;}
.y179{bottom:622.693333pt;}
.y102{bottom:623.746667pt;}
.yc9{bottom:629.600000pt;}
.y9e{bottom:631.320000pt;}
.y39{bottom:632.626667pt;}
.y6d{bottom:634.346667pt;}
.y160{bottom:637.853333pt;}
.y101{bottom:640.400000pt;}
.y178{bottom:640.800000pt;}
.yc8{bottom:646.266667pt;}
.y9d{bottom:647.973333pt;}
.y38{bottom:649.293333pt;}
.y6c{bottom:651.000000pt;}
.y100{bottom:657.066667pt;}
.y177{bottom:658.920000pt;}
.y15f{bottom:659.186667pt;}
.yb{bottom:660.933333pt;}
.yc7{bottom:662.920000pt;}
.y9c{bottom:664.626667pt;}
.y37{bottom:665.946667pt;}
.y6b{bottom:667.666667pt;}
.yff{bottom:673.720000pt;}
.y176{bottom:676.253333pt;}
.y15e{bottom:676.626667pt;}
.yc6{bottom:679.573333pt;}
.ya{bottom:680.240000pt;}
.y9b{bottom:681.293333pt;}
.y36{bottom:682.600000pt;}
.y6a{bottom:684.320000pt;}
.yfe{bottom:690.373333pt;}
.y15d{bottom:694.733333pt;}
.yc5{bottom:696.240000pt;}
.y175{bottom:696.906667pt;}
.y9a{bottom:697.946667pt;}
.y9{bottom:699.133333pt;}
.y35{bottom:699.266667pt;}
.y69{bottom:700.973333pt;}
.yfd{bottom:707.040000pt;}
.y174{bottom:713.573333pt;}
.y99{bottom:714.600000pt;}
.y34{bottom:715.920000pt;}
.y15c{bottom:716.080000pt;}
.y68{bottom:717.640000pt;}
.y8{bottom:718.013333pt;}
.yfc{bottom:723.693333pt;}
.yc4{bottom:729.573333pt;}
.y173{bottom:731.000000pt;}
.y98{bottom:731.266667pt;}
.y33{bottom:732.573333pt;}
.y15b{bottom:732.733333pt;}
.y67{bottom:734.293333pt;}
.yfb{bottom:740.346667pt;}
.y97{bottom:747.920000pt;}
.y172{bottom:749.106667pt;}
.y32{bottom:749.240000pt;}
.yc3{bottom:749.253333pt;}
.y15a{bottom:750.160000pt;}
.y66{bottom:750.946667pt;}
.yfa{bottom:757.000000pt;}
.y96{bottom:763.893333pt;}
.y31{bottom:765.893333pt;}
.y171{bottom:766.453333pt;}
.y159{bottom:767.493333pt;}
.y65{bottom:767.613333pt;}
.yf9{bottom:773.666667pt;}
.y95{bottom:777.520000pt;}
.y7{bottom:780.520000pt;}
.y30{bottom:782.546667pt;}
.y170{bottom:783.106667pt;}
.y158{bottom:784.160000pt;}
.y64{bottom:784.266667pt;}
.yf8{bottom:790.320000pt;}
.y94{bottom:791.160000pt;}
.y2f{bottom:799.213333pt;}
.y16f{bottom:799.760000pt;}
.y63{bottom:800.920000pt;}
.y93{bottom:804.786667pt;}
.y157{bottom:804.813333pt;}
.yf7{bottom:806.973333pt;}
.y2e{bottom:815.866667pt;}
.y62{bottom:817.573333pt;}
.y6{bottom:818.200000pt;}
.y92{bottom:818.413333pt;}
.y16e{bottom:820.426667pt;}
.y156{bottom:822.240000pt;}
.yf6{bottom:823.640000pt;}
.y91{bottom:832.040000pt;}
.y2d{bottom:832.520000pt;}
.y61{bottom:834.240000pt;}
.y16d{bottom:837.853333pt;}
.yf5{bottom:840.293333pt;}
.y155{bottom:840.360000pt;}
.y90{bottom:845.666667pt;}
.y5{bottom:845.720000pt;}
.y2c{bottom:849.186667pt;}
.y60{bottom:850.893333pt;}
.y16c{bottom:855.186667pt;}
.yf4{bottom:856.946667pt;}
.y154{bottom:857.693333pt;}
.y8f{bottom:859.293333pt;}
.y2b{bottom:865.840000pt;}
.y5f{bottom:867.546667pt;}
.y8e{bottom:872.933333pt;}
.yf3{bottom:873.613333pt;}
.y16b{bottom:875.853333pt;}
.y153{bottom:878.346667pt;}
.y2a{bottom:882.493333pt;}
.y5e{bottom:884.213333pt;}
.y8d{bottom:886.560000pt;}
.yf2{bottom:890.266667pt;}
.y16a{bottom:893.280000pt;}
.y152{bottom:895.786667pt;}
.y29{bottom:899.160000pt;}
.y5d{bottom:900.866667pt;}
.yf1{bottom:906.920000pt;}
.y169{bottom:911.386667pt;}
.y151{bottom:913.893333pt;}
.y28{bottom:915.813333pt;}
.y5c{bottom:917.520000pt;}
.yf0{bottom:923.586667pt;}
.y168{bottom:928.733333pt;}
.y5b{bottom:934.186667pt;}
.yef{bottom:940.240000pt;}
.y27{bottom:949.146667pt;}
.y167{bottom:949.386667pt;}
.y5a{bottom:950.840000pt;}
.yee{bottom:956.213333pt;}
.y166{bottom:966.813333pt;}
.y59{bottom:967.493333pt;}
.yed{bottom:969.840000pt;}
.y21{bottom:1011.386667pt;}
.y20{bottom:1014.453333pt;}
.hc{height:13.626667pt;}
.h1{height:30.590625pt;}
.hd{height:31.801602pt;}
.h13{height:35.280000pt;}
.hb{height:35.765625pt;}
.h12{height:36.144000pt;}
.h9{height:39.729648pt;}
.h5{height:40.222656pt;}
.ha{height:40.692949pt;}
.h4{height:40.878906pt;}
.h6{height:41.726563pt;}
.h8{height:41.890625pt;}
.h7{height:42.738281pt;}
.hf{height:43.723477pt;}
.h11{height:44.783613pt;}
.h3{height:48.843750pt;}
.he{height:51.651523pt;}
.h10{height:51.854609pt;}
.h2{height:71.812500pt;}
.h0{height:1056.000000pt;}
.w2{width:353.853333pt;}
.w1{width:524.520000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x22{left:70.333333pt;}
.x5{left:76.213333pt;}
.x1c{left:85.760000pt;}
.xc{left:89.586667pt;}
.x12{left:90.586667pt;}
.xd{left:95.586667pt;}
.x19{left:100.586667pt;}
.x20{left:106.253333pt;}
.x13{left:109.546667pt;}
.x7{left:135.706667pt;}
.x1d{left:185.746667pt;}
.x1e{left:190.813333pt;}
.x11{left:192.173333pt;}
.x1f{left:195.120000pt;}
.x6{left:207.266667pt;}
.xf{left:215.893333pt;}
.x2{left:217.906667pt;}
.x17{left:298.813333pt;}
.x4{left:316.160000pt;}
.x3{left:324.226667pt;}
.xe{left:408.000000pt;}
.x14{left:415.333333pt;}
.x1a{left:419.893333pt;}
.x23{left:424.506667pt;}
.x18{left:429.440000pt;}
.x15{left:430.333333pt;}
.x9{left:436.480000pt;}
.x10{left:440.200000pt;}
.x21{left:446.000000pt;}
.x16{left:455.333333pt;}
.xb{left:509.453333pt;}
.x1b{left:552.333333pt;}
.x8{left:565.080000pt;}
.xa{left:576.506667pt;}
.x1{left:740.413333pt;}
}




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