
    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_a6a5cccf60e0c0d941ae3a32.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_1333430cb71cc4f364ea1fbf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_27e2c8172885f2b2d1970c55.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_127c7a03cb28c47579e36175.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_127fe618308e4474401d0f6d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_ee5e2af68ea44e22643cd404.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_25ac061d097317e69d3d4785.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_064993e68d206df81a2befad.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.666000px;}
.lsb{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.439920px;}
.ls11{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.513600px;}
.ls4{letter-spacing:0.666000px;}
.lsc{letter-spacing:0.900000px;}
.ls12{letter-spacing:2.340000px;}
.lsd{letter-spacing:4.500000px;}
.lsf{letter-spacing:6.660000px;}
.ls19{letter-spacing:8.820000px;}
.ls17{letter-spacing:16.506720px;}
.ls9{letter-spacing:41.706720px;}
.ls5{letter-spacing:44.586720px;}
.ls16{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.274000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-3.402240px;}
._b{margin-left:-2.334720px;}
._0{margin-left:-1.260000px;}
._10{width:1.214160px;}
._1{width:2.400000px;}
._1a{width:3.432720px;}
._13{width:4.522800px;}
._12{width:5.856480px;}
._15{width:7.096320px;}
._16{width:8.127360px;}
._17{width:9.382080px;}
._6{width:10.800000px;}
._19{width:11.952000px;}
._11{width:13.757160px;}
._1b{width:16.075440px;}
._18{width:17.688960px;}
._1e{width:18.924960px;}
._1f{width:20.620800px;}
._1d{width:25.517520px;}
._21{width:33.813360px;}
._20{width:34.837200px;}
._7{width:77.004960px;}
._1c{width:78.079680px;}
._8{width:154.080000px;}
._d{width:195.120000px;}
._2{width:255.692640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.526240px;}
._9{width:604.544160px;}
._e{width:653.880000px;}
._f{width:703.560000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yca{bottom:5.745000px;}
.yd8{bottom:5.760000px;}
.yeb{bottom:5.940000px;}
.ycd{bottom:6.105000px;}
.ydb{bottom:6.120000px;}
.yf{bottom:6.840000px;}
.y7{bottom:12.615000px;}
.y9{bottom:18.180000px;}
.ycc{bottom:25.905000px;}
.ydd{bottom:25.920000px;}
.yda{bottom:26.100000px;}
.ydf{bottom:26.145000px;}
.yd{bottom:36.180000px;}
.y6{bottom:40.515000px;}
.yc{bottom:57.960000px;}
.y5{bottom:68.595000px;}
.ye{bottom:75.420000px;}
.yb{bottom:80.280000px;}
.y4{bottom:96.525000px;}
.y102{bottom:102.960000px;}
.y13c{bottom:108.900000px;}
.y6a{bottom:110.700000px;}
.y129{bottom:112.680000px;}
.y3c{bottom:113.760000px;}
.yd7{bottom:114.120000px;}
.y94{bottom:116.280000px;}
.y14a{bottom:116.460000px;}
.yc4{bottom:123.120000px;}
.y2{bottom:125.850000px;}
.y13b{bottom:128.700000px;}
.y69{bottom:130.680000px;}
.y101{bottom:132.120000px;}
.y128{bottom:132.480000px;}
.y3b{bottom:133.740000px;}
.yd6{bottom:134.100000px;}
.y149{bottom:135.720000px;}
.y93{bottom:136.080000px;}
.yc3{bottom:142.920000px;}
.y13a{bottom:148.680000px;}
.y68{bottom:150.480000px;}
.y100{bottom:151.950000px;}
.y127{bottom:152.310000px;}
.y3a{bottom:153.570000px;}
.yd5{bottom:153.930000px;}
.y148{bottom:155.190000px;}
.y92{bottom:155.910000px;}
.yc2{bottom:162.750000px;}
.y139{bottom:168.510000px;}
.y126{bottom:172.110000px;}
.y39{bottom:173.370000px;}
.yd4{bottom:173.730000px;}
.y91{bottom:175.890000px;}
.y147{bottom:177.510000px;}
.y67{bottom:179.310000px;}
.yff{bottom:180.750000px;}
.yc1{bottom:182.550000px;}
.y138{bottom:188.310000px;}
.y125{bottom:191.910000px;}
.y38{bottom:193.170000px;}
.yd3{bottom:193.530000px;}
.y90{bottom:195.690000px;}
.y146{bottom:197.310000px;}
.y66{bottom:199.110000px;}
.yfe{bottom:200.730000px;}
.yc0{bottom:202.350000px;}
.ya2{bottom:208.110000px;}
.y124{bottom:211.890000px;}
.y37{bottom:212.970000px;}
.yd2{bottom:213.330000px;}
.y8f{bottom:215.490000px;}
.y145{bottom:217.110000px;}
.y65{bottom:218.910000px;}
.yfd{bottom:220.530000px;}
.ybf{bottom:222.330000px;}
.ya1{bottom:227.910000px;}
.y36{bottom:232.950000px;}
.yd1{bottom:233.310000px;}
.y8e{bottom:234.930000px;}
.y144{bottom:236.910000px;}
.y64{bottom:238.890000px;}
.yfc{bottom:240.330000px;}
.y123{bottom:240.690000px;}
.ybe{bottom:242.130000px;}
.ya0{bottom:247.890000px;}
.y35{bottom:252.750000px;}
.yd0{bottom:253.110000px;}
.y143{bottom:256.890000px;}
.y63{bottom:258.690000px;}
.yfb{bottom:260.130000px;}
.y122{bottom:260.490000px;}
.ybd{bottom:261.930000px;}
.y8d{bottom:264.090000px;}
.ycf{bottom:267.525000px;}
.y9f{bottom:267.690000px;}
.y34{bottom:272.550000px;}
.y142{bottom:276.690000px;}
.y62{bottom:278.490000px;}
.yfa{bottom:279.930000px;}
.y121{bottom:280.290000px;}
.ybc{bottom:281.730000px;}
.y8c{bottom:284.070000px;}
.y9e{bottom:287.490000px;}
.y33{bottom:292.350000px;}
.y141{bottom:296.490000px;}
.yf9{bottom:299.910000px;}
.y120{bottom:300.090000px;}
.ybb{bottom:301.530000px;}
.y8b{bottom:303.870000px;}
.y9d{bottom:306.930000px;}
.y61{bottom:307.290000px;}
.yce{bottom:308.025000px;}
.y32{bottom:312.150000px;}
.y140{bottom:316.290000px;}
.yf8{bottom:319.710000px;}
.y11f{bottom:320.070000px;}
.yba{bottom:321.510000px;}
.y8a{bottom:323.670000px;}
.y9c{bottom:326.730000px;}
.y60{bottom:327.090000px;}
.y31{bottom:332.130000px;}
.y13f{bottom:336.090000px;}
.y11e{bottom:339.870000px;}
.yb9{bottom:341.310000px;}
.y5f{bottom:347.070000px;}
.ycb{bottom:348.345000px;}
.yf7{bottom:348.510000px;}
.y30{bottom:351.930000px;}
.y89{bottom:352.470000px;}
.y13e{bottom:356.070000px;}
.y11d{bottom:359.670000px;}
.yb8{bottom:361.110000px;}
.y5e{bottom:366.870000px;}
.yf6{bottom:368.310000px;}
.y2f{bottom:371.730000px;}
.y88{bottom:372.270000px;}
.y13d{bottom:375.870000px;}
.yb7{bottom:380.910000px;}
.y9b{bottom:386.670000px;}
.yf5{bottom:387.750000px;}
.y11c{bottom:388.470000px;}
.yc9{bottom:388.845000px;}
.y2e{bottom:391.530000px;}
.y87{bottom:392.250000px;}
.y5d{bottom:395.670000px;}
.yb6{bottom:400.755000px;}
.y9a{bottom:406.515000px;}
.yf4{bottom:408.135000px;}
.y11b{bottom:408.315000px;}
.y2d{bottom:411.375000px;}
.y86{bottom:412.095000px;}
.yc8{bottom:415.155000px;}
.y5c{bottom:415.515000px;}
.yb5{bottom:420.735000px;}
.y99{bottom:426.315000px;}
.yf3{bottom:427.935000px;}
.y11a{bottom:428.295000px;}
.y2c{bottom:431.355000px;}
.y5b{bottom:435.315000px;}
.yb4{bottom:440.535000px;}
.y85{bottom:440.895000px;}
.y98{bottom:446.295000px;}
.yf2{bottom:447.735000px;}
.y119{bottom:448.095000px;}
.y2b{bottom:451.155000px;}
.y5a{bottom:455.295000px;}
.yb3{bottom:460.335000px;}
.y84{bottom:460.695000px;}
.y137{bottom:466.095000px;}
.yf1{bottom:467.535000px;}
.y118{bottom:467.895000px;}
.y2a{bottom:470.955000px;}
.y59{bottom:475.095000px;}
.yb2{bottom:480.135000px;}
.y83{bottom:480.495000px;}
.y136{bottom:485.895000px;}
.yf0{bottom:487.335000px;}
.y117{bottom:487.695000px;}
.y29{bottom:490.755000px;}
.y58{bottom:494.535000px;}
.y97{bottom:494.895000px;}
.yb1{bottom:499.935000px;}
.y82{bottom:500.475000px;}
.y135{bottom:505.695000px;}
.yef{bottom:507.315000px;}
.y116{bottom:507.495000px;}
.y28{bottom:510.555000px;}
.yc7{bottom:514.335000px;}
.y57{bottom:514.695000px;}
.yb0{bottom:519.915000px;}
.yee{bottom:521.715000px;}
.y134{bottom:525.495000px;}
.y115{bottom:527.475000px;}
.y81{bottom:529.275000px;}
.y27{bottom:530.175000px;}
.y56{bottom:534.135000px;}
.y96{bottom:534.495000px;}
.yaf{bottom:539.715000px;}
.y133{bottom:545.115000px;}
.y80{bottom:549.075000px;}
.y26{bottom:549.975000px;}
.y55{bottom:554.115000px;}
.y95{bottom:554.475000px;}
.y114{bottom:556.275000px;}
.yae{bottom:559.515000px;}
.yed{bottom:562.035000px;}
.y132{bottom:564.915000px;}
.y7f{bottom:568.875000px;}
.y25{bottom:570.135000px;}
.y54{bottom:574.275000px;}
.y113{bottom:576.075000px;}
.yad{bottom:579.315000px;}
.y131{bottom:585.075000px;}
.y7e{bottom:588.675000px;}
.y24{bottom:589.575000px;}
.y53{bottom:594.075000px;}
.y112{bottom:595.875000px;}
.yac{bottom:599.115000px;}
.yec{bottom:602.535000px;}
.y130{bottom:604.875000px;}
.y7d{bottom:608.655000px;}
.y23{bottom:609.735000px;}
.y52{bottom:613.875000px;}
.y111{bottom:615.675000px;}
.yab{bottom:619.095000px;}
.y12f{bottom:624.675000px;}
.y22{bottom:629.715000px;}
.y51{bottom:633.675000px;}
.y110{bottom:635.655000px;}
.y7c{bottom:637.455000px;}
.yaa{bottom:638.895000px;}
.yea{bottom:642.855000px;}
.y12e{bottom:644.655000px;}
.y21{bottom:649.545000px;}
.y50{bottom:653.685000px;}
.y10f{bottom:655.485000px;}
.y7b{bottom:657.285000px;}
.ya9{bottom:658.725000px;}
.y12d{bottom:664.485000px;}
.y20{bottom:669.345000px;}
.y4f{bottom:673.485000px;}
.y7a{bottom:677.085000px;}
.ya8{bottom:678.525000px;}
.y10e{bottom:684.285000px;}
.y1f{bottom:689.145000px;}
.ye9{bottom:689.505000px;}
.y4e{bottom:693.285000px;}
.y79{bottom:696.885000px;}
.ya7{bottom:698.325000px;}
.y10d{bottom:704.085000px;}
.y1e{bottom:708.945000px;}
.ye8{bottom:709.305000px;}
.y4d{bottom:713.085000px;}
.ya6{bottom:718.305000px;}
.y10c{bottom:723.525000px;}
.y12c{bottom:723.885000px;}
.y78{bottom:725.865000px;}
.y1d{bottom:728.925000px;}
.ye7{bottom:729.285000px;}
.y4c{bottom:732.885000px;}
.ya5{bottom:738.105000px;}
.y10b{bottom:743.505000px;}
.y12b{bottom:743.865000px;}
.y77{bottom:745.665000px;}
.y1c{bottom:748.725000px;}
.ye6{bottom:749.085000px;}
.y4b{bottom:752.865000px;}
.ya4{bottom:757.545000px;}
.y10a{bottom:763.665000px;}
.y76{bottom:765.465000px;}
.y1b{bottom:768.525000px;}
.ye5{bottom:768.885000px;}
.y4a{bottom:772.665000px;}
.ya3{bottom:774.105000px;}
.y12a{bottom:783.105000px;}
.y109{bottom:783.465000px;}
.y75{bottom:785.265000px;}
.y1a{bottom:788.325000px;}
.ye4{bottom:788.685000px;}
.y49{bottom:792.465000px;}
.y108{bottom:803.265000px;}
.y74{bottom:805.065000px;}
.y19{bottom:808.125000px;}
.ye3{bottom:808.485000px;}
.y48{bottom:812.265000px;}
.y107{bottom:823.065000px;}
.y73{bottom:824.685000px;}
.y18{bottom:828.105000px;}
.ye2{bottom:828.465000px;}
.y47{bottom:832.065000px;}
.y106{bottom:843.045000px;}
.y17{bottom:847.905000px;}
.ye1{bottom:848.265000px;}
.y46{bottom:852.045000px;}
.y72{bottom:853.845000px;}
.y105{bottom:862.845000px;}
.y16{bottom:867.705000px;}
.ye0{bottom:868.065000px;}
.y45{bottom:871.845000px;}
.y71{bottom:873.645000px;}
.yde{bottom:882.465000px;}
.y104{bottom:882.645000px;}
.y15{bottom:887.145000px;}
.y44{bottom:891.645000px;}
.y70{bottom:893.445000px;}
.y103{bottom:902.490000px;}
.y43{bottom:911.490000px;}
.y14{bottom:912.570000px;}
.y6f{bottom:922.290000px;}
.ydc{bottom:923.010000px;}
.y13{bottom:927.690000px;}
.yc6{bottom:930.930000px;}
.y42{bottom:931.290000px;}
.y6e{bottom:942.270000px;}
.y12{bottom:948.750000px;}
.yc5{bottom:950.910000px;}
.y41{bottom:951.270000px;}
.y6d{bottom:962.070000px;}
.yd9{bottom:963.330000px;}
.y40{bottom:971.070000px;}
.y11{bottom:972.150000px;}
.y6c{bottom:981.870000px;}
.y3f{bottom:990.870000px;}
.y10{bottom:1003.830000px;}
.y3e{bottom:1010.670000px;}
.y3d{bottom:1030.110000px;}
.y6b{bottom:1030.470000px;}
.ya{bottom:1047.930000px;}
.y3{bottom:1062.135000px;}
.y1{bottom:1062.150000px;}
.y8{bottom:1096.350000px;}
.h7{height:2.826563px;}
.h14{height:19.785000px;}
.h12{height:19.821000px;}
.h17{height:20.010000px;}
.ha{height:21.780000px;}
.h8{height:33.465000px;}
.he{height:38.158594px;}
.h13{height:39.585000px;}
.h15{height:39.765000px;}
.h16{height:39.802500px;}
.hf{height:41.726953px;}
.h11{height:58.621992px;}
.h9{height:58.651172px;}
.hd{height:60.226875px;}
.h10{height:61.423863px;}
.hb{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:90.703125px;}
.hc{height:96.508125px;}
.h6{height:112.530000px;}
.h2{height:146.736000px;}
.h4{height:146.745000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:9.900000px;}
.w9{width:52.230000px;}
.w11{width:72.165000px;}
.w10{width:72.396000px;}
.wd{width:77.025000px;}
.wc{width:77.205000px;}
.wb{width:77.256000px;}
.w7{width:78.105000px;}
.w6{width:78.156000px;}
.w12{width:79.725000px;}
.we{width:82.281000px;}
.w8{width:83.721000px;}
.w14{width:86.025000px;}
.w13{width:86.061000px;}
.w3{width:131.790000px;}
.wf{width:330.375000px;}
.w5{width:330.540000px;}
.wa{width:336.120000px;}
.w2{width:654.615000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.280000px;}
.xf{left:54.720000px;}
.x6{left:70.740000px;}
.xb{left:81.000000px;}
.xc{left:108.036000px;}
.x4{left:118.290000px;}
.xa{left:196.770000px;}
.x9{left:223.230000px;}
.x7{left:349.095000px;}
.x10{left:386.175000px;}
.xe{left:391.035000px;}
.x8{left:446.505000px;}
.x18{left:458.940000px;}
.x11{left:465.060000px;}
.x15{left:469.560000px;}
.x19{left:532.020000px;}
.x12{left:543.900000px;}
.x16{left:547.500000px;}
.x1a{left:612.480000px;}
.x13{left:622.920000px;}
.x17{left:625.260000px;}
.x1b{left:699.450000px;}
.x3{left:707.910000px;}
.xd{left:768.390000px;}
.x14{left:786.210000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.592000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.391040pt;}
.ls11{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.456533pt;}
.ls4{letter-spacing:0.592000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls12{letter-spacing:2.080000pt;}
.lsd{letter-spacing:4.000000pt;}
.lsf{letter-spacing:5.920000pt;}
.ls19{letter-spacing:7.840000pt;}
.ls17{letter-spacing:14.672640pt;}
.ls9{letter-spacing:37.072640pt;}
.ls5{letter-spacing:39.632640pt;}
.ls16{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.688000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-3.024213pt;}
._b{margin-left:-2.075307pt;}
._0{margin-left:-1.120000pt;}
._10{width:1.079253pt;}
._1{width:2.133333pt;}
._1a{width:3.051307pt;}
._13{width:4.020267pt;}
._12{width:5.205760pt;}
._15{width:6.307840pt;}
._16{width:7.224320pt;}
._17{width:8.339627pt;}
._6{width:9.600000pt;}
._19{width:10.624000pt;}
._11{width:12.228587pt;}
._1b{width:14.289280pt;}
._18{width:15.723520pt;}
._1e{width:16.822187pt;}
._1f{width:18.329600pt;}
._1d{width:22.682240pt;}
._21{width:30.056320pt;}
._20{width:30.966400pt;}
._7{width:68.448853pt;}
._1c{width:69.404160pt;}
._8{width:136.960000pt;}
._d{width:173.440000pt;}
._2{width:227.282347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:394.245547pt;}
._9{width:537.372587pt;}
._e{width:581.226667pt;}
._f{width:625.386667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:5.106667pt;}
.yd8{bottom:5.120000pt;}
.yeb{bottom:5.280000pt;}
.ycd{bottom:5.426667pt;}
.ydb{bottom:5.440000pt;}
.yf{bottom:6.080000pt;}
.y7{bottom:11.213333pt;}
.y9{bottom:16.160000pt;}
.ycc{bottom:23.026667pt;}
.ydd{bottom:23.040000pt;}
.yda{bottom:23.200000pt;}
.ydf{bottom:23.240000pt;}
.yd{bottom:32.160000pt;}
.y6{bottom:36.013333pt;}
.yc{bottom:51.520000pt;}
.y5{bottom:60.973333pt;}
.ye{bottom:67.040000pt;}
.yb{bottom:71.360000pt;}
.y4{bottom:85.800000pt;}
.y102{bottom:91.520000pt;}
.y13c{bottom:96.800000pt;}
.y6a{bottom:98.400000pt;}
.y129{bottom:100.160000pt;}
.y3c{bottom:101.120000pt;}
.yd7{bottom:101.440000pt;}
.y94{bottom:103.360000pt;}
.y14a{bottom:103.520000pt;}
.yc4{bottom:109.440000pt;}
.y2{bottom:111.866667pt;}
.y13b{bottom:114.400000pt;}
.y69{bottom:116.160000pt;}
.y101{bottom:117.440000pt;}
.y128{bottom:117.760000pt;}
.y3b{bottom:118.880000pt;}
.yd6{bottom:119.200000pt;}
.y149{bottom:120.640000pt;}
.y93{bottom:120.960000pt;}
.yc3{bottom:127.040000pt;}
.y13a{bottom:132.160000pt;}
.y68{bottom:133.760000pt;}
.y100{bottom:135.066667pt;}
.y127{bottom:135.386667pt;}
.y3a{bottom:136.506667pt;}
.yd5{bottom:136.826667pt;}
.y148{bottom:137.946667pt;}
.y92{bottom:138.586667pt;}
.yc2{bottom:144.666667pt;}
.y139{bottom:149.786667pt;}
.y126{bottom:152.986667pt;}
.y39{bottom:154.106667pt;}
.yd4{bottom:154.426667pt;}
.y91{bottom:156.346667pt;}
.y147{bottom:157.786667pt;}
.y67{bottom:159.386667pt;}
.yff{bottom:160.666667pt;}
.yc1{bottom:162.266667pt;}
.y138{bottom:167.386667pt;}
.y125{bottom:170.586667pt;}
.y38{bottom:171.706667pt;}
.yd3{bottom:172.026667pt;}
.y90{bottom:173.946667pt;}
.y146{bottom:175.386667pt;}
.y66{bottom:176.986667pt;}
.yfe{bottom:178.426667pt;}
.yc0{bottom:179.866667pt;}
.ya2{bottom:184.986667pt;}
.y124{bottom:188.346667pt;}
.y37{bottom:189.306667pt;}
.yd2{bottom:189.626667pt;}
.y8f{bottom:191.546667pt;}
.y145{bottom:192.986667pt;}
.y65{bottom:194.586667pt;}
.yfd{bottom:196.026667pt;}
.ybf{bottom:197.626667pt;}
.ya1{bottom:202.586667pt;}
.y36{bottom:207.066667pt;}
.yd1{bottom:207.386667pt;}
.y8e{bottom:208.826667pt;}
.y144{bottom:210.586667pt;}
.y64{bottom:212.346667pt;}
.yfc{bottom:213.626667pt;}
.y123{bottom:213.946667pt;}
.ybe{bottom:215.226667pt;}
.ya0{bottom:220.346667pt;}
.y35{bottom:224.666667pt;}
.yd0{bottom:224.986667pt;}
.y143{bottom:228.346667pt;}
.y63{bottom:229.946667pt;}
.yfb{bottom:231.226667pt;}
.y122{bottom:231.546667pt;}
.ybd{bottom:232.826667pt;}
.y8d{bottom:234.746667pt;}
.ycf{bottom:237.800000pt;}
.y9f{bottom:237.946667pt;}
.y34{bottom:242.266667pt;}
.y142{bottom:245.946667pt;}
.y62{bottom:247.546667pt;}
.yfa{bottom:248.826667pt;}
.y121{bottom:249.146667pt;}
.ybc{bottom:250.426667pt;}
.y8c{bottom:252.506667pt;}
.y9e{bottom:255.546667pt;}
.y33{bottom:259.866667pt;}
.y141{bottom:263.546667pt;}
.yf9{bottom:266.586667pt;}
.y120{bottom:266.746667pt;}
.ybb{bottom:268.026667pt;}
.y8b{bottom:270.106667pt;}
.y9d{bottom:272.826667pt;}
.y61{bottom:273.146667pt;}
.yce{bottom:273.800000pt;}
.y32{bottom:277.466667pt;}
.y140{bottom:281.146667pt;}
.yf8{bottom:284.186667pt;}
.y11f{bottom:284.506667pt;}
.yba{bottom:285.786667pt;}
.y8a{bottom:287.706667pt;}
.y9c{bottom:290.426667pt;}
.y60{bottom:290.746667pt;}
.y31{bottom:295.226667pt;}
.y13f{bottom:298.746667pt;}
.y11e{bottom:302.106667pt;}
.yb9{bottom:303.386667pt;}
.y5f{bottom:308.506667pt;}
.ycb{bottom:309.640000pt;}
.yf7{bottom:309.786667pt;}
.y30{bottom:312.826667pt;}
.y89{bottom:313.306667pt;}
.y13e{bottom:316.506667pt;}
.y11d{bottom:319.706667pt;}
.yb8{bottom:320.986667pt;}
.y5e{bottom:326.106667pt;}
.yf6{bottom:327.386667pt;}
.y2f{bottom:330.426667pt;}
.y88{bottom:330.906667pt;}
.y13d{bottom:334.106667pt;}
.yb7{bottom:338.586667pt;}
.y9b{bottom:343.706667pt;}
.yf5{bottom:344.666667pt;}
.y11c{bottom:345.306667pt;}
.yc9{bottom:345.640000pt;}
.y2e{bottom:348.026667pt;}
.y87{bottom:348.666667pt;}
.y5d{bottom:351.706667pt;}
.yb6{bottom:356.226667pt;}
.y9a{bottom:361.346667pt;}
.yf4{bottom:362.786667pt;}
.y11b{bottom:362.946667pt;}
.y2d{bottom:365.666667pt;}
.y86{bottom:366.306667pt;}
.yc8{bottom:369.026667pt;}
.y5c{bottom:369.346667pt;}
.yb5{bottom:373.986667pt;}
.y99{bottom:378.946667pt;}
.yf3{bottom:380.386667pt;}
.y11a{bottom:380.706667pt;}
.y2c{bottom:383.426667pt;}
.y5b{bottom:386.946667pt;}
.yb4{bottom:391.586667pt;}
.y85{bottom:391.906667pt;}
.y98{bottom:396.706667pt;}
.yf2{bottom:397.986667pt;}
.y119{bottom:398.306667pt;}
.y2b{bottom:401.026667pt;}
.y5a{bottom:404.706667pt;}
.yb3{bottom:409.186667pt;}
.y84{bottom:409.506667pt;}
.y137{bottom:414.306667pt;}
.yf1{bottom:415.586667pt;}
.y118{bottom:415.906667pt;}
.y2a{bottom:418.626667pt;}
.y59{bottom:422.306667pt;}
.yb2{bottom:426.786667pt;}
.y83{bottom:427.106667pt;}
.y136{bottom:431.906667pt;}
.yf0{bottom:433.186667pt;}
.y117{bottom:433.506667pt;}
.y29{bottom:436.226667pt;}
.y58{bottom:439.586667pt;}
.y97{bottom:439.906667pt;}
.yb1{bottom:444.386667pt;}
.y82{bottom:444.866667pt;}
.y135{bottom:449.506667pt;}
.yef{bottom:450.946667pt;}
.y116{bottom:451.106667pt;}
.y28{bottom:453.826667pt;}
.yc7{bottom:457.186667pt;}
.y57{bottom:457.506667pt;}
.yb0{bottom:462.146667pt;}
.yee{bottom:463.746667pt;}
.y134{bottom:467.106667pt;}
.y115{bottom:468.866667pt;}
.y81{bottom:470.466667pt;}
.y27{bottom:471.266667pt;}
.y56{bottom:474.786667pt;}
.y96{bottom:475.106667pt;}
.yaf{bottom:479.746667pt;}
.y133{bottom:484.546667pt;}
.y80{bottom:488.066667pt;}
.y26{bottom:488.866667pt;}
.y55{bottom:492.546667pt;}
.y95{bottom:492.866667pt;}
.y114{bottom:494.466667pt;}
.yae{bottom:497.346667pt;}
.yed{bottom:499.586667pt;}
.y132{bottom:502.146667pt;}
.y7f{bottom:505.666667pt;}
.y25{bottom:506.786667pt;}
.y54{bottom:510.466667pt;}
.y113{bottom:512.066667pt;}
.yad{bottom:514.946667pt;}
.y131{bottom:520.066667pt;}
.y7e{bottom:523.266667pt;}
.y24{bottom:524.066667pt;}
.y53{bottom:528.066667pt;}
.y112{bottom:529.666667pt;}
.yac{bottom:532.546667pt;}
.yec{bottom:535.586667pt;}
.y130{bottom:537.666667pt;}
.y7d{bottom:541.026667pt;}
.y23{bottom:541.986667pt;}
.y52{bottom:545.666667pt;}
.y111{bottom:547.266667pt;}
.yab{bottom:550.306667pt;}
.y12f{bottom:555.266667pt;}
.y22{bottom:559.746667pt;}
.y51{bottom:563.266667pt;}
.y110{bottom:565.026667pt;}
.y7c{bottom:566.626667pt;}
.yaa{bottom:567.906667pt;}
.yea{bottom:571.426667pt;}
.y12e{bottom:573.026667pt;}
.y21{bottom:577.373333pt;}
.y50{bottom:581.053333pt;}
.y10f{bottom:582.653333pt;}
.y7b{bottom:584.253333pt;}
.ya9{bottom:585.533333pt;}
.y12d{bottom:590.653333pt;}
.y20{bottom:594.973333pt;}
.y4f{bottom:598.653333pt;}
.y7a{bottom:601.853333pt;}
.ya8{bottom:603.133333pt;}
.y10e{bottom:608.253333pt;}
.y1f{bottom:612.573333pt;}
.ye9{bottom:612.893333pt;}
.y4e{bottom:616.253333pt;}
.y79{bottom:619.453333pt;}
.ya7{bottom:620.733333pt;}
.y10d{bottom:625.853333pt;}
.y1e{bottom:630.173333pt;}
.ye8{bottom:630.493333pt;}
.y4d{bottom:633.853333pt;}
.ya6{bottom:638.493333pt;}
.y10c{bottom:643.133333pt;}
.y12c{bottom:643.453333pt;}
.y78{bottom:645.213333pt;}
.y1d{bottom:647.933333pt;}
.ye7{bottom:648.253333pt;}
.y4c{bottom:651.453333pt;}
.ya5{bottom:656.093333pt;}
.y10b{bottom:660.893333pt;}
.y12b{bottom:661.213333pt;}
.y77{bottom:662.813333pt;}
.y1c{bottom:665.533333pt;}
.ye6{bottom:665.853333pt;}
.y4b{bottom:669.213333pt;}
.ya4{bottom:673.373333pt;}
.y10a{bottom:678.813333pt;}
.y76{bottom:680.413333pt;}
.y1b{bottom:683.133333pt;}
.ye5{bottom:683.453333pt;}
.y4a{bottom:686.813333pt;}
.ya3{bottom:688.093333pt;}
.y12a{bottom:696.093333pt;}
.y109{bottom:696.413333pt;}
.y75{bottom:698.013333pt;}
.y1a{bottom:700.733333pt;}
.ye4{bottom:701.053333pt;}
.y49{bottom:704.413333pt;}
.y108{bottom:714.013333pt;}
.y74{bottom:715.613333pt;}
.y19{bottom:718.333333pt;}
.ye3{bottom:718.653333pt;}
.y48{bottom:722.013333pt;}
.y107{bottom:731.613333pt;}
.y73{bottom:733.053333pt;}
.y18{bottom:736.093333pt;}
.ye2{bottom:736.413333pt;}
.y47{bottom:739.613333pt;}
.y106{bottom:749.373333pt;}
.y17{bottom:753.693333pt;}
.ye1{bottom:754.013333pt;}
.y46{bottom:757.373333pt;}
.y72{bottom:758.973333pt;}
.y105{bottom:766.973333pt;}
.y16{bottom:771.293333pt;}
.ye0{bottom:771.613333pt;}
.y45{bottom:774.973333pt;}
.y71{bottom:776.573333pt;}
.yde{bottom:784.413333pt;}
.y104{bottom:784.573333pt;}
.y15{bottom:788.573333pt;}
.y44{bottom:792.573333pt;}
.y70{bottom:794.173333pt;}
.y103{bottom:802.213333pt;}
.y43{bottom:810.213333pt;}
.y14{bottom:811.173333pt;}
.y6f{bottom:819.813333pt;}
.ydc{bottom:820.453333pt;}
.y13{bottom:824.613333pt;}
.yc6{bottom:827.493333pt;}
.y42{bottom:827.813333pt;}
.y6e{bottom:837.573333pt;}
.y12{bottom:843.333333pt;}
.yc5{bottom:845.253333pt;}
.y41{bottom:845.573333pt;}
.y6d{bottom:855.173333pt;}
.yd9{bottom:856.293333pt;}
.y40{bottom:863.173333pt;}
.y11{bottom:864.133333pt;}
.y6c{bottom:872.773333pt;}
.y3f{bottom:880.773333pt;}
.y10{bottom:892.293333pt;}
.y3e{bottom:898.373333pt;}
.y3d{bottom:915.653333pt;}
.y6b{bottom:915.973333pt;}
.ya{bottom:931.493333pt;}
.y3{bottom:944.120000pt;}
.y1{bottom:944.133333pt;}
.y8{bottom:974.533333pt;}
.h7{height:2.512500pt;}
.h14{height:17.586667pt;}
.h12{height:17.618667pt;}
.h17{height:17.786667pt;}
.ha{height:19.360000pt;}
.h8{height:29.746667pt;}
.he{height:33.918750pt;}
.h13{height:35.186667pt;}
.h15{height:35.346667pt;}
.h16{height:35.380000pt;}
.hf{height:37.090625pt;}
.h11{height:52.108438pt;}
.h9{height:52.134375pt;}
.hd{height:53.535000pt;}
.h10{height:54.598989pt;}
.hb{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:80.625000pt;}
.hc{height:85.785000pt;}
.h6{height:100.026667pt;}
.h2{height:130.432000pt;}
.h4{height:130.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:8.800000pt;}
.w9{width:46.426667pt;}
.w11{width:64.146667pt;}
.w10{width:64.352000pt;}
.wd{width:68.466667pt;}
.wc{width:68.626667pt;}
.wb{width:68.672000pt;}
.w7{width:69.426667pt;}
.w6{width:69.472000pt;}
.w12{width:70.866667pt;}
.we{width:73.138667pt;}
.w8{width:74.418667pt;}
.w14{width:76.466667pt;}
.w13{width:76.498667pt;}
.w3{width:117.146667pt;}
.wf{width:293.666667pt;}
.w5{width:293.813333pt;}
.wa{width:298.773333pt;}
.w2{width:581.880000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.360000pt;}
.xf{left:48.640000pt;}
.x6{left:62.880000pt;}
.xb{left:72.000000pt;}
.xc{left:96.032000pt;}
.x4{left:105.146667pt;}
.xa{left:174.906667pt;}
.x9{left:198.426667pt;}
.x7{left:310.306667pt;}
.x10{left:343.266667pt;}
.xe{left:347.586667pt;}
.x8{left:396.893333pt;}
.x18{left:407.946667pt;}
.x11{left:413.386667pt;}
.x15{left:417.386667pt;}
.x19{left:472.906667pt;}
.x12{left:483.466667pt;}
.x16{left:486.666667pt;}
.x1a{left:544.426667pt;}
.x13{left:553.706667pt;}
.x17{left:555.786667pt;}
.x1b{left:621.733333pt;}
.x3{left:629.253333pt;}
.xd{left:683.013333pt;}
.x14{left:698.853333pt;}
.x5{left:737.120000pt;}
}




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