
    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_af0e745c11979938be883bc9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087402;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_23ffa582a305dcf1015a7152.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_24bf1c654374089127366622.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.087402;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_7d57c6a6097ebe753a836336.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_77c098f2b0e46524c65dbcbd.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_9ca07a8a1524771c66daf27b.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_5046c59de88d7e42cb3974c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854492;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_7830c178994ba4f364a87819.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ls17{letter-spacing:-1.266000px;}
.ls22{letter-spacing:-0.285600px;}
.ls1f{letter-spacing:-0.254400px;}
.lsa{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls18{letter-spacing:-0.038880px;}
.ls12{letter-spacing:-0.031680px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014760px;}
.lsf{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.060480px;}
.ls10{letter-spacing:0.064800px;}
.ls1{letter-spacing:0.090000px;}
.ls15{letter-spacing:0.095400px;}
.ls1a{letter-spacing:0.113400px;}
.ls20{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.173520px;}
.ls8{letter-spacing:0.174600px;}
.ls1c{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.181200px;}
.ls1e{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.206640px;}
.ls19{letter-spacing:0.293520px;}
.ls21{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls1b{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;}
.wsb{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.407600px;}
.ws9{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.339800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.187520px;}
.wsc{word-spacing:-13.162800px;}
.ws3{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.972000px;}
.wsd{word-spacing:-11.960400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._a{margin-left:-3.907800px;}
._4{margin-left:-2.825400px;}
._2{margin-left:-1.803600px;}
._1{width:1.174152px;}
._5{width:2.413076px;}
._7{width:3.487200px;}
._6{width:4.509000px;}
._b{width:5.891760px;}
._3{width:7.455000px;}
._9{width:8.476800px;}
._0{width:9.562152px;}
._e{width:10.698288px;}
._8{width:12.024000px;}
._f{width:14.488920px;}
._d{width:16.232400px;}
._c{width:17.735400px;}
._10{width:19.238400px;}
._11{width:20.469048px;}
._13{width:21.546720px;}
._14{width:22.677840px;}
._15{width:30.624840px;}
._16{width:31.782600px;}
._12{width:170.886960px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yab{bottom:7.830000px;}
.yb6{bottom:7.860000px;}
.yaa{bottom:7.920000px;}
.yfb{bottom:21.510000px;}
.ya8{bottom:35.190000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.yd0{bottom:89.820000px;}
.y1{bottom:101.640000px;}
.y128{bottom:113.790000px;}
.yd9{bottom:113.880000px;}
.y87{bottom:121.530000px;}
.yb1{bottom:126.120000px;}
.yd8{bottom:131.520000px;}
.y5d{bottom:137.910000px;}
.y127{bottom:140.340000px;}
.yb0{bottom:141.060000px;}
.y14f{bottom:141.870000px;}
.yd7{bottom:149.070000px;}
.y86{bottom:157.080000px;}
.y126{bottom:157.980000px;}
.y14e{bottom:159.510000px;}
.y27{bottom:161.130000px;}
.yd6{bottom:166.620000px;}
.yaf{bottom:168.420000px;}
.y10b{bottom:171.570000px;}
.yfa{bottom:173.010000px;}
.y5c{bottom:173.550000px;}
.y3e{bottom:175.710000px;}
.y14d{bottom:177.060000px;}
.y26{bottom:178.680000px;}
.y125{bottom:184.530000px;}
.y5b{bottom:191.100000px;}
.y85{bottom:192.720000px;}
.yd5{bottom:193.260000px;}
.yae{bottom:195.690000px;}
.y25{bottom:196.320000px;}
.yf9{bottom:200.370000px;}
.y124{bottom:202.170000px;}
.y14c{bottom:203.610000px;}
.y10a{bottom:207.210000px;}
.y5a{bottom:208.740000px;}
.y84{bottom:210.270000px;}
.y3d{bottom:211.260000px;}
.y24{bottom:213.870000px;}
.y14b{bottom:221.250000px;}
.yad{bottom:223.050000px;}
.y59{bottom:226.290000px;}
.yf8{bottom:227.730000px;}
.y83{bottom:227.820000px;}
.yd4{bottom:228.810000px;}
.y123{bottom:229.080000px;}
.y23{bottom:231.510000px;}
.y14a{bottom:238.800000px;}
.y109{bottom:239.340000px;}
.y58{bottom:243.840000px;}
.y3c{bottom:246.900000px;}
.y22{bottom:249.060000px;}
.yac{bottom:250.410000px;}
.yf7{bottom:255.090000px;}
.y149{bottom:256.440000px;}
.y102{bottom:257.970000px;}
.y82{bottom:263.460000px;}
.y3b{bottom:264.450000px;}
.y21{bottom:266.610000px;}
.y57{bottom:270.480000px;}
.yd3{bottom:271.110000px;}
.y122{bottom:277.320000px;}
.ya7{bottom:277.770000px;}
.y81{bottom:281.010000px;}
.y3a{bottom:282.000000px;}
.yf6{bottom:282.360000px;}
.y148{bottom:282.990000px;}
.y20{bottom:284.250000px;}
.y101{bottom:293.520000px;}
.y121{bottom:294.870000px;}
.yd2{bottom:298.470000px;}
.y39{bottom:299.640000px;}
.y147{bottom:300.540000px;}
.ya9{bottom:305.040000px;}
.y56{bottom:306.030000px;}
.yf5{bottom:309.720000px;}
.y120{bottom:312.510000px;}
.y80{bottom:316.650000px;}
.y38{bottom:317.190000px;}
.y1f{bottom:319.800000px;}
.y55{bottom:323.670000px;}
.y100{bottom:325.740000px;}
.yd1{bottom:325.830000px;}
.y146{bottom:327.180000px;}
.y11f{bottom:330.060000px;}
.y1e{bottom:337.440000px;}
.y145{bottom:344.730000px;}
.y11e{bottom:347.700000px;}
.y54{bottom:350.220000px;}
.y7f{bottom:352.200000px;}
.y37{bottom:352.830000px;}
.yce{bottom:353.190000px;}
.ya6{bottom:353.730000px;}
.y1d{bottom:354.990000px;}
.yf4{bottom:358.410000px;}
.y7e{bottom:369.750000px;}
.y36{bottom:370.380000px;}
.ya5{bottom:371.370000px;}
.y1c{bottom:372.540000px;}
.y11d{bottom:374.610000px;}
.yf3{bottom:376.050000px;}
.ycf{bottom:380.460000px;}
.y53{bottom:385.770000px;}
.y35{bottom:387.930000px;}
.ya4{bottom:388.920000px;}
.yf2{bottom:393.600000px;}
.y1b{bottom:399.450000px;}
.y52{bottom:404.220000px;}
.y7d{bottom:405.390000px;}
.y34{bottom:405.570000px;}
.y11c{bottom:411.600000px;}
.y144{bottom:415.470000px;}
.y51{bottom:422.580000px;}
.y7c{bottom:422.940000px;}
.y33{bottom:423.120000px;}
.ya3{bottom:424.560000px;}
.ycd{bottom:429.150000px;}
.y143{bottom:433.110000px;}
.y11b{bottom:438.510000px;}
.y50{bottom:441.030000px;}
.ya2{bottom:442.110000px;}
.yf1{bottom:446.790000px;}
.y1a{bottom:448.050000px;}
.y7b{bottom:458.580000px;}
.y32{bottom:458.760000px;}
.y4f{bottom:459.390000px;}
.ya1{bottom:459.660000px;}
.y16b{bottom:460.470000px;}
.yf0{bottom:464.340000px;}
.ycc{bottom:464.790000px;}
.y11a{bottom:475.890000px;}
.y31{bottom:476.340000px;}
.ya0{bottom:477.330000px;}
.y4e{bottom:477.870000px;}
.y16a{bottom:478.140000px;}
.yef{bottom:482.010000px;}
.y19{bottom:485.160000px;}
.y142{bottom:486.330000px;}
.ycb{bottom:488.760000px;}
.y7a{bottom:494.160000px;}
.y9f{bottom:494.880000px;}
.y169{bottom:495.690000px;}
.yee{bottom:499.560000px;}
.y18{bottom:502.710000px;}
.y141{bottom:503.880000px;}
.y4d{bottom:505.320000px;}
.y79{bottom:511.710000px;}
.y30{bottom:511.890000px;}
.y9e{bottom:512.520000px;}
.y108{bottom:516.030000px;}
.yca{bottom:516.120000px;}
.yed{bottom:517.110000px;}
.y17{bottom:520.260000px;}
.y168{bottom:522.330000px;}
.y119{bottom:524.130000px;}
.y78{bottom:529.350000px;}
.y9d{bottom:530.070000px;}
.y140{bottom:530.430000px;}
.y107{bottom:533.580000px;}
.y16{bottom:537.900000px;}
.y167{bottom:539.880000px;}
.y4c{bottom:540.870000px;}
.y118{bottom:541.770000px;}
.yc9{bottom:543.480000px;}
.yec{bottom:543.750000px;}
.y2f{bottom:544.110000px;}
.y9c{bottom:547.620000px;}
.y13f{bottom:548.070000px;}
.y15{bottom:555.450000px;}
.y166{bottom:557.430000px;}
.y117{bottom:559.320000px;}
.y77{bottom:564.900000px;}
.y13e{bottom:565.620000px;}
.y106{bottom:565.800000px;}
.yc8{bottom:570.750000px;}
.y14{bottom:573.090000px;}
.y9b{bottom:574.260000px;}
.yeb{bottom:576.690000px;}
.y116{bottom:576.870000px;}
.y76{bottom:582.540000px;}
.y165{bottom:584.070000px;}
.yff{bottom:585.690000px;}
.y13{bottom:590.640000px;}
.y13d{bottom:592.260000px;}
.y115{bottom:594.510000px;}
.yc7{bottom:598.110000px;}
.y75{bottom:600.090000px;}
.y164{bottom:601.620000px;}
.yea{bottom:604.050000px;}
.y12{bottom:608.190000px;}
.y13c{bottom:609.810000px;}
.y9a{bottom:610.170000px;}
.y74{bottom:617.640000px;}
.y163{bottom:619.260000px;}
.yfe{bottom:621.240000px;}
.yc5{bottom:625.470000px;}
.y11{bottom:625.830000px;}
.y114{bottom:630.060000px;}
.ye9{bottom:631.410000px;}
.y73{bottom:635.280000px;}
.y13b{bottom:636.360000px;}
.yfd{bottom:638.880000px;}
.y10{bottom:643.380000px;}
.y162{bottom:645.810000px;}
.y113{bottom:647.700000px;}
.yc6{bottom:652.740000px;}
.y72{bottom:652.830000px;}
.y13a{bottom:654.000000px;}
.y99{bottom:658.410000px;}
.ye8{bottom:658.680000px;}
.yf{bottom:661.020000px;}
.y161{bottom:663.360000px;}
.y112{bottom:665.250000px;}
.y71{bottom:670.380000px;}
.yfc{bottom:671.100000px;}
.y98{bottom:676.050000px;}
.ye{bottom:678.570000px;}
.y139{bottom:680.550000px;}
.y111{bottom:682.800000px;}
.ye6{bottom:686.040000px;}
.y160{bottom:690.000000px;}
.yd{bottom:696.120000px;}
.y110{bottom:700.440000px;}
.yc4{bottom:701.520000px;}
.y97{bottom:702.600000px;}
.y70{bottom:705.930000px;}
.y138{bottom:707.190000px;}
.y15f{bottom:707.550000px;}
.ye7{bottom:713.400000px;}
.yc{bottom:713.760000px;}
.y10f{bottom:717.990000px;}
.yc3{bottom:719.070000px;}
.y6f{bottom:724.380000px;}
.y137{bottom:724.740000px;}
.y15e{bottom:734.190000px;}
.y10e{bottom:735.540000px;}
.yc2{bottom:736.620000px;}
.y96{bottom:738.150000px;}
.yb{bottom:740.670000px;}
.y6e{bottom:742.830000px;}
.y136{bottom:751.290000px;}
.y15d{bottom:751.740000px;}
.y10d{bottom:753.180000px;}
.y95{bottom:755.790000px;}
.y6d{bottom:761.190000px;}
.ye5{bottom:762.090000px;}
.y135{bottom:768.930000px;}
.y15c{bottom:769.290000px;}
.y10c{bottom:770.730000px;}
.yc1{bottom:772.260000px;}
.y6c{bottom:779.640000px;}
.y94{bottom:782.340000px;}
.ya{bottom:787.380000px;}
.yc0{bottom:789.810000px;}
.y134{bottom:795.480000px;}
.y15b{bottom:795.930000px;}
.ye4{bottom:797.640000px;}
.y2e{bottom:804.030000px;}
.ybf{bottom:807.450000px;}
.y15a{bottom:813.480000px;}
.y6b{bottom:816.090000px;}
.y93{bottom:817.980000px;}
.ye3{bottom:821.670000px;}
.y133{bottom:822.030000px;}
.y9{bottom:823.200000px;}
.ybe{bottom:825.000000px;}
.y6a{bottom:833.640000px;}
.y92{bottom:835.530000px;}
.y2d{bottom:836.250000px;}
.y159{bottom:840.030000px;}
.ybd{bottom:842.550000px;}
.y4b{bottom:844.260000px;}
.y105{bottom:845.970000px;}
.y132{bottom:848.670000px;}
.ye2{bottom:848.940000px;}
.y69{bottom:851.280000px;}
.y91{bottom:853.080000px;}
.y158{bottom:857.670000px;}
.y8{bottom:859.200000px;}
.ybc{bottom:860.190000px;}
.y104{bottom:863.520000px;}
.y131{bottom:866.220000px;}
.y90{bottom:870.720000px;}
.ye1{bottom:876.300000px;}
.ybb{bottom:877.740000px;}
.y68{bottom:877.830000px;}
.y4a{bottom:879.810000px;}
.y157{bottom:884.220000px;}
.y130{bottom:892.860000px;}
.y7{bottom:895.200000px;}
.yba{bottom:895.380000px;}
.y103{bottom:895.740000px;}
.y49{bottom:897.450000px;}
.y156{bottom:901.860000px;}
.ye0{bottom:903.660000px;}
.y8f{bottom:906.270000px;}
.y12f{bottom:910.410000px;}
.y6{bottom:913.200000px;}
.y67{bottom:913.380000px;}
.y48{bottom:915.000000px;}
.yb9{bottom:921.930000px;}
.y8e{bottom:923.820000px;}
.y12e{bottom:927.960000px;}
.y155{bottom:928.410000px;}
.ydf{bottom:930.930000px;}
.y66{bottom:931.020000px;}
.y47{bottom:932.550000px;}
.y154{bottom:945.960000px;}
.y65{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.y46{bottom:950.190000px;}
.y12d{bottom:954.600000px;}
.yb8{bottom:954.870000px;}
.ydd{bottom:958.290000px;}
.y8d{bottom:959.370000px;}
.y45{bottom:967.740000px;}
.y153{bottom:972.600000px;}
.y64{bottom:975.120000px;}
.y8c{bottom:977.820000px;}
.y12c{bottom:981.150000px;}
.yb7{bottom:982.230000px;}
.yde{bottom:985.650000px;}
.y4{bottom:987.630000px;}
.y152{bottom:990.150000px;}
.y44{bottom:994.290000px;}
.y8b{bottom:996.270000px;}
.y12b{bottom:998.790000px;}
.y63{bottom:1007.790000px;}
.yb5{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y8a{bottom:1014.660000px;}
.y151{bottom:1016.820000px;}
.y12a{bottom:1025.370000px;}
.y43{bottom:1029.960000px;}
.y89{bottom:1033.110000px;}
.ydc{bottom:1034.370000px;}
.yb4{bottom:1036.890000px;}
.y129{bottom:1042.920000px;}
.y62{bottom:1043.370000px;}
.y42{bottom:1047.510000px;}
.ydb{bottom:1051.920000px;}
.y61{bottom:1060.920000px;}
.yb2{bottom:1064.250000px;}
.y41{bottom:1065.150000px;}
.y88{bottom:1069.560000px;}
.y60{bottom:1078.560000px;}
.y2c{bottom:1087.110000px;}
.y150{bottom:1087.560000px;}
.yb3{bottom:1091.610000px;}
.y40{bottom:1091.700000px;}
.y5f{bottom:1096.110000px;}
.yda{bottom:1105.110000px;}
.y5e{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y3f{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h10{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:26.995781px;}
.h3{height:39.111328px;}
.h6{height:50.902383px;}
.h7{height:52.252734px;}
.hd{height:53.910000px;}
.h12{height:53.940000px;}
.h8{height:55.779258px;}
.h5{height:57.258984px;}
.hc{height:59.973223px;}
.hb{height:61.793886px;}
.h9{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.903516px;}
.h11{height:108.540000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w26{width:46.530000px;}
.w18{width:49.140000px;}
.wd{width:49.410000px;}
.w17{width:52.410000px;}
.w23{width:52.470000px;}
.w24{width:52.500000px;}
.w2d{width:54.750000px;}
.w19{width:55.530000px;}
.w25{width:57.780000px;}
.wf{width:57.870000px;}
.we{width:58.350000px;}
.w2b{width:63.090000px;}
.w21{width:63.180000px;}
.w9{width:63.360000px;}
.w2e{width:63.810000px;}
.w3{width:64.980000px;}
.w13{width:67.140000px;}
.w14{width:69.390000px;}
.w27{width:72.090000px;}
.w10{width:72.180000px;}
.w11{width:72.210000px;}
.wa{width:72.270000px;}
.wb{width:72.450000px;}
.w28{width:80.460000px;}
.w20{width:86.220000px;}
.w7{width:97.020000px;}
.w6{width:97.110000px;}
.w2a{width:101.700000px;}
.w8{width:105.420000px;}
.w15{width:106.290000px;}
.w1f{width:113.220000px;}
.w1b{width:116.460000px;}
.w1d{width:116.490000px;}
.w1a{width:118.380000px;}
.w1c{width:118.710000px;}
.w2c{width:119.280000px;}
.w5{width:136.350000px;}
.w12{width:137.250000px;}
.w29{width:156.990000px;}
.w16{width:158.610000px;}
.wc{width:158.700000px;}
.w22{width:161.940000px;}
.w1e{width:227.250000px;}
.w4{width:301.080000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:3.960000px;}
.x1{left:68.040000px;}
.x42{left:69.839987px;}
.x3c{left:76.319987px;}
.x3e{left:83.789987px;}
.x3a{left:91.889987px;}
.xa{left:95.039987px;}
.x24{left:96.480000px;}
.x44{left:111.239987px;}
.x41{left:162.479987px;}
.x2{left:195.599987px;}
.x25{left:215.580000px;}
.x2f{left:238.170000px;}
.x19{left:239.340000px;}
.x7{left:246.539987px;}
.x43{left:258.239987px;}
.xf{left:260.400000px;}
.x1f{left:277.230000px;}
.x2a{left:290.280000px;}
.x30{left:296.760000px;}
.x1a{left:297.930000px;}
.x34{left:303.780000px;}
.xb{left:313.319987px;}
.xc{left:316.829987px;}
.xd{left:318.179987px;}
.x15{left:330.690000px;}
.x26{left:332.760000px;}
.x31{left:344.100000px;}
.x3d{left:345.629987px;}
.x5{left:349.139987px;}
.x11{left:358.230000px;}
.x9{left:363.719987px;}
.x1b{left:370.830000px;}
.x2b{left:377.220000px;}
.x20{left:384.330000px;}
.x3f{left:400.259987px;}
.x16{left:403.860000px;}
.x35{left:406.290000px;}
.x32{left:416.910000px;}
.x2c{left:441.120000px;}
.x1c{left:443.730000px;}
.x27{left:452.280000px;}
.x17{left:454.080000px;}
.x12{left:456.060000px;}
.x21{left:457.500000px;}
.x36{left:470.190000px;}
.x2d{left:494.310000px;}
.x33{left:498.090000px;}
.x18{left:504.210000px;}
.x22{left:510.720000px;}
.x1d{left:516.660000px;}
.x37{left:525.660000px;}
.x2e{left:547.530000px;}
.x23{left:560.580000px;}
.x10{left:562.200000px;}
.x28{left:569.490000px;}
.x1e{left:584.520000px;}
.x8{left:599.639987px;}
.x13{left:626.280000px;}
.x39{left:648.059987px;}
.x4{left:676.139987px;}
.x6{left:679.559987px;}
.x29{left:683.520000px;}
.x38{left:687.389987px;}
.x3b{left:690.809987px;}
.x40{left:695.309987px;}
.x14{left:800.339987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-1.125333pt;}
.ls22{letter-spacing:-0.253867pt;}
.ls1f{letter-spacing:-0.226133pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls18{letter-spacing:-0.034560pt;}
.ls12{letter-spacing:-0.028160pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013120pt;}
.lsf{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.053760pt;}
.ls10{letter-spacing:0.057600pt;}
.ls1{letter-spacing:0.080000pt;}
.ls15{letter-spacing:0.084800pt;}
.ls1a{letter-spacing:0.100800pt;}
.ls20{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.154240pt;}
.ls8{letter-spacing:0.155200pt;}
.ls1c{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.161067pt;}
.ls1e{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.183680pt;}
.ls19{letter-spacing:0.260907pt;}
.ls21{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.917867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.857600pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.722240pt;}
.wsc{word-spacing:-11.700267pt;}
.ws3{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.530667pt;}
.wsd{word-spacing:-10.631467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._a{margin-left:-3.473600pt;}
._4{margin-left:-2.511466pt;}
._2{margin-left:-1.603200pt;}
._1{width:1.043691pt;}
._5{width:2.144956pt;}
._7{width:3.099734pt;}
._6{width:4.008000pt;}
._b{width:5.237120pt;}
._3{width:6.626667pt;}
._9{width:7.534933pt;}
._0{width:8.499691pt;}
._e{width:9.509589pt;}
._8{width:10.688000pt;}
._f{width:12.879040pt;}
._d{width:14.428800pt;}
._c{width:15.764800pt;}
._10{width:17.100800pt;}
._11{width:18.194709pt;}
._13{width:19.152640pt;}
._14{width:20.158080pt;}
._15{width:27.222080pt;}
._16{width:28.251200pt;}
._12{width:151.899520pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:6.960000pt;}
.yb6{bottom:6.986667pt;}
.yaa{bottom:7.040000pt;}
.yfb{bottom:19.120000pt;}
.ya8{bottom:31.280000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.yd0{bottom:79.840000pt;}
.y1{bottom:90.346667pt;}
.y128{bottom:101.146667pt;}
.yd9{bottom:101.226667pt;}
.y87{bottom:108.026667pt;}
.yb1{bottom:112.106667pt;}
.yd8{bottom:116.906667pt;}
.y5d{bottom:122.586667pt;}
.y127{bottom:124.746667pt;}
.yb0{bottom:125.386667pt;}
.y14f{bottom:126.106667pt;}
.yd7{bottom:132.506667pt;}
.y86{bottom:139.626667pt;}
.y126{bottom:140.426667pt;}
.y14e{bottom:141.786667pt;}
.y27{bottom:143.226667pt;}
.yd6{bottom:148.106667pt;}
.yaf{bottom:149.706667pt;}
.y10b{bottom:152.506667pt;}
.yfa{bottom:153.786667pt;}
.y5c{bottom:154.266667pt;}
.y3e{bottom:156.186667pt;}
.y14d{bottom:157.386667pt;}
.y26{bottom:158.826667pt;}
.y125{bottom:164.026667pt;}
.y5b{bottom:169.866667pt;}
.y85{bottom:171.306667pt;}
.yd5{bottom:171.786667pt;}
.yae{bottom:173.946667pt;}
.y25{bottom:174.506667pt;}
.yf9{bottom:178.106667pt;}
.y124{bottom:179.706667pt;}
.y14c{bottom:180.986667pt;}
.y10a{bottom:184.186667pt;}
.y5a{bottom:185.546667pt;}
.y84{bottom:186.906667pt;}
.y3d{bottom:187.786667pt;}
.y24{bottom:190.106667pt;}
.y14b{bottom:196.666667pt;}
.yad{bottom:198.266667pt;}
.y59{bottom:201.146667pt;}
.yf8{bottom:202.426667pt;}
.y83{bottom:202.506667pt;}
.yd4{bottom:203.386667pt;}
.y123{bottom:203.626667pt;}
.y23{bottom:205.786667pt;}
.y14a{bottom:212.266667pt;}
.y109{bottom:212.746667pt;}
.y58{bottom:216.746667pt;}
.y3c{bottom:219.466667pt;}
.y22{bottom:221.386667pt;}
.yac{bottom:222.586667pt;}
.yf7{bottom:226.746667pt;}
.y149{bottom:227.946667pt;}
.y102{bottom:229.306667pt;}
.y82{bottom:234.186667pt;}
.y3b{bottom:235.066667pt;}
.y21{bottom:236.986667pt;}
.y57{bottom:240.426667pt;}
.yd3{bottom:240.986667pt;}
.y122{bottom:246.506667pt;}
.ya7{bottom:246.906667pt;}
.y81{bottom:249.786667pt;}
.y3a{bottom:250.666667pt;}
.yf6{bottom:250.986667pt;}
.y148{bottom:251.546667pt;}
.y20{bottom:252.666667pt;}
.y101{bottom:260.906667pt;}
.y121{bottom:262.106667pt;}
.yd2{bottom:265.306667pt;}
.y39{bottom:266.346667pt;}
.y147{bottom:267.146667pt;}
.ya9{bottom:271.146667pt;}
.y56{bottom:272.026667pt;}
.yf5{bottom:275.306667pt;}
.y120{bottom:277.786667pt;}
.y80{bottom:281.466667pt;}
.y38{bottom:281.946667pt;}
.y1f{bottom:284.266667pt;}
.y55{bottom:287.706667pt;}
.y100{bottom:289.546667pt;}
.yd1{bottom:289.626667pt;}
.y146{bottom:290.826667pt;}
.y11f{bottom:293.386667pt;}
.y1e{bottom:299.946667pt;}
.y145{bottom:306.426667pt;}
.y11e{bottom:309.066667pt;}
.y54{bottom:311.306667pt;}
.y7f{bottom:313.066667pt;}
.y37{bottom:313.626667pt;}
.yce{bottom:313.946667pt;}
.ya6{bottom:314.426667pt;}
.y1d{bottom:315.546667pt;}
.yf4{bottom:318.586667pt;}
.y7e{bottom:328.666667pt;}
.y36{bottom:329.226667pt;}
.ya5{bottom:330.106667pt;}
.y1c{bottom:331.146667pt;}
.y11d{bottom:332.986667pt;}
.yf3{bottom:334.266667pt;}
.ycf{bottom:338.186667pt;}
.y53{bottom:342.906667pt;}
.y35{bottom:344.826667pt;}
.ya4{bottom:345.706667pt;}
.yf2{bottom:349.866667pt;}
.y1b{bottom:355.066667pt;}
.y52{bottom:359.306667pt;}
.y7d{bottom:360.346667pt;}
.y34{bottom:360.506667pt;}
.y11c{bottom:365.866667pt;}
.y144{bottom:369.306667pt;}
.y51{bottom:375.626667pt;}
.y7c{bottom:375.946667pt;}
.y33{bottom:376.106667pt;}
.ya3{bottom:377.386667pt;}
.ycd{bottom:381.466667pt;}
.y143{bottom:384.986667pt;}
.y11b{bottom:389.786667pt;}
.y50{bottom:392.026667pt;}
.ya2{bottom:392.986667pt;}
.yf1{bottom:397.146667pt;}
.y1a{bottom:398.266667pt;}
.y7b{bottom:407.626667pt;}
.y32{bottom:407.786667pt;}
.y4f{bottom:408.346667pt;}
.ya1{bottom:408.586667pt;}
.y16b{bottom:409.306667pt;}
.yf0{bottom:412.746667pt;}
.ycc{bottom:413.146667pt;}
.y11a{bottom:423.013333pt;}
.y31{bottom:423.413333pt;}
.ya0{bottom:424.293333pt;}
.y4e{bottom:424.773333pt;}
.y16a{bottom:425.013333pt;}
.yef{bottom:428.453333pt;}
.y19{bottom:431.253333pt;}
.y142{bottom:432.293333pt;}
.ycb{bottom:434.453333pt;}
.y7a{bottom:439.253333pt;}
.y9f{bottom:439.893333pt;}
.y169{bottom:440.613333pt;}
.yee{bottom:444.053333pt;}
.y18{bottom:446.853333pt;}
.y141{bottom:447.893333pt;}
.y4d{bottom:449.173333pt;}
.y79{bottom:454.853333pt;}
.y30{bottom:455.013333pt;}
.y9e{bottom:455.573333pt;}
.y108{bottom:458.693333pt;}
.yca{bottom:458.773333pt;}
.yed{bottom:459.653333pt;}
.y17{bottom:462.453333pt;}
.y168{bottom:464.293333pt;}
.y119{bottom:465.893333pt;}
.y78{bottom:470.533333pt;}
.y9d{bottom:471.173333pt;}
.y140{bottom:471.493333pt;}
.y107{bottom:474.293333pt;}
.y16{bottom:478.133333pt;}
.y167{bottom:479.893333pt;}
.y4c{bottom:480.773333pt;}
.y118{bottom:481.573333pt;}
.yc9{bottom:483.093333pt;}
.yec{bottom:483.333333pt;}
.y2f{bottom:483.653333pt;}
.y9c{bottom:486.773333pt;}
.y13f{bottom:487.173333pt;}
.y15{bottom:493.733333pt;}
.y166{bottom:495.493333pt;}
.y117{bottom:497.173333pt;}
.y77{bottom:502.133333pt;}
.y13e{bottom:502.773333pt;}
.y106{bottom:502.933333pt;}
.yc8{bottom:507.333333pt;}
.y14{bottom:509.413333pt;}
.y9b{bottom:510.453333pt;}
.yeb{bottom:512.613333pt;}
.y116{bottom:512.773333pt;}
.y76{bottom:517.813333pt;}
.y165{bottom:519.173333pt;}
.yff{bottom:520.613333pt;}
.y13{bottom:525.013333pt;}
.y13d{bottom:526.453333pt;}
.y115{bottom:528.453333pt;}
.yc7{bottom:531.653333pt;}
.y75{bottom:533.413333pt;}
.y164{bottom:534.773333pt;}
.yea{bottom:536.933333pt;}
.y12{bottom:540.613333pt;}
.y13c{bottom:542.053333pt;}
.y9a{bottom:542.373333pt;}
.y74{bottom:549.013333pt;}
.y163{bottom:550.453333pt;}
.yfe{bottom:552.213333pt;}
.yc5{bottom:555.973333pt;}
.y11{bottom:556.293333pt;}
.y114{bottom:560.053333pt;}
.ye9{bottom:561.253333pt;}
.y73{bottom:564.693333pt;}
.y13b{bottom:565.653333pt;}
.yfd{bottom:567.893333pt;}
.y10{bottom:571.893333pt;}
.y162{bottom:574.053333pt;}
.y113{bottom:575.733333pt;}
.yc6{bottom:580.213333pt;}
.y72{bottom:580.293333pt;}
.y13a{bottom:581.333333pt;}
.y99{bottom:585.253333pt;}
.ye8{bottom:585.493333pt;}
.yf{bottom:587.573333pt;}
.y161{bottom:589.653333pt;}
.y112{bottom:591.333333pt;}
.y71{bottom:595.893333pt;}
.yfc{bottom:596.533333pt;}
.y98{bottom:600.933333pt;}
.ye{bottom:603.173333pt;}
.y139{bottom:604.933333pt;}
.y111{bottom:606.933333pt;}
.ye6{bottom:609.813333pt;}
.y160{bottom:613.333333pt;}
.yd{bottom:618.773333pt;}
.y110{bottom:622.613333pt;}
.yc4{bottom:623.573333pt;}
.y97{bottom:624.533333pt;}
.y70{bottom:627.493333pt;}
.y138{bottom:628.613333pt;}
.y15f{bottom:628.933333pt;}
.ye7{bottom:634.133333pt;}
.yc{bottom:634.453333pt;}
.y10f{bottom:638.213333pt;}
.yc3{bottom:639.173333pt;}
.y6f{bottom:643.893333pt;}
.y137{bottom:644.213333pt;}
.y15e{bottom:652.613333pt;}
.y10e{bottom:653.813333pt;}
.yc2{bottom:654.773333pt;}
.y96{bottom:656.133333pt;}
.yb{bottom:658.373333pt;}
.y6e{bottom:660.293333pt;}
.y136{bottom:667.813333pt;}
.y15d{bottom:668.213333pt;}
.y10d{bottom:669.493333pt;}
.y95{bottom:671.813333pt;}
.y6d{bottom:676.613333pt;}
.ye5{bottom:677.413333pt;}
.y135{bottom:683.493333pt;}
.y15c{bottom:683.813333pt;}
.y10c{bottom:685.093333pt;}
.yc1{bottom:686.453333pt;}
.y6c{bottom:693.013333pt;}
.y94{bottom:695.413333pt;}
.ya{bottom:699.893333pt;}
.yc0{bottom:702.053333pt;}
.y134{bottom:707.093333pt;}
.y15b{bottom:707.493333pt;}
.ye4{bottom:709.013333pt;}
.y2e{bottom:714.693333pt;}
.ybf{bottom:717.733333pt;}
.y15a{bottom:723.093333pt;}
.y6b{bottom:725.413333pt;}
.y93{bottom:727.093333pt;}
.ye3{bottom:730.373333pt;}
.y133{bottom:730.693333pt;}
.y9{bottom:731.733333pt;}
.ybe{bottom:733.333333pt;}
.y6a{bottom:741.013333pt;}
.y92{bottom:742.693333pt;}
.y2d{bottom:743.333333pt;}
.y159{bottom:746.693333pt;}
.ybd{bottom:748.933333pt;}
.y4b{bottom:750.453333pt;}
.y105{bottom:751.973333pt;}
.y132{bottom:754.373333pt;}
.ye2{bottom:754.613333pt;}
.y69{bottom:756.693333pt;}
.y91{bottom:758.293333pt;}
.y158{bottom:762.373333pt;}
.y8{bottom:763.733333pt;}
.ybc{bottom:764.613333pt;}
.y104{bottom:767.573333pt;}
.y131{bottom:769.973333pt;}
.y90{bottom:773.973333pt;}
.ye1{bottom:778.933333pt;}
.ybb{bottom:780.213333pt;}
.y68{bottom:780.293333pt;}
.y4a{bottom:782.053333pt;}
.y157{bottom:785.973333pt;}
.y130{bottom:793.653333pt;}
.y7{bottom:795.733333pt;}
.yba{bottom:795.893333pt;}
.y103{bottom:796.213333pt;}
.y49{bottom:797.733333pt;}
.y156{bottom:801.653333pt;}
.ye0{bottom:803.253333pt;}
.y8f{bottom:805.573333pt;}
.y12f{bottom:809.253333pt;}
.y6{bottom:811.733333pt;}
.y67{bottom:811.893333pt;}
.y48{bottom:813.333333pt;}
.yb9{bottom:819.493333pt;}
.y8e{bottom:821.173333pt;}
.y12e{bottom:824.853333pt;}
.y155{bottom:825.253333pt;}
.ydf{bottom:827.493333pt;}
.y66{bottom:827.573333pt;}
.y47{bottom:828.933333pt;}
.y154{bottom:840.853333pt;}
.y65{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.y46{bottom:844.613333pt;}
.y12d{bottom:848.533333pt;}
.yb8{bottom:848.773333pt;}
.ydd{bottom:851.813333pt;}
.y8d{bottom:852.773333pt;}
.y45{bottom:860.213333pt;}
.y153{bottom:864.533333pt;}
.y64{bottom:866.773333pt;}
.y8c{bottom:869.173333pt;}
.y12c{bottom:872.133333pt;}
.yb7{bottom:873.093333pt;}
.yde{bottom:876.133333pt;}
.y4{bottom:877.893333pt;}
.y152{bottom:880.133333pt;}
.y44{bottom:883.813333pt;}
.y8b{bottom:885.573333pt;}
.y12b{bottom:887.813333pt;}
.y63{bottom:895.813333pt;}
.yb5{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y8a{bottom:901.920000pt;}
.y151{bottom:903.840000pt;}
.y12a{bottom:911.440000pt;}
.y43{bottom:915.520000pt;}
.y89{bottom:918.320000pt;}
.ydc{bottom:919.440000pt;}
.yb4{bottom:921.680000pt;}
.y129{bottom:927.040000pt;}
.y62{bottom:927.440000pt;}
.y42{bottom:931.120000pt;}
.ydb{bottom:935.040000pt;}
.y61{bottom:943.040000pt;}
.yb2{bottom:946.000000pt;}
.y41{bottom:946.800000pt;}
.y88{bottom:950.720000pt;}
.y60{bottom:958.720000pt;}
.y2c{bottom:966.320000pt;}
.y150{bottom:966.720000pt;}
.yb3{bottom:970.320000pt;}
.y40{bottom:970.400000pt;}
.y5f{bottom:974.320000pt;}
.yda{bottom:982.320000pt;}
.y5e{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y3f{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h10{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:23.996250pt;}
.h3{height:34.765625pt;}
.h6{height:45.246562pt;}
.h7{height:46.446875pt;}
.hd{height:47.920000pt;}
.h12{height:47.946667pt;}
.h8{height:49.581562pt;}
.h5{height:50.896875pt;}
.hc{height:53.309531pt;}
.hb{height:54.927899pt;}
.h9{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.803125pt;}
.h11{height:96.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w26{width:41.360000pt;}
.w18{width:43.680000pt;}
.wd{width:43.920000pt;}
.w17{width:46.586667pt;}
.w23{width:46.640000pt;}
.w24{width:46.666667pt;}
.w2d{width:48.666667pt;}
.w19{width:49.360000pt;}
.w25{width:51.360000pt;}
.wf{width:51.440000pt;}
.we{width:51.866667pt;}
.w2b{width:56.080000pt;}
.w21{width:56.160000pt;}
.w9{width:56.320000pt;}
.w2e{width:56.720000pt;}
.w3{width:57.760000pt;}
.w13{width:59.680000pt;}
.w14{width:61.680000pt;}
.w27{width:64.080000pt;}
.w10{width:64.160000pt;}
.w11{width:64.186667pt;}
.wa{width:64.240000pt;}
.wb{width:64.400000pt;}
.w28{width:71.520000pt;}
.w20{width:76.640000pt;}
.w7{width:86.240000pt;}
.w6{width:86.320000pt;}
.w2a{width:90.400000pt;}
.w8{width:93.706667pt;}
.w15{width:94.480000pt;}
.w1f{width:100.640000pt;}
.w1b{width:103.520000pt;}
.w1d{width:103.546667pt;}
.w1a{width:105.226667pt;}
.w1c{width:105.520000pt;}
.w2c{width:106.026667pt;}
.w5{width:121.200000pt;}
.w12{width:122.000000pt;}
.w29{width:139.546667pt;}
.w16{width:140.986667pt;}
.wc{width:141.066667pt;}
.w22{width:143.946667pt;}
.w1e{width:202.000000pt;}
.w4{width:267.626667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.520000pt;}
.x1{left:60.480000pt;}
.x42{left:62.079988pt;}
.x3c{left:67.839988pt;}
.x3e{left:74.479988pt;}
.x3a{left:81.679988pt;}
.xa{left:84.479988pt;}
.x24{left:85.760000pt;}
.x44{left:98.879988pt;}
.x41{left:144.426655pt;}
.x2{left:173.866655pt;}
.x25{left:191.626667pt;}
.x2f{left:211.706667pt;}
.x19{left:212.746667pt;}
.x7{left:219.146655pt;}
.x43{left:229.546655pt;}
.xf{left:231.466667pt;}
.x1f{left:246.426667pt;}
.x2a{left:258.026667pt;}
.x30{left:263.786667pt;}
.x1a{left:264.826667pt;}
.x34{left:270.026667pt;}
.xb{left:278.506655pt;}
.xc{left:281.626655pt;}
.xd{left:282.826655pt;}
.x15{left:293.946667pt;}
.x26{left:295.786667pt;}
.x31{left:305.866667pt;}
.x3d{left:307.226655pt;}
.x5{left:310.346655pt;}
.x11{left:318.426667pt;}
.x9{left:323.306655pt;}
.x1b{left:329.626667pt;}
.x2b{left:335.306667pt;}
.x20{left:341.626667pt;}
.x3f{left:355.786655pt;}
.x16{left:358.986667pt;}
.x35{left:361.146667pt;}
.x32{left:370.586667pt;}
.x2c{left:392.106667pt;}
.x1c{left:394.426667pt;}
.x27{left:402.026667pt;}
.x17{left:403.626667pt;}
.x12{left:405.386667pt;}
.x21{left:406.666667pt;}
.x36{left:417.946667pt;}
.x2d{left:439.386667pt;}
.x33{left:442.746667pt;}
.x18{left:448.186667pt;}
.x22{left:453.973333pt;}
.x1d{left:459.253333pt;}
.x37{left:467.253333pt;}
.x2e{left:486.693333pt;}
.x23{left:498.293333pt;}
.x10{left:499.733333pt;}
.x28{left:506.213333pt;}
.x1e{left:519.573333pt;}
.x8{left:533.013322pt;}
.x13{left:556.693333pt;}
.x39{left:576.053322pt;}
.x4{left:601.013322pt;}
.x6{left:604.053322pt;}
.x29{left:607.573333pt;}
.x38{left:611.013322pt;}
.x3b{left:614.053322pt;}
.x40{left:618.053322pt;}
.x14{left:711.413322pt;}
.x3{left:718.773322pt;}
}




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