
    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_ede8dca2bd3cc086cda25efb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cf21a2bd0ad8b6455d0ecd99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_6bb9a399456dacd0a1b14428.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_859038731ee2eef48c48a048.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5296c67a9727a0e98bf5a3fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8f15b0ceaffa03671b20a47d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4e774012fdc9b96354daecae.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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;}
.lsa{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.253200px;}
.lse{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.048960px;}
.ls8{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.306600px;}
.lsf{letter-spacing:0.360000px;}
.ls14{letter-spacing:1.080000px;}
.ls17{letter-spacing:2.340000px;}
.ls2{letter-spacing:10.980000px;}
.ls16{letter-spacing:46.026720px;}
.ls5{letter-spacing:55.386720px;}
.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;}
.ws8{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.246600px;}
.ws6{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.686800px;}
.ws9{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._13{margin-left:-3.551760px;}
._12{margin-left:-2.450160px;}
._0{margin-left:-1.080000px;}
._f{width:1.213200px;}
._1{width:2.220000px;}
._16{width:3.669120px;}
._15{width:4.780800px;}
._11{width:6.099840px;}
._10{width:7.470000px;}
._18{width:8.478000px;}
._17{width:9.501840px;}
._6{width:10.800000px;}
._1a{width:11.890800px;}
._19{width:13.754160px;}
._14{width:15.997680px;}
._1b{width:55.558800px;}
._7{width:76.284960px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:rgb(255,0,0);}
.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;}
.y71{bottom:5.760000px;}
.ye0{bottom:5.790000px;}
.yd3{bottom:5.805000px;}
.y75{bottom:5.940000px;}
.ya8{bottom:6.120000px;}
.ye{bottom:6.300000px;}
.yba{bottom:7.560000px;}
.ya3{bottom:7.740000px;}
.ya5{bottom:8.460000px;}
.y13f{bottom:9.180000px;}
.yab{bottom:9.540000px;}
.y13a{bottom:9.900000px;}
.y90{bottom:10.620000px;}
.y92{bottom:12.240000px;}
.y6{bottom:12.420000px;}
.y10c{bottom:16.200000px;}
.y10f{bottom:16.740000px;}
.y98{bottom:17.280000px;}
.y8{bottom:18.180000px;}
.y85{bottom:25.560000px;}
.y107{bottom:25.605000px;}
.yaf{bottom:25.740000px;}
.ybe{bottom:25.785000px;}
.ya7{bottom:26.130000px;}
.y79{bottom:26.280000px;}
.y13e{bottom:28.980000px;}
.y146{bottom:29.010000px;}
.yaa{bottom:29.340000px;}
.y142{bottom:29.700000px;}
.y139{bottom:29.880000px;}
.yc{bottom:36.000000px;}
.y10e{bottom:36.540000px;}
.y97{bottom:37.080000px;}
.y5{bottom:40.320000px;}
.y113{bottom:45.540000px;}
.ycb{bottom:46.260000px;}
.y13d{bottom:48.780000px;}
.y145{bottom:48.990000px;}
.y141{bottom:49.500000px;}
.y138{bottom:49.725000px;}
.yb{bottom:57.780000px;}
.y95{bottom:58.365000px;}
.y136{bottom:65.340000px;}
.yca{bottom:66.060000px;}
.y7c{bottom:67.545000px;}
.y73{bottom:67.680000px;}
.y4{bottom:68.400000px;}
.y13c{bottom:68.760000px;}
.y144{bottom:68.790000px;}
.yd{bottom:75.420000px;}
.y94{bottom:78.165000px;}
.ya{bottom:79.560000px;}
.y135{bottom:85.140000px;}
.y115{bottom:85.860000px;}
.y3{bottom:96.330000px;}
.yfa{bottom:100.980000px;}
.y133{bottom:101.340000px;}
.y3a{bottom:104.400000px;}
.ye2{bottom:107.640000px;}
.y15c{bottom:108.720000px;}
.y8e{bottom:114.840000px;}
.y15f{bottom:115.380000px;}
.y132{bottom:121.140000px;}
.y39{bottom:124.200000px;}
.y2{bottom:125.670000px;}
.ye1{bottom:128.160000px;}
.y81{bottom:128.520000px;}
.y8d{bottom:134.820000px;}
.yb9{bottom:135.000000px;}
.y15e{bottom:135.180000px;}
.y68{bottom:137.340000px;}
.y131{bottom:140.940000px;}
.y38{bottom:144.000000px;}
.y15b{bottom:148.320000px;}
.ydf{bottom:148.860000px;}
.yf8{bottom:151.770000px;}
.y8c{bottom:154.650000px;}
.y15d{bottom:155.010000px;}
.y67{bottom:157.350000px;}
.yb8{bottom:157.530000px;}
.y130{bottom:160.770000px;}
.y37{bottom:163.830000px;}
.y15a{bottom:168.150000px;}
.yde{bottom:169.410000px;}
.y8b{bottom:174.450000px;}
.y66{bottom:177.150000px;}
.y12f{bottom:180.750000px;}
.y36{bottom:183.630000px;}
.y159{bottom:188.130000px;}
.ydd{bottom:189.930000px;}
.y10b{bottom:192.270000px;}
.y8a{bottom:194.250000px;}
.y65{bottom:196.950000px;}
.yb7{bottom:197.850000px;}
.y12e{bottom:200.550000px;}
.y35{bottom:203.610000px;}
.y158{bottom:207.930000px;}
.ydc{bottom:210.630000px;}
.y89{bottom:214.050000px;}
.y64{bottom:216.750000px;}
.yb6{bottom:220.350000px;}
.y34{bottom:223.410000px;}
.y157{bottom:227.730000px;}
.ydb{bottom:231.150000px;}
.y10a{bottom:232.590000px;}
.y88{bottom:234.030000px;}
.y63{bottom:236.550000px;}
.y108{bottom:238.170000px;}
.y12d{bottom:240.150000px;}
.yb5{bottom:242.850000px;}
.y33{bottom:243.210000px;}
.y156{bottom:247.530000px;}
.y80{bottom:248.790000px;}
.yda{bottom:251.670000px;}
.y62{bottom:256.530000px;}
.y12c{bottom:259.950000px;}
.y32{bottom:263.010000px;}
.yb4{bottom:265.350000px;}
.y155{bottom:267.330000px;}
.y87{bottom:269.310000px;}
.yd9{bottom:272.370000px;}
.y109{bottom:273.090000px;}
.y61{bottom:276.330000px;}
.y12b{bottom:279.930000px;}
.y31{bottom:282.810000px;}
.y154{bottom:287.310000px;}
.y86{bottom:290.010000px;}
.yd8{bottom:292.890000px;}
.y60{bottom:296.130000px;}
.y12a{bottom:299.730000px;}
.y30{bottom:302.790000px;}
.yb3{bottom:305.850000px;}
.y153{bottom:307.110000px;}
.y84{bottom:310.530000px;}
.yd7{bottom:313.590000px;}
.y5f{bottom:315.930000px;}
.y129{bottom:319.530000px;}
.y152{bottom:326.910000px;}
.yb2{bottom:329.070000px;}
.yed{bottom:329.250000px;}
.y2f{bottom:331.590000px;}
.yf7{bottom:332.355000px;}
.yd6{bottom:334.110000px;}
.y5e{bottom:335.730000px;}
.y128{bottom:339.330000px;}
.y151{bottom:346.710000px;}
.y83{bottom:350.850000px;}
.y2e{bottom:351.390000px;}
.yb1{bottom:351.570000px;}
.yf6{bottom:352.155000px;}
.yee{bottom:353.910000px;}
.yd5{bottom:354.630000px;}
.y5d{bottom:355.710000px;}
.y127{bottom:359.130000px;}
.y150{bottom:366.510000px;}
.y2d{bottom:371.190000px;}
.y82{bottom:371.550000px;}
.yf5{bottom:371.955000px;}
.yd4{bottom:375.330000px;}
.y5c{bottom:375.510000px;}
.y126{bottom:379.110000px;}
.y14f{bottom:386.490000px;}
.y2c{bottom:390.990000px;}
.yf4{bottom:391.755000px;}
.yb0{bottom:391.890000px;}
.y7b{bottom:392.070000px;}
.y106{bottom:394.410000px;}
.y5b{bottom:395.310000px;}
.yd2{bottom:395.850000px;}
.y125{bottom:398.910000px;}
.y104{bottom:399.855000px;}
.y14e{bottom:406.335000px;}
.yf3{bottom:411.555000px;}
.y7f{bottom:412.815000px;}
.yae{bottom:414.435000px;}
.y5a{bottom:415.155000px;}
.yd1{bottom:416.415000px;}
.y124{bottom:418.755000px;}
.y2b{bottom:420.015000px;}
.y14d{bottom:426.135000px;}
.yf2{bottom:431.355000px;}
.y7e{bottom:433.335000px;}
.y105{bottom:434.775000px;}
.y59{bottom:434.955000px;}
.yd0{bottom:437.115000px;}
.y123{bottom:438.555000px;}
.y2a{bottom:439.815000px;}
.y14c{bottom:445.935000px;}
.yf1{bottom:451.335000px;}
.y7d{bottom:453.855000px;}
.y58{bottom:454.935000px;}
.ycf{bottom:457.635000px;}
.y122{bottom:458.355000px;}
.y14b{bottom:465.735000px;}
.y29{bottom:468.615000px;}
.yf0{bottom:471.135000px;}
.y78{bottom:474.555000px;}
.y57{bottom:474.735000px;}
.y103{bottom:475.275000px;}
.yce{bottom:478.155000px;}
.y121{bottom:478.335000px;}
.y14a{bottom:485.715000px;}
.y28{bottom:488.415000px;}
.yef{bottom:490.935000px;}
.y56{bottom:494.535000px;}
.y7a{bottom:495.075000px;}
.yad{bottom:495.435000px;}
.y120{bottom:498.135000px;}
.ycd{bottom:498.855000px;}
.y149{bottom:505.515000px;}
.y27{bottom:508.215000px;}
.y55{bottom:514.335000px;}
.y72{bottom:515.595000px;}
.y11f{bottom:517.935000px;}
.yc9{bottom:519.375000px;}
.y26{bottom:528.195000px;}
.y54{bottom:534.135000px;}
.y148{bottom:534.315000px;}
.yac{bottom:535.755000px;}
.y77{bottom:536.295000px;}
.y11e{bottom:537.735000px;}
.y25{bottom:547.995000px;}
.y53{bottom:554.115000px;}
.y102{bottom:556.095000px;}
.y76{bottom:556.815000px;}
.y11d{bottom:557.535000px;}
.ycc{bottom:559.875000px;}
.y24{bottom:567.795000px;}
.y52{bottom:573.915000px;}
.y101{bottom:576.615000px;}
.y74{bottom:577.335000px;}
.y11c{bottom:577.515000px;}
.ya9{bottom:579.855000px;}
.y23{bottom:587.595000px;}
.y51{bottom:593.715000px;}
.y11b{bottom:597.315000px;}
.y70{bottom:598.035000px;}
.yc8{bottom:600.195000px;}
.y22{bottom:607.395000px;}
.y50{bottom:613.515000px;}
.y147{bottom:613.695000px;}
.y100{bottom:617.115000px;}
.ya6{bottom:623.955000px;}
.y6f{bottom:624.315000px;}
.yc7{bottom:626.655000px;}
.y21{bottom:627.375000px;}
.y143{bottom:628.455000px;}
.y4f{bottom:633.315000px;}
.y11a{bottom:636.915000px;}
.y6e{bottom:644.295000px;}
.yc6{bottom:646.455000px;}
.y20{bottom:647.175000px;}
.y4e{bottom:653.325000px;}
.y119{bottom:656.745000px;}
.yff{bottom:657.465000px;}
.y6d{bottom:664.125000px;}
.ya4{bottom:664.845000px;}
.yc5{bottom:666.285000px;}
.y1f{bottom:667.005000px;}
.y4d{bottom:673.125000px;}
.y118{bottom:676.725000px;}
.y6c{bottom:683.925000px;}
.yc4{bottom:686.265000px;}
.y1e{bottom:686.805000px;}
.ya2{bottom:688.065000px;}
.y4c{bottom:692.925000px;}
.yf9{bottom:693.075000px;}
.y117{bottom:696.525000px;}
.yfe{bottom:697.965000px;}
.y6b{bottom:703.725000px;}
.yc3{bottom:706.065000px;}
.y1d{bottom:706.605000px;}
.y140{bottom:712.005000px;}
.y4b{bottom:712.725000px;}
.ya1{bottom:716.325000px;}
.yc2{bottom:720.825000px;}
.y6a{bottom:723.525000px;}
.y1c{bottom:726.585000px;}
.y4a{bottom:732.525000px;}
.ya0{bottom:736.125000px;}
.yfd{bottom:738.465000px;}
.y69{bottom:743.505000px;}
.yfb{bottom:743.865000px;}
.y1b{bottom:746.385000px;}
.y49{bottom:752.505000px;}
.y116{bottom:755.925000px;}
.y9f{bottom:756.105000px;}
.yc1{bottom:761.145000px;}
.y1a{bottom:766.185000px;}
.y114{bottom:770.865000px;}
.y48{bottom:772.305000px;}
.y9e{bottom:775.905000px;}
.y13b{bottom:776.445000px;}
.yfc{bottom:778.785000px;}
.y19{bottom:785.985000px;}
.y47{bottom:792.105000px;}
.y9d{bottom:795.705000px;}
.yc0{bottom:801.645000px;}
.y18{bottom:805.785000px;}
.y112{bottom:811.185000px;}
.y46{bottom:811.905000px;}
.yec{bottom:819.285000px;}
.y9c{bottom:824.505000px;}
.y17{bottom:825.765000px;}
.y45{bottom:831.705000px;}
.ybf{bottom:842.145000px;}
.y9b{bottom:844.305000px;}
.y16{bottom:845.565000px;}
.y44{bottom:851.685000px;}
.yeb{bottom:859.605000px;}
.y137{bottom:859.965000px;}
.y9a{bottom:864.285000px;}
.y15{bottom:865.365000px;}
.y43{bottom:871.485000px;}
.y93{bottom:879.045000px;}
.ybd{bottom:882.465000px;}
.yea{bottom:886.065000px;}
.y14{bottom:890.385000px;}
.y42{bottom:891.285000px;}
.y99{bottom:899.610000px;}
.ye9{bottom:905.910000px;}
.y13{bottom:910.230000px;}
.y41{bottom:911.130000px;}
.y111{bottom:911.850000px;}
.y96{bottom:920.130000px;}
.ye8{bottom:920.670000px;}
.ybc{bottom:923.010000px;}
.y134{bottom:924.450000px;}
.y12{bottom:925.530000px;}
.y40{bottom:930.930000px;}
.ye7{bottom:941.370000px;}
.y11{bottom:947.310000px;}
.y3f{bottom:950.910000px;}
.y110{bottom:952.350000px;}
.ye6{bottom:961.890000px;}
.ybb{bottom:963.330000px;}
.y3e{bottom:970.710000px;}
.y91{bottom:971.970000px;}
.y10{bottom:972.150000px;}
.ye5{bottom:982.410000px;}
.y3d{bottom:990.510000px;}
.y10d{bottom:992.850000px;}
.y8f{bottom:998.970000px;}
.ye4{bottom:1003.110000px;}
.yf{bottom:1003.830000px;}
.y3c{bottom:1010.310000px;}
.ye3{bottom:1023.630000px;}
.y3b{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.082656px;}
.h11{height:19.800000px;}
.h16{height:19.836000px;}
.h13{height:19.980000px;}
.h22{height:21.636000px;}
.hb{height:21.780000px;}
.h21{height:21.816000px;}
.h1d{height:22.500000px;}
.h19{height:24.660000px;}
.h1a{height:26.280000px;}
.hd{height:28.115859px;}
.h7{height:33.480000px;}
.h18{height:39.600000px;}
.h29{height:39.636000px;}
.h20{height:39.780000px;}
.h23{height:39.816000px;}
.h1e{height:40.176000px;}
.h14{height:40.320000px;}
.hf{height:42.164648px;}
.he{height:43.215117px;}
.h1f{height:43.380000px;}
.h10{height:43.506914px;}
.h30{height:43.681992px;}
.h4{height:46.736719px;}
.ha{height:47.901094px;}
.h36{height:48.496641px;}
.h2c{height:50.040000px;}
.h2d{height:50.580000px;}
.h1c{height:51.120000px;}
.h9{height:53.224453px;}
.h2e{height:59.580000px;}
.h3{height:63.500977px;}
.h34{height:63.540000px;}
.h32{height:63.756000px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h24{height:80.100000px;}
.h15{height:81.576000px;}
.h12{height:81.720000px;}
.h33{height:82.800000px;}
.h35{height:82.836000px;}
.h1b{height:92.196000px;}
.h31{height:99.180000px;}
.h2f{height:99.900000px;}
.h5{height:112.536000px;}
.h17{height:142.560000px;}
.h2{height:146.736000px;}
.h2b{height:252.210000px;}
.h25{height:343.290000px;}
.h2a{height:413.895000px;}
.h26{height:504.975000px;}
.h27{height:707.115000px;}
.h28{height:757.905000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w17{width:55.980000px;}
.w1c{width:56.016000px;}
.w13{width:60.336000px;}
.w21{width:62.496000px;}
.w20{width:63.000000px;}
.w23{width:63.036000px;}
.w22{width:63.180000px;}
.we{width:64.116000px;}
.w10{width:66.780000px;}
.w1d{width:76.500000px;}
.w1a{width:80.856000px;}
.w18{width:81.000000px;}
.w11{width:97.596000px;}
.w1e{width:100.296000px;}
.w25{width:103.896000px;}
.w1b{width:104.220000px;}
.w19{width:104.436000px;}
.w26{width:113.580000px;}
.w27{width:114.516000px;}
.wd{width:117.036000px;}
.wb{width:127.260000px;}
.w28{width:127.476000px;}
.w3{width:131.796000px;}
.w8{width:154.980000px;}
.w29{width:155.010000px;}
.w2a{width:164.550000px;}
.w6{width:224.670000px;}
.w16{width:234.255000px;}
.w15{width:242.670000px;}
.w14{width:242.850000px;}
.w7{width:294.555000px;}
.w24{width:319.575000px;}
.wc{width:442.155000px;}
.w1f{width:464.865000px;}
.wa{width:559.905000px;}
.wf{width:561.525000px;}
.w2{width:654.630000px;}
.w9{width:687.885000px;}
.w12{width:782.280000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x30{left:10.980000px;}
.x27{left:12.060000px;}
.x18{left:13.680000px;}
.x14{left:14.940000px;}
.x1b{left:16.380000px;}
.x33{left:17.640000px;}
.x31{left:19.800000px;}
.x1d{left:22.680000px;}
.x2d{left:23.760000px;}
.x1a{left:26.280000px;}
.x34{left:27.900000px;}
.x1f{left:30.096000px;}
.x32{left:31.545000px;}
.x25{left:32.625000px;}
.x1c{left:35.640000px;}
.x37{left:38.160000px;}
.x35{left:40.530000px;}
.x2f{left:43.920000px;}
.x38{left:50.040000px;}
.x36{left:52.020000px;}
.x1{left:53.280000px;}
.x13{left:54.720000px;}
.x21{left:59.754000px;}
.x50{left:62.310000px;}
.x3f{left:64.980000px;}
.x4d{left:69.870000px;}
.x47{left:73.650000px;}
.x4a{left:78.480000px;}
.x48{left:79.560000px;}
.xc{left:80.999987px;}
.x49{left:83.340000px;}
.x26{left:87.525000px;}
.x45{left:88.590000px;}
.x6{left:90.215987px;}
.x23{left:91.830000px;}
.x4b{left:93.450000px;}
.x46{left:96.150000px;}
.x4c{left:97.230000px;}
.x4e{left:98.280000px;}
.x10{left:102.636000px;}
.x4f{left:105.840000px;}
.xd{left:108.756000px;}
.x51{left:112.170000px;}
.x20{left:115.776000px;}
.x4{left:118.290000px;}
.x15{left:119.556000px;}
.x28{left:172.470000px;}
.x39{left:201.450000px;}
.x44{left:219.990000px;}
.x16{left:240.339000px;}
.x29{left:254.190000px;}
.x7{left:265.754987px;}
.x9{left:305.534987px;}
.x1e{left:308.595000px;}
.xb{left:318.494987px;}
.xa{left:325.154987px;}
.xe{left:334.155000px;}
.x22{left:359.355000px;}
.x40{left:385.275000px;}
.x2a{left:416.055000px;}
.x8{left:446.504987px;}
.x41{left:489.885000px;}
.x2b{left:497.805000px;}
.x3a{left:520.305000px;}
.x12{left:545.505000px;}
.x3b{left:584.205000px;}
.x24{left:602.745000px;}
.x42{left:604.185000px;}
.xf{left:629.430000px;}
.x3c{left:647.430000px;}
.x2c{left:659.490000px;}
.x11{left:663.270000px;}
.x17{left:681.810000px;}
.x3{left:707.910000px;}
.x3d{left:711.330000px;}
.x43{left:719.430000px;}
.x2e{left:736.710000px;}
.x19{left:749.310000px;}
.x3e{left:775.050000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.225067pt;}
.lse{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.043520pt;}
.ls8{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.272533pt;}
.lsf{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls17{letter-spacing:2.080000pt;}
.ls2{letter-spacing:9.760000pt;}
.ls16{letter-spacing:40.912640pt;}
.ls5{letter-spacing:49.232640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.552533pt;}
.ws6{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.096533pt;}
.wsd{word-spacing:-13.054933pt;}
.ws9{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._13{margin-left:-3.157120pt;}
._12{margin-left:-2.177920pt;}
._0{margin-left:-0.960000pt;}
._f{width:1.078400pt;}
._1{width:1.973333pt;}
._16{width:3.261440pt;}
._15{width:4.249600pt;}
._11{width:5.422080pt;}
._10{width:6.640000pt;}
._18{width:7.536000pt;}
._17{width:8.446080pt;}
._6{width:9.600000pt;}
._1a{width:10.569600pt;}
._19{width:12.225920pt;}
._14{width:14.220160pt;}
._1b{width:49.385600pt;}
._7{width:67.808853pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{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;}
.y71{bottom:5.120000pt;}
.ye0{bottom:5.146667pt;}
.yd3{bottom:5.160000pt;}
.y75{bottom:5.280000pt;}
.ya8{bottom:5.440000pt;}
.ye{bottom:5.600000pt;}
.yba{bottom:6.720000pt;}
.ya3{bottom:6.880000pt;}
.ya5{bottom:7.520000pt;}
.y13f{bottom:8.160000pt;}
.yab{bottom:8.480000pt;}
.y13a{bottom:8.800000pt;}
.y90{bottom:9.440000pt;}
.y92{bottom:10.880000pt;}
.y6{bottom:11.040000pt;}
.y10c{bottom:14.400000pt;}
.y10f{bottom:14.880000pt;}
.y98{bottom:15.360000pt;}
.y8{bottom:16.160000pt;}
.y85{bottom:22.720000pt;}
.y107{bottom:22.760000pt;}
.yaf{bottom:22.880000pt;}
.ybe{bottom:22.920000pt;}
.ya7{bottom:23.226667pt;}
.y79{bottom:23.360000pt;}
.y13e{bottom:25.760000pt;}
.y146{bottom:25.786667pt;}
.yaa{bottom:26.080000pt;}
.y142{bottom:26.400000pt;}
.y139{bottom:26.560000pt;}
.yc{bottom:32.000000pt;}
.y10e{bottom:32.480000pt;}
.y97{bottom:32.960000pt;}
.y5{bottom:35.840000pt;}
.y113{bottom:40.480000pt;}
.ycb{bottom:41.120000pt;}
.y13d{bottom:43.360000pt;}
.y145{bottom:43.546667pt;}
.y141{bottom:44.000000pt;}
.y138{bottom:44.200000pt;}
.yb{bottom:51.360000pt;}
.y95{bottom:51.880000pt;}
.y136{bottom:58.080000pt;}
.yca{bottom:58.720000pt;}
.y7c{bottom:60.040000pt;}
.y73{bottom:60.160000pt;}
.y4{bottom:60.800000pt;}
.y13c{bottom:61.120000pt;}
.y144{bottom:61.146667pt;}
.yd{bottom:67.040000pt;}
.y94{bottom:69.480000pt;}
.ya{bottom:70.720000pt;}
.y135{bottom:75.680000pt;}
.y115{bottom:76.320000pt;}
.y3{bottom:85.626667pt;}
.yfa{bottom:89.760000pt;}
.y133{bottom:90.080000pt;}
.y3a{bottom:92.800000pt;}
.ye2{bottom:95.680000pt;}
.y15c{bottom:96.640000pt;}
.y8e{bottom:102.080000pt;}
.y15f{bottom:102.560000pt;}
.y132{bottom:107.680000pt;}
.y39{bottom:110.400000pt;}
.y2{bottom:111.706667pt;}
.ye1{bottom:113.920000pt;}
.y81{bottom:114.240000pt;}
.y8d{bottom:119.840000pt;}
.yb9{bottom:120.000000pt;}
.y15e{bottom:120.160000pt;}
.y68{bottom:122.080000pt;}
.y131{bottom:125.280000pt;}
.y38{bottom:128.000000pt;}
.y15b{bottom:131.840000pt;}
.ydf{bottom:132.320000pt;}
.yf8{bottom:134.906667pt;}
.y8c{bottom:137.466667pt;}
.y15d{bottom:137.786667pt;}
.y67{bottom:139.866667pt;}
.yb8{bottom:140.026667pt;}
.y130{bottom:142.906667pt;}
.y37{bottom:145.626667pt;}
.y15a{bottom:149.466667pt;}
.yde{bottom:150.586667pt;}
.y8b{bottom:155.066667pt;}
.y66{bottom:157.466667pt;}
.y12f{bottom:160.666667pt;}
.y36{bottom:163.226667pt;}
.y159{bottom:167.226667pt;}
.ydd{bottom:168.826667pt;}
.y10b{bottom:170.906667pt;}
.y8a{bottom:172.666667pt;}
.y65{bottom:175.066667pt;}
.yb7{bottom:175.866667pt;}
.y12e{bottom:178.266667pt;}
.y35{bottom:180.986667pt;}
.y158{bottom:184.826667pt;}
.ydc{bottom:187.226667pt;}
.y89{bottom:190.266667pt;}
.y64{bottom:192.666667pt;}
.yb6{bottom:195.866667pt;}
.y34{bottom:198.586667pt;}
.y157{bottom:202.426667pt;}
.ydb{bottom:205.466667pt;}
.y10a{bottom:206.746667pt;}
.y88{bottom:208.026667pt;}
.y63{bottom:210.266667pt;}
.y108{bottom:211.706667pt;}
.y12d{bottom:213.466667pt;}
.yb5{bottom:215.866667pt;}
.y33{bottom:216.186667pt;}
.y156{bottom:220.026667pt;}
.y80{bottom:221.146667pt;}
.yda{bottom:223.706667pt;}
.y62{bottom:228.026667pt;}
.y12c{bottom:231.066667pt;}
.y32{bottom:233.786667pt;}
.yb4{bottom:235.866667pt;}
.y155{bottom:237.626667pt;}
.y87{bottom:239.386667pt;}
.yd9{bottom:242.106667pt;}
.y109{bottom:242.746667pt;}
.y61{bottom:245.626667pt;}
.y12b{bottom:248.826667pt;}
.y31{bottom:251.386667pt;}
.y154{bottom:255.386667pt;}
.y86{bottom:257.786667pt;}
.yd8{bottom:260.346667pt;}
.y60{bottom:263.226667pt;}
.y12a{bottom:266.426667pt;}
.y30{bottom:269.146667pt;}
.yb3{bottom:271.866667pt;}
.y153{bottom:272.986667pt;}
.y84{bottom:276.026667pt;}
.yd7{bottom:278.746667pt;}
.y5f{bottom:280.826667pt;}
.y129{bottom:284.026667pt;}
.y152{bottom:290.586667pt;}
.yb2{bottom:292.506667pt;}
.yed{bottom:292.666667pt;}
.y2f{bottom:294.746667pt;}
.yf7{bottom:295.426667pt;}
.yd6{bottom:296.986667pt;}
.y5e{bottom:298.426667pt;}
.y128{bottom:301.626667pt;}
.y151{bottom:308.186667pt;}
.y83{bottom:311.866667pt;}
.y2e{bottom:312.346667pt;}
.yb1{bottom:312.506667pt;}
.yf6{bottom:313.026667pt;}
.yee{bottom:314.586667pt;}
.yd5{bottom:315.226667pt;}
.y5d{bottom:316.186667pt;}
.y127{bottom:319.226667pt;}
.y150{bottom:325.786667pt;}
.y2d{bottom:329.946667pt;}
.y82{bottom:330.266667pt;}
.yf5{bottom:330.626667pt;}
.yd4{bottom:333.626667pt;}
.y5c{bottom:333.786667pt;}
.y126{bottom:336.986667pt;}
.y14f{bottom:343.546667pt;}
.y2c{bottom:347.546667pt;}
.yf4{bottom:348.226667pt;}
.yb0{bottom:348.346667pt;}
.y7b{bottom:348.506667pt;}
.y106{bottom:350.586667pt;}
.y5b{bottom:351.386667pt;}
.yd2{bottom:351.866667pt;}
.y125{bottom:354.586667pt;}
.y104{bottom:355.426667pt;}
.y14e{bottom:361.186667pt;}
.yf3{bottom:365.826667pt;}
.y7f{bottom:366.946667pt;}
.yae{bottom:368.386667pt;}
.y5a{bottom:369.026667pt;}
.yd1{bottom:370.146667pt;}
.y124{bottom:372.226667pt;}
.y2b{bottom:373.346667pt;}
.y14d{bottom:378.786667pt;}
.yf2{bottom:383.426667pt;}
.y7e{bottom:385.186667pt;}
.y105{bottom:386.466667pt;}
.y59{bottom:386.626667pt;}
.yd0{bottom:388.546667pt;}
.y123{bottom:389.826667pt;}
.y2a{bottom:390.946667pt;}
.y14c{bottom:396.386667pt;}
.yf1{bottom:401.186667pt;}
.y7d{bottom:403.426667pt;}
.y58{bottom:404.386667pt;}
.ycf{bottom:406.786667pt;}
.y122{bottom:407.426667pt;}
.y14b{bottom:413.986667pt;}
.y29{bottom:416.546667pt;}
.yf0{bottom:418.786667pt;}
.y78{bottom:421.826667pt;}
.y57{bottom:421.986667pt;}
.y103{bottom:422.466667pt;}
.yce{bottom:425.026667pt;}
.y121{bottom:425.186667pt;}
.y14a{bottom:431.746667pt;}
.y28{bottom:434.146667pt;}
.yef{bottom:436.386667pt;}
.y56{bottom:439.586667pt;}
.y7a{bottom:440.066667pt;}
.yad{bottom:440.386667pt;}
.y120{bottom:442.786667pt;}
.ycd{bottom:443.426667pt;}
.y149{bottom:449.346667pt;}
.y27{bottom:451.746667pt;}
.y55{bottom:457.186667pt;}
.y72{bottom:458.306667pt;}
.y11f{bottom:460.386667pt;}
.yc9{bottom:461.666667pt;}
.y26{bottom:469.506667pt;}
.y54{bottom:474.786667pt;}
.y148{bottom:474.946667pt;}
.yac{bottom:476.226667pt;}
.y77{bottom:476.706667pt;}
.y11e{bottom:477.986667pt;}
.y25{bottom:487.106667pt;}
.y53{bottom:492.546667pt;}
.y102{bottom:494.306667pt;}
.y76{bottom:494.946667pt;}
.y11d{bottom:495.586667pt;}
.ycc{bottom:497.666667pt;}
.y24{bottom:504.706667pt;}
.y52{bottom:510.146667pt;}
.y101{bottom:512.546667pt;}
.y74{bottom:513.186667pt;}
.y11c{bottom:513.346667pt;}
.ya9{bottom:515.426667pt;}
.y23{bottom:522.306667pt;}
.y51{bottom:527.746667pt;}
.y11b{bottom:530.946667pt;}
.y70{bottom:531.586667pt;}
.yc8{bottom:533.506667pt;}
.y22{bottom:539.906667pt;}
.y50{bottom:545.346667pt;}
.y147{bottom:545.506667pt;}
.y100{bottom:548.546667pt;}
.ya6{bottom:554.626667pt;}
.y6f{bottom:554.946667pt;}
.yc7{bottom:557.026667pt;}
.y21{bottom:557.666667pt;}
.y143{bottom:558.626667pt;}
.y4f{bottom:562.946667pt;}
.y11a{bottom:566.146667pt;}
.y6e{bottom:572.706667pt;}
.yc6{bottom:574.626667pt;}
.y20{bottom:575.266667pt;}
.y4e{bottom:580.733333pt;}
.y119{bottom:583.773333pt;}
.yff{bottom:584.413333pt;}
.y6d{bottom:590.333333pt;}
.ya4{bottom:590.973333pt;}
.yc5{bottom:592.253333pt;}
.y1f{bottom:592.893333pt;}
.y4d{bottom:598.333333pt;}
.y118{bottom:601.533333pt;}
.y6c{bottom:607.933333pt;}
.yc4{bottom:610.013333pt;}
.y1e{bottom:610.493333pt;}
.ya2{bottom:611.613333pt;}
.y4c{bottom:615.933333pt;}
.yf9{bottom:616.066667pt;}
.y117{bottom:619.133333pt;}
.yfe{bottom:620.413333pt;}
.y6b{bottom:625.533333pt;}
.yc3{bottom:627.613333pt;}
.y1d{bottom:628.093333pt;}
.y140{bottom:632.893333pt;}
.y4b{bottom:633.533333pt;}
.ya1{bottom:636.733333pt;}
.yc2{bottom:640.733333pt;}
.y6a{bottom:643.133333pt;}
.y1c{bottom:645.853333pt;}
.y4a{bottom:651.133333pt;}
.ya0{bottom:654.333333pt;}
.yfd{bottom:656.413333pt;}
.y69{bottom:660.893333pt;}
.yfb{bottom:661.213333pt;}
.y1b{bottom:663.453333pt;}
.y49{bottom:668.893333pt;}
.y116{bottom:671.933333pt;}
.y9f{bottom:672.093333pt;}
.yc1{bottom:676.573333pt;}
.y1a{bottom:681.053333pt;}
.y114{bottom:685.213333pt;}
.y48{bottom:686.493333pt;}
.y9e{bottom:689.693333pt;}
.y13b{bottom:690.173333pt;}
.yfc{bottom:692.253333pt;}
.y19{bottom:698.653333pt;}
.y47{bottom:704.093333pt;}
.y9d{bottom:707.293333pt;}
.yc0{bottom:712.573333pt;}
.y18{bottom:716.253333pt;}
.y112{bottom:721.053333pt;}
.y46{bottom:721.693333pt;}
.yec{bottom:728.253333pt;}
.y9c{bottom:732.893333pt;}
.y17{bottom:734.013333pt;}
.y45{bottom:739.293333pt;}
.ybf{bottom:748.573333pt;}
.y9b{bottom:750.493333pt;}
.y16{bottom:751.613333pt;}
.y44{bottom:757.053333pt;}
.yeb{bottom:764.093333pt;}
.y137{bottom:764.413333pt;}
.y9a{bottom:768.253333pt;}
.y15{bottom:769.213333pt;}
.y43{bottom:774.653333pt;}
.y93{bottom:781.373333pt;}
.ybd{bottom:784.413333pt;}
.yea{bottom:787.613333pt;}
.y14{bottom:791.453333pt;}
.y42{bottom:792.253333pt;}
.y99{bottom:799.653333pt;}
.ye9{bottom:805.253333pt;}
.y13{bottom:809.093333pt;}
.y41{bottom:809.893333pt;}
.y111{bottom:810.533333pt;}
.y96{bottom:817.893333pt;}
.ye8{bottom:818.373333pt;}
.ybc{bottom:820.453333pt;}
.y134{bottom:821.733333pt;}
.y12{bottom:822.693333pt;}
.y40{bottom:827.493333pt;}
.ye7{bottom:836.773333pt;}
.y11{bottom:842.053333pt;}
.y3f{bottom:845.253333pt;}
.y110{bottom:846.533333pt;}
.ye6{bottom:855.013333pt;}
.ybb{bottom:856.293333pt;}
.y3e{bottom:862.853333pt;}
.y91{bottom:863.973333pt;}
.y10{bottom:864.133333pt;}
.ye5{bottom:873.253333pt;}
.y3d{bottom:880.453333pt;}
.y10d{bottom:882.533333pt;}
.y8f{bottom:887.973333pt;}
.ye4{bottom:891.653333pt;}
.yf{bottom:892.293333pt;}
.y3c{bottom:898.053333pt;}
.ye3{bottom:909.893333pt;}
.y3b{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.851250pt;}
.h11{height:17.600000pt;}
.h16{height:17.632000pt;}
.h13{height:17.760000pt;}
.h22{height:19.232000pt;}
.hb{height:19.360000pt;}
.h21{height:19.392000pt;}
.h1d{height:20.000000pt;}
.h19{height:21.920000pt;}
.h1a{height:23.360000pt;}
.hd{height:24.991875pt;}
.h7{height:29.760000pt;}
.h18{height:35.200000pt;}
.h29{height:35.232000pt;}
.h20{height:35.360000pt;}
.h23{height:35.392000pt;}
.h1e{height:35.712000pt;}
.h14{height:35.840000pt;}
.hf{height:37.479688pt;}
.he{height:38.413438pt;}
.h1f{height:38.560000pt;}
.h10{height:38.672812pt;}
.h30{height:38.828437pt;}
.h4{height:41.543750pt;}
.ha{height:42.578750pt;}
.h36{height:43.108125pt;}
.h2c{height:44.480000pt;}
.h2d{height:44.960000pt;}
.h1c{height:45.440000pt;}
.h9{height:47.310625pt;}
.h2e{height:52.960000pt;}
.h3{height:56.445312pt;}
.h34{height:56.480000pt;}
.h32{height:56.672000pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h24{height:71.200000pt;}
.h15{height:72.512000pt;}
.h12{height:72.640000pt;}
.h33{height:73.600000pt;}
.h35{height:73.632000pt;}
.h1b{height:81.952000pt;}
.h31{height:88.160000pt;}
.h2f{height:88.800000pt;}
.h5{height:100.032000pt;}
.h17{height:126.720000pt;}
.h2{height:130.432000pt;}
.h2b{height:224.186667pt;}
.h25{height:305.146667pt;}
.h2a{height:367.906667pt;}
.h26{height:448.866667pt;}
.h27{height:628.546667pt;}
.h28{height:673.693333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w17{width:49.760000pt;}
.w1c{width:49.792000pt;}
.w13{width:53.632000pt;}
.w21{width:55.552000pt;}
.w20{width:56.000000pt;}
.w23{width:56.032000pt;}
.w22{width:56.160000pt;}
.we{width:56.992000pt;}
.w10{width:59.360000pt;}
.w1d{width:68.000000pt;}
.w1a{width:71.872000pt;}
.w18{width:72.000000pt;}
.w11{width:86.752000pt;}
.w1e{width:89.152000pt;}
.w25{width:92.352000pt;}
.w1b{width:92.640000pt;}
.w19{width:92.832000pt;}
.w26{width:100.960000pt;}
.w27{width:101.792000pt;}
.wd{width:104.032000pt;}
.wb{width:113.120000pt;}
.w28{width:113.312000pt;}
.w3{width:117.152000pt;}
.w8{width:137.760000pt;}
.w29{width:137.786667pt;}
.w2a{width:146.266667pt;}
.w6{width:199.706667pt;}
.w16{width:208.226667pt;}
.w15{width:215.706667pt;}
.w14{width:215.866667pt;}
.w7{width:261.826667pt;}
.w24{width:284.066667pt;}
.wc{width:393.026667pt;}
.w1f{width:413.213333pt;}
.wa{width:497.693333pt;}
.wf{width:499.133333pt;}
.w2{width:581.893333pt;}
.w9{width:611.453333pt;}
.w12{width:695.360000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x30{left:9.760000pt;}
.x27{left:10.720000pt;}
.x18{left:12.160000pt;}
.x14{left:13.280000pt;}
.x1b{left:14.560000pt;}
.x33{left:15.680000pt;}
.x31{left:17.600000pt;}
.x1d{left:20.160000pt;}
.x2d{left:21.120000pt;}
.x1a{left:23.360000pt;}
.x34{left:24.800000pt;}
.x1f{left:26.752000pt;}
.x32{left:28.040000pt;}
.x25{left:29.000000pt;}
.x1c{left:31.680000pt;}
.x37{left:33.920000pt;}
.x35{left:36.026667pt;}
.x2f{left:39.040000pt;}
.x38{left:44.480000pt;}
.x36{left:46.240000pt;}
.x1{left:47.360000pt;}
.x13{left:48.640000pt;}
.x21{left:53.114667pt;}
.x50{left:55.386667pt;}
.x3f{left:57.760000pt;}
.x4d{left:62.106667pt;}
.x47{left:65.466667pt;}
.x4a{left:69.760000pt;}
.x48{left:70.720000pt;}
.xc{left:71.999988pt;}
.x49{left:74.080000pt;}
.x26{left:77.800000pt;}
.x45{left:78.746667pt;}
.x6{left:80.191988pt;}
.x23{left:81.626667pt;}
.x4b{left:83.066667pt;}
.x46{left:85.466667pt;}
.x4c{left:86.426667pt;}
.x4e{left:87.360000pt;}
.x10{left:91.232000pt;}
.x4f{left:94.080000pt;}
.xd{left:96.672000pt;}
.x51{left:99.706667pt;}
.x20{left:102.912000pt;}
.x4{left:105.146667pt;}
.x15{left:106.272000pt;}
.x28{left:153.306667pt;}
.x39{left:179.066667pt;}
.x44{left:195.546667pt;}
.x16{left:213.634667pt;}
.x29{left:225.946667pt;}
.x7{left:236.226655pt;}
.x9{left:271.586655pt;}
.x1e{left:274.306667pt;}
.xb{left:283.106655pt;}
.xa{left:289.026655pt;}
.xe{left:297.026667pt;}
.x22{left:319.426667pt;}
.x40{left:342.466667pt;}
.x2a{left:369.826667pt;}
.x8{left:396.893322pt;}
.x41{left:435.453333pt;}
.x2b{left:442.493333pt;}
.x3a{left:462.493333pt;}
.x12{left:484.893333pt;}
.x3b{left:519.293333pt;}
.x24{left:535.773333pt;}
.x42{left:537.053333pt;}
.xf{left:559.493333pt;}
.x3c{left:575.493333pt;}
.x2c{left:586.213333pt;}
.x11{left:589.573333pt;}
.x17{left:606.053333pt;}
.x3{left:629.253333pt;}
.x3d{left:632.293333pt;}
.x43{left:639.493333pt;}
.x2e{left:654.853333pt;}
.x19{left:666.053333pt;}
.x3e{left:688.933333pt;}
.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; }
  