
    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_4d2bd0d4e4a57253d2ca7f0b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2dd4000284df524cb30499ce.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fe7572b27be5367f3729e7a1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ea01d932314eecede6d2aa42.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_c930e5041c03e30d8125edbe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_d2142d39616e85651aa312fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_9e418bb72cfbf4d06c46c919.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6b2c8b3ef3051dd978437526.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_224a14b216d301388d4e1042.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7fa192d782499dfa0b833d20.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9b7d1ddd62547e9fe8e1f2a3.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{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);}
.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:-9.360000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.587400px;}
.ls18{letter-spacing:-0.443400px;}
.lse{letter-spacing:-0.348600px;}
.ls16{letter-spacing:-0.345600px;}
.lsd{letter-spacing:-0.291000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.115200px;}
.lsf{letter-spacing:-0.048960px;}
.ls6{letter-spacing:-0.012960px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls10{letter-spacing:0.089400px;}
.lsb{letter-spacing:0.132480px;}
.ls13{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.181200px;}
.ls2{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.241800px;}
.ls12{letter-spacing:0.252480px;}
.ls7{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.262800px;}
.ls8{letter-spacing:0.276600px;}
.ls20{letter-spacing:0.279600px;}
.ls1f{letter-spacing:19.745280px;}
.ls1e{letter-spacing:20.465280px;}
.ls9{letter-spacing:32.544000px;}
.ls3{letter-spacing:38.465280px;}
.ls1c{letter-spacing:39.185280px;}
.ls1d{letter-spacing:41.345280px;}
.ls1b{letter-spacing:41.401920px;}
.ls4{letter-spacing:41.425920px;}
.ls22{letter-spacing:42.865920px;}
.ls17{letter-spacing:64.002720px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws7{word-spacing:-17.573760px;}
.ws5{word-spacing:-16.488000px;}
.ws11{word-spacing:-15.249840px;}
.ws1{word-spacing:-15.226440px;}
.wsc{word-spacing:-15.151440px;}
.wsb{word-spacing:-15.059640px;}
.ws3{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.855040px;}
.ws10{word-spacing:-14.754240px;}
.ws8{word-spacing:-14.679240px;}
.ws2{word-spacing:-14.595960px;}
.ws12{word-spacing:-14.382840px;}
.wsd{word-spacing:-13.973760px;}
.wse{word-spacing:-13.875960px;}
.ws0{word-spacing:-10.902240px;}
.wsa{word-spacing:-10.251360px;}
.ws9{word-spacing:-9.437760px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.159200px;}
._1{width:1.244160px;}
._3{width:2.318400px;}
._b{width:3.510720px;}
._5{width:4.968000px;}
._6{width:6.110400px;}
._7{width:7.552320px;}
._c{width:9.072960px;}
._4{width:10.134720px;}
._e{width:12.127200px;}
._d{width:13.143360px;}
._10{width:16.096320px;}
._9{width:17.686080px;}
._8{width:18.779040px;}
._a{width:19.843680px;}
._f{width:20.893920px;}
._1e{width:23.051520px;}
._22{width:24.111360px;}
._31{width:26.297280px;}
._13{width:27.622080px;}
._14{width:30.006720px;}
._33{width:32.731680px;}
._1d{width:33.782400px;}
._1c{width:35.107200px;}
._2b{width:36.696960px;}
._2f{width:41.698080px;}
._20{width:43.320960px;}
._24{width:44.380800px;}
._11{width:48.792000px;}
._2a{width:50.640480px;}
._26{width:52.859520px;}
._27{width:54.515520px;}
._15{width:55.774080px;}
._16{width:57.098880px;}
._17{width:58.224960px;}
._18{width:59.317920px;}
._32{width:61.351200px;}
._21{width:65.246400px;}
._1a{width:66.703680px;}
._1b{width:67.829760px;}
._28{width:71.936640px;}
._30{width:84.985920px;}
._19{width:92.669760px;}
._25{width:94.392000px;}
._2e{width:100.386720px;}
._29{width:105.927840px;}
._12{width:108.964800px;}
._23{width:137.249280px;}
._1f{width:155.730240px;}
._2c{width:161.029440px;}
._2d{width:228.196800px;}
._2{width:849.860640px;}
.fc9{color:rgb(0,0,255);}
.fc8{color:transparent;}
.fc6{color:rgb(83,129,53);}
.fc5{color:rgb(132,150,176);}
.fc2{color:rgb(3,80,89);}
.fc1{color:rgb(0,150,174);}
.fc7{color:rgb(255,255,255);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(118,174,173);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:33.120000px;}
.fs3{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fsc{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsd{font-size:66.384000px;}
.fs8{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs6{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.y118{bottom:-41.220000px;}
.ya9{bottom:-38.880000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.080000px;}
.y143{bottom:4.492500px;}
.y124{bottom:4.680000px;}
.y117{bottom:5.940000px;}
.yd5{bottom:6.405000px;}
.ya8{bottom:8.280000px;}
.y169{bottom:12.630000px;}
.y52{bottom:12.675000px;}
.y7e{bottom:13.140000px;}
.y50{bottom:13.425000px;}
.y4c{bottom:13.470000px;}
.y4e{bottom:13.605000px;}
.yde{bottom:13.935000px;}
.yd1{bottom:13.965000px;}
.ydb{bottom:14.115000px;}
.yd7{bottom:14.145000px;}
.yb{bottom:14.940000px;}
.y6{bottom:15.870000px;}
.ye{bottom:19.080000px;}
.y142{bottom:24.646500px;}
.y12e{bottom:24.690000px;}
.y123{bottom:24.840000px;}
.y116{bottom:26.100000px;}
.yd4{bottom:28.005000px;}
.ya{bottom:28.620000px;}
.y5{bottom:30.450000px;}
.y7b{bottom:31.245000px;}
.y76{bottom:31.470000px;}
.y79{bottom:31.605000px;}
.yaf{bottom:31.680000px;}
.yc2{bottom:31.710000px;}
.yd{bottom:33.300000px;}
.ydd{bottom:35.535000px;}
.yd0{bottom:35.565000px;}
.yda{bottom:35.715000px;}
.y9{bottom:42.300000px;}
.y141{bottom:44.806500px;}
.y122{bottom:44.820000px;}
.y12d{bottom:44.850000px;}
.y4{bottom:45.030000px;}
.y7d{bottom:46.800000px;}
.yd3{bottom:49.605000px;}
.yb7{bottom:51.840000px;}
.yc1{bottom:51.870000px;}
.yb1{bottom:51.885000px;}
.y3{bottom:58.710000px;}
.y140{bottom:64.966500px;}
.y12c{bottom:65.010000px;}
.y121{bottom:65.025000px;}
.yb6{bottom:72.000000px;}
.y13f{bottom:85.126500px;}
.y12b{bottom:85.170000px;}
.y120{bottom:85.185000px;}
.y37{bottom:88.956000px;}
.yb5{bottom:92.160000px;}
.y73{bottom:93.636000px;}
.ya6{bottom:100.836000px;}
.y13e{bottom:105.286500px;}
.y12a{bottom:105.330000px;}
.y11f{bottom:105.345000px;}
.y36{bottom:107.316000px;}
.yb4{bottom:112.320000px;}
.y144{bottom:113.616000px;}
.y72{bottom:113.796000px;}
.y35{bottom:114.876000px;}
.ya5{bottom:120.996000px;}
.y13d{bottom:125.446500px;}
.y129{bottom:125.490000px;}
.y11e{bottom:125.505000px;}
.y34{bottom:126.216000px;}
.y12f{bottom:130.003500px;}
.yb3{bottom:132.480000px;}
.y71{bottom:133.956000px;}
.ya4{bottom:141.156000px;}
.y13c{bottom:145.606500px;}
.y128{bottom:145.650000px;}
.y11d{bottom:145.665000px;}
.y4a{bottom:146.016000px;}
.ybf{bottom:152.640000px;}
.y70{bottom:154.110000px;}
.ya3{bottom:161.310000px;}
.y127{bottom:165.810000px;}
.y13b{bottom:165.811500px;}
.y11c{bottom:165.825000px;}
.y167{bottom:166.710000px;}
.y49{bottom:167.610000px;}
.ybe{bottom:172.800000px;}
.y6f{bottom:174.270000px;}
.ya2{bottom:181.470000px;}
.y33{bottom:185.970000px;}
.y13a{bottom:185.971500px;}
.y11b{bottom:185.985000px;}
.y48{bottom:189.210000px;}
.ybd{bottom:192.960000px;}
.y6e{bottom:194.250000px;}
.y166{bottom:200.370000px;}
.ya1{bottom:201.630000px;}
.yc4{bottom:202.350000px;}
.y139{bottom:205.951500px;}
.y126{bottom:206.130000px;}
.y11a{bottom:206.145000px;}
.y32{bottom:207.570000px;}
.y47{bottom:210.810000px;}
.ybc{bottom:212.940000px;}
.y6d{bottom:214.410000px;}
.ya0{bottom:221.610000px;}
.y138{bottom:226.111500px;}
.y31{bottom:229.170000px;}
.ybb{bottom:233.130000px;}
.y165{bottom:233.850000px;}
.y6c{bottom:234.570000px;}
.y9f{bottom:241.770000px;}
.y137{bottom:246.271500px;}
.y168{bottom:248.040000px;}
.yc3{bottom:249.510000px;}
.y30{bottom:250.590000px;}
.yba{bottom:253.290000px;}
.y6b{bottom:254.730000px;}
.y46{bottom:257.970000px;}
.yc0{bottom:265.725000px;}
.y136{bottom:266.431500px;}
.y164{bottom:267.510000px;}
.yb9{bottom:273.450000px;}
.y6a{bottom:274.890000px;}
.y135{bottom:286.591500px;}
.y45{bottom:286.950000px;}
.yf9{bottom:288.750000px;}
.y9e{bottom:288.930000px;}
.y69{bottom:295.095000px;}
.y2f{bottom:297.795000px;}
.y163{bottom:301.035000px;}
.y134{bottom:306.751500px;}
.yf8{bottom:308.055000px;}
.y9d{bottom:309.135000px;}
.y68{bottom:315.255000px;}
.y2e{bottom:317.955000px;}
.y162{bottom:321.195000px;}
.y54{bottom:323.460000px;}
.y133{bottom:326.911500px;}
.yf7{bottom:327.135000px;}
.y9c{bottom:329.295000px;}
.yb8{bottom:333.795000px;}
.y2d{bottom:338.115000px;}
.y67{bottom:338.295000px;}
.y161{bottom:342.795000px;}
.yf6{bottom:346.395000px;}
.y132{bottom:347.071500px;}
.y9b{bottom:349.455000px;}
.y114{bottom:356.115000px;}
.y2c{bottom:358.275000px;}
.y66{bottom:358.455000px;}
.y160{bottom:364.395000px;}
.y131{bottom:367.231500px;}
.y9a{bottom:369.615000px;}
.y2b{bottom:378.435000px;}
.y65{bottom:378.615000px;}
.yce{bottom:381.495000px;}
.y15f{bottom:384.555000px;}
.y130{bottom:387.391500px;}
.y53{bottom:390.420000px;}
.yf5{bottom:392.655000px;}
.y64{bottom:398.775000px;}
.y113{bottom:402.375000px;}
.y15e{bottom:406.155000px;}
.yf4{bottom:411.915000px;}
.y99{bottom:416.775000px;}
.y63{bottom:418.935000px;}
.y112{bottom:421.455000px;}
.ycd{bottom:423.255000px;}
.y2a{bottom:425.595000px;}
.yf3{bottom:431.175000px;}
.ydc{bottom:436.140000px;}
.y98{bottom:436.935000px;}
.y62{bottom:439.095000px;}
.y15d{bottom:439.635000px;}
.yf2{bottom:450.435000px;}
.y97{bottom:457.095000px;}
.y51{bottom:457.200000px;}
.y61{bottom:459.255000px;}
.y15c{bottom:459.795000px;}
.y111{bottom:467.715000px;}
.y29{bottom:468.075000px;}
.yf1{bottom:469.515000px;}
.y60{bottom:479.415000px;}
.y15b{bottom:481.395000px;}
.yf0{bottom:488.775000px;}
.yd9{bottom:489.600000px;}
.y5f{bottom:499.575000px;}
.y15a{bottom:502.815000px;}
.y96{bottom:504.075000px;}
.yef{bottom:508.035000px;}
.y110{bottom:514.155000px;}
.y5e{bottom:519.735000px;}
.y95{bottom:524.235000px;}
.y159{bottom:524.415000px;}
.yee{bottom:527.295000px;}
.y10f{bottom:533.235000px;}
.y125{bottom:533.595000px;}
.y5d{bottom:539.715000px;}
.y94{bottom:544.395000px;}
.y158{bottom:546.015000px;}
.yed{bottom:546.555000px;}
.y44{bottom:547.995000px;}
.yd8{bottom:549.540000px;}
.y1d{bottom:550.365000px;}
.y5c{bottom:559.905000px;}
.y157{bottom:567.645000px;}
.y10e{bottom:579.705000px;}
.y1c{bottom:579.885000px;}
.y5b{bottom:580.065000px;}
.y43{bottom:581.505000px;}
.y156{bottom:589.245000px;}
.y93{bottom:591.585000px;}
.yec{bottom:592.665000px;}
.y10d{bottom:598.965000px;}
.y42{bottom:603.105000px;}
.yd6{bottom:606.780000px;}
.y5a{bottom:609.225000px;}
.y1b{bottom:610.125000px;}
.y155{bottom:610.845000px;}
.y92{bottom:611.745000px;}
.yeb{bottom:611.925000px;}
.y10c{bottom:618.045000px;}
.yb2{bottom:623.445000px;}
.yea{bottom:631.185000px;}
.y91{bottom:631.905000px;}
.y154{bottom:632.265000px;}
.y59{bottom:638.205000px;}
.y1a{bottom:639.465000px;}
.y7a{bottom:639.540000px;}
.y41{bottom:650.265000px;}
.ye9{bottom:650.445000px;}
.y90{bottom:652.065000px;}
.y153{bottom:653.865000px;}
.y10b{bottom:664.485000px;}
.y19{bottom:668.265000px;}
.ye8{bottom:669.705000px;}
.yd2{bottom:669.960000px;}
.y8f{bottom:672.225000px;}
.y152{bottom:674.025000px;}
.y40{bottom:679.245000px;}
.ye7{bottom:688.785000px;}
.y8e{bottom:692.385000px;}
.y151{bottom:695.625000px;}
.y4f{bottom:697.320000px;}
.y18{bottom:697.965000px;}
.ya7{bottom:709.305000px;}
.y10a{bottom:710.745000px;}
.y8d{bottom:712.545000px;}
.y150{bottom:717.225000px;}
.y78{bottom:717.480000px;}
.y7c{bottom:726.765000px;}
.y17{bottom:728.205000px;}
.y109{bottom:730.005000px;}
.y8c{bottom:732.525000px;}
.ye6{bottom:735.225000px;}
.y14f{bottom:738.825000px;}
.ycf{bottom:742.860000px;}
.y77{bottom:749.085000px;}
.y108{bottom:749.265000px;}
.ye5{bottom:750.705000px;}
.y4d{bottom:750.780000px;}
.y8b{bottom:752.685000px;}
.y119{bottom:755.925000px;}
.y16{bottom:758.445000px;}
.y14e{bottom:758.805000px;}
.y107{bottom:768.345000px;}
.yb0{bottom:772.125000px;}
.y8a{bottom:772.845000px;}
.y115{bottom:773.385000px;}
.y14d{bottom:780.405000px;}
.y106{bottom:787.605000px;}
.y15{bottom:788.505000px;}
.y89{bottom:793.005000px;}
.y14c{bottom:802.005000px;}
.y4b{bottom:804.420000px;}
.y105{bottom:806.910000px;}
.y88{bottom:813.210000px;}
.y14{bottom:823.650000px;}
.y28{bottom:826.530000px;}
.y87{bottom:833.370000px;}
.ycc{bottom:835.170000px;}
.y104{bottom:835.710000px;}
.yae{bottom:840.210000px;}
.y75{bottom:843.660000px;}
.y16f{bottom:844.350000px;}
.y14b{bottom:845.250000px;}
.y27{bottom:846.690000px;}
.y86{bottom:853.530000px;}
.y3f{bottom:854.790000px;}
.y103{bottom:854.970000px;}
.ycb{bottom:855.330000px;}
.y13{bottom:863.070000px;}
.y16e{bottom:865.950000px;}
.y14a{bottom:866.670000px;}
.y26{bottom:866.850000px;}
.y85{bottom:873.690000px;}
.y102{bottom:874.230000px;}
.y74{bottom:875.130000px;}
.yca{bottom:875.490000px;}
.y3e{bottom:876.390000px;}
.y25{bottom:886.830000px;}
.y16d{bottom:887.370000px;}
.y149{bottom:888.270000px;}
.y101{bottom:893.490000px;}
.y84{bottom:893.850000px;}
.yc9{bottom:895.650000px;}
.y3d{bottom:897.810000px;}
.y12{bottom:904.830000px;}
.y24{bottom:906.990000px;}
.y148{bottom:908.430000px;}
.y16c{bottom:908.970000px;}
.y100{bottom:912.570000px;}
.y83{bottom:913.830000px;}
.yc8{bottom:915.810000px;}
.y3c{bottom:919.410000px;}
.yad{bottom:919.770000px;}
.y147{bottom:930.030000px;}
.y16b{bottom:930.390000px;}
.y58{bottom:931.650000px;}
.yff{bottom:931.830000px;}
.y82{bottom:933.990000px;}
.yc7{bottom:935.970000px;}
.y23{bottom:940.650000px;}
.y3b{bottom:941.010000px;}
.y11{bottom:949.830000px;}
.y16a{bottom:950.910000px;}
.yfe{bottom:951.090000px;}
.y146{bottom:951.630000px;}
.y57{bottom:953.250000px;}
.y81{bottom:954.150000px;}
.yc6{bottom:955.950000px;}
.y21{bottom:962.250000px;}
.y3a{bottom:962.610000px;}
.yac{bottom:966.930000px;}
.y22{bottom:969.810000px;}
.yfd{bottom:970.350000px;}
.y145{bottom:971.790000px;}
.y80{bottom:974.310000px;}
.y56{bottom:974.670000px;}
.yc5{bottom:976.110000px;}
.ye4{bottom:980.250000px;}
.y20{bottom:983.670000px;}
.y39{bottom:984.210000px;}
.yab{bottom:987.090000px;}
.y10{bottom:989.250000px;}
.yfc{bottom:989.610000px;}
.y55{bottom:996.270000px;}
.ye3{bottom:999.510000px;}
.y7f{bottom:1003.650000px;}
.y1f{bottom:1005.270000px;}
.y38{bottom:1005.810000px;}
.yaa{bottom:1007.070000px;}
.yfb{bottom:1008.870000px;}
.ye2{bottom:1018.770000px;}
.y1e{bottom:1025.610000px;}
.yf{bottom:1027.230000px;}
.yfa{bottom:1027.950000px;}
.ye1{bottom:1038.030000px;}
.y2{bottom:1048.290000px;}
.ye0{bottom:1057.110000px;}
.yc{bottom:1065.240000px;}
.ydf{bottom:1085.940000px;}
.y8{bottom:1110.240000px;}
.y1{bottom:1118.520000px;}
.h20{height:23.760000px;}
.h31{height:28.080000px;}
.h6{height:29.330859px;}
.h17{height:29.880000px;}
.h1a{height:30.060000px;}
.h3{height:32.942109px;}
.h8{height:36.519609px;}
.h14{height:38.671172px;}
.h11{height:41.535703px;}
.h2d{height:41.602500px;}
.h9{height:42.186445px;}
.h7{height:43.200000px;}
.h1b{height:45.116367px;}
.h21{height:47.145000px;}
.h4{height:47.980898px;}
.h27{height:48.324375px;}
.h26{height:50.520937px;}
.h28{height:51.120000px;}
.h2b{height:51.300000px;}
.h5{height:52.920000px;}
.h32{height:53.709961px;}
.h13{height:57.927656px;}
.h15{height:59.439023px;}
.h1e{height:62.280000px;}
.h2c{height:63.019687px;}
.hd{height:63.855000px;}
.he{height:64.875938px;}
.h29{height:65.160000px;}
.h1d{height:65.340000px;}
.h1c{height:65.520000px;}
.h1{height:65.884219px;}
.h2a{height:66.027445px;}
.h2{height:66.450000px;}
.hc{height:66.757500px;}
.h25{height:67.341000px;}
.h22{height:67.342500px;}
.h16{height:67.824844px;}
.h30{height:68.084282px;}
.h1f{height:73.722656px;}
.h12{height:74.004654px;}
.hf{height:74.953125px;}
.ha{height:86.255508px;}
.h19{height:107.419922px;}
.h18{height:107.563148px;}
.hb{height:110.583984px;}
.h23{height:147.960000px;}
.h2e{height:221.610000px;}
.h24{height:288.930000px;}
.h2f{height:402.862500px;}
.h10{height:1187.997990px;}
.h0{height:1188.000000px;}
.w6{width:64.080000px;}
.w8{width:67.680000px;}
.w7{width:67.860000px;}
.w9{width:91.785000px;}
.wb{width:144.382500px;}
.wd{width:144.396000px;}
.wc{width:144.540000px;}
.we{width:144.561000px;}
.wf{width:144.570000px;}
.w14{width:252.540000px;}
.w1{width:288.199500px;}
.w3{width:288.240000px;}
.w2{width:345.660000px;}
.w5{width:368.640000px;}
.w12{width:421.264500px;}
.wa{width:447.585000px;}
.w11{width:715.860000px;}
.w10{width:717.300000px;}
.w13{width:725.355000px;}
.w4{width:917.998125px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1a{left:3.165000px;}
.x1c{left:8.385000px;}
.x3{left:10.789500px;}
.x38{left:13.356000px;}
.x18{left:15.735000px;}
.x2b{left:17.445000px;}
.x3a{left:21.270000px;}
.x36{left:22.710000px;}
.x47{left:26.623500px;}
.x3c{left:29.550000px;}
.x2a{left:31.665000px;}
.x28{left:49.965000px;}
.x20{left:53.205000px;}
.x26{left:55.155000px;}
.x22{left:59.190000px;}
.x6{left:64.785000px;}
.x2e{left:78.150000px;}
.x7{left:92.190000px;}
.x2{left:94.546500px;}
.x2f{left:119.926500px;}
.x3b{left:123.915000px;}
.x1{left:127.656000px;}
.x45{left:128.736000px;}
.x3f{left:130.575000px;}
.x12{left:132.516000px;}
.x3e{left:133.560000px;}
.x35{left:135.360000px;}
.xc{left:136.656000px;}
.x4d{left:142.020000px;}
.x48{left:144.396000px;}
.x37{left:150.915000px;}
.xa{left:154.650000px;}
.x46{left:155.730000px;}
.x2c{left:163.650000px;}
.x4c{left:171.390000px;}
.xb{left:181.650000px;}
.x10{left:190.650000px;}
.x8{left:192.270000px;}
.x4e{left:198.180000px;}
.x49{left:224.490000px;}
.x4b{left:225.930000px;}
.x4a{left:239.430000px;}
.x42{left:249.870000px;}
.x17{left:252.720000px;}
.x30{left:265.035000px;}
.x3d{left:271.695000px;}
.x40{left:296.565000px;}
.x14{left:302.295000px;}
.x39{left:310.425000px;}
.x11{left:343.695000px;}
.x25{left:349.200000px;}
.x24{left:362.055000px;}
.x1e{left:372.855000px;}
.x27{left:390.240000px;}
.x2d{left:398.235000px;}
.x16{left:407.955000px;}
.x31{left:410.295000px;}
.x1b{left:442.800000px;}
.x29{left:444.180000px;}
.x23{left:456.660000px;}
.x19{left:474.660000px;}
.x9{left:490.965000px;}
.x5{left:505.560000px;}
.x1f{left:522.900000px;}
.xd{left:533.083125px;}
.xe{left:538.305000px;}
.x4{left:552.900000px;}
.x32{left:555.420000px;}
.x43{left:562.065000px;}
.x44{left:563.325000px;}
.x15{left:564.765000px;}
.x21{left:572.865000px;}
.x1d{left:632.670000px;}
.x33{left:700.710000px;}
.x13{left:756.510000px;}
.xf{left:772.200000px;}
.x41{left:802.800000px;}
.x34{left:858.960000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.522133pt;}
.ls18{letter-spacing:-0.394133pt;}
.lse{letter-spacing:-0.309867pt;}
.ls16{letter-spacing:-0.307200pt;}
.lsd{letter-spacing:-0.258667pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.102400pt;}
.lsf{letter-spacing:-0.043520pt;}
.ls6{letter-spacing:-0.011520pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls10{letter-spacing:0.079467pt;}
.lsb{letter-spacing:0.117760pt;}
.ls13{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.161067pt;}
.ls2{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.214933pt;}
.ls12{letter-spacing:0.224427pt;}
.ls7{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.233600pt;}
.ls8{letter-spacing:0.245867pt;}
.ls20{letter-spacing:0.248533pt;}
.ls1f{letter-spacing:17.551360pt;}
.ls1e{letter-spacing:18.191360pt;}
.ls9{letter-spacing:28.928000pt;}
.ls3{letter-spacing:34.191360pt;}
.ls1c{letter-spacing:34.831360pt;}
.ls1d{letter-spacing:36.751360pt;}
.ls1b{letter-spacing:36.801707pt;}
.ls4{letter-spacing:36.823040pt;}
.ls22{letter-spacing:38.103040pt;}
.ls17{letter-spacing:56.891307pt;}
.wsf{word-spacing:-53.120000pt;}
.ws7{word-spacing:-15.621120pt;}
.ws5{word-spacing:-14.656000pt;}
.ws11{word-spacing:-13.555413pt;}
.ws1{word-spacing:-13.534613pt;}
.wsc{word-spacing:-13.467947pt;}
.wsb{word-spacing:-13.386347pt;}
.ws3{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.204480pt;}
.ws10{word-spacing:-13.114880pt;}
.ws8{word-spacing:-13.048213pt;}
.ws2{word-spacing:-12.974187pt;}
.ws12{word-spacing:-12.784747pt;}
.wsd{word-spacing:-12.421120pt;}
.wse{word-spacing:-12.334187pt;}
.ws0{word-spacing:-9.690880pt;}
.wsa{word-spacing:-9.112320pt;}
.ws9{word-spacing:-8.389120pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.030400pt;}
._1{width:1.105920pt;}
._3{width:2.060800pt;}
._b{width:3.120640pt;}
._5{width:4.416000pt;}
._6{width:5.431467pt;}
._7{width:6.713173pt;}
._c{width:8.064853pt;}
._4{width:9.008640pt;}
._e{width:10.779733pt;}
._d{width:11.682987pt;}
._10{width:14.307840pt;}
._9{width:15.720960pt;}
._8{width:16.692480pt;}
._a{width:17.638827pt;}
._f{width:18.572373pt;}
._1e{width:20.490240pt;}
._22{width:21.432320pt;}
._31{width:23.375360pt;}
._13{width:24.552960pt;}
._14{width:26.672640pt;}
._33{width:29.094827pt;}
._1d{width:30.028800pt;}
._1c{width:31.206400pt;}
._2b{width:32.619520pt;}
._2f{width:37.064960pt;}
._20{width:38.507520pt;}
._24{width:39.449600pt;}
._11{width:43.370667pt;}
._2a{width:45.013760pt;}
._26{width:46.986240pt;}
._27{width:48.458240pt;}
._15{width:49.576960pt;}
._16{width:50.754560pt;}
._17{width:51.755520pt;}
._18{width:52.727040pt;}
._32{width:54.534400pt;}
._21{width:57.996800pt;}
._1a{width:59.292160pt;}
._1b{width:60.293120pt;}
._28{width:63.943680pt;}
._30{width:75.543040pt;}
._19{width:82.373120pt;}
._25{width:83.904000pt;}
._2e{width:89.232640pt;}
._29{width:94.158080pt;}
._12{width:96.857600pt;}
._23{width:121.999360pt;}
._1f{width:138.426880pt;}
._2c{width:143.137280pt;}
._2d{width:202.841600pt;}
._2{width:755.431680pt;}
.fs1{font-size:29.440000pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fsc{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsd{font-size:59.008000pt;}
.fs8{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs6{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.y118{bottom:-36.640000pt;}
.ya9{bottom:-34.560000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.960000pt;}
.y143{bottom:3.993333pt;}
.y124{bottom:4.160000pt;}
.y117{bottom:5.280000pt;}
.yd5{bottom:5.693333pt;}
.ya8{bottom:7.360000pt;}
.y169{bottom:11.226667pt;}
.y52{bottom:11.266667pt;}
.y7e{bottom:11.680000pt;}
.y50{bottom:11.933333pt;}
.y4c{bottom:11.973333pt;}
.y4e{bottom:12.093333pt;}
.yde{bottom:12.386667pt;}
.yd1{bottom:12.413333pt;}
.ydb{bottom:12.546667pt;}
.yd7{bottom:12.573333pt;}
.yb{bottom:13.280000pt;}
.y6{bottom:14.106667pt;}
.ye{bottom:16.960000pt;}
.y142{bottom:21.908000pt;}
.y12e{bottom:21.946667pt;}
.y123{bottom:22.080000pt;}
.y116{bottom:23.200000pt;}
.yd4{bottom:24.893333pt;}
.ya{bottom:25.440000pt;}
.y5{bottom:27.066667pt;}
.y7b{bottom:27.773333pt;}
.y76{bottom:27.973333pt;}
.y79{bottom:28.093333pt;}
.yaf{bottom:28.160000pt;}
.yc2{bottom:28.186667pt;}
.yd{bottom:29.600000pt;}
.ydd{bottom:31.586667pt;}
.yd0{bottom:31.613333pt;}
.yda{bottom:31.746667pt;}
.y9{bottom:37.600000pt;}
.y141{bottom:39.828000pt;}
.y122{bottom:39.840000pt;}
.y12d{bottom:39.866667pt;}
.y4{bottom:40.026667pt;}
.y7d{bottom:41.600000pt;}
.yd3{bottom:44.093333pt;}
.yb7{bottom:46.080000pt;}
.yc1{bottom:46.106667pt;}
.yb1{bottom:46.120000pt;}
.y3{bottom:52.186667pt;}
.y140{bottom:57.748000pt;}
.y12c{bottom:57.786667pt;}
.y121{bottom:57.800000pt;}
.yb6{bottom:64.000000pt;}
.y13f{bottom:75.668000pt;}
.y12b{bottom:75.706667pt;}
.y120{bottom:75.720000pt;}
.y37{bottom:79.072000pt;}
.yb5{bottom:81.920000pt;}
.y73{bottom:83.232000pt;}
.ya6{bottom:89.632000pt;}
.y13e{bottom:93.588000pt;}
.y12a{bottom:93.626667pt;}
.y11f{bottom:93.640000pt;}
.y36{bottom:95.392000pt;}
.yb4{bottom:99.840000pt;}
.y144{bottom:100.992000pt;}
.y72{bottom:101.152000pt;}
.y35{bottom:102.112000pt;}
.ya5{bottom:107.552000pt;}
.y13d{bottom:111.508000pt;}
.y129{bottom:111.546667pt;}
.y11e{bottom:111.560000pt;}
.y34{bottom:112.192000pt;}
.y12f{bottom:115.558667pt;}
.yb3{bottom:117.760000pt;}
.y71{bottom:119.072000pt;}
.ya4{bottom:125.472000pt;}
.y13c{bottom:129.428000pt;}
.y128{bottom:129.466667pt;}
.y11d{bottom:129.480000pt;}
.y4a{bottom:129.792000pt;}
.ybf{bottom:135.680000pt;}
.y70{bottom:136.986667pt;}
.ya3{bottom:143.386667pt;}
.y127{bottom:147.386667pt;}
.y13b{bottom:147.388000pt;}
.y11c{bottom:147.400000pt;}
.y167{bottom:148.186667pt;}
.y49{bottom:148.986667pt;}
.ybe{bottom:153.600000pt;}
.y6f{bottom:154.906667pt;}
.ya2{bottom:161.306667pt;}
.y33{bottom:165.306667pt;}
.y13a{bottom:165.308000pt;}
.y11b{bottom:165.320000pt;}
.y48{bottom:168.186667pt;}
.ybd{bottom:171.520000pt;}
.y6e{bottom:172.666667pt;}
.y166{bottom:178.106667pt;}
.ya1{bottom:179.226667pt;}
.yc4{bottom:179.866667pt;}
.y139{bottom:183.068000pt;}
.y126{bottom:183.226667pt;}
.y11a{bottom:183.240000pt;}
.y32{bottom:184.506667pt;}
.y47{bottom:187.386667pt;}
.ybc{bottom:189.280000pt;}
.y6d{bottom:190.586667pt;}
.ya0{bottom:196.986667pt;}
.y138{bottom:200.988000pt;}
.y31{bottom:203.706667pt;}
.ybb{bottom:207.226667pt;}
.y165{bottom:207.866667pt;}
.y6c{bottom:208.506667pt;}
.y9f{bottom:214.906667pt;}
.y137{bottom:218.908000pt;}
.y168{bottom:220.480000pt;}
.yc3{bottom:221.786667pt;}
.y30{bottom:222.746667pt;}
.yba{bottom:225.146667pt;}
.y6b{bottom:226.426667pt;}
.y46{bottom:229.306667pt;}
.yc0{bottom:236.200000pt;}
.y136{bottom:236.828000pt;}
.y164{bottom:237.786667pt;}
.yb9{bottom:243.066667pt;}
.y6a{bottom:244.346667pt;}
.y135{bottom:254.748000pt;}
.y45{bottom:255.066667pt;}
.yf9{bottom:256.666667pt;}
.y9e{bottom:256.826667pt;}
.y69{bottom:262.306667pt;}
.y2f{bottom:264.706667pt;}
.y163{bottom:267.586667pt;}
.y134{bottom:272.668000pt;}
.yf8{bottom:273.826667pt;}
.y9d{bottom:274.786667pt;}
.y68{bottom:280.226667pt;}
.y2e{bottom:282.626667pt;}
.y162{bottom:285.506667pt;}
.y54{bottom:287.520000pt;}
.y133{bottom:290.588000pt;}
.yf7{bottom:290.786667pt;}
.y9c{bottom:292.706667pt;}
.yb8{bottom:296.706667pt;}
.y2d{bottom:300.546667pt;}
.y67{bottom:300.706667pt;}
.y161{bottom:304.706667pt;}
.yf6{bottom:307.906667pt;}
.y132{bottom:308.508000pt;}
.y9b{bottom:310.626667pt;}
.y114{bottom:316.546667pt;}
.y2c{bottom:318.466667pt;}
.y66{bottom:318.626667pt;}
.y160{bottom:323.906667pt;}
.y131{bottom:326.428000pt;}
.y9a{bottom:328.546667pt;}
.y2b{bottom:336.386667pt;}
.y65{bottom:336.546667pt;}
.yce{bottom:339.106667pt;}
.y15f{bottom:341.826667pt;}
.y130{bottom:344.348000pt;}
.y53{bottom:347.040000pt;}
.yf5{bottom:349.026667pt;}
.y64{bottom:354.466667pt;}
.y113{bottom:357.666667pt;}
.y15e{bottom:361.026667pt;}
.yf4{bottom:366.146667pt;}
.y99{bottom:370.466667pt;}
.y63{bottom:372.386667pt;}
.y112{bottom:374.626667pt;}
.ycd{bottom:376.226667pt;}
.y2a{bottom:378.306667pt;}
.yf3{bottom:383.266667pt;}
.ydc{bottom:387.680000pt;}
.y98{bottom:388.386667pt;}
.y62{bottom:390.306667pt;}
.y15d{bottom:390.786667pt;}
.yf2{bottom:400.386667pt;}
.y97{bottom:406.306667pt;}
.y51{bottom:406.400000pt;}
.y61{bottom:408.226667pt;}
.y15c{bottom:408.706667pt;}
.y111{bottom:415.746667pt;}
.y29{bottom:416.066667pt;}
.yf1{bottom:417.346667pt;}
.y60{bottom:426.146667pt;}
.y15b{bottom:427.906667pt;}
.yf0{bottom:434.466667pt;}
.yd9{bottom:435.200000pt;}
.y5f{bottom:444.066667pt;}
.y15a{bottom:446.946667pt;}
.y96{bottom:448.066667pt;}
.yef{bottom:451.586667pt;}
.y110{bottom:457.026667pt;}
.y5e{bottom:461.986667pt;}
.y95{bottom:465.986667pt;}
.y159{bottom:466.146667pt;}
.yee{bottom:468.706667pt;}
.y10f{bottom:473.986667pt;}
.y125{bottom:474.306667pt;}
.y5d{bottom:479.746667pt;}
.y94{bottom:483.906667pt;}
.y158{bottom:485.346667pt;}
.yed{bottom:485.826667pt;}
.y44{bottom:487.106667pt;}
.yd8{bottom:488.480000pt;}
.y1d{bottom:489.213333pt;}
.y5c{bottom:497.693333pt;}
.y157{bottom:504.573333pt;}
.y10e{bottom:515.293333pt;}
.y1c{bottom:515.453333pt;}
.y5b{bottom:515.613333pt;}
.y43{bottom:516.893333pt;}
.y156{bottom:523.773333pt;}
.y93{bottom:525.853333pt;}
.yec{bottom:526.813333pt;}
.y10d{bottom:532.413333pt;}
.y42{bottom:536.093333pt;}
.yd6{bottom:539.360000pt;}
.y5a{bottom:541.533333pt;}
.y1b{bottom:542.333333pt;}
.y155{bottom:542.973333pt;}
.y92{bottom:543.773333pt;}
.yeb{bottom:543.933333pt;}
.y10c{bottom:549.373333pt;}
.yb2{bottom:554.173333pt;}
.yea{bottom:561.053333pt;}
.y91{bottom:561.693333pt;}
.y154{bottom:562.013333pt;}
.y59{bottom:567.293333pt;}
.y1a{bottom:568.413333pt;}
.y7a{bottom:568.480000pt;}
.y41{bottom:578.013333pt;}
.ye9{bottom:578.173333pt;}
.y90{bottom:579.613333pt;}
.y153{bottom:581.213333pt;}
.y10b{bottom:590.653333pt;}
.y19{bottom:594.013333pt;}
.ye8{bottom:595.293333pt;}
.yd2{bottom:595.520000pt;}
.y8f{bottom:597.533333pt;}
.y152{bottom:599.133333pt;}
.y40{bottom:603.773333pt;}
.ye7{bottom:612.253333pt;}
.y8e{bottom:615.453333pt;}
.y151{bottom:618.333333pt;}
.y4f{bottom:619.840000pt;}
.y18{bottom:620.413333pt;}
.ya7{bottom:630.493333pt;}
.y10a{bottom:631.773333pt;}
.y8d{bottom:633.373333pt;}
.y150{bottom:637.533333pt;}
.y78{bottom:637.760000pt;}
.y7c{bottom:646.013333pt;}
.y17{bottom:647.293333pt;}
.y109{bottom:648.893333pt;}
.y8c{bottom:651.133333pt;}
.ye6{bottom:653.533333pt;}
.y14f{bottom:656.733333pt;}
.ycf{bottom:660.320000pt;}
.y77{bottom:665.853333pt;}
.y108{bottom:666.013333pt;}
.ye5{bottom:667.293333pt;}
.y4d{bottom:667.360000pt;}
.y8b{bottom:669.053333pt;}
.y119{bottom:671.933333pt;}
.y16{bottom:674.173333pt;}
.y14e{bottom:674.493333pt;}
.y107{bottom:682.973333pt;}
.yb0{bottom:686.333333pt;}
.y8a{bottom:686.973333pt;}
.y115{bottom:687.453333pt;}
.y14d{bottom:693.693333pt;}
.y106{bottom:700.093333pt;}
.y15{bottom:700.893333pt;}
.y89{bottom:704.893333pt;}
.y14c{bottom:712.893333pt;}
.y4b{bottom:715.040000pt;}
.y105{bottom:717.253333pt;}
.y88{bottom:722.853333pt;}
.y14{bottom:732.133333pt;}
.y28{bottom:734.693333pt;}
.y87{bottom:740.773333pt;}
.ycc{bottom:742.373333pt;}
.y104{bottom:742.853333pt;}
.yae{bottom:746.853333pt;}
.y75{bottom:749.920000pt;}
.y16f{bottom:750.533333pt;}
.y14b{bottom:751.333333pt;}
.y27{bottom:752.613333pt;}
.y86{bottom:758.693333pt;}
.y3f{bottom:759.813333pt;}
.y103{bottom:759.973333pt;}
.ycb{bottom:760.293333pt;}
.y13{bottom:767.173333pt;}
.y16e{bottom:769.733333pt;}
.y14a{bottom:770.373333pt;}
.y26{bottom:770.533333pt;}
.y85{bottom:776.613333pt;}
.y102{bottom:777.093333pt;}
.y74{bottom:777.893333pt;}
.yca{bottom:778.213333pt;}
.y3e{bottom:779.013333pt;}
.y25{bottom:788.293333pt;}
.y16d{bottom:788.773333pt;}
.y149{bottom:789.573333pt;}
.y101{bottom:794.213333pt;}
.y84{bottom:794.533333pt;}
.yc9{bottom:796.133333pt;}
.y3d{bottom:798.053333pt;}
.y12{bottom:804.293333pt;}
.y24{bottom:806.213333pt;}
.y148{bottom:807.493333pt;}
.y16c{bottom:807.973333pt;}
.y100{bottom:811.173333pt;}
.y83{bottom:812.293333pt;}
.yc8{bottom:814.053333pt;}
.y3c{bottom:817.253333pt;}
.yad{bottom:817.573333pt;}
.y147{bottom:826.693333pt;}
.y16b{bottom:827.013333pt;}
.y58{bottom:828.133333pt;}
.yff{bottom:828.293333pt;}
.y82{bottom:830.213333pt;}
.yc7{bottom:831.973333pt;}
.y23{bottom:836.133333pt;}
.y3b{bottom:836.453333pt;}
.y11{bottom:844.293333pt;}
.y16a{bottom:845.253333pt;}
.yfe{bottom:845.413333pt;}
.y146{bottom:845.893333pt;}
.y57{bottom:847.333333pt;}
.y81{bottom:848.133333pt;}
.yc6{bottom:849.733333pt;}
.y21{bottom:855.333333pt;}
.y3a{bottom:855.653333pt;}
.yac{bottom:859.493333pt;}
.y22{bottom:862.053333pt;}
.yfd{bottom:862.533333pt;}
.y145{bottom:863.813333pt;}
.y80{bottom:866.053333pt;}
.y56{bottom:866.373333pt;}
.yc5{bottom:867.653333pt;}
.ye4{bottom:871.333333pt;}
.y20{bottom:874.373333pt;}
.y39{bottom:874.853333pt;}
.yab{bottom:877.413333pt;}
.y10{bottom:879.333333pt;}
.yfc{bottom:879.653333pt;}
.y55{bottom:885.573333pt;}
.ye3{bottom:888.453333pt;}
.y7f{bottom:892.133333pt;}
.y1f{bottom:893.573333pt;}
.y38{bottom:894.053333pt;}
.yaa{bottom:895.173333pt;}
.yfb{bottom:896.773333pt;}
.ye2{bottom:905.573333pt;}
.y1e{bottom:911.653333pt;}
.yf{bottom:913.093333pt;}
.yfa{bottom:913.733333pt;}
.ye1{bottom:922.693333pt;}
.y2{bottom:931.813333pt;}
.ye0{bottom:939.653333pt;}
.yc{bottom:946.880000pt;}
.ydf{bottom:965.280000pt;}
.y8{bottom:986.880000pt;}
.y1{bottom:994.240000pt;}
.h20{height:21.120000pt;}
.h31{height:24.960000pt;}
.h6{height:26.071875pt;}
.h17{height:26.560000pt;}
.h1a{height:26.720000pt;}
.h3{height:29.281875pt;}
.h8{height:32.461875pt;}
.h14{height:34.374375pt;}
.h11{height:36.920625pt;}
.h2d{height:36.980000pt;}
.h9{height:37.499062pt;}
.h7{height:38.400000pt;}
.h1b{height:40.103437pt;}
.h21{height:41.906667pt;}
.h4{height:42.649687pt;}
.h27{height:42.955000pt;}
.h26{height:44.907500pt;}
.h28{height:45.440000pt;}
.h2b{height:45.600000pt;}
.h5{height:47.040000pt;}
.h32{height:47.742188pt;}
.h13{height:51.491250pt;}
.h15{height:52.834688pt;}
.h1e{height:55.360000pt;}
.h2c{height:56.017500pt;}
.hd{height:56.760000pt;}
.he{height:57.667500pt;}
.h29{height:57.920000pt;}
.h1d{height:58.080000pt;}
.h1c{height:58.240000pt;}
.h1{height:58.563750pt;}
.h2a{height:58.691063pt;}
.h2{height:59.066667pt;}
.hc{height:59.340000pt;}
.h25{height:59.858667pt;}
.h22{height:59.860000pt;}
.h16{height:60.288750pt;}
.h30{height:60.519362pt;}
.h1f{height:65.531250pt;}
.h12{height:65.781915pt;}
.hf{height:66.625000pt;}
.ha{height:76.671562pt;}
.h19{height:95.484375pt;}
.h18{height:95.611688pt;}
.hb{height:98.296875pt;}
.h23{height:131.520000pt;}
.h2e{height:196.986667pt;}
.h24{height:256.826667pt;}
.h2f{height:358.100000pt;}
.h10{height:1055.998213pt;}
.h0{height:1056.000000pt;}
.w6{width:56.960000pt;}
.w8{width:60.160000pt;}
.w7{width:60.320000pt;}
.w9{width:81.586667pt;}
.wb{width:128.340000pt;}
.wd{width:128.352000pt;}
.wc{width:128.480000pt;}
.we{width:128.498667pt;}
.wf{width:128.506667pt;}
.w14{width:224.480000pt;}
.w1{width:256.177333pt;}
.w3{width:256.213333pt;}
.w2{width:307.253333pt;}
.w5{width:327.680000pt;}
.w12{width:374.457333pt;}
.wa{width:397.853333pt;}
.w11{width:636.320000pt;}
.w10{width:637.600000pt;}
.w13{width:644.760000pt;}
.w4{width:815.998333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:2.813333pt;}
.x1c{left:7.453333pt;}
.x3{left:9.590667pt;}
.x38{left:11.872000pt;}
.x18{left:13.986667pt;}
.x2b{left:15.506667pt;}
.x3a{left:18.906667pt;}
.x36{left:20.186667pt;}
.x47{left:23.665333pt;}
.x3c{left:26.266667pt;}
.x2a{left:28.146667pt;}
.x28{left:44.413333pt;}
.x20{left:47.293333pt;}
.x26{left:49.026667pt;}
.x22{left:52.613333pt;}
.x6{left:57.586667pt;}
.x2e{left:69.466667pt;}
.x7{left:81.946667pt;}
.x2{left:84.041333pt;}
.x2f{left:106.601333pt;}
.x3b{left:110.146667pt;}
.x1{left:113.472000pt;}
.x45{left:114.432000pt;}
.x3f{left:116.066667pt;}
.x12{left:117.792000pt;}
.x3e{left:118.720000pt;}
.x35{left:120.320000pt;}
.xc{left:121.472000pt;}
.x4d{left:126.240000pt;}
.x48{left:128.352000pt;}
.x37{left:134.146667pt;}
.xa{left:137.466667pt;}
.x46{left:138.426667pt;}
.x2c{left:145.466667pt;}
.x4c{left:152.346667pt;}
.xb{left:161.466667pt;}
.x10{left:169.466667pt;}
.x8{left:170.906667pt;}
.x4e{left:176.160000pt;}
.x49{left:199.546667pt;}
.x4b{left:200.826667pt;}
.x4a{left:212.826667pt;}
.x42{left:222.106667pt;}
.x17{left:224.640000pt;}
.x30{left:235.586667pt;}
.x3d{left:241.506667pt;}
.x40{left:263.613333pt;}
.x14{left:268.706667pt;}
.x39{left:275.933333pt;}
.x11{left:305.506667pt;}
.x25{left:310.400000pt;}
.x24{left:321.826667pt;}
.x1e{left:331.426667pt;}
.x27{left:346.880000pt;}
.x2d{left:353.986667pt;}
.x16{left:362.626667pt;}
.x31{left:364.706667pt;}
.x1b{left:393.600000pt;}
.x29{left:394.826667pt;}
.x23{left:405.920000pt;}
.x19{left:421.920000pt;}
.x9{left:436.413333pt;}
.x5{left:449.386667pt;}
.x1f{left:464.800000pt;}
.xd{left:473.851667pt;}
.xe{left:478.493333pt;}
.x4{left:491.466667pt;}
.x32{left:493.706667pt;}
.x43{left:499.613333pt;}
.x44{left:500.733333pt;}
.x15{left:502.013333pt;}
.x21{left:509.213333pt;}
.x1d{left:562.373333pt;}
.x33{left:622.853333pt;}
.x13{left:672.453333pt;}
.xf{left:686.400000pt;}
.x41{left:713.600000pt;}
.x34{left:763.520000pt;}
}




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