
    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_44ab2ef4ff2bc355e74aa6bc.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_9aeaa775ace5215aab7e7b66.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_82c2f186cbc6c0967b7921ef.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a17a8e11a9c3cf6ffbc209f4.woff')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_029283cb232b55ccc2984898.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_6883f3deff8fcfbb8a4cabb0.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_35aa26998219dc4cb550cf6c.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2419a6ca58594a2f73d25acc.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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;}
.lsb{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls13{letter-spacing:-0.117600px;}
.ls12{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.lse{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.098400px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls16{letter-spacing:47.726640px;}
.lsf{letter-spacing:63.566640px;}
.ls15{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;}
}
.ws6{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.324800px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.162800px;}
.wsb{word-spacing:-13.134000px;}
.wsc{word-spacing:-13.108800px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._11{margin-left:-3.486960px;}
._2{margin-left:-2.437200px;}
._0{margin-left:-1.110000px;}
._1{width:1.097172px;}
._5{width:2.847240px;}
._6{width:4.607760px;}
._3{width:6.312600px;}
._4{width:7.515000px;}
._9{width:8.597400px;}
._7{width:9.859800px;}
._8{width:11.362800px;}
._d{width:14.364240px;}
._a{width:15.390720px;}
._c{width:16.593120px;}
._13{width:17.634120px;}
._b{width:18.637200px;}
._e{width:20.380680px;}
._f{width:21.823560px;}
._18{width:22.871040px;}
._10{width:23.987880px;}
._12{width:25.475868px;}
._1b{width:27.655200px;}
._1c{width:28.746480px;}
._1d{width:36.252360px;}
._14{width:37.454760px;}
._15{width:38.597040px;}
._16{width:50.260320px;}
._1a{width:54.464280px;}
._19{width:55.490760px;}
._17{width:169.658640px;}
.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;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y156{bottom:115.680000px;}
.y82{bottom:119.910000px;}
.yfa{bottom:120.270000px;}
.ye6{bottom:123.870000px;}
.y56{bottom:130.440000px;}
.yc8{bottom:131.430000px;}
.yad{bottom:132.870000px;}
.y81{bottom:137.460000px;}
.yf9{bottom:137.910000px;}
.ye5{bottom:141.510000px;}
.y117{bottom:142.680000px;}
.y55{bottom:147.990000px;}
.yc7{bottom:149.070000px;}
.yac{bottom:150.510000px;}
.y155{bottom:151.320000px;}
.y80{bottom:155.100000px;}
.yf8{bottom:155.460000px;}
.y181{bottom:158.070000px;}
.ye4{bottom:159.060000px;}
.y116{bottom:160.320000px;}
.y54{bottom:165.540000px;}
.y25{bottom:166.260000px;}
.yc6{bottom:166.620000px;}
.yab{bottom:168.060000px;}
.yf7{bottom:173.100000px;}
.ye3{bottom:176.610000px;}
.y115{bottom:177.870000px;}
.y24{bottom:183.810000px;}
.y12f{bottom:185.070000px;}
.yaa{bottom:185.610000px;}
.y154{bottom:186.870000px;}
.y7f{bottom:190.650000px;}
.yc5{bottom:193.170000px;}
.y180{bottom:193.620000px;}
.y53{bottom:201.180000px;}
.y23{bottom:201.450000px;}
.y12e{bottom:202.620000px;}
.ya9{bottom:203.250000px;}
.y153{bottom:204.510000px;}
.y7e{bottom:208.200000px;}
.y17f{bottom:211.260000px;}
.y114{bottom:213.510000px;}
.y52{bottom:218.730000px;}
.y22{bottom:219.000000px;}
.y12d{bottom:220.260000px;}
.y152{bottom:222.060000px;}
.y7d{bottom:225.840000px;}
.y17e{bottom:228.810000px;}
.ya8{bottom:229.800000px;}
.y113{bottom:231.060000px;}
.y51{bottom:236.370000px;}
.y21{bottom:236.550000px;}
.y12c{bottom:237.810000px;}
.ye2{bottom:238.800000px;}
.y151{bottom:239.610000px;}
.y7c{bottom:243.390000px;}
.yf6{bottom:243.840000px;}
.y17d{bottom:246.360000px;}
.y112{bottom:248.610000px;}
.y50{bottom:253.920000px;}
.y20{bottom:254.190000px;}
.y12b{bottom:255.360000px;}
.ye1{bottom:256.440000px;}
.y150{bottom:257.250000px;}
.yc4{bottom:261.390000px;}
.y17c{bottom:264.000000px;}
.ya7{bottom:265.440000px;}
.y111{bottom:266.250000px;}
.y7b{bottom:269.940000px;}
.y1a7{bottom:271.020000px;}
.y4f{bottom:271.470000px;}
.y1f{bottom:271.740000px;}
.y12a{bottom:273.000000px;}
.ye0{bottom:273.990000px;}
.y14f{bottom:274.800000px;}
.yc3{bottom:278.940000px;}
.y17b{bottom:281.550000px;}
.ya6{bottom:282.990000px;}
.y110{bottom:283.800000px;}
.y1a6{bottom:288.660000px;}
.ydf{bottom:291.540000px;}
.yc2{bottom:296.580000px;}
.y4e{bottom:298.110000px;}
.ya5{bottom:300.540000px;}
.y7a{bottom:305.580000px;}
.y1a5{bottom:306.210000px;}
.y1e{bottom:307.380000px;}
.y17a{bottom:308.460000px;}
.y129{bottom:308.550000px;}
.y10f{bottom:310.440000px;}
.yc1{bottom:314.130000px;}
.ya4{bottom:318.180000px;}
.y79{bottom:323.130000px;}
.y1d{bottom:324.930000px;}
.y128{bottom:326.190000px;}
.yde{bottom:327.180000px;}
.y14e{bottom:327.990000px;}
.yc0{bottom:331.770000px;}
.y1a4{bottom:332.760000px;}
.y4d{bottom:333.660000px;}
.y78{bottom:340.770000px;}
.y1c{bottom:342.480000px;}
.y127{bottom:343.740000px;}
.ydd{bottom:344.730000px;}
.y14d{bottom:345.540000px;}
.y10e{bottom:345.990000px;}
.y1a3{bottom:350.400000px;}
.y4c{bottom:351.300000px;}
.ya3{bottom:353.730000px;}
.y179{bottom:356.790000px;}
.y77{bottom:358.320000px;}
.y1b{bottom:360.120000px;}
.y126{bottom:361.290000px;}
.ydc{bottom:362.370000px;}
.y14c{bottom:363.180000px;}
.y10d{bottom:363.540000px;}
.ybf{bottom:367.320000px;}
.y1a2{bottom:367.950000px;}
.y4b{bottom:368.850000px;}
.ya2{bottom:371.370000px;}
.y178{bottom:374.340000px;}
.y76{bottom:375.870000px;}
.yf5{bottom:376.320000px;}
.y1a{bottom:377.670000px;}
.ydb{bottom:379.920000px;}
.y14b{bottom:380.730000px;}
.y10c{bottom:381.180000px;}
.ybe{bottom:384.870000px;}
.y1a1{bottom:385.590000px;}
.y4a{bottom:386.400000px;}
.y125{bottom:387.840000px;}
.ya1{bottom:388.920000px;}
.y177{bottom:391.890000px;}
.yf4{bottom:393.870000px;}
.y19{bottom:395.310000px;}
.yda{bottom:397.470000px;}
.y10b{bottom:398.730000px;}
.ybd{bottom:402.510000px;}
.y49{bottom:404.040000px;}
.ya0{bottom:406.470000px;}
.y14a{bottom:407.370000px;}
.y75{bottom:411.510000px;}
.y1a0{bottom:412.140000px;}
.y18{bottom:412.860000px;}
.y10a{bottom:416.370000px;}
.ybc{bottom:420.060000px;}
.y124{bottom:420.510000px;}
.y48{bottom:421.590000px;}
.y176{bottom:427.530000px;}
.y74{bottom:429.060000px;}
.y19f{bottom:429.690000px;}
.yd9{bottom:433.110000px;}
.y109{bottom:433.920000px;}
.y17{bottom:439.770000px;}
.y9f{bottom:442.110000px;}
.y149{bottom:442.920000px;}
.y175{bottom:445.080000px;}
.y73{bottom:446.700000px;}
.y19e{bottom:447.330000px;}
.yd8{bottom:450.660000px;}
.y123{bottom:456.060000px;}
.y47{bottom:457.230000px;}
.y9e{bottom:459.660000px;}
.y148{bottom:460.470000px;}
.y174{bottom:462.720000px;}
.yf3{bottom:464.250000px;}
.yd7{bottom:468.300000px;}
.y108{bottom:469.470000px;}
.y122{bottom:473.730000px;}
.y19d{bottom:473.910000px;}
.y46{bottom:474.810000px;}
.y9d{bottom:477.330000px;}
.y147{bottom:478.140000px;}
.yf2{bottom:481.830000px;}
.y72{bottom:482.280000px;}
.y107{bottom:487.140000px;}
.y16{bottom:488.400000px;}
.y173{bottom:489.300000px;}
.y121{bottom:491.280000px;}
.y19c{bottom:491.550000px;}
.y45{bottom:492.360000px;}
.y9c{bottom:494.880000px;}
.y146{bottom:495.690000px;}
.y71{bottom:499.830000px;}
.y106{bottom:504.690000px;}
.yf1{bottom:508.470000px;}
.y120{bottom:508.830000px;}
.y44{bottom:510.000000px;}
.y145{bottom:513.330000px;}
.y70{bottom:517.470000px;}
.y19b{bottom:518.100000px;}
.y9b{bottom:521.430000px;}
.y105{bottom:522.330000px;}
.y172{bottom:524.850000px;}
.y15{bottom:525.390000px;}
.y11f{bottom:526.470000px;}
.y43{bottom:527.550000px;}
.yd6{bottom:530.430000px;}
.y6f{bottom:535.020000px;}
.y19a{bottom:535.650000px;}
.y104{bottom:539.880000px;}
.y171{bottom:542.490000px;}
.y14{bottom:543.030000px;}
.y11e{bottom:544.020000px;}
.yf0{bottom:544.380000px;}
.yd5{bottom:548.070000px;}
.y144{bottom:548.880000px;}
.ybb{bottom:552.660000px;}
.y42{bottom:554.190000px;}
.y9a{bottom:557.070000px;}
.y170{bottom:560.040000px;}
.y13{bottom:560.580000px;}
.y6e{bottom:561.660000px;}
.y199{bottom:562.290000px;}
.yd4{bottom:565.620000px;}
.y143{bottom:566.430000px;}
.y11d{bottom:570.660000px;}
.y99{bottom:574.620000px;}
.y103{bottom:575.430000px;}
.y198{bottom:579.840000px;}
.yd3{bottom:583.260000px;}
.y142{bottom:584.070000px;}
.yba{bottom:588.210000px;}
.y41{bottom:589.740000px;}
.y98{bottom:592.260000px;}
.yef{bottom:592.620000px;}
.y102{bottom:593.070000px;}
.y16f{bottom:595.590000px;}
.y12{bottom:596.130000px;}
.y6d{bottom:597.210000px;}
.yd2{bottom:600.810000px;}
.y141{bottom:601.620000px;}
.yb9{bottom:605.760000px;}
.y197{bottom:606.480000px;}
.y11c{bottom:606.570000px;}
.y40{bottom:607.290000px;}
.y97{bottom:609.810000px;}
.yee{bottom:610.260000px;}
.y101{bottom:610.620000px;}
.y16e{bottom:613.230000px;}
.y11{bottom:613.770000px;}
.y6c{bottom:614.760000px;}
.y140{bottom:619.260000px;}
.yb8{bottom:623.400000px;}
.y196{bottom:624.030000px;}
.y3f{bottom:625.740000px;}
.y96{bottom:627.360000px;}
.yed{bottom:627.810000px;}
.y100{bottom:628.260000px;}
.y16d{bottom:630.780000px;}
.y10{bottom:631.320000px;}
.y6b{bottom:632.400000px;}
.y13f{bottom:636.810000px;}
.yb7{bottom:640.950000px;}
.y195{bottom:641.580000px;}
.y3e{bottom:644.100000px;}
.yec{bottom:645.360000px;}
.yff{bottom:645.810000px;}
.y16c{bottom:648.420000px;}
.yf{bottom:648.960000px;}
.y6a{bottom:649.950000px;}
.y95{bottom:654.000000px;}
.y11b{bottom:654.810000px;}
.yb6{bottom:658.590000px;}
.y3d{bottom:662.550000px;}
.yd1{bottom:663.000000px;}
.y13e{bottom:663.360000px;}
.y69{bottom:667.590000px;}
.y194{bottom:668.220000px;}
.yfe{bottom:672.360000px;}
.y16b{bottom:674.970000px;}
.yd0{bottom:680.550000px;}
.ye{bottom:684.510000px;}
.yb5{bottom:685.140000px;}
.y94{bottom:689.550000px;}
.y3c{bottom:690.000000px;}
.y193{bottom:694.770000px;}
.ycf{bottom:698.190000px;}
.yeb{bottom:698.550000px;}
.y13d{bottom:699.000000px;}
.yd{bottom:702.060000px;}
.y68{bottom:703.140000px;}
.y93{bottom:707.190000px;}
.y11a{bottom:707.550000px;}
.yfd{bottom:708.000000px;}
.y16a{bottom:710.520000px;}
.y192{bottom:712.410000px;}
.yce{bottom:715.740000px;}
.yea{bottom:716.190000px;}
.y13c{bottom:716.550000px;}
.yc{bottom:719.700000px;}
.y67{bottom:720.690000px;}
.y92{bottom:724.740000px;}
.y119{bottom:725.190000px;}
.y3b{bottom:725.550000px;}
.y169{bottom:728.160000px;}
.y191{bottom:729.960000px;}
.ye9{bottom:733.740000px;}
.y13b{bottom:734.190000px;}
.yb{bottom:737.250000px;}
.y66{bottom:738.330000px;}
.y91{bottom:742.290000px;}
.y3a{bottom:743.190000px;}
.y168{bottom:745.710000px;}
.ycd{bottom:751.290000px;}
.y13a{bottom:751.740000px;}
.ya{bottom:754.890000px;}
.y65{bottom:755.880000px;}
.y190{bottom:756.510000px;}
.y39{bottom:760.740000px;}
.y167{bottom:763.350000px;}
.y90{bottom:768.930000px;}
.y139{bottom:769.290000px;}
.yb4{bottom:773.520000px;}
.y18f{bottom:774.150000px;}
.y38{bottom:778.290000px;}
.y166{bottom:780.900000px;}
.y9{bottom:781.800000px;}
.ycc{bottom:786.480000px;}
.y138{bottom:786.930000px;}
.yb3{bottom:791.070000px;}
.y64{bottom:791.520000px;}
.ye8{bottom:795.480000px;}
.yfc{bottom:795.930000px;}
.y18e{bottom:800.700000px;}
.y8f{bottom:804.480000px;}
.y165{bottom:807.450000px;}
.y63{bottom:809.070000px;}
.ycb{bottom:813.030000px;}
.y118{bottom:813.480000px;}
.y37{bottom:813.930000px;}
.yb2{bottom:817.620000px;}
.y18d{bottom:818.340000px;}
.y8e{bottom:822.030000px;}
.y137{bottom:822.480000px;}
.y62{bottom:826.620000px;}
.y8{bottom:830.040000px;}
.ye7{bottom:831.030000px;}
.y36{bottom:831.480000px;}
.y18c{bottom:835.890000px;}
.y8d{bottom:839.670000px;}
.y136{bottom:840.030000px;}
.y164{bottom:843.090000px;}
.y61{bottom:844.260000px;}
.yca{bottom:848.670000px;}
.y35{bottom:849.030000px;}
.yb1{bottom:853.530000px;}
.y8c{bottom:857.220000px;}
.y135{bottom:857.670000px;}
.y163{bottom:860.640000px;}
.y60{bottom:861.810000px;}
.y18b{bottom:862.440000px;}
.y7{bottom:865.860000px;}
.yc9{bottom:866.220000px;}
.y34{bottom:866.670000px;}
.y8b{bottom:874.860000px;}
.y134{bottom:875.220000px;}
.y162{bottom:878.280000px;}
.y18a{bottom:880.080000px;}
.y33{bottom:884.220000px;}
.y5f{bottom:888.450000px;}
.y161{bottom:895.830000px;}
.y189{bottom:897.630000px;}
.y8a{bottom:901.410000px;}
.y6{bottom:901.860000px;}
.y160{bottom:913.380000px;}
.yb0{bottom:919.410000px;}
.y5e{bottom:924.000000px;}
.y188{bottom:924.180000px;}
.y15f{bottom:931.020000px;}
.y89{bottom:936.960000px;}
.y32{bottom:937.410000px;}
.y5{bottom:937.860000px;}
.y5d{bottom:941.550000px;}
.y187{bottom:951.090000px;}
.y88{bottom:954.600000px;}
.y31{bottom:954.960000px;}
.y15e{bottom:957.570000px;}
.y5c{bottom:959.190000px;}
.yaf{bottom:972.150000px;}
.y30{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y5b{bottom:976.740000px;}
.y87{bottom:981.150000px;}
.y2f{bottom:990.150000px;}
.y15d{bottom:993.210000px;}
.y5a{bottom:994.290000px;}
.yae{bottom:998.790000px;}
.y186{bottom:999.420000px;}
.y2e{bottom:1007.790000px;}
.y15c{bottom:1010.790000px;}
.y59{bottom:1011.960000px;}
.y3{bottom:1012.230000px;}
.y86{bottom:1016.820000px;}
.y2d{bottom:1025.370000px;}
.y185{bottom:1026.360000px;}
.y15b{bottom:1028.340000px;}
.y85{bottom:1034.370000px;}
.y58{bottom:1038.510000px;}
.y15a{bottom:1045.980000px;}
.y2c{bottom:1051.920000px;}
.y133{bottom:1060.920000px;}
.y184{bottom:1063.350000px;}
.y159{bottom:1063.530000px;}
.y84{bottom:1069.560000px;}
.yfb{bottom:1069.920000px;}
.y57{bottom:1074.420000px;}
.y132{bottom:1078.560000px;}
.y158{bottom:1081.170000px;}
.y83{bottom:1087.110000px;}
.y2b{bottom:1087.560000px;}
.y183{bottom:1090.260000px;}
.y131{bottom:1096.110000px;}
.y2a{bottom:1105.110000px;}
.y157{bottom:1107.720000px;}
.y130{bottom:1113.750000px;}
.y29{bottom:1122.750000px;}
.y182{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:59.973223px;}
.h7{height:60.960938px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x6{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:202.799987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls13{letter-spacing:-0.104533pt;}
.ls12{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.087467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls16{letter-spacing:42.423680pt;}
.lsf{letter-spacing:56.503680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.844267pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.700267pt;}
.wsb{word-spacing:-11.674667pt;}
.wsc{word-spacing:-11.652267pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._11{margin-left:-3.099520pt;}
._2{margin-left:-2.166400pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.975264pt;}
._5{width:2.530880pt;}
._6{width:4.095787pt;}
._3{width:5.611200pt;}
._4{width:6.680000pt;}
._9{width:7.642134pt;}
._7{width:8.764267pt;}
._8{width:10.100267pt;}
._d{width:12.768213pt;}
._a{width:13.680640pt;}
._c{width:14.749440pt;}
._13{width:15.674773pt;}
._b{width:16.566400pt;}
._e{width:18.116160pt;}
._f{width:19.398720pt;}
._18{width:20.329813pt;}
._10{width:21.322560pt;}
._12{width:22.645216pt;}
._1b{width:24.582400pt;}
._1c{width:25.552427pt;}
._1d{width:32.224320pt;}
._14{width:33.293120pt;}
._15{width:34.308480pt;}
._16{width:44.675840pt;}
._1a{width:48.412693pt;}
._19{width:49.325120pt;}
._17{width:150.807680pt;}
.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;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y156{bottom:102.826667pt;}
.y82{bottom:106.586667pt;}
.yfa{bottom:106.906667pt;}
.ye6{bottom:110.106667pt;}
.y56{bottom:115.946667pt;}
.yc8{bottom:116.826667pt;}
.yad{bottom:118.106667pt;}
.y81{bottom:122.186667pt;}
.yf9{bottom:122.586667pt;}
.ye5{bottom:125.786667pt;}
.y117{bottom:126.826667pt;}
.y55{bottom:131.546667pt;}
.yc7{bottom:132.506667pt;}
.yac{bottom:133.786667pt;}
.y155{bottom:134.506667pt;}
.y80{bottom:137.866667pt;}
.yf8{bottom:138.186667pt;}
.y181{bottom:140.506667pt;}
.ye4{bottom:141.386667pt;}
.y116{bottom:142.506667pt;}
.y54{bottom:147.146667pt;}
.y25{bottom:147.786667pt;}
.yc6{bottom:148.106667pt;}
.yab{bottom:149.386667pt;}
.yf7{bottom:153.866667pt;}
.ye3{bottom:156.986667pt;}
.y115{bottom:158.106667pt;}
.y24{bottom:163.386667pt;}
.y12f{bottom:164.506667pt;}
.yaa{bottom:164.986667pt;}
.y154{bottom:166.106667pt;}
.y7f{bottom:169.466667pt;}
.yc5{bottom:171.706667pt;}
.y180{bottom:172.106667pt;}
.y53{bottom:178.826667pt;}
.y23{bottom:179.066667pt;}
.y12e{bottom:180.106667pt;}
.ya9{bottom:180.666667pt;}
.y153{bottom:181.786667pt;}
.y7e{bottom:185.066667pt;}
.y17f{bottom:187.786667pt;}
.y114{bottom:189.786667pt;}
.y52{bottom:194.426667pt;}
.y22{bottom:194.666667pt;}
.y12d{bottom:195.786667pt;}
.y152{bottom:197.386667pt;}
.y7d{bottom:200.746667pt;}
.y17e{bottom:203.386667pt;}
.ya8{bottom:204.266667pt;}
.y113{bottom:205.386667pt;}
.y51{bottom:210.106667pt;}
.y21{bottom:210.266667pt;}
.y12c{bottom:211.386667pt;}
.ye2{bottom:212.266667pt;}
.y151{bottom:212.986667pt;}
.y7c{bottom:216.346667pt;}
.yf6{bottom:216.746667pt;}
.y17d{bottom:218.986667pt;}
.y112{bottom:220.986667pt;}
.y50{bottom:225.706667pt;}
.y20{bottom:225.946667pt;}
.y12b{bottom:226.986667pt;}
.ye1{bottom:227.946667pt;}
.y150{bottom:228.666667pt;}
.yc4{bottom:232.346667pt;}
.y17c{bottom:234.666667pt;}
.ya7{bottom:235.946667pt;}
.y111{bottom:236.666667pt;}
.y7b{bottom:239.946667pt;}
.y1a7{bottom:240.906667pt;}
.y4f{bottom:241.306667pt;}
.y1f{bottom:241.546667pt;}
.y12a{bottom:242.666667pt;}
.ye0{bottom:243.546667pt;}
.y14f{bottom:244.266667pt;}
.yc3{bottom:247.946667pt;}
.y17b{bottom:250.266667pt;}
.ya6{bottom:251.546667pt;}
.y110{bottom:252.266667pt;}
.y1a6{bottom:256.586667pt;}
.ydf{bottom:259.146667pt;}
.yc2{bottom:263.626667pt;}
.y4e{bottom:264.986667pt;}
.ya5{bottom:267.146667pt;}
.y7a{bottom:271.626667pt;}
.y1a5{bottom:272.186667pt;}
.y1e{bottom:273.226667pt;}
.y17a{bottom:274.186667pt;}
.y129{bottom:274.266667pt;}
.y10f{bottom:275.946667pt;}
.yc1{bottom:279.226667pt;}
.ya4{bottom:282.826667pt;}
.y79{bottom:287.226667pt;}
.y1d{bottom:288.826667pt;}
.y128{bottom:289.946667pt;}
.yde{bottom:290.826667pt;}
.y14e{bottom:291.546667pt;}
.yc0{bottom:294.906667pt;}
.y1a4{bottom:295.786667pt;}
.y4d{bottom:296.586667pt;}
.y78{bottom:302.906667pt;}
.y1c{bottom:304.426667pt;}
.y127{bottom:305.546667pt;}
.ydd{bottom:306.426667pt;}
.y14d{bottom:307.146667pt;}
.y10e{bottom:307.546667pt;}
.y1a3{bottom:311.466667pt;}
.y4c{bottom:312.266667pt;}
.ya3{bottom:314.426667pt;}
.y179{bottom:317.146667pt;}
.y77{bottom:318.506667pt;}
.y1b{bottom:320.106667pt;}
.y126{bottom:321.146667pt;}
.ydc{bottom:322.106667pt;}
.y14c{bottom:322.826667pt;}
.y10d{bottom:323.146667pt;}
.ybf{bottom:326.506667pt;}
.y1a2{bottom:327.066667pt;}
.y4b{bottom:327.866667pt;}
.ya2{bottom:330.106667pt;}
.y178{bottom:332.746667pt;}
.y76{bottom:334.106667pt;}
.yf5{bottom:334.506667pt;}
.y1a{bottom:335.706667pt;}
.ydb{bottom:337.706667pt;}
.y14b{bottom:338.426667pt;}
.y10c{bottom:338.826667pt;}
.ybe{bottom:342.106667pt;}
.y1a1{bottom:342.746667pt;}
.y4a{bottom:343.466667pt;}
.y125{bottom:344.746667pt;}
.ya1{bottom:345.706667pt;}
.y177{bottom:348.346667pt;}
.yf4{bottom:350.106667pt;}
.y19{bottom:351.386667pt;}
.yda{bottom:353.306667pt;}
.y10b{bottom:354.426667pt;}
.ybd{bottom:357.786667pt;}
.y49{bottom:359.146667pt;}
.ya0{bottom:361.306667pt;}
.y14a{bottom:362.106667pt;}
.y75{bottom:365.786667pt;}
.y1a0{bottom:366.346667pt;}
.y18{bottom:366.986667pt;}
.y10a{bottom:370.106667pt;}
.ybc{bottom:373.386667pt;}
.y124{bottom:373.786667pt;}
.y48{bottom:374.746667pt;}
.y176{bottom:380.026667pt;}
.y74{bottom:381.386667pt;}
.y19f{bottom:381.946667pt;}
.yd9{bottom:384.986667pt;}
.y109{bottom:385.706667pt;}
.y17{bottom:390.906667pt;}
.y9f{bottom:392.986667pt;}
.y149{bottom:393.706667pt;}
.y175{bottom:395.626667pt;}
.y73{bottom:397.066667pt;}
.y19e{bottom:397.626667pt;}
.yd8{bottom:400.586667pt;}
.y123{bottom:405.386667pt;}
.y47{bottom:406.426667pt;}
.y9e{bottom:408.586667pt;}
.y148{bottom:409.306667pt;}
.y174{bottom:411.306667pt;}
.yf3{bottom:412.666667pt;}
.yd7{bottom:416.266667pt;}
.y108{bottom:417.306667pt;}
.y122{bottom:421.093333pt;}
.y19d{bottom:421.253333pt;}
.y46{bottom:422.053333pt;}
.y9d{bottom:424.293333pt;}
.y147{bottom:425.013333pt;}
.yf2{bottom:428.293333pt;}
.y72{bottom:428.693333pt;}
.y107{bottom:433.013333pt;}
.y16{bottom:434.133333pt;}
.y173{bottom:434.933333pt;}
.y121{bottom:436.693333pt;}
.y19c{bottom:436.933333pt;}
.y45{bottom:437.653333pt;}
.y9c{bottom:439.893333pt;}
.y146{bottom:440.613333pt;}
.y71{bottom:444.293333pt;}
.y106{bottom:448.613333pt;}
.yf1{bottom:451.973333pt;}
.y120{bottom:452.293333pt;}
.y44{bottom:453.333333pt;}
.y145{bottom:456.293333pt;}
.y70{bottom:459.973333pt;}
.y19b{bottom:460.533333pt;}
.y9b{bottom:463.493333pt;}
.y105{bottom:464.293333pt;}
.y172{bottom:466.533333pt;}
.y15{bottom:467.013333pt;}
.y11f{bottom:467.973333pt;}
.y43{bottom:468.933333pt;}
.yd6{bottom:471.493333pt;}
.y6f{bottom:475.573333pt;}
.y19a{bottom:476.133333pt;}
.y104{bottom:479.893333pt;}
.y171{bottom:482.213333pt;}
.y14{bottom:482.693333pt;}
.y11e{bottom:483.573333pt;}
.yf0{bottom:483.893333pt;}
.yd5{bottom:487.173333pt;}
.y144{bottom:487.893333pt;}
.ybb{bottom:491.253333pt;}
.y42{bottom:492.613333pt;}
.y9a{bottom:495.173333pt;}
.y170{bottom:497.813333pt;}
.y13{bottom:498.293333pt;}
.y6e{bottom:499.253333pt;}
.y199{bottom:499.813333pt;}
.yd4{bottom:502.773333pt;}
.y143{bottom:503.493333pt;}
.y11d{bottom:507.253333pt;}
.y99{bottom:510.773333pt;}
.y103{bottom:511.493333pt;}
.y198{bottom:515.413333pt;}
.yd3{bottom:518.453333pt;}
.y142{bottom:519.173333pt;}
.yba{bottom:522.853333pt;}
.y41{bottom:524.213333pt;}
.y98{bottom:526.453333pt;}
.yef{bottom:526.773333pt;}
.y102{bottom:527.173333pt;}
.y16f{bottom:529.413333pt;}
.y12{bottom:529.893333pt;}
.y6d{bottom:530.853333pt;}
.yd2{bottom:534.053333pt;}
.y141{bottom:534.773333pt;}
.yb9{bottom:538.453333pt;}
.y197{bottom:539.093333pt;}
.y11c{bottom:539.173333pt;}
.y40{bottom:539.813333pt;}
.y97{bottom:542.053333pt;}
.yee{bottom:542.453333pt;}
.y101{bottom:542.773333pt;}
.y16e{bottom:545.093333pt;}
.y11{bottom:545.573333pt;}
.y6c{bottom:546.453333pt;}
.y140{bottom:550.453333pt;}
.yb8{bottom:554.133333pt;}
.y196{bottom:554.693333pt;}
.y3f{bottom:556.213333pt;}
.y96{bottom:557.653333pt;}
.yed{bottom:558.053333pt;}
.y100{bottom:558.453333pt;}
.y16d{bottom:560.693333pt;}
.y10{bottom:561.173333pt;}
.y6b{bottom:562.133333pt;}
.y13f{bottom:566.053333pt;}
.yb7{bottom:569.733333pt;}
.y195{bottom:570.293333pt;}
.y3e{bottom:572.533333pt;}
.yec{bottom:573.653333pt;}
.yff{bottom:574.053333pt;}
.y16c{bottom:576.373333pt;}
.yf{bottom:576.853333pt;}
.y6a{bottom:577.733333pt;}
.y95{bottom:581.333333pt;}
.y11b{bottom:582.053333pt;}
.yb6{bottom:585.413333pt;}
.y3d{bottom:588.933333pt;}
.yd1{bottom:589.333333pt;}
.y13e{bottom:589.653333pt;}
.y69{bottom:593.413333pt;}
.y194{bottom:593.973333pt;}
.yfe{bottom:597.653333pt;}
.y16b{bottom:599.973333pt;}
.yd0{bottom:604.933333pt;}
.ye{bottom:608.453333pt;}
.yb5{bottom:609.013333pt;}
.y94{bottom:612.933333pt;}
.y3c{bottom:613.333333pt;}
.y193{bottom:617.573333pt;}
.ycf{bottom:620.613333pt;}
.yeb{bottom:620.933333pt;}
.y13d{bottom:621.333333pt;}
.yd{bottom:624.053333pt;}
.y68{bottom:625.013333pt;}
.y93{bottom:628.613333pt;}
.y11a{bottom:628.933333pt;}
.yfd{bottom:629.333333pt;}
.y16a{bottom:631.573333pt;}
.y192{bottom:633.253333pt;}
.yce{bottom:636.213333pt;}
.yea{bottom:636.613333pt;}
.y13c{bottom:636.933333pt;}
.yc{bottom:639.733333pt;}
.y67{bottom:640.613333pt;}
.y92{bottom:644.213333pt;}
.y119{bottom:644.613333pt;}
.y3b{bottom:644.933333pt;}
.y169{bottom:647.253333pt;}
.y191{bottom:648.853333pt;}
.ye9{bottom:652.213333pt;}
.y13b{bottom:652.613333pt;}
.yb{bottom:655.333333pt;}
.y66{bottom:656.293333pt;}
.y91{bottom:659.813333pt;}
.y3a{bottom:660.613333pt;}
.y168{bottom:662.853333pt;}
.ycd{bottom:667.813333pt;}
.y13a{bottom:668.213333pt;}
.ya{bottom:671.013333pt;}
.y65{bottom:671.893333pt;}
.y190{bottom:672.453333pt;}
.y39{bottom:676.213333pt;}
.y167{bottom:678.533333pt;}
.y90{bottom:683.493333pt;}
.y139{bottom:683.813333pt;}
.yb4{bottom:687.573333pt;}
.y18f{bottom:688.133333pt;}
.y38{bottom:691.813333pt;}
.y166{bottom:694.133333pt;}
.y9{bottom:694.933333pt;}
.ycc{bottom:699.093333pt;}
.y138{bottom:699.493333pt;}
.yb3{bottom:703.173333pt;}
.y64{bottom:703.573333pt;}
.ye8{bottom:707.093333pt;}
.yfc{bottom:707.493333pt;}
.y18e{bottom:711.733333pt;}
.y8f{bottom:715.093333pt;}
.y165{bottom:717.733333pt;}
.y63{bottom:719.173333pt;}
.ycb{bottom:722.693333pt;}
.y118{bottom:723.093333pt;}
.y37{bottom:723.493333pt;}
.yb2{bottom:726.773333pt;}
.y18d{bottom:727.413333pt;}
.y8e{bottom:730.693333pt;}
.y137{bottom:731.093333pt;}
.y62{bottom:734.773333pt;}
.y8{bottom:737.813333pt;}
.ye7{bottom:738.693333pt;}
.y36{bottom:739.093333pt;}
.y18c{bottom:743.013333pt;}
.y8d{bottom:746.373333pt;}
.y136{bottom:746.693333pt;}
.y164{bottom:749.413333pt;}
.y61{bottom:750.453333pt;}
.yca{bottom:754.373333pt;}
.y35{bottom:754.693333pt;}
.yb1{bottom:758.693333pt;}
.y8c{bottom:761.973333pt;}
.y135{bottom:762.373333pt;}
.y163{bottom:765.013333pt;}
.y60{bottom:766.053333pt;}
.y18b{bottom:766.613333pt;}
.y7{bottom:769.653333pt;}
.yc9{bottom:769.973333pt;}
.y34{bottom:770.373333pt;}
.y8b{bottom:777.653333pt;}
.y134{bottom:777.973333pt;}
.y162{bottom:780.693333pt;}
.y18a{bottom:782.293333pt;}
.y33{bottom:785.973333pt;}
.y5f{bottom:789.733333pt;}
.y161{bottom:796.293333pt;}
.y189{bottom:797.893333pt;}
.y8a{bottom:801.253333pt;}
.y6{bottom:801.653333pt;}
.y160{bottom:811.893333pt;}
.yb0{bottom:817.253333pt;}
.y5e{bottom:821.333333pt;}
.y188{bottom:821.493333pt;}
.y15f{bottom:827.573333pt;}
.y89{bottom:832.853333pt;}
.y32{bottom:833.253333pt;}
.y5{bottom:833.653333pt;}
.y5d{bottom:836.933333pt;}
.y187{bottom:845.413333pt;}
.y88{bottom:848.533333pt;}
.y31{bottom:848.853333pt;}
.y15e{bottom:851.173333pt;}
.y5c{bottom:852.613333pt;}
.yaf{bottom:864.133333pt;}
.y30{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y5b{bottom:868.213333pt;}
.y87{bottom:872.133333pt;}
.y2f{bottom:880.133333pt;}
.y15d{bottom:882.853333pt;}
.y5a{bottom:883.813333pt;}
.yae{bottom:887.813333pt;}
.y186{bottom:888.373333pt;}
.y2e{bottom:895.813333pt;}
.y15c{bottom:898.480000pt;}
.y59{bottom:899.520000pt;}
.y3{bottom:899.760000pt;}
.y86{bottom:903.840000pt;}
.y2d{bottom:911.440000pt;}
.y185{bottom:912.320000pt;}
.y15b{bottom:914.080000pt;}
.y85{bottom:919.440000pt;}
.y58{bottom:923.120000pt;}
.y15a{bottom:929.760000pt;}
.y2c{bottom:935.040000pt;}
.y133{bottom:943.040000pt;}
.y184{bottom:945.200000pt;}
.y159{bottom:945.360000pt;}
.y84{bottom:950.720000pt;}
.yfb{bottom:951.040000pt;}
.y57{bottom:955.040000pt;}
.y132{bottom:958.720000pt;}
.y158{bottom:961.040000pt;}
.y83{bottom:966.320000pt;}
.y2b{bottom:966.720000pt;}
.y183{bottom:969.120000pt;}
.y131{bottom:974.320000pt;}
.y2a{bottom:982.320000pt;}
.y157{bottom:984.640000pt;}
.y130{bottom:990.000000pt;}
.y29{bottom:998.000000pt;}
.y182{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:53.309531pt;}
.h7{height:54.187500pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x6{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:180.266655pt;}
.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; }
  