
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_012cd121c4ceab2c5f1b65fc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_be6dcb5eb89bd93a697624da.woff')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_4b834a252759618cbb3fdaf1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4b0281eceaed4596c5092120.woff')format("woff");}.ff5{font-family:ff5;line-height:1.208008;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_a8392d7bbf2857c2025953cb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_66e866249cd8c7775ba237e9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a33e11a5a33c0ddfa25d2da1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_62840b46ae9a739fdc66f090.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2c5b6c46d39e75dd4e8c3586.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_589c71af24a4097fe401c69a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1a{letter-spacing:-0.298800px;}
.ls20{letter-spacing:-0.243600px;}
.ls11{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.153600px;}
.ls23{letter-spacing:-0.151800px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls24{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.068400px;}
.ls25{letter-spacing:-0.063600px;}
.ls19{letter-spacing:-0.060600px;}
.ls29{letter-spacing:-0.038880px;}
.ls1c{letter-spacing:-0.037800px;}
.lsc{letter-spacing:-0.031800px;}
.ls18{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.006480px;}
.ls3{letter-spacing:0.014760px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls26{letter-spacing:0.061200px;}
.ls14{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.074160px;}
.ls16{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls2c{letter-spacing:0.098400px;}
.ls1d{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.141600px;}
.ls7{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.160800px;}
.ls10{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.181200px;}
.ls2b{letter-spacing:0.199200px;}
.ls2a{letter-spacing:0.275400px;}
.lsa{letter-spacing:0.297600px;}
.ls0{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.366600px;}
.ls1b{letter-spacing:0.434400px;}
.ls13{letter-spacing:5.133600px;}
.ls22{letter-spacing:12.888000px;}
.ls2e{letter-spacing:47.726640px;}
.ls15{letter-spacing:63.566640px;}
.ls2d{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws13{word-spacing:-60.120000px;}
.ws15{word-spacing:-36.072000px;}
.ws14{word-spacing:-36.000000px;}
.ws3{word-spacing:-14.791200px;}
.ws2{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws16{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.387200px;}
.ws11{word-spacing:-13.368000px;}
.wsf{word-spacing:-13.346400px;}
.wsc{word-spacing:-13.300800px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wse{word-spacing:-13.218840px;}
.ws10{word-spacing:-13.158000px;}
.wsa{word-spacing:-13.072800px;}
.ws8{word-spacing:-13.039800px;}
.ws12{word-spacing:-10.381800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._8{margin-left:-3.426600px;}
._b{margin-left:-2.334842px;}
._0{margin-left:-1.110000px;}
._1{width:1.090188px;}
._2{width:2.208143px;}
._4{width:4.208400px;}
._5{width:5.652600px;}
._c{width:7.569598px;}
._3{width:8.597400px;}
._e{width:10.061997px;}
._d{width:11.302800px;}
._6{width:14.248200px;}
._7{width:15.391201px;}
._f{width:16.893600px;}
._14{width:17.954041px;}
._15{width:19.202040px;}
._16{width:20.328252px;}
._13{width:21.635760px;}
._12{width:22.755240px;}
._10{width:24.168240px;}
._11{width:25.553640px;}
._a{width:41.903400px;}
._9{width:43.887360px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.880000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y61{bottom:7.830000px;}
.y62{bottom:7.920000px;}
.y9f{bottom:7.950000px;}
.y9d{bottom:13.050000px;}
.y75{bottom:13.140000px;}
.y72{bottom:25.380000px;}
.yae{bottom:25.470000px;}
.ybd{bottom:26.640000px;}
.y80{bottom:26.670000px;}
.y5f{bottom:35.190000px;}
.y9c{bottom:35.220000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ye5{bottom:111.630000px;}
.y98{bottom:114.600000px;}
.y53{bottom:114.690000px;}
.ye4{bottom:129.270000px;}
.y97{bottom:132.150000px;}
.yc3{bottom:132.870000px;}
.y29{bottom:133.860000px;}
.ye3{bottom:146.820000px;}
.y52{bottom:146.910000px;}
.y96{bottom:149.790000px;}
.yc2{bottom:150.420000px;}
.y28{bottom:151.410000px;}
.y106{bottom:158.700000px;}
.ye2{bottom:164.370000px;}
.y7b{bottom:166.530000px;}
.yc1{bottom:168.060000px;}
.y27{bottom:168.960000px;}
.y105{bottom:176.250000px;}
.ye1{bottom:182.010000px;}
.y7a{bottom:184.080000px;}
.y95{bottom:185.340000px;}
.yc0{bottom:185.610000px;}
.y26{bottom:186.600000px;}
.ye0{bottom:199.560000px;}
.y79{bottom:201.720000px;}
.y104{bottom:202.890000px;}
.y94{bottom:202.980000px;}
.y25{bottom:204.150000px;}
.ydf{bottom:217.200000px;}
.y78{bottom:219.270000px;}
.ybf{bottom:220.440000px;}
.y93{bottom:220.530000px;}
.y24{bottom:221.790000px;}
.ybe{bottom:232.680000px;}
.yde{bottom:234.750000px;}
.y77{bottom:236.820000px;}
.y92{bottom:238.080000px;}
.y23{bottom:239.340000px;}
.ydd{bottom:252.300000px;}
.y76{bottom:254.460000px;}
.y91{bottom:255.720000px;}
.y22{bottom:256.890000px;}
.ybc{bottom:259.950000px;}
.y103{bottom:264.630000px;}
.y90{bottom:273.270000px;}
.y21{bottom:274.530000px;}
.y102{bottom:282.180000px;}
.ybb{bottom:287.310000px;}
.y74{bottom:287.400000px;}
.ydc{bottom:287.940000px;}
.y8f{bottom:290.910000px;}
.y101{bottom:299.820000px;}
.ydb{bottom:305.490000px;}
.y8e{bottom:308.460000px;}
.y20{bottom:310.080000px;}
.yba{bottom:314.670000px;}
.y73{bottom:314.760000px;}
.yda{bottom:323.130000px;}
.y8d{bottom:326.010000px;}
.y100{bottom:326.370000px;}
.y1f{bottom:327.630000px;}
.yd9{bottom:340.680000px;}
.yb9{bottom:342.030000px;}
.y71{bottom:342.120000px;}
.yff{bottom:344.010000px;}
.y1e{bottom:345.270000px;}
.y51{bottom:350.580000px;}
.yd8{bottom:358.230000px;}
.yfe{bottom:361.560000px;}
.y8c{bottom:361.650000px;}
.y1d{bottom:362.820000px;}
.y50{bottom:368.130000px;}
.yd7{bottom:375.870000px;}
.y8b{bottom:379.200000px;}
.y1c{bottom:380.460000px;}
.y4f{bottom:385.770000px;}
.yfd{bottom:388.110000px;}
.yb8{bottom:390.720000px;}
.y1b{bottom:398.010000px;}
.y4e{bottom:403.320000px;}
.yb7{bottom:408.270000px;}
.y70{bottom:408.360000px;}
.y8a{bottom:411.420000px;}
.yfc{bottom:414.750000px;}
.y1a{bottom:415.560000px;}
.y4d{bottom:420.870000px;}
.y6f{bottom:425.910000px;}
.yd6{bottom:429.060000px;}
.yfb{bottom:432.300000px;}
.y19{bottom:433.200000px;}
.y4c{bottom:438.510000px;}
.yb6{bottom:443.820000px;}
.y18{bottom:450.750000px;}
.yd5{bottom:455.970000px;}
.yfa{bottom:458.940000px;}
.yb5{bottom:461.460000px;}
.y6e{bottom:461.550000px;}
.y17{bottom:468.390000px;}
.y4b{bottom:474.090000px;}
.yf9{bottom:476.520000px;}
.yb4{bottom:479.040000px;}
.y6d{bottom:479.130000px;}
.y4a{bottom:491.730000px;}
.yf8{bottom:494.070000px;}
.y16{bottom:495.330000px;}
.yb3{bottom:496.680000px;}
.yd4{bottom:504.240000px;}
.y49{bottom:509.280000px;}
.yb2{bottom:514.230000px;}
.y6c{bottom:514.770000px;}
.yf7{bottom:520.710000px;}
.yd3{bottom:521.790000px;}
.y48{bottom:526.830000px;}
.yb1{bottom:531.780000px;}
.y6b{bottom:532.320000px;}
.yf6{bottom:538.260000px;}
.yd2{bottom:539.430000px;}
.y15{bottom:543.570000px;}
.y47{bottom:544.470000px;}
.y6a{bottom:549.870000px;}
.yf5{bottom:555.900000px;}
.yd1{bottom:556.980000px;}
.y14{bottom:561.480000px;}
.y46{bottom:562.020000px;}
.yb0{bottom:564.810000px;}
.y69{bottom:567.510000px;}
.yd0{bottom:574.530000px;}
.y45{bottom:579.660000px;}
.yf4{bottom:582.450000px;}
.yaf{bottom:592.080000px;}
.ycf{bottom:592.170000px;}
.y44{bottom:597.210000px;}
.y13{bottom:598.470000px;}
.yf3{bottom:600.000000px;}
.y68{bottom:602.970000px;}
.yce{bottom:609.720000px;}
.y43{bottom:614.760000px;}
.y12{bottom:616.110000px;}
.yf2{bottom:617.640000px;}
.yad{bottom:619.440000px;}
.ycd{bottom:627.360000px;}
.y11{bottom:633.660000px;}
.y67{bottom:639.510000px;}
.y42{bottom:641.400000px;}
.yf1{bottom:644.190000px;}
.ycc{bottom:644.910000px;}
.y10{bottom:651.210000px;}
.y66{bottom:657.060000px;}
.yf0{bottom:661.830000px;}
.ycb{bottom:662.460000px;}
.yf{bottom:668.850000px;}
.y41{bottom:676.950000px;}
.yef{bottom:679.380000px;}
.yca{bottom:680.100000px;}
.yac{bottom:685.770000px;}
.ye{bottom:686.400000px;}
.y65{bottom:691.890000px;}
.y40{bottom:694.590000px;}
.yc9{bottom:697.650000px;}
.yab{bottom:703.320000px;}
.yd{bottom:704.040000px;}
.y64{bottom:704.130000px;}
.yee{bottom:705.930000px;}
.yc8{bottom:715.290000px;}
.yc{bottom:721.590000px;}
.yed{bottom:723.570000px;}
.yaa{bottom:729.870000px;}
.y3f{bottom:730.140000px;}
.y63{bottom:731.490000px;}
.yc7{bottom:732.840000px;}
.yb{bottom:739.140000px;}
.yec{bottom:741.120000px;}
.ya9{bottom:747.510000px;}
.y3e{bottom:747.690000px;}
.y89{bottom:754.530000px;}
.y5e{bottom:758.760000px;}
.y3d{bottom:765.330000px;}
.ya{bottom:766.140000px;}
.ya8{bottom:766.230000px;}
.yeb{bottom:768.030000px;}
.yc6{bottom:768.390000px;}
.ya7{bottom:785.040000px;}
.yc5{bottom:786.030000px;}
.y60{bottom:786.120000px;}
.y88{bottom:790.170000px;}
.y3c{bottom:800.880000px;}
.ya6{bottom:802.590000px;}
.y87{bottom:807.720000px;}
.y9{bottom:812.850000px;}
.yea{bottom:816.270000px;}
.yc4{bottom:818.250000px;}
.y3b{bottom:818.520000px;}
.ya5{bottom:820.140000px;}
.y5d{bottom:834.810000px;}
.y3a{bottom:836.070000px;}
.ya4{bottom:837.780000px;}
.ye9{bottom:843.180000px;}
.y86{bottom:843.360000px;}
.y8{bottom:848.670000px;}
.y5c{bottom:852.450000px;}
.y85{bottom:860.910000px;}
.y39{bottom:862.980000px;}
.ya3{bottom:873.240000px;}
.y5b{bottom:879.270000px;}
.ye8{bottom:880.530000px;}
.y7{bottom:884.670000px;}
.y84{bottom:896.460000px;}
.ya2{bottom:909.060000px;}
.y38{bottom:911.220000px;}
.y83{bottom:914.100000px;}
.y10d{bottom:919.410000px;}
.y6{bottom:920.490000px;}
.ya1{bottom:921.210000px;}
.y5a{bottom:927.600000px;}
.y37{bottom:928.860000px;}
.y82{bottom:931.650000px;}
.y10c{bottom:936.960000px;}
.y5{bottom:938.040000px;}
.y36{bottom:946.410000px;}
.ya0{bottom:948.570000px;}
.y59{bottom:963.150000px;}
.y10b{bottom:963.600000px;}
.y35{bottom:963.960000px;}
.y81{bottom:964.680000px;}
.y4{bottom:973.950000px;}
.y9b{bottom:975.930000px;}
.y58{bottom:980.790000px;}
.y10a{bottom:981.150000px;}
.y34{bottom:981.600000px;}
.y7f{bottom:991.950000px;}
.y57{bottom:998.340000px;}
.y33{bottom:999.150000px;}
.ye7{bottom:999.600000px;}
.y9e{bottom:1003.200000px;}
.y109{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.ye6{bottom:1017.180000px;}
.y7e{bottom:1019.340000px;}
.y108{bottom:1025.370000px;}
.y56{bottom:1033.920000px;}
.y32{bottom:1034.820000px;}
.y7d{bottom:1046.700000px;}
.y55{bottom:1051.560000px;}
.y9a{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y99{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y7c{bottom:1073.970000px;}
.y107{bottom:1078.560000px;}
.y54{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hc{height:26.550000px;}
.hd{height:26.640000px;}
.h11{height:26.670000px;}
.h2{height:32.566289px;}
.h10{height:44.100000px;}
.h13{height:44.190000px;}
.h3{height:44.538574px;}
.he{height:47.389043px;}
.h6{height:50.902383px;}
.hb{height:53.910000px;}
.h12{height:53.940000px;}
.h8{height:55.779258px;}
.h7{height:59.503535px;}
.hf{height:61.793886px;}
.ha{height:62.585859px;}
.h5{height:65.204473px;}
.h9{height:68.582109px;}
.h4{height:83.019902px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w12{width:21.240000px;}
.w14{width:27.540000px;}
.w17{width:47.970000px;}
.w3{width:48.060000px;}
.w15{width:69.030000px;}
.w13{width:69.060000px;}
.w16{width:69.120000px;}
.w21{width:69.150000px;}
.w1a{width:74.370000px;}
.w9{width:76.080000px;}
.w11{width:93.960000px;}
.w1e{width:96.390000px;}
.w1c{width:97.290000px;}
.w1d{width:97.320000px;}
.w6{width:98.100000px;}
.w19{width:98.190000px;}
.we{width:98.730000px;}
.wb{width:99.630000px;}
.wd{width:99.720000px;}
.wc{width:99.750000px;}
.w8{width:131.490000px;}
.w7{width:131.520000px;}
.w20{width:137.070000px;}
.w10{width:137.160000px;}
.w1b{width:137.340000px;}
.wa{width:140.580000px;}
.w18{width:141.210000px;}
.w4{width:146.160000px;}
.w5{width:362.640000px;}
.w1f{width:466.680000px;}
.wf{width:491.610000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.960000px;}
.xf{left:7.650000px;}
.x1{left:68.040000px;}
.x24{left:76.319987px;}
.xd{left:95.039987px;}
.x33{left:98.639987px;}
.x1d{left:100.169987px;}
.x32{left:104.579987px;}
.x34{left:111.239987px;}
.xe{left:137.520000px;}
.x25{left:144.630000px;}
.x6{left:167.430000px;}
.x1f{left:169.950000px;}
.x5{left:172.559987px;}
.xc{left:180.659987px;}
.x15{left:200.820000px;}
.x2{left:202.799987px;}
.x2a{left:208.440000px;}
.x29{left:213.330000px;}
.x10{left:214.410000px;}
.x8{left:216.210000px;}
.x20{left:218.730000px;}
.x26{left:219.810000px;}
.x16{left:220.950000px;}
.x1e{left:247.529987px;}
.x17{left:338.700000px;}
.x2b{left:351.120000px;}
.x11{left:355.800000px;}
.x27{left:357.870000px;}
.x21{left:360.660000px;}
.x9{left:363.180000px;}
.x2c{left:420.960000px;}
.x18{left:433.380000px;}
.x2d{left:442.920000px;}
.x12{left:456.150000px;}
.x22{left:459.570000px;}
.xa{left:462.090000px;}
.x2e{left:512.790000px;}
.x19{left:525.210000px;}
.x2f{left:541.050000px;}
.x1a{left:553.560000px;}
.x13{left:556.620000px;}
.x23{left:591.810000px;}
.xb{left:594.330000px;}
.x30{left:610.890000px;}
.x1b{left:623.310000px;}
.x4{left:650.309987px;}
.x28{left:652.200000px;}
.x14{left:657.060000px;}
.x1c{left:663.809987px;}
.x31{left:666.059987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.265600pt;}
.ls20{letter-spacing:-0.216533pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.136533pt;}
.ls23{letter-spacing:-0.134933pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.060800pt;}
.ls25{letter-spacing:-0.056533pt;}
.ls19{letter-spacing:-0.053867pt;}
.ls29{letter-spacing:-0.034560pt;}
.ls1c{letter-spacing:-0.033600pt;}
.lsc{letter-spacing:-0.028267pt;}
.ls18{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.005760pt;}
.ls3{letter-spacing:0.013120pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls26{letter-spacing:0.054400pt;}
.ls14{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.065920pt;}
.ls16{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls2c{letter-spacing:0.087467pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.125867pt;}
.ls7{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.142933pt;}
.ls10{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.161067pt;}
.ls2b{letter-spacing:0.177067pt;}
.ls2a{letter-spacing:0.244800pt;}
.lsa{letter-spacing:0.264533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.325867pt;}
.ls1b{letter-spacing:0.386133pt;}
.ls13{letter-spacing:4.563200pt;}
.ls22{letter-spacing:11.456000pt;}
.ls2e{letter-spacing:42.423680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls2d{letter-spacing:71.863680pt;}
.ws13{word-spacing:-53.440000pt;}
.ws15{word-spacing:-32.064000pt;}
.ws14{word-spacing:-32.000000pt;}
.ws3{word-spacing:-13.147733pt;}
.ws2{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws16{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.899733pt;}
.ws11{word-spacing:-11.882667pt;}
.wsf{word-spacing:-11.863467pt;}
.wsc{word-spacing:-11.822933pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.750080pt;}
.ws10{word-spacing:-11.696000pt;}
.wsa{word-spacing:-11.620267pt;}
.ws8{word-spacing:-11.590933pt;}
.ws12{word-spacing:-9.228267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._8{margin-left:-3.045866pt;}
._b{margin-left:-2.075415pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969056pt;}
._2{width:1.962794pt;}
._4{width:3.740800pt;}
._5{width:5.024533pt;}
._c{width:6.728531pt;}
._3{width:7.642134pt;}
._e{width:8.943997pt;}
._d{width:10.046934pt;}
._6{width:12.665066pt;}
._7{width:13.681068pt;}
._f{width:15.016533pt;}
._14{width:15.959148pt;}
._15{width:17.068480pt;}
._16{width:18.069557pt;}
._13{width:19.231787pt;}
._12{width:20.226880pt;}
._10{width:21.482880pt;}
._11{width:22.714347pt;}
._a{width:37.247466pt;}
._9{width:39.010987pt;}
.fs8{font-size:26.560000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:6.960000pt;}
.y62{bottom:7.040000pt;}
.y9f{bottom:7.066667pt;}
.y9d{bottom:11.600000pt;}
.y75{bottom:11.680000pt;}
.y72{bottom:22.560000pt;}
.yae{bottom:22.640000pt;}
.ybd{bottom:23.680000pt;}
.y80{bottom:23.706667pt;}
.y5f{bottom:31.280000pt;}
.y9c{bottom:31.306667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ye5{bottom:99.226667pt;}
.y98{bottom:101.866667pt;}
.y53{bottom:101.946667pt;}
.ye4{bottom:114.906667pt;}
.y97{bottom:117.466667pt;}
.yc3{bottom:118.106667pt;}
.y29{bottom:118.986667pt;}
.ye3{bottom:130.506667pt;}
.y52{bottom:130.586667pt;}
.y96{bottom:133.146667pt;}
.yc2{bottom:133.706667pt;}
.y28{bottom:134.586667pt;}
.y106{bottom:141.066667pt;}
.ye2{bottom:146.106667pt;}
.y7b{bottom:148.026667pt;}
.yc1{bottom:149.386667pt;}
.y27{bottom:150.186667pt;}
.y105{bottom:156.666667pt;}
.ye1{bottom:161.786667pt;}
.y7a{bottom:163.626667pt;}
.y95{bottom:164.746667pt;}
.yc0{bottom:164.986667pt;}
.y26{bottom:165.866667pt;}
.ye0{bottom:177.386667pt;}
.y79{bottom:179.306667pt;}
.y104{bottom:180.346667pt;}
.y94{bottom:180.426667pt;}
.y25{bottom:181.466667pt;}
.ydf{bottom:193.066667pt;}
.y78{bottom:194.906667pt;}
.ybf{bottom:195.946667pt;}
.y93{bottom:196.026667pt;}
.y24{bottom:197.146667pt;}
.ybe{bottom:206.826667pt;}
.yde{bottom:208.666667pt;}
.y77{bottom:210.506667pt;}
.y92{bottom:211.626667pt;}
.y23{bottom:212.746667pt;}
.ydd{bottom:224.266667pt;}
.y76{bottom:226.186667pt;}
.y91{bottom:227.306667pt;}
.y22{bottom:228.346667pt;}
.ybc{bottom:231.066667pt;}
.y103{bottom:235.226667pt;}
.y90{bottom:242.906667pt;}
.y21{bottom:244.026667pt;}
.y102{bottom:250.826667pt;}
.ybb{bottom:255.386667pt;}
.y74{bottom:255.466667pt;}
.ydc{bottom:255.946667pt;}
.y8f{bottom:258.586667pt;}
.y101{bottom:266.506667pt;}
.ydb{bottom:271.546667pt;}
.y8e{bottom:274.186667pt;}
.y20{bottom:275.626667pt;}
.yba{bottom:279.706667pt;}
.y73{bottom:279.786667pt;}
.yda{bottom:287.226667pt;}
.y8d{bottom:289.786667pt;}
.y100{bottom:290.106667pt;}
.y1f{bottom:291.226667pt;}
.yd9{bottom:302.826667pt;}
.yb9{bottom:304.026667pt;}
.y71{bottom:304.106667pt;}
.yff{bottom:305.786667pt;}
.y1e{bottom:306.906667pt;}
.y51{bottom:311.626667pt;}
.yd8{bottom:318.426667pt;}
.yfe{bottom:321.386667pt;}
.y8c{bottom:321.466667pt;}
.y1d{bottom:322.506667pt;}
.y50{bottom:327.226667pt;}
.yd7{bottom:334.106667pt;}
.y8b{bottom:337.066667pt;}
.y1c{bottom:338.186667pt;}
.y4f{bottom:342.906667pt;}
.yfd{bottom:344.986667pt;}
.yb8{bottom:347.306667pt;}
.y1b{bottom:353.786667pt;}
.y4e{bottom:358.506667pt;}
.yb7{bottom:362.906667pt;}
.y70{bottom:362.986667pt;}
.y8a{bottom:365.706667pt;}
.yfc{bottom:368.666667pt;}
.y1a{bottom:369.386667pt;}
.y4d{bottom:374.106667pt;}
.y6f{bottom:378.586667pt;}
.yd6{bottom:381.386667pt;}
.yfb{bottom:384.266667pt;}
.y19{bottom:385.066667pt;}
.y4c{bottom:389.786667pt;}
.yb6{bottom:394.506667pt;}
.y18{bottom:400.666667pt;}
.yd5{bottom:405.306667pt;}
.yfa{bottom:407.946667pt;}
.yb5{bottom:410.186667pt;}
.y6e{bottom:410.266667pt;}
.y17{bottom:416.346667pt;}
.y4b{bottom:421.413333pt;}
.yf9{bottom:423.573333pt;}
.yb4{bottom:425.813333pt;}
.y6d{bottom:425.893333pt;}
.y4a{bottom:437.093333pt;}
.yf8{bottom:439.173333pt;}
.y16{bottom:440.293333pt;}
.yb3{bottom:441.493333pt;}
.yd4{bottom:448.213333pt;}
.y49{bottom:452.693333pt;}
.yb2{bottom:457.093333pt;}
.y6c{bottom:457.573333pt;}
.yf7{bottom:462.853333pt;}
.yd3{bottom:463.813333pt;}
.y48{bottom:468.293333pt;}
.yb1{bottom:472.693333pt;}
.y6b{bottom:473.173333pt;}
.yf6{bottom:478.453333pt;}
.yd2{bottom:479.493333pt;}
.y15{bottom:483.173333pt;}
.y47{bottom:483.973333pt;}
.y6a{bottom:488.773333pt;}
.yf5{bottom:494.133333pt;}
.yd1{bottom:495.093333pt;}
.y14{bottom:499.093333pt;}
.y46{bottom:499.573333pt;}
.yb0{bottom:502.053333pt;}
.y69{bottom:504.453333pt;}
.yd0{bottom:510.693333pt;}
.y45{bottom:515.253333pt;}
.yf4{bottom:517.733333pt;}
.yaf{bottom:526.293333pt;}
.ycf{bottom:526.373333pt;}
.y44{bottom:530.853333pt;}
.y13{bottom:531.973333pt;}
.yf3{bottom:533.333333pt;}
.y68{bottom:535.973333pt;}
.yce{bottom:541.973333pt;}
.y43{bottom:546.453333pt;}
.y12{bottom:547.653333pt;}
.yf2{bottom:549.013333pt;}
.yad{bottom:550.613333pt;}
.ycd{bottom:557.653333pt;}
.y11{bottom:563.253333pt;}
.y67{bottom:568.453333pt;}
.y42{bottom:570.133333pt;}
.yf1{bottom:572.613333pt;}
.ycc{bottom:573.253333pt;}
.y10{bottom:578.853333pt;}
.y66{bottom:584.053333pt;}
.yf0{bottom:588.293333pt;}
.ycb{bottom:588.853333pt;}
.yf{bottom:594.533333pt;}
.y41{bottom:601.733333pt;}
.yef{bottom:603.893333pt;}
.yca{bottom:604.533333pt;}
.yac{bottom:609.573333pt;}
.ye{bottom:610.133333pt;}
.y65{bottom:615.013333pt;}
.y40{bottom:617.413333pt;}
.yc9{bottom:620.133333pt;}
.yab{bottom:625.173333pt;}
.yd{bottom:625.813333pt;}
.y64{bottom:625.893333pt;}
.yee{bottom:627.493333pt;}
.yc8{bottom:635.813333pt;}
.yc{bottom:641.413333pt;}
.yed{bottom:643.173333pt;}
.yaa{bottom:648.773333pt;}
.y3f{bottom:649.013333pt;}
.y63{bottom:650.213333pt;}
.yc7{bottom:651.413333pt;}
.yb{bottom:657.013333pt;}
.yec{bottom:658.773333pt;}
.ya9{bottom:664.453333pt;}
.y3e{bottom:664.613333pt;}
.y89{bottom:670.693333pt;}
.y5e{bottom:674.453333pt;}
.y3d{bottom:680.293333pt;}
.ya{bottom:681.013333pt;}
.ya8{bottom:681.093333pt;}
.yeb{bottom:682.693333pt;}
.yc6{bottom:683.013333pt;}
.ya7{bottom:697.813333pt;}
.yc5{bottom:698.693333pt;}
.y60{bottom:698.773333pt;}
.y88{bottom:702.373333pt;}
.y3c{bottom:711.893333pt;}
.ya6{bottom:713.413333pt;}
.y87{bottom:717.973333pt;}
.y9{bottom:722.533333pt;}
.yea{bottom:725.573333pt;}
.yc4{bottom:727.333333pt;}
.y3b{bottom:727.573333pt;}
.ya5{bottom:729.013333pt;}
.y5d{bottom:742.053333pt;}
.y3a{bottom:743.173333pt;}
.ya4{bottom:744.693333pt;}
.ye9{bottom:749.493333pt;}
.y86{bottom:749.653333pt;}
.y8{bottom:754.373333pt;}
.y5c{bottom:757.733333pt;}
.y85{bottom:765.253333pt;}
.y39{bottom:767.093333pt;}
.ya3{bottom:776.213333pt;}
.y5b{bottom:781.573333pt;}
.ye8{bottom:782.693333pt;}
.y7{bottom:786.373333pt;}
.y84{bottom:796.853333pt;}
.ya2{bottom:808.053333pt;}
.y38{bottom:809.973333pt;}
.y83{bottom:812.533333pt;}
.y10d{bottom:817.253333pt;}
.y6{bottom:818.213333pt;}
.ya1{bottom:818.853333pt;}
.y5a{bottom:824.533333pt;}
.y37{bottom:825.653333pt;}
.y82{bottom:828.133333pt;}
.y10c{bottom:832.853333pt;}
.y5{bottom:833.813333pt;}
.y36{bottom:841.253333pt;}
.ya0{bottom:843.173333pt;}
.y59{bottom:856.133333pt;}
.y10b{bottom:856.533333pt;}
.y35{bottom:856.853333pt;}
.y81{bottom:857.493333pt;}
.y4{bottom:865.733333pt;}
.y9b{bottom:867.493333pt;}
.y58{bottom:871.813333pt;}
.y10a{bottom:872.133333pt;}
.y34{bottom:872.533333pt;}
.y7f{bottom:881.733333pt;}
.y57{bottom:887.413333pt;}
.y33{bottom:888.133333pt;}
.ye7{bottom:888.533333pt;}
.y9e{bottom:891.733333pt;}
.y109{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.ye6{bottom:904.160000pt;}
.y7e{bottom:906.080000pt;}
.y108{bottom:911.440000pt;}
.y56{bottom:919.040000pt;}
.y32{bottom:919.840000pt;}
.y7d{bottom:930.400000pt;}
.y55{bottom:934.720000pt;}
.y9a{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y99{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y7c{bottom:954.640000pt;}
.y107{bottom:958.720000pt;}
.y54{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.hd{height:23.680000pt;}
.h11{height:23.706667pt;}
.h2{height:28.947812pt;}
.h10{height:39.200000pt;}
.h13{height:39.280000pt;}
.h3{height:39.589844pt;}
.he{height:42.123594pt;}
.h6{height:45.246562pt;}
.hb{height:47.920000pt;}
.h12{height:47.946667pt;}
.h8{height:49.581562pt;}
.h7{height:52.892031pt;}
.hf{height:54.927899pt;}
.ha{height:55.631875pt;}
.h5{height:57.959531pt;}
.h9{height:60.961875pt;}
.h4{height:73.795469pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w12{width:18.880000pt;}
.w14{width:24.480000pt;}
.w17{width:42.640000pt;}
.w3{width:42.720000pt;}
.w15{width:61.360000pt;}
.w13{width:61.386667pt;}
.w16{width:61.440000pt;}
.w21{width:61.466667pt;}
.w1a{width:66.106667pt;}
.w9{width:67.626667pt;}
.w11{width:83.520000pt;}
.w1e{width:85.680000pt;}
.w1c{width:86.480000pt;}
.w1d{width:86.506667pt;}
.w6{width:87.200000pt;}
.w19{width:87.280000pt;}
.we{width:87.760000pt;}
.wb{width:88.560000pt;}
.wd{width:88.640000pt;}
.wc{width:88.666667pt;}
.w8{width:116.880000pt;}
.w7{width:116.906667pt;}
.w20{width:121.840000pt;}
.w10{width:121.920000pt;}
.w1b{width:122.080000pt;}
.wa{width:124.960000pt;}
.w18{width:125.520000pt;}
.w4{width:129.920000pt;}
.w5{width:322.346667pt;}
.w1f{width:414.826667pt;}
.wf{width:436.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:3.520000pt;}
.xf{left:6.800000pt;}
.x1{left:60.480000pt;}
.x24{left:67.839988pt;}
.xd{left:84.479988pt;}
.x33{left:87.679988pt;}
.x1d{left:89.039988pt;}
.x32{left:92.959988pt;}
.x34{left:98.879988pt;}
.xe{left:122.240000pt;}
.x25{left:128.560000pt;}
.x6{left:148.826667pt;}
.x1f{left:151.066667pt;}
.x5{left:153.386655pt;}
.xc{left:160.586655pt;}
.x15{left:178.506667pt;}
.x2{left:180.266655pt;}
.x2a{left:185.280000pt;}
.x29{left:189.626667pt;}
.x10{left:190.586667pt;}
.x8{left:192.186667pt;}
.x20{left:194.426667pt;}
.x26{left:195.386667pt;}
.x16{left:196.400000pt;}
.x1e{left:220.026655pt;}
.x17{left:301.066667pt;}
.x2b{left:312.106667pt;}
.x11{left:316.266667pt;}
.x27{left:318.106667pt;}
.x21{left:320.586667pt;}
.x9{left:322.826667pt;}
.x2c{left:374.186667pt;}
.x18{left:385.226667pt;}
.x2d{left:393.706667pt;}
.x12{left:405.466667pt;}
.x22{left:408.506667pt;}
.xa{left:410.746667pt;}
.x2e{left:455.813333pt;}
.x19{left:466.853333pt;}
.x2f{left:480.933333pt;}
.x1a{left:492.053333pt;}
.x13{left:494.773333pt;}
.x23{left:526.053333pt;}
.xb{left:528.293333pt;}
.x30{left:543.013333pt;}
.x1b{left:554.053333pt;}
.x4{left:578.053322pt;}
.x28{left:579.733333pt;}
.x14{left:584.053333pt;}
.x1c{left:590.053322pt;}
.x31{left:592.053322pt;}
.x3{left:704.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  