
    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_5c89c99c0f64feb318189129.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_3d306393602fd6a32569929f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776855;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_fba9d190d15396c2a3ae43a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.077637;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d75890e65a2452751bcc18e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_7fcbdf6dc5d1e697ea6cae45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_27f21a6992befb4c5542bfde.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_29448e0cd59336dd690b6dd3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5a7c464c1aed9e859c97e321.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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:ffa;src:url('chunks/assets/font_40312333433f838f2f989056.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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(0.257777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257777,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls8{letter-spacing:-2.160000px;}
.lsa{letter-spacing:-1.584000px;}
.ls9{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.152000px;}
.ls7{letter-spacing:-0.720000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.078000px;}
.lsb{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.576000px;}
.ls2{letter-spacing:1.080000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc3{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(196,89,17),0 0.015em rgb(196,89,17),0.015em 0 rgb(196,89,17),0 -0.015em  rgb(196,89,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc4{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(196,89,17);text-shadow:none;}
}
.ws0{word-spacing:-19.728000px;}
.ws3{word-spacing:-18.576000px;}
.wsb{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.280000px;}
.ws6{word-spacing:-16.848000px;}
.ws9{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.416000px;}
.ws4{word-spacing:-16.272000px;}
.ws8{word-spacing:-15.840000px;}
.ws1{word-spacing:-0.049897px;}
.ws5{word-spacing:0.000000px;}
._23{margin-left:-3.024000px;}
._0{margin-left:-1.728000px;}
._2{width:1.512000px;}
._5{width:2.880000px;}
._17{width:4.008000px;}
._6{width:5.112000px;}
._7{width:6.768000px;}
._b{width:8.640000px;}
._c{width:10.152000px;}
._d{width:11.232000px;}
._14{width:12.312000px;}
._16{width:13.320000px;}
._8{width:14.328000px;}
._9{width:15.816000px;}
._1f{width:16.920000px;}
._10{width:19.248000px;}
._f{width:21.072000px;}
._1b{width:22.584000px;}
._22{width:23.748000px;}
._1d{width:24.768000px;}
._1e{width:25.920000px;}
._a{width:27.864000px;}
._1a{width:28.944000px;}
._20{width:30.168000px;}
._18{width:32.040000px;}
._19{width:33.120000px;}
._28{width:34.200000px;}
._4{width:35.208000px;}
._3{width:36.696000px;}
._15{width:39.528000px;}
._21{width:40.908000px;}
._29{width:42.480000px;}
._11{width:43.560000px;}
._13{width:44.640000px;}
._12{width:45.792000px;}
._24{width:48.744000px;}
._25{width:50.112000px;}
._e{width:52.488000px;}
._2a{width:59.616000px;}
._1c{width:60.696000px;}
._2b{width:67.104000px;}
._2c{width:68.112000px;}
._26{width:69.984000px;}
._27{width:71.136000px;}
._1{width:431.998320px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc0{color:rgb(196,89,17);}
.fs2{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:49.896859px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.418719px;}
.ye{bottom:3.780000px;}
.y57{bottom:4.500000px;}
.y41{bottom:4.860000px;}
.y4c{bottom:7.740000px;}
.y55{bottom:8.130000px;}
.yb{bottom:9.720000px;}
.ycc{bottom:14.400000px;}
.yd5{bottom:14.745000px;}
.yce{bottom:14.760000px;}
.yd3{bottom:14.790000px;}
.yd7{bottom:14.925000px;}
.yd0{bottom:14.940000px;}
.y10{bottom:16.560000px;}
.yd{bottom:20.700000px;}
.y48{bottom:21.105000px;}
.y54{bottom:25.410000px;}
.yc{bottom:26.280000px;}
.yf{bottom:27.180000px;}
.y56{bottom:27.900000px;}
.y4b{bottom:29.520000px;}
.yba{bottom:29.685000px;}
.y9b{bottom:29.700000px;}
.yc0{bottom:29.730000px;}
.ybc{bottom:29.865000px;}
.y99{bottom:29.880000px;}
.yb3{bottom:29.910000px;}
.y7{bottom:35.100000px;}
.y47{bottom:39.105000px;}
.y97{bottom:39.780000px;}
.yaf{bottom:39.960000px;}
.y53{bottom:42.690000px;}
.y4a{bottom:51.120000px;}
.y46{bottom:59.805000px;}
.y96{bottom:60.480000px;}
.yae{bottom:60.660000px;}
.y52{bottom:60.690000px;}
.y11b{bottom:71.100000px;}
.ye2{bottom:75.060000px;}
.ya8{bottom:77.580000px;}
.y3f{bottom:80.280000px;}
.y45{bottom:80.505000px;}
.y51{bottom:81.390000px;}
.y8b{bottom:82.800000px;}
.y95{bottom:83.340000px;}
.yc2{bottom:85.680000px;}
.yf4{bottom:90.180000px;}
.y11a{bottom:91.800000px;}
.ya7{bottom:94.140000px;}
.ye1{bottom:95.760000px;}
.y3e{bottom:100.980000px;}
.y44{bottom:101.025000px;}
.y50{bottom:102.090000px;}
.yfb{bottom:102.780000px;}
.y8a{bottom:103.500000px;}
.yf3{bottom:110.880000px;}
.y119{bottom:112.500000px;}
.ye0{bottom:116.460000px;}
.y3d{bottom:121.680000px;}
.y4f{bottom:122.430000px;}
.yfa{bottom:123.480000px;}
.y89{bottom:124.200000px;}
.yf2{bottom:127.440000px;}
.yc1{bottom:132.480000px;}
.y118{bottom:133.200000px;}
.ydf{bottom:136.800000px;}
.yf9{bottom:140.040000px;}
.y3c{bottom:142.380000px;}
.y88{bottom:144.900000px;}
.y4e{bottom:146.730000px;}
.y117{bottom:153.900000px;}
.yde{bottom:157.860000px;}
.y3b{bottom:163.080000px;}
.y94{bottom:165.240000px;}
.y87{bottom:165.600000px;}
.y116{bottom:174.600000px;}
.ydd{bottom:174.780000px;}
.ybf{bottom:179.280000px;}
.y3a{bottom:183.780000px;}
.y93{bottom:185.940000px;}
.y86{bottom:186.300000px;}
.y115{bottom:195.300000px;}
.y4d{bottom:203.760000px;}
.y39{bottom:204.480000px;}
.ydc{bottom:206.685000px;}
.y85{bottom:207.030000px;}
.y114{bottom:216.030000px;}
.y38{bottom:225.210000px;}
.ybe{bottom:226.125000px;}
.y84{bottom:227.730000px;}
.y113{bottom:236.730000px;}
.ydb{bottom:238.545000px;}
.y37{bottom:245.910000px;}
.y83{bottom:248.430000px;}
.y112{bottom:257.430000px;}
.y36{bottom:266.610000px;}
.y82{bottom:269.130000px;}
.yda{bottom:270.225000px;}
.ybd{bottom:272.925000px;}
.y111{bottom:277.770000px;}
.y35{bottom:287.310000px;}
.y81{bottom:289.830000px;}
.y110{bottom:298.470000px;}
.yd9{bottom:302.085000px;}
.y34{bottom:308.010000px;}
.y80{bottom:310.530000px;}
.y10f{bottom:319.530000px;}
.ybb{bottom:319.545000px;}
.y33{bottom:328.710000px;}
.y7f{bottom:331.230000px;}
.yd8{bottom:333.765000px;}
.y10e{bottom:340.230000px;}
.y32{bottom:349.410000px;}
.y7e{bottom:351.930000px;}
.y10d{bottom:360.930000px;}
.y49{bottom:365.250000px;}
.yd6{bottom:365.445000px;}
.yb9{bottom:366.345000px;}
.y31{bottom:370.110000px;}
.y92{bottom:372.270000px;}
.y7d{bottom:372.630000px;}
.y10c{bottom:381.630000px;}
.y30{bottom:390.810000px;}
.y91{bottom:392.970000px;}
.y7c{bottom:393.330000px;}
.yd4{bottom:397.305000px;}
.ya6{bottom:397.470000px;}
.y10b{bottom:402.330000px;}
.yf1{bottom:410.610000px;}
.y2f{bottom:411.510000px;}
.yb8{bottom:412.965000px;}
.y90{bottom:413.670000px;}
.y7b{bottom:414.030000px;}
.ya5{bottom:418.170000px;}
.y10a{bottom:423.030000px;}
.yf0{bottom:428.085000px;}
.yd2{bottom:428.985000px;}
.y43{bottom:430.950000px;}
.y2e{bottom:432.210000px;}
.y7a{bottom:434.730000px;}
.ya4{bottom:438.870000px;}
.y109{bottom:443.775000px;}
.y2d{bottom:452.955000px;}
.y79{bottom:455.475000px;}
.ya3{bottom:455.655000px;}
.yb7{bottom:459.795000px;}
.yd1{bottom:460.695000px;}
.y108{bottom:464.475000px;}
.y2c{bottom:473.655000px;}
.yef{bottom:474.915000px;}
.y78{bottom:476.175000px;}
.y107{bottom:485.175000px;}
.ycf{bottom:492.555000px;}
.y2b{bottom:494.355000px;}
.y77{bottom:496.875000px;}
.y106{bottom:505.875000px;}
.yb6{bottom:506.595000px;}
.y2a{bottom:515.055000px;}
.y76{bottom:517.575000px;}
.yf8{bottom:517.755000px;}
.yee{bottom:521.715000px;}
.ycd{bottom:524.415000px;}
.y105{bottom:526.575000px;}
.y29{bottom:535.755000px;}
.y75{bottom:538.275000px;}
.yf7{bottom:538.455000px;}
.y104{bottom:547.275000px;}
.y42{bottom:549.615000px;}
.yb5{bottom:553.215000px;}
.y28{bottom:555.915000px;}
.ycb{bottom:556.095000px;}
.y74{bottom:558.975000px;}
.yf6{bottom:559.155000px;}
.y103{bottom:567.975000px;}
.yed{bottom:568.515000px;}
.y40{bottom:573.915000px;}
.yf5{bottom:575.715000px;}
.y73{bottom:579.675000px;}
.y27{bottom:582.915000px;}
.y102{bottom:588.675000px;}
.yca{bottom:591.915000px;}
.yb4{bottom:600.015000px;}
.y72{bottom:600.375000px;}
.y26{bottom:601.635000px;}
.y101{bottom:609.015000px;}
.yc9{bottom:612.615000px;}
.yec{bottom:615.315000px;}
.y71{bottom:621.075000px;}
.y25{bottom:621.975000px;}
.y100{bottom:629.715000px;}
.yc8{bottom:633.315000px;}
.y11d{bottom:641.415000px;}
.y70{bottom:641.775000px;}
.y24{bottom:643.035000px;}
.yb2{bottom:646.815000px;}
.yff{bottom:650.415000px;}
.yc7{bottom:654.015000px;}
.yeb{bottom:661.935000px;}
.y11c{bottom:662.115000px;}
.y6f{bottom:662.475000px;}
.y23{bottom:663.375000px;}
.yfe{bottom:671.115000px;}
.yc6{bottom:674.715000px;}
.y6e{bottom:683.205000px;}
.y22{bottom:684.105000px;}
.yc5{bottom:691.305000px;}
.yfd{bottom:691.845000px;}
.yb1{bottom:693.645000px;}
.y6d{bottom:703.905000px;}
.y21{bottom:705.165000px;}
.yfc{bottom:708.405000px;}
.yea{bottom:708.765000px;}
.y6c{bottom:724.605000px;}
.y20{bottom:725.505000px;}
.yb0{bottom:740.445000px;}
.y6b{bottom:745.305000px;}
.y1f{bottom:746.205000px;}
.ye9{bottom:755.565000px;}
.ya2{bottom:763.485000px;}
.y6a{bottom:766.005000px;}
.y1e{bottom:767.265000px;}
.ya1{bottom:780.765000px;}
.y8f{bottom:786.345000px;}
.y69{bottom:786.705000px;}
.yad{bottom:787.065000px;}
.y1d{bottom:787.605000px;}
.ye8{bottom:802.365000px;}
.y8e{bottom:807.045000px;}
.y68{bottom:807.405000px;}
.y1c{bottom:808.305000px;}
.ya0{bottom:827.565000px;}
.y67{bottom:828.105000px;}
.y1b{bottom:829.365000px;}
.y66{bottom:848.805000px;}
.ye7{bottom:849.165000px;}
.y1a{bottom:849.705000px;}
.yac{bottom:869.145000px;}
.y65{bottom:869.505000px;}
.y19{bottom:870.405000px;}
.y9f{bottom:874.365000px;}
.yab{bottom:889.845000px;}
.y64{bottom:890.205000px;}
.y18{bottom:891.465000px;}
.yaa{bottom:910.590000px;}
.y63{bottom:910.950000px;}
.y17{bottom:912.210000px;}
.y9e{bottom:921.030000px;}
.ye6{bottom:931.290000px;}
.y62{bottom:931.650000px;}
.y16{bottom:932.550000px;}
.ye5{bottom:951.990000px;}
.y61{bottom:952.350000px;}
.y15{bottom:953.250000px;}
.y9d{bottom:967.830000px;}
.ye4{bottom:972.690000px;}
.y60{bottom:973.050000px;}
.y14{bottom:973.950000px;}
.ye3{bottom:993.390000px;}
.y5f{bottom:993.750000px;}
.y13{bottom:995.190000px;}
.yc4{bottom:996.990000px;}
.y5e{bottom:1014.450000px;}
.y9c{bottom:1014.630000px;}
.y12{bottom:1019.310000px;}
.y5d{bottom:1035.150000px;}
.y11{bottom:1043.430000px;}
.y5c{bottom:1055.850000px;}
.yc3{bottom:1061.250000px;}
.y9a{bottom:1061.430000px;}
.y6{bottom:1066.650000px;}
.y5b{bottom:1076.190000px;}
.y8d{bottom:1076.550000px;}
.y5{bottom:1084.110000px;}
.y5a{bottom:1096.890000px;}
.y8c{bottom:1097.250000px;}
.y4{bottom:1103.370000px;}
.y98{bottom:1108.050000px;}
.y8{bottom:1109.863245px;}
.y59{bottom:1117.950000px;}
.y3{bottom:1133.430000px;}
.ya9{bottom:1138.290000px;}
.y58{bottom:1138.650000px;}
.y2{bottom:1150.920000px;}
.y1{bottom:1179.720000px;}
.ya{bottom:1218.240000px;}
.h7{height:15.941650px;}
.h1b{height:20.160000px;}
.h15{height:21.960000px;}
.h2a{height:30.945000px;}
.h2c{height:30.981000px;}
.h2b{height:31.125000px;}
.h2d{height:31.176000px;}
.h5{height:31.952109px;}
.hd{height:33.840000px;}
.h9{height:34.020000px;}
.hb{height:41.580000px;}
.h4{height:41.738906px;}
.hc{height:45.116367px;}
.h26{height:45.885000px;}
.h28{height:45.895500px;}
.h20{height:45.900000px;}
.h2f{height:45.921000px;}
.h22{height:45.936000px;}
.h25{height:46.065000px;}
.h29{height:46.075500px;}
.h21{height:46.080000px;}
.h27{height:46.101000px;}
.h1f{height:46.102500px;}
.h24{height:46.110000px;}
.h30{height:50.800781px;}
.h8{height:52.040864px;}
.h6{height:53.709961px;}
.h3{height:54.070312px;}
.h17{height:58.651172px;}
.h14{height:59.439023px;}
.h19{height:60.226875px;}
.h1d{height:64.546875px;}
.h18{height:64.980000px;}
.h1c{height:67.824844px;}
.h12{height:70.664062px;}
.ha{height:71.613281px;}
.h10{height:72.562500px;}
.he{height:73.722656px;}
.h1e{height:77.035500px;}
.h23{height:77.220000px;}
.h2e{height:77.256000px;}
.h13{height:80.464922px;}
.h2{height:81.105469px;}
.h11{height:81.736875px;}
.hf{height:84.898125px;}
.h16{height:117.936000px;}
.h1a{height:160.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:48.420000px;}
.wb{width:48.600000px;}
.w1c{width:52.776000px;}
.wd{width:61.365000px;}
.wf{width:66.801000px;}
.w8{width:70.200000px;}
.w5{width:76.680000px;}
.we{width:78.285000px;}
.wc{width:78.696000px;}
.w9{width:82.971000px;}
.w11{width:86.430000px;}
.wa{width:88.416000px;}
.w10{width:95.385000px;}
.w2{width:103.257005px;}
.w16{width:105.321000px;}
.w15{width:105.465000px;}
.w1f{width:110.190000px;}
.w20{width:110.370000px;}
.w1a{width:110.511000px;}
.w1e{width:110.901000px;}
.w18{width:116.271000px;}
.w12{width:133.956000px;}
.w17{width:145.290000px;}
.w1b{width:146.556000px;}
.w14{width:150.690000px;}
.w1d{width:158.025000px;}
.w3{width:194.940000px;}
.w7{width:263.595000px;}
.w6{width:418.755000px;}
.w4{width:444.420000px;}
.w19{width:560.085000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:3.960000px;}
.x9{left:8.640000px;}
.x7{left:11.245577px;}
.xa{left:14.400000px;}
.x17{left:15.654000px;}
.xb{left:23.580000px;}
.x13{left:49.500000px;}
.x14{left:77.616000px;}
.x2{left:135.036000px;}
.xe{left:137.016000px;}
.x16{left:139.716000px;}
.xd{left:146.016000px;}
.x28{left:147.456000px;}
.x1{left:148.536000px;}
.x3{left:172.110000px;}
.x12{left:177.870000px;}
.x32{left:189.030000px;}
.x18{left:223.410000px;}
.x2a{left:250.950000px;}
.x29{left:264.495000px;}
.x23{left:274.395000px;}
.x19{left:312.555000px;}
.x24{left:323.535000px;}
.x10{left:327.675000px;}
.xf{left:333.255000px;}
.x11{left:340.815000px;}
.x1b{left:361.875000px;}
.x2b{left:398.235000px;}
.x1c{left:441.480000px;}
.x5{left:446.505000px;}
.x2c{left:451.740000px;}
.x25{left:474.960000px;}
.x1d{left:503.580000px;}
.x6{left:524.047557px;}
.x26{left:581.160000px;}
.x1e{left:582.600000px;}
.x2d{left:610.500000px;}
.x4{left:629.970000px;}
.x1f{left:650.130000px;}
.x8{left:652.177557px;}
.xc{left:682.200000px;}
.x15{left:687.600000px;}
.x2e{left:722.130000px;}
.x21{left:730.050000px;}
.x20{left:746.250000px;}
.x2f{left:821.880000px;}
.x22{left:830.340000px;}
.x27{left:832.680000px;}
.x30{left:834.840000px;}
.x31{left:839.880000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls8{letter-spacing:-1.920000pt;}
.lsa{letter-spacing:-1.408000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-1.024000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.069333pt;}
.lsb{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.960000pt;}
.ws0{word-spacing:-17.536000pt;}
.ws3{word-spacing:-16.512000pt;}
.wsb{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.360000pt;}
.ws6{word-spacing:-14.976000pt;}
.ws9{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.592000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws1{word-spacing:-0.044353pt;}
.ws5{word-spacing:0.000000pt;}
._23{margin-left:-2.688000pt;}
._0{margin-left:-1.536000pt;}
._2{width:1.344000pt;}
._5{width:2.560000pt;}
._17{width:3.562667pt;}
._6{width:4.544000pt;}
._7{width:6.016000pt;}
._b{width:7.680000pt;}
._c{width:9.024000pt;}
._d{width:9.984000pt;}
._14{width:10.944000pt;}
._16{width:11.840000pt;}
._8{width:12.736000pt;}
._9{width:14.058667pt;}
._1f{width:15.040000pt;}
._10{width:17.109333pt;}
._f{width:18.730667pt;}
._1b{width:20.074667pt;}
._22{width:21.109333pt;}
._1d{width:22.016000pt;}
._1e{width:23.040000pt;}
._a{width:24.768000pt;}
._1a{width:25.728000pt;}
._20{width:26.816000pt;}
._18{width:28.480000pt;}
._19{width:29.440000pt;}
._28{width:30.400000pt;}
._4{width:31.296000pt;}
._3{width:32.618667pt;}
._15{width:35.136000pt;}
._21{width:36.362667pt;}
._29{width:37.760000pt;}
._11{width:38.720000pt;}
._13{width:39.680000pt;}
._12{width:40.704000pt;}
._24{width:43.328000pt;}
._25{width:44.544000pt;}
._e{width:46.656000pt;}
._2a{width:52.992000pt;}
._1c{width:53.952000pt;}
._2b{width:59.648000pt;}
._2c{width:60.544000pt;}
._26{width:62.208000pt;}
._27{width:63.232000pt;}
._1{width:383.998507pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:44.352763pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.038862pt;}
.ye{bottom:3.360000pt;}
.y57{bottom:4.000000pt;}
.y41{bottom:4.320000pt;}
.y4c{bottom:6.880000pt;}
.y55{bottom:7.226667pt;}
.yb{bottom:8.640000pt;}
.ycc{bottom:12.800000pt;}
.yd5{bottom:13.106667pt;}
.yce{bottom:13.120000pt;}
.yd3{bottom:13.146667pt;}
.yd7{bottom:13.266667pt;}
.yd0{bottom:13.280000pt;}
.y10{bottom:14.720000pt;}
.yd{bottom:18.400000pt;}
.y48{bottom:18.760000pt;}
.y54{bottom:22.586667pt;}
.yc{bottom:23.360000pt;}
.yf{bottom:24.160000pt;}
.y56{bottom:24.800000pt;}
.y4b{bottom:26.240000pt;}
.yba{bottom:26.386667pt;}
.y9b{bottom:26.400000pt;}
.yc0{bottom:26.426667pt;}
.ybc{bottom:26.546667pt;}
.y99{bottom:26.560000pt;}
.yb3{bottom:26.586667pt;}
.y7{bottom:31.200000pt;}
.y47{bottom:34.760000pt;}
.y97{bottom:35.360000pt;}
.yaf{bottom:35.520000pt;}
.y53{bottom:37.946667pt;}
.y4a{bottom:45.440000pt;}
.y46{bottom:53.160000pt;}
.y96{bottom:53.760000pt;}
.yae{bottom:53.920000pt;}
.y52{bottom:53.946667pt;}
.y11b{bottom:63.200000pt;}
.ye2{bottom:66.720000pt;}
.ya8{bottom:68.960000pt;}
.y3f{bottom:71.360000pt;}
.y45{bottom:71.560000pt;}
.y51{bottom:72.346667pt;}
.y8b{bottom:73.600000pt;}
.y95{bottom:74.080000pt;}
.yc2{bottom:76.160000pt;}
.yf4{bottom:80.160000pt;}
.y11a{bottom:81.600000pt;}
.ya7{bottom:83.680000pt;}
.ye1{bottom:85.120000pt;}
.y3e{bottom:89.760000pt;}
.y44{bottom:89.800000pt;}
.y50{bottom:90.746667pt;}
.yfb{bottom:91.360000pt;}
.y8a{bottom:92.000000pt;}
.yf3{bottom:98.560000pt;}
.y119{bottom:100.000000pt;}
.ye0{bottom:103.520000pt;}
.y3d{bottom:108.160000pt;}
.y4f{bottom:108.826667pt;}
.yfa{bottom:109.760000pt;}
.y89{bottom:110.400000pt;}
.yf2{bottom:113.280000pt;}
.yc1{bottom:117.760000pt;}
.y118{bottom:118.400000pt;}
.ydf{bottom:121.600000pt;}
.yf9{bottom:124.480000pt;}
.y3c{bottom:126.560000pt;}
.y88{bottom:128.800000pt;}
.y4e{bottom:130.426667pt;}
.y117{bottom:136.800000pt;}
.yde{bottom:140.320000pt;}
.y3b{bottom:144.960000pt;}
.y94{bottom:146.880000pt;}
.y87{bottom:147.200000pt;}
.y116{bottom:155.200000pt;}
.ydd{bottom:155.360000pt;}
.ybf{bottom:159.360000pt;}
.y3a{bottom:163.360000pt;}
.y93{bottom:165.280000pt;}
.y86{bottom:165.600000pt;}
.y115{bottom:173.600000pt;}
.y4d{bottom:181.120000pt;}
.y39{bottom:181.760000pt;}
.ydc{bottom:183.720000pt;}
.y85{bottom:184.026667pt;}
.y114{bottom:192.026667pt;}
.y38{bottom:200.186667pt;}
.ybe{bottom:201.000000pt;}
.y84{bottom:202.426667pt;}
.y113{bottom:210.426667pt;}
.ydb{bottom:212.040000pt;}
.y37{bottom:218.586667pt;}
.y83{bottom:220.826667pt;}
.y112{bottom:228.826667pt;}
.y36{bottom:236.986667pt;}
.y82{bottom:239.226667pt;}
.yda{bottom:240.200000pt;}
.ybd{bottom:242.600000pt;}
.y111{bottom:246.906667pt;}
.y35{bottom:255.386667pt;}
.y81{bottom:257.626667pt;}
.y110{bottom:265.306667pt;}
.yd9{bottom:268.520000pt;}
.y34{bottom:273.786667pt;}
.y80{bottom:276.026667pt;}
.y10f{bottom:284.026667pt;}
.ybb{bottom:284.040000pt;}
.y33{bottom:292.186667pt;}
.y7f{bottom:294.426667pt;}
.yd8{bottom:296.680000pt;}
.y10e{bottom:302.426667pt;}
.y32{bottom:310.586667pt;}
.y7e{bottom:312.826667pt;}
.y10d{bottom:320.826667pt;}
.y49{bottom:324.666667pt;}
.yd6{bottom:324.840000pt;}
.yb9{bottom:325.640000pt;}
.y31{bottom:328.986667pt;}
.y92{bottom:330.906667pt;}
.y7d{bottom:331.226667pt;}
.y10c{bottom:339.226667pt;}
.y30{bottom:347.386667pt;}
.y91{bottom:349.306667pt;}
.y7c{bottom:349.626667pt;}
.yd4{bottom:353.160000pt;}
.ya6{bottom:353.306667pt;}
.y10b{bottom:357.626667pt;}
.yf1{bottom:364.986667pt;}
.y2f{bottom:365.786667pt;}
.yb8{bottom:367.080000pt;}
.y90{bottom:367.706667pt;}
.y7b{bottom:368.026667pt;}
.ya5{bottom:371.706667pt;}
.y10a{bottom:376.026667pt;}
.yf0{bottom:380.520000pt;}
.yd2{bottom:381.320000pt;}
.y43{bottom:383.066667pt;}
.y2e{bottom:384.186667pt;}
.y7a{bottom:386.426667pt;}
.ya4{bottom:390.106667pt;}
.y109{bottom:394.466667pt;}
.y2d{bottom:402.626667pt;}
.y79{bottom:404.866667pt;}
.ya3{bottom:405.026667pt;}
.yb7{bottom:408.706667pt;}
.yd1{bottom:409.506667pt;}
.y108{bottom:412.866667pt;}
.y2c{bottom:421.026667pt;}
.yef{bottom:422.146667pt;}
.y78{bottom:423.266667pt;}
.y107{bottom:431.266667pt;}
.ycf{bottom:437.826667pt;}
.y2b{bottom:439.426667pt;}
.y77{bottom:441.666667pt;}
.y106{bottom:449.666667pt;}
.yb6{bottom:450.306667pt;}
.y2a{bottom:457.826667pt;}
.y76{bottom:460.066667pt;}
.yf8{bottom:460.226667pt;}
.yee{bottom:463.746667pt;}
.ycd{bottom:466.146667pt;}
.y105{bottom:468.066667pt;}
.y29{bottom:476.226667pt;}
.y75{bottom:478.466667pt;}
.yf7{bottom:478.626667pt;}
.y104{bottom:486.466667pt;}
.y42{bottom:488.546667pt;}
.yb5{bottom:491.746667pt;}
.y28{bottom:494.146667pt;}
.ycb{bottom:494.306667pt;}
.y74{bottom:496.866667pt;}
.yf6{bottom:497.026667pt;}
.y103{bottom:504.866667pt;}
.yed{bottom:505.346667pt;}
.y40{bottom:510.146667pt;}
.yf5{bottom:511.746667pt;}
.y73{bottom:515.266667pt;}
.y27{bottom:518.146667pt;}
.y102{bottom:523.266667pt;}
.yca{bottom:526.146667pt;}
.yb4{bottom:533.346667pt;}
.y72{bottom:533.666667pt;}
.y26{bottom:534.786667pt;}
.y101{bottom:541.346667pt;}
.yc9{bottom:544.546667pt;}
.yec{bottom:546.946667pt;}
.y71{bottom:552.066667pt;}
.y25{bottom:552.866667pt;}
.y100{bottom:559.746667pt;}
.yc8{bottom:562.946667pt;}
.y11d{bottom:570.146667pt;}
.y70{bottom:570.466667pt;}
.y24{bottom:571.586667pt;}
.yb2{bottom:574.946667pt;}
.yff{bottom:578.146667pt;}
.yc7{bottom:581.346667pt;}
.yeb{bottom:588.386667pt;}
.y11c{bottom:588.546667pt;}
.y6f{bottom:588.866667pt;}
.y23{bottom:589.666667pt;}
.yfe{bottom:596.546667pt;}
.yc6{bottom:599.746667pt;}
.y6e{bottom:607.293333pt;}
.y22{bottom:608.093333pt;}
.yc5{bottom:614.493333pt;}
.yfd{bottom:614.973333pt;}
.yb1{bottom:616.573333pt;}
.y6d{bottom:625.693333pt;}
.y21{bottom:626.813333pt;}
.yfc{bottom:629.693333pt;}
.yea{bottom:630.013333pt;}
.y6c{bottom:644.093333pt;}
.y20{bottom:644.893333pt;}
.yb0{bottom:658.173333pt;}
.y6b{bottom:662.493333pt;}
.y1f{bottom:663.293333pt;}
.ye9{bottom:671.613333pt;}
.ya2{bottom:678.653333pt;}
.y6a{bottom:680.893333pt;}
.y1e{bottom:682.013333pt;}
.ya1{bottom:694.013333pt;}
.y8f{bottom:698.973333pt;}
.y69{bottom:699.293333pt;}
.yad{bottom:699.613333pt;}
.y1d{bottom:700.093333pt;}
.ye8{bottom:713.213333pt;}
.y8e{bottom:717.373333pt;}
.y68{bottom:717.693333pt;}
.y1c{bottom:718.493333pt;}
.ya0{bottom:735.613333pt;}
.y67{bottom:736.093333pt;}
.y1b{bottom:737.213333pt;}
.y66{bottom:754.493333pt;}
.ye7{bottom:754.813333pt;}
.y1a{bottom:755.293333pt;}
.yac{bottom:772.573333pt;}
.y65{bottom:772.893333pt;}
.y19{bottom:773.693333pt;}
.y9f{bottom:777.213333pt;}
.yab{bottom:790.973333pt;}
.y64{bottom:791.293333pt;}
.y18{bottom:792.413333pt;}
.yaa{bottom:809.413333pt;}
.y63{bottom:809.733333pt;}
.y17{bottom:810.853333pt;}
.y9e{bottom:818.693333pt;}
.ye6{bottom:827.813333pt;}
.y62{bottom:828.133333pt;}
.y16{bottom:828.933333pt;}
.ye5{bottom:846.213333pt;}
.y61{bottom:846.533333pt;}
.y15{bottom:847.333333pt;}
.y9d{bottom:860.293333pt;}
.ye4{bottom:864.613333pt;}
.y60{bottom:864.933333pt;}
.y14{bottom:865.733333pt;}
.ye3{bottom:883.013333pt;}
.y5f{bottom:883.333333pt;}
.y13{bottom:884.613333pt;}
.yc4{bottom:886.213333pt;}
.y5e{bottom:901.733333pt;}
.y9c{bottom:901.893333pt;}
.y12{bottom:906.053333pt;}
.y5d{bottom:920.133333pt;}
.y11{bottom:927.493333pt;}
.y5c{bottom:938.533333pt;}
.yc3{bottom:943.333333pt;}
.y9a{bottom:943.493333pt;}
.y6{bottom:948.133333pt;}
.y5b{bottom:956.613333pt;}
.y8d{bottom:956.933333pt;}
.y5{bottom:963.653333pt;}
.y5a{bottom:975.013333pt;}
.y8c{bottom:975.333333pt;}
.y4{bottom:980.773333pt;}
.y98{bottom:984.933333pt;}
.y8{bottom:986.545107pt;}
.y59{bottom:993.733333pt;}
.y3{bottom:1007.493333pt;}
.ya9{bottom:1011.813333pt;}
.y58{bottom:1012.133333pt;}
.y2{bottom:1023.040000pt;}
.y1{bottom:1048.640000pt;}
.ya{bottom:1082.880000pt;}
.h7{height:14.170356pt;}
.h1b{height:17.920000pt;}
.h15{height:19.520000pt;}
.h2a{height:27.506667pt;}
.h2c{height:27.538667pt;}
.h2b{height:27.666667pt;}
.h2d{height:27.712000pt;}
.h5{height:28.401875pt;}
.hd{height:30.080000pt;}
.h9{height:30.240000pt;}
.hb{height:36.960000pt;}
.h4{height:37.101250pt;}
.hc{height:40.103437pt;}
.h26{height:40.786667pt;}
.h28{height:40.796000pt;}
.h20{height:40.800000pt;}
.h2f{height:40.818667pt;}
.h22{height:40.832000pt;}
.h25{height:40.946667pt;}
.h29{height:40.956000pt;}
.h21{height:40.960000pt;}
.h27{height:40.978667pt;}
.h1f{height:40.980000pt;}
.h24{height:40.986667pt;}
.h30{height:45.156250pt;}
.h8{height:46.258546pt;}
.h6{height:47.742188pt;}
.h3{height:48.062500pt;}
.h17{height:52.134375pt;}
.h14{height:52.834688pt;}
.h19{height:53.535000pt;}
.h1d{height:57.375000pt;}
.h18{height:57.760000pt;}
.h1c{height:60.288750pt;}
.h12{height:62.812500pt;}
.ha{height:63.656250pt;}
.h10{height:64.500000pt;}
.he{height:65.531250pt;}
.h1e{height:68.476000pt;}
.h23{height:68.640000pt;}
.h2e{height:68.672000pt;}
.h13{height:71.524375pt;}
.h2{height:72.093750pt;}
.h11{height:72.655000pt;}
.hf{height:75.465000pt;}
.h16{height:104.832000pt;}
.h1a{height:142.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:43.040000pt;}
.wb{width:43.200000pt;}
.w1c{width:46.912000pt;}
.wd{width:54.546667pt;}
.wf{width:59.378667pt;}
.w8{width:62.400000pt;}
.w5{width:68.160000pt;}
.we{width:69.586667pt;}
.wc{width:69.952000pt;}
.w9{width:73.752000pt;}
.w11{width:76.826667pt;}
.wa{width:78.592000pt;}
.w10{width:84.786667pt;}
.w2{width:91.784005pt;}
.w16{width:93.618667pt;}
.w15{width:93.746667pt;}
.w1f{width:97.946667pt;}
.w20{width:98.106667pt;}
.w1a{width:98.232000pt;}
.w1e{width:98.578667pt;}
.w18{width:103.352000pt;}
.w12{width:119.072000pt;}
.w17{width:129.146667pt;}
.w1b{width:130.272000pt;}
.w14{width:133.946667pt;}
.w1d{width:140.466667pt;}
.w3{width:173.280000pt;}
.w7{width:234.306667pt;}
.w6{width:372.226667pt;}
.w4{width:395.040000pt;}
.w19{width:497.853333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:3.520000pt;}
.x9{left:7.680000pt;}
.x7{left:9.996069pt;}
.xa{left:12.800000pt;}
.x17{left:13.914667pt;}
.xb{left:20.960000pt;}
.x13{left:44.000000pt;}
.x14{left:68.992000pt;}
.x2{left:120.032000pt;}
.xe{left:121.792000pt;}
.x16{left:124.192000pt;}
.xd{left:129.792000pt;}
.x28{left:131.072000pt;}
.x1{left:132.032000pt;}
.x3{left:152.986667pt;}
.x12{left:158.106667pt;}
.x32{left:168.026667pt;}
.x18{left:198.586667pt;}
.x2a{left:223.066667pt;}
.x29{left:235.106667pt;}
.x23{left:243.906667pt;}
.x19{left:277.826667pt;}
.x24{left:287.586667pt;}
.x10{left:291.266667pt;}
.xf{left:296.226667pt;}
.x11{left:302.946667pt;}
.x1b{left:321.666667pt;}
.x2b{left:353.986667pt;}
.x1c{left:392.426667pt;}
.x5{left:396.893333pt;}
.x2c{left:401.546667pt;}
.x25{left:422.186667pt;}
.x1d{left:447.626667pt;}
.x6{left:465.820051pt;}
.x26{left:516.586667pt;}
.x1e{left:517.866667pt;}
.x2d{left:542.666667pt;}
.x4{left:559.973333pt;}
.x1f{left:577.893333pt;}
.x8{left:579.713384pt;}
.xc{left:606.400000pt;}
.x15{left:611.200000pt;}
.x2e{left:641.893333pt;}
.x21{left:648.933333pt;}
.x20{left:663.333333pt;}
.x2f{left:730.560000pt;}
.x22{left:738.080000pt;}
.x27{left:740.160000pt;}
.x30{left:742.080000pt;}
.x31{left:746.560000pt;}
}




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