
    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_971dae68718b7d9e1f07629f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_feefe14dcadd48cdf98fe9a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_72a930bccddca93467a02e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_f884920c48a4080992539bbf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_2f749983b67da7be37ded59f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_5bc82ea76a8ad0355b0d3280.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3944aa7d549f0164abf1af7c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e1023651c4c1098ca9cd8fa3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.761719;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);}
.v5{vertical-align:-27.360000px;}
.v1{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v4{vertical-align:27.480000px;}
.ls8{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.034560px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls12{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.144720px;}
.ls17{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.341280px;}
.lsc{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.440000px;}
.lsf{letter-spacing:3.600000px;}
.lse{letter-spacing:18.000000px;}
.ls16{letter-spacing:197.976000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-19.457280px;}
.ws4{word-spacing:-18.432000px;}
.ws8{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws9{word-spacing:-12.329400px;}
.wsa{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.700000px;}
.wsb{word-spacing:-0.216000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-88.394400px;}
._1f{margin-left:-6.000000px;}
._e{margin-left:-4.560000px;}
._d{margin-left:-3.456000px;}
._c{margin-left:-2.175840px;}
._4{margin-left:-1.108080px;}
._0{width:1.274400px;}
._5{width:2.489280px;}
._16{width:3.515040px;}
._f{width:4.680000px;}
._10{width:5.844000px;}
._a{width:7.488000px;}
._b{width:8.904000px;}
._15{width:10.536000px;}
._7{width:11.808000px;}
._8{width:12.816000px;}
._9{width:13.884000px;}
._12{width:15.512160px;}
._11{width:16.983840px;}
._17{width:19.975920px;}
._14{width:21.168000px;}
._13{width:22.872000px;}
._18{width:24.432000px;}
._2b{width:25.488000px;}
._1a{width:27.144000px;}
._19{width:28.440000px;}
._27{width:30.576000px;}
._28{width:31.656000px;}
._2c{width:32.760000px;}
._1d{width:33.960000px;}
._1c{width:35.749680px;}
._1b{width:36.792000px;}
._29{width:41.749440px;}
._2a{width:63.432000px;}
._3{width:83.380080px;}
._25{width:89.976000px;}
._24{width:107.976000px;}
._1{width:109.380000px;}
._26{width:111.960000px;}
._23{width:129.936000px;}
._22{width:150.374880px;}
._1e{width:157.416000px;}
._20{width:162.400080px;}
._21{width:176.411040px;}
._6{width:197.976000px;}
.fc3{color:transparent;}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:87.120000px;}
.fs4{font-size:95.760000px;}
.yb{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:3.960000px;}
.y36{bottom:6.120000px;}
.ya{bottom:6.300000px;}
.yf6{bottom:8.280000px;}
.yf4{bottom:8.460000px;}
.yf8{bottom:9.180000px;}
.y34{bottom:10.800000px;}
.yf2{bottom:17.280000px;}
.y8{bottom:21.600000px;}
.y107{bottom:24.660000px;}
.y35{bottom:31.500000px;}
.y9{bottom:31.680000px;}
.y7{bottom:57.780000px;}
.y6{bottom:78.516000px;}
.yc5{bottom:114.876000px;}
.yf0{bottom:115.596000px;}
.y32{bottom:116.136000px;}
.y14f{bottom:122.436000px;}
.y173{bottom:122.976000px;}
.ya4{bottom:124.416000px;}
.y80{bottom:127.116000px;}
.y60{bottom:130.716000px;}
.y145{bottom:131.616000px;}
.yef{bottom:136.296000px;}
.y31{bottom:136.836000px;}
.y11d{bottom:142.236000px;}
.y14e{bottom:143.136000px;}
.y172{bottom:143.676000px;}
.ya3{bottom:145.116000px;}
.y7f{bottom:147.816000px;}
.yc4{bottom:150.690000px;}
.y5f{bottom:151.410000px;}
.y144{bottom:152.310000px;}
.yee{bottom:156.990000px;}
.y30{bottom:157.530000px;}
.y14d{bottom:163.830000px;}
.y171{bottom:164.370000px;}
.ya2{bottom:165.810000px;}
.y7e{bottom:168.510000px;}
.y11c{bottom:169.770000px;}
.yc3{bottom:171.390000px;}
.y5e{bottom:172.110000px;}
.y143{bottom:173.010000px;}
.yed{bottom:177.690000px;}
.y2f{bottom:178.230000px;}
.y11b{bottom:183.630000px;}
.ya1{bottom:186.510000px;}
.y7d{bottom:189.210000px;}
.yc2{bottom:190.650000px;}
.y5d{bottom:192.810000px;}
.y142{bottom:193.710000px;}
.yec{bottom:198.390000px;}
.y2e{bottom:198.930000px;}
.y14c{bottom:199.470000px;}
.y170{bottom:200.190000px;}
.y11a{bottom:201.090000px;}
.ya0{bottom:207.210000px;}
.y7c{bottom:209.910000px;}
.yc1{bottom:212.790000px;}
.y5c{bottom:213.510000px;}
.y141{bottom:214.410000px;}
.yeb{bottom:219.090000px;}
.y2d{bottom:219.630000px;}
.y14b{bottom:220.170000px;}
.y16f{bottom:220.890000px;}
.y119{bottom:221.790000px;}
.y9f{bottom:227.910000px;}
.y7b{bottom:230.610000px;}
.yc0{bottom:233.490000px;}
.y5b{bottom:234.210000px;}
.y140{bottom:235.110000px;}
.yea{bottom:239.790000px;}
.y2c{bottom:240.150000px;}
.y14a{bottom:240.870000px;}
.y118{bottom:242.490000px;}
.y9e{bottom:248.610000px;}
.y7a{bottom:251.310000px;}
.ybf{bottom:254.190000px;}
.y5a{bottom:254.910000px;}
.y13f{bottom:255.810000px;}
.y16e{bottom:256.530000px;}
.ye9{bottom:260.490000px;}
.y2b{bottom:260.850000px;}
.y149{bottom:261.570000px;}
.y117{bottom:263.190000px;}
.y9d{bottom:269.310000px;}
.y79{bottom:272.010000px;}
.ybe{bottom:274.890000px;}
.y59{bottom:275.790000px;}
.y13e{bottom:276.510000px;}
.ye8{bottom:281.190000px;}
.y2a{bottom:281.550000px;}
.y148{bottom:282.270000px;}
.y116{bottom:283.890000px;}
.y9c{bottom:290.010000px;}
.y16d{bottom:292.170000px;}
.ybd{bottom:295.590000px;}
.y13d{bottom:297.210000px;}
.ye7{bottom:301.890000px;}
.y29{bottom:302.250000px;}
.y147{bottom:302.970000px;}
.y115{bottom:304.590000px;}
.y78{bottom:307.830000px;}
.y9b{bottom:310.755000px;}
.y16c{bottom:312.915000px;}
.ybc{bottom:316.335000px;}
.y58{bottom:317.415000px;}
.y13c{bottom:317.955000px;}
.ye6{bottom:322.635000px;}
.y146{bottom:323.715000px;}
.y114{bottom:325.335000px;}
.y9a{bottom:331.455000px;}
.ybb{bottom:337.035000px;}
.y28{bottom:338.115000px;}
.y13b{bottom:338.655000px;}
.ye5{bottom:343.335000px;}
.y77{bottom:343.515000px;}
.y113{bottom:346.755000px;}
.y16b{bottom:348.735000px;}
.y99{bottom:352.155000px;}
.y57{bottom:358.815000px;}
.y13a{bottom:359.355000px;}
.ye4{bottom:360.795000px;}
.y76{bottom:364.215000px;}
.y112{bottom:367.455000px;}
.y16a{bottom:369.435000px;}
.y27{bottom:373.755000px;}
.yba{bottom:375.915000px;}
.y56{bottom:379.515000px;}
.y139{bottom:380.055000px;}
.ye3{bottom:381.495000px;}
.y75{bottom:384.915000px;}
.y98{bottom:387.975000px;}
.y111{bottom:388.155000px;}
.y169{bottom:390.135000px;}
.y26{bottom:394.455000px;}
.yb9{bottom:396.615000px;}
.y55{bottom:400.215000px;}
.y138{bottom:400.755000px;}
.ye2{bottom:402.195000px;}
.y74{bottom:405.615000px;}
.y110{bottom:408.855000px;}
.y168{bottom:410.655000px;}
.y25{bottom:415.155000px;}
.y54{bottom:420.915000px;}
.y137{bottom:421.455000px;}
.ye1{bottom:422.895000px;}
.y97{bottom:423.615000px;}
.y73{bottom:426.315000px;}
.y10f{bottom:429.555000px;}
.y167{bottom:431.355000px;}
.yb8{bottom:432.255000px;}
.y53{bottom:441.615000px;}
.y136{bottom:442.155000px;}
.y96{bottom:444.315000px;}
.ye0{bottom:445.575000px;}
.y72{bottom:447.015000px;}
.y10e{bottom:450.255000px;}
.y24{bottom:450.795000px;}
.y166{bottom:452.055000px;}
.y52{bottom:462.315000px;}
.y135{bottom:462.855000px;}
.y71{bottom:467.715000px;}
.yb7{bottom:468.075000px;}
.ydf{bottom:470.955000px;}
.y23{bottom:471.495000px;}
.y95{bottom:479.955000px;}
.y51{bottom:483.015000px;}
.y134{bottom:483.555000px;}
.y70{bottom:488.415000px;}
.yb6{bottom:488.775000px;}
.y165{bottom:488.955000px;}
.y10d{bottom:491.655000px;}
.y22{bottom:492.195000px;}
.y94{bottom:500.655000px;}
.y50{bottom:503.715000px;}
.y133{bottom:504.255000px;}
.yde{bottom:506.595000px;}
.y6f{bottom:509.115000px;}
.yb5{bottom:509.475000px;}
.y10c{bottom:512.355000px;}
.y21{bottom:512.895000px;}
.y93{bottom:521.355000px;}
.y4f{bottom:524.415000px;}
.y164{bottom:524.595000px;}
.y132{bottom:524.955000px;}
.y6e{bottom:529.815000px;}
.yb4{bottom:530.175000px;}
.y10b{bottom:533.055000px;}
.y20{bottom:533.595000px;}
.y92{bottom:542.055000px;}
.ydd{bottom:542.235000px;}
.y4e{bottom:545.115000px;}
.y163{bottom:545.295000px;}
.y131{bottom:545.655000px;}
.y6d{bottom:550.515000px;}
.yb3{bottom:550.875000px;}
.y10a{bottom:553.755000px;}
.y1f{bottom:554.295000px;}
.y91{bottom:562.785000px;}
.ydc{bottom:562.965000px;}
.y4d{bottom:565.845000px;}
.y162{bottom:566.025000px;}
.y130{bottom:566.385000px;}
.y6c{bottom:571.245000px;}
.yb2{bottom:571.605000px;}
.y109{bottom:574.485000px;}
.y1e{bottom:575.025000px;}
.y90{bottom:583.485000px;}
.ydb{bottom:583.665000px;}
.y4c{bottom:586.545000px;}
.y12f{bottom:587.085000px;}
.y6b{bottom:591.945000px;}
.yb1{bottom:592.305000px;}
.y108{bottom:595.185000px;}
.y1d{bottom:595.725000px;}
.y8f{bottom:604.185000px;}
.yda{bottom:604.365000px;}
.y161{bottom:604.725000px;}
.y4b{bottom:607.245000px;}
.y12e{bottom:607.785000px;}
.y6a{bottom:612.645000px;}
.yb0{bottom:613.005000px;}
.y106{bottom:615.885000px;}
.y1c{bottom:616.425000px;}
.y8e{bottom:624.885000px;}
.yd9{bottom:625.065000px;}
.y160{bottom:625.425000px;}
.y4a{bottom:627.945000px;}
.y12d{bottom:628.485000px;}
.y69{bottom:633.345000px;}
.yaf{bottom:633.705000px;}
.y1b{bottom:637.125000px;}
.y8d{bottom:645.585000px;}
.yd8{bottom:645.765000px;}
.y15f{bottom:646.125000px;}
.y49{bottom:648.645000px;}
.y12c{bottom:649.185000px;}
.y68{bottom:654.045000px;}
.yae{bottom:654.405000px;}
.y1a{bottom:657.825000px;}
.y8c{bottom:666.285000px;}
.yd7{bottom:666.465000px;}
.y48{bottom:669.345000px;}
.y12b{bottom:669.885000px;}
.y67{bottom:674.745000px;}
.yad{bottom:674.925000px;}
.y105{bottom:677.085000px;}
.y19{bottom:678.525000px;}
.y15e{bottom:681.765000px;}
.y8b{bottom:686.985000px;}
.yd6{bottom:687.165000px;}
.y47{bottom:690.045000px;}
.y12a{bottom:690.585000px;}
.y66{bottom:695.445000px;}
.yac{bottom:695.625000px;}
.y104{bottom:697.785000px;}
.y18{bottom:699.225000px;}
.y15d{bottom:702.465000px;}
.y8a{bottom:707.685000px;}
.yd5{bottom:707.865000px;}
.y46{bottom:710.745000px;}
.y129{bottom:711.285000px;}
.y65{bottom:716.145000px;}
.yab{bottom:716.325000px;}
.y103{bottom:718.485000px;}
.y17{bottom:719.925000px;}
.y15c{bottom:723.165000px;}
.y89{bottom:728.385000px;}
.yd4{bottom:728.565000px;}
.y45{bottom:731.445000px;}
.y128{bottom:731.985000px;}
.yaa{bottom:737.025000px;}
.y102{bottom:739.185000px;}
.y16{bottom:740.625000px;}
.y15b{bottom:748.365000px;}
.y88{bottom:749.085000px;}
.yd3{bottom:749.265000px;}
.y64{bottom:751.785000px;}
.y44{bottom:752.145000px;}
.y127{bottom:752.685000px;}
.ya9{bottom:757.725000px;}
.y101{bottom:759.885000px;}
.y15{bottom:761.325000px;}
.y15a{bottom:769.065000px;}
.y87{bottom:769.785000px;}
.yd2{bottom:769.965000px;}
.y126{bottom:773.385000px;}
.ya8{bottom:778.425000px;}
.y100{bottom:780.585000px;}
.y14{bottom:782.025000px;}
.y159{bottom:789.765000px;}
.y86{bottom:790.485000px;}
.yd1{bottom:790.665000px;}
.y63{bottom:793.545000px;}
.y43{bottom:793.725000px;}
.y125{bottom:794.085000px;}
.ya7{bottom:799.125000px;}
.yff{bottom:801.285000px;}
.y13{bottom:802.725000px;}
.y85{bottom:811.185000px;}
.yd0{bottom:811.410000px;}
.y42{bottom:814.470000px;}
.y124{bottom:814.830000px;}
.ya6{bottom:819.870000px;}
.yfe{bottom:822.030000px;}
.y12{bottom:823.470000px;}
.y158{bottom:825.450000px;}
.y84{bottom:831.930000px;}
.ycf{bottom:832.110000px;}
.y41{bottom:835.170000px;}
.y123{bottom:835.530000px;}
.yfd{bottom:842.730000px;}
.y11{bottom:844.170000px;}
.y157{bottom:846.150000px;}
.yce{bottom:852.810000px;}
.y40{bottom:855.870000px;}
.y122{bottom:856.230000px;}
.ya5{bottom:861.630000px;}
.yfc{bottom:863.430000px;}
.y10{bottom:864.870000px;}
.y83{bottom:867.570000px;}
.ycd{bottom:873.510000px;}
.y3f{bottom:876.570000px;}
.y121{bottom:876.930000px;}
.y156{bottom:881.970000px;}
.yfb{bottom:884.130000px;}
.yf{bottom:885.570000px;}
.ycc{bottom:894.210000px;}
.y3e{bottom:897.270000px;}
.y120{bottom:897.630000px;}
.y155{bottom:902.670000px;}
.y82{bottom:903.390000px;}
.yfa{bottom:904.830000px;}
.ye{bottom:906.270000px;}
.ycb{bottom:911.670000px;}
.y3d{bottom:917.970000px;}
.y11f{bottom:918.330000px;}
.yf9{bottom:921.570000px;}
.y154{bottom:923.370000px;}
.y81{bottom:924.090000px;}
.yd{bottom:927.150000px;}
.yca{bottom:932.370000px;}
.y3c{bottom:938.670000px;}
.y11e{bottom:939.030000px;}
.y153{bottom:944.430000px;}
.yf7{bottom:946.590000px;}
.yc{bottom:949.650000px;}
.yc9{bottom:953.070000px;}
.y3b{bottom:959.550000px;}
.y62{bottom:959.730000px;}
.y152{bottom:965.130000px;}
.y5{bottom:971.790000px;}
.yf5{bottom:972.510000px;}
.yc8{bottom:973.770000px;}
.y61{bottom:980.430000px;}
.y151{bottom:985.830000px;}
.yc6{bottom:996.450000px;}
.yf3{bottom:997.530000px;}
.y3a{bottom:1001.130000px;}
.y150{bottom:1006.890000px;}
.y4{bottom:1013.550000px;}
.y39{bottom:1021.830000px;}
.yf1{bottom:1024.530000px;}
.y38{bottom:1042.530000px;}
.y3{bottom:1055.850000px;}
.y37{bottom:1063.260000px;}
.y2{bottom:1093.140000px;}
.y1{bottom:1115.820000px;}
.y33{bottom:1117.260000px;}
.hb{height:20.700000px;}
.h11{height:20.736000px;}
.he{height:25.020000px;}
.hd{height:25.200000px;}
.hf{height:25.920000px;}
.h14{height:33.683203px;}
.hc{height:34.020000px;}
.h10{height:41.400000px;}
.h5{height:49.500000px;}
.h4{height:50.273438px;}
.h2{height:50.800781px;}
.h9{height:52.628906px;}
.h7{height:54.316406px;}
.h8{height:54.864844px;}
.ha{height:56.033438px;}
.h6{height:58.320000px;}
.h13{height:61.043203px;}
.h12{height:61.163203px;}
.h1{height:61.468945px;}
.h3{height:67.565039px;}
.h0{height:1188.000000px;}
.w3{width:59.940000px;}
.wa{width:90.000000px;}
.w9{width:90.036000px;}
.wb{width:98.280000px;}
.we{width:99.216000px;}
.wd{width:99.360000px;}
.wc{width:99.396000px;}
.wf{width:99.720000px;}
.w6{width:104.940000px;}
.w5{width:104.976000px;}
.w4{width:105.120000px;}
.w7{width:105.156000px;}
.w8{width:120.600000px;}
.w11{width:182.910000px;}
.w2{width:188.130000px;}
.w10{width:216.030000px;}
.w12{width:276.150000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:8.100000px;}
.x7{left:9.719986px;}
.x16{left:18.360000px;}
.x1a{left:24.870000px;}
.x1f{left:33.840000px;}
.x8{left:38.339986px;}
.x2e{left:44.820000px;}
.x3e{left:49.320000px;}
.x18{left:51.300000px;}
.x33{left:54.000000px;}
.x20{left:56.340000px;}
.x1e{left:59.445000px;}
.x2a{left:61.200000px;}
.x1c{left:62.280000px;}
.x21{left:65.370000px;}
.x3b{left:66.600000px;}
.x38{left:68.220000px;}
.x3a{left:71.100000px;}
.x22{left:74.340000px;}
.x40{left:75.600000px;}
.x34{left:78.480000px;}
.x30{left:80.820000px;}
.x23{left:83.340000px;}
.x24{left:87.885000px;}
.x41{left:91.440000px;}
.x42{left:95.940000px;}
.x5{left:106.955986px;}
.x11{left:108.035986px;}
.x37{left:111.780000px;}
.x3c{left:113.220000px;}
.x39{left:114.840000px;}
.x36{left:117.720000px;}
.x3d{left:122.220000px;}
.x35{left:125.100000px;}
.x32{left:127.440000px;}
.x13{left:135.035986px;}
.x3f{left:138.060000px;}
.x44{left:142.235986px;}
.x12{left:162.029986px;}
.xa{left:166.169986px;}
.x1{left:176.249986px;}
.x3{left:206.309986px;}
.x25{left:228.630000px;}
.x4{left:236.549986px;}
.x2{left:284.249986px;}
.xe{left:295.094986px;}
.x15{left:296.175000px;}
.x2b{left:305.715000px;}
.x26{left:318.675000px;}
.x2f{left:324.075000px;}
.x17{left:356.115000px;}
.xf{left:363.674986px;}
.xd{left:371.234986px;}
.xb{left:382.214986px;}
.x10{left:388.694986px;}
.x2c{left:405.075000px;}
.x27{left:408.675000px;}
.x9{left:423.074986px;}
.x19{left:461.235000px;}
.xc{left:488.984986px;}
.x28{left:498.705000px;}
.x2d{left:504.285000px;}
.x31{left:506.985000px;}
.x1b{left:566.205000px;}
.x29{left:588.705000px;}
.x1d{left:671.145000px;}
.x43{left:851.909986px;}
.x6{left:860.909986px;}
@media print{
.v5{vertical-align:-24.320000pt;}
.v1{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v4{vertical-align:24.426667pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.030720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls12{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.128640pt;}
.ls17{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.303360pt;}
.lsc{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.640000pt;}
.lsd{letter-spacing:1.280000pt;}
.lsf{letter-spacing:3.200000pt;}
.lse{letter-spacing:16.000000pt;}
.ls16{letter-spacing:175.978667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-17.295360pt;}
.ws4{word-spacing:-16.384000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws9{word-spacing:-10.959467pt;}
.wsa{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.400000pt;}
.wsb{word-spacing:-0.192000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-78.572800pt;}
._1f{margin-left:-5.333333pt;}
._e{margin-left:-4.053333pt;}
._d{margin-left:-3.072000pt;}
._c{margin-left:-1.934080pt;}
._4{margin-left:-0.984960pt;}
._0{width:1.132800pt;}
._5{width:2.212693pt;}
._16{width:3.124480pt;}
._f{width:4.160000pt;}
._10{width:5.194667pt;}
._a{width:6.656000pt;}
._b{width:7.914667pt;}
._15{width:9.365333pt;}
._7{width:10.496000pt;}
._8{width:11.392000pt;}
._9{width:12.341333pt;}
._12{width:13.788587pt;}
._11{width:15.096747pt;}
._17{width:17.756373pt;}
._14{width:18.816000pt;}
._13{width:20.330667pt;}
._18{width:21.717333pt;}
._2b{width:22.656000pt;}
._1a{width:24.128000pt;}
._19{width:25.280000pt;}
._27{width:27.178667pt;}
._28{width:28.138667pt;}
._2c{width:29.120000pt;}
._1d{width:30.186667pt;}
._1c{width:31.777493pt;}
._1b{width:32.704000pt;}
._29{width:37.110613pt;}
._2a{width:56.384000pt;}
._3{width:74.115627pt;}
._25{width:79.978667pt;}
._24{width:95.978667pt;}
._1{width:97.226667pt;}
._26{width:99.520000pt;}
._23{width:115.498667pt;}
._22{width:133.666560pt;}
._1e{width:139.925333pt;}
._20{width:144.355627pt;}
._21{width:156.809813pt;}
._6{width:175.978667pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:77.440000pt;}
.fs4{font-size:85.120000pt;}
.yb{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:3.520000pt;}
.y36{bottom:5.440000pt;}
.ya{bottom:5.600000pt;}
.yf6{bottom:7.360000pt;}
.yf4{bottom:7.520000pt;}
.yf8{bottom:8.160000pt;}
.y34{bottom:9.600000pt;}
.yf2{bottom:15.360000pt;}
.y8{bottom:19.200000pt;}
.y107{bottom:21.920000pt;}
.y35{bottom:28.000000pt;}
.y9{bottom:28.160000pt;}
.y7{bottom:51.360000pt;}
.y6{bottom:69.792000pt;}
.yc5{bottom:102.112000pt;}
.yf0{bottom:102.752000pt;}
.y32{bottom:103.232000pt;}
.y14f{bottom:108.832000pt;}
.y173{bottom:109.312000pt;}
.ya4{bottom:110.592000pt;}
.y80{bottom:112.992000pt;}
.y60{bottom:116.192000pt;}
.y145{bottom:116.992000pt;}
.yef{bottom:121.152000pt;}
.y31{bottom:121.632000pt;}
.y11d{bottom:126.432000pt;}
.y14e{bottom:127.232000pt;}
.y172{bottom:127.712000pt;}
.ya3{bottom:128.992000pt;}
.y7f{bottom:131.392000pt;}
.yc4{bottom:133.946667pt;}
.y5f{bottom:134.586667pt;}
.y144{bottom:135.386667pt;}
.yee{bottom:139.546667pt;}
.y30{bottom:140.026667pt;}
.y14d{bottom:145.626667pt;}
.y171{bottom:146.106667pt;}
.ya2{bottom:147.386667pt;}
.y7e{bottom:149.786667pt;}
.y11c{bottom:150.906667pt;}
.yc3{bottom:152.346667pt;}
.y5e{bottom:152.986667pt;}
.y143{bottom:153.786667pt;}
.yed{bottom:157.946667pt;}
.y2f{bottom:158.426667pt;}
.y11b{bottom:163.226667pt;}
.ya1{bottom:165.786667pt;}
.y7d{bottom:168.186667pt;}
.yc2{bottom:169.466667pt;}
.y5d{bottom:171.386667pt;}
.y142{bottom:172.186667pt;}
.yec{bottom:176.346667pt;}
.y2e{bottom:176.826667pt;}
.y14c{bottom:177.306667pt;}
.y170{bottom:177.946667pt;}
.y11a{bottom:178.746667pt;}
.ya0{bottom:184.186667pt;}
.y7c{bottom:186.586667pt;}
.yc1{bottom:189.146667pt;}
.y5c{bottom:189.786667pt;}
.y141{bottom:190.586667pt;}
.yeb{bottom:194.746667pt;}
.y2d{bottom:195.226667pt;}
.y14b{bottom:195.706667pt;}
.y16f{bottom:196.346667pt;}
.y119{bottom:197.146667pt;}
.y9f{bottom:202.586667pt;}
.y7b{bottom:204.986667pt;}
.yc0{bottom:207.546667pt;}
.y5b{bottom:208.186667pt;}
.y140{bottom:208.986667pt;}
.yea{bottom:213.146667pt;}
.y2c{bottom:213.466667pt;}
.y14a{bottom:214.106667pt;}
.y118{bottom:215.546667pt;}
.y9e{bottom:220.986667pt;}
.y7a{bottom:223.386667pt;}
.ybf{bottom:225.946667pt;}
.y5a{bottom:226.586667pt;}
.y13f{bottom:227.386667pt;}
.y16e{bottom:228.026667pt;}
.ye9{bottom:231.546667pt;}
.y2b{bottom:231.866667pt;}
.y149{bottom:232.506667pt;}
.y117{bottom:233.946667pt;}
.y9d{bottom:239.386667pt;}
.y79{bottom:241.786667pt;}
.ybe{bottom:244.346667pt;}
.y59{bottom:245.146667pt;}
.y13e{bottom:245.786667pt;}
.ye8{bottom:249.946667pt;}
.y2a{bottom:250.266667pt;}
.y148{bottom:250.906667pt;}
.y116{bottom:252.346667pt;}
.y9c{bottom:257.786667pt;}
.y16d{bottom:259.706667pt;}
.ybd{bottom:262.746667pt;}
.y13d{bottom:264.186667pt;}
.ye7{bottom:268.346667pt;}
.y29{bottom:268.666667pt;}
.y147{bottom:269.306667pt;}
.y115{bottom:270.746667pt;}
.y78{bottom:273.626667pt;}
.y9b{bottom:276.226667pt;}
.y16c{bottom:278.146667pt;}
.ybc{bottom:281.186667pt;}
.y58{bottom:282.146667pt;}
.y13c{bottom:282.626667pt;}
.ye6{bottom:286.786667pt;}
.y146{bottom:287.746667pt;}
.y114{bottom:289.186667pt;}
.y9a{bottom:294.626667pt;}
.ybb{bottom:299.586667pt;}
.y28{bottom:300.546667pt;}
.y13b{bottom:301.026667pt;}
.ye5{bottom:305.186667pt;}
.y77{bottom:305.346667pt;}
.y113{bottom:308.226667pt;}
.y16b{bottom:309.986667pt;}
.y99{bottom:313.026667pt;}
.y57{bottom:318.946667pt;}
.y13a{bottom:319.426667pt;}
.ye4{bottom:320.706667pt;}
.y76{bottom:323.746667pt;}
.y112{bottom:326.626667pt;}
.y16a{bottom:328.386667pt;}
.y27{bottom:332.226667pt;}
.yba{bottom:334.146667pt;}
.y56{bottom:337.346667pt;}
.y139{bottom:337.826667pt;}
.ye3{bottom:339.106667pt;}
.y75{bottom:342.146667pt;}
.y98{bottom:344.866667pt;}
.y111{bottom:345.026667pt;}
.y169{bottom:346.786667pt;}
.y26{bottom:350.626667pt;}
.yb9{bottom:352.546667pt;}
.y55{bottom:355.746667pt;}
.y138{bottom:356.226667pt;}
.ye2{bottom:357.506667pt;}
.y74{bottom:360.546667pt;}
.y110{bottom:363.426667pt;}
.y168{bottom:365.026667pt;}
.y25{bottom:369.026667pt;}
.y54{bottom:374.146667pt;}
.y137{bottom:374.626667pt;}
.ye1{bottom:375.906667pt;}
.y97{bottom:376.546667pt;}
.y73{bottom:378.946667pt;}
.y10f{bottom:381.826667pt;}
.y167{bottom:383.426667pt;}
.yb8{bottom:384.226667pt;}
.y53{bottom:392.546667pt;}
.y136{bottom:393.026667pt;}
.y96{bottom:394.946667pt;}
.ye0{bottom:396.066667pt;}
.y72{bottom:397.346667pt;}
.y10e{bottom:400.226667pt;}
.y24{bottom:400.706667pt;}
.y166{bottom:401.826667pt;}
.y52{bottom:410.946667pt;}
.y135{bottom:411.426667pt;}
.y71{bottom:415.746667pt;}
.yb7{bottom:416.066667pt;}
.ydf{bottom:418.626667pt;}
.y23{bottom:419.106667pt;}
.y95{bottom:426.626667pt;}
.y51{bottom:429.346667pt;}
.y134{bottom:429.826667pt;}
.y70{bottom:434.146667pt;}
.yb6{bottom:434.466667pt;}
.y165{bottom:434.626667pt;}
.y10d{bottom:437.026667pt;}
.y22{bottom:437.506667pt;}
.y94{bottom:445.026667pt;}
.y50{bottom:447.746667pt;}
.y133{bottom:448.226667pt;}
.yde{bottom:450.306667pt;}
.y6f{bottom:452.546667pt;}
.yb5{bottom:452.866667pt;}
.y10c{bottom:455.426667pt;}
.y21{bottom:455.906667pt;}
.y93{bottom:463.426667pt;}
.y4f{bottom:466.146667pt;}
.y164{bottom:466.306667pt;}
.y132{bottom:466.626667pt;}
.y6e{bottom:470.946667pt;}
.yb4{bottom:471.266667pt;}
.y10b{bottom:473.826667pt;}
.y20{bottom:474.306667pt;}
.y92{bottom:481.826667pt;}
.ydd{bottom:481.986667pt;}
.y4e{bottom:484.546667pt;}
.y163{bottom:484.706667pt;}
.y131{bottom:485.026667pt;}
.y6d{bottom:489.346667pt;}
.yb3{bottom:489.666667pt;}
.y10a{bottom:492.226667pt;}
.y1f{bottom:492.706667pt;}
.y91{bottom:500.253333pt;}
.ydc{bottom:500.413333pt;}
.y4d{bottom:502.973333pt;}
.y162{bottom:503.133333pt;}
.y130{bottom:503.453333pt;}
.y6c{bottom:507.773333pt;}
.yb2{bottom:508.093333pt;}
.y109{bottom:510.653333pt;}
.y1e{bottom:511.133333pt;}
.y90{bottom:518.653333pt;}
.ydb{bottom:518.813333pt;}
.y4c{bottom:521.373333pt;}
.y12f{bottom:521.853333pt;}
.y6b{bottom:526.173333pt;}
.yb1{bottom:526.493333pt;}
.y108{bottom:529.053333pt;}
.y1d{bottom:529.533333pt;}
.y8f{bottom:537.053333pt;}
.yda{bottom:537.213333pt;}
.y161{bottom:537.533333pt;}
.y4b{bottom:539.773333pt;}
.y12e{bottom:540.253333pt;}
.y6a{bottom:544.573333pt;}
.yb0{bottom:544.893333pt;}
.y106{bottom:547.453333pt;}
.y1c{bottom:547.933333pt;}
.y8e{bottom:555.453333pt;}
.yd9{bottom:555.613333pt;}
.y160{bottom:555.933333pt;}
.y4a{bottom:558.173333pt;}
.y12d{bottom:558.653333pt;}
.y69{bottom:562.973333pt;}
.yaf{bottom:563.293333pt;}
.y1b{bottom:566.333333pt;}
.y8d{bottom:573.853333pt;}
.yd8{bottom:574.013333pt;}
.y15f{bottom:574.333333pt;}
.y49{bottom:576.573333pt;}
.y12c{bottom:577.053333pt;}
.y68{bottom:581.373333pt;}
.yae{bottom:581.693333pt;}
.y1a{bottom:584.733333pt;}
.y8c{bottom:592.253333pt;}
.yd7{bottom:592.413333pt;}
.y48{bottom:594.973333pt;}
.y12b{bottom:595.453333pt;}
.y67{bottom:599.773333pt;}
.yad{bottom:599.933333pt;}
.y105{bottom:601.853333pt;}
.y19{bottom:603.133333pt;}
.y15e{bottom:606.013333pt;}
.y8b{bottom:610.653333pt;}
.yd6{bottom:610.813333pt;}
.y47{bottom:613.373333pt;}
.y12a{bottom:613.853333pt;}
.y66{bottom:618.173333pt;}
.yac{bottom:618.333333pt;}
.y104{bottom:620.253333pt;}
.y18{bottom:621.533333pt;}
.y15d{bottom:624.413333pt;}
.y8a{bottom:629.053333pt;}
.yd5{bottom:629.213333pt;}
.y46{bottom:631.773333pt;}
.y129{bottom:632.253333pt;}
.y65{bottom:636.573333pt;}
.yab{bottom:636.733333pt;}
.y103{bottom:638.653333pt;}
.y17{bottom:639.933333pt;}
.y15c{bottom:642.813333pt;}
.y89{bottom:647.453333pt;}
.yd4{bottom:647.613333pt;}
.y45{bottom:650.173333pt;}
.y128{bottom:650.653333pt;}
.yaa{bottom:655.133333pt;}
.y102{bottom:657.053333pt;}
.y16{bottom:658.333333pt;}
.y15b{bottom:665.213333pt;}
.y88{bottom:665.853333pt;}
.yd3{bottom:666.013333pt;}
.y64{bottom:668.253333pt;}
.y44{bottom:668.573333pt;}
.y127{bottom:669.053333pt;}
.ya9{bottom:673.533333pt;}
.y101{bottom:675.453333pt;}
.y15{bottom:676.733333pt;}
.y15a{bottom:683.613333pt;}
.y87{bottom:684.253333pt;}
.yd2{bottom:684.413333pt;}
.y126{bottom:687.453333pt;}
.ya8{bottom:691.933333pt;}
.y100{bottom:693.853333pt;}
.y14{bottom:695.133333pt;}
.y159{bottom:702.013333pt;}
.y86{bottom:702.653333pt;}
.yd1{bottom:702.813333pt;}
.y63{bottom:705.373333pt;}
.y43{bottom:705.533333pt;}
.y125{bottom:705.853333pt;}
.ya7{bottom:710.333333pt;}
.yff{bottom:712.253333pt;}
.y13{bottom:713.533333pt;}
.y85{bottom:721.053333pt;}
.yd0{bottom:721.253333pt;}
.y42{bottom:723.973333pt;}
.y124{bottom:724.293333pt;}
.ya6{bottom:728.773333pt;}
.yfe{bottom:730.693333pt;}
.y12{bottom:731.973333pt;}
.y158{bottom:733.733333pt;}
.y84{bottom:739.493333pt;}
.ycf{bottom:739.653333pt;}
.y41{bottom:742.373333pt;}
.y123{bottom:742.693333pt;}
.yfd{bottom:749.093333pt;}
.y11{bottom:750.373333pt;}
.y157{bottom:752.133333pt;}
.yce{bottom:758.053333pt;}
.y40{bottom:760.773333pt;}
.y122{bottom:761.093333pt;}
.ya5{bottom:765.893333pt;}
.yfc{bottom:767.493333pt;}
.y10{bottom:768.773333pt;}
.y83{bottom:771.173333pt;}
.ycd{bottom:776.453333pt;}
.y3f{bottom:779.173333pt;}
.y121{bottom:779.493333pt;}
.y156{bottom:783.973333pt;}
.yfb{bottom:785.893333pt;}
.yf{bottom:787.173333pt;}
.ycc{bottom:794.853333pt;}
.y3e{bottom:797.573333pt;}
.y120{bottom:797.893333pt;}
.y155{bottom:802.373333pt;}
.y82{bottom:803.013333pt;}
.yfa{bottom:804.293333pt;}
.ye{bottom:805.573333pt;}
.ycb{bottom:810.373333pt;}
.y3d{bottom:815.973333pt;}
.y11f{bottom:816.293333pt;}
.yf9{bottom:819.173333pt;}
.y154{bottom:820.773333pt;}
.y81{bottom:821.413333pt;}
.yd{bottom:824.133333pt;}
.yca{bottom:828.773333pt;}
.y3c{bottom:834.373333pt;}
.y11e{bottom:834.693333pt;}
.y153{bottom:839.493333pt;}
.yf7{bottom:841.413333pt;}
.yc{bottom:844.133333pt;}
.yc9{bottom:847.173333pt;}
.y3b{bottom:852.933333pt;}
.y62{bottom:853.093333pt;}
.y152{bottom:857.893333pt;}
.y5{bottom:863.813333pt;}
.yf5{bottom:864.453333pt;}
.yc8{bottom:865.573333pt;}
.y61{bottom:871.493333pt;}
.y151{bottom:876.293333pt;}
.yc6{bottom:885.733333pt;}
.yf3{bottom:886.693333pt;}
.y3a{bottom:889.893333pt;}
.y150{bottom:895.013333pt;}
.y4{bottom:900.933333pt;}
.y39{bottom:908.293333pt;}
.yf1{bottom:910.693333pt;}
.y38{bottom:926.693333pt;}
.y3{bottom:938.533333pt;}
.y37{bottom:945.120000pt;}
.y2{bottom:971.680000pt;}
.y1{bottom:991.840000pt;}
.y33{bottom:993.120000pt;}
.hb{height:18.400000pt;}
.h11{height:18.432000pt;}
.he{height:22.240000pt;}
.hd{height:22.400000pt;}
.hf{height:23.040000pt;}
.h14{height:29.940625pt;}
.hc{height:30.240000pt;}
.h10{height:36.800000pt;}
.h5{height:44.000000pt;}
.h4{height:44.687500pt;}
.h2{height:45.156250pt;}
.h9{height:46.781250pt;}
.h7{height:48.281250pt;}
.h8{height:48.768750pt;}
.ha{height:49.807500pt;}
.h6{height:51.840000pt;}
.h13{height:54.260625pt;}
.h12{height:54.367292pt;}
.h1{height:54.639063pt;}
.h3{height:60.057813pt;}
.h0{height:1056.000000pt;}
.w3{width:53.280000pt;}
.wa{width:80.000000pt;}
.w9{width:80.032000pt;}
.wb{width:87.360000pt;}
.we{width:88.192000pt;}
.wd{width:88.320000pt;}
.wc{width:88.352000pt;}
.wf{width:88.640000pt;}
.w6{width:93.280000pt;}
.w5{width:93.312000pt;}
.w4{width:93.440000pt;}
.w7{width:93.472000pt;}
.w8{width:107.200000pt;}
.w11{width:162.586667pt;}
.w2{width:167.226667pt;}
.w10{width:192.026667pt;}
.w12{width:245.466667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.200000pt;}
.x7{left:8.639988pt;}
.x16{left:16.320000pt;}
.x1a{left:22.106667pt;}
.x1f{left:30.080000pt;}
.x8{left:34.079988pt;}
.x2e{left:39.840000pt;}
.x3e{left:43.840000pt;}
.x18{left:45.600000pt;}
.x33{left:48.000000pt;}
.x20{left:50.080000pt;}
.x1e{left:52.840000pt;}
.x2a{left:54.400000pt;}
.x1c{left:55.360000pt;}
.x21{left:58.106667pt;}
.x3b{left:59.200000pt;}
.x38{left:60.640000pt;}
.x3a{left:63.200000pt;}
.x22{left:66.080000pt;}
.x40{left:67.200000pt;}
.x34{left:69.760000pt;}
.x30{left:71.840000pt;}
.x23{left:74.080000pt;}
.x24{left:78.120000pt;}
.x41{left:81.280000pt;}
.x42{left:85.280000pt;}
.x5{left:95.071988pt;}
.x11{left:96.031988pt;}
.x37{left:99.360000pt;}
.x3c{left:100.640000pt;}
.x39{left:102.080000pt;}
.x36{left:104.640000pt;}
.x3d{left:108.640000pt;}
.x35{left:111.200000pt;}
.x32{left:113.280000pt;}
.x13{left:120.031988pt;}
.x3f{left:122.720000pt;}
.x44{left:126.431988pt;}
.x12{left:144.026655pt;}
.xa{left:147.706655pt;}
.x1{left:156.666655pt;}
.x3{left:183.386655pt;}
.x25{left:203.226667pt;}
.x4{left:210.266655pt;}
.x2{left:252.666655pt;}
.xe{left:262.306655pt;}
.x15{left:263.266667pt;}
.x2b{left:271.746667pt;}
.x26{left:283.266667pt;}
.x2f{left:288.066667pt;}
.x17{left:316.546667pt;}
.xf{left:323.266655pt;}
.xd{left:329.986655pt;}
.xb{left:339.746655pt;}
.x10{left:345.506655pt;}
.x2c{left:360.066667pt;}
.x27{left:363.266667pt;}
.x9{left:376.066655pt;}
.x19{left:409.986667pt;}
.xc{left:434.653321pt;}
.x28{left:443.293333pt;}
.x2d{left:448.253333pt;}
.x31{left:450.653333pt;}
.x1b{left:503.293333pt;}
.x29{left:523.293333pt;}
.x1d{left:596.573333pt;}
.x43{left:757.253321pt;}
.x6{left:765.253321pt;}
}




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