
    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_c91b7117afcbcc7ef33b45aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_42b4e8829e2dfd5906693ac1.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_f88953c2810bb24287e3322d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cd9edd34a2ef183f45fb8fa2.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_6d62b8c4fa8898cac2e59c66.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901855;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_47877c2857dd6486cd3b033c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_131070eba90544ad1d4f9afd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_189cef3aa6cf147dec51969c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_65d5a4d2a455ce352a6e8149.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cf65c7d4b79bc40138bb52c9.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_be4ffa147cdf6c56f122ade6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.747559;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:fff;src:url('chunks/assets/font_6f3a64d1ab951cb5cda72cfe.woff2')format("woff");}.fff{font-family:fff;line-height:0.738770;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:ff10;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.680000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:13.680000px;}
.v5{vertical-align:44.640000px;}
.v4{vertical-align:50.400000px;}
.v1{vertical-align:53.280000px;}
.v3{vertical-align:58.500000px;}
.ls2{letter-spacing:-0.472200px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.023040px;}
.ls13{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.852480px;}
.ls0{letter-spacing:1.572480px;}
.ls6{letter-spacing:1.692480px;}
.ls10{letter-spacing:2.250000px;}
.ls15{letter-spacing:11.105280px;}
.ls9{letter-spacing:13.904640px;}
.lsb{letter-spacing:14.598720px;}
.lsc{letter-spacing:14.744640px;}
.lsf{letter-spacing:17.071200px;}
.lsd{letter-spacing:18.198720px;}
.ls16{letter-spacing:38.309760px;}
.ls3{letter-spacing:39.905280px;}
.ls4{letter-spacing:42.785280px;}
.ls14{letter-spacing:55.386720px;}
.lsa{letter-spacing:59.321280px;}
.ls12{letter-spacing:64.002720px;}
.ls11{letter-spacing:64.026720px;}
.lse{letter-spacing:847.596000px;}
.ls5{letter-spacing:847.740000px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws12{word-spacing:-59.760000px;}
.ws0{word-spacing:-14.970240px;}
.wse{word-spacing:-14.595840px;}
.ws6{word-spacing:-14.572800px;}
.ws8{word-spacing:-10.612800px;}
.ws4{word-spacing:-0.915840px;}
.ws2{word-spacing:-0.280320px;}
.wsb{word-spacing:-0.195840px;}
.ws1{word-spacing:0.000000px;}
.ws10{word-spacing:0.025920px;}
.ws5{word-spacing:0.051840px;}
.ws15{word-spacing:0.145920px;}
.wsd{word-spacing:2.684160px;}
.wsf{word-spacing:3.193920px;}
.ws13{word-spacing:3.412800px;}
.ws7{word-spacing:3.458880px;}
.ws3{word-spacing:3.620160px;}
.ws11{word-spacing:3.913920px;}
.ws14{word-spacing:5.685120px;}
.ws9{word-spacing:6.695040px;}
.wsc{word-spacing:76.124160px;}
._47{margin-left:-60.876960px;}
._21{margin-left:-58.697760px;}
._46{margin-left:-55.508640px;}
._38{margin-left:-48.910320px;}
._10{margin-left:-43.926000px;}
._3f{margin-left:-42.496320px;}
._29{margin-left:-40.278720px;}
._6{margin-left:-39.110160px;}
._36{margin-left:-36.993120px;}
._48{margin-left:-35.613600px;}
._3b{margin-left:-32.558880px;}
._3c{margin-left:-30.861120px;}
._2d{margin-left:-29.425920px;}
._3d{margin-left:-26.533680px;}
._2e{margin-left:-25.308480px;}
._35{margin-left:-22.740960px;}
._e{margin-left:-21.137760px;}
._20{margin-left:-19.880160px;}
._40{margin-left:-17.754240px;}
._14{margin-left:-16.421520px;}
._24{margin-left:-14.157120px;}
._33{margin-left:-13.155360px;}
._43{margin-left:-11.830560px;}
._1a{margin-left:-10.766400px;}
._15{margin-left:-9.368160px;}
._d{margin-left:-8.065680px;}
._c{margin-left:-6.892560px;}
._23{margin-left:-5.886240px;}
._a{margin-left:-4.812000px;}
._b{margin-left:-3.238560px;}
._0{margin-left:-1.258800px;}
._17{width:1.307520px;}
._4{width:2.518560px;}
._8{width:4.105680px;}
._16{width:5.537280px;}
._9{width:6.691440px;}
._f{width:7.918800px;}
._11{width:9.672960px;}
._45{width:10.676160px;}
._1d{width:12.482160px;}
._5{width:14.266800px;}
._49{width:16.133040px;}
._18{width:17.939040px;}
._7{width:19.842000px;}
._22{width:21.005760px;}
._2c{width:22.988640px;}
._3{width:24.088320px;}
._31{width:25.127520px;}
._1e{width:27.548160px;}
._2f{width:31.708560px;}
._3e{width:34.830720px;}
._39{width:36.198720px;}
._4c{width:37.645440px;}
._13{width:39.684000px;}
._3a{width:42.418560px;}
._1f{width:43.562400px;}
._2{width:45.566400px;}
._1{width:49.289520px;}
._27{width:52.804320px;}
._4f{width:57.808320px;}
._28{width:60.583680px;}
._26{width:62.665440px;}
._42{width:65.071680px;}
._32{width:67.924320px;}
._2b{width:70.005120px;}
._4b{width:71.779920px;}
._55{width:76.501440px;}
._51{width:83.844000px;}
._52{width:85.898880px;}
._4d{width:91.822560px;}
._1b{width:95.929440px;}
._2a{width:97.648800px;}
._30{width:103.528320px;}
._25{width:105.671760px;}
._37{width:110.036640px;}
._1c{width:120.935760px;}
._44{width:127.559040px;}
._12{width:140.136000px;}
._41{width:148.630560px;}
._53{width:153.527520px;}
._54{width:156.462720px;}
._4a{width:169.369440px;}
._4e{width:188.694240px;}
._50{width:212.327520px;}
._19{width:244.019040px;}
._56{width:251.847840px;}
._34{width:1298.759520px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:6.660000px;}
.ybe{bottom:6.705000px;}
.y1c{bottom:6.840000px;}
.y36{bottom:17.280000px;}
.y1d{bottom:18.540000px;}
.y1b{bottom:25.380000px;}
.y10{bottom:28.800000px;}
.y37{bottom:56.520000px;}
.y1e{bottom:57.420000px;}
.y7{bottom:66.780000px;}
.y34{bottom:77.220000px;}
.y1a{bottom:78.300000px;}
.y6{bottom:103.140000px;}
.y5{bottom:133.020000px;}
.y90{bottom:141.300000px;}
.ye1{bottom:144.540000px;}
.y4c{bottom:147.960000px;}
.ye7{bottom:150.480000px;}
.y4{bottom:153.900000px;}
.y73{bottom:158.940000px;}
.yf9{bottom:165.420000px;}
.y8f{bottom:166.860000px;}
.y33{bottom:169.560000px;}
.ye0{bottom:170.100000px;}
.y72{bottom:184.680000px;}
.y3{bottom:185.400000px;}
.yb1{bottom:186.840000px;}
.yf8{bottom:190.980000px;}
.y5d{bottom:191.910000px;}
.y8e{bottom:192.450000px;}
.yaa{bottom:194.790000px;}
.y32{bottom:195.150000px;}
.ye9{bottom:199.110000px;}
.y2{bottom:203.970000px;}
.ydf{bottom:204.870000px;}
.yc5{bottom:205.770000px;}
.y71{bottom:210.450000px;}
.y5c{bottom:212.250000px;}
.y8d{bottom:218.190000px;}
.ya9{bottom:220.350000px;}
.y31{bottom:220.710000px;}
.yf7{bottom:225.570000px;}
.yc4{bottom:232.590000px;}
.y70{bottom:239.250000px;}
.yde{bottom:240.150000px;}
.ya8{bottom:246.090000px;}
.y30{bottom:246.270000px;}
.y6f{bottom:250.410000px;}
.yf6{bottom:251.310000px;}
.y8c{bottom:252.750000px;}
.y18{bottom:258.150000px;}
.yc3{bottom:259.410000px;}
.ydd{bottom:265.710000px;}
.ya7{bottom:271.650000px;}
.y2f{bottom:272.010000px;}
.yf5{bottom:276.870000px;}
.y17{bottom:283.710000px;}
.yc2{bottom:286.050000px;}
.y8b{bottom:288.030000px;}
.ydc{bottom:291.450000px;}
.y6e{bottom:295.050000px;}
.y2e{bottom:297.570000px;}
.yf4{bottom:302.430000px;}
.ya6{bottom:306.390000px;}
.y16{bottom:309.270000px;}
.yc1{bottom:312.870000px;}
.y8a{bottom:313.770000px;}
.ydb{bottom:317.010000px;}
.y10f{bottom:324.930000px;}
.y2d{bottom:326.190000px;}
.yf3{bottom:327.990000px;}
.y6d{bottom:329.790000px;}
.y15{bottom:335.010000px;}
.yc0{bottom:339.690000px;}
.ya5{bottom:341.670000px;}
.y89{bottom:348.510000px;}
.y10e{bottom:350.670000px;}
.yda{bottom:351.750000px;}
.yf2{bottom:353.550000px;}
.y6c{bottom:356.070000px;}
.y14{bottom:360.570000px;}
.ybf{bottom:366.330000px;}
.ya4{bottom:367.230000px;}
.y88{bottom:374.610000px;}
.y10d{bottom:385.950000px;}
.y13{bottom:386.130000px;}
.yd9{bottom:387.030000px;}
.yf1{bottom:388.290000px;}
.y6b{bottom:390.630000px;}
.ya3{bottom:392.790000px;}
.ybd{bottom:393.150000px;}
.y6a{bottom:401.835000px;}
.y87{bottom:409.935000px;}
.y12{bottom:411.735000px;}
.y10c{bottom:411.915000px;}
.yd8{bottom:412.815000px;}
.yf0{bottom:413.895000px;}
.ya2{bottom:418.395000px;}
.ybc{bottom:420.015000px;}
.ye6{bottom:422.175000px;}
.y11{bottom:437.475000px;}
.yef{bottom:439.455000px;}
.ya1{bottom:444.135000px;}
.y86{bottom:444.855000px;}
.y5b{bottom:446.475000px;}
.y69{bottom:446.655000px;}
.y10b{bottom:447.015000px;}
.yd7{bottom:447.915000px;}
.yee{bottom:465.015000px;}
.ya0{bottom:469.695000px;}
.y5a{bottom:472.035000px;}
.y4b{bottom:472.215000px;}
.y10a{bottom:472.755000px;}
.ybb{bottom:473.475000px;}
.y85{bottom:480.135000px;}
.y68{bottom:481.395000px;}
.yd6{bottom:483.375000px;}
.yf{bottom:490.395000px;}
.yed{bottom:490.755000px;}
.y59{bottom:497.595000px;}
.y4a{bottom:497.775000px;}
.y109{bottom:498.495000px;}
.yba{bottom:500.295000px;}
.y9f{bottom:504.435000px;}
.yd5{bottom:509.655000px;}
.y84{bottom:514.695000px;}
.yec{bottom:516.315000px;}
.y67{bottom:516.675000px;}
.y58{bottom:523.155000px;}
.y49{bottom:523.335000px;}
.yb9{bottom:526.935000px;}
.y108{bottom:533.775000px;}
.y9e{bottom:539.715000px;}
.y66{bottom:542.415000px;}
.yd4{bottom:544.215000px;}
.y57{bottom:548.895000px;}
.y48{bottom:549.075000px;}
.y83{bottom:549.615000px;}
.yeb{bottom:551.055000px;}
.yb8{bottom:553.755000px;}
.y107{bottom:559.695000px;}
.y65{bottom:568.695000px;}
.y56{bottom:574.455000px;}
.y47{bottom:574.635000px;}
.y9d{bottom:575.175000px;}
.y82{bottom:575.895000px;}
.yd3{bottom:579.495000px;}
.yea{bottom:580.215000px;}
.yb7{bottom:580.575000px;}
.y106{bottom:594.795000px;}
.ye{bottom:599.655000px;}
.y55{bottom:600.015000px;}
.y46{bottom:600.195000px;}
.y64{bottom:601.125000px;}
.yd2{bottom:605.265000px;}
.yb6{bottom:607.245000px;}
.y9c{bottom:609.765000px;}
.y81{bottom:611.205000px;}
.y105{bottom:620.565000px;}
.y2c{bottom:625.785000px;}
.yd1{bottom:630.825000px;}
.yb5{bottom:634.065000px;}
.y54{bottom:634.785000px;}
.y45{bottom:634.965000px;}
.y63{bottom:635.145000px;}
.y9b{bottom:635.325000px;}
.yd{bottom:641.265000px;}
.y80{bottom:646.305000px;}
.y2b{bottom:651.345000px;}
.y104{bottom:655.665000px;}
.yb4{bottom:660.705000px;}
.y62{bottom:660.885000px;}
.yc{bottom:664.485000px;}
.yd0{bottom:665.565000px;}
.y44{bottom:670.065000px;}
.y53{bottom:670.245000px;}
.y7f{bottom:672.045000px;}
.y2a{bottom:677.085000px;}
.y103{bottom:681.405000px;}
.y9a{bottom:686.445000px;}
.yb3{bottom:687.525000px;}
.ye5{bottom:688.785000px;}
.y61{bottom:693.105000px;}
.y43{bottom:695.625000px;}
.y7e{bottom:697.605000px;}
.ycf{bottom:700.845000px;}
.yb{bottom:701.745000px;}
.y29{bottom:702.645000px;}
.y52{bottom:705.345000px;}
.y99{bottom:712.185000px;}
.yb2{bottom:714.345000px;}
.y102{bottom:716.505000px;}
.y42{bottom:721.185000px;}
.y7d{bottom:723.165000px;}
.yce{bottom:726.405000px;}
.y60{bottom:727.305000px;}
.y51{bottom:730.905000px;}
.y28{bottom:737.385000px;}
.y98{bottom:737.745000px;}
.ye4{bottom:739.905000px;}
.y101{bottom:742.245000px;}
.y41{bottom:746.925000px;}
.y7c{bottom:748.905000px;}
.ycd{bottom:751.965000px;}
.y50{bottom:756.465000px;}
.y5f{bottom:761.865000px;}
.yb0{bottom:762.405000px;}
.y97{bottom:763.305000px;}
.ye3{bottom:765.465000px;}
.ya{bottom:767.445000px;}
.y100{bottom:777.345000px;}
.ycc{bottom:777.525000px;}
.y40{bottom:781.485000px;}
.y27{bottom:781.665000px;}
.y4f{bottom:782.205000px;}
.y7b{bottom:784.005000px;}
.yaf{bottom:788.145000px;}
.y96{bottom:788.865000px;}
.ye2{bottom:791.205000px;}
.y5e{bottom:797.325000px;}
.yff{bottom:803.085000px;}
.ycb{bottom:803.265000px;}
.y9{bottom:805.830000px;}
.y3f{bottom:807.090000px;}
.y4e{bottom:807.810000px;}
.y7a{bottom:809.790000px;}
.y95{bottom:814.470000px;}
.y26{bottom:816.810000px;}
.ye8{bottom:817.890000px;}
.yae{bottom:822.750000px;}
.y3e{bottom:832.650000px;}
.y4d{bottom:833.370000px;}
.yca{bottom:837.870000px;}
.yfe{bottom:838.230000px;}
.y79{bottom:838.590000px;}
.y25{bottom:842.370000px;}
.y94{bottom:849.210000px;}
.y78{bottom:849.750000px;}
.y3d{bottom:858.210000px;}
.yfd{bottom:863.970000px;}
.y24{bottom:867.930000px;}
.yc9{bottom:873.330000px;}
.yad{bottom:883.770000px;}
.y3c{bottom:883.950000px;}
.y93{bottom:884.490000px;}
.y23{bottom:893.490000px;}
.y77{bottom:894.210000px;}
.yc8{bottom:898.890000px;}
.yfc{bottom:899.070000px;}
.y8{bottom:904.290000px;}
.yac{bottom:909.330000px;}
.y3b{bottom:909.510000px;}
.y92{bottom:910.230000px;}
.y22{bottom:919.230000px;}
.yfb{bottom:924.810000px;}
.yc7{bottom:925.170000px;}
.y76{bottom:926.430000px;}
.yab{bottom:934.890000px;}
.y3a{bottom:935.070000px;}
.y91{bottom:935.790000px;}
.y21{bottom:944.790000px;}
.yc6{bottom:959.730000px;}
.yfa{bottom:960.090000px;}
.y75{bottom:960.450000px;}
.y39{bottom:960.630000px;}
.y20{bottom:970.350000px;}
.y74{bottom:995.190000px;}
.y38{bottom:995.370000px;}
.y1f{bottom:995.910000px;}
.y19{bottom:1036.260000px;}
.y1{bottom:1036.980000px;}
.h15{height:23.760000px;}
.h16{height:23.796000px;}
.h14{height:24.300000px;}
.hc{height:46.251562px;}
.hb{height:46.260000px;}
.h3{height:47.980898px;}
.h13{height:53.237812px;}
.h4{height:53.709961px;}
.hd{height:57.927656px;}
.he{height:58.930312px;}
.h8{height:59.439023px;}
.h9{height:64.800000px;}
.h2{height:65.884219px;}
.ha{height:67.824844px;}
.h7{height:73.722656px;}
.h5{height:83.787539px;}
.h11{height:109.330312px;}
.h12{height:110.524219px;}
.h6{height:110.583984px;}
.h10{height:110.704219px;}
.hf{height:112.210312px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w4{width:37.080000px;}
.w6{width:37.440000px;}
.w7{width:54.360000px;}
.w9{width:84.960000px;}
.wb{width:127.476000px;}
.w8{width:127.656000px;}
.wa{width:223.410000px;}
.w5{width:635.865000px;}
.w3{width:641.670000px;}
.w2{width:677.805000px;}
.w1{width:850.499987px;}
.w0{width:850.500000px;}
.x0{left:0.000000px;}
.x1b{left:1.440000px;}
.x3{left:8.100000px;}
.x5{left:66.960000px;}
.x7{left:75.599987px;}
.x1a{left:97.416000px;}
.x18{left:102.635987px;}
.x2{left:105.336000px;}
.x1{left:113.435987px;}
.x9{left:129.635987px;}
.xc{left:140.435987px;}
.x1c{left:151.770000px;}
.xf{left:167.429987px;}
.x1d{left:279.435000px;}
.x10{left:322.634987px;}
.x19{left:324.254987px;}
.x4{left:343.874987px;}
.x13{left:348.554987px;}
.x16{left:350.174987px;}
.x15{left:357.914987px;}
.x1e{left:364.395000px;}
.x17{left:380.774987px;}
.x11{left:382.934987px;}
.xe{left:393.374987px;}
.x14{left:397.874987px;}
.x12{left:413.354987px;}
.x1f{left:587.805000px;}
.x24{left:632.489987px;}
.x22{left:648.329987px;}
.x23{left:659.129987px;}
.xd{left:660.209987px;}
.x20{left:666.329987px;}
.x21{left:677.669987px;}
.x6{left:708.630000px;}
.x8{left:722.849987px;}
.xa{left:740.670000px;}
.xb{left:775.049987px;}
@media print{
.v2{vertical-align:-12.160000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.160000pt;}
.v5{vertical-align:39.680000pt;}
.v4{vertical-align:44.800000pt;}
.v1{vertical-align:47.360000pt;}
.v3{vertical-align:52.000000pt;}
.ls2{letter-spacing:-0.419733pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.020480pt;}
.ls13{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.757760pt;}
.ls0{letter-spacing:1.397760pt;}
.ls6{letter-spacing:1.504427pt;}
.ls10{letter-spacing:2.000000pt;}
.ls15{letter-spacing:9.871360pt;}
.ls9{letter-spacing:12.359680pt;}
.lsb{letter-spacing:12.976640pt;}
.lsc{letter-spacing:13.106347pt;}
.lsf{letter-spacing:15.174400pt;}
.lsd{letter-spacing:16.176640pt;}
.ls16{letter-spacing:34.053120pt;}
.ls3{letter-spacing:35.471360pt;}
.ls4{letter-spacing:38.031360pt;}
.ls14{letter-spacing:49.232640pt;}
.lsa{letter-spacing:52.730027pt;}
.ls12{letter-spacing:56.891307pt;}
.ls11{letter-spacing:56.912640pt;}
.lse{letter-spacing:753.418667pt;}
.ls5{letter-spacing:753.546667pt;}
.wsa{word-spacing:-58.880000pt;}
.ws12{word-spacing:-53.120000pt;}
.ws0{word-spacing:-13.306880pt;}
.wse{word-spacing:-12.974080pt;}
.ws6{word-spacing:-12.953600pt;}
.ws8{word-spacing:-9.433600pt;}
.ws4{word-spacing:-0.814080pt;}
.ws2{word-spacing:-0.249173pt;}
.wsb{word-spacing:-0.174080pt;}
.ws1{word-spacing:0.000000pt;}
.ws10{word-spacing:0.023040pt;}
.ws5{word-spacing:0.046080pt;}
.ws15{word-spacing:0.129707pt;}
.wsd{word-spacing:2.385920pt;}
.wsf{word-spacing:2.839040pt;}
.ws13{word-spacing:3.033600pt;}
.ws7{word-spacing:3.074560pt;}
.ws3{word-spacing:3.217920pt;}
.ws11{word-spacing:3.479040pt;}
.ws14{word-spacing:5.053440pt;}
.ws9{word-spacing:5.951147pt;}
.wsc{word-spacing:67.665920pt;}
._47{margin-left:-54.112853pt;}
._21{margin-left:-52.175787pt;}
._46{margin-left:-49.341013pt;}
._38{margin-left:-43.475840pt;}
._10{margin-left:-39.045333pt;}
._3f{margin-left:-37.774507pt;}
._29{margin-left:-35.803307pt;}
._6{margin-left:-34.764587pt;}
._36{margin-left:-32.882773pt;}
._48{margin-left:-31.656533pt;}
._3b{margin-left:-28.941227pt;}
._3c{margin-left:-27.432107pt;}
._2d{margin-left:-26.156373pt;}
._3d{margin-left:-23.585493pt;}
._2e{margin-left:-22.496427pt;}
._35{margin-left:-20.214187pt;}
._e{margin-left:-18.789120pt;}
._20{margin-left:-17.671253pt;}
._40{margin-left:-15.781547pt;}
._14{margin-left:-14.596907pt;}
._24{margin-left:-12.584107pt;}
._33{margin-left:-11.693653pt;}
._43{margin-left:-10.516053pt;}
._1a{margin-left:-9.570133pt;}
._15{margin-left:-8.327253pt;}
._d{margin-left:-7.169493pt;}
._c{margin-left:-6.126720pt;}
._23{margin-left:-5.232213pt;}
._a{margin-left:-4.277333pt;}
._b{margin-left:-2.878720pt;}
._0{margin-left:-1.118933pt;}
._17{width:1.162240pt;}
._4{width:2.238720pt;}
._8{width:3.649493pt;}
._16{width:4.922027pt;}
._9{width:5.947947pt;}
._f{width:7.038933pt;}
._11{width:8.598187pt;}
._45{width:9.489920pt;}
._1d{width:11.095253pt;}
._5{width:12.681600pt;}
._49{width:14.340480pt;}
._18{width:15.945813pt;}
._7{width:17.637333pt;}
._22{width:18.671787pt;}
._2c{width:20.434347pt;}
._3{width:21.411840pt;}
._31{width:22.335573pt;}
._1e{width:24.487253pt;}
._2f{width:28.185387pt;}
._3e{width:30.960640pt;}
._39{width:32.176640pt;}
._4c{width:33.462613pt;}
._13{width:35.274667pt;}
._3a{width:37.705387pt;}
._1f{width:38.722133pt;}
._2{width:40.503467pt;}
._1{width:43.812907pt;}
._27{width:46.937173pt;}
._4f{width:51.385173pt;}
._28{width:53.852160pt;}
._26{width:55.702613pt;}
._42{width:57.841493pt;}
._32{width:60.377173pt;}
._2b{width:62.226773pt;}
._4b{width:63.804373pt;}
._55{width:68.001280pt;}
._51{width:74.528000pt;}
._52{width:76.354560pt;}
._4d{width:81.620053pt;}
._1b{width:85.270613pt;}
._2a{width:86.798933pt;}
._30{width:92.025173pt;}
._25{width:93.930453pt;}
._37{width:97.810347pt;}
._1c{width:107.498453pt;}
._44{width:113.385813pt;}
._12{width:124.565333pt;}
._41{width:132.116053pt;}
._53{width:136.468907pt;}
._54{width:139.077973pt;}
._4a{width:150.550613pt;}
._4e{width:167.728213pt;}
._50{width:188.735573pt;}
._19{width:216.905813pt;}
._56{width:223.864747pt;}
._34{width:1154.452907pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:5.920000pt;}
.ybe{bottom:5.960000pt;}
.y1c{bottom:6.080000pt;}
.y36{bottom:15.360000pt;}
.y1d{bottom:16.480000pt;}
.y1b{bottom:22.560000pt;}
.y10{bottom:25.600000pt;}
.y37{bottom:50.240000pt;}
.y1e{bottom:51.040000pt;}
.y7{bottom:59.360000pt;}
.y34{bottom:68.640000pt;}
.y1a{bottom:69.600000pt;}
.y6{bottom:91.680000pt;}
.y5{bottom:118.240000pt;}
.y90{bottom:125.600000pt;}
.ye1{bottom:128.480000pt;}
.y4c{bottom:131.520000pt;}
.ye7{bottom:133.760000pt;}
.y4{bottom:136.800000pt;}
.y73{bottom:141.280000pt;}
.yf9{bottom:147.040000pt;}
.y8f{bottom:148.320000pt;}
.y33{bottom:150.720000pt;}
.ye0{bottom:151.200000pt;}
.y72{bottom:164.160000pt;}
.y3{bottom:164.800000pt;}
.yb1{bottom:166.080000pt;}
.yf8{bottom:169.760000pt;}
.y5d{bottom:170.586667pt;}
.y8e{bottom:171.066667pt;}
.yaa{bottom:173.146667pt;}
.y32{bottom:173.466667pt;}
.ye9{bottom:176.986667pt;}
.y2{bottom:181.306667pt;}
.ydf{bottom:182.106667pt;}
.yc5{bottom:182.906667pt;}
.y71{bottom:187.066667pt;}
.y5c{bottom:188.666667pt;}
.y8d{bottom:193.946667pt;}
.ya9{bottom:195.866667pt;}
.y31{bottom:196.186667pt;}
.yf7{bottom:200.506667pt;}
.yc4{bottom:206.746667pt;}
.y70{bottom:212.666667pt;}
.yde{bottom:213.466667pt;}
.ya8{bottom:218.746667pt;}
.y30{bottom:218.906667pt;}
.y6f{bottom:222.586667pt;}
.yf6{bottom:223.386667pt;}
.y8c{bottom:224.666667pt;}
.y18{bottom:229.466667pt;}
.yc3{bottom:230.586667pt;}
.ydd{bottom:236.186667pt;}
.ya7{bottom:241.466667pt;}
.y2f{bottom:241.786667pt;}
.yf5{bottom:246.106667pt;}
.y17{bottom:252.186667pt;}
.yc2{bottom:254.266667pt;}
.y8b{bottom:256.026667pt;}
.ydc{bottom:259.066667pt;}
.y6e{bottom:262.266667pt;}
.y2e{bottom:264.506667pt;}
.yf4{bottom:268.826667pt;}
.ya6{bottom:272.346667pt;}
.y16{bottom:274.906667pt;}
.yc1{bottom:278.106667pt;}
.y8a{bottom:278.906667pt;}
.ydb{bottom:281.786667pt;}
.y10f{bottom:288.826667pt;}
.y2d{bottom:289.946667pt;}
.yf3{bottom:291.546667pt;}
.y6d{bottom:293.146667pt;}
.y15{bottom:297.786667pt;}
.yc0{bottom:301.946667pt;}
.ya5{bottom:303.706667pt;}
.y89{bottom:309.786667pt;}
.y10e{bottom:311.706667pt;}
.yda{bottom:312.666667pt;}
.yf2{bottom:314.266667pt;}
.y6c{bottom:316.506667pt;}
.y14{bottom:320.506667pt;}
.ybf{bottom:325.626667pt;}
.ya4{bottom:326.426667pt;}
.y88{bottom:332.986667pt;}
.y10d{bottom:343.066667pt;}
.y13{bottom:343.226667pt;}
.yd9{bottom:344.026667pt;}
.yf1{bottom:345.146667pt;}
.y6b{bottom:347.226667pt;}
.ya3{bottom:349.146667pt;}
.ybd{bottom:349.466667pt;}
.y6a{bottom:357.186667pt;}
.y87{bottom:364.386667pt;}
.y12{bottom:365.986667pt;}
.y10c{bottom:366.146667pt;}
.yd8{bottom:366.946667pt;}
.yf0{bottom:367.906667pt;}
.ya2{bottom:371.906667pt;}
.ybc{bottom:373.346667pt;}
.ye6{bottom:375.266667pt;}
.y11{bottom:388.866667pt;}
.yef{bottom:390.626667pt;}
.ya1{bottom:394.786667pt;}
.y86{bottom:395.426667pt;}
.y5b{bottom:396.866667pt;}
.y69{bottom:397.026667pt;}
.y10b{bottom:397.346667pt;}
.yd7{bottom:398.146667pt;}
.yee{bottom:413.346667pt;}
.ya0{bottom:417.506667pt;}
.y5a{bottom:419.586667pt;}
.y4b{bottom:419.746667pt;}
.y10a{bottom:420.226667pt;}
.ybb{bottom:420.866667pt;}
.y85{bottom:426.786667pt;}
.y68{bottom:427.906667pt;}
.yd6{bottom:429.666667pt;}
.yf{bottom:435.906667pt;}
.yed{bottom:436.226667pt;}
.y59{bottom:442.306667pt;}
.y4a{bottom:442.466667pt;}
.y109{bottom:443.106667pt;}
.yba{bottom:444.706667pt;}
.y9f{bottom:448.386667pt;}
.yd5{bottom:453.026667pt;}
.y84{bottom:457.506667pt;}
.yec{bottom:458.946667pt;}
.y67{bottom:459.266667pt;}
.y58{bottom:465.026667pt;}
.y49{bottom:465.186667pt;}
.yb9{bottom:468.386667pt;}
.y108{bottom:474.466667pt;}
.y9e{bottom:479.746667pt;}
.y66{bottom:482.146667pt;}
.yd4{bottom:483.746667pt;}
.y57{bottom:487.906667pt;}
.y48{bottom:488.066667pt;}
.y83{bottom:488.546667pt;}
.yeb{bottom:489.826667pt;}
.yb8{bottom:492.226667pt;}
.y107{bottom:497.506667pt;}
.y65{bottom:505.506667pt;}
.y56{bottom:510.626667pt;}
.y47{bottom:510.786667pt;}
.y9d{bottom:511.266667pt;}
.y82{bottom:511.906667pt;}
.yd3{bottom:515.106667pt;}
.yea{bottom:515.746667pt;}
.yb7{bottom:516.066667pt;}
.y106{bottom:528.706667pt;}
.ye{bottom:533.026667pt;}
.y55{bottom:533.346667pt;}
.y46{bottom:533.506667pt;}
.y64{bottom:534.333333pt;}
.yd2{bottom:538.013333pt;}
.yb6{bottom:539.773333pt;}
.y9c{bottom:542.013333pt;}
.y81{bottom:543.293333pt;}
.y105{bottom:551.613333pt;}
.y2c{bottom:556.253333pt;}
.yd1{bottom:560.733333pt;}
.yb5{bottom:563.613333pt;}
.y54{bottom:564.253333pt;}
.y45{bottom:564.413333pt;}
.y63{bottom:564.573333pt;}
.y9b{bottom:564.733333pt;}
.yd{bottom:570.013333pt;}
.y80{bottom:574.493333pt;}
.y2b{bottom:578.973333pt;}
.y104{bottom:582.813333pt;}
.yb4{bottom:587.293333pt;}
.y62{bottom:587.453333pt;}
.yc{bottom:590.653333pt;}
.yd0{bottom:591.613333pt;}
.y44{bottom:595.613333pt;}
.y53{bottom:595.773333pt;}
.y7f{bottom:597.373333pt;}
.y2a{bottom:601.853333pt;}
.y103{bottom:605.693333pt;}
.y9a{bottom:610.173333pt;}
.yb3{bottom:611.133333pt;}
.ye5{bottom:612.253333pt;}
.y61{bottom:616.093333pt;}
.y43{bottom:618.333333pt;}
.y7e{bottom:620.093333pt;}
.ycf{bottom:622.973333pt;}
.yb{bottom:623.773333pt;}
.y29{bottom:624.573333pt;}
.y52{bottom:626.973333pt;}
.y99{bottom:633.053333pt;}
.yb2{bottom:634.973333pt;}
.y102{bottom:636.893333pt;}
.y42{bottom:641.053333pt;}
.y7d{bottom:642.813333pt;}
.yce{bottom:645.693333pt;}
.y60{bottom:646.493333pt;}
.y51{bottom:649.693333pt;}
.y28{bottom:655.453333pt;}
.y98{bottom:655.773333pt;}
.ye4{bottom:657.693333pt;}
.y101{bottom:659.773333pt;}
.y41{bottom:663.933333pt;}
.y7c{bottom:665.693333pt;}
.ycd{bottom:668.413333pt;}
.y50{bottom:672.413333pt;}
.y5f{bottom:677.213333pt;}
.yb0{bottom:677.693333pt;}
.y97{bottom:678.493333pt;}
.ye3{bottom:680.413333pt;}
.ya{bottom:682.173333pt;}
.y100{bottom:690.973333pt;}
.ycc{bottom:691.133333pt;}
.y40{bottom:694.653333pt;}
.y27{bottom:694.813333pt;}
.y4f{bottom:695.293333pt;}
.y7b{bottom:696.893333pt;}
.yaf{bottom:700.573333pt;}
.y96{bottom:701.213333pt;}
.ye2{bottom:703.293333pt;}
.y5e{bottom:708.733333pt;}
.yff{bottom:713.853333pt;}
.ycb{bottom:714.013333pt;}
.y9{bottom:716.293333pt;}
.y3f{bottom:717.413333pt;}
.y4e{bottom:718.053333pt;}
.y7a{bottom:719.813333pt;}
.y95{bottom:723.973333pt;}
.y26{bottom:726.053333pt;}
.ye8{bottom:727.013333pt;}
.yae{bottom:731.333333pt;}
.y3e{bottom:740.133333pt;}
.y4d{bottom:740.773333pt;}
.yca{bottom:744.773333pt;}
.yfe{bottom:745.093333pt;}
.y79{bottom:745.413333pt;}
.y25{bottom:748.773333pt;}
.y94{bottom:754.853333pt;}
.y78{bottom:755.333333pt;}
.y3d{bottom:762.853333pt;}
.yfd{bottom:767.973333pt;}
.y24{bottom:771.493333pt;}
.yc9{bottom:776.293333pt;}
.yad{bottom:785.573333pt;}
.y3c{bottom:785.733333pt;}
.y93{bottom:786.213333pt;}
.y23{bottom:794.213333pt;}
.y77{bottom:794.853333pt;}
.yc8{bottom:799.013333pt;}
.yfc{bottom:799.173333pt;}
.y8{bottom:803.813333pt;}
.yac{bottom:808.293333pt;}
.y3b{bottom:808.453333pt;}
.y92{bottom:809.093333pt;}
.y22{bottom:817.093333pt;}
.yfb{bottom:822.053333pt;}
.yc7{bottom:822.373333pt;}
.y76{bottom:823.493333pt;}
.yab{bottom:831.013333pt;}
.y3a{bottom:831.173333pt;}
.y91{bottom:831.813333pt;}
.y21{bottom:839.813333pt;}
.yc6{bottom:853.093333pt;}
.yfa{bottom:853.413333pt;}
.y75{bottom:853.733333pt;}
.y39{bottom:853.893333pt;}
.y20{bottom:862.533333pt;}
.y74{bottom:884.613333pt;}
.y38{bottom:884.773333pt;}
.y1f{bottom:885.253333pt;}
.y19{bottom:921.120000pt;}
.y1{bottom:921.760000pt;}
.h15{height:21.120000pt;}
.h16{height:21.152000pt;}
.h14{height:21.600000pt;}
.hc{height:41.112500pt;}
.hb{height:41.120000pt;}
.h3{height:42.649687pt;}
.h13{height:47.322500pt;}
.h4{height:47.742188pt;}
.hd{height:51.491250pt;}
.he{height:52.382500pt;}
.h8{height:52.834688pt;}
.h9{height:57.600000pt;}
.h2{height:58.563750pt;}
.ha{height:60.288750pt;}
.h7{height:65.531250pt;}
.h5{height:74.477812pt;}
.h11{height:97.182500pt;}
.h12{height:98.243750pt;}
.h6{height:98.296875pt;}
.h10{height:98.403750pt;}
.hf{height:99.742500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w4{width:32.960000pt;}
.w6{width:33.280000pt;}
.w7{width:48.320000pt;}
.w9{width:75.520000pt;}
.wb{width:113.312000pt;}
.w8{width:113.472000pt;}
.wa{width:198.586667pt;}
.w5{width:565.213333pt;}
.w3{width:570.373333pt;}
.w2{width:602.493333pt;}
.w1{width:755.999989pt;}
.w0{width:756.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:1.280000pt;}
.x3{left:7.200000pt;}
.x5{left:59.520000pt;}
.x7{left:67.199989pt;}
.x1a{left:86.592000pt;}
.x18{left:91.231989pt;}
.x2{left:93.632000pt;}
.x1{left:100.831989pt;}
.x9{left:115.231989pt;}
.xc{left:124.831989pt;}
.x1c{left:134.906667pt;}
.xf{left:148.826655pt;}
.x1d{left:248.386667pt;}
.x10{left:286.786655pt;}
.x19{left:288.226655pt;}
.x4{left:305.666655pt;}
.x13{left:309.826655pt;}
.x16{left:311.266655pt;}
.x15{left:318.146655pt;}
.x1e{left:323.906667pt;}
.x17{left:338.466655pt;}
.x11{left:340.386655pt;}
.xe{left:349.666655pt;}
.x14{left:353.666655pt;}
.x12{left:367.426655pt;}
.x1f{left:522.493333pt;}
.x24{left:562.213322pt;}
.x22{left:576.293322pt;}
.x23{left:585.893322pt;}
.xd{left:586.853322pt;}
.x20{left:592.293322pt;}
.x21{left:602.373322pt;}
.x6{left:629.893333pt;}
.x8{left:642.533322pt;}
.xa{left:658.373333pt;}
.xb{left:688.933322pt;}
}




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