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



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

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_661f397b853e4643a0578153.woff2')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_8352568b34392e8b2ecb2be3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_52f956fb21c4352328fb77f7.woff2')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_b1a5941c17ecaad2869c4326.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5de177fca35a9f77a4c12c77.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6e0e7d91df1f6a69af87de22.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_82c4f8cb9a93b313edb12e0b.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls21{letter-spacing:-0.285600px;}
.ls18{letter-spacing:-0.232800px;}
.ls10{letter-spacing:-0.186600px;}
.ls1d{letter-spacing:-0.162000px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.038880px;}
.ls1a{letter-spacing:-0.015480px;}
.ls15{letter-spacing:-0.011160px;}
.ls1f{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.051840px;}
.ls20{letter-spacing:0.060600px;}
.ls11{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1e{letter-spacing:0.103200px;}
.ls3{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.111000px;}
.ls1c{letter-spacing:0.118200px;}
.ls6{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.160800px;}
.lsf{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.374760px;}
.ls9{letter-spacing:0.441600px;}
.ls23{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls22{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;}
}
.ws2{word-spacing:-18.895200px;}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.387200px;}
.ws13{word-spacing:-13.344600px;}
.ws12{word-spacing:-13.337400px;}
.ws15{word-spacing:-13.329600px;}
.ws17{word-spacing:-13.287000px;}
.wsb{word-spacing:-13.278240px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws16{word-spacing:-13.218840px;}
.wsd{word-spacing:-13.215240px;}
.ws11{word-spacing:-13.210920px;}
.wsc{word-spacing:-13.187520px;}
.ws14{word-spacing:-13.064400px;}
.ws8{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.993600px;}
.ws18{word-spacing:-12.940800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._a{margin-left:-3.586897px;}
._9{margin-left:-2.404800px;}
._1{margin-left:-1.081692px;}
._4{width:1.142400px;}
._0{width:2.171880px;}
._2{width:3.907800px;}
._3{width:5.258783px;}
._7{width:6.553200px;}
._8{width:7.574399px;}
._c{width:8.597400px;}
._5{width:9.859800px;}
._6{width:11.482800px;}
._10{width:14.242080px;}
._b{width:15.631200px;}
._19{width:16.773012px;}
._e{width:17.855640px;}
._f{width:18.877212px;}
._d{width:20.861400px;}
._16{width:24.408720px;}
._12{width:26.117640px;}
._11{width:35.711280px;}
._18{width:37.214280px;}
._15{width:50.320440px;}
._1b{width:57.835440px;}
._17{width:65.891520px;}
._14{width:68.596452px;}
._13{width:69.618960px;}
._1a{width:70.761240px;}
._1c{width:75.089880px;}
._1f{width:76.472640px;}
._1e{width:85.429115px;}
._1d{width:86.572800px;}
.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;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y74{bottom:7.830000px;}
.y13c{bottom:7.860000px;}
.y93{bottom:7.920000px;}
.yf1{bottom:7.950000px;}
.ya6{bottom:17.550000px;}
.yd6{bottom:24.210000px;}
.y89{bottom:25.380000px;}
.y79{bottom:25.470000px;}
.y9b{bottom:25.500000px;}
.ya5{bottom:35.190000px;}
.y15e{bottom:35.220000px;}
.y82{bottom:36.720000px;}
.y92{bottom:43.020000px;}
.y9d{bottom:43.110000px;}
.yd5{bottom:46.260000px;}
.ycf{bottom:48.870000px;}
.ydb{bottom:51.570000px;}
.y81{bottom:58.770000px;}
.y2{bottom:73.380000px;}
.yda{bottom:73.620000px;}
.y28{bottom:74.190000px;}
.y7a{bottom:75.630000px;}
.y80{bottom:76.320000px;}
.y77{bottom:80.130000px;}
.y95{bottom:88.740000px;}
.y90{bottom:93.240000px;}
.y76{bottom:97.770000px;}
.y7f{bottom:98.460000px;}
.y1{bottom:101.640000px;}
.ya2{bottom:102.960000px;}
.yfe{bottom:109.560000px;}
.y94{bottom:110.790000px;}
.ya0{bottom:111.090000px;}
.y8f{bottom:115.290000px;}
.y16c{bottom:116.310000px;}
.y7e{bottom:120.510000px;}
.y8a{bottom:125.010000px;}
.ya1{bottom:125.100000px;}
.y55{bottom:128.460000px;}
.yce{bottom:131.520000px;}
.y124{bottom:131.880000px;}
.y8e{bottom:132.840000px;}
.yfd{bottom:136.920000px;}
.y18e{bottom:137.820000px;}
.y72{bottom:138.360000px;}
.y1b6{bottom:141.150000px;}
.y87{bottom:142.560000px;}
.y7d{bottom:142.650000px;}
.y16b{bottom:148.440000px;}
.y123{bottom:149.430000px;}
.y18d{bottom:155.460000px;}
.y71{bottom:155.910000px;}
.ya7{bottom:156.000000px;}
.y1b5{bottom:158.700000px;}
.yd2{bottom:158.880000px;}
.y1e0{bottom:160.140000px;}
.y26{bottom:161.580000px;}
.y54{bottom:164.100000px;}
.yfc{bottom:164.190000px;}
.y122{bottom:167.070000px;}
.y18c{bottom:173.010000px;}
.y70{bottom:173.550000px;}
.y1b4{bottom:176.250000px;}
.y1df{bottom:177.690000px;}
.y25{bottom:179.130000px;}
.y16a{bottom:180.480000px;}
.y53{bottom:181.650000px;}
.y121{bottom:184.620000px;}
.yd1{bottom:186.240000px;}
.y148{bottom:186.690000px;}
.y18b{bottom:190.650000px;}
.y6f{bottom:191.100000px;}
.yfb{bottom:191.550000px;}
.y168{bottom:192.630000px;}
.y24{bottom:196.680000px;}
.y99{bottom:200.610000px;}
.ya4{bottom:201.000000px;}
.y120{bottom:202.170000px;}
.y1b3{bottom:203.160000px;}
.y147{bottom:204.240000px;}
.y1de{bottom:204.330000px;}
.y6e{bottom:208.740000px;}
.yd0{bottom:213.510000px;}
.y23{bottom:214.320000px;}
.y52{bottom:217.200000px;}
.yfa{bottom:218.910000px;}
.y169{bottom:219.990000px;}
.y1dd{bottom:221.880000px;}
.y98{bottom:222.780000px;}
.y18a{bottom:226.200000px;}
.ya3{bottom:228.270000px;}
.y22{bottom:231.870000px;}
.y51{bottom:234.840000px;}
.y6d{bottom:235.290000px;}
.y11f{bottom:237.810000px;}
.y146{bottom:239.880000px;}
.y1b2{bottom:240.510000px;}
.ycd{bottom:240.870000px;}
.y189{bottom:243.750000px;}
.yf9{bottom:246.270000px;}
.y166{bottom:247.350000px;}
.y1dc{bottom:248.430000px;}
.y50{bottom:252.390000px;}
.y11e{bottom:255.360000px;}
.y97{bottom:255.630000px;}
.y145{bottom:257.430000px;}
.y188{bottom:261.390000px;}
.y1db{bottom:266.070000px;}
.y21{bottom:267.510000px;}
.y4f{bottom:269.940000px;}
.y6c{bottom:270.840000px;}
.y11d{bottom:272.910000px;}
.yf8{bottom:273.540000px;}
.y167{bottom:274.620000px;}
.y144{bottom:274.980000px;}
.y187{bottom:278.940000px;}
.y20{bottom:285.060000px;}
.y1b1{bottom:288.840000px;}
.y6b{bottom:289.290000px;}
.ycc{bottom:289.560000px;}
.y143{bottom:292.620000px;}
.y186{bottom:296.580000px;}
.y9f{bottom:300.540000px;}
.yf7{bottom:300.900000px;}
.y164{bottom:301.980000px;}
.y1f{bottom:302.610000px;}
.y4e{bottom:305.580000px;}
.y1b0{bottom:306.390000px;}
.y6a{bottom:307.650000px;}
.y11c{bottom:307.830000px;}
.y1da{bottom:310.260000px;}
.y185{bottom:314.130000px;}
.y119{bottom:319.980000px;}
.y1e{bottom:320.250000px;}
.y4d{bottom:323.130000px;}
.y1af{bottom:323.940000px;}
.ycb{bottom:325.200000px;}
.y69{bottom:326.100000px;}
.y142{bottom:328.170000px;}
.yf6{bottom:328.260000px;}
.y165{bottom:329.340000px;}
.y1d9{bottom:336.810000px;}
.y1d{bottom:337.800000px;}
.y4c{bottom:340.770000px;}
.y1ae{bottom:341.580000px;}
.yca{bottom:342.750000px;}
.y68{bottom:344.460000px;}
.y9e{bottom:345.450000px;}
.y141{bottom:345.810000px;}
.y11b{bottom:347.340000px;}
.y184{bottom:349.680000px;}
.y1d8{bottom:354.360000px;}
.y1c{bottom:355.440000px;}
.yf5{bottom:355.620000px;}
.y162{bottom:356.700000px;}
.y4b{bottom:358.320000px;}
.y140{bottom:363.360000px;}
.y11a{bottom:374.700000px;}
.y1ad{bottom:377.130000px;}
.yc9{bottom:378.300000px;}
.y67{bottom:380.910000px;}
.y1d7{bottom:381.000000px;}
.yf4{bottom:382.890000px;}
.y163{bottom:383.970000px;}
.y4a{bottom:384.870000px;}
.y183{bottom:385.320000px;}
.y13f{bottom:389.910000px;}
.y9c{bottom:390.360000px;}
.y1b{bottom:390.990000px;}
.y1ac{bottom:394.770000px;}
.yc8{bottom:395.940000px;}
.y1d6{bottom:398.550000px;}
.y118{bottom:401.970000px;}
.y182{bottom:402.870000px;}
.y66{bottom:407.550000px;}
.y1a{bottom:408.540000px;}
.yf3{bottom:410.250000px;}
.y160{bottom:411.330000px;}
.y1ab{bottom:412.320000px;}
.yc7{bottom:413.490000px;}
.y1d5{bottom:416.190000px;}
.y49{bottom:420.510000px;}
.y13e{bottom:424.830000px;}
.y19{bottom:426.180000px;}
.y1aa{bottom:429.870000px;}
.yc6{bottom:431.130000px;}
.y13d{bottom:436.980000px;}
.yf2{bottom:437.610000px;}
.y48{bottom:438.060000px;}
.y161{bottom:438.690000px;}
.y1d4{bottom:442.740000px;}
.y65{bottom:443.100000px;}
.y18{bottom:443.730000px;}
.y117{bottom:450.660000px;}
.y9a{bottom:452.910000px;}
.y181{bottom:455.340000px;}
.y47{bottom:455.700000px;}
.y1d3{bottom:460.290000px;}
.y17{bottom:461.280000px;}
.y13b{bottom:464.340000px;}
.yf0{bottom:464.880000px;}
.y1a9{bottom:465.510000px;}
.y15d{bottom:466.050000px;}
.yc5{bottom:466.680000px;}
.y180{bottom:467.490000px;}
.y64{bottom:475.350000px;}
.y16{bottom:478.950000px;}
.y1a8{bottom:483.090000px;}
.yc4{bottom:484.260000px;}
.y116{bottom:486.330000px;}
.y1d2{bottom:486.960000px;}
.y46{bottom:491.280000px;}
.y13a{bottom:491.730000px;}
.yef{bottom:492.270000px;}
.y15f{bottom:493.350000px;}
.y17f{bottom:494.880000px;}
.y8d{bottom:497.850000px;}
.y1a7{bottom:500.730000px;}
.yc3{bottom:501.900000px;}
.y115{bottom:503.880000px;}
.y1d1{bottom:504.510000px;}
.y15{bottom:505.860000px;}
.y45{bottom:508.830000px;}
.y1a6{bottom:518.280000px;}
.y139{bottom:519.000000px;}
.yee{bottom:519.630000px;}
.y15c{bottom:520.710000px;}
.y114{bottom:521.520000px;}
.y17e{bottom:522.240000px;}
.y44{bottom:526.470000px;}
.y1d0{bottom:531.150000px;}
.y1a5{bottom:535.830000px;}
.yc2{bottom:537.450000px;}
.y96{bottom:542.760000px;}
.y43{bottom:544.020000px;}
.y138{bottom:546.360000px;}
.yed{bottom:546.990000px;}
.y15b{bottom:548.070000px;}
.y1cf{bottom:548.700000px;}
.y17d{bottom:549.510000px;}
.y14{bottom:554.460000px;}
.yc1{bottom:555.090000px;}
.y113{bottom:557.070000px;}
.y1a4{bottom:571.470000px;}
.yc0{bottom:572.640000px;}
.y137{bottom:573.720000px;}
.yec{bottom:574.260000px;}
.y112{bottom:574.620000px;}
.y1ce{bottom:575.250000px;}
.y17c{bottom:576.870000px;}
.y42{bottom:579.660000px;}
.y91{bottom:587.670000px;}
.y1a3{bottom:589.020000px;}
.ybf{bottom:590.190000px;}
.y13{bottom:591.450000px;}
.y111{bottom:592.260000px;}
.y1cd{bottom:592.890000px;}
.y15a{bottom:596.760000px;}
.y41{bottom:597.210000px;}
.y136{bottom:600.990000px;}
.y17b{bottom:604.230000px;}
.y1a2{bottom:606.660000px;}
.y12{bottom:609.090000px;}
.y110{bottom:609.810000px;}
.y40{bottom:614.760000px;}
.ybe{bottom:616.830000px;}
.y1cc{bottom:619.440000px;}
.y1a1{bottom:624.210000px;}
.y11{bottom:626.640000px;}
.y10f{bottom:627.450000px;}
.y135{bottom:628.350000px;}
.y179{bottom:631.590000px;}
.y159{bottom:632.310000px;}
.y3f{bottom:632.400000px;}
.yeb{bottom:640.590000px;}
.y1a0{bottom:641.760000px;}
.y10{bottom:644.190000px;}
.y1cb{bottom:646.080000px;}
.y3e{bottom:649.950000px;}
.y86{bottom:650.220000px;}
.ybd{bottom:652.740000px;}
.y10e{bottom:654.000000px;}
.y134{bottom:655.710000px;}
.y17a{bottom:658.860000px;}
.yf{bottom:661.830000px;}
.y1ca{bottom:663.630000px;}
.y19f{bottom:668.670000px;}
.yea{bottom:676.140000px;}
.y3d{bottom:676.590000px;}
.ye{bottom:679.380000px;}
.y1c9{bottom:681.180000px;}
.y133{bottom:683.070000px;}
.y158{bottom:685.500000px;}
.y10d{bottom:689.550000px;}
.ye9{bottom:693.780000px;}
.y8c{bottom:695.130000px;}
.yd{bottom:697.020000px;}
.ybc{bottom:700.980000px;}
.y157{bottom:703.050000px;}
.y10c{bottom:707.190000px;}
.y178{bottom:707.550000px;}
.y1c8{bottom:707.820000px;}
.y132{bottom:710.340000px;}
.ye8{bottom:711.330000px;}
.y3c{bottom:712.140000px;}
.yc{bottom:714.570000px;}
.y19e{bottom:717.000000px;}
.ybb{bottom:718.620000px;}
.y156{bottom:720.690000px;}
.y8b{bottom:722.490000px;}
.y1c7{bottom:725.370000px;}
.ye7{bottom:728.880000px;}
.y3b{bottom:729.690000px;}
.yb{bottom:732.120000px;}
.y19d{bottom:734.550000px;}
.y131{bottom:737.700000px;}
.y155{bottom:738.240000px;}
.y10b{bottom:742.020000px;}
.y177{bottom:743.190000px;}
.y3a{bottom:747.330000px;}
.y1c6{bottom:751.920000px;}
.y19c{bottom:752.190000px;}
.yba{bottom:754.170000px;}
.ya{bottom:759.120000px;}
.y176{bottom:760.740000px;}
.ye6{bottom:764.520000px;}
.y39{bottom:764.880000px;}
.y130{bottom:765.060000px;}
.y88{bottom:767.400000px;}
.y19b{bottom:769.740000px;}
.yb9{bottom:771.720000px;}
.y154{bottom:773.880000px;}
.y1c5{bottom:778.560000px;}
.y10a{bottom:781.530000px;}
.ye5{bottom:782.070000px;}
.y38{bottom:782.520000px;}
.y19a{bottom:787.290000px;}
.yb8{bottom:789.360000px;}
.y153{bottom:791.430000px;}
.y63{bottom:791.520000px;}
.y12f{bottom:792.420000px;}
.y175{bottom:796.380000px;}
.ye4{bottom:799.710000px;}
.y37{bottom:800.070000px;}
.y199{bottom:804.930000px;}
.y1c4{bottom:805.110000px;}
.y9{bottom:805.830000px;}
.yb7{bottom:806.910000px;}
.y109{bottom:808.890000px;}
.y152{bottom:808.980000px;}
.y62{bottom:809.070000px;}
.y7c{bottom:812.310000px;}
.y174{bottom:813.930000px;}
.ye3{bottom:817.260000px;}
.y36{bottom:817.620000px;}
.y12e{bottom:819.690000px;}
.y198{bottom:822.480000px;}
.y1c3{bottom:822.750000px;}
.yb6{bottom:824.550000px;}
.y61{bottom:826.620000px;}
.y173{bottom:831.480000px;}
.ye2{bottom:834.810000px;}
.y108{bottom:836.250000px;}
.y8{bottom:841.380000px;}
.yb5{bottom:842.100000px;}
.y60{bottom:844.260000px;}
.y12d{bottom:847.050000px;}
.y1c2{bottom:849.300000px;}
.y151{bottom:853.170000px;}
.y35{bottom:853.260000px;}
.y85{bottom:857.220000px;}
.y197{bottom:858.030000px;}
.yb4{bottom:859.650000px;}
.ye1{bottom:861.450000px;}
.y5f{bottom:861.810000px;}
.y107{bottom:863.520000px;}
.y172{bottom:866.400000px;}
.y1c1{bottom:866.850000px;}
.y34{bottom:870.810000px;}
.y12c{bottom:874.410000px;}
.y196{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.yb3{bottom:877.290000px;}
.y171{bottom:878.550000px;}
.y150{bottom:888.000000px;}
.y33{bottom:888.450000px;}
.y106{bottom:890.880000px;}
.y195{bottom:893.220000px;}
.y1c0{bottom:893.490000px;}
.ye0{bottom:896.280000px;}
.y14f{bottom:900.240000px;}
.y12b{bottom:901.680000px;}
.y84{bottom:902.130000px;}
.y170{bottom:905.910000px;}
.y32{bottom:906.000000px;}
.yd9{bottom:908.430000px;}
.y194{bottom:910.860000px;}
.y1bf{bottom:911.040000px;}
.yb2{bottom:912.840000px;}
.y6{bottom:913.200000px;}
.y105{bottom:918.240000px;}
.y5e{bottom:924.270000px;}
.y14e{bottom:927.600000px;}
.y1be{bottom:928.680000px;}
.y12a{bottom:929.040000px;}
.y83{bottom:929.490000px;}
.yb1{bottom:930.390000px;}
.y31{bottom:932.550000px;}
.ydf{bottom:935.790000px;}
.y104{bottom:945.600000px;}
.y193{bottom:946.410000px;}
.yb0{bottom:948.030000px;}
.y5{bottom:949.290000px;}
.y16f{bottom:954.600000px;}
.y14d{bottom:954.870000px;}
.y1bd{bottom:955.230000px;}
.y129{bottom:956.400000px;}
.yde{bottom:963.150000px;}
.y192{bottom:963.960000px;}
.yaf{bottom:965.580000px;}
.y30{bottom:968.460000px;}
.y5d{bottom:972.600000px;}
.y1bc{bottom:972.780000px;}
.y103{bottom:972.870000px;}
.y75{bottom:974.400000px;}
.y191{bottom:981.600000px;}
.y14c{bottom:982.230000px;}
.yae{bottom:983.220000px;}
.y128{bottom:983.760000px;}
.y4{bottom:987.630000px;}
.y5c{bottom:990.150000px;}
.ydd{bottom:990.510000px;}
.y190{bottom:999.150000px;}
.y1bb{bottom:999.690000px;}
.y102{bottom:1000.230000px;}
.yad{bottom:1000.770000px;}
.y5b{bottom:1007.790000px;}
.y14b{bottom:1009.590000px;}
.y126{bottom:1011.060000px;}
.y3{bottom:1012.320000px;}
.y2f{bottom:1016.820000px;}
.ydc{bottom:1017.810000px;}
.yac{bottom:1018.350000px;}
.y7b{bottom:1019.340000px;}
.y5a{bottom:1025.370000px;}
.y101{bottom:1027.620000px;}
.y2e{bottom:1034.370000px;}
.yab{bottom:1035.990000px;}
.y14a{bottom:1036.890000px;}
.y127{bottom:1038.420000px;}
.y59{bottom:1042.920000px;}
.y16e{bottom:1043.370000px;}
.yd4{bottom:1045.170000px;}
.y78{bottom:1046.700000px;}
.y1ba{bottom:1048.050000px;}
.y2d{bottom:1051.920000px;}
.y100{bottom:1054.890000px;}
.y16d{bottom:1060.920000px;}
.yaa{bottom:1062.540000px;}
.y149{bottom:1064.250000px;}
.y18f{bottom:1069.920000px;}
.yd8{bottom:1072.530000px;}
.y1b9{bottom:1074.960000px;}
.y58{bottom:1078.560000px;}
.yff{bottom:1082.250000px;}
.y125{bottom:1087.110000px;}
.y2c{bottom:1087.560000px;}
.y73{bottom:1091.610000px;}
.y57{bottom:1096.110000px;}
.ya9{bottom:1097.460000px;}
.yd7{bottom:1099.890000px;}
.y2b{bottom:1105.110000px;}
.ya8{bottom:1109.610000px;}
.y1b8{bottom:1111.950000px;}
.y56{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.yd3{bottom:1127.160000px;}
.y1b7{bottom:1138.860000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h1d{height:26.580000px;}
.h16{height:26.640000px;}
.h1e{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h18{height:40.539023px;}
.h10{height:44.100000px;}
.hc{height:44.190000px;}
.hd{height:44.220000px;}
.h6{height:50.902383px;}
.h17{height:53.910000px;}
.h1f{height:53.940000px;}
.h5{height:55.779258px;}
.h19{height:60.960938px;}
.h12{height:61.740000px;}
.h9{height:61.793886px;}
.h14{height:61.830000px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1b{height:81.270000px;}
.h1a{height:108.630000px;}
.hb{height:116.490000px;}
.h1c{height:136.020000px;}
.h15{height:143.820000px;}
.h11{height:151.560000px;}
.hf{height:161.280000px;}
.he{height:161.370000px;}
.h13{height:241.500000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w20{width:28.980000px;}
.w27{width:31.860000px;}
.w22{width:35.820000px;}
.w17{width:44.100000px;}
.w18{width:44.130000px;}
.w23{width:44.460000px;}
.w26{width:44.490000px;}
.w2c{width:49.140000px;}
.w4{width:52.110000px;}
.w1f{width:56.880000px;}
.w1e{width:56.910000px;}
.w1d{width:56.970000px;}
.w29{width:68.070000px;}
.w25{width:75.060000px;}
.w12{width:76.680000px;}
.w30{width:77.580000px;}
.w9{width:81.180000px;}
.w24{width:89.460000px;}
.w2e{width:89.820000px;}
.w3{width:92.790000px;}
.wb{width:103.260000px;}
.we{width:105.510000px;}
.w1a{width:111.180000px;}
.wa{width:115.740000px;}
.w28{width:117.180000px;}
.w2d{width:122.400000px;}
.w2f{width:123.660000px;}
.w21{width:130.230000px;}
.w8{width:132.420000px;}
.wc{width:133.200000px;}
.wd{width:148.140000px;}
.w15{width:153.090000px;}
.w14{width:159.780000px;}
.w1c{width:159.930000px;}
.wf{width:176.850000px;}
.w2b{width:183.900000px;}
.w7{width:195.300000px;}
.w19{width:196.110000px;}
.w2a{width:214.290000px;}
.w13{width:218.880000px;}
.w16{width:223.500000px;}
.w6{width:259.020000px;}
.w5{width:349.500000px;}
.w11{width:379.470000px;}
.w1b{width:506.010000px;}
.w10{width:670.020000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.960000px;}
.x15{left:7.740000px;}
.x1{left:68.040000px;}
.x6{left:95.039987px;}
.x2f{left:103.860000px;}
.x10{left:111.600000px;}
.x8{left:162.300000px;}
.x30{left:172.650000px;}
.xc{left:183.720000px;}
.x20{left:193.620000px;}
.x2{left:202.799987px;}
.x9{left:215.130000px;}
.x14{left:218.190000px;}
.x26{left:223.320000px;}
.x28{left:226.290000px;}
.x36{left:255.449987px;}
.x18{left:257.970000px;}
.x29{left:262.470000px;}
.x1e{left:292.800000px;}
.x2a{left:307.380000px;}
.xf{left:310.259987px;}
.x5{left:334.829987px;}
.x11{left:349.590000px;}
.x21{left:354.270000px;}
.xb{left:378.479987px;}
.x31{left:387.660000px;}
.x2b{left:397.200000px;}
.x19{left:411.780000px;}
.x17{left:437.880000px;}
.x27{left:446.609987px;}
.x1a{left:456.600000px;}
.x22{left:469.650000px;}
.x2c{left:472.620000px;}
.x1f{left:489.270000px;}
.x12{left:498.450000px;}
.x1b{left:501.510000px;}
.xd{left:512.160000px;}
.x2d{left:517.560000px;}
.x23{left:527.370000px;}
.x1c{left:546.360000px;}
.x2e{left:549.780000px;}
.xa{left:565.440000px;}
.x32{left:572.280000px;}
.x24{left:585.060000px;}
.x1d{left:591.180000px;}
.xe{left:593.790000px;}
.x16{left:598.380000px;}
.x13{left:604.770000px;}
.x33{left:622.140000px;}
.x25{left:642.660000px;}
.x34{left:666.960000px;}
.x35{left:745.260000px;}
.x4{left:762.809987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls21{letter-spacing:-0.253867pt;}
.ls18{letter-spacing:-0.206933pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls1d{letter-spacing:-0.144000pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.034560pt;}
.ls1a{letter-spacing:-0.013760pt;}
.ls15{letter-spacing:-0.009920pt;}
.ls1f{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.046080pt;}
.ls20{letter-spacing:0.053867pt;}
.ls11{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1e{letter-spacing:0.091733pt;}
.ls3{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.098667pt;}
.ls1c{letter-spacing:0.105067pt;}
.ls6{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.142933pt;}
.lsf{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.333120pt;}
.ls9{letter-spacing:0.392533pt;}
.ls23{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls22{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.795733pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.899733pt;}
.ws13{word-spacing:-11.861867pt;}
.ws12{word-spacing:-11.855467pt;}
.ws15{word-spacing:-11.848533pt;}
.ws17{word-spacing:-11.810667pt;}
.wsb{word-spacing:-11.802880pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws16{word-spacing:-11.750080pt;}
.wsd{word-spacing:-11.746880pt;}
.ws11{word-spacing:-11.743040pt;}
.wsc{word-spacing:-11.722240pt;}
.ws14{word-spacing:-11.612800pt;}
.ws8{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.549867pt;}
.ws18{word-spacing:-11.502933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._a{margin-left:-3.188353pt;}
._9{margin-left:-2.137600pt;}
._1{margin-left:-0.961504pt;}
._4{width:1.015467pt;}
._0{width:1.930560pt;}
._2{width:3.473600pt;}
._3{width:4.674474pt;}
._7{width:5.825067pt;}
._8{width:6.732799pt;}
._c{width:7.642134pt;}
._5{width:8.764267pt;}
._6{width:10.206933pt;}
._10{width:12.659627pt;}
._b{width:13.894400pt;}
._19{width:14.909344pt;}
._e{width:15.871680pt;}
._f{width:16.779744pt;}
._d{width:18.543466pt;}
._16{width:21.696640pt;}
._12{width:23.215680pt;}
._11{width:31.743360pt;}
._18{width:33.079360pt;}
._15{width:44.729280pt;}
._1b{width:51.409280pt;}
._17{width:58.570240pt;}
._14{width:60.974624pt;}
._13{width:61.883520pt;}
._1a{width:62.898880pt;}
._1c{width:66.746560pt;}
._1f{width:67.975680pt;}
._1e{width:75.936991pt;}
._1d{width:76.953600pt;}
.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;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:6.960000pt;}
.y13c{bottom:6.986667pt;}
.y93{bottom:7.040000pt;}
.yf1{bottom:7.066667pt;}
.ya6{bottom:15.600000pt;}
.yd6{bottom:21.520000pt;}
.y89{bottom:22.560000pt;}
.y79{bottom:22.640000pt;}
.y9b{bottom:22.666667pt;}
.ya5{bottom:31.280000pt;}
.y15e{bottom:31.306667pt;}
.y82{bottom:32.640000pt;}
.y92{bottom:38.240000pt;}
.y9d{bottom:38.320000pt;}
.yd5{bottom:41.120000pt;}
.ycf{bottom:43.440000pt;}
.ydb{bottom:45.840000pt;}
.y81{bottom:52.240000pt;}
.y2{bottom:65.226667pt;}
.yda{bottom:65.440000pt;}
.y28{bottom:65.946667pt;}
.y7a{bottom:67.226667pt;}
.y80{bottom:67.840000pt;}
.y77{bottom:71.226667pt;}
.y95{bottom:78.880000pt;}
.y90{bottom:82.880000pt;}
.y76{bottom:86.906667pt;}
.y7f{bottom:87.520000pt;}
.y1{bottom:90.346667pt;}
.ya2{bottom:91.520000pt;}
.yfe{bottom:97.386667pt;}
.y94{bottom:98.480000pt;}
.ya0{bottom:98.746667pt;}
.y8f{bottom:102.480000pt;}
.y16c{bottom:103.386667pt;}
.y7e{bottom:107.120000pt;}
.y8a{bottom:111.120000pt;}
.ya1{bottom:111.200000pt;}
.y55{bottom:114.186667pt;}
.yce{bottom:116.906667pt;}
.y124{bottom:117.226667pt;}
.y8e{bottom:118.080000pt;}
.yfd{bottom:121.706667pt;}
.y18e{bottom:122.506667pt;}
.y72{bottom:122.986667pt;}
.y1b6{bottom:125.466667pt;}
.y87{bottom:126.720000pt;}
.y7d{bottom:126.800000pt;}
.y16b{bottom:131.946667pt;}
.y123{bottom:132.826667pt;}
.y18d{bottom:138.186667pt;}
.y71{bottom:138.586667pt;}
.ya7{bottom:138.666667pt;}
.y1b5{bottom:141.066667pt;}
.yd2{bottom:141.226667pt;}
.y1e0{bottom:142.346667pt;}
.y26{bottom:143.626667pt;}
.y54{bottom:145.866667pt;}
.yfc{bottom:145.946667pt;}
.y122{bottom:148.506667pt;}
.y18c{bottom:153.786667pt;}
.y70{bottom:154.266667pt;}
.y1b4{bottom:156.666667pt;}
.y1df{bottom:157.946667pt;}
.y25{bottom:159.226667pt;}
.y16a{bottom:160.426667pt;}
.y53{bottom:161.466667pt;}
.y121{bottom:164.106667pt;}
.yd1{bottom:165.546667pt;}
.y148{bottom:165.946667pt;}
.y18b{bottom:169.466667pt;}
.y6f{bottom:169.866667pt;}
.yfb{bottom:170.266667pt;}
.y168{bottom:171.226667pt;}
.y24{bottom:174.826667pt;}
.y99{bottom:178.320000pt;}
.ya4{bottom:178.666667pt;}
.y120{bottom:179.706667pt;}
.y1b3{bottom:180.586667pt;}
.y147{bottom:181.546667pt;}
.y1de{bottom:181.626667pt;}
.y6e{bottom:185.546667pt;}
.yd0{bottom:189.786667pt;}
.y23{bottom:190.506667pt;}
.y52{bottom:193.066667pt;}
.yfa{bottom:194.586667pt;}
.y169{bottom:195.546667pt;}
.y1dd{bottom:197.226667pt;}
.y98{bottom:198.026667pt;}
.y18a{bottom:201.066667pt;}
.ya3{bottom:202.906667pt;}
.y22{bottom:206.106667pt;}
.y51{bottom:208.746667pt;}
.y6d{bottom:209.146667pt;}
.y11f{bottom:211.386667pt;}
.y146{bottom:213.226667pt;}
.y1b2{bottom:213.786667pt;}
.ycd{bottom:214.106667pt;}
.y189{bottom:216.666667pt;}
.yf9{bottom:218.906667pt;}
.y166{bottom:219.866667pt;}
.y1dc{bottom:220.826667pt;}
.y50{bottom:224.346667pt;}
.y11e{bottom:226.986667pt;}
.y97{bottom:227.226667pt;}
.y145{bottom:228.826667pt;}
.y188{bottom:232.346667pt;}
.y1db{bottom:236.506667pt;}
.y21{bottom:237.786667pt;}
.y4f{bottom:239.946667pt;}
.y6c{bottom:240.746667pt;}
.y11d{bottom:242.586667pt;}
.yf8{bottom:243.146667pt;}
.y167{bottom:244.106667pt;}
.y144{bottom:244.426667pt;}
.y187{bottom:247.946667pt;}
.y20{bottom:253.386667pt;}
.y1b1{bottom:256.746667pt;}
.y6b{bottom:257.146667pt;}
.ycc{bottom:257.386667pt;}
.y143{bottom:260.106667pt;}
.y186{bottom:263.626667pt;}
.y9f{bottom:267.146667pt;}
.yf7{bottom:267.466667pt;}
.y164{bottom:268.426667pt;}
.y1f{bottom:268.986667pt;}
.y4e{bottom:271.626667pt;}
.y1b0{bottom:272.346667pt;}
.y6a{bottom:273.466667pt;}
.y11c{bottom:273.626667pt;}
.y1da{bottom:275.786667pt;}
.y185{bottom:279.226667pt;}
.y119{bottom:284.426667pt;}
.y1e{bottom:284.666667pt;}
.y4d{bottom:287.226667pt;}
.y1af{bottom:287.946667pt;}
.ycb{bottom:289.066667pt;}
.y69{bottom:289.866667pt;}
.y142{bottom:291.706667pt;}
.yf6{bottom:291.786667pt;}
.y165{bottom:292.746667pt;}
.y1d9{bottom:299.386667pt;}
.y1d{bottom:300.266667pt;}
.y4c{bottom:302.906667pt;}
.y1ae{bottom:303.626667pt;}
.yca{bottom:304.666667pt;}
.y68{bottom:306.186667pt;}
.y9e{bottom:307.066667pt;}
.y141{bottom:307.386667pt;}
.y11b{bottom:308.746667pt;}
.y184{bottom:310.826667pt;}
.y1d8{bottom:314.986667pt;}
.y1c{bottom:315.946667pt;}
.yf5{bottom:316.106667pt;}
.y162{bottom:317.066667pt;}
.y4b{bottom:318.506667pt;}
.y140{bottom:322.986667pt;}
.y11a{bottom:333.066667pt;}
.y1ad{bottom:335.226667pt;}
.yc9{bottom:336.266667pt;}
.y67{bottom:338.586667pt;}
.y1d7{bottom:338.666667pt;}
.yf4{bottom:340.346667pt;}
.y163{bottom:341.306667pt;}
.y4a{bottom:342.106667pt;}
.y183{bottom:342.506667pt;}
.y13f{bottom:346.586667pt;}
.y9c{bottom:346.986667pt;}
.y1b{bottom:347.546667pt;}
.y1ac{bottom:350.906667pt;}
.yc8{bottom:351.946667pt;}
.y1d6{bottom:354.266667pt;}
.y118{bottom:357.306667pt;}
.y182{bottom:358.106667pt;}
.y66{bottom:362.266667pt;}
.y1a{bottom:363.146667pt;}
.yf3{bottom:364.666667pt;}
.y160{bottom:365.626667pt;}
.y1ab{bottom:366.506667pt;}
.yc7{bottom:367.546667pt;}
.y1d5{bottom:369.946667pt;}
.y49{bottom:373.786667pt;}
.y13e{bottom:377.626667pt;}
.y19{bottom:378.826667pt;}
.y1aa{bottom:382.106667pt;}
.yc6{bottom:383.226667pt;}
.y13d{bottom:388.426667pt;}
.yf2{bottom:388.986667pt;}
.y48{bottom:389.386667pt;}
.y161{bottom:389.946667pt;}
.y1d4{bottom:393.546667pt;}
.y65{bottom:393.866667pt;}
.y18{bottom:394.426667pt;}
.y117{bottom:400.586667pt;}
.y9a{bottom:402.586667pt;}
.y181{bottom:404.746667pt;}
.y47{bottom:405.066667pt;}
.y1d3{bottom:409.146667pt;}
.y17{bottom:410.026667pt;}
.y13b{bottom:412.746667pt;}
.yf0{bottom:413.226667pt;}
.y1a9{bottom:413.786667pt;}
.y15d{bottom:414.266667pt;}
.yc5{bottom:414.826667pt;}
.y180{bottom:415.546667pt;}
.y64{bottom:422.533333pt;}
.y16{bottom:425.733333pt;}
.y1a8{bottom:429.413333pt;}
.yc4{bottom:430.453333pt;}
.y116{bottom:432.293333pt;}
.y1d2{bottom:432.853333pt;}
.y46{bottom:436.693333pt;}
.y13a{bottom:437.093333pt;}
.yef{bottom:437.573333pt;}
.y15f{bottom:438.533333pt;}
.y17f{bottom:439.893333pt;}
.y8d{bottom:442.533333pt;}
.y1a7{bottom:445.093333pt;}
.yc3{bottom:446.133333pt;}
.y115{bottom:447.893333pt;}
.y1d1{bottom:448.453333pt;}
.y15{bottom:449.653333pt;}
.y45{bottom:452.293333pt;}
.y1a6{bottom:460.693333pt;}
.y139{bottom:461.333333pt;}
.yee{bottom:461.893333pt;}
.y15c{bottom:462.853333pt;}
.y114{bottom:463.573333pt;}
.y17e{bottom:464.213333pt;}
.y44{bottom:467.973333pt;}
.y1d0{bottom:472.133333pt;}
.y1a5{bottom:476.293333pt;}
.yc2{bottom:477.733333pt;}
.y96{bottom:482.453333pt;}
.y43{bottom:483.573333pt;}
.y138{bottom:485.653333pt;}
.yed{bottom:486.213333pt;}
.y15b{bottom:487.173333pt;}
.y1cf{bottom:487.733333pt;}
.y17d{bottom:488.453333pt;}
.y14{bottom:492.853333pt;}
.yc1{bottom:493.413333pt;}
.y113{bottom:495.173333pt;}
.y1a4{bottom:507.973333pt;}
.yc0{bottom:509.013333pt;}
.y137{bottom:509.973333pt;}
.yec{bottom:510.453333pt;}
.y112{bottom:510.773333pt;}
.y1ce{bottom:511.333333pt;}
.y17c{bottom:512.773333pt;}
.y42{bottom:515.253333pt;}
.y91{bottom:522.373333pt;}
.y1a3{bottom:523.573333pt;}
.ybf{bottom:524.613333pt;}
.y13{bottom:525.733333pt;}
.y111{bottom:526.453333pt;}
.y1cd{bottom:527.013333pt;}
.y15a{bottom:530.453333pt;}
.y41{bottom:530.853333pt;}
.y136{bottom:534.213333pt;}
.y17b{bottom:537.093333pt;}
.y1a2{bottom:539.253333pt;}
.y12{bottom:541.413333pt;}
.y110{bottom:542.053333pt;}
.y40{bottom:546.453333pt;}
.ybe{bottom:548.293333pt;}
.y1cc{bottom:550.613333pt;}
.y1a1{bottom:554.853333pt;}
.y11{bottom:557.013333pt;}
.y10f{bottom:557.733333pt;}
.y135{bottom:558.533333pt;}
.y179{bottom:561.413333pt;}
.y159{bottom:562.053333pt;}
.y3f{bottom:562.133333pt;}
.yeb{bottom:569.413333pt;}
.y1a0{bottom:570.453333pt;}
.y10{bottom:572.613333pt;}
.y1cb{bottom:574.293333pt;}
.y3e{bottom:577.733333pt;}
.y86{bottom:577.973333pt;}
.ybd{bottom:580.213333pt;}
.y10e{bottom:581.333333pt;}
.y134{bottom:582.853333pt;}
.y17a{bottom:585.653333pt;}
.yf{bottom:588.293333pt;}
.y1ca{bottom:589.893333pt;}
.y19f{bottom:594.373333pt;}
.yea{bottom:601.013333pt;}
.y3d{bottom:601.413333pt;}
.ye{bottom:603.893333pt;}
.y1c9{bottom:605.493333pt;}
.y133{bottom:607.173333pt;}
.y158{bottom:609.333333pt;}
.y10d{bottom:612.933333pt;}
.ye9{bottom:616.693333pt;}
.y8c{bottom:617.893333pt;}
.yd{bottom:619.573333pt;}
.ybc{bottom:623.093333pt;}
.y157{bottom:624.933333pt;}
.y10c{bottom:628.613333pt;}
.y178{bottom:628.933333pt;}
.y1c8{bottom:629.173333pt;}
.y132{bottom:631.413333pt;}
.ye8{bottom:632.293333pt;}
.y3c{bottom:633.013333pt;}
.yc{bottom:635.173333pt;}
.y19e{bottom:637.333333pt;}
.ybb{bottom:638.773333pt;}
.y156{bottom:640.613333pt;}
.y8b{bottom:642.213333pt;}
.y1c7{bottom:644.773333pt;}
.ye7{bottom:647.893333pt;}
.y3b{bottom:648.613333pt;}
.yb{bottom:650.773333pt;}
.y19d{bottom:652.933333pt;}
.y131{bottom:655.733333pt;}
.y155{bottom:656.213333pt;}
.y10b{bottom:659.573333pt;}
.y177{bottom:660.613333pt;}
.y3a{bottom:664.293333pt;}
.y1c6{bottom:668.373333pt;}
.y19c{bottom:668.613333pt;}
.yba{bottom:670.373333pt;}
.ya{bottom:674.773333pt;}
.y176{bottom:676.213333pt;}
.ye6{bottom:679.573333pt;}
.y39{bottom:679.893333pt;}
.y130{bottom:680.053333pt;}
.y88{bottom:682.133333pt;}
.y19b{bottom:684.213333pt;}
.yb9{bottom:685.973333pt;}
.y154{bottom:687.893333pt;}
.y1c5{bottom:692.053333pt;}
.y10a{bottom:694.693333pt;}
.ye5{bottom:695.173333pt;}
.y38{bottom:695.573333pt;}
.y19a{bottom:699.813333pt;}
.yb8{bottom:701.653333pt;}
.y153{bottom:703.493333pt;}
.y63{bottom:703.573333pt;}
.y12f{bottom:704.373333pt;}
.y175{bottom:707.893333pt;}
.ye4{bottom:710.853333pt;}
.y37{bottom:711.173333pt;}
.y199{bottom:715.493333pt;}
.y1c4{bottom:715.653333pt;}
.y9{bottom:716.293333pt;}
.yb7{bottom:717.253333pt;}
.y109{bottom:719.013333pt;}
.y152{bottom:719.093333pt;}
.y62{bottom:719.173333pt;}
.y7c{bottom:722.053333pt;}
.y174{bottom:723.493333pt;}
.ye3{bottom:726.453333pt;}
.y36{bottom:726.773333pt;}
.y12e{bottom:728.613333pt;}
.y198{bottom:731.093333pt;}
.y1c3{bottom:731.333333pt;}
.yb6{bottom:732.933333pt;}
.y61{bottom:734.773333pt;}
.y173{bottom:739.093333pt;}
.ye2{bottom:742.053333pt;}
.y108{bottom:743.333333pt;}
.y8{bottom:747.893333pt;}
.yb5{bottom:748.533333pt;}
.y60{bottom:750.453333pt;}
.y12d{bottom:752.933333pt;}
.y1c2{bottom:754.933333pt;}
.y151{bottom:758.373333pt;}
.y35{bottom:758.453333pt;}
.y85{bottom:761.973333pt;}
.y197{bottom:762.693333pt;}
.yb4{bottom:764.133333pt;}
.ye1{bottom:765.733333pt;}
.y5f{bottom:766.053333pt;}
.y107{bottom:767.573333pt;}
.y172{bottom:770.133333pt;}
.y1c1{bottom:770.533333pt;}
.y34{bottom:774.053333pt;}
.y12c{bottom:777.253333pt;}
.y196{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.yb3{bottom:779.813333pt;}
.y171{bottom:780.933333pt;}
.y150{bottom:789.333333pt;}
.y33{bottom:789.733333pt;}
.y106{bottom:791.893333pt;}
.y195{bottom:793.973333pt;}
.y1c0{bottom:794.213333pt;}
.ye0{bottom:796.693333pt;}
.y14f{bottom:800.213333pt;}
.y12b{bottom:801.493333pt;}
.y84{bottom:801.893333pt;}
.y170{bottom:805.253333pt;}
.y32{bottom:805.333333pt;}
.yd9{bottom:807.493333pt;}
.y194{bottom:809.653333pt;}
.y1bf{bottom:809.813333pt;}
.yb2{bottom:811.413333pt;}
.y6{bottom:811.733333pt;}
.y105{bottom:816.213333pt;}
.y5e{bottom:821.573333pt;}
.y14e{bottom:824.533333pt;}
.y1be{bottom:825.493333pt;}
.y12a{bottom:825.813333pt;}
.y83{bottom:826.213333pt;}
.yb1{bottom:827.013333pt;}
.y31{bottom:828.933333pt;}
.ydf{bottom:831.813333pt;}
.y104{bottom:840.533333pt;}
.y193{bottom:841.253333pt;}
.yb0{bottom:842.693333pt;}
.y5{bottom:843.813333pt;}
.y16f{bottom:848.533333pt;}
.y14d{bottom:848.773333pt;}
.y1bd{bottom:849.093333pt;}
.y129{bottom:850.133333pt;}
.yde{bottom:856.133333pt;}
.y192{bottom:856.853333pt;}
.yaf{bottom:858.293333pt;}
.y30{bottom:860.853333pt;}
.y5d{bottom:864.533333pt;}
.y1bc{bottom:864.693333pt;}
.y103{bottom:864.773333pt;}
.y75{bottom:866.133333pt;}
.y191{bottom:872.533333pt;}
.y14c{bottom:873.093333pt;}
.yae{bottom:873.973333pt;}
.y128{bottom:874.453333pt;}
.y4{bottom:877.893333pt;}
.y5c{bottom:880.133333pt;}
.ydd{bottom:880.453333pt;}
.y190{bottom:888.133333pt;}
.y1bb{bottom:888.613333pt;}
.y102{bottom:889.093333pt;}
.yad{bottom:889.573333pt;}
.y5b{bottom:895.813333pt;}
.y14b{bottom:897.413333pt;}
.y126{bottom:898.720000pt;}
.y3{bottom:899.840000pt;}
.y2f{bottom:903.840000pt;}
.ydc{bottom:904.720000pt;}
.yac{bottom:905.200000pt;}
.y7b{bottom:906.080000pt;}
.y5a{bottom:911.440000pt;}
.y101{bottom:913.440000pt;}
.y2e{bottom:919.440000pt;}
.yab{bottom:920.880000pt;}
.y14a{bottom:921.680000pt;}
.y127{bottom:923.040000pt;}
.y59{bottom:927.040000pt;}
.y16e{bottom:927.440000pt;}
.yd4{bottom:929.040000pt;}
.y78{bottom:930.400000pt;}
.y1ba{bottom:931.600000pt;}
.y2d{bottom:935.040000pt;}
.y100{bottom:937.680000pt;}
.y16d{bottom:943.040000pt;}
.yaa{bottom:944.480000pt;}
.y149{bottom:946.000000pt;}
.y18f{bottom:951.040000pt;}
.yd8{bottom:953.360000pt;}
.y1b9{bottom:955.520000pt;}
.y58{bottom:958.720000pt;}
.yff{bottom:962.000000pt;}
.y125{bottom:966.320000pt;}
.y2c{bottom:966.720000pt;}
.y73{bottom:970.320000pt;}
.y57{bottom:974.320000pt;}
.ya9{bottom:975.520000pt;}
.yd7{bottom:977.680000pt;}
.y2b{bottom:982.320000pt;}
.ya8{bottom:986.320000pt;}
.y1b8{bottom:988.400000pt;}
.y56{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.yd3{bottom:1001.920000pt;}
.y1b7{bottom:1012.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h1d{height:23.626667pt;}
.h16{height:23.680000pt;}
.h1e{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h18{height:36.034687pt;}
.h10{height:39.200000pt;}
.hc{height:39.280000pt;}
.hd{height:39.306667pt;}
.h6{height:45.246562pt;}
.h17{height:47.920000pt;}
.h1f{height:47.946667pt;}
.h5{height:49.581562pt;}
.h19{height:54.187500pt;}
.h12{height:54.880000pt;}
.h9{height:54.927899pt;}
.h14{height:54.960000pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1b{height:72.240000pt;}
.h1a{height:96.560000pt;}
.hb{height:103.546667pt;}
.h1c{height:120.906667pt;}
.h15{height:127.840000pt;}
.h11{height:134.720000pt;}
.hf{height:143.360000pt;}
.he{height:143.440000pt;}
.h13{height:214.666667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w20{width:25.760000pt;}
.w27{width:28.320000pt;}
.w22{width:31.840000pt;}
.w17{width:39.200000pt;}
.w18{width:39.226667pt;}
.w23{width:39.520000pt;}
.w26{width:39.546667pt;}
.w2c{width:43.680000pt;}
.w4{width:46.320000pt;}
.w1f{width:50.560000pt;}
.w1e{width:50.586667pt;}
.w1d{width:50.640000pt;}
.w29{width:60.506667pt;}
.w25{width:66.720000pt;}
.w12{width:68.160000pt;}
.w30{width:68.960000pt;}
.w9{width:72.160000pt;}
.w24{width:79.520000pt;}
.w2e{width:79.840000pt;}
.w3{width:82.480000pt;}
.wb{width:91.786667pt;}
.we{width:93.786667pt;}
.w1a{width:98.826667pt;}
.wa{width:102.880000pt;}
.w28{width:104.160000pt;}
.w2d{width:108.800000pt;}
.w2f{width:109.920000pt;}
.w21{width:115.760000pt;}
.w8{width:117.706667pt;}
.wc{width:118.400000pt;}
.wd{width:131.680000pt;}
.w15{width:136.080000pt;}
.w14{width:142.026667pt;}
.w1c{width:142.160000pt;}
.wf{width:157.200000pt;}
.w2b{width:163.466667pt;}
.w7{width:173.600000pt;}
.w19{width:174.320000pt;}
.w2a{width:190.480000pt;}
.w13{width:194.560000pt;}
.w16{width:198.666667pt;}
.w6{width:230.240000pt;}
.w5{width:310.666667pt;}
.w11{width:337.306667pt;}
.w1b{width:449.786667pt;}
.w10{width:595.573333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:3.520000pt;}
.x15{left:6.880000pt;}
.x1{left:60.480000pt;}
.x6{left:84.479988pt;}
.x2f{left:92.320000pt;}
.x10{left:99.200000pt;}
.x8{left:144.266667pt;}
.x30{left:153.466667pt;}
.xc{left:163.306667pt;}
.x20{left:172.106667pt;}
.x2{left:180.266655pt;}
.x9{left:191.226667pt;}
.x14{left:193.946667pt;}
.x26{left:198.506667pt;}
.x28{left:201.146667pt;}
.x36{left:227.066655pt;}
.x18{left:229.306667pt;}
.x29{left:233.306667pt;}
.x1e{left:260.266667pt;}
.x2a{left:273.226667pt;}
.xf{left:275.786655pt;}
.x5{left:297.626655pt;}
.x11{left:310.746667pt;}
.x21{left:314.906667pt;}
.xb{left:336.426655pt;}
.x31{left:344.586667pt;}
.x2b{left:353.066667pt;}
.x19{left:366.026667pt;}
.x17{left:389.226667pt;}
.x27{left:396.986655pt;}
.x1a{left:405.866667pt;}
.x22{left:417.466667pt;}
.x2c{left:420.106667pt;}
.x1f{left:434.906667pt;}
.x12{left:443.066667pt;}
.x1b{left:445.786667pt;}
.xd{left:455.253333pt;}
.x2d{left:460.053333pt;}
.x23{left:468.773333pt;}
.x1c{left:485.653333pt;}
.x2e{left:488.693333pt;}
.xa{left:502.613333pt;}
.x32{left:508.693333pt;}
.x24{left:520.053333pt;}
.x1d{left:525.493333pt;}
.xe{left:527.813333pt;}
.x16{left:531.893333pt;}
.x13{left:537.573333pt;}
.x33{left:553.013333pt;}
.x25{left:571.253333pt;}
.x34{left:592.853333pt;}
.x35{left:662.453333pt;}
.x4{left:678.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; }
  