
    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_3acc0e40d52c9f4899bc587d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bcee6e33b3be21b11da992a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9ffd8d3c9874fea053b791d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_2481d6267ec2c967fca54610.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7d8bb9cac062c80a795a338c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_78c04178fe64bb53857571db.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_450a41fc801f8ca43bbdf8af.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e0f9c88026d4e4a59a59eb6b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.879395;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5ba5549d9526bcf71e4964e5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_112d2ac638cf4e50aa9020d6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.981934;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:ffd;src:url('chunks/assets/font_74e869ecbc9e545f34bf26d1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.981934;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:ffe;src:url('chunks/assets/font_ad03353bc0b3307b8423e742.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.070200px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.lse{letter-spacing:0.135360px;}
.lsa{letter-spacing:0.153000px;}
.ls0{letter-spacing:0.174000px;}
.lsd{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.864000px;}
.ls8{letter-spacing:1.105200px;}
.ls5{letter-spacing:1.440000px;}
.ls6{letter-spacing:13.860000px;}
.ls3{letter-spacing:14.400000px;}
.lsf{letter-spacing:16.560000px;}
.ls7{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-72.000000px;}
.ws4{word-spacing:-59.760000px;}
.ws7{word-spacing:-20.525544px;}
.ws3{word-spacing:-20.340000px;}
.ws6{word-spacing:-20.302344px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.680200px;}
.ws0{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.204000px;}
.ws2{word-spacing:0.000000px;}
._2d{margin-left:-10.680000px;}
._b{margin-left:-4.608000px;}
._3{margin-left:-3.456000px;}
._11{margin-left:-2.232000px;}
._2{margin-left:-1.008000px;}
._0{width:1.055520px;}
._8{width:2.400480px;}
._9{width:3.526560px;}
._6{width:4.752000px;}
._16{width:5.760000px;}
._15{width:6.912000px;}
._c{width:7.992000px;}
._5{width:9.360000px;}
._a{width:10.848960px;}
._4{width:12.168000px;}
._7{width:13.752000px;}
._19{width:14.760000px;}
._17{width:15.768000px;}
._1e{width:16.848000px;}
._13{width:19.080000px;}
._14{width:20.400480px;}
._f{width:21.816000px;}
._10{width:22.944000px;}
._1c{width:23.976000px;}
._1d{width:25.080480px;}
._1f{width:26.568000px;}
._20{width:27.576000px;}
._18{width:28.584000px;}
._12{width:30.096000px;}
._e{width:32.040000px;}
._26{width:33.144480px;}
._1b{width:34.920000px;}
._29{width:37.944000px;}
._25{width:39.501360px;}
._21{width:43.128000px;}
._2c{width:45.504000px;}
._1a{width:47.448000px;}
._28{width:49.752000px;}
._27{width:50.760000px;}
._24{width:63.048000px;}
._2a{width:69.192000px;}
._2b{width:70.800480px;}
._d{width:72.288000px;}
._1{width:82.776000px;}
._22{width:1641.156000px;}
._23{width:1701.636000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:90.000000px;}
.fs6{font-size:90.144000px;}
.yd9{bottom:-47.700000px;}
.yfd{bottom:-25.920000px;}
.yca{bottom:-22.140000px;}
.yce{bottom:-18.900000px;}
.yd8{bottom:-14.220000px;}
.yde{bottom:-9.180000px;}
.yeb{bottom:-7.020000px;}
.y0{bottom:0.000000px;}
.yd{bottom:4.319850px;}
.y8{bottom:4.500000px;}
.yd7{bottom:4.860000px;}
.y3{bottom:5.400000px;}
.y9{bottom:6.300000px;}
.yc9{bottom:10.260000px;}
.y11f{bottom:12.240000px;}
.y105{bottom:12.285000px;}
.yd2{bottom:12.420000px;}
.yf{bottom:12.600000px;}
.y123{bottom:12.645000px;}
.yfc{bottom:13.140000px;}
.y6{bottom:14.400000px;}
.yf2{bottom:15.660000px;}
.ye2{bottom:16.590000px;}
.y7{bottom:19.080000px;}
.yc{bottom:20.160000px;}
.y103{bottom:21.960000px;}
.ye4{bottom:22.755000px;}
.yd6{bottom:23.940000px;}
.yc8{bottom:26.280000px;}
.yea{bottom:27.540000px;}
.yd1{bottom:29.340000px;}
.yfb{bottom:29.520000px;}
.y122{bottom:29.925000px;}
.ybf{bottom:30.060000px;}
.ycd{bottom:31.350000px;}
.yf1{bottom:32.040000px;}
.ye0{bottom:33.480000px;}
.y102{bottom:39.240000px;}
.y2{bottom:40.140000px;}
.ydd{bottom:44.100000px;}
.yfa{bottom:48.240000px;}
.ye9{bottom:48.600000px;}
.y5{bottom:49.140000px;}
.y101{bottom:56.520000px;}
.yc7{bottom:58.140000px;}
.ydc{bottom:58.680000px;}
.yd5{bottom:60.165000px;}
.yd0{bottom:64.980000px;}
.yf9{bottom:66.780000px;}
.ycc{bottom:66.990000px;}
.yf0{bottom:67.320000px;}
.ye8{bottom:70.020000px;}
.yd4{bottom:79.245000px;}
.yf8{bottom:85.500000px;}
.yef{bottom:86.040000px;}
.yc6{bottom:90.000000px;}
.ydb{bottom:98.100000px;}
.yf7{bottom:102.060000px;}
.yee{bottom:104.610000px;}
.ye7{bottom:106.965000px;}
.y144{bottom:115.560000px;}
.y168{bottom:118.440000px;}
.yf6{bottom:120.780000px;}
.y84{bottom:120.960000px;}
.yc5{bottom:121.905000px;}
.ybd{bottom:123.480000px;}
.y11d{bottom:126.900000px;}
.y113{bottom:127.080000px;}
.y67{bottom:127.260000px;}
.y39{bottom:127.620000px;}
.ye6{bottom:127.845000px;}
.y143{bottom:136.260000px;}
.ya3{bottom:136.440000px;}
.y167{bottom:139.140000px;}
.yed{bottom:144.570000px;}
.y11c{bottom:147.600000px;}
.y66{bottom:147.960000px;}
.y38{bottom:148.320000px;}
.y83{bottom:150.660000px;}
.yc4{bottom:153.765000px;}
.y189{bottom:156.060000px;}
.yf5{bottom:160.605000px;}
.ybc{bottom:162.360000px;}
.y142{bottom:165.960000px;}
.y11b{bottom:168.300000px;}
.y65{bottom:168.660000px;}
.y166{bottom:168.840000px;}
.y37{bottom:169.020000px;}
.ya2{bottom:175.140000px;}
.y188{bottom:176.760000px;}
.yf4{bottom:176.985000px;}
.y82{bottom:180.360000px;}
.yc3{bottom:185.625000px;}
.y141{bottom:186.660000px;}
.y165{bottom:189.540000px;}
.y36{bottom:189.720000px;}
.y11a{bottom:198.030000px;}
.y64{bottom:198.390000px;}
.ybb{bottom:201.270000px;}
.y187{bottom:206.490000px;}
.y140{bottom:207.390000px;}
.y81{bottom:210.090000px;}
.y164{bottom:210.270000px;}
.y35{bottom:210.450000px;}
.ya1{bottom:214.050000px;}
.yc2{bottom:217.485000px;}
.yda{bottom:225.030000px;}
.y186{bottom:227.190000px;}
.y119{bottom:227.730000px;}
.y63{bottom:228.090000px;}
.ye3{bottom:236.160000px;}
.y80{bottom:239.790000px;}
.yba{bottom:239.970000px;}
.y34{bottom:240.150000px;}
.y185{bottom:247.890000px;}
.y62{bottom:248.790000px;}
.yc1{bottom:252.225000px;}
.ya0{bottom:252.930000px;}
.y118{bottom:253.470000px;}
.y7f{bottom:260.490000px;}
.y163{bottom:260.670000px;}
.y61{bottom:269.490000px;}
.y33{bottom:269.850000px;}
.y184{bottom:277.590000px;}
.yb9{bottom:278.850000px;}
.y7e{bottom:281.190000px;}
.y162{bottom:281.370000px;}
.y60{bottom:290.190000px;}
.y9f{bottom:291.630000px;}
.y183{bottom:298.290000px;}
.y32{bottom:299.550000px;}
.y7d{bottom:301.890000px;}
.y5f{bottom:310.890000px;}
.y161{bottom:311.070000px;}
.yf3{bottom:312.330000px;}
.yb8{bottom:317.550000px;}
.y31{bottom:320.250000px;}
.y7c{bottom:322.590000px;}
.y182{bottom:327.990000px;}
.y9e{bottom:330.510000px;}
.y5e{bottom:331.590000px;}
.y160{bottom:331.770000px;}
.y7b{bottom:343.290000px;}
.y181{bottom:348.690000px;}
.y30{bottom:349.950000px;}
.y5d{bottom:352.290000px;}
.y15f{bottom:352.470000px;}
.yb7{bottom:356.430000px;}
.y13f{bottom:361.290000px;}
.y7a{bottom:363.990000px;}
.y9d{bottom:369.210000px;}
.y2f{bottom:370.650000px;}
.y180{bottom:378.390000px;}
.y5c{bottom:381.990000px;}
.y15e{bottom:382.170000px;}
.y79{bottom:384.690000px;}
.y13e{bottom:390.990000px;}
.y2e{bottom:391.350000px;}
.yd3{bottom:391.890000px;}
.yb6{bottom:395.130000px;}
.y17f{bottom:399.090000px;}
.y5b{bottom:402.690000px;}
.y15d{bottom:402.870000px;}
.y9c{bottom:408.090000px;}
.y2d{bottom:412.050000px;}
.y78{bottom:414.390000px;}
.y17e{bottom:419.790000px;}
.y13d{bottom:420.690000px;}
.ye1{bottom:423.180000px;}
.y5a{bottom:423.390000px;}
.y15c{bottom:423.570000px;}
.y2c{bottom:432.750000px;}
.yb5{bottom:434.010000px;}
.y9b{bottom:437.835000px;}
.y13c{bottom:441.435000px;}
.y59{bottom:444.135000px;}
.y17d{bottom:449.535000px;}
.y15b{bottom:453.315000px;}
.y2b{bottom:453.495000px;}
.y9a{bottom:458.535000px;}
.y13b{bottom:462.135000px;}
.y58{bottom:464.835000px;}
.y17c{bottom:470.235000px;}
.yb4{bottom:472.935000px;}
.y15a{bottom:474.015000px;}
.y2a{bottom:474.195000px;}
.y99{bottom:479.235000px;}
.y13a{bottom:482.835000px;}
.y57{bottom:485.535000px;}
.y17b{bottom:490.935000px;}
.y159{bottom:494.715000px;}
.y29{bottom:494.895000px;}
.y98{bottom:499.935000px;}
.y195{bottom:502.635000px;}
.y139{bottom:503.535000px;}
.y77{bottom:506.235000px;}
.yb3{bottom:511.635000px;}
.y56{bottom:515.235000px;}
.y28{bottom:515.595000px;}
.y17a{bottom:520.635000px;}
.y138{bottom:524.235000px;}
.y158{bottom:524.415000px;}
.y76{bottom:526.935000px;}
.y97{bottom:529.635000px;}
.ycf{bottom:529.815000px;}
.y194{bottom:532.335000px;}
.y55{bottom:535.935000px;}
.y27{bottom:536.295000px;}
.y179{bottom:541.335000px;}
.y137{bottom:544.935000px;}
.y157{bottom:545.115000px;}
.y75{bottom:547.635000px;}
.y96{bottom:550.335000px;}
.yb2{bottom:550.515000px;}
.y54{bottom:556.635000px;}
.y26{bottom:556.995000px;}
.y178{bottom:562.035000px;}
.y74{bottom:568.335000px;}
.y136{bottom:574.635000px;}
.y156{bottom:574.815000px;}
.y53{bottom:577.335000px;}
.y25{bottom:577.695000px;}
.y95{bottom:580.035000px;}
.y177{bottom:582.735000px;}
.yec{bottom:586.155000px;}
.y73{bottom:589.035000px;}
.yb1{bottom:589.215000px;}
.y193{bottom:591.735000px;}
.y112{bottom:592.455000px;}
.y135{bottom:595.335000px;}
.y155{bottom:595.515000px;}
.y52{bottom:598.035000px;}
.y24{bottom:598.395000px;}
.y94{bottom:600.735000px;}
.ydf{bottom:601.380000px;}
.y176{bottom:612.435000px;}
.y134{bottom:616.035000px;}
.ye{bottom:617.475000px;}
.y51{bottom:618.735000px;}
.y23{bottom:619.095000px;}
.y192{bottom:621.435000px;}
.y111{bottom:622.155000px;}
.y154{bottom:625.215000px;}
.yb0{bottom:628.095000px;}
.y93{bottom:630.435000px;}
.y175{bottom:633.135000px;}
.y133{bottom:636.735000px;}
.y50{bottom:639.435000px;}
.y22{bottom:639.795000px;}
.y191{bottom:642.135000px;}
.y72{bottom:648.435000px;}
.y92{bottom:651.135000px;}
.y110{bottom:651.855000px;}
.y174{bottom:653.835000px;}
.y153{bottom:654.915000px;}
.ycb{bottom:657.255000px;}
.y132{bottom:657.435000px;}
.y4f{bottom:660.135000px;}
.y21{bottom:660.495000px;}
.y190{bottom:662.835000px;}
.yaf{bottom:666.795000px;}
.y71{bottom:669.135000px;}
.y10f{bottom:672.555000px;}
.y173{bottom:674.565000px;}
.y131{bottom:678.165000px;}
.y91{bottom:680.865000px;}
.y20{bottom:681.225000px;}
.y152{bottom:684.645000px;}
.y4e{bottom:689.865000px;}
.y18f{bottom:692.565000px;}
.y10e{bottom:693.285000px;}
.y90{bottom:701.565000px;}
.y1f{bottom:701.925000px;}
.y172{bottom:704.265000px;}
.yae{bottom:705.705000px;}
.y130{bottom:707.865000px;}
.y4d{bottom:710.565000px;}
.y18e{bottom:713.265000px;}
.y10d{bottom:713.985000px;}
.y151{bottom:714.345000px;}
.y117{bottom:721.005000px;}
.y171{bottom:724.965000px;}
.y12f{bottom:728.565000px;}
.y4c{bottom:731.265000px;}
.y1e{bottom:731.625000px;}
.y10c{bottom:734.685000px;}
.y150{bottom:735.045000px;}
.y18d{bottom:742.965000px;}
.yad{bottom:744.585000px;}
.y12e{bottom:749.265000px;}
.y116{bottom:750.705000px;}
.y4b{bottom:751.965000px;}
.y170{bottom:754.665000px;}
.y10b{bottom:755.385000px;}
.y14f{bottom:755.745000px;}
.y1d{bottom:761.325000px;}
.y18c{bottom:763.665000px;}
.y12d{bottom:769.965000px;}
.y4a{bottom:772.665000px;}
.y16f{bottom:775.365000px;}
.y10a{bottom:776.085000px;}
.y14e{bottom:776.445000px;}
.y115{bottom:780.405000px;}
.yac{bottom:783.285000px;}
.y18b{bottom:784.365000px;}
.y12c{bottom:790.665000px;}
.y1c{bottom:791.025000px;}
.y49{bottom:793.365000px;}
.yc0{bottom:793.725000px;}
.y109{bottom:796.785000px;}
.y16e{bottom:805.065000px;}
.y14d{bottom:806.145000px;}
.y114{bottom:810.105000px;}
.y12b{bottom:811.365000px;}
.y48{bottom:814.065000px;}
.ye5{bottom:818.385000px;}
.y1b{bottom:818.565000px;}
.yab{bottom:822.165000px;}
.y70{bottom:823.065000px;}
.y16d{bottom:825.765000px;}
.y108{bottom:826.485000px;}
.y14c{bottom:826.845000px;}
.y12a{bottom:832.065000px;}
.y47{bottom:834.765000px;}
.y125{bottom:836.565000px;}
.y1a{bottom:841.425000px;}
.y14b{bottom:848.805000px;}
.y6f{bottom:852.765000px;}
.y46{bottom:855.465000px;}
.y107{bottom:856.185000px;}
.yaa{bottom:860.865000px;}
.y129{bottom:861.765000px;}
.y8f{bottom:864.465000px;}
.y14a{bottom:869.505000px;}
.y124{bottom:872.565000px;}
.y6e{bottom:873.465000px;}
.ybe{bottom:874.440000px;}
.y16c{bottom:876.165000px;}
.y106{bottom:876.885000px;}
.y19{bottom:877.965000px;}
.y128{bottom:882.465000px;}
.y45{bottom:885.165000px;}
.y149{bottom:891.465000px;}
.y6d{bottom:894.165000px;}
.ya9{bottom:899.745000px;}
.y18{bottom:900.825000px;}
.y127{bottom:903.165000px;}
.y104{bottom:903.345000px;}
.y8e{bottom:905.865000px;}
.y121{bottom:908.565000px;}
.y148{bottom:912.345000px;}
.y44{bottom:914.910000px;}
.y126{bottom:923.910000px;}
.y8d{bottom:926.610000px;}
.y17{bottom:930.570000px;}
.y147{bottom:934.350000px;}
.y6c{bottom:935.610000px;}
.ya8{bottom:938.490000px;}
.y100{bottom:939.390000px;}
.y43{bottom:944.610000px;}
.y8c{bottom:947.310000px;}
.y146{bottom:954.870000px;}
.y18a{bottom:956.310000px;}
.y16{bottom:960.270000px;}
.y120{bottom:962.250000px;}
.y42{bottom:965.310000px;}
.y8b{bottom:968.010000px;}
.y145{bottom:975.750000px;}
.y16b{bottom:977.010000px;}
.ya7{bottom:977.370000px;}
.y15{bottom:980.970000px;}
.y6b{bottom:986.010000px;}
.y8a{bottom:988.710000px;}
.y41{bottom:995.010000px;}
.y16a{bottom:997.710000px;}
.y11e{bottom:998.250000px;}
.y6a{bottom:1006.710000px;}
.y89{bottom:1009.410000px;}
.y14{bottom:1010.670000px;}
.y40{bottom:1015.710000px;}
.ya6{bottom:1016.250000px;}
.y69{bottom:1027.410000px;}
.y88{bottom:1030.110000px;}
.y13{bottom:1031.370000px;}
.yff{bottom:1032.630000px;}
.y3f{bottom:1036.410000px;}
.y68{bottom:1048.110000px;}
.y87{bottom:1050.810000px;}
.ya5{bottom:1054.950000px;}
.y3e{bottom:1057.110000px;}
.yfe{bottom:1062.330000px;}
.y169{bottom:1068.810000px;}
.y12{bottom:1071.510000px;}
.y3d{bottom:1077.810000px;}
.y86{bottom:1080.510000px;}
.y3c{bottom:1098.510000px;}
.ya4{bottom:1101.030000px;}
.y11{bottom:1101.210000px;}
.y85{bottom:1110.210000px;}
.y3b{bottom:1119.210000px;}
.y10{bottom:1130.910000px;}
.y3a{bottom:1139.910000px;}
.y4{bottom:1191.780000px;}
.y1{bottom:1200.780000px;}
.yb{bottom:1246.320000px;}
.ya{bottom:1261.980000px;}
.h6{height:19.620000px;}
.h8{height:21.420000px;}
.hb{height:28.260000px;}
.h27{height:35.280000px;}
.h26{height:35.316000px;}
.hf{height:40.254961px;}
.h13{height:41.362031px;}
.h14{height:43.506914px;}
.h17{height:47.980898px;}
.h16{height:49.394180px;}
.h9{height:49.868086px;}
.h28{height:51.239531px;}
.h29{height:52.956000px;}
.h1b{height:53.709961px;}
.h2{height:54.900000px;}
.h1a{height:55.291992px;}
.h1c{height:59.439023px;}
.hd{height:60.082031px;}
.h7{height:61.189805px;}
.hc{height:61.734375px;}
.h4{height:63.900000px;}
.he{height:65.122031px;}
.ha{height:65.884219px;}
.h5{height:67.824844px;}
.h3{height:73.722656px;}
.h18{height:76.320000px;}
.h15{height:78.336000px;}
.h25{height:79.560000px;}
.h19{height:92.016000px;}
.h11{height:92.153320px;}
.h21{height:92.300766px;}
.h1d{height:109.440000px;}
.h1f{height:122.220000px;}
.h1e{height:137.880000px;}
.h22{height:142.236000px;}
.h20{height:147.780000px;}
.h23{height:157.350000px;}
.h10{height:164.700000px;}
.h24{height:189.930000px;}
.h12{height:263.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:27.180000px;}
.we{width:27.360000px;}
.w9{width:27.720000px;}
.w3{width:75.240000px;}
.w12{width:84.600000px;}
.w14{width:84.636000px;}
.w13{width:84.780000px;}
.w16{width:84.816000px;}
.w8{width:84.990000px;}
.w15{width:85.500000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w6{width:200.595000px;}
.w19{width:205.770000px;}
.w18{width:212.070000px;}
.w17{width:219.990000px;}
.wf{width:269.670000px;}
.w11{width:274.710000px;}
.w10{width:277.410000px;}
.wa{width:319.935000px;}
.wb{width:330.735000px;}
.wc{width:330.915000px;}
.w2{width:359.175000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x29{left:7.740000px;}
.xd{left:10.800000px;}
.x28{left:19.800000px;}
.x5{left:21.780000px;}
.x1d{left:25.200000px;}
.x1a{left:27.360000px;}
.xa{left:31.185000px;}
.x1f{left:36.000000px;}
.x1b{left:37.800000px;}
.x22{left:41.034000px;}
.x7{left:47.340000px;}
.x1e{left:48.780000px;}
.x3{left:51.120000px;}
.x1c{left:64.800000px;}
.x25{left:82.260000px;}
.x23{left:101.160000px;}
.xb{left:106.235987px;}
.x18{left:109.260000px;}
.xe{left:113.435987px;}
.x33{left:115.056000px;}
.x10{left:121.895987px;}
.x16{left:124.415987px;}
.x14{left:131.075987px;}
.x20{left:137.565000px;}
.x21{left:147.276000px;}
.x36{left:148.715987px;}
.x19{left:156.450000px;}
.x37{left:159.329987px;}
.x2{left:161.145000px;}
.x2a{left:192.450000px;}
.x1{left:212.430000px;}
.x2b{left:277.950000px;}
.x13{left:284.114987px;}
.x17{left:309.134987px;}
.xf{left:327.134987px;}
.x11{left:331.454987px;}
.x34{left:335.775000px;}
.x15{left:340.274987px;}
.x2c{left:363.315000px;}
.x8{left:420.375000px;}
.x12{left:446.474987px;}
.x2d{left:448.815000px;}
.x26{left:508.065000px;}
.x24{left:509.505000px;}
.x27{left:532.005000px;}
.x2e{left:534.345000px;}
.x35{left:548.565000px;}
.x2f{left:620.565000px;}
.x9{left:656.205000px;}
.x30{left:706.110000px;}
.x4{left:761.010000px;}
.xc{left:807.990000px;}
.x32{left:831.209987px;}
.x31{left:835.349987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.062400pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.120320pt;}
.lsa{letter-spacing:0.136000pt;}
.ls0{letter-spacing:0.154667pt;}
.lsd{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls8{letter-spacing:0.982400pt;}
.ls5{letter-spacing:1.280000pt;}
.ls6{letter-spacing:12.320000pt;}
.ls3{letter-spacing:12.800000pt;}
.lsf{letter-spacing:14.720000pt;}
.ls7{letter-spacing:56.912640pt;}
.wsb{word-spacing:-64.000000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws7{word-spacing:-18.244928pt;}
.ws3{word-spacing:-18.080000pt;}
.ws6{word-spacing:-18.046528pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.049067pt;}
.ws0{word-spacing:-12.005120pt;}
.ws5{word-spacing:-10.848000pt;}
.ws2{word-spacing:0.000000pt;}
._2d{margin-left:-9.493333pt;}
._b{margin-left:-4.096000pt;}
._3{margin-left:-3.072000pt;}
._11{margin-left:-1.984000pt;}
._2{margin-left:-0.896000pt;}
._0{width:0.938240pt;}
._8{width:2.133760pt;}
._9{width:3.134720pt;}
._6{width:4.224000pt;}
._16{width:5.120000pt;}
._15{width:6.144000pt;}
._c{width:7.104000pt;}
._5{width:8.320000pt;}
._a{width:9.643520pt;}
._4{width:10.816000pt;}
._7{width:12.224000pt;}
._19{width:13.120000pt;}
._17{width:14.016000pt;}
._1e{width:14.976000pt;}
._13{width:16.960000pt;}
._14{width:18.133760pt;}
._f{width:19.392000pt;}
._10{width:20.394667pt;}
._1c{width:21.312000pt;}
._1d{width:22.293760pt;}
._1f{width:23.616000pt;}
._20{width:24.512000pt;}
._18{width:25.408000pt;}
._12{width:26.752000pt;}
._e{width:28.480000pt;}
._26{width:29.461760pt;}
._1b{width:31.040000pt;}
._29{width:33.728000pt;}
._25{width:35.112320pt;}
._21{width:38.336000pt;}
._2c{width:40.448000pt;}
._1a{width:42.176000pt;}
._28{width:44.224000pt;}
._27{width:45.120000pt;}
._24{width:56.042667pt;}
._2a{width:61.504000pt;}
._2b{width:62.933760pt;}
._d{width:64.256000pt;}
._1{width:73.578667pt;}
._22{width:1458.805333pt;}
._23{width:1512.565333pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:80.000000pt;}
.fs6{font-size:80.128000pt;}
.yd9{bottom:-42.400000pt;}
.yfd{bottom:-23.040000pt;}
.yca{bottom:-19.680000pt;}
.yce{bottom:-16.800000pt;}
.yd8{bottom:-12.640000pt;}
.yde{bottom:-8.160000pt;}
.yeb{bottom:-6.240000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.839867pt;}
.y8{bottom:4.000000pt;}
.yd7{bottom:4.320000pt;}
.y3{bottom:4.800000pt;}
.y9{bottom:5.600000pt;}
.yc9{bottom:9.120000pt;}
.y11f{bottom:10.880000pt;}
.y105{bottom:10.920000pt;}
.yd2{bottom:11.040000pt;}
.yf{bottom:11.200000pt;}
.y123{bottom:11.240000pt;}
.yfc{bottom:11.680000pt;}
.y6{bottom:12.800000pt;}
.yf2{bottom:13.920000pt;}
.ye2{bottom:14.746667pt;}
.y7{bottom:16.960000pt;}
.yc{bottom:17.920000pt;}
.y103{bottom:19.520000pt;}
.ye4{bottom:20.226667pt;}
.yd6{bottom:21.280000pt;}
.yc8{bottom:23.360000pt;}
.yea{bottom:24.480000pt;}
.yd1{bottom:26.080000pt;}
.yfb{bottom:26.240000pt;}
.y122{bottom:26.600000pt;}
.ybf{bottom:26.720000pt;}
.ycd{bottom:27.866667pt;}
.yf1{bottom:28.480000pt;}
.ye0{bottom:29.760000pt;}
.y102{bottom:34.880000pt;}
.y2{bottom:35.680000pt;}
.ydd{bottom:39.200000pt;}
.yfa{bottom:42.880000pt;}
.ye9{bottom:43.200000pt;}
.y5{bottom:43.680000pt;}
.y101{bottom:50.240000pt;}
.yc7{bottom:51.680000pt;}
.ydc{bottom:52.160000pt;}
.yd5{bottom:53.480000pt;}
.yd0{bottom:57.760000pt;}
.yf9{bottom:59.360000pt;}
.ycc{bottom:59.546667pt;}
.yf0{bottom:59.840000pt;}
.ye8{bottom:62.240000pt;}
.yd4{bottom:70.440000pt;}
.yf8{bottom:76.000000pt;}
.yef{bottom:76.480000pt;}
.yc6{bottom:80.000000pt;}
.ydb{bottom:87.200000pt;}
.yf7{bottom:90.720000pt;}
.yee{bottom:92.986667pt;}
.ye7{bottom:95.080000pt;}
.y144{bottom:102.720000pt;}
.y168{bottom:105.280000pt;}
.yf6{bottom:107.360000pt;}
.y84{bottom:107.520000pt;}
.yc5{bottom:108.360000pt;}
.ybd{bottom:109.760000pt;}
.y11d{bottom:112.800000pt;}
.y113{bottom:112.960000pt;}
.y67{bottom:113.120000pt;}
.y39{bottom:113.440000pt;}
.ye6{bottom:113.640000pt;}
.y143{bottom:121.120000pt;}
.ya3{bottom:121.280000pt;}
.y167{bottom:123.680000pt;}
.yed{bottom:128.506667pt;}
.y11c{bottom:131.200000pt;}
.y66{bottom:131.520000pt;}
.y38{bottom:131.840000pt;}
.y83{bottom:133.920000pt;}
.yc4{bottom:136.680000pt;}
.y189{bottom:138.720000pt;}
.yf5{bottom:142.760000pt;}
.ybc{bottom:144.320000pt;}
.y142{bottom:147.520000pt;}
.y11b{bottom:149.600000pt;}
.y65{bottom:149.920000pt;}
.y166{bottom:150.080000pt;}
.y37{bottom:150.240000pt;}
.ya2{bottom:155.680000pt;}
.y188{bottom:157.120000pt;}
.yf4{bottom:157.320000pt;}
.y82{bottom:160.320000pt;}
.yc3{bottom:165.000000pt;}
.y141{bottom:165.920000pt;}
.y165{bottom:168.480000pt;}
.y36{bottom:168.640000pt;}
.y11a{bottom:176.026667pt;}
.y64{bottom:176.346667pt;}
.ybb{bottom:178.906667pt;}
.y187{bottom:183.546667pt;}
.y140{bottom:184.346667pt;}
.y81{bottom:186.746667pt;}
.y164{bottom:186.906667pt;}
.y35{bottom:187.066667pt;}
.ya1{bottom:190.266667pt;}
.yc2{bottom:193.320000pt;}
.yda{bottom:200.026667pt;}
.y186{bottom:201.946667pt;}
.y119{bottom:202.426667pt;}
.y63{bottom:202.746667pt;}
.ye3{bottom:209.920000pt;}
.y80{bottom:213.146667pt;}
.yba{bottom:213.306667pt;}
.y34{bottom:213.466667pt;}
.y185{bottom:220.346667pt;}
.y62{bottom:221.146667pt;}
.yc1{bottom:224.200000pt;}
.ya0{bottom:224.826667pt;}
.y118{bottom:225.306667pt;}
.y7f{bottom:231.546667pt;}
.y163{bottom:231.706667pt;}
.y61{bottom:239.546667pt;}
.y33{bottom:239.866667pt;}
.y184{bottom:246.746667pt;}
.yb9{bottom:247.866667pt;}
.y7e{bottom:249.946667pt;}
.y162{bottom:250.106667pt;}
.y60{bottom:257.946667pt;}
.y9f{bottom:259.226667pt;}
.y183{bottom:265.146667pt;}
.y32{bottom:266.266667pt;}
.y7d{bottom:268.346667pt;}
.y5f{bottom:276.346667pt;}
.y161{bottom:276.506667pt;}
.yf3{bottom:277.626667pt;}
.yb8{bottom:282.266667pt;}
.y31{bottom:284.666667pt;}
.y7c{bottom:286.746667pt;}
.y182{bottom:291.546667pt;}
.y9e{bottom:293.786667pt;}
.y5e{bottom:294.746667pt;}
.y160{bottom:294.906667pt;}
.y7b{bottom:305.146667pt;}
.y181{bottom:309.946667pt;}
.y30{bottom:311.066667pt;}
.y5d{bottom:313.146667pt;}
.y15f{bottom:313.306667pt;}
.yb7{bottom:316.826667pt;}
.y13f{bottom:321.146667pt;}
.y7a{bottom:323.546667pt;}
.y9d{bottom:328.186667pt;}
.y2f{bottom:329.466667pt;}
.y180{bottom:336.346667pt;}
.y5c{bottom:339.546667pt;}
.y15e{bottom:339.706667pt;}
.y79{bottom:341.946667pt;}
.y13e{bottom:347.546667pt;}
.y2e{bottom:347.866667pt;}
.yd3{bottom:348.346667pt;}
.yb6{bottom:351.226667pt;}
.y17f{bottom:354.746667pt;}
.y5b{bottom:357.946667pt;}
.y15d{bottom:358.106667pt;}
.y9c{bottom:362.746667pt;}
.y2d{bottom:366.266667pt;}
.y78{bottom:368.346667pt;}
.y17e{bottom:373.146667pt;}
.y13d{bottom:373.946667pt;}
.ye1{bottom:376.160000pt;}
.y5a{bottom:376.346667pt;}
.y15c{bottom:376.506667pt;}
.y2c{bottom:384.666667pt;}
.yb5{bottom:385.786667pt;}
.y9b{bottom:389.186667pt;}
.y13c{bottom:392.386667pt;}
.y59{bottom:394.786667pt;}
.y17d{bottom:399.586667pt;}
.y15b{bottom:402.946667pt;}
.y2b{bottom:403.106667pt;}
.y9a{bottom:407.586667pt;}
.y13b{bottom:410.786667pt;}
.y58{bottom:413.186667pt;}
.y17c{bottom:417.986667pt;}
.yb4{bottom:420.386667pt;}
.y15a{bottom:421.346667pt;}
.y2a{bottom:421.506667pt;}
.y99{bottom:425.986667pt;}
.y13a{bottom:429.186667pt;}
.y57{bottom:431.586667pt;}
.y17b{bottom:436.386667pt;}
.y159{bottom:439.746667pt;}
.y29{bottom:439.906667pt;}
.y98{bottom:444.386667pt;}
.y195{bottom:446.786667pt;}
.y139{bottom:447.586667pt;}
.y77{bottom:449.986667pt;}
.yb3{bottom:454.786667pt;}
.y56{bottom:457.986667pt;}
.y28{bottom:458.306667pt;}
.y17a{bottom:462.786667pt;}
.y138{bottom:465.986667pt;}
.y158{bottom:466.146667pt;}
.y76{bottom:468.386667pt;}
.y97{bottom:470.786667pt;}
.ycf{bottom:470.946667pt;}
.y194{bottom:473.186667pt;}
.y55{bottom:476.386667pt;}
.y27{bottom:476.706667pt;}
.y179{bottom:481.186667pt;}
.y137{bottom:484.386667pt;}
.y157{bottom:484.546667pt;}
.y75{bottom:486.786667pt;}
.y96{bottom:489.186667pt;}
.yb2{bottom:489.346667pt;}
.y54{bottom:494.786667pt;}
.y26{bottom:495.106667pt;}
.y178{bottom:499.586667pt;}
.y74{bottom:505.186667pt;}
.y136{bottom:510.786667pt;}
.y156{bottom:510.946667pt;}
.y53{bottom:513.186667pt;}
.y25{bottom:513.506667pt;}
.y95{bottom:515.586667pt;}
.y177{bottom:517.986667pt;}
.yec{bottom:521.026667pt;}
.y73{bottom:523.586667pt;}
.yb1{bottom:523.746667pt;}
.y193{bottom:525.986667pt;}
.y112{bottom:526.626667pt;}
.y135{bottom:529.186667pt;}
.y155{bottom:529.346667pt;}
.y52{bottom:531.586667pt;}
.y24{bottom:531.906667pt;}
.y94{bottom:533.986667pt;}
.ydf{bottom:534.560000pt;}
.y176{bottom:544.386667pt;}
.y134{bottom:547.586667pt;}
.ye{bottom:548.866667pt;}
.y51{bottom:549.986667pt;}
.y23{bottom:550.306667pt;}
.y192{bottom:552.386667pt;}
.y111{bottom:553.026667pt;}
.y154{bottom:555.746667pt;}
.yb0{bottom:558.306667pt;}
.y93{bottom:560.386667pt;}
.y175{bottom:562.786667pt;}
.y133{bottom:565.986667pt;}
.y50{bottom:568.386667pt;}
.y22{bottom:568.706667pt;}
.y191{bottom:570.786667pt;}
.y72{bottom:576.386667pt;}
.y92{bottom:578.786667pt;}
.y110{bottom:579.426667pt;}
.y174{bottom:581.186667pt;}
.y153{bottom:582.146667pt;}
.ycb{bottom:584.226667pt;}
.y132{bottom:584.386667pt;}
.y4f{bottom:586.786667pt;}
.y21{bottom:587.106667pt;}
.y190{bottom:589.186667pt;}
.yaf{bottom:592.706667pt;}
.y71{bottom:594.786667pt;}
.y10f{bottom:597.826667pt;}
.y173{bottom:599.613333pt;}
.y131{bottom:602.813333pt;}
.y91{bottom:605.213333pt;}
.y20{bottom:605.533333pt;}
.y152{bottom:608.573333pt;}
.y4e{bottom:613.213333pt;}
.y18f{bottom:615.613333pt;}
.y10e{bottom:616.253333pt;}
.y90{bottom:623.613333pt;}
.y1f{bottom:623.933333pt;}
.y172{bottom:626.013333pt;}
.yae{bottom:627.293333pt;}
.y130{bottom:629.213333pt;}
.y4d{bottom:631.613333pt;}
.y18e{bottom:634.013333pt;}
.y10d{bottom:634.653333pt;}
.y151{bottom:634.973333pt;}
.y117{bottom:640.893333pt;}
.y171{bottom:644.413333pt;}
.y12f{bottom:647.613333pt;}
.y4c{bottom:650.013333pt;}
.y1e{bottom:650.333333pt;}
.y10c{bottom:653.053333pt;}
.y150{bottom:653.373333pt;}
.y18d{bottom:660.413333pt;}
.yad{bottom:661.853333pt;}
.y12e{bottom:666.013333pt;}
.y116{bottom:667.293333pt;}
.y4b{bottom:668.413333pt;}
.y170{bottom:670.813333pt;}
.y10b{bottom:671.453333pt;}
.y14f{bottom:671.773333pt;}
.y1d{bottom:676.733333pt;}
.y18c{bottom:678.813333pt;}
.y12d{bottom:684.413333pt;}
.y4a{bottom:686.813333pt;}
.y16f{bottom:689.213333pt;}
.y10a{bottom:689.853333pt;}
.y14e{bottom:690.173333pt;}
.y115{bottom:693.693333pt;}
.yac{bottom:696.253333pt;}
.y18b{bottom:697.213333pt;}
.y12c{bottom:702.813333pt;}
.y1c{bottom:703.133333pt;}
.y49{bottom:705.213333pt;}
.yc0{bottom:705.533333pt;}
.y109{bottom:708.253333pt;}
.y16e{bottom:715.613333pt;}
.y14d{bottom:716.573333pt;}
.y114{bottom:720.093333pt;}
.y12b{bottom:721.213333pt;}
.y48{bottom:723.613333pt;}
.ye5{bottom:727.453333pt;}
.y1b{bottom:727.613333pt;}
.yab{bottom:730.813333pt;}
.y70{bottom:731.613333pt;}
.y16d{bottom:734.013333pt;}
.y108{bottom:734.653333pt;}
.y14c{bottom:734.973333pt;}
.y12a{bottom:739.613333pt;}
.y47{bottom:742.013333pt;}
.y125{bottom:743.613333pt;}
.y1a{bottom:747.933333pt;}
.y14b{bottom:754.493333pt;}
.y6f{bottom:758.013333pt;}
.y46{bottom:760.413333pt;}
.y107{bottom:761.053333pt;}
.yaa{bottom:765.213333pt;}
.y129{bottom:766.013333pt;}
.y8f{bottom:768.413333pt;}
.y14a{bottom:772.893333pt;}
.y124{bottom:775.613333pt;}
.y6e{bottom:776.413333pt;}
.ybe{bottom:777.280000pt;}
.y16c{bottom:778.813333pt;}
.y106{bottom:779.453333pt;}
.y19{bottom:780.413333pt;}
.y128{bottom:784.413333pt;}
.y45{bottom:786.813333pt;}
.y149{bottom:792.413333pt;}
.y6d{bottom:794.813333pt;}
.ya9{bottom:799.773333pt;}
.y18{bottom:800.733333pt;}
.y127{bottom:802.813333pt;}
.y104{bottom:802.973333pt;}
.y8e{bottom:805.213333pt;}
.y121{bottom:807.613333pt;}
.y148{bottom:810.973333pt;}
.y44{bottom:813.253333pt;}
.y126{bottom:821.253333pt;}
.y8d{bottom:823.653333pt;}
.y17{bottom:827.173333pt;}
.y147{bottom:830.533333pt;}
.y6c{bottom:831.653333pt;}
.ya8{bottom:834.213333pt;}
.y100{bottom:835.013333pt;}
.y43{bottom:839.653333pt;}
.y8c{bottom:842.053333pt;}
.y146{bottom:848.773333pt;}
.y18a{bottom:850.053333pt;}
.y16{bottom:853.573333pt;}
.y120{bottom:855.333333pt;}
.y42{bottom:858.053333pt;}
.y8b{bottom:860.453333pt;}
.y145{bottom:867.333333pt;}
.y16b{bottom:868.453333pt;}
.ya7{bottom:868.773333pt;}
.y15{bottom:871.973333pt;}
.y6b{bottom:876.453333pt;}
.y8a{bottom:878.853333pt;}
.y41{bottom:884.453333pt;}
.y16a{bottom:886.853333pt;}
.y11e{bottom:887.333333pt;}
.y6a{bottom:894.853333pt;}
.y89{bottom:897.253333pt;}
.y14{bottom:898.373333pt;}
.y40{bottom:902.853333pt;}
.ya6{bottom:903.333333pt;}
.y69{bottom:913.253333pt;}
.y88{bottom:915.653333pt;}
.y13{bottom:916.773333pt;}
.yff{bottom:917.893333pt;}
.y3f{bottom:921.253333pt;}
.y68{bottom:931.653333pt;}
.y87{bottom:934.053333pt;}
.ya5{bottom:937.733333pt;}
.y3e{bottom:939.653333pt;}
.yfe{bottom:944.293333pt;}
.y169{bottom:950.053333pt;}
.y12{bottom:952.453333pt;}
.y3d{bottom:958.053333pt;}
.y86{bottom:960.453333pt;}
.y3c{bottom:976.453333pt;}
.ya4{bottom:978.693333pt;}
.y11{bottom:978.853333pt;}
.y85{bottom:986.853333pt;}
.y3b{bottom:994.853333pt;}
.y10{bottom:1005.253333pt;}
.y3a{bottom:1013.253333pt;}
.y4{bottom:1059.360000pt;}
.y1{bottom:1067.360000pt;}
.yb{bottom:1107.840000pt;}
.ya{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.h8{height:19.040000pt;}
.hb{height:25.120000pt;}
.h27{height:31.360000pt;}
.h26{height:31.392000pt;}
.hf{height:35.782187pt;}
.h13{height:36.766250pt;}
.h14{height:38.672812pt;}
.h17{height:42.649687pt;}
.h16{height:43.905937pt;}
.h9{height:44.327188pt;}
.h28{height:45.546250pt;}
.h29{height:47.072000pt;}
.h1b{height:47.742188pt;}
.h2{height:48.800000pt;}
.h1a{height:49.148438pt;}
.h1c{height:52.834688pt;}
.hd{height:53.406250pt;}
.h7{height:54.390938pt;}
.hc{height:54.875000pt;}
.h4{height:56.800000pt;}
.he{height:57.886250pt;}
.ha{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3{height:65.531250pt;}
.h18{height:67.840000pt;}
.h15{height:69.632000pt;}
.h25{height:70.720000pt;}
.h19{height:81.792000pt;}
.h11{height:81.914063pt;}
.h21{height:82.045125pt;}
.h1d{height:97.280000pt;}
.h1f{height:108.640000pt;}
.h1e{height:122.560000pt;}
.h22{height:126.432000pt;}
.h20{height:131.360000pt;}
.h23{height:139.866667pt;}
.h10{height:146.400000pt;}
.h24{height:168.826667pt;}
.h12{height:234.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:24.160000pt;}
.we{width:24.320000pt;}
.w9{width:24.640000pt;}
.w3{width:66.880000pt;}
.w12{width:75.200000pt;}
.w14{width:75.232000pt;}
.w13{width:75.360000pt;}
.w16{width:75.392000pt;}
.w8{width:75.546667pt;}
.w15{width:76.000000pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w6{width:178.306667pt;}
.w19{width:182.906667pt;}
.w18{width:188.506667pt;}
.w17{width:195.546667pt;}
.wf{width:239.706667pt;}
.w11{width:244.186667pt;}
.w10{width:246.586667pt;}
.wa{width:284.386667pt;}
.wb{width:293.986667pt;}
.wc{width:294.146667pt;}
.w2{width:319.266667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x29{left:6.880000pt;}
.xd{left:9.600000pt;}
.x28{left:17.600000pt;}
.x5{left:19.360000pt;}
.x1d{left:22.400000pt;}
.x1a{left:24.320000pt;}
.xa{left:27.720000pt;}
.x1f{left:32.000000pt;}
.x1b{left:33.600000pt;}
.x22{left:36.474667pt;}
.x7{left:42.080000pt;}
.x1e{left:43.360000pt;}
.x3{left:45.440000pt;}
.x1c{left:57.600000pt;}
.x25{left:73.120000pt;}
.x23{left:89.920000pt;}
.xb{left:94.431988pt;}
.x18{left:97.120000pt;}
.xe{left:100.831988pt;}
.x33{left:102.272000pt;}
.x10{left:108.351988pt;}
.x16{left:110.591988pt;}
.x14{left:116.511988pt;}
.x20{left:122.280000pt;}
.x21{left:130.912000pt;}
.x36{left:132.191988pt;}
.x19{left:139.066667pt;}
.x37{left:141.626655pt;}
.x2{left:143.240000pt;}
.x2a{left:171.066667pt;}
.x1{left:188.826667pt;}
.x2b{left:247.066667pt;}
.x13{left:252.546655pt;}
.x17{left:274.786655pt;}
.xf{left:290.786655pt;}
.x11{left:294.626655pt;}
.x34{left:298.466667pt;}
.x15{left:302.466655pt;}
.x2c{left:322.946667pt;}
.x8{left:373.666667pt;}
.x12{left:396.866655pt;}
.x2d{left:398.946667pt;}
.x26{left:451.613333pt;}
.x24{left:452.893333pt;}
.x27{left:472.893333pt;}
.x2e{left:474.973333pt;}
.x35{left:487.613333pt;}
.x2f{left:551.613333pt;}
.x9{left:583.293333pt;}
.x30{left:627.653333pt;}
.x4{left:676.453333pt;}
.xc{left:718.213333pt;}
.x32{left:738.853322pt;}
.x31{left:742.533322pt;}
}




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