
    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_573b9430fa272299bd448829.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8520bedb0fb673870096107b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_48b4bf01882964d35104947a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_714980c0c1585df7255f3e04.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.046387;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_d56dbcdcbfebccb1ec2571d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_330696804d9cc6cec6105d0a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982910;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_84f7feed1ccdffa19c9962b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982910;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_e37772729c2a9a711ef2400a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_d84a96bd0b93c292d2efcc44.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.649414;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_e0e02cc08e26a3dd235b050a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ae0020047f2f889d8a5c8e20.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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:ffc;src:url('chunks/assets/font_1c2e826306bea4aeb701efef.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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);}
.m2{transform:matrix(0.250824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250824,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);}
.v13{vertical-align:-100.800000px;}
.v3{vertical-align:-72.000000px;}
.v15{vertical-align:-44.640000px;}
.v14{vertical-align:-26.640000px;}
.v2{vertical-align:-20.880000px;}
.va{vertical-align:-17.280000px;}
.v8{vertical-align:-15.840000px;}
.v5{vertical-align:-14.400000px;}
.vf{vertical-align:-12.240000px;}
.ve{vertical-align:-10.800000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:15.840000px;}
.v1{vertical-align:20.880000px;}
.v7{vertical-align:31.680000px;}
.v10{vertical-align:36.000000px;}
.v9{vertical-align:38.160000px;}
.v6{vertical-align:43.200000px;}
.vd{vertical-align:48.240000px;}
.vc{vertical-align:58.320000px;}
.v12{vertical-align:68.400000px;}
.v11{vertical-align:78.480000px;}
.lsd{letter-spacing:-1.440000px;}
.ls23{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.259800px;}
.lsc{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.058320px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.032400px;}
.lsb{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.174240px;}
.ls1b{letter-spacing:0.181440px;}
.ls21{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.243600px;}
.ls1d{letter-spacing:0.262200px;}
.lse{letter-spacing:0.269280px;}
.ls1a{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.828000px;}
.ls1{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.792800px;}
.ls12{letter-spacing:1.949760px;}
.ls15{letter-spacing:2.512800px;}
.ls19{letter-spacing:2.921520px;}
.ls10{letter-spacing:3.060000px;}
.ls13{letter-spacing:13.060800px;}
.ls11{letter-spacing:16.176000px;}
.ls18{letter-spacing:18.641520px;}
.lsf{letter-spacing:19.656000px;}
.ls1f{letter-spacing:23.040000px;}
.ls2{letter-spacing:57.960000px;}
.ls0{letter-spacing:58.500000px;}
.ls17{letter-spacing:706.476000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-18.720000px;}
.ws24{word-spacing:-18.216000px;}
.ws16{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws23{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws25{word-spacing:-17.712000px;}
.ws19{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.297800px;}
.ws14{word-spacing:-16.128000px;}
.wsc{word-spacing:-15.840000px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.680200px;}
.ws5{word-spacing:-13.749360px;}
.ws4{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.wsb{word-spacing:-12.060000px;}
.wse{word-spacing:-11.246400px;}
.ws15{word-spacing:-10.440000px;}
.ws0{word-spacing:-9.720000px;}
.wsf{word-spacing:-9.187200px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:3.960000px;}
.ws12{word-spacing:5.832000px;}
.ws13{word-spacing:6.696000px;}
.wsd{word-spacing:12.269520px;}
.ws11{word-spacing:41.122080px;}
.ws10{word-spacing:53.362080px;}
.ws1a{word-spacing:291.909129px;}
.ws1d{word-spacing:300.603142px;}
.ws1e{word-spacing:301.509830px;}
.ws20{word-spacing:313.457009px;}
.ws1f{word-spacing:313.510343px;}
.ws1b{word-spacing:320.843723px;}
.ws21{word-spacing:342.391602px;}
.ws22{word-spacing:342.444937px;}
.ws1c{word-spacing:447.763768px;}
._21{margin-left:-7.825680px;}
._1b{margin-left:-5.040000px;}
._1c{margin-left:-3.677520px;}
._8{margin-left:-2.400480px;}
._1{margin-left:-1.152000px;}
._0{width:1.085520px;}
._a{width:2.390400px;}
._d{width:3.445680px;}
._2{width:4.687440px;}
._34{width:5.688240px;}
._4{width:6.693120px;}
._3{width:7.888320px;}
._9{width:8.919840px;}
._5{width:9.920160px;}
._6{width:10.936080px;}
._1a{width:12.183840px;}
._20{width:13.205280px;}
._f{width:14.256000px;}
._10{width:15.468960px;}
._11{width:16.622640px;}
._15{width:19.368000px;}
._18{width:21.277920px;}
._19{width:23.112000px;}
._7{width:24.143040px;}
._12{width:25.327680px;}
._16{width:26.389920px;}
._1f{width:27.394080px;}
._26{width:28.956000px;}
._17{width:30.456000px;}
._1d{width:31.752000px;}
._1e{width:32.893440px;}
._25{width:34.302720px;}
._33{width:35.904000px;}
._22{width:37.008000px;}
._23{width:38.253360px;}
._27{width:39.888000px;}
._13{width:41.544000px;}
._14{width:42.696000px;}
._e{width:45.742080px;}
._24{width:50.976000px;}
._28{width:274.790425px;}
._30{width:429.416202px;}
._29{width:457.685277px;}
._2c{width:466.420917px;}
._2e{width:467.685270px;}
._31{width:472.386668px;}
._2f{width:489.445769px;}
._2b{width:504.611772px;}
._2d{width:534.021837px;}
._32{width:548.501804px;}
._2a{width:567.410951px;}
._b{width:846.156000px;}
._c{width:1294.860000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs9{font-size:53.334544px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y18{bottom:3.240000px;}
.y10b{bottom:3.620004px;}
.yd{bottom:3.960000px;}
.y115{bottom:4.160422px;}
.y9{bottom:5.220000px;}
.y13{bottom:8.505000px;}
.y16{bottom:12.060000px;}
.y24{bottom:16.380000px;}
.y7{bottom:17.100000px;}
.y26{bottom:20.520000px;}
.y2d{bottom:20.550000px;}
.y114{bottom:21.717864px;}
.yc{bottom:24.660000px;}
.y12{bottom:25.785000px;}
.y23{bottom:33.690000px;}
.y15{bottom:34.560000px;}
.y6{bottom:37.800000px;}
.y2c{bottom:37.830000px;}
.y11{bottom:37.845000px;}
.y113{bottom:39.274824px;}
.yb{bottom:45.360000px;}
.y22{bottom:50.970000px;}
.y2b{bottom:55.110000px;}
.y10{bottom:55.485000px;}
.y3{bottom:56.700000px;}
.y112{bottom:56.831784px;}
.y5{bottom:59.760000px;}
.y21{bottom:68.250000px;}
.y2a{bottom:72.210000px;}
.yf{bottom:72.765000px;}
.y111{bottom:74.388744px;}
.y32{bottom:75.060000px;}
.y2{bottom:75.600000px;}
.y20{bottom:85.350000px;}
.y29{bottom:89.490000px;}
.y110{bottom:91.945703px;}
.y1f{bottom:102.630000px;}
.y28{bottom:106.770000px;}
.y10f{bottom:109.502663px;}
.ye3{bottom:113.580000px;}
.yd6{bottom:116.460000px;}
.y1e{bottom:119.910000px;}
.y7f{bottom:120.780000px;}
.y5a{bottom:123.120000px;}
.y107{bottom:126.360000px;}
.y10e{bottom:127.062035px;}
.ybb{bottom:127.440000px;}
.ye2{bottom:134.280000px;}
.y1d{bottom:137.190000px;}
.yd5{bottom:137.196000px;}
.y7e{bottom:141.516000px;}
.y59{bottom:143.856000px;}
.y10d{bottom:144.618996px;}
.yba{bottom:148.176000px;}
.y1c{bottom:154.470000px;}
.ye1{bottom:155.010000px;}
.y106{bottom:156.090000px;}
.yd4{bottom:157.890000px;}
.y10c{bottom:162.175924px;}
.y109{bottom:162.175953px;}
.y58{bottom:164.550000px;}
.yb9{bottom:168.870000px;}
.y7d{bottom:171.210000px;}
.y1b{bottom:171.570000px;}
.ye0{bottom:175.710000px;}
.y105{bottom:176.790000px;}
.yd3{bottom:178.590000px;}
.y57{bottom:185.250000px;}
.y1a{bottom:188.850000px;}
.yb8{bottom:189.570000px;}
.y7c{bottom:191.550000px;}
.y13b{bottom:197.490000px;}
.yd2{bottom:199.290000px;}
.ydf{bottom:205.410000px;}
.y104{bottom:206.490000px;}
.yb7{bottom:210.270000px;}
.y7b{bottom:210.630000px;}
.y56{bottom:214.950000px;}
.y13a{bottom:218.190000px;}
.yd1{bottom:219.990000px;}
.y7a{bottom:225.930000px;}
.yde{bottom:226.110000px;}
.yb6{bottom:230.970000px;}
.y55{bottom:235.650000px;}
.y103{bottom:236.190000px;}
.ya6{bottom:238.350000px;}
.y139{bottom:238.890000px;}
.yd0{bottom:240.690000px;}
.ydd{bottom:246.450000px;}
.y54{bottom:256.350000px;}
.y102{bottom:256.890000px;}
.ya5{bottom:259.050000px;}
.yb5{bottom:260.670000px;}
.ycf{bottom:261.390000px;}
.y138{bottom:268.590000px;}
.ydc{bottom:270.750000px;}
.y53{bottom:277.050000px;}
.y101{bottom:277.590000px;}
.ya4{bottom:279.750000px;}
.yb4{bottom:281.010000px;}
.yce{bottom:282.090000px;}
.y137{bottom:289.290000px;}
.y52{bottom:297.750000px;}
.y100{bottom:298.290000px;}
.yb3{bottom:299.910000px;}
.ya3{bottom:300.450000px;}
.ycd{bottom:302.790000px;}
.y136{bottom:309.990000px;}
.yb2{bottom:315.210000px;}
.y51{bottom:318.450000px;}
.yff{bottom:318.990000px;}
.ya2{bottom:321.150000px;}
.ycc{bottom:323.490000px;}
.y135{bottom:330.510000px;}
.yfe{bottom:339.690000px;}
.ya1{bottom:341.850000px;}
.ycb{bottom:344.190000px;}
.y50{bottom:348.150000px;}
.y134{bottom:351.210000px;}
.yfd{bottom:360.390000px;}
.ya0{bottom:362.550000px;}
.yca{bottom:364.890000px;}
.y4f{bottom:368.850000px;}
.y133{bottom:380.910000px;}
.yfc{bottom:381.090000px;}
.y9f{bottom:383.250000px;}
.yc9{bottom:385.590000px;}
.y4e{bottom:389.595000px;}
.y132{bottom:401.655000px;}
.yfb{bottom:401.835000px;}
.y9e{bottom:403.995000px;}
.yc8{bottom:406.335000px;}
.y4d{bottom:410.295000px;}
.yfa{bottom:422.535000px;}
.y9d{bottom:424.695000px;}
.yc7{bottom:427.035000px;}
.y4c{bottom:430.815000px;}
.y131{bottom:431.355000px;}
.yf9{bottom:443.235000px;}
.yc6{bottom:447.555000px;}
.y4b{bottom:451.515000px;}
.y130{bottom:452.055000px;}
.y9c{bottom:454.395000px;}
.yf8{bottom:463.935000px;}
.yc5{bottom:468.255000px;}
.y79{bottom:470.595000px;}
.y4a{bottom:472.215000px;}
.y9b{bottom:475.095000px;}
.y12f{bottom:481.755000px;}
.yf7{bottom:484.635000px;}
.yc4{bottom:488.955000px;}
.y49{bottom:492.915000px;}
.y9a{bottom:495.795000px;}
.y78{bottom:500.295000px;}
.y12e{bottom:502.455000px;}
.yf6{bottom:505.335000px;}
.yc3{bottom:509.655000px;}
.y48{bottom:513.615000px;}
.y99{bottom:516.495000px;}
.y77{bottom:520.995000px;}
.y12d{bottom:523.155000px;}
.yf5{bottom:526.035000px;}
.yc2{bottom:530.355000px;}
.y47{bottom:534.315000px;}
.y98{bottom:537.195000px;}
.y76{bottom:541.695000px;}
.y12c{bottom:543.855000px;}
.yf4{bottom:546.735000px;}
.yc1{bottom:551.055000px;}
.y46{bottom:555.015000px;}
.y97{bottom:557.895000px;}
.y75{bottom:562.395000px;}
.yf3{bottom:567.435000px;}
.yc0{bottom:571.755000px;}
.y12b{bottom:573.555000px;}
.y45{bottom:575.715000px;}
.y2f{bottom:581.475000px;}
.y74{bottom:583.095000px;}
.y96{bottom:587.595000px;}
.yf2{bottom:588.135000px;}
.ybf{bottom:592.455000px;}
.y12a{bottom:594.255000px;}
.y44{bottom:596.415000px;}
.y2e{bottom:602.175000px;}
.y73{bottom:603.795000px;}
.y94{bottom:604.515000px;}
.yf1{bottom:608.835000px;}
.ybe{bottom:613.155000px;}
.y43{bottom:617.115000px;}
.y19{bottom:619.635000px;}
.y95{bottom:620.175000px;}
.y129{bottom:623.955000px;}
.y72{bottom:624.495000px;}
.yf0{bottom:629.535000px;}
.ybd{bottom:633.855000px;}
.y93{bottom:638.715000px;}
.y128{bottom:644.685000px;}
.y71{bottom:645.225000px;}
.y42{bottom:646.665000px;}
.yef{bottom:650.265000px;}
.yb1{bottom:654.585000px;}
.y41{bottom:661.965000px;}
.y127{bottom:665.385000px;}
.y70{bottom:665.925000px;}
.y92{bottom:668.445000px;}
.yee{bottom:670.965000px;}
.yb0{bottom:675.285000px;}
.y91{bottom:689.145000px;}
.yed{bottom:691.665000px;}
.y126{bottom:695.085000px;}
.y6f{bottom:695.625000px;}
.yaf{bottom:695.985000px;}
.yec{bottom:712.365000px;}
.y125{bottom:715.785000px;}
.yae{bottom:716.685000px;}
.y90{bottom:718.845000px;}
.y6e{bottom:725.325000px;}
.yeb{bottom:733.065000px;}
.yad{bottom:737.385000px;}
.y8f{bottom:738.465000px;}
.y27{bottom:742.605000px;}
.y124{bottom:745.485000px;}
.y6d{bottom:746.025000px;}
.y8e{bottom:747.465000px;}
.yea{bottom:753.765000px;}
.yac{bottom:758.085000px;}
.y25{bottom:762.225000px;}
.y123{bottom:766.185000px;}
.y6c{bottom:766.725000px;}
.y8d{bottom:773.925000px;}
.ye9{bottom:774.465000px;}
.yab{bottom:778.785000px;}
.y122{bottom:786.885000px;}
.y6b{bottom:787.425000px;}
.yaa{bottom:799.485000px;}
.y8c{bottom:803.625000px;}
.ye8{bottom:804.165000px;}
.y17{bottom:805.245000px;}
.y6a{bottom:808.125000px;}
.y121{bottom:816.585000px;}
.ya9{bottom:820.185000px;}
.y8b{bottom:824.325000px;}
.y69{bottom:828.825000px;}
.ye7{bottom:833.865000px;}
.y120{bottom:837.285000px;}
.y14{bottom:838.005000px;}
.ya8{bottom:840.885000px;}
.y68{bottom:849.525000px;}
.ye6{bottom:850.605000px;}
.y108{bottom:850.680000px;}
.y40{bottom:852.585000px;}
.y8a{bottom:854.025000px;}
.y11f{bottom:857.985000px;}
.ya7{bottom:861.585000px;}
.y67{bottom:870.225000px;}
.y89{bottom:874.725000px;}
.y11e{bottom:878.685000px;}
.y3f{bottom:882.285000px;}
.ye{bottom:890.385000px;}
.y66{bottom:890.925000px;}
.ydb{bottom:891.285000px;}
.y88{bottom:895.470000px;}
.y3e{bottom:903.030000px;}
.y11d{bottom:908.430000px;}
.y65{bottom:911.670000px;}
.yda{bottom:912.030000px;}
.y87{bottom:916.170000px;}
.y3d{bottom:923.730000px;}
.y11c{bottom:929.130000px;}
.y64{bottom:932.370000px;}
.yd9{bottom:932.730000px;}
.y86{bottom:936.870000px;}
.y3c{bottom:944.430000px;}
.y11b{bottom:949.830000px;}
.y63{bottom:953.070000px;}
.yd8{bottom:953.430000px;}
.y3b{bottom:965.130000px;}
.y85{bottom:966.570000px;}
.y62{bottom:973.770000px;}
.yd7{bottom:974.130000px;}
.ya{bottom:977.190000px;}
.y11a{bottom:979.530000px;}
.y3a{bottom:985.830000px;}
.y81{bottom:987.630000px;}
.y83{bottom:987.810000px;}
.y84{bottom:992.850000px;}
.y61{bottom:994.470000px;}
.ybc{bottom:994.830000px;}
.y80{bottom:996.810000px;}
.y119{bottom:1000.230000px;}
.y39{bottom:1006.530000px;}
.y10a{bottom:1009.235933px;}
.y82{bottom:1012.470000px;}
.y60{bottom:1015.530000px;}
.y38{bottom:1027.230000px;}
.y118{bottom:1029.930000px;}
.ye5{bottom:1030.470000px;}
.y5f{bottom:1036.230000px;}
.y8{bottom:1040.010000px;}
.y37{bottom:1047.930000px;}
.ye4{bottom:1049.370000px;}
.y117{bottom:1050.630000px;}
.y5e{bottom:1056.930000px;}
.y4{bottom:1061.250000px;}
.y36{bottom:1068.630000px;}
.y5d{bottom:1077.630000px;}
.y116{bottom:1080.330000px;}
.y35{bottom:1089.330000px;}
.y5c{bottom:1098.330000px;}
.y34{bottom:1110.030000px;}
.y5b{bottom:1119.030000px;}
.y33{bottom:1139.730000px;}
.y31{bottom:1175.940000px;}
.y30{bottom:1195.380000px;}
.y1{bottom:1196.820000px;}
.h24{height:16.953640px;}
.h13{height:17.280000px;}
.h7{height:21.240000px;}
.h10{height:26.280000px;}
.h12{height:34.380000px;}
.hf{height:38.158594px;}
.hd{height:39.183750px;}
.h1b{height:46.388672px;}
.h15{height:48.088125px;}
.he{height:52.380000px;}
.h25{height:53.048079px;}
.h23{height:54.610614px;}
.h2{height:55.291992px;}
.h1c{height:56.786133px;}
.h8{height:58.651172px;}
.h16{height:59.800781px;}
.hc{height:60.226875px;}
.h9{height:62.100000px;}
.h3{height:65.010937px;}
.h17{height:66.757500px;}
.h6{height:70.664062px;}
.ha{height:72.562500px;}
.h18{height:79.980469px;}
.h1d{height:86.504063px;}
.hb{height:86.796000px;}
.h4{height:95.256000px;}
.h5{height:96.508125px;}
.h1e{height:99.266133px;}
.h19{height:111.908672px;}
.h20{height:115.980469px;}
.h21{height:116.700469px;}
.h14{height:120.816000px;}
.h1f{height:135.266133px;}
.h1a{height:135.986133px;}
.h22{height:175.506668px;}
.h11{height:211.890000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:106.021755px;}
.w8{width:148.860000px;}
.w5{width:206.670000px;}
.w4{width:208.650000px;}
.w6{width:264.990000px;}
.w9{width:531.645000px;}
.wa{width:679.774089px;}
.w3{width:680.325000px;}
.w7{width:680.505000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:4.140000px;}
.x12{left:6.300000px;}
.xc{left:8.100000px;}
.x2f{left:35.744133px;}
.x31{left:39.376055px;}
.xa{left:41.040000px;}
.x30{left:42.402651px;}
.x32{left:49.061175px;}
.x8{left:53.994000px;}
.x2d{left:56.355269px;}
.x7{left:82.254000px;}
.x4{left:106.416000px;}
.x6{left:109.434000px;}
.x29{left:112.535987px;}
.x26{left:117.575987px;}
.x19{left:127.655987px;}
.x14{left:133.415987px;}
.x2b{left:138.455987px;}
.x16{left:148.895987px;}
.x10{left:154.074000px;}
.x3{left:159.509987px;}
.x18{left:187.589987px;}
.x27{left:223.769987px;}
.xf{left:226.479000px;}
.x11{left:255.270000px;}
.x2e{left:293.575389px;}
.x1b{left:297.974987px;}
.x5{left:301.359000px;}
.x1c{left:305.534987px;}
.x21{left:309.494987px;}
.x9{left:315.075000px;}
.x15{left:326.234987px;}
.x2a{left:332.714987px;}
.xd{left:340.269000px;}
.x22{left:342.974987px;}
.x1{left:372.494987px;}
.x1d{left:385.814987px;}
.x24{left:394.814987px;}
.x23{left:397.874987px;}
.x2{left:434.054987px;}
.x1f{left:462.704987px;}
.x20{left:470.084987px;}
.x13{left:473.144987px;}
.x1e{left:482.144987px;}
.xb{left:521.745000px;}
.x17{left:554.504987px;}
.x28{left:689.549987px;}
.x25{left:716.549987px;}
.x1a{left:736.709987px;}
.x2c{left:786.929987px;}
@media print{
.v13{vertical-align:-89.600000pt;}
.v3{vertical-align:-64.000000pt;}
.v15{vertical-align:-39.680000pt;}
.v14{vertical-align:-23.680000pt;}
.v2{vertical-align:-18.560000pt;}
.va{vertical-align:-15.360000pt;}
.v8{vertical-align:-14.080000pt;}
.v5{vertical-align:-12.800000pt;}
.vf{vertical-align:-10.880000pt;}
.ve{vertical-align:-9.600000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:14.080000pt;}
.v1{vertical-align:18.560000pt;}
.v7{vertical-align:28.160000pt;}
.v10{vertical-align:32.000000pt;}
.v9{vertical-align:33.920000pt;}
.v6{vertical-align:38.400000pt;}
.vd{vertical-align:42.880000pt;}
.vc{vertical-align:51.840000pt;}
.v12{vertical-align:60.800000pt;}
.v11{vertical-align:69.760000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.230933pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.028800pt;}
.lsb{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.154880pt;}
.ls1b{letter-spacing:0.161280pt;}
.ls21{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.216533pt;}
.ls1d{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.239360pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.736000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls16{letter-spacing:1.593600pt;}
.ls12{letter-spacing:1.733120pt;}
.ls15{letter-spacing:2.233600pt;}
.ls19{letter-spacing:2.596907pt;}
.ls10{letter-spacing:2.720000pt;}
.ls13{letter-spacing:11.609600pt;}
.ls11{letter-spacing:14.378667pt;}
.ls18{letter-spacing:16.570240pt;}
.lsf{letter-spacing:17.472000pt;}
.ls1f{letter-spacing:20.480000pt;}
.ls2{letter-spacing:51.520000pt;}
.ls0{letter-spacing:52.000000pt;}
.ls17{letter-spacing:627.978667pt;}
.ws17{word-spacing:-16.640000pt;}
.ws24{word-spacing:-16.192000pt;}
.ws16{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws23{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws25{word-spacing:-15.744000pt;}
.ws19{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.486933pt;}
.ws14{word-spacing:-14.336000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.049067pt;}
.ws5{word-spacing:-12.221653pt;}
.ws4{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.wsb{word-spacing:-10.720000pt;}
.wse{word-spacing:-9.996800pt;}
.ws15{word-spacing:-9.280000pt;}
.ws0{word-spacing:-8.640000pt;}
.wsf{word-spacing:-8.166400pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:3.520000pt;}
.ws12{word-spacing:5.184000pt;}
.ws13{word-spacing:5.952000pt;}
.wsd{word-spacing:10.906240pt;}
.ws11{word-spacing:36.552960pt;}
.ws10{word-spacing:47.432960pt;}
.ws1a{word-spacing:259.474781pt;}
.ws1d{word-spacing:267.202793pt;}
.ws1e{word-spacing:268.008738pt;}
.ws20{word-spacing:278.628452pt;}
.ws1f{word-spacing:278.675861pt;}
.ws1b{word-spacing:285.194420pt;}
.ws21{word-spacing:304.348091pt;}
.ws22{word-spacing:304.395499pt;}
.ws1c{word-spacing:398.012238pt;}
._21{margin-left:-6.956160pt;}
._1b{margin-left:-4.480000pt;}
._1c{margin-left:-3.268907pt;}
._8{margin-left:-2.133760pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.964907pt;}
._a{width:2.124800pt;}
._d{width:3.062827pt;}
._2{width:4.166613pt;}
._34{width:5.056213pt;}
._4{width:5.949440pt;}
._3{width:7.011840pt;}
._9{width:7.928747pt;}
._5{width:8.817920pt;}
._6{width:9.720960pt;}
._1a{width:10.830080pt;}
._20{width:11.738027pt;}
._f{width:12.672000pt;}
._10{width:13.750187pt;}
._11{width:14.775680pt;}
._15{width:17.216000pt;}
._18{width:18.913707pt;}
._19{width:20.544000pt;}
._7{width:21.460480pt;}
._12{width:22.513493pt;}
._16{width:23.457707pt;}
._1f{width:24.350293pt;}
._26{width:25.738667pt;}
._17{width:27.072000pt;}
._1d{width:28.224000pt;}
._1e{width:29.238613pt;}
._25{width:30.491307pt;}
._33{width:31.914667pt;}
._22{width:32.896000pt;}
._23{width:34.002987pt;}
._27{width:35.456000pt;}
._13{width:36.928000pt;}
._14{width:37.952000pt;}
._e{width:40.659627pt;}
._24{width:45.312000pt;}
._28{width:244.258155pt;}
._30{width:381.703291pt;}
._29{width:406.831357pt;}
._2c{width:414.596370pt;}
._2e{width:415.720240pt;}
._31{width:419.899261pt;}
._2f{width:435.062905pt;}
._2b{width:448.543797pt;}
._2d{width:474.686077pt;}
._32{width:487.557159pt;}
._2a{width:504.365290pt;}
._b{width:752.138667pt;}
._c{width:1150.986667pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs9{font-size:47.408483pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:2.880000pt;}
.y10b{bottom:3.217782pt;}
.yd{bottom:3.520000pt;}
.y115{bottom:3.698153pt;}
.y9{bottom:4.640000pt;}
.y13{bottom:7.560000pt;}
.y16{bottom:10.720000pt;}
.y24{bottom:14.560000pt;}
.y7{bottom:15.200000pt;}
.y26{bottom:18.240000pt;}
.y2d{bottom:18.266667pt;}
.y114{bottom:19.304768pt;}
.yc{bottom:21.920000pt;}
.y12{bottom:22.920000pt;}
.y23{bottom:29.946667pt;}
.y15{bottom:30.720000pt;}
.y6{bottom:33.600000pt;}
.y2c{bottom:33.626667pt;}
.y11{bottom:33.640000pt;}
.y113{bottom:34.910955pt;}
.yb{bottom:40.320000pt;}
.y22{bottom:45.306667pt;}
.y2b{bottom:48.986667pt;}
.y10{bottom:49.320000pt;}
.y3{bottom:50.400000pt;}
.y112{bottom:50.517141pt;}
.y5{bottom:53.120000pt;}
.y21{bottom:60.666667pt;}
.y2a{bottom:64.186667pt;}
.yf{bottom:64.680000pt;}
.y111{bottom:66.123328pt;}
.y32{bottom:66.720000pt;}
.y2{bottom:67.200000pt;}
.y20{bottom:75.866667pt;}
.y29{bottom:79.546667pt;}
.y110{bottom:81.729514pt;}
.y1f{bottom:91.226667pt;}
.y28{bottom:94.906667pt;}
.y10f{bottom:97.335700pt;}
.ye3{bottom:100.960000pt;}
.yd6{bottom:103.520000pt;}
.y1e{bottom:106.586667pt;}
.y7f{bottom:107.360000pt;}
.y5a{bottom:109.440000pt;}
.y107{bottom:112.320000pt;}
.y10e{bottom:112.944032pt;}
.ybb{bottom:113.280000pt;}
.ye2{bottom:119.360000pt;}
.y1d{bottom:121.946667pt;}
.yd5{bottom:121.952000pt;}
.y7e{bottom:125.792000pt;}
.y59{bottom:127.872000pt;}
.y10d{bottom:128.550219pt;}
.yba{bottom:131.712000pt;}
.y1c{bottom:137.306667pt;}
.ye1{bottom:137.786667pt;}
.y106{bottom:138.746667pt;}
.yd4{bottom:140.346667pt;}
.y10c{bottom:144.156377pt;}
.y109{bottom:144.156403pt;}
.y58{bottom:146.266667pt;}
.yb9{bottom:150.106667pt;}
.y7d{bottom:152.186667pt;}
.y1b{bottom:152.506667pt;}
.ye0{bottom:156.186667pt;}
.y105{bottom:157.146667pt;}
.yd3{bottom:158.746667pt;}
.y57{bottom:164.666667pt;}
.y1a{bottom:167.866667pt;}
.yb8{bottom:168.506667pt;}
.y7c{bottom:170.266667pt;}
.y13b{bottom:175.546667pt;}
.yd2{bottom:177.146667pt;}
.ydf{bottom:182.586667pt;}
.y104{bottom:183.546667pt;}
.yb7{bottom:186.906667pt;}
.y7b{bottom:187.226667pt;}
.y56{bottom:191.066667pt;}
.y13a{bottom:193.946667pt;}
.yd1{bottom:195.546667pt;}
.y7a{bottom:200.826667pt;}
.yde{bottom:200.986667pt;}
.yb6{bottom:205.306667pt;}
.y55{bottom:209.466667pt;}
.y103{bottom:209.946667pt;}
.ya6{bottom:211.866667pt;}
.y139{bottom:212.346667pt;}
.yd0{bottom:213.946667pt;}
.ydd{bottom:219.066667pt;}
.y54{bottom:227.866667pt;}
.y102{bottom:228.346667pt;}
.ya5{bottom:230.266667pt;}
.yb5{bottom:231.706667pt;}
.ycf{bottom:232.346667pt;}
.y138{bottom:238.746667pt;}
.ydc{bottom:240.666667pt;}
.y53{bottom:246.266667pt;}
.y101{bottom:246.746667pt;}
.ya4{bottom:248.666667pt;}
.yb4{bottom:249.786667pt;}
.yce{bottom:250.746667pt;}
.y137{bottom:257.146667pt;}
.y52{bottom:264.666667pt;}
.y100{bottom:265.146667pt;}
.yb3{bottom:266.586667pt;}
.ya3{bottom:267.066667pt;}
.ycd{bottom:269.146667pt;}
.y136{bottom:275.546667pt;}
.yb2{bottom:280.186667pt;}
.y51{bottom:283.066667pt;}
.yff{bottom:283.546667pt;}
.ya2{bottom:285.466667pt;}
.ycc{bottom:287.546667pt;}
.y135{bottom:293.786667pt;}
.yfe{bottom:301.946667pt;}
.ya1{bottom:303.866667pt;}
.ycb{bottom:305.946667pt;}
.y50{bottom:309.466667pt;}
.y134{bottom:312.186667pt;}
.yfd{bottom:320.346667pt;}
.ya0{bottom:322.266667pt;}
.yca{bottom:324.346667pt;}
.y4f{bottom:327.866667pt;}
.y133{bottom:338.586667pt;}
.yfc{bottom:338.746667pt;}
.y9f{bottom:340.666667pt;}
.yc9{bottom:342.746667pt;}
.y4e{bottom:346.306667pt;}
.y132{bottom:357.026667pt;}
.yfb{bottom:357.186667pt;}
.y9e{bottom:359.106667pt;}
.yc8{bottom:361.186667pt;}
.y4d{bottom:364.706667pt;}
.yfa{bottom:375.586667pt;}
.y9d{bottom:377.506667pt;}
.yc7{bottom:379.586667pt;}
.y4c{bottom:382.946667pt;}
.y131{bottom:383.426667pt;}
.yf9{bottom:393.986667pt;}
.yc6{bottom:397.826667pt;}
.y4b{bottom:401.346667pt;}
.y130{bottom:401.826667pt;}
.y9c{bottom:403.906667pt;}
.yf8{bottom:412.386667pt;}
.yc5{bottom:416.226667pt;}
.y79{bottom:418.306667pt;}
.y4a{bottom:419.746667pt;}
.y9b{bottom:422.306667pt;}
.y12f{bottom:428.226667pt;}
.yf7{bottom:430.786667pt;}
.yc4{bottom:434.626667pt;}
.y49{bottom:438.146667pt;}
.y9a{bottom:440.706667pt;}
.y78{bottom:444.706667pt;}
.y12e{bottom:446.626667pt;}
.yf6{bottom:449.186667pt;}
.yc3{bottom:453.026667pt;}
.y48{bottom:456.546667pt;}
.y99{bottom:459.106667pt;}
.y77{bottom:463.106667pt;}
.y12d{bottom:465.026667pt;}
.yf5{bottom:467.586667pt;}
.yc2{bottom:471.426667pt;}
.y47{bottom:474.946667pt;}
.y98{bottom:477.506667pt;}
.y76{bottom:481.506667pt;}
.y12c{bottom:483.426667pt;}
.yf4{bottom:485.986667pt;}
.yc1{bottom:489.826667pt;}
.y46{bottom:493.346667pt;}
.y97{bottom:495.906667pt;}
.y75{bottom:499.906667pt;}
.yf3{bottom:504.386667pt;}
.yc0{bottom:508.226667pt;}
.y12b{bottom:509.826667pt;}
.y45{bottom:511.746667pt;}
.y2f{bottom:516.866667pt;}
.y74{bottom:518.306667pt;}
.y96{bottom:522.306667pt;}
.yf2{bottom:522.786667pt;}
.ybf{bottom:526.626667pt;}
.y12a{bottom:528.226667pt;}
.y44{bottom:530.146667pt;}
.y2e{bottom:535.266667pt;}
.y73{bottom:536.706667pt;}
.y94{bottom:537.346667pt;}
.yf1{bottom:541.186667pt;}
.ybe{bottom:545.026667pt;}
.y43{bottom:548.546667pt;}
.y19{bottom:550.786667pt;}
.y95{bottom:551.266667pt;}
.y129{bottom:554.626667pt;}
.y72{bottom:555.106667pt;}
.yf0{bottom:559.586667pt;}
.ybd{bottom:563.426667pt;}
.y93{bottom:567.746667pt;}
.y128{bottom:573.053333pt;}
.y71{bottom:573.533333pt;}
.y42{bottom:574.813333pt;}
.yef{bottom:578.013333pt;}
.yb1{bottom:581.853333pt;}
.y41{bottom:588.413333pt;}
.y127{bottom:591.453333pt;}
.y70{bottom:591.933333pt;}
.y92{bottom:594.173333pt;}
.yee{bottom:596.413333pt;}
.yb0{bottom:600.253333pt;}
.y91{bottom:612.573333pt;}
.yed{bottom:614.813333pt;}
.y126{bottom:617.853333pt;}
.y6f{bottom:618.333333pt;}
.yaf{bottom:618.653333pt;}
.yec{bottom:633.213333pt;}
.y125{bottom:636.253333pt;}
.yae{bottom:637.053333pt;}
.y90{bottom:638.973333pt;}
.y6e{bottom:644.733333pt;}
.yeb{bottom:651.613333pt;}
.yad{bottom:655.453333pt;}
.y8f{bottom:656.413333pt;}
.y27{bottom:660.093333pt;}
.y124{bottom:662.653333pt;}
.y6d{bottom:663.133333pt;}
.y8e{bottom:664.413333pt;}
.yea{bottom:670.013333pt;}
.yac{bottom:673.853333pt;}
.y25{bottom:677.533333pt;}
.y123{bottom:681.053333pt;}
.y6c{bottom:681.533333pt;}
.y8d{bottom:687.933333pt;}
.ye9{bottom:688.413333pt;}
.yab{bottom:692.253333pt;}
.y122{bottom:699.453333pt;}
.y6b{bottom:699.933333pt;}
.yaa{bottom:710.653333pt;}
.y8c{bottom:714.333333pt;}
.ye8{bottom:714.813333pt;}
.y17{bottom:715.773333pt;}
.y6a{bottom:718.333333pt;}
.y121{bottom:725.853333pt;}
.ya9{bottom:729.053333pt;}
.y8b{bottom:732.733333pt;}
.y69{bottom:736.733333pt;}
.ye7{bottom:741.213333pt;}
.y120{bottom:744.253333pt;}
.y14{bottom:744.893333pt;}
.ya8{bottom:747.453333pt;}
.y68{bottom:755.133333pt;}
.ye6{bottom:756.093333pt;}
.y108{bottom:756.160000pt;}
.y40{bottom:757.853333pt;}
.y8a{bottom:759.133333pt;}
.y11f{bottom:762.653333pt;}
.ya7{bottom:765.853333pt;}
.y67{bottom:773.533333pt;}
.y89{bottom:777.533333pt;}
.y11e{bottom:781.053333pt;}
.y3f{bottom:784.253333pt;}
.ye{bottom:791.453333pt;}
.y66{bottom:791.933333pt;}
.ydb{bottom:792.253333pt;}
.y88{bottom:795.973333pt;}
.y3e{bottom:802.693333pt;}
.y11d{bottom:807.493333pt;}
.y65{bottom:810.373333pt;}
.yda{bottom:810.693333pt;}
.y87{bottom:814.373333pt;}
.y3d{bottom:821.093333pt;}
.y11c{bottom:825.893333pt;}
.y64{bottom:828.773333pt;}
.yd9{bottom:829.093333pt;}
.y86{bottom:832.773333pt;}
.y3c{bottom:839.493333pt;}
.y11b{bottom:844.293333pt;}
.y63{bottom:847.173333pt;}
.yd8{bottom:847.493333pt;}
.y3b{bottom:857.893333pt;}
.y85{bottom:859.173333pt;}
.y62{bottom:865.573333pt;}
.yd7{bottom:865.893333pt;}
.ya{bottom:868.613333pt;}
.y11a{bottom:870.693333pt;}
.y3a{bottom:876.293333pt;}
.y81{bottom:877.893333pt;}
.y83{bottom:878.053333pt;}
.y84{bottom:882.533333pt;}
.y61{bottom:883.973333pt;}
.ybc{bottom:884.293333pt;}
.y80{bottom:886.053333pt;}
.y119{bottom:889.093333pt;}
.y39{bottom:894.693333pt;}
.y10a{bottom:897.098607pt;}
.y82{bottom:899.973333pt;}
.y60{bottom:902.693333pt;}
.y38{bottom:913.093333pt;}
.y118{bottom:915.493333pt;}
.ye5{bottom:915.973333pt;}
.y5f{bottom:921.093333pt;}
.y8{bottom:924.453333pt;}
.y37{bottom:931.493333pt;}
.ye4{bottom:932.773333pt;}
.y117{bottom:933.893333pt;}
.y5e{bottom:939.493333pt;}
.y4{bottom:943.333333pt;}
.y36{bottom:949.893333pt;}
.y5d{bottom:957.893333pt;}
.y116{bottom:960.293333pt;}
.y35{bottom:968.293333pt;}
.y5c{bottom:976.293333pt;}
.y34{bottom:986.693333pt;}
.y5b{bottom:994.693333pt;}
.y33{bottom:1013.093333pt;}
.y31{bottom:1045.280000pt;}
.y30{bottom:1062.560000pt;}
.y1{bottom:1063.840000pt;}
.h24{height:15.069903pt;}
.h13{height:15.360000pt;}
.h7{height:18.880000pt;}
.h10{height:23.360000pt;}
.h12{height:30.560000pt;}
.hf{height:33.918750pt;}
.hd{height:34.830000pt;}
.h1b{height:41.234375pt;}
.h15{height:42.745000pt;}
.he{height:46.560000pt;}
.h25{height:47.153848pt;}
.h23{height:48.542768pt;}
.h2{height:49.148438pt;}
.h1c{height:50.476562pt;}
.h8{height:52.134375pt;}
.h16{height:53.156250pt;}
.hc{height:53.535000pt;}
.h9{height:55.200000pt;}
.h3{height:57.787500pt;}
.h17{height:59.340000pt;}
.h6{height:62.812500pt;}
.ha{height:64.500000pt;}
.h18{height:71.093750pt;}
.h1d{height:76.892500pt;}
.hb{height:77.152000pt;}
.h4{height:84.672000pt;}
.h5{height:85.785000pt;}
.h1e{height:88.236563pt;}
.h19{height:99.474375pt;}
.h20{height:103.093750pt;}
.h21{height:103.733750pt;}
.h14{height:107.392000pt;}
.h1f{height:120.236563pt;}
.h1a{height:120.876563pt;}
.h22{height:156.005927pt;}
.h11{height:188.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:94.241560pt;}
.w8{width:132.320000pt;}
.w5{width:183.706667pt;}
.w4{width:185.466667pt;}
.w6{width:235.546667pt;}
.w9{width:472.573333pt;}
.wa{width:604.243635pt;}
.w3{width:604.733333pt;}
.w7{width:604.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.680000pt;}
.x12{left:5.600000pt;}
.xc{left:7.200000pt;}
.x2f{left:31.772563pt;}
.x31{left:35.000937pt;}
.xa{left:36.480000pt;}
.x30{left:37.691246pt;}
.x32{left:43.609933pt;}
.x8{left:47.994667pt;}
.x2d{left:50.093573pt;}
.x7{left:73.114667pt;}
.x4{left:94.592000pt;}
.x6{left:97.274667pt;}
.x29{left:100.031988pt;}
.x26{left:104.511988pt;}
.x19{left:113.471988pt;}
.x14{left:118.591988pt;}
.x2b{left:123.071988pt;}
.x16{left:132.351988pt;}
.x10{left:136.954667pt;}
.x3{left:141.786655pt;}
.x18{left:166.746655pt;}
.x27{left:198.906655pt;}
.xf{left:201.314667pt;}
.x11{left:226.906667pt;}
.x2e{left:260.955901pt;}
.x1b{left:264.866655pt;}
.x5{left:267.874667pt;}
.x1c{left:271.586655pt;}
.x21{left:275.106655pt;}
.x9{left:280.066667pt;}
.x15{left:289.986655pt;}
.x2a{left:295.746655pt;}
.xd{left:302.461333pt;}
.x22{left:304.866655pt;}
.x1{left:331.106655pt;}
.x1d{left:342.946655pt;}
.x24{left:350.946655pt;}
.x23{left:353.666655pt;}
.x2{left:385.826655pt;}
.x1f{left:411.293322pt;}
.x20{left:417.853322pt;}
.x13{left:420.573322pt;}
.x1e{left:428.573322pt;}
.xb{left:463.773333pt;}
.x17{left:492.893322pt;}
.x28{left:612.933322pt;}
.x25{left:636.933322pt;}
.x1a{left:654.853322pt;}
.x2c{left:699.493322pt;}
}




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