
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_545ef1425caf0ed742d1d802.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_017c9a13681ac95d3fcd4ff9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_424c5b34c921e108ac50551f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_3a6601bffc88d738d02fb233.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_f7d9506793903db835bbfa10.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_895565062195d96e16269c25.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_5ec3182ec37506977f4af9c1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_8803aa0ee420ea1c883cb83a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.261600px;}
.lsd{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.lsf{letter-spacing:-0.018360px;}
.ls11{letter-spacing:-0.014760px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.ls5{letter-spacing:0.049200px;}
.lse{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls7{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls4{letter-spacing:7.560000px;}
.ls12{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.279680px;}
.ws5{word-spacing:-13.275600px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.211640px;}
.ws9{word-spacing:-13.208040px;}
.ws7{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.964800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._3{margin-left:-3.808440px;}
._2{margin-left:-2.705400px;}
._0{margin-left:-1.158000px;}
._1{width:1.042476px;}
._5{width:2.645400px;}
._6{width:3.771358px;}
._b{width:5.281800px;}
._e{width:6.283680px;}
._4{width:7.455000px;}
._d{width:8.784840px;}
._c{width:9.799560px;}
._9{width:11.422800px;}
._a{width:14.248801px;}
._13{width:15.510599px;}
._14{width:16.535886px;}
._8{width:17.750994px;}
._7{width:18.817800px;}
._f{width:19.938718px;}
._10{width:20.950255px;}
._17{width:21.981683px;}
._11{width:23.687280px;}
._12{width:24.794124px;}
._19{width:25.887036px;}
._16{width:27.054000px;}
._18{width:31.021920px;}
._15{width:33.847560px;}
._1c{width:34.939164px;}
._1b{width:99.528480px;}
._1a{width:107.283960px;}
._1e{width:582.923520px;}
._1d{width:2278.247400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:78.120000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y37{bottom:7.830000px;}
.y5e{bottom:7.860000px;}
.y34{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yfe{bottom:111.270000px;}
.y59{bottom:113.430000px;}
.y12d{bottom:118.200000px;}
.yab{bottom:124.050000px;}
.y116{bottom:124.500000px;}
.yfd{bottom:128.910000px;}
.y80{bottom:131.070000px;}
.y152{bottom:135.570000px;}
.y12c{bottom:135.840000px;}
.y28{bottom:138.270000px;}
.yaa{bottom:141.600000px;}
.y115{bottom:142.050000px;}
.y7f{bottom:148.620000px;}
.yd3{bottom:148.980000px;}
.y58{bottom:149.070000px;}
.y151{bottom:153.120000px;}
.y12b{bottom:153.390000px;}
.y27{bottom:155.820000px;}
.ya9{bottom:159.240000px;}
.y114{bottom:159.600000px;}
.yfc{bottom:164.460000px;}
.yd2{bottom:166.530000px;}
.y150{bottom:170.670000px;}
.y12a{bottom:170.940000px;}
.ya8{bottom:176.790000px;}
.y113{bottom:177.240000px;}
.yfb{bottom:182.100000px;}
.y26{bottom:182.370000px;}
.yd1{bottom:184.170000px;}
.y7e{bottom:184.260000px;}
.y57{bottom:184.620000px;}
.y14f{bottom:188.310000px;}
.y129{bottom:188.580000px;}
.ya7{bottom:194.430000px;}
.y112{bottom:194.790000px;}
.yfa{bottom:199.650000px;}
.yd0{bottom:201.720000px;}
.y7d{bottom:201.810000px;}
.y14e{bottom:205.860000px;}
.y128{bottom:206.130000px;}
.ya6{bottom:211.980000px;}
.y111{bottom:212.430000px;}
.yf9{bottom:217.200000px;}
.y25{bottom:218.010000px;}
.ycf{bottom:219.270000px;}
.y7c{bottom:219.360000px;}
.y56{bottom:220.260000px;}
.y127{bottom:223.680000px;}
.y14d{bottom:232.500000px;}
.yf8{bottom:234.840000px;}
.y24{bottom:235.560000px;}
.yce{bottom:236.910000px;}
.y7b{bottom:237.000000px;}
.y55{bottom:237.810000px;}
.y110{bottom:239.340000px;}
.y126{bottom:241.320000px;}
.ya5{bottom:247.530000px;}
.y14c{bottom:250.050000px;}
.yf7{bottom:252.390000px;}
.y23{bottom:253.200000px;}
.ycd{bottom:254.460000px;}
.y7a{bottom:254.550000px;}
.y54{bottom:255.360000px;}
.y125{bottom:258.870000px;}
.ya4{bottom:265.170000px;}
.yf6{bottom:270.030000px;}
.y22{bottom:270.750000px;}
.ycc{bottom:272.100000px;}
.y79{bottom:272.190000px;}
.y53{bottom:273.000000px;}
.y14b{bottom:276.600000px;}
.ya3{bottom:282.720000px;}
.yf5{bottom:287.580000px;}
.y21{bottom:288.300000px;}
.ycb{bottom:289.650000px;}
.y52{bottom:290.550000px;}
.y14a{bottom:294.240000px;}
.y124{bottom:294.510000px;}
.ya2{bottom:300.360000px;}
.yf4{bottom:305.130000px;}
.y20{bottom:305.940000px;}
.yca{bottom:307.200000px;}
.y78{bottom:307.740000px;}
.y51{bottom:308.190000px;}
.y123{bottom:312.060000px;}
.ya1{bottom:317.910000px;}
.y149{bottom:320.790000px;}
.yf3{bottom:322.770000px;}
.y1f{bottom:323.490000px;}
.y77{bottom:325.290000px;}
.y122{bottom:329.610000px;}
.ya0{bottom:335.460000px;}
.y148{bottom:338.430000px;}
.y10f{bottom:340.320000px;}
.y1e{bottom:341.130000px;}
.yc9{bottom:342.840000px;}
.y76{bottom:342.930000px;}
.y50{bottom:343.740000px;}
.y121{bottom:347.250000px;}
.y9f{bottom:353.100000px;}
.y10e{bottom:357.870000px;}
.yf2{bottom:358.320000px;}
.y1d{bottom:358.680000px;}
.yc8{bottom:360.390000px;}
.y75{bottom:360.480000px;}
.y4f{bottom:361.290000px;}
.y120{bottom:364.800000px;}
.y147{bottom:364.980000px;}
.y9e{bottom:370.650000px;}
.y10d{bottom:375.510000px;}
.yf1{bottom:375.870000px;}
.y1c{bottom:376.230000px;}
.yc7{bottom:377.940000px;}
.y74{bottom:378.120000px;}
.y4e{bottom:378.930000px;}
.y11f{bottom:382.440000px;}
.y146{bottom:382.530000px;}
.y9d{bottom:388.290000px;}
.yf0{bottom:393.510000px;}
.y1b{bottom:393.870000px;}
.yc6{bottom:395.580000px;}
.y73{bottom:395.670000px;}
.y4d{bottom:396.480000px;}
.y11e{bottom:399.990000px;}
.y145{bottom:409.170000px;}
.yef{bottom:411.060000px;}
.yc5{bottom:413.130000px;}
.y4c{bottom:414.120000px;}
.y11d{bottom:417.540000px;}
.y1a{bottom:420.780000px;}
.y9c{bottom:421.230000px;}
.y144{bottom:426.720000px;}
.yee{bottom:428.700000px;}
.yc4{bottom:430.770000px;}
.y72{bottom:431.220000px;}
.y4b{bottom:431.670000px;}
.y11c{bottom:435.180000px;}
.y143{bottom:444.360000px;}
.yed{bottom:446.250000px;}
.yc3{bottom:448.320000px;}
.y9b{bottom:448.590000px;}
.y71{bottom:448.860000px;}
.y4a{bottom:449.220000px;}
.y11b{bottom:452.730000px;}
.yec{bottom:463.800000px;}
.yc2{bottom:465.870000px;}
.y19{bottom:469.020000px;}
.y11a{bottom:470.400000px;}
.y142{bottom:471.210000px;}
.y70{bottom:475.800000px;}
.y9a{bottom:475.890000px;}
.yeb{bottom:481.470000px;}
.y49{bottom:484.890000px;}
.y18{bottom:486.960000px;}
.yc1{bottom:492.810000px;}
.yea{bottom:499.020000px;}
.y48{bottom:502.440000px;}
.y99{bottom:503.250000px;}
.y119{bottom:505.950000px;}
.ye9{bottom:516.660000px;}
.y141{bottom:519.540000px;}
.y118{bottom:523.500000px;}
.y17{bottom:523.950000px;}
.y6f{bottom:524.040000px;}
.y47{bottom:529.350000px;}
.y98{bottom:530.610000px;}
.ye8{bottom:534.210000px;}
.y140{bottom:537.090000px;}
.yc0{bottom:541.140000px;}
.y16{bottom:541.590000px;}
.y10c{bottom:551.760000px;}
.y13f{bottom:554.730000px;}
.y97{bottom:557.880000px;}
.ybf{bottom:558.690000px;}
.y15{bottom:559.140000px;}
.y6e{bottom:559.230000px;}
.y10b{bottom:569.400000px;}
.ye7{bottom:569.760000px;}
.y13e{bottom:572.280000px;}
.ybe{bottom:576.330000px;}
.y14{bottom:576.780000px;}
.y46{bottom:577.590000px;}
.y10a{bottom:586.950000px;}
.ye6{bottom:587.400000px;}
.y13d{bottom:589.830000px;}
.ybd{bottom:593.880000px;}
.y13{bottom:594.330000px;}
.y45{bottom:595.230000px;}
.ye5{bottom:604.950000px;}
.y96{bottom:606.660000px;}
.y13c{bottom:607.470000px;}
.ybc{bottom:611.430000px;}
.y12{bottom:611.880000px;}
.y6d{bottom:612.420000px;}
.y44{bottom:612.780000px;}
.y109{bottom:619.980000px;}
.ye4{bottom:622.590000px;}
.y13b{bottom:625.020000px;}
.ybb{bottom:629.070000px;}
.y11{bottom:629.520000px;}
.y6c{bottom:629.970000px;}
.y43{bottom:630.420000px;}
.ye3{bottom:640.140000px;}
.y95{bottom:642.210000px;}
.y13a{bottom:642.660000px;}
.yba{bottom:646.620000px;}
.y10{bottom:647.070000px;}
.y108{bottom:647.250000px;}
.y6b{bottom:647.520000px;}
.y42{bottom:647.970000px;}
.ye2{bottom:657.690000px;}
.y94{bottom:659.760000px;}
.y139{bottom:660.210000px;}
.yb9{bottom:664.260000px;}
.yf{bottom:664.710000px;}
.y6a{bottom:665.160000px;}
.y41{bottom:665.520000px;}
.y107{bottom:674.610000px;}
.ye1{bottom:675.330000px;}
.y93{bottom:677.400000px;}
.y138{bottom:677.760000px;}
.yb8{bottom:681.810000px;}
.ye{bottom:682.260000px;}
.y69{bottom:682.710000px;}
.y40{bottom:683.160000px;}
.ye0{bottom:692.880000px;}
.y92{bottom:694.950000px;}
.y137{bottom:695.400000px;}
.yb7{bottom:699.360000px;}
.yd{bottom:699.810000px;}
.y3f{bottom:700.710000px;}
.y106{bottom:701.970000px;}
.ydf{bottom:710.520000px;}
.y91{bottom:712.590000px;}
.y136{bottom:712.950000px;}
.y117{bottom:717.360000px;}
.yc{bottom:717.450000px;}
.y3e{bottom:718.350000px;}
.yde{bottom:728.070000px;}
.y105{bottom:729.240000px;}
.y90{bottom:730.140000px;}
.y135{bottom:730.590000px;}
.yb{bottom:735.000000px;}
.y3d{bottom:735.900000px;}
.y8f{bottom:747.690000px;}
.y134{bottom:748.140000px;}
.yb6{bottom:752.550000px;}
.ya{bottom:752.640000px;}
.y3c{bottom:753.450000px;}
.y104{bottom:756.600000px;}
.ydd{bottom:763.620000px;}
.y8e{bottom:765.330000px;}
.y133{bottom:765.690000px;}
.yb5{bottom:770.190000px;}
.y68{bottom:771.090000px;}
.y9{bottom:779.550000px;}
.ydc{bottom:781.260000px;}
.y132{bottom:783.330000px;}
.y3b{bottom:786.480000px;}
.yb4{bottom:787.740000px;}
.y67{bottom:788.640000px;}
.ydb{bottom:798.810000px;}
.y8d{bottom:800.880000px;}
.yb3{bottom:805.290000px;}
.y3a{bottom:813.750000px;}
.yda{bottom:816.450000px;}
.y8c{bottom:818.520000px;}
.yb2{bottom:822.930000px;}
.y66{bottom:824.280000px;}
.y8{bottom:827.790000px;}
.yd9{bottom:834.000000px;}
.y8b{bottom:836.070000px;}
.yb1{bottom:840.480000px;}
.y103{bottom:840.930000px;}
.y39{bottom:841.110000px;}
.y65{bottom:841.830000px;}
.yd8{bottom:851.550000px;}
.y8a{bottom:853.620000px;}
.yb0{bottom:858.030000px;}
.y102{bottom:858.480000px;}
.y64{bottom:859.380000px;}
.y7{bottom:863.610000px;}
.y38{bottom:868.470000px;}
.yd7{bottom:869.190000px;}
.y89{bottom:871.260000px;}
.yaf{bottom:875.670000px;}
.y101{bottom:876.030000px;}
.y63{bottom:877.020000px;}
.yd6{bottom:886.740000px;}
.y88{bottom:888.810000px;}
.y100{bottom:893.670000px;}
.y62{bottom:894.570000px;}
.y36{bottom:895.830000px;}
.y6{bottom:899.610000px;}
.yd5{bottom:904.380000px;}
.y131{bottom:906.450000px;}
.yae{bottom:911.220000px;}
.y87{bottom:915.720000px;}
.yd4{bottom:921.930000px;}
.y35{bottom:923.100000px;}
.y130{bottom:924.000000px;}
.y61{bottom:927.600000px;}
.yad{bottom:928.860000px;}
.y5{bottom:935.610000px;}
.y12f{bottom:941.550000px;}
.yac{bottom:946.410000px;}
.y33{bottom:950.460000px;}
.y60{bottom:954.870000px;}
.y86{bottom:963.960000px;}
.y12e{bottom:968.460000px;}
.y4{bottom:971.700000px;}
.y85{bottom:981.600000px;}
.y5f{bottom:982.230000px;}
.y32{bottom:999.150000px;}
.y5d{bottom:1009.590000px;}
.y3{bottom:1009.980000px;}
.y84{bottom:1016.820000px;}
.yff{bottom:1017.180000px;}
.y83{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.y5c{bottom:1036.890000px;}
.y82{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.y155{bottom:1060.920000px;}
.y5b{bottom:1064.250000px;}
.y81{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y154{bottom:1078.560000px;}
.y2e{bottom:1087.560000px;}
.y5a{bottom:1091.610000px;}
.y153{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hc{height:26.550000px;}
.he{height:26.580000px;}
.hb{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:60.960938px;}
.h10{height:61.793886px;}
.ha{height:62.585859px;}
.hd{height:68.582109px;}
.h4{height:71.019492px;}
.h8{height:74.004654px;}
.hf{height:81.324141px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:105.870000px;}
.wd{width:115.860000px;}
.w3{width:136.020000px;}
.wb{width:159.660000px;}
.w8{width:183.150000px;}
.w6{width:194.220000px;}
.w4{width:228.960000px;}
.w5{width:267.060000px;}
.wc{width:346.710000px;}
.w7{width:348.420000px;}
.w9{width:356.160000px;}
.we{width:457.140000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.650000px;}
.x1{left:68.040000px;}
.x11{left:111.239987px;}
.x4{left:129.870000px;}
.xc{left:139.770000px;}
.xf{left:159.750000px;}
.x8{left:174.900000px;}
.xa{left:176.610000px;}
.x2{left:198.839987px;}
.xd{left:246.450000px;}
.x6{left:266.700000px;}
.x10{left:276.330000px;}
.xb{left:360.480000px;}
.x9{left:369.930000px;}
.xe{left:406.830000px;}
.x7{left:496.380000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.232533pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.lsf{letter-spacing:-0.016320pt;}
.ls11{letter-spacing:-0.013120pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.ls5{letter-spacing:0.043733pt;}
.lse{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls7{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls4{letter-spacing:6.720000pt;}
.ls12{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.804160pt;}
.ws5{word-spacing:-11.800533pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.743680pt;}
.ws9{word-spacing:-11.740480pt;}
.ws7{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.524267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._3{margin-left:-3.385280pt;}
._2{margin-left:-2.404800pt;}
._0{margin-left:-1.029333pt;}
._1{width:0.926645pt;}
._5{width:2.351467pt;}
._6{width:3.352318pt;}
._b{width:4.694933pt;}
._e{width:5.585493pt;}
._4{width:6.626667pt;}
._d{width:7.808747pt;}
._c{width:8.710720pt;}
._9{width:10.153600pt;}
._a{width:12.665601pt;}
._13{width:13.787199pt;}
._14{width:14.698565pt;}
._8{width:15.778662pt;}
._7{width:16.726934pt;}
._f{width:17.723305pt;}
._10{width:18.622449pt;}
._17{width:19.539274pt;}
._11{width:21.055360pt;}
._12{width:22.039221pt;}
._19{width:23.010699pt;}
._16{width:24.048000pt;}
._18{width:27.575040pt;}
._15{width:30.086720pt;}
._1c{width:31.057035pt;}
._1b{width:88.469760pt;}
._1a{width:95.363520pt;}
._1e{width:518.154240pt;}
._1d{width:2025.108800pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.440000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:6.960000pt;}
.y5e{bottom:6.986667pt;}
.y34{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yfe{bottom:98.906667pt;}
.y59{bottom:100.826667pt;}
.y12d{bottom:105.066667pt;}
.yab{bottom:110.266667pt;}
.y116{bottom:110.666667pt;}
.yfd{bottom:114.586667pt;}
.y80{bottom:116.506667pt;}
.y152{bottom:120.506667pt;}
.y12c{bottom:120.746667pt;}
.y28{bottom:122.906667pt;}
.yaa{bottom:125.866667pt;}
.y115{bottom:126.266667pt;}
.y7f{bottom:132.106667pt;}
.yd3{bottom:132.426667pt;}
.y58{bottom:132.506667pt;}
.y151{bottom:136.106667pt;}
.y12b{bottom:136.346667pt;}
.y27{bottom:138.506667pt;}
.ya9{bottom:141.546667pt;}
.y114{bottom:141.866667pt;}
.yfc{bottom:146.186667pt;}
.yd2{bottom:148.026667pt;}
.y150{bottom:151.706667pt;}
.y12a{bottom:151.946667pt;}
.ya8{bottom:157.146667pt;}
.y113{bottom:157.546667pt;}
.yfb{bottom:161.866667pt;}
.y26{bottom:162.106667pt;}
.yd1{bottom:163.706667pt;}
.y7e{bottom:163.786667pt;}
.y57{bottom:164.106667pt;}
.y14f{bottom:167.386667pt;}
.y129{bottom:167.626667pt;}
.ya7{bottom:172.826667pt;}
.y112{bottom:173.146667pt;}
.yfa{bottom:177.466667pt;}
.yd0{bottom:179.306667pt;}
.y7d{bottom:179.386667pt;}
.y14e{bottom:182.986667pt;}
.y128{bottom:183.226667pt;}
.ya6{bottom:188.426667pt;}
.y111{bottom:188.826667pt;}
.yf9{bottom:193.066667pt;}
.y25{bottom:193.786667pt;}
.ycf{bottom:194.906667pt;}
.y7c{bottom:194.986667pt;}
.y56{bottom:195.786667pt;}
.y127{bottom:198.826667pt;}
.y14d{bottom:206.666667pt;}
.yf8{bottom:208.746667pt;}
.y24{bottom:209.386667pt;}
.yce{bottom:210.586667pt;}
.y7b{bottom:210.666667pt;}
.y55{bottom:211.386667pt;}
.y110{bottom:212.746667pt;}
.y126{bottom:214.506667pt;}
.ya5{bottom:220.026667pt;}
.y14c{bottom:222.266667pt;}
.yf7{bottom:224.346667pt;}
.y23{bottom:225.066667pt;}
.ycd{bottom:226.186667pt;}
.y7a{bottom:226.266667pt;}
.y54{bottom:226.986667pt;}
.y125{bottom:230.106667pt;}
.ya4{bottom:235.706667pt;}
.yf6{bottom:240.026667pt;}
.y22{bottom:240.666667pt;}
.ycc{bottom:241.866667pt;}
.y79{bottom:241.946667pt;}
.y53{bottom:242.666667pt;}
.y14b{bottom:245.866667pt;}
.ya3{bottom:251.306667pt;}
.yf5{bottom:255.626667pt;}
.y21{bottom:256.266667pt;}
.ycb{bottom:257.466667pt;}
.y52{bottom:258.266667pt;}
.y14a{bottom:261.546667pt;}
.y124{bottom:261.786667pt;}
.ya2{bottom:266.986667pt;}
.yf4{bottom:271.226667pt;}
.y20{bottom:271.946667pt;}
.yca{bottom:273.066667pt;}
.y78{bottom:273.546667pt;}
.y51{bottom:273.946667pt;}
.y123{bottom:277.386667pt;}
.ya1{bottom:282.586667pt;}
.y149{bottom:285.146667pt;}
.yf3{bottom:286.906667pt;}
.y1f{bottom:287.546667pt;}
.y77{bottom:289.146667pt;}
.y122{bottom:292.986667pt;}
.ya0{bottom:298.186667pt;}
.y148{bottom:300.826667pt;}
.y10f{bottom:302.506667pt;}
.y1e{bottom:303.226667pt;}
.yc9{bottom:304.746667pt;}
.y76{bottom:304.826667pt;}
.y50{bottom:305.546667pt;}
.y121{bottom:308.666667pt;}
.y9f{bottom:313.866667pt;}
.y10e{bottom:318.106667pt;}
.yf2{bottom:318.506667pt;}
.y1d{bottom:318.826667pt;}
.yc8{bottom:320.346667pt;}
.y75{bottom:320.426667pt;}
.y4f{bottom:321.146667pt;}
.y120{bottom:324.266667pt;}
.y147{bottom:324.426667pt;}
.y9e{bottom:329.466667pt;}
.y10d{bottom:333.786667pt;}
.yf1{bottom:334.106667pt;}
.y1c{bottom:334.426667pt;}
.yc7{bottom:335.946667pt;}
.y74{bottom:336.106667pt;}
.y4e{bottom:336.826667pt;}
.y11f{bottom:339.946667pt;}
.y146{bottom:340.026667pt;}
.y9d{bottom:345.146667pt;}
.yf0{bottom:349.786667pt;}
.y1b{bottom:350.106667pt;}
.yc6{bottom:351.626667pt;}
.y73{bottom:351.706667pt;}
.y4d{bottom:352.426667pt;}
.y11e{bottom:355.546667pt;}
.y145{bottom:363.706667pt;}
.yef{bottom:365.386667pt;}
.yc5{bottom:367.226667pt;}
.y4c{bottom:368.106667pt;}
.y11d{bottom:371.146667pt;}
.y1a{bottom:374.026667pt;}
.y9c{bottom:374.426667pt;}
.y144{bottom:379.306667pt;}
.yee{bottom:381.066667pt;}
.yc4{bottom:382.906667pt;}
.y72{bottom:383.306667pt;}
.y4b{bottom:383.706667pt;}
.y11c{bottom:386.826667pt;}
.y143{bottom:394.986667pt;}
.yed{bottom:396.666667pt;}
.yc3{bottom:398.506667pt;}
.y9b{bottom:398.746667pt;}
.y71{bottom:398.986667pt;}
.y4a{bottom:399.306667pt;}
.y11b{bottom:402.426667pt;}
.yec{bottom:412.266667pt;}
.yc2{bottom:414.106667pt;}
.y19{bottom:416.906667pt;}
.y11a{bottom:418.133333pt;}
.y142{bottom:418.853333pt;}
.y70{bottom:422.933333pt;}
.y9a{bottom:423.013333pt;}
.yeb{bottom:427.973333pt;}
.y49{bottom:431.013333pt;}
.y18{bottom:432.853333pt;}
.yc1{bottom:438.053333pt;}
.yea{bottom:443.573333pt;}
.y48{bottom:446.613333pt;}
.y99{bottom:447.333333pt;}
.y119{bottom:449.733333pt;}
.ye9{bottom:459.253333pt;}
.y141{bottom:461.813333pt;}
.y118{bottom:465.333333pt;}
.y17{bottom:465.733333pt;}
.y6f{bottom:465.813333pt;}
.y47{bottom:470.533333pt;}
.y98{bottom:471.653333pt;}
.ye8{bottom:474.853333pt;}
.y140{bottom:477.413333pt;}
.yc0{bottom:481.013333pt;}
.y16{bottom:481.413333pt;}
.y10c{bottom:490.453333pt;}
.y13f{bottom:493.093333pt;}
.y97{bottom:495.893333pt;}
.ybf{bottom:496.613333pt;}
.y15{bottom:497.013333pt;}
.y6e{bottom:497.093333pt;}
.y10b{bottom:506.133333pt;}
.ye7{bottom:506.453333pt;}
.y13e{bottom:508.693333pt;}
.ybe{bottom:512.293333pt;}
.y14{bottom:512.693333pt;}
.y46{bottom:513.413333pt;}
.y10a{bottom:521.733333pt;}
.ye6{bottom:522.133333pt;}
.y13d{bottom:524.293333pt;}
.ybd{bottom:527.893333pt;}
.y13{bottom:528.293333pt;}
.y45{bottom:529.093333pt;}
.ye5{bottom:537.733333pt;}
.y96{bottom:539.253333pt;}
.y13c{bottom:539.973333pt;}
.ybc{bottom:543.493333pt;}
.y12{bottom:543.893333pt;}
.y6d{bottom:544.373333pt;}
.y44{bottom:544.693333pt;}
.y109{bottom:551.093333pt;}
.ye4{bottom:553.413333pt;}
.y13b{bottom:555.573333pt;}
.ybb{bottom:559.173333pt;}
.y11{bottom:559.573333pt;}
.y6c{bottom:559.973333pt;}
.y43{bottom:560.373333pt;}
.ye3{bottom:569.013333pt;}
.y95{bottom:570.853333pt;}
.y13a{bottom:571.253333pt;}
.yba{bottom:574.773333pt;}
.y10{bottom:575.173333pt;}
.y108{bottom:575.333333pt;}
.y6b{bottom:575.573333pt;}
.y42{bottom:575.973333pt;}
.ye2{bottom:584.613333pt;}
.y94{bottom:586.453333pt;}
.y139{bottom:586.853333pt;}
.yb9{bottom:590.453333pt;}
.yf{bottom:590.853333pt;}
.y6a{bottom:591.253333pt;}
.y41{bottom:591.573333pt;}
.y107{bottom:599.653333pt;}
.ye1{bottom:600.293333pt;}
.y93{bottom:602.133333pt;}
.y138{bottom:602.453333pt;}
.yb8{bottom:606.053333pt;}
.ye{bottom:606.453333pt;}
.y69{bottom:606.853333pt;}
.y40{bottom:607.253333pt;}
.ye0{bottom:615.893333pt;}
.y92{bottom:617.733333pt;}
.y137{bottom:618.133333pt;}
.yb7{bottom:621.653333pt;}
.yd{bottom:622.053333pt;}
.y3f{bottom:622.853333pt;}
.y106{bottom:623.973333pt;}
.ydf{bottom:631.573333pt;}
.y91{bottom:633.413333pt;}
.y136{bottom:633.733333pt;}
.y117{bottom:637.653333pt;}
.yc{bottom:637.733333pt;}
.y3e{bottom:638.533333pt;}
.yde{bottom:647.173333pt;}
.y105{bottom:648.213333pt;}
.y90{bottom:649.013333pt;}
.y135{bottom:649.413333pt;}
.yb{bottom:653.333333pt;}
.y3d{bottom:654.133333pt;}
.y8f{bottom:664.613333pt;}
.y134{bottom:665.013333pt;}
.yb6{bottom:668.933333pt;}
.ya{bottom:669.013333pt;}
.y3c{bottom:669.733333pt;}
.y104{bottom:672.533333pt;}
.ydd{bottom:678.773333pt;}
.y8e{bottom:680.293333pt;}
.y133{bottom:680.613333pt;}
.yb5{bottom:684.613333pt;}
.y68{bottom:685.413333pt;}
.y9{bottom:692.933333pt;}
.ydc{bottom:694.453333pt;}
.y132{bottom:696.293333pt;}
.y3b{bottom:699.093333pt;}
.yb4{bottom:700.213333pt;}
.y67{bottom:701.013333pt;}
.ydb{bottom:710.053333pt;}
.y8d{bottom:711.893333pt;}
.yb3{bottom:715.813333pt;}
.y3a{bottom:723.333333pt;}
.yda{bottom:725.733333pt;}
.y8c{bottom:727.573333pt;}
.yb2{bottom:731.493333pt;}
.y66{bottom:732.693333pt;}
.y8{bottom:735.813333pt;}
.yd9{bottom:741.333333pt;}
.y8b{bottom:743.173333pt;}
.yb1{bottom:747.093333pt;}
.y103{bottom:747.493333pt;}
.y39{bottom:747.653333pt;}
.y65{bottom:748.293333pt;}
.yd8{bottom:756.933333pt;}
.y8a{bottom:758.773333pt;}
.yb0{bottom:762.693333pt;}
.y102{bottom:763.093333pt;}
.y64{bottom:763.893333pt;}
.y7{bottom:767.653333pt;}
.y38{bottom:771.973333pt;}
.yd7{bottom:772.613333pt;}
.y89{bottom:774.453333pt;}
.yaf{bottom:778.373333pt;}
.y101{bottom:778.693333pt;}
.y63{bottom:779.573333pt;}
.yd6{bottom:788.213333pt;}
.y88{bottom:790.053333pt;}
.y100{bottom:794.373333pt;}
.y62{bottom:795.173333pt;}
.y36{bottom:796.293333pt;}
.y6{bottom:799.653333pt;}
.yd5{bottom:803.893333pt;}
.y131{bottom:805.733333pt;}
.yae{bottom:809.973333pt;}
.y87{bottom:813.973333pt;}
.yd4{bottom:819.493333pt;}
.y35{bottom:820.533333pt;}
.y130{bottom:821.333333pt;}
.y61{bottom:824.533333pt;}
.yad{bottom:825.653333pt;}
.y5{bottom:831.653333pt;}
.y12f{bottom:836.933333pt;}
.yac{bottom:841.253333pt;}
.y33{bottom:844.853333pt;}
.y60{bottom:848.773333pt;}
.y86{bottom:856.853333pt;}
.y12e{bottom:860.853333pt;}
.y4{bottom:863.733333pt;}
.y85{bottom:872.533333pt;}
.y5f{bottom:873.093333pt;}
.y32{bottom:888.133333pt;}
.y5d{bottom:897.413333pt;}
.y3{bottom:897.760000pt;}
.y84{bottom:903.840000pt;}
.yff{bottom:904.160000pt;}
.y83{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.y5c{bottom:921.680000pt;}
.y82{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.y155{bottom:943.040000pt;}
.y5b{bottom:946.000000pt;}
.y81{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y154{bottom:958.720000pt;}
.y2e{bottom:966.720000pt;}
.y5a{bottom:970.320000pt;}
.y153{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.he{height:23.626667pt;}
.hb{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:54.187500pt;}
.h10{height:54.927899pt;}
.ha{height:55.631875pt;}
.hd{height:60.961875pt;}
.h4{height:63.128437pt;}
.h8{height:65.781915pt;}
.hf{height:72.288125pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:94.106667pt;}
.wd{width:102.986667pt;}
.w3{width:120.906667pt;}
.wb{width:141.920000pt;}
.w8{width:162.800000pt;}
.w6{width:172.640000pt;}
.w4{width:203.520000pt;}
.w5{width:237.386667pt;}
.wc{width:308.186667pt;}
.w7{width:309.706667pt;}
.w9{width:316.586667pt;}
.we{width:406.346667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.800000pt;}
.x1{left:60.480000pt;}
.x11{left:98.879988pt;}
.x4{left:115.440000pt;}
.xc{left:124.240000pt;}
.xf{left:142.000000pt;}
.x8{left:155.466667pt;}
.xa{left:156.986667pt;}
.x2{left:176.746655pt;}
.xd{left:219.066667pt;}
.x6{left:237.066667pt;}
.x10{left:245.626667pt;}
.xb{left:320.426667pt;}
.x9{left:328.826667pt;}
.xe{left:361.626667pt;}
.x7{left:441.226667pt;}
.x3{left:711.413322pt;}
}




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