
    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_7db1cfad95c9ba5f5359ca94.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_5285b4aa90621fbb9adfed42.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_56fb7f0a8482e53a5ed0c89a.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_5b25f9080d33817b2e39c6c2.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_134ed6053dc8848de8482c7e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_185622f01d08108a2f23464d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.975586;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_444d4765084a9c78a747e025.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;}
.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:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.520000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:45.360000px;}
.ls37{letter-spacing:-0.444600px;}
.lsb{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.178800px;}
.ls2a{letter-spacing:-0.141600px;}
.ls8{letter-spacing:-0.135000px;}
.ls24{letter-spacing:-0.133800px;}
.lsd{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.ls2b{letter-spacing:-0.101400px;}
.ls32{letter-spacing:-0.096600px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls2c{letter-spacing:-0.048960px;}
.ls31{letter-spacing:-0.045360px;}
.ls22{letter-spacing:-0.013320px;}
.ls23{letter-spacing:-0.004680px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.005400px;}
.ls4{letter-spacing:0.014760px;}
.ls25{letter-spacing:0.023040px;}
.ls2e{letter-spacing:0.041760px;}
.ls21{letter-spacing:0.042480px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.060480px;}
.ls15{letter-spacing:0.060600px;}
.ls1b{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls26{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098280px;}
.ls35{letter-spacing:0.098400px;}
.ls29{letter-spacing:0.103200px;}
.ls27{letter-spacing:0.108600px;}
.ls20{letter-spacing:0.113400px;}
.ls19{letter-spacing:0.116400px;}
.ls30{letter-spacing:0.118200px;}
.ls14{letter-spacing:0.127200px;}
.ls2d{letter-spacing:0.133920px;}
.ls6{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.156960px;}
.ls1d{letter-spacing:0.165600px;}
.ls28{letter-spacing:0.170400px;}
.ls11{letter-spacing:0.173400px;}
.ls18{letter-spacing:0.173520px;}
.ls13{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.181200px;}
.ls1f{letter-spacing:0.201600px;}
.ls0{letter-spacing:0.360000px;}
.ls33{letter-spacing:2.373600px;}
.ls1a{letter-spacing:36.450360px;}
.ls36{letter-spacing:48.446640px;}
.ls1c{letter-spacing:63.566640px;}
.ls34{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws1f{word-spacing:-13.407600px;}
.ws9{word-spacing:-13.399800px;}
.ws1a{word-spacing:-13.396800px;}
.wse{word-spacing:-13.353600px;}
.ws20{word-spacing:-13.344600px;}
.wsf{word-spacing:-13.342800px;}
.ws18{word-spacing:-13.335000px;}
.ws1b{word-spacing:-13.329600px;}
.ws22{word-spacing:-13.324800px;}
.ws19{word-spacing:-13.300800px;}
.ws13{word-spacing:-13.291200px;}
.wsc{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.221720px;}
.ws12{word-spacing:-13.213080px;}
.ws21{word-spacing:-13.181040px;}
.ws1e{word-spacing:-13.177440px;}
.wsa{word-spacing:-13.141800px;}
.ws1d{word-spacing:-13.125000px;}
.ws7{word-spacing:-13.101000px;}
.ws17{word-spacing:-13.092600px;}
.ws16{word-spacing:-13.091400px;}
.ws1c{word-spacing:-13.084800px;}
.wsd{word-spacing:-13.047600px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws10{word-spacing:-8.614200px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
.ws11{word-spacing:5.184000px;}
.ws14{word-spacing:5.988600px;}
._b{margin-left:-3.726959px;}
._7{margin-left:-2.645400px;}
._3{margin-left:-1.227600px;}
._0{width:1.937880px;}
._1{width:3.677760px;}
._2{width:5.496000px;}
._5{width:7.334400px;}
._6{width:8.418002px;}
._8{width:9.618238px;}
._a{width:11.422800px;}
._4{width:14.484960px;}
._14{width:15.625080px;}
._c{width:16.650360px;}
._d{width:18.410400px;}
._9{width:20.200320px;}
._f{width:22.139640px;}
._e{width:23.266440px;}
._10{width:25.971840px;}
._11{width:27.474840px;}
._13{width:29.759400px;}
._24{width:35.701560px;}
._23{width:36.733320px;}
._17{width:47.254320px;}
._1c{width:55.250280px;}
._18{width:60.480720px;}
._16{width:68.647320px;}
._15{width:69.679080px;}
._1d{width:76.232160px;}
._1e{width:77.494680px;}
._1a{width:89.218080px;}
._19{width:90.240120px;}
._1b{width:97.574760px;}
._12{width:110.079720px;}
._22{width:133.431480px;}
._21{width:134.668800px;}
._20{width:166.472280px;}
._1f{width:199.846200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.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;}
.y78{bottom:7.830000px;}
.yec{bottom:7.860000px;}
.y7b{bottom:7.920000px;}
.y80{bottom:7.950000px;}
.y13d{bottom:25.470000px;}
.ybc{bottom:26.580000px;}
.ybe{bottom:26.640000px;}
.ye6{bottom:35.190000px;}
.y148{bottom:35.280000px;}
.y142{bottom:45.720000px;}
.ye5{bottom:53.910000px;}
.y141{bottom:67.770000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.yf0{bottom:89.820000px;}
.yea{bottom:89.850000px;}
.yc0{bottom:89.910000px;}
.y1{bottom:101.640000px;}
.y5f{bottom:113.790000px;}
.y1c9{bottom:115.140000px;}
.y187{bottom:120.810000px;}
.y168{bottom:120.900000px;}
.y114{bottom:123.960000px;}
.yb9{bottom:126.660000px;}
.y145{bottom:129.630000px;}
.y1c8{bottom:132.690000px;}
.y186{bottom:138.360000px;}
.y167{bottom:138.450000px;}
.y113{bottom:141.600000px;}
.y28{bottom:143.130000px;}
.yb8{bottom:144.210000px;}
.y5e{bottom:149.340000px;}
.y185{bottom:155.910000px;}
.y166{bottom:156.090000px;}
.ye3{bottom:156.810000px;}
.y1b3{bottom:157.080000px;}
.y8d{bottom:159.060000px;}
.y112{bottom:159.150000px;}
.y27{bottom:160.680000px;}
.yb7{bottom:161.850000px;}
.y144{bottom:165.180000px;}
.y5d{bottom:166.980000px;}
.y165{bottom:173.640000px;}
.ye2{bottom:174.360000px;}
.y1b2{bottom:174.630000px;}
.y8c{bottom:176.610000px;}
.y111{bottom:176.790000px;}
.yb6{bottom:179.400000px;}
.y140{bottom:180.210000px;}
.y184{bottom:182.820000px;}
.y5c{bottom:184.530000px;}
.y164{bottom:191.280000px;}
.ye1{bottom:192.000000px;}
.y1c7{bottom:192.180000px;}
.y110{bottom:194.340000px;}
.y26{bottom:196.320000px;}
.y1b1{bottom:198.930000px;}
.y5b{bottom:202.170000px;}
.y8b{bottom:203.250000px;}
.yb5{bottom:206.040000px;}
.y143{bottom:207.570000px;}
.ye0{bottom:209.550000px;}
.y10f{bottom:211.890000px;}
.y25{bottom:213.870000px;}
.y1b0{bottom:216.570000px;}
.y5a{bottom:219.720000px;}
.y163{bottom:226.830000px;}
.ydf{bottom:227.190000px;}
.y183{bottom:231.150000px;}
.y24{bottom:231.510000px;}
.y1c6{bottom:234.120000px;}
.y13e{bottom:234.840000px;}
.y59{bottom:237.270000px;}
.y8a{bottom:238.800000px;}
.y1af{bottom:240.870000px;}
.yb4{bottom:241.590000px;}
.y162{bottom:244.380000px;}
.yde{bottom:244.740000px;}
.y10e{bottom:247.530000px;}
.y23{bottom:249.060000px;}
.y1c5{bottom:251.760000px;}
.y58{bottom:254.910000px;}
.y89{bottom:256.440000px;}
.y182{bottom:258.060000px;}
.y1ae{bottom:258.510000px;}
.yb3{bottom:259.140000px;}
.y161{bottom:262.020000px;}
.y13f{bottom:262.200000px;}
.ydd{bottom:262.290000px;}
.y10d{bottom:265.080000px;}
.y22{bottom:266.610000px;}
.y57{bottom:272.460000px;}
.y88{bottom:273.990000px;}
.y1ad{bottom:276.060000px;}
.yb2{bottom:276.780000px;}
.y160{bottom:279.570000px;}
.ydc{bottom:279.930000px;}
.y10c{bottom:282.720000px;}
.y21{bottom:284.250000px;}
.y13c{bottom:289.560000px;}
.y56{bottom:290.100000px;}
.y87{bottom:291.540000px;}
.y1c4{bottom:293.610000px;}
.yb1{bottom:294.330000px;}
.y181{bottom:295.410000px;}
.y15f{bottom:297.120000px;}
.ydb{bottom:297.480000px;}
.y10b{bottom:300.270000px;}
.y1ac{bottom:300.360000px;}
.y20{bottom:301.800000px;}
.y55{bottom:307.650000px;}
.y86{bottom:309.180000px;}
.yb0{bottom:311.970000px;}
.y15e{bottom:314.760000px;}
.yda{bottom:315.120000px;}
.y10a{bottom:317.820000px;}
.y1ab{bottom:318.000000px;}
.y54{bottom:325.200000px;}
.y85{bottom:326.730000px;}
.y1f{bottom:328.710000px;}
.yaf{bottom:329.520000px;}
.y15d{bottom:332.310000px;}
.yd9{bottom:332.670000px;}
.y109{bottom:335.460000px;}
.y1c3{bottom:335.550000px;}
.y1aa{bottom:342.300000px;}
.y53{bottom:342.840000px;}
.y180{bottom:343.650000px;}
.yae{bottom:347.070000px;}
.y15c{bottom:349.950000px;}
.y108{bottom:353.010000px;}
.y1c2{bottom:353.190000px;}
.y13b{bottom:355.800000px;}
.yd8{bottom:359.220000px;}
.y84{bottom:359.760000px;}
.y1a9{bottom:359.940000px;}
.y17f{bottom:361.200000px;}
.y15b{bottom:367.500000px;}
.y52{bottom:369.390000px;}
.yad{bottom:373.710000px;}
.y1e{bottom:377.310000px;}
.y1a8{bottom:377.490000px;}
.y17e{bottom:378.840000px;}
.y15a{bottom:385.050000px;}
.y83{bottom:387.030000px;}
.y107{bottom:388.650000px;}
.y13a{bottom:391.440000px;}
.yd7{bottom:394.860000px;}
.y1c1{bottom:395.040000px;}
.y17d{bottom:396.390000px;}
.y1a7{bottom:401.790000px;}
.y159{bottom:402.690000px;}
.y51{bottom:405.300000px;}
.y106{bottom:406.200000px;}
.y139{bottom:408.990000px;}
.yac{bottom:409.260000px;}
.yd6{bottom:412.410000px;}
.y1c0{bottom:412.680000px;}
.y17c{bottom:413.940000px;}
.y1d{bottom:414.300000px;}
.y82{bottom:414.390000px;}
.y1a6{bottom:419.430000px;}
.y158{bottom:420.240000px;}
.y105{bottom:423.750000px;}
.y138{bottom:426.540000px;}
.yab{bottom:426.900000px;}
.yd5{bottom:430.050000px;}
.y17b{bottom:431.580000px;}
.y1c{bottom:431.940000px;}
.y1a5{bottom:436.980000px;}
.y157{bottom:437.880000px;}
.y104{bottom:441.390000px;}
.y81{bottom:441.750000px;}
.y137{bottom:444.180000px;}
.yaa{bottom:444.450000px;}
.yd4{bottom:447.600000px;}
.y17a{bottom:449.130000px;}
.y1b{bottom:449.490000px;}
.y50{bottom:453.540000px;}
.y1bf{bottom:454.620000px;}
.y103{bottom:458.940000px;}
.y1a4{bottom:461.370000px;}
.y136{bottom:461.730000px;}
.ya9{bottom:462.000000px;}
.yd3{bottom:465.150000px;}
.y179{bottom:466.770000px;}
.y1a{bottom:467.130000px;}
.y7f{bottom:469.020000px;}
.y156{bottom:470.850000px;}
.y4f{bottom:471.210000px;}
.y1be{bottom:472.200000px;}
.y102{bottom:476.610000px;}
.y1a3{bottom:478.950000px;}
.y135{bottom:479.400000px;}
.yd2{bottom:482.820000px;}
.y178{bottom:484.350000px;}
.y19{bottom:484.710000px;}
.ya8{bottom:488.670000px;}
.y4e{bottom:488.760000px;}
.y101{bottom:494.160000px;}
.y7e{bottom:496.410000px;}
.y1a2{bottom:496.500000px;}
.y134{bottom:496.950000px;}
.y155{bottom:498.210000px;}
.yd1{bottom:500.370000px;}
.y177{bottom:501.900000px;}
.y18{bottom:502.260000px;}
.y4d{bottom:506.400000px;}
.y100{bottom:511.710000px;}
.y1bd{bottom:514.140000px;}
.y133{bottom:514.500000px;}
.yd0{bottom:518.010000px;}
.y176{bottom:519.540000px;}
.y17{bottom:519.900000px;}
.y1a1{bottom:520.890000px;}
.y7d{bottom:523.770000px;}
.y4c{bottom:523.950000px;}
.ya7{bottom:524.580000px;}
.y154{bottom:525.480000px;}
.yff{bottom:529.350000px;}
.y1bc{bottom:531.690000px;}
.y132{bottom:532.140000px;}
.ycf{bottom:535.560000px;}
.y175{bottom:537.090000px;}
.y16{bottom:537.450000px;}
.y1a0{bottom:538.440000px;}
.y4b{bottom:541.500000px;}
.y131{bottom:549.690000px;}
.y7c{bottom:551.130000px;}
.y153{bottom:552.840000px;}
.yce{bottom:553.110000px;}
.y174{bottom:554.730000px;}
.y15{bottom:555.090000px;}
.y19f{bottom:556.080000px;}
.y4a{bottom:559.140000px;}
.yfe{bottom:564.900000px;}
.y130{bottom:567.330000px;}
.ycd{bottom:570.750000px;}
.y14{bottom:572.640000px;}
.ya6{bottom:572.820000px;}
.y1bb{bottom:573.630000px;}
.y49{bottom:576.690000px;}
.y7a{bottom:578.400000px;}
.y152{bottom:580.200000px;}
.y19e{bottom:580.380000px;}
.y173{bottom:581.640000px;}
.yfd{bottom:582.450000px;}
.y12f{bottom:584.880000px;}
.y13{bottom:590.190000px;}
.ya5{bottom:590.370000px;}
.y48{bottom:594.330000px;}
.ycc{bottom:597.300000px;}
.y19d{bottom:597.930000px;}
.yfc{bottom:600.090000px;}
.y12e{bottom:602.430000px;}
.y79{bottom:605.760000px;}
.y151{bottom:607.560000px;}
.y12{bottom:607.830000px;}
.ya4{bottom:608.010000px;}
.y47{bottom:611.880000px;}
.y1ba{bottom:615.570000px;}
.yfb{bottom:617.640000px;}
.y12d{bottom:620.070000px;}
.y19c{bottom:622.320000px;}
.y11{bottom:625.380000px;}
.ya3{bottom:625.560000px;}
.y46{bottom:629.430000px;}
.y172{bottom:629.880000px;}
.yc8{bottom:630.240000px;}
.y77{bottom:633.120000px;}
.y150{bottom:634.830000px;}
.yfa{bottom:635.280000px;}
.y12c{bottom:637.620000px;}
.y19b{bottom:639.870000px;}
.y10{bottom:643.020000px;}
.y45{bottom:647.070000px;}
.y171{bottom:647.430000px;}
.ya2{bottom:652.200000px;}
.y19a{bottom:657.510000px;}
.ycb{bottom:657.600000px;}
.yf{bottom:660.570000px;}
.yf9{bottom:661.830000px;}
.y14f{bottom:662.190000px;}
.y44{bottom:664.620000px;}
.y170{bottom:665.070000px;}
.y12b{bottom:673.260000px;}
.y1b9{bottom:675.060000px;}
.ye{bottom:678.120000px;}
.y76{bottom:681.810000px;}
.y43{bottom:682.260000px;}
.y16f{bottom:682.620000px;}
.yca{bottom:684.960000px;}
.ya1{bottom:687.750000px;}
.y14e{bottom:689.550000px;}
.y12a{bottom:690.810000px;}
.yf8{bottom:696.660000px;}
.y199{bottom:699.360000px;}
.y16e{bottom:700.260000px;}
.yd{bottom:705.120000px;}
.ya0{bottom:705.300000px;}
.y129{bottom:708.360000px;}
.yf4{bottom:708.900000px;}
.yc9{bottom:712.320000px;}
.y14d{bottom:716.910000px;}
.y1b8{bottom:717.000000px;}
.y75{bottom:717.360000px;}
.y42{bottom:717.810000px;}
.y9f{bottom:722.940000px;}
.y198{bottom:723.750000px;}
.y128{bottom:726.000000px;}
.y1b7{bottom:734.550000px;}
.y74{bottom:735.000000px;}
.y41{bottom:735.360000px;}
.yf7{bottom:736.170000px;}
.yc4{bottom:739.590000px;}
.y9e{bottom:740.490000px;}
.y197{bottom:741.300000px;}
.y127{bottom:743.550000px;}
.y14c{bottom:744.180000px;}
.yc{bottom:751.830000px;}
.y73{bottom:752.550000px;}
.y40{bottom:753.000000px;}
.y9d{bottom:758.130000px;}
.y196{bottom:758.940000px;}
.y126{bottom:761.190000px;}
.yf6{bottom:763.530000px;}
.yc7{bottom:766.950000px;}
.y72{bottom:770.190000px;}
.y3f{bottom:770.550000px;}
.y14b{bottom:771.540000px;}
.y9c{bottom:775.680000px;}
.y1b6{bottom:776.490000px;}
.y125{bottom:778.740000px;}
.y195{bottom:783.240000px;}
.yb{bottom:787.380000px;}
.y71{bottom:787.740000px;}
.y3e{bottom:788.190000px;}
.yf5{bottom:790.890000px;}
.y9b{bottom:793.230000px;}
.yc6{bottom:794.310000px;}
.y124{bottom:796.290000px;}
.y14a{bottom:798.900000px;}
.y194{bottom:800.790000px;}
.y70{bottom:805.290000px;}
.y3d{bottom:805.740000px;}
.y9a{bottom:810.870000px;}
.y123{bottom:813.930000px;}
.yef{bottom:818.250000px;}
.y193{bottom:818.430000px;}
.yc5{bottom:821.670000px;}
.y6f{bottom:822.930000px;}
.ya{bottom:823.200000px;}
.y3c{bottom:823.290000px;}
.y147{bottom:826.170000px;}
.y122{bottom:831.480000px;}
.y6e{bottom:840.480000px;}
.y3b{bottom:840.930000px;}
.y192{bottom:842.730000px;}
.yf3{bottom:845.520000px;}
.y99{bottom:846.420000px;}
.ybf{bottom:848.940000px;}
.y121{bottom:849.030000px;}
.y149{bottom:853.530000px;}
.y6d{bottom:858.030000px;}
.y3a{bottom:858.480000px;}
.y9{bottom:859.200000px;}
.y191{bottom:860.280000px;}
.y120{bottom:866.670000px;}
.yf2{bottom:872.880000px;}
.y39{bottom:876.030000px;}
.yc3{bottom:876.300000px;}
.y190{bottom:877.920000px;}
.y8{bottom:880.980000px;}
.y98{bottom:882.060000px;}
.y11f{bottom:884.220000px;}
.y6c{bottom:884.670000px;}
.y38{bottom:893.670000px;}
.y7{bottom:895.200000px;}
.y97{bottom:899.610000px;}
.yf1{bottom:900.240000px;}
.y11e{bottom:901.860000px;}
.y146{bottom:902.220000px;}
.yc2{bottom:903.660000px;}
.y37{bottom:911.220000px;}
.y16d{bottom:911.670000px;}
.y6{bottom:916.980000px;}
.y18f{bottom:919.860000px;}
.y6b{bottom:920.220000px;}
.y96{bottom:926.160000px;}
.ye9{bottom:927.600000px;}
.y36{bottom:928.860000px;}
.y16c{bottom:929.220000px;}
.yc1{bottom:930.930000px;}
.y11d{bottom:937.410000px;}
.y6a{bottom:937.860000px;}
.y18e{bottom:944.160000px;}
.y35{bottom:946.410000px;}
.y16b{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.yee{bottom:954.870000px;}
.y11c{bottom:954.960000px;}
.y69{bottom:955.410000px;}
.ybd{bottom:958.290000px;}
.y18d{bottom:961.710000px;}
.y95{bottom:961.800000px;}
.y34{bottom:963.960000px;}
.y16a{bottom:964.410000px;}
.y11b{bottom:972.600000px;}
.y68{bottom:972.960000px;}
.y94{bottom:979.350000px;}
.y169{bottom:981.960000px;}
.yed{bottom:982.230000px;}
.ybb{bottom:985.650000px;}
.y1b5{bottom:986.100000px;}
.y4{bottom:987.630000px;}
.y11a{bottom:990.150000px;}
.y67{bottom:990.600000px;}
.y33{bottom:999.600000px;}
.y18c{bottom:1003.650000px;}
.y119{bottom:1007.790000px;}
.y66{bottom:1008.150000px;}
.yeb{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y93{bottom:1014.930000px;}
.y32{bottom:1017.180000px;}
.y18b{bottom:1021.320000px;}
.y118{bottom:1025.370000px;}
.y65{bottom:1025.820000px;}
.y92{bottom:1033.380000px;}
.yba{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.ye8{bottom:1036.890000px;}
.y18a{bottom:1038.870000px;}
.y117{bottom:1042.920000px;}
.y64{bottom:1043.370000px;}
.y1b4{bottom:1045.620000px;}
.y91{bottom:1051.740000px;}
.y30{bottom:1052.370000px;}
.y116{bottom:1060.560000px;}
.y63{bottom:1060.920000px;}
.y189{bottom:1063.170000px;}
.ye4{bottom:1064.250000px;}
.y2f{bottom:1069.920000px;}
.y62{bottom:1078.560000px;}
.y188{bottom:1080.810000px;}
.y115{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y90{bottom:1088.190000px;}
.ye7{bottom:1091.610000px;}
.y61{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y60{bottom:1113.750000px;}
.y8f{bottom:1120.860000px;}
.y2c{bottom:1122.750000px;}
.y8e{bottom:1130.940000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h13{height:26.580000px;}
.hd{height:26.640000px;}
.he{height:26.670000px;}
.h2{height:32.566289px;}
.h6{height:35.782383px;}
.h19{height:44.190000px;}
.h3{height:44.538574px;}
.h18{height:47.389043px;}
.h7{height:50.902383px;}
.h15{height:53.910000px;}
.h1a{height:54.000000px;}
.h9{height:55.779258px;}
.h8{height:59.503535px;}
.h1b{height:61.793886px;}
.hb{height:62.585859px;}
.h5{height:65.204473px;}
.ha{height:68.582109px;}
.h11{height:76.559062px;}
.h12{height:79.079063px;}
.h4{height:83.019902px;}
.h17{height:108.540000px;}
.h16{height:108.570000px;}
.h14{height:108.630000px;}
.h10{height:116.879062px;}
.hf{height:121.919063px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:23.760000px;}
.w8{width:35.280000px;}
.w3{width:40.950000px;}
.w11{width:43.470000px;}
.w1f{width:48.060000px;}
.wa{width:51.780000px;}
.w10{width:59.040000px;}
.w1a{width:60.300000px;}
.w1e{width:62.670000px;}
.w21{width:66.420000px;}
.w1d{width:72.810000px;}
.wf{width:74.430000px;}
.wb{width:74.880000px;}
.w1b{width:77.400000px;}
.w9{width:79.380000px;}
.w1c{width:79.560000px;}
.w13{width:85.500000px;}
.w12{width:85.530000px;}
.w20{width:85.680000px;}
.we{width:93.240000px;}
.w7{width:93.330000px;}
.w6{width:101.460000px;}
.w16{width:113.760000px;}
.w15{width:127.920000px;}
.w4{width:130.320000px;}
.w17{width:131.310000px;}
.w19{width:138.780000px;}
.wc{width:159.120000px;}
.w18{width:240.960000px;}
.w5{width:331.950000px;}
.w14{width:555.870000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:3.960000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.xb{left:95.039987px;}
.x28{left:111.419987px;}
.x1a{left:126.989987px;}
.xd{left:146.790000px;}
.x1f{left:167.520000px;}
.x14{left:168.690000px;}
.x4{left:194.250000px;}
.x1b{left:197.400000px;}
.x2{left:202.799987px;}
.x21{left:228.630000px;}
.x6{left:236.010000px;}
.xe{left:248.970000px;}
.x15{left:287.310000px;}
.x22{left:306.840000px;}
.x1c{left:311.880000px;}
.xf{left:343.020000px;}
.x16{left:362.460000px;}
.x7{left:367.050000px;}
.xc{left:374.159987px;}
.x8{left:376.229987px;}
.x10{left:379.020000px;}
.x23{left:387.120000px;}
.xa{left:422.669987px;}
.x1d{left:444.000000px;}
.x9{left:448.949987px;}
.x11{left:459.210000px;}
.x24{left:460.740000px;}
.x17{left:466.500000px;}
.x12{left:511.710000px;}
.x25{left:524.130000px;}
.x18{left:552.840000px;}
.x26{left:572.910000px;}
.x13{left:587.310000px;}
.x19{left:639.060000px;}
.x27{left:659.310000px;}
.x1e{left:685.680000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.240000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:40.320000pt;}
.ls37{letter-spacing:-0.395200pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.158933pt;}
.ls2a{letter-spacing:-0.125867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls24{letter-spacing:-0.118933pt;}
.lsd{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls2b{letter-spacing:-0.090133pt;}
.ls32{letter-spacing:-0.085867pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls2c{letter-spacing:-0.043520pt;}
.ls31{letter-spacing:-0.040320pt;}
.ls22{letter-spacing:-0.011840pt;}
.ls23{letter-spacing:-0.004160pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.004800pt;}
.ls4{letter-spacing:0.013120pt;}
.ls25{letter-spacing:0.020480pt;}
.ls2e{letter-spacing:0.037120pt;}
.ls21{letter-spacing:0.037760pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.053760pt;}
.ls15{letter-spacing:0.053867pt;}
.ls1b{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls26{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087360pt;}
.ls35{letter-spacing:0.087467pt;}
.ls29{letter-spacing:0.091733pt;}
.ls27{letter-spacing:0.096533pt;}
.ls20{letter-spacing:0.100800pt;}
.ls19{letter-spacing:0.103467pt;}
.ls30{letter-spacing:0.105067pt;}
.ls14{letter-spacing:0.113067pt;}
.ls2d{letter-spacing:0.119040pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.139520pt;}
.ls1d{letter-spacing:0.147200pt;}
.ls28{letter-spacing:0.151467pt;}
.ls11{letter-spacing:0.154133pt;}
.ls18{letter-spacing:0.154240pt;}
.ls13{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.161067pt;}
.ls1f{letter-spacing:0.179200pt;}
.ls0{letter-spacing:0.320000pt;}
.ls33{letter-spacing:2.109867pt;}
.ls1a{letter-spacing:32.400320pt;}
.ls36{letter-spacing:43.063680pt;}
.ls1c{letter-spacing:56.503680pt;}
.ls34{letter-spacing:72.503680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws1f{word-spacing:-11.917867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws1a{word-spacing:-11.908267pt;}
.wse{word-spacing:-11.869867pt;}
.ws20{word-spacing:-11.861867pt;}
.wsf{word-spacing:-11.860267pt;}
.ws18{word-spacing:-11.853333pt;}
.ws1b{word-spacing:-11.848533pt;}
.ws22{word-spacing:-11.844267pt;}
.ws19{word-spacing:-11.822933pt;}
.ws13{word-spacing:-11.814400pt;}
.wsc{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.752640pt;}
.ws12{word-spacing:-11.744960pt;}
.ws21{word-spacing:-11.716480pt;}
.ws1e{word-spacing:-11.713280pt;}
.wsa{word-spacing:-11.681600pt;}
.ws1d{word-spacing:-11.666667pt;}
.ws7{word-spacing:-11.645333pt;}
.ws17{word-spacing:-11.637867pt;}
.ws16{word-spacing:-11.636800pt;}
.ws1c{word-spacing:-11.630933pt;}
.wsd{word-spacing:-11.597867pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws10{word-spacing:-7.657067pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
.ws11{word-spacing:4.608000pt;}
.ws14{word-spacing:5.323200pt;}
._b{margin-left:-3.312852pt;}
._7{margin-left:-2.351467pt;}
._3{margin-left:-1.091200pt;}
._0{width:1.722560pt;}
._1{width:3.269120pt;}
._2{width:4.885333pt;}
._5{width:6.519466pt;}
._6{width:7.482669pt;}
._8{width:8.549545pt;}
._a{width:10.153600pt;}
._4{width:12.875520pt;}
._14{width:13.888960pt;}
._c{width:14.800320pt;}
._d{width:16.364800pt;}
._9{width:17.955840pt;}
._f{width:19.679680pt;}
._e{width:20.681280pt;}
._10{width:23.086080pt;}
._11{width:24.422080pt;}
._13{width:26.452800pt;}
._24{width:31.734720pt;}
._23{width:32.651840pt;}
._17{width:42.003840pt;}
._1c{width:49.111360pt;}
._18{width:53.760640pt;}
._16{width:61.019840pt;}
._15{width:61.936960pt;}
._1d{width:67.761920pt;}
._1e{width:68.884160pt;}
._1a{width:79.304960pt;}
._19{width:80.213440pt;}
._1b{width:86.733120pt;}
._12{width:97.848640pt;}
._22{width:118.605760pt;}
._21{width:119.705600pt;}
._20{width:147.975360pt;}
._1f{width:177.641067pt;}
.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;}
.y78{bottom:6.960000pt;}
.yec{bottom:6.986667pt;}
.y7b{bottom:7.040000pt;}
.y80{bottom:7.066667pt;}
.y13d{bottom:22.640000pt;}
.ybc{bottom:23.626667pt;}
.ybe{bottom:23.680000pt;}
.ye6{bottom:31.280000pt;}
.y148{bottom:31.360000pt;}
.y142{bottom:40.640000pt;}
.ye5{bottom:47.920000pt;}
.y141{bottom:60.240000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.yf0{bottom:79.840000pt;}
.yea{bottom:79.866667pt;}
.yc0{bottom:79.920000pt;}
.y1{bottom:90.346667pt;}
.y5f{bottom:101.146667pt;}
.y1c9{bottom:102.346667pt;}
.y187{bottom:107.386667pt;}
.y168{bottom:107.466667pt;}
.y114{bottom:110.186667pt;}
.yb9{bottom:112.586667pt;}
.y145{bottom:115.226667pt;}
.y1c8{bottom:117.946667pt;}
.y186{bottom:122.986667pt;}
.y167{bottom:123.066667pt;}
.y113{bottom:125.866667pt;}
.y28{bottom:127.226667pt;}
.yb8{bottom:128.186667pt;}
.y5e{bottom:132.746667pt;}
.y185{bottom:138.586667pt;}
.y166{bottom:138.746667pt;}
.ye3{bottom:139.386667pt;}
.y1b3{bottom:139.626667pt;}
.y8d{bottom:141.386667pt;}
.y112{bottom:141.466667pt;}
.y27{bottom:142.826667pt;}
.yb7{bottom:143.866667pt;}
.y144{bottom:146.826667pt;}
.y5d{bottom:148.426667pt;}
.y165{bottom:154.346667pt;}
.ye2{bottom:154.986667pt;}
.y1b2{bottom:155.226667pt;}
.y8c{bottom:156.986667pt;}
.y111{bottom:157.146667pt;}
.yb6{bottom:159.466667pt;}
.y140{bottom:160.186667pt;}
.y184{bottom:162.506667pt;}
.y5c{bottom:164.026667pt;}
.y164{bottom:170.026667pt;}
.ye1{bottom:170.666667pt;}
.y1c7{bottom:170.826667pt;}
.y110{bottom:172.746667pt;}
.y26{bottom:174.506667pt;}
.y1b1{bottom:176.826667pt;}
.y5b{bottom:179.706667pt;}
.y8b{bottom:180.666667pt;}
.yb5{bottom:183.146667pt;}
.y143{bottom:184.506667pt;}
.ye0{bottom:186.266667pt;}
.y10f{bottom:188.346667pt;}
.y25{bottom:190.106667pt;}
.y1b0{bottom:192.506667pt;}
.y5a{bottom:195.306667pt;}
.y163{bottom:201.626667pt;}
.ydf{bottom:201.946667pt;}
.y183{bottom:205.466667pt;}
.y24{bottom:205.786667pt;}
.y1c6{bottom:208.106667pt;}
.y13e{bottom:208.746667pt;}
.y59{bottom:210.906667pt;}
.y8a{bottom:212.266667pt;}
.y1af{bottom:214.106667pt;}
.yb4{bottom:214.746667pt;}
.y162{bottom:217.226667pt;}
.yde{bottom:217.546667pt;}
.y10e{bottom:220.026667pt;}
.y23{bottom:221.386667pt;}
.y1c5{bottom:223.786667pt;}
.y58{bottom:226.586667pt;}
.y89{bottom:227.946667pt;}
.y182{bottom:229.386667pt;}
.y1ae{bottom:229.786667pt;}
.yb3{bottom:230.346667pt;}
.y161{bottom:232.906667pt;}
.y13f{bottom:233.066667pt;}
.ydd{bottom:233.146667pt;}
.y10d{bottom:235.626667pt;}
.y22{bottom:236.986667pt;}
.y57{bottom:242.186667pt;}
.y88{bottom:243.546667pt;}
.y1ad{bottom:245.386667pt;}
.yb2{bottom:246.026667pt;}
.y160{bottom:248.506667pt;}
.ydc{bottom:248.826667pt;}
.y10c{bottom:251.306667pt;}
.y21{bottom:252.666667pt;}
.y13c{bottom:257.386667pt;}
.y56{bottom:257.866667pt;}
.y87{bottom:259.146667pt;}
.y1c4{bottom:260.986667pt;}
.yb1{bottom:261.626667pt;}
.y181{bottom:262.586667pt;}
.y15f{bottom:264.106667pt;}
.ydb{bottom:264.426667pt;}
.y10b{bottom:266.906667pt;}
.y1ac{bottom:266.986667pt;}
.y20{bottom:268.266667pt;}
.y55{bottom:273.466667pt;}
.y86{bottom:274.826667pt;}
.yb0{bottom:277.306667pt;}
.y15e{bottom:279.786667pt;}
.yda{bottom:280.106667pt;}
.y10a{bottom:282.506667pt;}
.y1ab{bottom:282.666667pt;}
.y54{bottom:289.066667pt;}
.y85{bottom:290.426667pt;}
.y1f{bottom:292.186667pt;}
.yaf{bottom:292.906667pt;}
.y15d{bottom:295.386667pt;}
.yd9{bottom:295.706667pt;}
.y109{bottom:298.186667pt;}
.y1c3{bottom:298.266667pt;}
.y1aa{bottom:304.266667pt;}
.y53{bottom:304.746667pt;}
.y180{bottom:305.466667pt;}
.yae{bottom:308.506667pt;}
.y15c{bottom:311.066667pt;}
.y108{bottom:313.786667pt;}
.y1c2{bottom:313.946667pt;}
.y13b{bottom:316.266667pt;}
.yd8{bottom:319.306667pt;}
.y84{bottom:319.786667pt;}
.y1a9{bottom:319.946667pt;}
.y17f{bottom:321.066667pt;}
.y15b{bottom:326.666667pt;}
.y52{bottom:328.346667pt;}
.yad{bottom:332.186667pt;}
.y1e{bottom:335.386667pt;}
.y1a8{bottom:335.546667pt;}
.y17e{bottom:336.746667pt;}
.y15a{bottom:342.266667pt;}
.y83{bottom:344.026667pt;}
.y107{bottom:345.466667pt;}
.y13a{bottom:347.946667pt;}
.yd7{bottom:350.986667pt;}
.y1c1{bottom:351.146667pt;}
.y17d{bottom:352.346667pt;}
.y1a7{bottom:357.146667pt;}
.y159{bottom:357.946667pt;}
.y51{bottom:360.266667pt;}
.y106{bottom:361.066667pt;}
.y139{bottom:363.546667pt;}
.yac{bottom:363.786667pt;}
.yd6{bottom:366.586667pt;}
.y1c0{bottom:366.826667pt;}
.y17c{bottom:367.946667pt;}
.y1d{bottom:368.266667pt;}
.y82{bottom:368.346667pt;}
.y1a6{bottom:372.826667pt;}
.y158{bottom:373.546667pt;}
.y105{bottom:376.666667pt;}
.y138{bottom:379.146667pt;}
.yab{bottom:379.466667pt;}
.yd5{bottom:382.266667pt;}
.y17b{bottom:383.626667pt;}
.y1c{bottom:383.946667pt;}
.y1a5{bottom:388.426667pt;}
.y157{bottom:389.226667pt;}
.y104{bottom:392.346667pt;}
.y81{bottom:392.666667pt;}
.y137{bottom:394.826667pt;}
.yaa{bottom:395.066667pt;}
.yd4{bottom:397.866667pt;}
.y17a{bottom:399.226667pt;}
.y1b{bottom:399.546667pt;}
.y50{bottom:403.146667pt;}
.y1bf{bottom:404.106667pt;}
.y103{bottom:407.946667pt;}
.y1a4{bottom:410.106667pt;}
.y136{bottom:410.426667pt;}
.ya9{bottom:410.666667pt;}
.yd3{bottom:413.466667pt;}
.y179{bottom:414.906667pt;}
.y1a{bottom:415.226667pt;}
.y7f{bottom:416.906667pt;}
.y156{bottom:418.533333pt;}
.y4f{bottom:418.853333pt;}
.y1be{bottom:419.733333pt;}
.y102{bottom:423.653333pt;}
.y1a3{bottom:425.733333pt;}
.y135{bottom:426.133333pt;}
.yd2{bottom:429.173333pt;}
.y178{bottom:430.533333pt;}
.y19{bottom:430.853333pt;}
.ya8{bottom:434.373333pt;}
.y4e{bottom:434.453333pt;}
.y101{bottom:439.253333pt;}
.y7e{bottom:441.253333pt;}
.y1a2{bottom:441.333333pt;}
.y134{bottom:441.733333pt;}
.y155{bottom:442.853333pt;}
.yd1{bottom:444.773333pt;}
.y177{bottom:446.133333pt;}
.y18{bottom:446.453333pt;}
.y4d{bottom:450.133333pt;}
.y100{bottom:454.853333pt;}
.y1bd{bottom:457.013333pt;}
.y133{bottom:457.333333pt;}
.yd0{bottom:460.453333pt;}
.y176{bottom:461.813333pt;}
.y17{bottom:462.133333pt;}
.y1a1{bottom:463.013333pt;}
.y7d{bottom:465.573333pt;}
.y4c{bottom:465.733333pt;}
.ya7{bottom:466.293333pt;}
.y154{bottom:467.093333pt;}
.yff{bottom:470.533333pt;}
.y1bc{bottom:472.613333pt;}
.y132{bottom:473.013333pt;}
.ycf{bottom:476.053333pt;}
.y175{bottom:477.413333pt;}
.y16{bottom:477.733333pt;}
.y1a0{bottom:478.613333pt;}
.y4b{bottom:481.333333pt;}
.y131{bottom:488.613333pt;}
.y7c{bottom:489.893333pt;}
.y153{bottom:491.413333pt;}
.yce{bottom:491.653333pt;}
.y174{bottom:493.093333pt;}
.y15{bottom:493.413333pt;}
.y19f{bottom:494.293333pt;}
.y4a{bottom:497.013333pt;}
.yfe{bottom:502.133333pt;}
.y130{bottom:504.293333pt;}
.ycd{bottom:507.333333pt;}
.y14{bottom:509.013333pt;}
.ya6{bottom:509.173333pt;}
.y1bb{bottom:509.893333pt;}
.y49{bottom:512.613333pt;}
.y7a{bottom:514.133333pt;}
.y152{bottom:515.733333pt;}
.y19e{bottom:515.893333pt;}
.y173{bottom:517.013333pt;}
.yfd{bottom:517.733333pt;}
.y12f{bottom:519.893333pt;}
.y13{bottom:524.613333pt;}
.ya5{bottom:524.773333pt;}
.y48{bottom:528.293333pt;}
.ycc{bottom:530.933333pt;}
.y19d{bottom:531.493333pt;}
.yfc{bottom:533.413333pt;}
.y12e{bottom:535.493333pt;}
.y79{bottom:538.453333pt;}
.y151{bottom:540.053333pt;}
.y12{bottom:540.293333pt;}
.ya4{bottom:540.453333pt;}
.y47{bottom:543.893333pt;}
.y1ba{bottom:547.173333pt;}
.yfb{bottom:549.013333pt;}
.y12d{bottom:551.173333pt;}
.y19c{bottom:553.173333pt;}
.y11{bottom:555.893333pt;}
.ya3{bottom:556.053333pt;}
.y46{bottom:559.493333pt;}
.y172{bottom:559.893333pt;}
.yc8{bottom:560.213333pt;}
.y77{bottom:562.773333pt;}
.y150{bottom:564.293333pt;}
.yfa{bottom:564.693333pt;}
.y12c{bottom:566.773333pt;}
.y19b{bottom:568.773333pt;}
.y10{bottom:571.573333pt;}
.y45{bottom:575.173333pt;}
.y171{bottom:575.493333pt;}
.ya2{bottom:579.733333pt;}
.y19a{bottom:584.453333pt;}
.ycb{bottom:584.533333pt;}
.yf{bottom:587.173333pt;}
.yf9{bottom:588.293333pt;}
.y14f{bottom:588.613333pt;}
.y44{bottom:590.773333pt;}
.y170{bottom:591.173333pt;}
.y12b{bottom:598.453333pt;}
.y1b9{bottom:600.053333pt;}
.ye{bottom:602.773333pt;}
.y76{bottom:606.053333pt;}
.y43{bottom:606.453333pt;}
.y16f{bottom:606.773333pt;}
.yca{bottom:608.853333pt;}
.ya1{bottom:611.333333pt;}
.y14e{bottom:612.933333pt;}
.y12a{bottom:614.053333pt;}
.yf8{bottom:619.253333pt;}
.y199{bottom:621.653333pt;}
.y16e{bottom:622.453333pt;}
.yd{bottom:626.773333pt;}
.ya0{bottom:626.933333pt;}
.y129{bottom:629.653333pt;}
.yf4{bottom:630.133333pt;}
.yc9{bottom:633.173333pt;}
.y14d{bottom:637.253333pt;}
.y1b8{bottom:637.333333pt;}
.y75{bottom:637.653333pt;}
.y42{bottom:638.053333pt;}
.y9f{bottom:642.613333pt;}
.y198{bottom:643.333333pt;}
.y128{bottom:645.333333pt;}
.y1b7{bottom:652.933333pt;}
.y74{bottom:653.333333pt;}
.y41{bottom:653.653333pt;}
.yf7{bottom:654.373333pt;}
.yc4{bottom:657.413333pt;}
.y9e{bottom:658.213333pt;}
.y197{bottom:658.933333pt;}
.y127{bottom:660.933333pt;}
.y14c{bottom:661.493333pt;}
.yc{bottom:668.293333pt;}
.y73{bottom:668.933333pt;}
.y40{bottom:669.333333pt;}
.y9d{bottom:673.893333pt;}
.y196{bottom:674.613333pt;}
.y126{bottom:676.613333pt;}
.yf6{bottom:678.693333pt;}
.yc7{bottom:681.733333pt;}
.y72{bottom:684.613333pt;}
.y3f{bottom:684.933333pt;}
.y14b{bottom:685.813333pt;}
.y9c{bottom:689.493333pt;}
.y1b6{bottom:690.213333pt;}
.y125{bottom:692.213333pt;}
.y195{bottom:696.213333pt;}
.yb{bottom:699.893333pt;}
.y71{bottom:700.213333pt;}
.y3e{bottom:700.613333pt;}
.yf5{bottom:703.013333pt;}
.y9b{bottom:705.093333pt;}
.yc6{bottom:706.053333pt;}
.y124{bottom:707.813333pt;}
.y14a{bottom:710.133333pt;}
.y194{bottom:711.813333pt;}
.y70{bottom:715.813333pt;}
.y3d{bottom:716.213333pt;}
.y9a{bottom:720.773333pt;}
.y123{bottom:723.493333pt;}
.yef{bottom:727.333333pt;}
.y193{bottom:727.493333pt;}
.yc5{bottom:730.373333pt;}
.y6f{bottom:731.493333pt;}
.ya{bottom:731.733333pt;}
.y3c{bottom:731.813333pt;}
.y147{bottom:734.373333pt;}
.y122{bottom:739.093333pt;}
.y6e{bottom:747.093333pt;}
.y3b{bottom:747.493333pt;}
.y192{bottom:749.093333pt;}
.yf3{bottom:751.573333pt;}
.y99{bottom:752.373333pt;}
.ybf{bottom:754.613333pt;}
.y121{bottom:754.693333pt;}
.y149{bottom:758.693333pt;}
.y6d{bottom:762.693333pt;}
.y3a{bottom:763.093333pt;}
.y9{bottom:763.733333pt;}
.y191{bottom:764.693333pt;}
.y120{bottom:770.373333pt;}
.yf2{bottom:775.893333pt;}
.y39{bottom:778.693333pt;}
.yc3{bottom:778.933333pt;}
.y190{bottom:780.373333pt;}
.y8{bottom:783.093333pt;}
.y98{bottom:784.053333pt;}
.y11f{bottom:785.973333pt;}
.y6c{bottom:786.373333pt;}
.y38{bottom:794.373333pt;}
.y7{bottom:795.733333pt;}
.y97{bottom:799.653333pt;}
.yf1{bottom:800.213333pt;}
.y11e{bottom:801.653333pt;}
.y146{bottom:801.973333pt;}
.yc2{bottom:803.253333pt;}
.y37{bottom:809.973333pt;}
.y16d{bottom:810.373333pt;}
.y6{bottom:815.093333pt;}
.y18f{bottom:817.653333pt;}
.y6b{bottom:817.973333pt;}
.y96{bottom:823.253333pt;}
.ye9{bottom:824.533333pt;}
.y36{bottom:825.653333pt;}
.y16c{bottom:825.973333pt;}
.yc1{bottom:827.493333pt;}
.y11d{bottom:833.253333pt;}
.y6a{bottom:833.653333pt;}
.y18e{bottom:839.253333pt;}
.y35{bottom:841.253333pt;}
.y16b{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.yee{bottom:848.773333pt;}
.y11c{bottom:848.853333pt;}
.y69{bottom:849.253333pt;}
.ybd{bottom:851.813333pt;}
.y18d{bottom:854.853333pt;}
.y95{bottom:854.933333pt;}
.y34{bottom:856.853333pt;}
.y16a{bottom:857.253333pt;}
.y11b{bottom:864.533333pt;}
.y68{bottom:864.853333pt;}
.y94{bottom:870.533333pt;}
.y169{bottom:872.853333pt;}
.yed{bottom:873.093333pt;}
.ybb{bottom:876.133333pt;}
.y1b5{bottom:876.533333pt;}
.y4{bottom:877.893333pt;}
.y11a{bottom:880.133333pt;}
.y67{bottom:880.533333pt;}
.y33{bottom:888.533333pt;}
.y18c{bottom:892.133333pt;}
.y119{bottom:895.813333pt;}
.y66{bottom:896.133333pt;}
.yeb{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y93{bottom:902.160000pt;}
.y32{bottom:904.160000pt;}
.y18b{bottom:907.840000pt;}
.y118{bottom:911.440000pt;}
.y65{bottom:911.840000pt;}
.y92{bottom:918.560000pt;}
.yba{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.ye8{bottom:921.680000pt;}
.y18a{bottom:923.440000pt;}
.y117{bottom:927.040000pt;}
.y64{bottom:927.440000pt;}
.y1b4{bottom:929.440000pt;}
.y91{bottom:934.880000pt;}
.y30{bottom:935.440000pt;}
.y116{bottom:942.720000pt;}
.y63{bottom:943.040000pt;}
.y189{bottom:945.040000pt;}
.ye4{bottom:946.000000pt;}
.y2f{bottom:951.040000pt;}
.y62{bottom:958.720000pt;}
.y188{bottom:960.720000pt;}
.y115{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y90{bottom:967.280000pt;}
.ye7{bottom:970.320000pt;}
.y61{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y60{bottom:990.000000pt;}
.y8f{bottom:996.320000pt;}
.y2c{bottom:998.000000pt;}
.y8e{bottom:1005.280000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h13{height:23.626667pt;}
.hd{height:23.680000pt;}
.he{height:23.706667pt;}
.h2{height:28.947812pt;}
.h6{height:31.806563pt;}
.h19{height:39.280000pt;}
.h3{height:39.589844pt;}
.h18{height:42.123594pt;}
.h7{height:45.246562pt;}
.h15{height:47.920000pt;}
.h1a{height:48.000000pt;}
.h9{height:49.581562pt;}
.h8{height:52.892031pt;}
.h1b{height:54.927899pt;}
.hb{height:55.631875pt;}
.h5{height:57.959531pt;}
.ha{height:60.961875pt;}
.h11{height:68.052500pt;}
.h12{height:70.292500pt;}
.h4{height:73.795469pt;}
.h17{height:96.480000pt;}
.h16{height:96.506667pt;}
.h14{height:96.560000pt;}
.h10{height:103.892500pt;}
.hf{height:108.372500pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:21.120000pt;}
.w8{width:31.360000pt;}
.w3{width:36.400000pt;}
.w11{width:38.640000pt;}
.w1f{width:42.720000pt;}
.wa{width:46.026667pt;}
.w10{width:52.480000pt;}
.w1a{width:53.600000pt;}
.w1e{width:55.706667pt;}
.w21{width:59.040000pt;}
.w1d{width:64.720000pt;}
.wf{width:66.160000pt;}
.wb{width:66.560000pt;}
.w1b{width:68.800000pt;}
.w9{width:70.560000pt;}
.w1c{width:70.720000pt;}
.w13{width:76.000000pt;}
.w12{width:76.026667pt;}
.w20{width:76.160000pt;}
.we{width:82.880000pt;}
.w7{width:82.960000pt;}
.w6{width:90.186667pt;}
.w16{width:101.120000pt;}
.w15{width:113.706667pt;}
.w4{width:115.840000pt;}
.w17{width:116.720000pt;}
.w19{width:123.360000pt;}
.wc{width:141.440000pt;}
.w18{width:214.186667pt;}
.w5{width:295.066667pt;}
.w14{width:494.106667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:3.520000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.xb{left:84.479988pt;}
.x28{left:99.039988pt;}
.x1a{left:112.879988pt;}
.xd{left:130.480000pt;}
.x1f{left:148.906667pt;}
.x14{left:149.946667pt;}
.x4{left:172.666667pt;}
.x1b{left:175.466667pt;}
.x2{left:180.266655pt;}
.x21{left:203.226667pt;}
.x6{left:209.786667pt;}
.xe{left:221.306667pt;}
.x15{left:255.386667pt;}
.x22{left:272.746667pt;}
.x1c{left:277.226667pt;}
.xf{left:304.906667pt;}
.x16{left:322.186667pt;}
.x7{left:326.266667pt;}
.xc{left:332.586655pt;}
.x8{left:334.426655pt;}
.x10{left:336.906667pt;}
.x23{left:344.106667pt;}
.xa{left:375.706655pt;}
.x1d{left:394.666667pt;}
.x9{left:399.066655pt;}
.x11{left:408.186667pt;}
.x24{left:409.546667pt;}
.x17{left:414.666667pt;}
.x12{left:454.853333pt;}
.x25{left:465.893333pt;}
.x18{left:491.413333pt;}
.x26{left:509.253333pt;}
.x13{left:522.053333pt;}
.x19{left:568.053333pt;}
.x27{left:586.053333pt;}
.x1e{left:609.493333pt;}
.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; }
  