
    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_74555f54eddd715082588e90.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_f9296ea2cc613ec1295e9339.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_ec6468f452382e7d496260a2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_c217a9fde496f3af2b342305.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a304e4a442d8558c23c89c03.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_47ea7675a583713e420e2b14.woff')format("woff");}.ff7{font-family:ff7;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;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.160800px;}
.ls15{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.084000px;}
.ls11{letter-spacing:-0.013320px;}
.ls16{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls12{letter-spacing:0.033120px;}
.lsc{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.060480px;}
.ls17{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.116400px;}
.ls1b{letter-spacing:0.127200px;}
.ls18{letter-spacing:0.133200px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.160800px;}
.lse{letter-spacing:0.173400px;}
.ls1d{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:9.360000px;}
.ls1c{letter-spacing:47.726640px;}
.ls1a{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;}
.ws8{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.387200px;}
.ws14{word-spacing:-13.353600px;}
.wsd{word-spacing:-13.342800px;}
.wsf{word-spacing:-13.300800px;}
.ws12{word-spacing:-13.287000px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.218840px;}
.wsa{word-spacing:-13.213080px;}
.ws11{word-spacing:-13.141800px;}
.wse{word-spacing:-13.072800px;}
.ws13{word-spacing:-13.065600px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsc{word-spacing:-8.586720px;}
.wsb{word-spacing:-8.553600px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._5{margin-left:-3.542880px;}
._e{margin-left:-2.501604px;}
._0{margin-left:-1.110000px;}
._3{width:1.078884px;}
._9{width:2.464800px;}
._a{width:3.486398px;}
._d{width:4.749600px;}
._10{width:6.011880px;}
._6{width:7.214400px;}
._7{width:8.657400px;}
._f{width:9.862836px;}
._15{width:11.066520px;}
._13{width:12.079680px;}
._4{width:13.176000px;}
._8{width:14.428800px;}
._11{width:15.631200px;}
._c{width:17.044440px;}
._b{width:18.110880px;}
._12{width:19.208880px;}
._14{width:20.350080px;}
._16{width:21.435480px;}
._26{width:22.549440px;}
._25{width:23.927760px;}
._24{width:25.009920px;}
._1a{width:28.256400px;}
._22{width:31.142160px;}
._2{width:34.260696px;}
._1{width:35.409000px;}
._29{width:43.430280px;}
._28{width:44.548920px;}
._27{width:48.216240px;}
._21{width:51.222240px;}
._19{width:53.025840px;}
._20{width:56.873520px;}
._23{width:75.630960px;}
._1d{width:93.606840px;}
._18{width:107.675280px;}
._1f{width:128.656800px;}
._1c{width:163.105560px;}
._1e{width:180.961200px;}
._17{width:206.271720px;}
._1b{width:237.474000px;}
.fc2{color:transparent;}
.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;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ye6{bottom:2.700000px;}
.y96{bottom:7.830000px;}
.yde{bottom:7.860000px;}
.y9a{bottom:7.920000px;}
.ybf{bottom:12.330000px;}
.ya4{bottom:25.380000px;}
.y95{bottom:25.470000px;}
.ydd{bottom:25.500000px;}
.ybe{bottom:29.880000px;}
.y99{bottom:29.970000px;}
.yc7{bottom:30.690000px;}
.yd6{bottom:43.020000px;}
.ya1{bottom:44.910000px;}
.y98{bottom:47.520000px;}
.ybd{bottom:52.020000px;}
.ya0{bottom:52.740000px;}
.ycb{bottom:52.830000px;}
.yc2{bottom:69.570000px;}
.y97{bottom:69.660000px;}
.y9c{bottom:70.380000px;}
.y2{bottom:73.380000px;}
.ybc{bottom:74.070000px;}
.y28{bottom:74.190000px;}
.yc1{bottom:91.710000px;}
.y93{bottom:92.430000px;}
.ybb{bottom:96.210000px;}
.y1{bottom:101.640000px;}
.y5c{bottom:113.340000px;}
.yc0{bottom:113.760000px;}
.y11c{bottom:114.240000px;}
.y92{bottom:114.570000px;}
.y158{bottom:116.940000px;}
.yba{bottom:118.260000px;}
.y136{bottom:121.980000px;}
.ya6{bottom:122.070000px;}
.y5b{bottom:130.980000px;}
.y11b{bottom:131.790000px;}
.yd4{bottom:132.930000px;}
.y157{bottom:134.580000px;}
.yb9{bottom:135.810000px;}
.y135{bottom:139.620000px;}
.y26{bottom:139.890000px;}
.yc9{bottom:143.580000px;}
.y5a{bottom:148.530000px;}
.y8b{bottom:148.980000px;}
.y11a{bottom:149.340000px;}
.y156{bottom:152.130000px;}
.y134{bottom:157.170000px;}
.y25{bottom:157.440000px;}
.yb8{bottom:157.950000px;}
.y59{bottom:166.170000px;}
.y8a{bottom:166.530000px;}
.y119{bottom:166.980000px;}
.ya5{bottom:167.070000px;}
.y15f{bottom:169.680000px;}
.ye5{bottom:178.680000px;}
.yb7{bottom:180.000000px;}
.y58{bottom:183.720000px;}
.y89{bottom:184.170000px;}
.y24{bottom:184.350000px;}
.y118{bottom:184.530000px;}
.yca{bottom:188.580000px;}
.ye4{bottom:193.530000px;}
.y155{bottom:196.320000px;}
.y57{bottom:201.270000px;}
.y133{bottom:201.360000px;}
.y88{bottom:201.720000px;}
.yb6{bottom:202.140000px;}
.y117{bottom:202.170000px;}
.ya2{bottom:211.980000px;}
.y154{bottom:213.870000px;}
.y56{bottom:218.910000px;}
.y87{bottom:219.270000px;}
.y116{bottom:219.720000px;}
.yb5{bottom:224.190000px;}
.y15e{bottom:231.510000px;}
.y23{bottom:232.590000px;}
.yc6{bottom:233.490000px;}
.y55{bottom:236.460000px;}
.y86{bottom:236.910000px;}
.ye3{bottom:238.440000px;}
.y153{bottom:240.510000px;}
.y132{bottom:245.550000px;}
.y22{bottom:250.500000px;}
.y85{bottom:254.460000px;}
.y115{bottom:255.270000px;}
.ya3{bottom:256.890000px;}
.y152{bottom:258.060000px;}
.y131{bottom:263.100000px;}
.y54{bottom:263.370000px;}
.y84{bottom:272.100000px;}
.y114{bottom:272.910000px;}
.y151{bottom:275.610000px;}
.yc8{bottom:278.400000px;}
.ye2{bottom:283.350000px;}
.y21{bottom:287.580000px;}
.y83{bottom:289.650000px;}
.y130{bottom:290.010000px;}
.y113{bottom:290.460000px;}
.y15d{bottom:293.250000px;}
.y9e{bottom:301.800000px;}
.y150{bottom:302.250000px;}
.y20{bottom:305.130000px;}
.y82{bottom:307.200000px;}
.y112{bottom:308.100000px;}
.y53{bottom:311.610000px;}
.y14f{bottom:319.800000px;}
.y1f{bottom:322.770000px;}
.yc4{bottom:323.310000px;}
.y81{bottom:324.840000px;}
.y111{bottom:325.650000px;}
.ye1{bottom:328.260000px;}
.y52{bottom:329.250000px;}
.y14e{bottom:337.440000px;}
.y12f{bottom:338.250000px;}
.y1e{bottom:340.320000px;}
.y80{bottom:342.390000px;}
.y110{bottom:343.200000px;}
.y9f{bottom:346.710000px;}
.y51{bottom:346.800000px;}
.y15c{bottom:354.990000px;}
.y7f{bottom:359.940000px;}
.y10f{bottom:360.840000px;}
.y14d{bottom:363.990000px;}
.y50{bottom:364.440000px;}
.y12e{bottom:365.160000px;}
.ye0{bottom:373.260000px;}
.y1d{bottom:375.870000px;}
.y10e{bottom:378.390000px;}
.y14c{bottom:381.540000px;}
.y9b{bottom:391.620000px;}
.y1c{bottom:393.510000px;}
.y7e{bottom:395.580000px;}
.y10d{bottom:395.940000px;}
.y14b{bottom:399.180000px;}
.y4f{bottom:399.990000px;}
.y12d{bottom:402.240000px;}
.y1b{bottom:411.060000px;}
.yc5{bottom:412.410000px;}
.y7d{bottom:413.130000px;}
.y4e{bottom:417.540000px;}
.ydf{bottom:418.170000px;}
.y12c{bottom:419.790000px;}
.y14a{bottom:425.730000px;}
.y1a{bottom:428.700000px;}
.y7c{bottom:430.770000px;}
.y10c{bottom:431.580000px;}
.y4d{bottom:435.180000px;}
.y9d{bottom:436.530000px;}
.y12b{bottom:437.340000px;}
.y149{bottom:443.370000px;}
.y19{bottom:446.250000px;}
.y7b{bottom:448.320000px;}
.y10b{bottom:449.130000px;}
.y4c{bottom:452.730000px;}
.y12a{bottom:454.980000px;}
.y148{bottom:460.920000px;}
.ydc{bottom:463.080000px;}
.y18{bottom:463.800000px;}
.y7a{bottom:465.870000px;}
.y10a{bottom:466.770000px;}
.y4b{bottom:470.400000px;}
.yc3{bottom:478.680000px;}
.y17{bottom:481.470000px;}
.y129{bottom:481.920000px;}
.y79{bottom:483.540000px;}
.y109{bottom:484.350000px;}
.y147{bottom:487.500000px;}
.y4a{bottom:487.950000px;}
.y16{bottom:499.020000px;}
.y78{bottom:501.090000px;}
.y108{bottom:501.900000px;}
.yb4{bottom:502.710000px;}
.y146{bottom:505.140000px;}
.y49{bottom:505.500000px;}
.ydb{bottom:508.020000px;}
.y91{bottom:508.830000px;}
.y77{bottom:518.730000px;}
.y128{bottom:518.910000px;}
.y107{bottom:519.540000px;}
.y145{bottom:522.690000px;}
.y48{bottom:523.140000px;}
.y15{bottom:534.660000px;}
.y76{bottom:536.280000px;}
.y106{bottom:537.090000px;}
.y47{bottom:540.690000px;}
.y127{bottom:545.820000px;}
.y144{bottom:549.330000px;}
.y14{bottom:552.210000px;}
.yda{bottom:552.930000px;}
.y75{bottom:553.830000px;}
.y105{bottom:554.730000px;}
.y46{bottom:558.330000px;}
.y143{bottom:566.880000px;}
.y13{bottom:569.760000px;}
.y104{bottom:572.280000px;}
.y45{bottom:575.880000px;}
.y74{bottom:580.740000px;}
.y126{bottom:582.900000px;}
.y142{bottom:584.430000px;}
.y12{bottom:587.400000px;}
.y103{bottom:589.830000px;}
.y44{bottom:593.430000px;}
.yd9{bottom:597.840000px;}
.y94{bottom:597.930000px;}
.y11{bottom:604.950000px;}
.y102{bottom:607.470000px;}
.y125{bottom:609.720000px;}
.y43{bottom:611.070000px;}
.y10{bottom:622.590000px;}
.y42{bottom:628.620000px;}
.y73{bottom:629.070000px;}
.yf{bottom:640.140000px;}
.yd8{bottom:642.750000px;}
.y101{bottom:643.020000px;}
.y41{bottom:646.260000px;}
.y72{bottom:646.620000px;}
.y124{bottom:647.070000px;}
.y100{bottom:660.660000px;}
.y40{bottom:663.810000px;}
.y71{bottom:664.260000px;}
.ye{bottom:675.690000px;}
.yff{bottom:678.210000px;}
.y70{bottom:681.810000px;}
.yd3{bottom:687.660000px;}
.y141{bottom:690.360000px;}
.yd{bottom:693.330000px;}
.y123{bottom:695.400000px;}
.yfe{bottom:695.760000px;}
.y3f{bottom:699.360000px;}
.y90{bottom:699.810000px;}
.y140{bottom:708.000000px;}
.yc{bottom:710.880000px;}
.y122{bottom:712.950000px;}
.yfd{bottom:713.400000px;}
.y3e{bottom:717.000000px;}
.y8f{bottom:717.360000px;}
.y13f{bottom:725.550000px;}
.y121{bottom:730.590000px;}
.yfc{bottom:730.950000px;}
.yd7{bottom:732.660000px;}
.y3d{bottom:734.550000px;}
.y6f{bottom:735.000000px;}
.yb{bottom:737.790000px;}
.yb3{bottom:746.340000px;}
.y120{bottom:748.140000px;}
.yfb{bottom:748.590000px;}
.y3c{bottom:752.190000px;}
.y6e{bottom:752.550000px;}
.yfa{bottom:766.140000px;}
.y3b{bottom:769.740000px;}
.y6d{bottom:770.190000px;}
.yb2{bottom:773.700000px;}
.y11f{bottom:775.050000px;}
.yd5{bottom:777.570000px;}
.yf9{bottom:783.690000px;}
.ya{bottom:786.030000px;}
.y3a{bottom:787.290000px;}
.y6c{bottom:787.740000px;}
.y15b{bottom:796.290000px;}
.yf8{bottom:801.330000px;}
.y39{bottom:804.930000px;}
.y6b{bottom:805.290000px;}
.y8e{bottom:805.740000px;}
.y13e{bottom:813.930000px;}
.yb1{bottom:818.610000px;}
.yf7{bottom:818.880000px;}
.y9{bottom:821.850000px;}
.y6a{bottom:822.930000px;}
.y8d{bottom:823.290000px;}
.y13d{bottom:831.480000px;}
.yf6{bottom:836.520000px;}
.yd2{bottom:840.030000px;}
.y38{bottom:840.480000px;}
.y8c{bottom:840.930000px;}
.yb0{bottom:845.970000px;}
.y15a{bottom:849.030000px;}
.yf5{bottom:854.070000px;}
.y8{bottom:857.850000px;}
.y37{bottom:858.030000px;}
.y69{bottom:858.480000px;}
.yf4{bottom:871.620000px;}
.yaf{bottom:873.330000px;}
.y36{bottom:875.670000px;}
.y68{bottom:876.030000px;}
.yd1{bottom:884.940000px;}
.yf3{bottom:889.260000px;}
.y35{bottom:893.220000px;}
.y67{bottom:893.670000px;}
.y7{bottom:893.850000px;}
.y34{bottom:910.860000px;}
.y66{bottom:911.220000px;}
.yae{bottom:918.240000px;}
.yf2{bottom:924.810000px;}
.y33{bottom:928.410000px;}
.y65{bottom:928.860000px;}
.yd0{bottom:929.850000px;}
.y6{bottom:929.940000px;}
.y13c{bottom:937.410000px;}
.yf1{bottom:942.450000px;}
.yad{bottom:945.600000px;}
.y32{bottom:945.960000px;}
.y64{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y13b{bottom:954.960000px;}
.yf0{bottom:960.000000px;}
.y31{bottom:963.600000px;}
.y63{bottom:963.960000px;}
.y13a{bottom:972.600000px;}
.yac{bottom:972.870000px;}
.ycf{bottom:974.850000px;}
.yef{bottom:977.550000px;}
.y30{bottom:981.150000px;}
.y11e{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.yee{bottom:995.190000px;}
.y11d{bottom:999.150000px;}
.y62{bottom:999.600000px;}
.yab{bottom:1000.230000px;}
.y3{bottom:1012.320000px;}
.yed{bottom:1012.770000px;}
.y2f{bottom:1016.820000px;}
.y61{bottom:1017.180000px;}
.yce{bottom:1019.790000px;}
.yaa{bottom:1027.620000px;}
.yec{bottom:1030.320000px;}
.y2e{bottom:1034.370000px;}
.y60{bottom:1034.820000px;}
.y139{bottom:1043.370000px;}
.yeb{bottom:1047.960000px;}
.y2d{bottom:1051.920000px;}
.y5f{bottom:1052.370000px;}
.ya9{bottom:1054.890000px;}
.y138{bottom:1060.920000px;}
.ycd{bottom:1064.700000px;}
.yea{bottom:1065.510000px;}
.y2c{bottom:1069.560000px;}
.y5e{bottom:1069.920000px;}
.y137{bottom:1078.560000px;}
.ye9{bottom:1083.150000px;}
.y5d{bottom:1087.560000px;}
.y159{bottom:1096.110000px;}
.ya8{bottom:1099.890000px;}
.ye8{bottom:1100.700000px;}
.y2b{bottom:1105.110000px;}
.ycc{bottom:1109.610000px;}
.y2a{bottom:1122.750000px;}
.ya7{bottom:1127.160000px;}
.ye7{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h19{height:14.130000px;}
.h13{height:26.550000px;}
.h14{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h1a{height:41.661211px;}
.h12{height:44.100000px;}
.h16{height:44.130000px;}
.hc{height:44.190000px;}
.h10{height:44.220000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.h18{height:61.740000px;}
.h1b{height:61.793886px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.hd{height:88.380000px;}
.h11{height:89.100000px;}
.hf{height:89.130000px;}
.hb{height:133.290000px;}
.h17{height:151.650000px;}
.h15{height:242.910000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1f{width:47.160000px;}
.wf{width:53.550000px;}
.w10{width:57.180000px;}
.w8{width:59.400000px;}
.w20{width:63.210000px;}
.w19{width:63.270000px;}
.w9{width:75.150000px;}
.w4{width:75.780000px;}
.we{width:76.590000px;}
.w1e{width:77.850000px;}
.w1b{width:78.150000px;}
.wc{width:83.070000px;}
.w15{width:83.430000px;}
.w1a{width:83.520000px;}
.w1d{width:83.700000px;}
.w1c{width:84.960000px;}
.wb{width:85.170000px;}
.wd{width:92.880000px;}
.wa{width:94.050000px;}
.w3{width:111.090000px;}
.w14{width:111.180000px;}
.w18{width:162.360000px;}
.w17{width:163.920000px;}
.w16{width:167.760000px;}
.w6{width:168.600000px;}
.w5{width:169.560000px;}
.w7{width:169.830000px;}
.w13{width:229.590000px;}
.w12{width:526.110000px;}
.w21{width:755.700000px;}
.w11{width:756.060000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:1.710000px;}
.xe{left:3.960000px;}
.x1{left:68.040000px;}
.x16{left:107.580000px;}
.x17{left:111.239987px;}
.x15{left:116.730000px;}
.xd{left:122.670000px;}
.x5{left:180.210000px;}
.x2{left:192.719987px;}
.x6{left:256.350000px;}
.xf{left:264.900000px;}
.xa{left:331.860000px;}
.x13{left:349.140000px;}
.x7{left:426.270000px;}
.x10{left:433.380000px;}
.xb{left:511.800000px;}
.x8{left:595.230000px;}
.x11{left:598.020000px;}
.x14{left:682.530000px;}
.xc{left:688.470000px;}
.x12{left:761.190000px;}
.x9{left:765.420000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.142933pt;}
.ls15{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.074667pt;}
.ls11{letter-spacing:-0.011840pt;}
.ls16{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls12{letter-spacing:0.029440pt;}
.lsc{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.053760pt;}
.ls17{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.103467pt;}
.ls1b{letter-spacing:0.113067pt;}
.ls18{letter-spacing:0.118400pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.142933pt;}
.lse{letter-spacing:0.154133pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:8.320000pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls1a{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.899733pt;}
.ws14{word-spacing:-11.869867pt;}
.wsd{word-spacing:-11.860267pt;}
.wsf{word-spacing:-11.822933pt;}
.ws12{word-spacing:-11.810667pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.750080pt;}
.wsa{word-spacing:-11.744960pt;}
.ws11{word-spacing:-11.681600pt;}
.wse{word-spacing:-11.620267pt;}
.ws13{word-spacing:-11.613867pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsc{word-spacing:-7.632640pt;}
.wsb{word-spacing:-7.603200pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._5{margin-left:-3.149227pt;}
._e{margin-left:-2.223648pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.959008pt;}
._9{width:2.190933pt;}
._a{width:3.099021pt;}
._d{width:4.221867pt;}
._10{width:5.343893pt;}
._6{width:6.412800pt;}
._7{width:7.695467pt;}
._f{width:8.766965pt;}
._15{width:9.836907pt;}
._13{width:10.737493pt;}
._4{width:11.712000pt;}
._8{width:12.825600pt;}
._11{width:13.894400pt;}
._c{width:15.150613pt;}
._b{width:16.098560pt;}
._12{width:17.074560pt;}
._14{width:18.088960pt;}
._16{width:19.053760pt;}
._26{width:20.043947pt;}
._25{width:21.269120pt;}
._24{width:22.231040pt;}
._1a{width:25.116800pt;}
._22{width:27.681920pt;}
._2{width:30.453952pt;}
._1{width:31.474667pt;}
._29{width:38.604693pt;}
._28{width:39.599040pt;}
._27{width:42.858880pt;}
._21{width:45.530880pt;}
._19{width:47.134080pt;}
._20{width:50.554240pt;}
._23{width:67.227520pt;}
._1d{width:83.206080pt;}
._18{width:95.711360pt;}
._1f{width:114.361600pt;}
._1c{width:144.982720pt;}
._1e{width:160.854400pt;}
._17{width:183.352640pt;}
._1b{width:211.088000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ye6{bottom:2.400000pt;}
.y96{bottom:6.960000pt;}
.yde{bottom:6.986667pt;}
.y9a{bottom:7.040000pt;}
.ybf{bottom:10.960000pt;}
.ya4{bottom:22.560000pt;}
.y95{bottom:22.640000pt;}
.ydd{bottom:22.666667pt;}
.ybe{bottom:26.560000pt;}
.y99{bottom:26.640000pt;}
.yc7{bottom:27.280000pt;}
.yd6{bottom:38.240000pt;}
.ya1{bottom:39.920000pt;}
.y98{bottom:42.240000pt;}
.ybd{bottom:46.240000pt;}
.ya0{bottom:46.880000pt;}
.ycb{bottom:46.960000pt;}
.yc2{bottom:61.840000pt;}
.y97{bottom:61.920000pt;}
.y9c{bottom:62.560000pt;}
.y2{bottom:65.226667pt;}
.ybc{bottom:65.840000pt;}
.y28{bottom:65.946667pt;}
.yc1{bottom:81.520000pt;}
.y93{bottom:82.160000pt;}
.ybb{bottom:85.520000pt;}
.y1{bottom:90.346667pt;}
.y5c{bottom:100.746667pt;}
.yc0{bottom:101.120000pt;}
.y11c{bottom:101.546667pt;}
.y92{bottom:101.840000pt;}
.y158{bottom:103.946667pt;}
.yba{bottom:105.120000pt;}
.y136{bottom:108.426667pt;}
.ya6{bottom:108.506667pt;}
.y5b{bottom:116.426667pt;}
.y11b{bottom:117.146667pt;}
.yd4{bottom:118.160000pt;}
.y157{bottom:119.626667pt;}
.yb9{bottom:120.720000pt;}
.y135{bottom:124.106667pt;}
.y26{bottom:124.346667pt;}
.yc9{bottom:127.626667pt;}
.y5a{bottom:132.026667pt;}
.y8b{bottom:132.426667pt;}
.y11a{bottom:132.746667pt;}
.y156{bottom:135.226667pt;}
.y134{bottom:139.706667pt;}
.y25{bottom:139.946667pt;}
.yb8{bottom:140.400000pt;}
.y59{bottom:147.706667pt;}
.y8a{bottom:148.026667pt;}
.y119{bottom:148.426667pt;}
.ya5{bottom:148.506667pt;}
.y15f{bottom:150.826667pt;}
.ye5{bottom:158.826667pt;}
.yb7{bottom:160.000000pt;}
.y58{bottom:163.306667pt;}
.y89{bottom:163.706667pt;}
.y24{bottom:163.866667pt;}
.y118{bottom:164.026667pt;}
.yca{bottom:167.626667pt;}
.ye4{bottom:172.026667pt;}
.y155{bottom:174.506667pt;}
.y57{bottom:178.906667pt;}
.y133{bottom:178.986667pt;}
.y88{bottom:179.306667pt;}
.yb6{bottom:179.680000pt;}
.y117{bottom:179.706667pt;}
.ya2{bottom:188.426667pt;}
.y154{bottom:190.106667pt;}
.y56{bottom:194.586667pt;}
.y87{bottom:194.906667pt;}
.y116{bottom:195.306667pt;}
.yb5{bottom:199.280000pt;}
.y15e{bottom:205.786667pt;}
.y23{bottom:206.746667pt;}
.yc6{bottom:207.546667pt;}
.y55{bottom:210.186667pt;}
.y86{bottom:210.586667pt;}
.ye3{bottom:211.946667pt;}
.y153{bottom:213.786667pt;}
.y132{bottom:218.266667pt;}
.y22{bottom:222.666667pt;}
.y85{bottom:226.186667pt;}
.y115{bottom:226.906667pt;}
.ya3{bottom:228.346667pt;}
.y152{bottom:229.386667pt;}
.y131{bottom:233.866667pt;}
.y54{bottom:234.106667pt;}
.y84{bottom:241.866667pt;}
.y114{bottom:242.586667pt;}
.y151{bottom:244.986667pt;}
.yc8{bottom:247.466667pt;}
.ye2{bottom:251.866667pt;}
.y21{bottom:255.626667pt;}
.y83{bottom:257.466667pt;}
.y130{bottom:257.786667pt;}
.y113{bottom:258.186667pt;}
.y15d{bottom:260.666667pt;}
.y9e{bottom:268.266667pt;}
.y150{bottom:268.666667pt;}
.y20{bottom:271.226667pt;}
.y82{bottom:273.066667pt;}
.y112{bottom:273.866667pt;}
.y53{bottom:276.986667pt;}
.y14f{bottom:284.266667pt;}
.y1f{bottom:286.906667pt;}
.yc4{bottom:287.386667pt;}
.y81{bottom:288.746667pt;}
.y111{bottom:289.466667pt;}
.ye1{bottom:291.786667pt;}
.y52{bottom:292.666667pt;}
.y14e{bottom:299.946667pt;}
.y12f{bottom:300.666667pt;}
.y1e{bottom:302.506667pt;}
.y80{bottom:304.346667pt;}
.y110{bottom:305.066667pt;}
.y9f{bottom:308.186667pt;}
.y51{bottom:308.266667pt;}
.y15c{bottom:315.546667pt;}
.y7f{bottom:319.946667pt;}
.y10f{bottom:320.746667pt;}
.y14d{bottom:323.546667pt;}
.y50{bottom:323.946667pt;}
.y12e{bottom:324.586667pt;}
.ye0{bottom:331.786667pt;}
.y1d{bottom:334.106667pt;}
.y10e{bottom:336.346667pt;}
.y14c{bottom:339.146667pt;}
.y9b{bottom:348.106667pt;}
.y1c{bottom:349.786667pt;}
.y7e{bottom:351.626667pt;}
.y10d{bottom:351.946667pt;}
.y14b{bottom:354.826667pt;}
.y4f{bottom:355.546667pt;}
.y12d{bottom:357.546667pt;}
.y1b{bottom:365.386667pt;}
.yc5{bottom:366.586667pt;}
.y7d{bottom:367.226667pt;}
.y4e{bottom:371.146667pt;}
.ydf{bottom:371.706667pt;}
.y12c{bottom:373.146667pt;}
.y14a{bottom:378.426667pt;}
.y1a{bottom:381.066667pt;}
.y7c{bottom:382.906667pt;}
.y10c{bottom:383.626667pt;}
.y4d{bottom:386.826667pt;}
.y9d{bottom:388.026667pt;}
.y12b{bottom:388.746667pt;}
.y149{bottom:394.106667pt;}
.y19{bottom:396.666667pt;}
.y7b{bottom:398.506667pt;}
.y10b{bottom:399.226667pt;}
.y4c{bottom:402.426667pt;}
.y12a{bottom:404.426667pt;}
.y148{bottom:409.706667pt;}
.ydc{bottom:411.626667pt;}
.y18{bottom:412.266667pt;}
.y7a{bottom:414.106667pt;}
.y10a{bottom:414.906667pt;}
.y4b{bottom:418.133333pt;}
.yc3{bottom:425.493333pt;}
.y17{bottom:427.973333pt;}
.y129{bottom:428.373333pt;}
.y79{bottom:429.813333pt;}
.y109{bottom:430.533333pt;}
.y147{bottom:433.333333pt;}
.y4a{bottom:433.733333pt;}
.y16{bottom:443.573333pt;}
.y78{bottom:445.413333pt;}
.y108{bottom:446.133333pt;}
.yb4{bottom:446.853333pt;}
.y146{bottom:449.013333pt;}
.y49{bottom:449.333333pt;}
.ydb{bottom:451.573333pt;}
.y91{bottom:452.293333pt;}
.y77{bottom:461.093333pt;}
.y128{bottom:461.253333pt;}
.y107{bottom:461.813333pt;}
.y145{bottom:464.613333pt;}
.y48{bottom:465.013333pt;}
.y15{bottom:475.253333pt;}
.y76{bottom:476.693333pt;}
.y106{bottom:477.413333pt;}
.y47{bottom:480.613333pt;}
.y127{bottom:485.173333pt;}
.y144{bottom:488.293333pt;}
.y14{bottom:490.853333pt;}
.yda{bottom:491.493333pt;}
.y75{bottom:492.293333pt;}
.y105{bottom:493.093333pt;}
.y46{bottom:496.293333pt;}
.y143{bottom:503.893333pt;}
.y13{bottom:506.453333pt;}
.y104{bottom:508.693333pt;}
.y45{bottom:511.893333pt;}
.y74{bottom:516.213333pt;}
.y126{bottom:518.133333pt;}
.y142{bottom:519.493333pt;}
.y12{bottom:522.133333pt;}
.y103{bottom:524.293333pt;}
.y44{bottom:527.493333pt;}
.yd9{bottom:531.413333pt;}
.y94{bottom:531.493333pt;}
.y11{bottom:537.733333pt;}
.y102{bottom:539.973333pt;}
.y125{bottom:541.973333pt;}
.y43{bottom:543.173333pt;}
.y10{bottom:553.413333pt;}
.y42{bottom:558.773333pt;}
.y73{bottom:559.173333pt;}
.yf{bottom:569.013333pt;}
.yd8{bottom:571.333333pt;}
.y101{bottom:571.573333pt;}
.y41{bottom:574.453333pt;}
.y72{bottom:574.773333pt;}
.y124{bottom:575.173333pt;}
.y100{bottom:587.253333pt;}
.y40{bottom:590.053333pt;}
.y71{bottom:590.453333pt;}
.ye{bottom:600.613333pt;}
.yff{bottom:602.853333pt;}
.y70{bottom:606.053333pt;}
.yd3{bottom:611.253333pt;}
.y141{bottom:613.653333pt;}
.yd{bottom:616.293333pt;}
.y123{bottom:618.133333pt;}
.yfe{bottom:618.453333pt;}
.y3f{bottom:621.653333pt;}
.y90{bottom:622.053333pt;}
.y140{bottom:629.333333pt;}
.yc{bottom:631.893333pt;}
.y122{bottom:633.733333pt;}
.yfd{bottom:634.133333pt;}
.y3e{bottom:637.333333pt;}
.y8f{bottom:637.653333pt;}
.y13f{bottom:644.933333pt;}
.y121{bottom:649.413333pt;}
.yfc{bottom:649.733333pt;}
.yd7{bottom:651.253333pt;}
.y3d{bottom:652.933333pt;}
.y6f{bottom:653.333333pt;}
.yb{bottom:655.813333pt;}
.yb3{bottom:663.413333pt;}
.y120{bottom:665.013333pt;}
.yfb{bottom:665.413333pt;}
.y3c{bottom:668.613333pt;}
.y6e{bottom:668.933333pt;}
.yfa{bottom:681.013333pt;}
.y3b{bottom:684.213333pt;}
.y6d{bottom:684.613333pt;}
.yb2{bottom:687.733333pt;}
.y11f{bottom:688.933333pt;}
.yd5{bottom:691.173333pt;}
.yf9{bottom:696.613333pt;}
.ya{bottom:698.693333pt;}
.y3a{bottom:699.813333pt;}
.y6c{bottom:700.213333pt;}
.y15b{bottom:707.813333pt;}
.yf8{bottom:712.293333pt;}
.y39{bottom:715.493333pt;}
.y6b{bottom:715.813333pt;}
.y8e{bottom:716.213333pt;}
.y13e{bottom:723.493333pt;}
.yb1{bottom:727.653333pt;}
.yf7{bottom:727.893333pt;}
.y9{bottom:730.533333pt;}
.y6a{bottom:731.493333pt;}
.y8d{bottom:731.813333pt;}
.y13d{bottom:739.093333pt;}
.yf6{bottom:743.573333pt;}
.yd2{bottom:746.693333pt;}
.y38{bottom:747.093333pt;}
.y8c{bottom:747.493333pt;}
.yb0{bottom:751.973333pt;}
.y15a{bottom:754.693333pt;}
.yf5{bottom:759.173333pt;}
.y8{bottom:762.533333pt;}
.y37{bottom:762.693333pt;}
.y69{bottom:763.093333pt;}
.yf4{bottom:774.773333pt;}
.yaf{bottom:776.293333pt;}
.y36{bottom:778.373333pt;}
.y68{bottom:778.693333pt;}
.yd1{bottom:786.613333pt;}
.yf3{bottom:790.453333pt;}
.y35{bottom:793.973333pt;}
.y67{bottom:794.373333pt;}
.y7{bottom:794.533333pt;}
.y34{bottom:809.653333pt;}
.y66{bottom:809.973333pt;}
.yae{bottom:816.213333pt;}
.yf2{bottom:822.053333pt;}
.y33{bottom:825.253333pt;}
.y65{bottom:825.653333pt;}
.yd0{bottom:826.533333pt;}
.y6{bottom:826.613333pt;}
.y13c{bottom:833.253333pt;}
.yf1{bottom:837.733333pt;}
.yad{bottom:840.533333pt;}
.y32{bottom:840.853333pt;}
.y64{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y13b{bottom:848.853333pt;}
.yf0{bottom:853.333333pt;}
.y31{bottom:856.533333pt;}
.y63{bottom:856.853333pt;}
.y13a{bottom:864.533333pt;}
.yac{bottom:864.773333pt;}
.ycf{bottom:866.533333pt;}
.yef{bottom:868.933333pt;}
.y30{bottom:872.133333pt;}
.y11e{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.yee{bottom:884.613333pt;}
.y11d{bottom:888.133333pt;}
.y62{bottom:888.533333pt;}
.yab{bottom:889.093333pt;}
.y3{bottom:899.840000pt;}
.yed{bottom:900.240000pt;}
.y2f{bottom:903.840000pt;}
.y61{bottom:904.160000pt;}
.yce{bottom:906.480000pt;}
.yaa{bottom:913.440000pt;}
.yec{bottom:915.840000pt;}
.y2e{bottom:919.440000pt;}
.y60{bottom:919.840000pt;}
.y139{bottom:927.440000pt;}
.yeb{bottom:931.520000pt;}
.y2d{bottom:935.040000pt;}
.y5f{bottom:935.440000pt;}
.ya9{bottom:937.680000pt;}
.y138{bottom:943.040000pt;}
.ycd{bottom:946.400000pt;}
.yea{bottom:947.120000pt;}
.y2c{bottom:950.720000pt;}
.y5e{bottom:951.040000pt;}
.y137{bottom:958.720000pt;}
.ye9{bottom:962.800000pt;}
.y5d{bottom:966.720000pt;}
.y159{bottom:974.320000pt;}
.ya8{bottom:977.680000pt;}
.ye8{bottom:978.400000pt;}
.y2b{bottom:982.320000pt;}
.ycc{bottom:986.320000pt;}
.y2a{bottom:998.000000pt;}
.ya7{bottom:1001.920000pt;}
.ye7{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h19{height:12.560000pt;}
.h13{height:23.600000pt;}
.h14{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h1a{height:37.032187pt;}
.h12{height:39.200000pt;}
.h16{height:39.226667pt;}
.hc{height:39.280000pt;}
.h10{height:39.306667pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.h18{height:54.880000pt;}
.h1b{height:54.927899pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.hd{height:78.560000pt;}
.h11{height:79.200000pt;}
.hf{height:79.226667pt;}
.hb{height:118.480000pt;}
.h17{height:134.800000pt;}
.h15{height:215.920000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1f{width:41.920000pt;}
.wf{width:47.600000pt;}
.w10{width:50.826667pt;}
.w8{width:52.800000pt;}
.w20{width:56.186667pt;}
.w19{width:56.240000pt;}
.w9{width:66.800000pt;}
.w4{width:67.360000pt;}
.we{width:68.080000pt;}
.w1e{width:69.200000pt;}
.w1b{width:69.466667pt;}
.wc{width:73.840000pt;}
.w15{width:74.160000pt;}
.w1a{width:74.240000pt;}
.w1d{width:74.400000pt;}
.w1c{width:75.520000pt;}
.wb{width:75.706667pt;}
.wd{width:82.560000pt;}
.wa{width:83.600000pt;}
.w3{width:98.746667pt;}
.w14{width:98.826667pt;}
.w18{width:144.320000pt;}
.w17{width:145.706667pt;}
.w16{width:149.120000pt;}
.w6{width:149.866667pt;}
.w5{width:150.720000pt;}
.w7{width:150.960000pt;}
.w13{width:204.080000pt;}
.w12{width:467.653333pt;}
.w21{width:671.733333pt;}
.w11{width:672.053333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:1.520000pt;}
.xe{left:3.520000pt;}
.x1{left:60.480000pt;}
.x16{left:95.626667pt;}
.x17{left:98.879988pt;}
.x15{left:103.760000pt;}
.xd{left:109.040000pt;}
.x5{left:160.186667pt;}
.x2{left:171.306655pt;}
.x6{left:227.866667pt;}
.xf{left:235.466667pt;}
.xa{left:294.986667pt;}
.x13{left:310.346667pt;}
.x7{left:378.906667pt;}
.x10{left:385.226667pt;}
.xb{left:454.933333pt;}
.x8{left:529.093333pt;}
.x11{left:531.573333pt;}
.x14{left:606.693333pt;}
.xc{left:611.973333pt;}
.x12{left:676.613333pt;}
.x9{left:680.373333pt;}
.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; }
  