
    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_b45f2ac76888442f750b087f.woff2')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_5d5944ce2f520c63a33a8d90.woff2')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_32e2c6790cc8ffbc57e1ced8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7e290a6c231a17fcf032841d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f54859ba6ebf0d0857a1565d.woff2')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_3bd38e084134d3ad8b9106b9.woff2')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_5171104973ebd2e7179e8869.woff2')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2b191137705feaf864d796aa.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bac8ba801fbdf9109a365763.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls15{letter-spacing:-0.399000px;}
.ls11{letter-spacing:-0.186600px;}
.ls1a{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.173520px;}
.lsf{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls16{letter-spacing:0.453600px;}
.ls13{letter-spacing:7.293600px;}
.ls12{letter-spacing:7.653600px;}
.ls18{letter-spacing:47.726640px;}
.lsd{letter-spacing:63.566640px;}
.ls17{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;}
.ws9{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.425600px;}
.ws6{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.072800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._b{margin-left:-3.366600px;}
._e{margin-left:-2.284800px;}
._0{margin-left:-1.140000px;}
._3{width:1.174152px;}
._7{width:2.457791px;}
._8{width:3.614208px;}
._f{width:4.650452px;}
._9{width:5.734033px;}
._c{width:7.191767px;}
._1{width:8.388000px;}
._2{width:9.394812px;}
._6{width:10.634400px;}
._5{width:11.723400px;}
._10{width:14.789520px;}
._a{width:15.811800px;}
._4{width:17.254200px;}
._d{width:19.238400px;}
._11{width:21.342600px;}
._16{width:23.446800px;}
._23{width:28.316520px;}
._22{width:29.338560px;}
._1f{width:32.705280px;}
._20{width:33.847560px;}
._1e{width:36.372600px;}
._21{width:37.635120px;}
._26{width:51.522840px;}
._17{width:56.452680px;}
._18{width:57.835440px;}
._12{width:69.438600px;}
._27{width:78.576840px;}
._25{width:81.282240px;}
._13{width:91.322280px;}
._14{width:92.344320px;}
._24{width:126.372240px;}
._19{width:145.971360px;}
._1d{width:211.261680px;}
._1a{width:238.255560px;}
._1b{width:251.662320px;}
._1c{width:365.890320px;}
._15{width:496.891800px;}
.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;}
.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;}
.y99{bottom:7.830000px;}
.y97{bottom:7.920000px;}
.ya5{bottom:7.950000px;}
.ybf{bottom:25.380000px;}
.yc8{bottom:25.470000px;}
.y9b{bottom:26.550000px;}
.ya7{bottom:26.640000px;}
.ya4{bottom:26.670000px;}
.yc0{bottom:29.880000px;}
.yd3{bottom:29.970000px;}
.yd0{bottom:43.020000px;}
.ybe{bottom:47.520000px;}
.ycb{bottom:47.610000px;}
.yd2{bottom:52.020000px;}
.ycf{bottom:60.570000px;}
.ybd{bottom:65.070000px;}
.yc7{bottom:69.570000px;}
.yca{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.yd6{bottom:74.070000px;}
.y29{bottom:74.190000px;}
.yce{bottom:78.210000px;}
.ybc{bottom:82.710000px;}
.yc6{bottom:87.210000px;}
.yd5{bottom:91.620000px;}
.ycd{bottom:95.760000px;}
.y1{bottom:101.640000px;}
.yc5{bottom:109.260000px;}
.y88{bottom:114.510000px;}
.yf8{bottom:120.360000px;}
.yde{bottom:123.600000px;}
.y59{bottom:125.580000px;}
.yc4{bottom:126.810000px;}
.y126{bottom:129.180000px;}
.y87{bottom:132.060000px;}
.yb6{bottom:135.120000px;}
.ydd{bottom:141.240000px;}
.y27{bottom:142.050000px;}
.yc3{bottom:144.450000px;}
.y14d{bottom:149.250000px;}
.y86{bottom:149.700000px;}
.yf7{bottom:152.580000px;}
.yb5{bottom:152.760000px;}
.ydc{bottom:158.790000px;}
.y26{bottom:159.600000px;}
.y58{bottom:161.130000px;}
.yc2{bottom:162.000000px;}
.y125{bottom:164.820000px;}
.y14c{bottom:166.890000px;}
.y85{bottom:167.250000px;}
.yb4{bottom:170.310000px;}
.ydb{bottom:176.430000px;}
.y25{bottom:177.240000px;}
.y57{bottom:178.770000px;}
.y124{bottom:182.370000px;}
.y14b{bottom:184.440000px;}
.y84{bottom:184.890000px;}
.yb3{bottom:187.860000px;}
.yda{bottom:193.980000px;}
.y56{bottom:196.320000px;}
.y123{bottom:199.920000px;}
.y83{bottom:202.440000px;}
.yb2{bottom:205.500000px;}
.y14a{bottom:211.080000px;}
.yd9{bottom:211.530000px;}
.y24{bottom:212.790000px;}
.y55{bottom:213.960000px;}
.y122{bottom:217.560000px;}
.y82{bottom:219.990000px;}
.y149{bottom:228.630000px;}
.yd8{bottom:229.170000px;}
.y23{bottom:230.340000px;}
.y54{bottom:231.510000px;}
.y121{bottom:235.110000px;}
.y81{bottom:237.630000px;}
.yb1{bottom:241.050000px;}
.y148{bottom:246.180000px;}
.yd7{bottom:246.720000px;}
.y22{bottom:247.980000px;}
.y53{bottom:249.060000px;}
.y120{bottom:252.750000px;}
.yb0{bottom:258.690000px;}
.y80{bottom:264.540000px;}
.y21{bottom:265.530000px;}
.y52{bottom:266.700000px;}
.y11f{bottom:270.300000px;}
.y147{bottom:272.820000px;}
.yaf{bottom:276.240000px;}
.yd4{bottom:279.750000px;}
.y20{bottom:283.170000px;}
.y51{bottom:284.250000px;}
.y11e{bottom:287.850000px;}
.y146{bottom:290.370000px;}
.yae{bottom:293.790000px;}
.y1f{bottom:300.720000px;}
.y50{bottom:301.890000px;}
.y11d{bottom:305.490000px;}
.y145{bottom:308.010000px;}
.yad{bottom:311.430000px;}
.y7f{bottom:312.780000px;}
.y4f{bottom:319.440000px;}
.y11c{bottom:323.040000px;}
.yac{bottom:328.980000px;}
.y7e{bottom:330.330000px;}
.y144{bottom:334.560000px;}
.y1e{bottom:336.270000px;}
.y11b{bottom:340.680000px;}
.y4e{bottom:345.990000px;}
.yab{bottom:346.620000px;}
.y7d{bottom:347.970000px;}
.y143{bottom:352.110000px;}
.y1d{bottom:353.910000px;}
.y11a{bottom:358.230000px;}
.yaa{bottom:364.170000px;}
.y7c{bottom:365.520000px;}
.y1c{bottom:371.460000px;}
.y119{bottom:375.780000px;}
.y142{bottom:378.750000px;}
.y4d{bottom:381.630000px;}
.ya9{bottom:381.720000px;}
.y7b{bottom:383.160000px;}
.y1b{bottom:389.100000px;}
.yd1{bottom:390.900000px;}
.y118{bottom:393.420000px;}
.y141{bottom:396.300000px;}
.y4c{bottom:399.180000px;}
.y7a{bottom:400.710000px;}
.y1a{bottom:406.650000px;}
.y117{bottom:410.970000px;}
.ya8{bottom:414.750000px;}
.y4b{bottom:416.730000px;}
.y79{bottom:418.260000px;}
.y140{bottom:422.940000px;}
.y116{bottom:428.610000px;}
.y19{bottom:433.560000px;}
.y4a{bottom:434.370000px;}
.y13f{bottom:440.490000px;}
.ya6{bottom:442.020000px;}
.y78{bottom:444.900000px;}
.y49{bottom:451.920000px;}
.y115{bottom:455.160000px;}
.y13e{bottom:458.040000px;}
.ya3{bottom:469.380000px;}
.y48{bottom:469.560000px;}
.ycc{bottom:480.030000px;}
.y77{bottom:480.480000px;}
.y18{bottom:482.190000px;}
.y13d{bottom:484.710000px;}
.y47{bottom:487.140000px;}
.y114{bottom:490.740000px;}
.ya2{bottom:496.770000px;}
.y76{bottom:498.120000px;}
.y13c{bottom:502.260000px;}
.y46{bottom:504.690000px;}
.y113{bottom:508.380000px;}
.y75{bottom:515.670000px;}
.y17{bottom:519.180000px;}
.y13b{bottom:519.900000px;}
.yf6{bottom:522.690000px;}
.ya1{bottom:524.130000px;}
.y112{bottom:525.930000px;}
.y45{bottom:531.330000px;}
.y16{bottom:536.820000px;}
.y15c{bottom:539.880000px;}
.yf5{bottom:540.330000px;}
.y111{bottom:543.480000px;}
.y13a{bottom:546.450000px;}
.y74{bottom:551.220000px;}
.ya0{bottom:551.400000px;}
.y15{bottom:554.370000px;}
.y15b{bottom:557.430000px;}
.yf4{bottom:557.880000px;}
.y110{bottom:561.120000px;}
.y139{bottom:564.000000px;}
.y44{bottom:567.240000px;}
.y73{bottom:568.860000px;}
.y14{bottom:571.920000px;}
.y10f{bottom:578.670000px;}
.y9f{bottom:578.760000px;}
.y15a{bottom:584.070000px;}
.y72{bottom:586.410000px;}
.y13{bottom:589.560000px;}
.y138{bottom:590.640000px;}
.yf3{bottom:593.430000px;}
.yc9{bottom:595.230000px;}
.y10e{bottom:596.310000px;}
.y159{bottom:601.620000px;}
.y71{bottom:604.050000px;}
.y9e{bottom:606.120000px;}
.y12{bottom:607.110000px;}
.yf2{bottom:611.070000px;}
.y10d{bottom:613.860000px;}
.y43{bottom:615.480000px;}
.y137{bottom:617.190000px;}
.y70{bottom:621.600000px;}
.y11{bottom:624.750000px;}
.y158{bottom:628.260000px;}
.yf1{bottom:628.620000px;}
.y10c{bottom:631.410000px;}
.y42{bottom:633.030000px;}
.y9d{bottom:633.480000px;}
.y6f{bottom:639.150000px;}
.y10{bottom:642.300000px;}
.y136{bottom:643.830000px;}
.y157{bottom:645.810000px;}
.yf0{bottom:646.260000px;}
.y10b{bottom:649.050000px;}
.y41{bottom:651.480000px;}
.y6e{bottom:656.790000px;}
.yf{bottom:659.850000px;}
.y9c{bottom:660.750000px;}
.yef{bottom:663.810000px;}
.y10a{bottom:666.600000px;}
.y40{bottom:669.840000px;}
.y135{bottom:670.380000px;}
.y156{bottom:672.360000px;}
.y6d{bottom:674.340000px;}
.ye{bottom:677.490000px;}
.yee{bottom:681.360000px;}
.y109{bottom:684.240000px;}
.y134{bottom:687.930000px;}
.y9a{bottom:688.110000px;}
.y3f{bottom:688.290000px;}
.y155{bottom:690.000000px;}
.yd{bottom:695.040000px;}
.yed{bottom:699.000000px;}
.y6c{bottom:700.980000px;}
.yc1{bottom:701.970000px;}
.y3e{bottom:706.740000px;}
.y154{bottom:707.550000px;}
.yc{bottom:712.680000px;}
.y133{bottom:714.570000px;}
.y98{bottom:715.470000px;}
.y108{bottom:719.790000px;}
.yb{bottom:730.230000px;}
.y132{bottom:732.120000px;}
.y3d{bottom:734.190000px;}
.yec{bottom:734.550000px;}
.y6b{bottom:736.530000px;}
.y107{bottom:737.340000px;}
.y96{bottom:742.740000px;}
.y153{bottom:751.740000px;}
.yeb{bottom:752.190000px;}
.y6a{bottom:754.080000px;}
.y106{bottom:754.980000px;}
.ya{bottom:757.140000px;}
.y131{bottom:758.670000px;}
.y3c{bottom:769.740000px;}
.y69{bottom:772.530000px;}
.y130{bottom:776.310000px;}
.y152{bottom:778.290000px;}
.y3b{bottom:787.290000px;}
.y68{bottom:790.080000px;}
.y105{bottom:790.170000px;}
.y95{bottom:791.520000px;}
.y151{bottom:795.930000px;}
.y12f{bottom:802.860000px;}
.y3a{bottom:804.930000px;}
.y9{bottom:805.380000px;}
.y104{bottom:807.720000px;}
.y67{bottom:808.530000px;}
.y12e{bottom:820.500000px;}
.y39{bottom:822.480000px;}
.yea{bottom:822.930000px;}
.y103{bottom:825.270000px;}
.y66{bottom:826.080000px;}
.y94{bottom:827.070000px;}
.y38{bottom:840.030000px;}
.ye9{bottom:840.480000px;}
.y8{bottom:841.200000px;}
.y102{bottom:842.910000px;}
.y65{bottom:844.530000px;}
.y12d{bottom:847.410000px;}
.y93{bottom:853.620000px;}
.y37{bottom:857.670000px;}
.ye8{bottom:858.030000px;}
.y101{bottom:860.460000px;}
.y64{bottom:862.080000px;}
.ye7{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.y100{bottom:878.100000px;}
.ybb{bottom:883.500000px;}
.y36{bottom:884.220000px;}
.y92{bottom:889.260000px;}
.ye6{bottom:893.220000px;}
.yff{bottom:895.650000px;}
.y63{bottom:898.530000px;}
.y150{bottom:901.860000px;}
.y91{bottom:906.810000px;}
.ye5{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y35{bottom:919.860000px;}
.y90{bottom:924.450000px;}
.ye4{bottom:928.410000px;}
.y12c{bottom:930.840000px;}
.y62{bottom:934.080000px;}
.y34{bottom:937.410000px;}
.yfe{bottom:940.110000px;}
.y8f{bottom:942.000000px;}
.y14f{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y61{bottom:951.630000px;}
.y33{bottom:954.960000px;}
.y12b{bottom:957.750000px;}
.y8e{bottom:959.550000px;}
.ye3{bottom:963.960000px;}
.y60{bottom:970.080000px;}
.y32{bottom:972.600000px;}
.y8d{bottom:977.190000px;}
.ye2{bottom:981.600000px;}
.yba{bottom:985.650000px;}
.y4{bottom:987.630000px;}
.yfd{bottom:988.440000px;}
.y31{bottom:990.150000px;}
.y8c{bottom:994.740000px;}
.y12a{bottom:995.100000px;}
.ye1{bottom:999.150000px;}
.yfc{bottom:1005.990000px;}
.y5f{bottom:1006.080000px;}
.y30{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.ye0{bottom:1016.820000px;}
.yfb{bottom:1023.570000px;}
.y5e{bottom:1023.660000px;}
.y2f{bottom:1025.370000px;}
.y8b{bottom:1029.960000px;}
.yb9{bottom:1034.370000px;}
.yfa{bottom:1041.210000px;}
.y5d{bottom:1042.110000px;}
.y2e{bottom:1042.920000px;}
.y129{bottom:1043.370000px;}
.y14e{bottom:1051.920000px;}
.ydf{bottom:1052.370000px;}
.y8a{bottom:1056.870000px;}
.y5c{bottom:1059.660000px;}
.y2d{bottom:1060.560000px;}
.y128{bottom:1060.920000px;}
.yf9{bottom:1068.120000px;}
.yb8{bottom:1069.920000px;}
.y127{bottom:1078.560000px;}
.y2c{bottom:1087.110000px;}
.yb7{bottom:1087.560000px;}
.y5b{bottom:1096.110000px;}
.y89{bottom:1105.110000px;}
.y5a{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hd{height:26.580000px;}
.ha{height:26.640000px;}
.hc{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:61.793886px;}
.h7{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h14{height:74.004654px;}
.h12{height:88.320000px;}
.he{height:101.430000px;}
.h10{height:105.930000px;}
.h13{height:110.340000px;}
.h11{height:114.480000px;}
.hf{height:180.720000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:113.130000px;}
.w6{width:123.120000px;}
.w7{width:154.740000px;}
.w3{width:172.470000px;}
.w8{width:255.870000px;}
.w4{width:311.160000px;}
.w9{width:343.560000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x6{left:85.590000px;}
.x4{left:95.039987px;}
.xf{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:202.799987px;}
.xb{left:224.310000px;}
.xe{left:251.129987px;}
.x8{left:258.780000px;}
.xc{left:480.900000px;}
.x9{left:570.660000px;}
.xa{left:684.510000px;}
.xd{left:756.059987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.354667pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls1a{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.154240pt;}
.lsf{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls16{letter-spacing:0.403200pt;}
.ls13{letter-spacing:6.483200pt;}
.ls12{letter-spacing:6.803200pt;}
.ls18{letter-spacing:42.423680pt;}
.lsd{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.933867pt;}
.ws6{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.620267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._b{margin-left:-2.992533pt;}
._e{margin-left:-2.030934pt;}
._0{margin-left:-1.013333pt;}
._3{width:1.043691pt;}
._7{width:2.184703pt;}
._8{width:3.212630pt;}
._f{width:4.133735pt;}
._9{width:5.096918pt;}
._c{width:6.392682pt;}
._1{width:7.456000pt;}
._2{width:8.350944pt;}
._6{width:9.452800pt;}
._5{width:10.420800pt;}
._10{width:13.146240pt;}
._a{width:14.054934pt;}
._4{width:15.337066pt;}
._d{width:17.100800pt;}
._11{width:18.971200pt;}
._16{width:20.841600pt;}
._23{width:25.170240pt;}
._22{width:26.078720pt;}
._1f{width:29.071360pt;}
._20{width:30.086720pt;}
._1e{width:32.331200pt;}
._21{width:33.453440pt;}
._26{width:45.798080pt;}
._17{width:50.180160pt;}
._18{width:51.409280pt;}
._12{width:61.723200pt;}
._27{width:69.846080pt;}
._25{width:72.250880pt;}
._13{width:81.175360pt;}
._14{width:82.083840pt;}
._24{width:112.330880pt;}
._19{width:129.752320pt;}
._1d{width:187.788160pt;}
._1a{width:211.782720pt;}
._1b{width:223.699840pt;}
._1c{width:325.235840pt;}
._15{width:441.681600pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:6.960000pt;}
.y97{bottom:7.040000pt;}
.ya5{bottom:7.066667pt;}
.ybf{bottom:22.560000pt;}
.yc8{bottom:22.640000pt;}
.y9b{bottom:23.600000pt;}
.ya7{bottom:23.680000pt;}
.ya4{bottom:23.706667pt;}
.yc0{bottom:26.560000pt;}
.yd3{bottom:26.640000pt;}
.yd0{bottom:38.240000pt;}
.ybe{bottom:42.240000pt;}
.ycb{bottom:42.320000pt;}
.yd2{bottom:46.240000pt;}
.ycf{bottom:53.840000pt;}
.ybd{bottom:57.840000pt;}
.yc7{bottom:61.840000pt;}
.yca{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.yd6{bottom:65.840000pt;}
.y29{bottom:65.946667pt;}
.yce{bottom:69.520000pt;}
.ybc{bottom:73.520000pt;}
.yc6{bottom:77.520000pt;}
.yd5{bottom:81.440000pt;}
.ycd{bottom:85.120000pt;}
.y1{bottom:90.346667pt;}
.yc5{bottom:97.120000pt;}
.y88{bottom:101.786667pt;}
.yf8{bottom:106.986667pt;}
.yde{bottom:109.866667pt;}
.y59{bottom:111.626667pt;}
.yc4{bottom:112.720000pt;}
.y126{bottom:114.826667pt;}
.y87{bottom:117.386667pt;}
.yb6{bottom:120.106667pt;}
.ydd{bottom:125.546667pt;}
.y27{bottom:126.266667pt;}
.yc3{bottom:128.400000pt;}
.y14d{bottom:132.666667pt;}
.y86{bottom:133.066667pt;}
.yf7{bottom:135.626667pt;}
.yb5{bottom:135.786667pt;}
.ydc{bottom:141.146667pt;}
.y26{bottom:141.866667pt;}
.y58{bottom:143.226667pt;}
.yc2{bottom:144.000000pt;}
.y125{bottom:146.506667pt;}
.y14c{bottom:148.346667pt;}
.y85{bottom:148.666667pt;}
.yb4{bottom:151.386667pt;}
.ydb{bottom:156.826667pt;}
.y25{bottom:157.546667pt;}
.y57{bottom:158.906667pt;}
.y124{bottom:162.106667pt;}
.y14b{bottom:163.946667pt;}
.y84{bottom:164.346667pt;}
.yb3{bottom:166.986667pt;}
.yda{bottom:172.426667pt;}
.y56{bottom:174.506667pt;}
.y123{bottom:177.706667pt;}
.y83{bottom:179.946667pt;}
.yb2{bottom:182.666667pt;}
.y14a{bottom:187.626667pt;}
.yd9{bottom:188.026667pt;}
.y24{bottom:189.146667pt;}
.y55{bottom:190.186667pt;}
.y122{bottom:193.386667pt;}
.y82{bottom:195.546667pt;}
.y149{bottom:203.226667pt;}
.yd8{bottom:203.706667pt;}
.y23{bottom:204.746667pt;}
.y54{bottom:205.786667pt;}
.y121{bottom:208.986667pt;}
.y81{bottom:211.226667pt;}
.yb1{bottom:214.266667pt;}
.y148{bottom:218.826667pt;}
.yd7{bottom:219.306667pt;}
.y22{bottom:220.426667pt;}
.y53{bottom:221.386667pt;}
.y120{bottom:224.666667pt;}
.yb0{bottom:229.946667pt;}
.y80{bottom:235.146667pt;}
.y21{bottom:236.026667pt;}
.y52{bottom:237.066667pt;}
.y11f{bottom:240.266667pt;}
.y147{bottom:242.506667pt;}
.yaf{bottom:245.546667pt;}
.yd4{bottom:248.666667pt;}
.y20{bottom:251.706667pt;}
.y51{bottom:252.666667pt;}
.y11e{bottom:255.866667pt;}
.y146{bottom:258.106667pt;}
.yae{bottom:261.146667pt;}
.y1f{bottom:267.306667pt;}
.y50{bottom:268.346667pt;}
.y11d{bottom:271.546667pt;}
.y145{bottom:273.786667pt;}
.yad{bottom:276.826667pt;}
.y7f{bottom:278.026667pt;}
.y4f{bottom:283.946667pt;}
.y11c{bottom:287.146667pt;}
.yac{bottom:292.426667pt;}
.y7e{bottom:293.626667pt;}
.y144{bottom:297.386667pt;}
.y1e{bottom:298.906667pt;}
.y11b{bottom:302.826667pt;}
.y4e{bottom:307.546667pt;}
.yab{bottom:308.106667pt;}
.y7d{bottom:309.306667pt;}
.y143{bottom:312.986667pt;}
.y1d{bottom:314.586667pt;}
.y11a{bottom:318.426667pt;}
.yaa{bottom:323.706667pt;}
.y7c{bottom:324.906667pt;}
.y1c{bottom:330.186667pt;}
.y119{bottom:334.026667pt;}
.y142{bottom:336.666667pt;}
.y4d{bottom:339.226667pt;}
.ya9{bottom:339.306667pt;}
.y7b{bottom:340.586667pt;}
.y1b{bottom:345.866667pt;}
.yd1{bottom:347.466667pt;}
.y118{bottom:349.706667pt;}
.y141{bottom:352.266667pt;}
.y4c{bottom:354.826667pt;}
.y7a{bottom:356.186667pt;}
.y1a{bottom:361.466667pt;}
.y117{bottom:365.306667pt;}
.ya8{bottom:368.666667pt;}
.y4b{bottom:370.426667pt;}
.y79{bottom:371.786667pt;}
.y140{bottom:375.946667pt;}
.y116{bottom:380.986667pt;}
.y19{bottom:385.386667pt;}
.y4a{bottom:386.106667pt;}
.y13f{bottom:391.546667pt;}
.ya6{bottom:392.906667pt;}
.y78{bottom:395.466667pt;}
.y49{bottom:401.706667pt;}
.y115{bottom:404.586667pt;}
.y13e{bottom:407.146667pt;}
.ya3{bottom:417.226667pt;}
.y48{bottom:417.386667pt;}
.ycc{bottom:426.693333pt;}
.y77{bottom:427.093333pt;}
.y18{bottom:428.613333pt;}
.y13d{bottom:430.853333pt;}
.y47{bottom:433.013333pt;}
.y114{bottom:436.213333pt;}
.ya2{bottom:441.573333pt;}
.y76{bottom:442.773333pt;}
.y13c{bottom:446.453333pt;}
.y46{bottom:448.613333pt;}
.y113{bottom:451.893333pt;}
.y75{bottom:458.373333pt;}
.y17{bottom:461.493333pt;}
.y13b{bottom:462.133333pt;}
.yf6{bottom:464.613333pt;}
.ya1{bottom:465.893333pt;}
.y112{bottom:467.493333pt;}
.y45{bottom:472.293333pt;}
.y16{bottom:477.173333pt;}
.y15c{bottom:479.893333pt;}
.yf5{bottom:480.293333pt;}
.y111{bottom:483.093333pt;}
.y13a{bottom:485.733333pt;}
.y74{bottom:489.973333pt;}
.ya0{bottom:490.133333pt;}
.y15{bottom:492.773333pt;}
.y15b{bottom:495.493333pt;}
.yf4{bottom:495.893333pt;}
.y110{bottom:498.773333pt;}
.y139{bottom:501.333333pt;}
.y44{bottom:504.213333pt;}
.y73{bottom:505.653333pt;}
.y14{bottom:508.373333pt;}
.y10f{bottom:514.373333pt;}
.y9f{bottom:514.453333pt;}
.y15a{bottom:519.173333pt;}
.y72{bottom:521.253333pt;}
.y13{bottom:524.053333pt;}
.y138{bottom:525.013333pt;}
.yf3{bottom:527.493333pt;}
.yc9{bottom:529.093333pt;}
.y10e{bottom:530.053333pt;}
.y159{bottom:534.773333pt;}
.y71{bottom:536.933333pt;}
.y9e{bottom:538.773333pt;}
.y12{bottom:539.653333pt;}
.yf2{bottom:543.173333pt;}
.y10d{bottom:545.653333pt;}
.y43{bottom:547.093333pt;}
.y137{bottom:548.613333pt;}
.y70{bottom:552.533333pt;}
.y11{bottom:555.333333pt;}
.y158{bottom:558.453333pt;}
.yf1{bottom:558.773333pt;}
.y10c{bottom:561.253333pt;}
.y42{bottom:562.693333pt;}
.y9d{bottom:563.093333pt;}
.y6f{bottom:568.133333pt;}
.y10{bottom:570.933333pt;}
.y136{bottom:572.293333pt;}
.y157{bottom:574.053333pt;}
.yf0{bottom:574.453333pt;}
.y10b{bottom:576.933333pt;}
.y41{bottom:579.093333pt;}
.y6e{bottom:583.813333pt;}
.yf{bottom:586.533333pt;}
.y9c{bottom:587.333333pt;}
.yef{bottom:590.053333pt;}
.y10a{bottom:592.533333pt;}
.y40{bottom:595.413333pt;}
.y135{bottom:595.893333pt;}
.y156{bottom:597.653333pt;}
.y6d{bottom:599.413333pt;}
.ye{bottom:602.213333pt;}
.yee{bottom:605.653333pt;}
.y109{bottom:608.213333pt;}
.y134{bottom:611.493333pt;}
.y9a{bottom:611.653333pt;}
.y3f{bottom:611.813333pt;}
.y155{bottom:613.333333pt;}
.yd{bottom:617.813333pt;}
.yed{bottom:621.333333pt;}
.y6c{bottom:623.093333pt;}
.yc1{bottom:623.973333pt;}
.y3e{bottom:628.213333pt;}
.y154{bottom:628.933333pt;}
.yc{bottom:633.493333pt;}
.y133{bottom:635.173333pt;}
.y98{bottom:635.973333pt;}
.y108{bottom:639.813333pt;}
.yb{bottom:649.093333pt;}
.y132{bottom:650.773333pt;}
.y3d{bottom:652.613333pt;}
.yec{bottom:652.933333pt;}
.y6b{bottom:654.693333pt;}
.y107{bottom:655.413333pt;}
.y96{bottom:660.213333pt;}
.y153{bottom:668.213333pt;}
.yeb{bottom:668.613333pt;}
.y6a{bottom:670.293333pt;}
.y106{bottom:671.093333pt;}
.ya{bottom:673.013333pt;}
.y131{bottom:674.373333pt;}
.y3c{bottom:684.213333pt;}
.y69{bottom:686.693333pt;}
.y130{bottom:690.053333pt;}
.y152{bottom:691.813333pt;}
.y3b{bottom:699.813333pt;}
.y68{bottom:702.293333pt;}
.y105{bottom:702.373333pt;}
.y95{bottom:703.573333pt;}
.y151{bottom:707.493333pt;}
.y12f{bottom:713.653333pt;}
.y3a{bottom:715.493333pt;}
.y9{bottom:715.893333pt;}
.y104{bottom:717.973333pt;}
.y67{bottom:718.693333pt;}
.y12e{bottom:729.333333pt;}
.y39{bottom:731.093333pt;}
.yea{bottom:731.493333pt;}
.y103{bottom:733.573333pt;}
.y66{bottom:734.293333pt;}
.y94{bottom:735.173333pt;}
.y38{bottom:746.693333pt;}
.ye9{bottom:747.093333pt;}
.y8{bottom:747.733333pt;}
.y102{bottom:749.253333pt;}
.y65{bottom:750.693333pt;}
.y12d{bottom:753.253333pt;}
.y93{bottom:758.773333pt;}
.y37{bottom:762.373333pt;}
.ye8{bottom:762.693333pt;}
.y101{bottom:764.853333pt;}
.y64{bottom:766.293333pt;}
.ye7{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.y100{bottom:780.533333pt;}
.ybb{bottom:785.333333pt;}
.y36{bottom:785.973333pt;}
.y92{bottom:790.453333pt;}
.ye6{bottom:793.973333pt;}
.yff{bottom:796.133333pt;}
.y63{bottom:798.693333pt;}
.y150{bottom:801.653333pt;}
.y91{bottom:806.053333pt;}
.ye5{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y35{bottom:817.653333pt;}
.y90{bottom:821.733333pt;}
.ye4{bottom:825.253333pt;}
.y12c{bottom:827.413333pt;}
.y62{bottom:830.293333pt;}
.y34{bottom:833.253333pt;}
.yfe{bottom:835.653333pt;}
.y8f{bottom:837.333333pt;}
.y14f{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y61{bottom:845.893333pt;}
.y33{bottom:848.853333pt;}
.y12b{bottom:851.333333pt;}
.y8e{bottom:852.933333pt;}
.ye3{bottom:856.853333pt;}
.y60{bottom:862.293333pt;}
.y32{bottom:864.533333pt;}
.y8d{bottom:868.613333pt;}
.ye2{bottom:872.533333pt;}
.yba{bottom:876.133333pt;}
.y4{bottom:877.893333pt;}
.yfd{bottom:878.613333pt;}
.y31{bottom:880.133333pt;}
.y8c{bottom:884.213333pt;}
.y12a{bottom:884.533333pt;}
.ye1{bottom:888.133333pt;}
.yfc{bottom:894.213333pt;}
.y5f{bottom:894.293333pt;}
.y30{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.ye0{bottom:903.840000pt;}
.yfb{bottom:909.840000pt;}
.y5e{bottom:909.920000pt;}
.y2f{bottom:911.440000pt;}
.y8b{bottom:915.520000pt;}
.yb9{bottom:919.440000pt;}
.yfa{bottom:925.520000pt;}
.y5d{bottom:926.320000pt;}
.y2e{bottom:927.040000pt;}
.y129{bottom:927.440000pt;}
.y14e{bottom:935.040000pt;}
.ydf{bottom:935.440000pt;}
.y8a{bottom:939.440000pt;}
.y5c{bottom:941.920000pt;}
.y2d{bottom:942.720000pt;}
.y128{bottom:943.040000pt;}
.yf9{bottom:949.440000pt;}
.yb8{bottom:951.040000pt;}
.y127{bottom:958.720000pt;}
.y2c{bottom:966.320000pt;}
.yb7{bottom:966.720000pt;}
.y5b{bottom:974.320000pt;}
.y89{bottom:982.320000pt;}
.y5a{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hd{height:23.626667pt;}
.ha{height:23.680000pt;}
.hc{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.927899pt;}
.h7{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h14{height:65.781915pt;}
.h12{height:78.506667pt;}
.he{height:90.160000pt;}
.h10{height:94.160000pt;}
.h13{height:98.080000pt;}
.h11{height:101.760000pt;}
.hf{height:160.640000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:100.560000pt;}
.w6{width:109.440000pt;}
.w7{width:137.546667pt;}
.w3{width:153.306667pt;}
.w8{width:227.440000pt;}
.w4{width:276.586667pt;}
.w9{width:305.386667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x6{left:76.080000pt;}
.x4{left:84.479988pt;}
.xf{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:180.266655pt;}
.xb{left:199.386667pt;}
.xe{left:223.226655pt;}
.x8{left:230.026667pt;}
.xc{left:427.466667pt;}
.x9{left:507.253333pt;}
.xa{left:608.453333pt;}
.xd{left:672.053322pt;}
.x3{left:704.053322pt;}
}




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