
    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_400bb26a20f52fca14ec561b.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_6976bce59bc53741e9ee85ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_be03aeb7e6db5f24ea88c2eb.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_df8e7d8013bb69f9c6368f6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_b21c45829bb0b255fd2f1d0b.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_8a2a2615d09b31632c2afe83.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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.409800px;}
.lsd{letter-spacing:-0.186600px;}
.ls29{letter-spacing:-0.178800px;}
.ls1e{letter-spacing:-0.160800px;}
.ls1f{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls1d{letter-spacing:-0.096600px;}
.ls6{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls1c{letter-spacing:-0.078000px;}
.ls1b{letter-spacing:-0.067200px;}
.ls24{letter-spacing:-0.062400px;}
.ls8{letter-spacing:-0.057000px;}
.ls1a{letter-spacing:-0.049680px;}
.ls15{letter-spacing:-0.037800px;}
.ls11{letter-spacing:-0.014760px;}
.ls18{letter-spacing:-0.009000px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.060600px;}
.ls20{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.074160px;}
.ls9{letter-spacing:0.083400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.098400px;}
.ls14{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls27{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.181200px;}
.ls19{letter-spacing:0.199200px;}
.lsa{letter-spacing:0.276000px;}
.ls25{letter-spacing:0.314400px;}
.ls0{letter-spacing:0.360000px;}
.ls28{letter-spacing:47.726640px;}
.ls21{letter-spacing:63.566640px;}
.ls22{letter-spacing:75.086640px;}
.ls26{letter-spacing:80.846640px;}
.ls23{letter-spacing:83.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;}
}
.ws1b{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.396600px;}
.ws1d{word-spacing:-14.808000px;}
.ws3{word-spacing:-14.577000px;}
.wsa{word-spacing:-14.493600px;}
.ws1c{word-spacing:-14.431200px;}
.wsc{word-spacing:-14.372400px;}
.ws14{word-spacing:-13.425600px;}
.ws12{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.342800px;}
.wsf{word-spacing:-13.287000px;}
.wsd{word-spacing:-13.275360px;}
.ws6{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.217400px;}
.wse{word-spacing:-13.211640px;}
.ws11{word-spacing:-13.188600px;}
.ws16{word-spacing:-13.159200px;}
.ws17{word-spacing:-13.129800px;}
.ws19{word-spacing:-13.072800px;}
.ws18{word-spacing:-13.065600px;}
.ws1e{word-spacing:-13.047600px;}
.ws8{word-spacing:-13.039800px;}
.ws15{word-spacing:-12.816600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws4{word-spacing:-9.266400px;}
.ws5{word-spacing:-8.553600px;}
.ws1a{word-spacing:-0.060120px;}
.wsb{word-spacing:0.000000px;}
.ws9{word-spacing:4.304880px;}
._4{margin-left:-3.486360px;}
._5{margin-left:-2.253957px;}
._0{margin-left:-1.158000px;}
._1{width:1.619640px;}
._8{width:2.623920px;}
._3{width:3.684960px;}
._b{width:5.122436px;}
._a{width:6.192600px;}
._9{width:7.996200px;}
._c{width:9.045479px;}
._2{width:10.085400px;}
._7{width:11.393400px;}
._d{width:15.390720px;}
._55{width:16.412760px;}
._2b{width:17.675280px;}
._6{width:19.779600px;}
._20{width:21.222360px;}
._47{width:22.905720px;}
._3f{width:24.228360px;}
._27{width:25.430760px;}
._12{width:26.573040px;}
._36{width:28.136160px;}
._1c{width:29.218320px;}
._2e{width:30.360600px;}
._50{width:31.623120px;}
._21{width:33.126120px;}
._f{width:34.749360px;}
._2f{width:36.192240px;}
._38{width:38.356560px;}
._3a{width:40.280400px;}
._34{width:42.324480px;}
._23{width:44.368560px;}
._22{width:45.631080px;}
._3d{width:46.893600px;}
._15{width:48.096000px;}
._37{width:50.140080px;}
._26{width:52.785360px;}
._30{width:53.987760px;}
._1f{width:55.130040px;}
._2c{width:58.917600px;}
._2a{width:60.180120px;}
._3e{width:62.765280px;}
._1b{width:64.929600px;}
._32{width:66.372480px;}
._31{width:69.198120px;}
._54{width:70.701120px;}
._14{width:71.783280px;}
._18{width:74.127960px;}
._13{width:76.833360px;}
._24{width:78.997680px;}
._51{width:80.500680px;}
._19{width:82.063800px;}
._49{width:87.835320px;}
._43{width:89.037720px;}
._39{width:90.180000px;}
._45{width:92.584800px;}
._40{width:96.071760px;}
._e{width:99.318240px;}
._4a{width:101.963520px;}
._2d{width:108.336240px;}
._29{width:111.823200px;}
._16{width:117.714960px;}
._10{width:120.240000px;}
._33{width:123.246000px;}
._17{width:124.448400px;}
._1d{width:130.159800px;}
._3b{width:132.264000px;}
._42{width:135.029520px;}
._25{width:139.959360px;}
._3c{width:142.724880px;}
._1e{width:148.376160px;}
._28{width:151.442280px;}
._11{width:153.666720px;}
._4f{width:157.394160px;}
._4c{width:167.734800px;}
._4d{width:174.107520px;}
._53{width:177.955200px;}
._48{width:180.480240px;}
._44{width:182.343960px;}
._52{width:185.349960px;}
._41{width:187.875000px;}
._4e{width:190.339920px;}
._1a{width:193.406040px;}
._35{width:203.927040px;}
._4b{width:240.059160px;}
._46{width:241.622280px;}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:7.830000px;}
.y6c{bottom:7.920000px;}
.y66{bottom:25.380000px;}
.y69{bottom:25.470000px;}
.y5e{bottom:25.500000px;}
.y65{bottom:43.020000px;}
.y5d{bottom:43.050000px;}
.y75{bottom:43.110000px;}
.y64{bottom:60.570000px;}
.y5c{bottom:60.600000px;}
.y68{bottom:60.660000px;}
.y71{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y63{bottom:78.210000px;}
.y70{bottom:78.240000px;}
.y62{bottom:95.760000px;}
.y6b{bottom:95.850000px;}
.y6f{bottom:95.880000px;}
.y1{bottom:101.640000px;}
.y61{bottom:113.310000px;}
.y89{bottom:123.060000px;}
.yec{bottom:123.600000px;}
.y74{bottom:129.810000px;}
.y80{bottom:132.780000px;}
.y11b{bottom:134.670000px;}
.y58{bottom:138.270000px;}
.y27{bottom:138.990000px;}
.y102{bottom:139.440000px;}
.yeb{bottom:141.240000px;}
.y11a{bottom:152.310000px;}
.y26{bottom:156.540000px;}
.y101{bottom:156.990000px;}
.yea{bottom:158.790000px;}
.y119{bottom:169.860000px;}
.y57{bottom:173.910000px;}
.y25{bottom:174.090000px;}
.y100{bottom:174.630000px;}
.ye9{bottom:176.430000px;}
.yb6{bottom:177.690000px;}
.y88{bottom:185.520000px;}
.y56{bottom:191.460000px;}
.ye8{bottom:193.980000px;}
.yb5{bottom:195.330000px;}
.y118{bottom:196.500000px;}
.y55{bottom:209.100000px;}
.y24{bottom:209.730000px;}
.yff{bottom:210.180000px;}
.yb4{bottom:212.880000px;}
.y117{bottom:214.050000px;}
.ye7{bottom:220.890000px;}
.y54{bottom:226.650000px;}
.y23{bottom:227.280000px;}
.y73{bottom:227.550000px;}
.yfe{bottom:227.730000px;}
.y7f{bottom:230.430000px;}
.y116{bottom:231.600000px;}
.y53{bottom:244.200000px;}
.y22{bottom:244.920000px;}
.yfd{bottom:245.370000px;}
.yb3{bottom:248.070000px;}
.y115{bottom:258.240000px;}
.y21{bottom:262.470000px;}
.yfc{bottom:262.920000px;}
.y87{bottom:265.620000px;}
.ye6{bottom:269.130000px;}
.y114{bottom:275.790000px;}
.y52{bottom:279.840000px;}
.yfb{bottom:280.560000px;}
.yb2{bottom:283.260000px;}
.ye5{bottom:286.770000px;}
.y51{bottom:297.390000px;}
.y20{bottom:298.020000px;}
.yfa{bottom:298.110000px;}
.yb1{bottom:300.810000px;}
.y113{bottom:302.430000px;}
.ye4{bottom:304.320000px;}
.y7e{bottom:310.530000px;}
.y50{bottom:314.940000px;}
.y1f{bottom:315.660000px;}
.y112{bottom:319.980000px;}
.ye3{bottom:321.960000px;}
.y72{bottom:325.200000px;}
.y4f{bottom:332.580000px;}
.y1e{bottom:333.210000px;}
.yf9{bottom:333.660000px;}
.yb0{bottom:336.360000px;}
.ye2{bottom:339.510000px;}
.y86{bottom:345.720000px;}
.y111{bottom:346.890000px;}
.y1d{bottom:350.850000px;}
.yf8{bottom:351.300000px;}
.yaf{bottom:354.000000px;}
.ye1{bottom:357.060000px;}
.y4e{bottom:368.130000px;}
.yf7{bottom:368.850000px;}
.yae{bottom:371.550000px;}
.ye0{bottom:374.700000px;}
.y1c{bottom:377.760000px;}
.y4d{bottom:385.770000px;}
.yf6{bottom:386.490000px;}
.yad{bottom:389.190000px;}
.y7d{bottom:390.630000px;}
.ydf{bottom:392.250000px;}
.y110{bottom:395.130000px;}
.y4c{bottom:403.320000px;}
.yf5{bottom:404.040000px;}
.yac{bottom:406.740000px;}
.yde{bottom:409.890000px;}
.y10f{bottom:412.770000px;}
.y4b{bottom:420.870000px;}
.yf4{bottom:421.590000px;}
.y6e{bottom:422.850000px;}
.yab{bottom:424.290000px;}
.y85{bottom:425.820000px;}
.y1b{bottom:426.000000px;}
.ydd{bottom:427.440000px;}
.y10e{bottom:430.320000px;}
.y4a{bottom:438.510000px;}
.yf3{bottom:439.230000px;}
.yaa{bottom:441.930000px;}
.y1a{bottom:443.550000px;}
.ydc{bottom:444.990000px;}
.y10d{bottom:447.870000px;}
.ya9{bottom:459.480000px;}
.y19{bottom:461.460000px;}
.ydb{bottom:462.630000px;}
.y49{bottom:465.060000px;}
.y10c{bottom:465.510000px;}
.yf2{bottom:466.140000px;}
.y7c{bottom:470.760000px;}
.yda{bottom:480.210000px;}
.y10b{bottom:483.090000px;}
.ya8{bottom:495.150000px;}
.yd9{bottom:497.760000px;}
.y18{bottom:498.570000px;}
.y48{bottom:500.730000px;}
.y84{bottom:505.950000px;}
.ya7{bottom:512.700000px;}
.yf1{bottom:514.410000px;}
.yd8{bottom:515.400000px;}
.y17{bottom:516.120000px;}
.y47{bottom:518.280000px;}
.ya6{bottom:530.250000px;}
.yd7{bottom:532.950000px;}
.y16{bottom:533.670000px;}
.y46{bottom:535.830000px;}
.y6d{bottom:538.170000px;}
.yf0{bottom:546.630000px;}
.ya5{bottom:547.890000px;}
.yd6{bottom:550.590000px;}
.y15{bottom:551.310000px;}
.y45{bottom:553.470000px;}
.ya4{bottom:565.440000px;}
.yd5{bottom:568.140000px;}
.y14{bottom:568.860000px;}
.y44{bottom:571.020000px;}
.yd4{bottom:585.690000px;}
.y7b{bottom:586.050000px;}
.y13{bottom:586.500000px;}
.y43{bottom:588.660000px;}
.ya3{bottom:601.080000px;}
.yd3{bottom:603.330000px;}
.y83{bottom:603.600000px;}
.y12{bottom:604.050000px;}
.y42{bottom:606.210000px;}
.y10a{bottom:606.660000px;}
.ya2{bottom:618.630000px;}
.yd2{bottom:620.880000px;}
.y11{bottom:621.600000px;}
.y109{bottom:624.210000px;}
.y6a{bottom:635.820000px;}
.ya1{bottom:636.180000px;}
.yd1{bottom:638.520000px;}
.y10{bottom:639.240000px;}
.y41{bottom:641.760000px;}
.ya0{bottom:653.820000px;}
.yd0{bottom:656.070000px;}
.yf{bottom:656.790000px;}
.y40{bottom:659.400000px;}
.y9f{bottom:671.370000px;}
.ycf{bottom:673.620000px;}
.ye{bottom:674.430000px;}
.y3f{bottom:676.950000px;}
.y7a{bottom:683.700000px;}
.yce{bottom:691.260000px;}
.yd{bottom:691.980000px;}
.y3e{bottom:694.590000px;}
.y9e{bottom:707.010000px;}
.ycd{bottom:708.810000px;}
.y3d{bottom:712.140000px;}
.yc{bottom:718.890000px;}
.y108{bottom:721.500000px;}
.y9d{bottom:724.560000px;}
.ycc{bottom:727.260000px;}
.y3c{bottom:729.690000px;}
.y9c{bottom:742.110000px;}
.ycb{bottom:744.810000px;}
.y3b{bottom:747.330000px;}
.y67{bottom:751.110000px;}
.y9b{bottom:759.750000px;}
.yca{bottom:762.450000px;}
.y79{bottom:763.800000px;}
.yb{bottom:767.130000px;}
.y107{bottom:769.740000px;}
.y3a{bottom:774.240000px;}
.y9a{bottom:777.300000px;}
.yc9{bottom:780.000000px;}
.y106{bottom:787.290000px;}
.y99{bottom:794.850000px;}
.yc8{bottom:797.550000px;}
.ya{bottom:802.950000px;}
.y105{bottom:804.930000px;}
.y98{bottom:812.490000px;}
.yc7{bottom:816.000000px;}
.y39{bottom:822.480000px;}
.y97{bottom:830.040000px;}
.y123{bottom:831.480000px;}
.yc6{bottom:833.550000px;}
.y9{bottom:838.950000px;}
.y38{bottom:840.030000px;}
.y96{bottom:847.680000px;}
.y122{bottom:849.030000px;}
.yc5{bottom:851.190000px;}
.y37{bottom:857.670000px;}
.y78{bottom:861.450000px;}
.y60{bottom:866.400000px;}
.y121{bottom:866.670000px;}
.yc4{bottom:868.740000px;}
.y36{bottom:875.220000px;}
.y104{bottom:875.670000px;}
.y8{bottom:878.730000px;}
.y82{bottom:879.000000px;}
.y95{bottom:883.230000px;}
.yc3{bottom:887.190000px;}
.y7{bottom:892.950000px;}
.y103{bottom:893.220000px;}
.y94{bottom:900.780000px;}
.yc2{bottom:904.740000px;}
.y35{bottom:910.860000px;}
.y6{bottom:914.730000px;}
.y93{bottom:918.420000px;}
.yc1{bottom:922.380000px;}
.y34{bottom:928.410000px;}
.y92{bottom:935.970000px;}
.yc0{bottom:939.930000px;}
.y77{bottom:941.550000px;}
.y33{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y91{bottom:953.610000px;}
.y120{bottom:954.960000px;}
.ybf{bottom:958.380000px;}
.y81{bottom:959.100000px;}
.y32{bottom:963.600000px;}
.yef{bottom:963.960000px;}
.y90{bottom:971.160000px;}
.y11f{bottom:972.600000px;}
.ybe{bottom:975.930000px;}
.y31{bottom:981.150000px;}
.yee{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y8f{bottom:988.710000px;}
.ybd{bottom:993.480000px;}
.yed{bottom:999.150000px;}
.y5b{bottom:999.240000px;}
.y8e{bottom:1006.350000px;}
.y3{bottom:1010.070000px;}
.ybc{bottom:1011.150000px;}
.y30{bottom:1016.820000px;}
.y8d{bottom:1023.930000px;}
.ybb{bottom:1028.700000px;}
.y2f{bottom:1034.370000px;}
.y76{bottom:1039.230000px;}
.y8c{bottom:1041.570000px;}
.yba{bottom:1047.150000px;}
.y2e{bottom:1051.920000px;}
.y11e{bottom:1060.920000px;}
.yb9{bottom:1064.700000px;}
.y8b{bottom:1068.480000px;}
.y2d{bottom:1069.560000px;}
.y11d{bottom:1078.560000px;}
.yb8{bottom:1082.250000px;}
.y2c{bottom:1087.110000px;}
.y11c{bottom:1096.110000px;}
.yb7{bottom:1099.800000px;}
.y5a{bottom:1100.700000px;}
.y8a{bottom:1114.110000px;}
.y2b{bottom:1122.750000px;}
.y59{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h18{height:39.690000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.ha{height:60.960938px;}
.h17{height:61.740000px;}
.h19{height:61.793886px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h15{height:79.290000px;}
.hd{height:79.320000px;}
.h14{height:79.380000px;}
.h16{height:79.410000px;}
.h11{height:96.930000px;}
.h13{height:96.960000px;}
.hf{height:114.480000px;}
.h10{height:114.570000px;}
.h12{height:114.600000px;}
.he{height:132.030000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:42.780000px;}
.w3{width:81.540000px;}
.w5{width:92.430000px;}
.w9{width:99.720000px;}
.w8{width:105.840000px;}
.w6{width:111.150000px;}
.w7{width:111.180000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xc{left:95.039987px;}
.xe{left:110.519987px;}
.xd{left:122.039987px;}
.x5{left:151.020000px;}
.xf{left:153.089987px;}
.x10{left:185.069987px;}
.x6{left:194.610000px;}
.x2{left:201.539987px;}
.x12{left:264.539987px;}
.x7{left:287.850000px;}
.x8{left:399.720000px;}
.x9{left:511.620000px;}
.xa{left:618.180000px;}
.x11{left:686.399987px;}
.xb{left:718.620000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.364267pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls29{letter-spacing:-0.158933pt;}
.ls1e{letter-spacing:-0.142933pt;}
.ls1f{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls1d{letter-spacing:-0.085867pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls1c{letter-spacing:-0.069333pt;}
.ls1b{letter-spacing:-0.059733pt;}
.ls24{letter-spacing:-0.055467pt;}
.ls8{letter-spacing:-0.050667pt;}
.ls1a{letter-spacing:-0.044160pt;}
.ls15{letter-spacing:-0.033600pt;}
.ls11{letter-spacing:-0.013120pt;}
.ls18{letter-spacing:-0.008000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.053867pt;}
.ls20{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.065920pt;}
.ls9{letter-spacing:0.074133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.087467pt;}
.ls14{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls27{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.161067pt;}
.ls19{letter-spacing:0.177067pt;}
.lsa{letter-spacing:0.245333pt;}
.ls25{letter-spacing:0.279467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls28{letter-spacing:42.423680pt;}
.ls21{letter-spacing:56.503680pt;}
.ls22{letter-spacing:66.743680pt;}
.ls26{letter-spacing:71.863680pt;}
.ls23{letter-spacing:74.530347pt;}
.ws1b{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.352533pt;}
.ws1d{word-spacing:-13.162667pt;}
.ws3{word-spacing:-12.957333pt;}
.wsa{word-spacing:-12.883200pt;}
.ws1c{word-spacing:-12.827733pt;}
.wsc{word-spacing:-12.775467pt;}
.ws14{word-spacing:-11.933867pt;}
.ws12{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.860267pt;}
.wsf{word-spacing:-11.810667pt;}
.wsd{word-spacing:-11.800320pt;}
.ws6{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.748800pt;}
.wse{word-spacing:-11.743680pt;}
.ws11{word-spacing:-11.723200pt;}
.ws16{word-spacing:-11.697067pt;}
.ws17{word-spacing:-11.670933pt;}
.ws19{word-spacing:-11.620267pt;}
.ws18{word-spacing:-11.613867pt;}
.ws1e{word-spacing:-11.597867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws15{word-spacing:-11.392533pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws4{word-spacing:-8.236800pt;}
.ws5{word-spacing:-7.603200pt;}
.ws1a{word-spacing:-0.053440pt;}
.wsb{word-spacing:0.000000pt;}
.ws9{word-spacing:3.826560pt;}
._4{margin-left:-3.098987pt;}
._5{margin-left:-2.003518pt;}
._0{margin-left:-1.029333pt;}
._1{width:1.439680pt;}
._8{width:2.332374pt;}
._3{width:3.275520pt;}
._b{width:4.553276pt;}
._a{width:5.504534pt;}
._9{width:7.107734pt;}
._c{width:8.040426pt;}
._2{width:8.964800pt;}
._7{width:10.127467pt;}
._d{width:13.680640pt;}
._55{width:14.589120pt;}
._2b{width:15.711360pt;}
._6{width:17.581867pt;}
._20{width:18.864320pt;}
._47{width:20.360640pt;}
._3f{width:21.536320pt;}
._27{width:22.605120pt;}
._12{width:23.620480pt;}
._36{width:25.009920pt;}
._1c{width:25.971840pt;}
._2e{width:26.987200pt;}
._50{width:28.109440pt;}
._21{width:29.445440pt;}
._f{width:30.888320pt;}
._2f{width:32.170880pt;}
._38{width:34.094720pt;}
._3a{width:35.804800pt;}
._34{width:37.621760pt;}
._23{width:39.438720pt;}
._22{width:40.560960pt;}
._3d{width:41.683200pt;}
._15{width:42.752000pt;}
._37{width:44.568960pt;}
._26{width:46.920320pt;}
._30{width:47.989120pt;}
._1f{width:49.004480pt;}
._2c{width:52.371200pt;}
._2a{width:53.493440pt;}
._3e{width:55.791360pt;}
._1b{width:57.715200pt;}
._32{width:58.997760pt;}
._31{width:61.509440pt;}
._54{width:62.845440pt;}
._14{width:63.807360pt;}
._18{width:65.891520pt;}
._13{width:68.296320pt;}
._24{width:70.220160pt;}
._51{width:71.556160pt;}
._19{width:72.945600pt;}
._49{width:78.075840pt;}
._43{width:79.144640pt;}
._39{width:80.160000pt;}
._45{width:82.297600pt;}
._40{width:85.397120pt;}
._e{width:88.282880pt;}
._4a{width:90.634240pt;}
._2d{width:96.298880pt;}
._29{width:99.398400pt;}
._16{width:104.635520pt;}
._10{width:106.880000pt;}
._33{width:109.552000pt;}
._17{width:110.620800pt;}
._1d{width:115.697600pt;}
._3b{width:117.568000pt;}
._42{width:120.026240pt;}
._25{width:124.408320pt;}
._3c{width:126.866560pt;}
._1e{width:131.889920pt;}
._28{width:134.615360pt;}
._11{width:136.592640pt;}
._4f{width:139.905920pt;}
._4c{width:149.097600pt;}
._4d{width:154.762240pt;}
._53{width:158.182400pt;}
._48{width:160.426880pt;}
._44{width:162.083520pt;}
._52{width:164.755520pt;}
._41{width:167.000000pt;}
._4e{width:169.191040pt;}
._1a{width:171.916480pt;}
._35{width:181.268480pt;}
._4b{width:213.385920pt;}
._46{width:214.775360pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:6.960000pt;}
.y6c{bottom:7.040000pt;}
.y66{bottom:22.560000pt;}
.y69{bottom:22.640000pt;}
.y5e{bottom:22.666667pt;}
.y65{bottom:38.240000pt;}
.y5d{bottom:38.266667pt;}
.y75{bottom:38.320000pt;}
.y64{bottom:53.840000pt;}
.y5c{bottom:53.866667pt;}
.y68{bottom:53.920000pt;}
.y71{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y63{bottom:69.520000pt;}
.y70{bottom:69.546667pt;}
.y62{bottom:85.120000pt;}
.y6b{bottom:85.200000pt;}
.y6f{bottom:85.226667pt;}
.y1{bottom:90.346667pt;}
.y61{bottom:100.720000pt;}
.y89{bottom:109.386667pt;}
.yec{bottom:109.866667pt;}
.y74{bottom:115.386667pt;}
.y80{bottom:118.026667pt;}
.y11b{bottom:119.706667pt;}
.y58{bottom:122.906667pt;}
.y27{bottom:123.546667pt;}
.y102{bottom:123.946667pt;}
.yeb{bottom:125.546667pt;}
.y11a{bottom:135.386667pt;}
.y26{bottom:139.146667pt;}
.y101{bottom:139.546667pt;}
.yea{bottom:141.146667pt;}
.y119{bottom:150.986667pt;}
.y57{bottom:154.586667pt;}
.y25{bottom:154.746667pt;}
.y100{bottom:155.226667pt;}
.ye9{bottom:156.826667pt;}
.yb6{bottom:157.946667pt;}
.y88{bottom:164.906667pt;}
.y56{bottom:170.186667pt;}
.ye8{bottom:172.426667pt;}
.yb5{bottom:173.626667pt;}
.y118{bottom:174.666667pt;}
.y55{bottom:185.866667pt;}
.y24{bottom:186.426667pt;}
.yff{bottom:186.826667pt;}
.yb4{bottom:189.226667pt;}
.y117{bottom:190.266667pt;}
.ye7{bottom:196.346667pt;}
.y54{bottom:201.466667pt;}
.y23{bottom:202.026667pt;}
.y73{bottom:202.266667pt;}
.yfe{bottom:202.426667pt;}
.y7f{bottom:204.826667pt;}
.y116{bottom:205.866667pt;}
.y53{bottom:217.066667pt;}
.y22{bottom:217.706667pt;}
.yfd{bottom:218.106667pt;}
.yb3{bottom:220.506667pt;}
.y115{bottom:229.546667pt;}
.y21{bottom:233.306667pt;}
.yfc{bottom:233.706667pt;}
.y87{bottom:236.106667pt;}
.ye6{bottom:239.226667pt;}
.y114{bottom:245.146667pt;}
.y52{bottom:248.746667pt;}
.yfb{bottom:249.386667pt;}
.yb2{bottom:251.786667pt;}
.ye5{bottom:254.906667pt;}
.y51{bottom:264.346667pt;}
.y20{bottom:264.906667pt;}
.yfa{bottom:264.986667pt;}
.yb1{bottom:267.386667pt;}
.y113{bottom:268.826667pt;}
.ye4{bottom:270.506667pt;}
.y7e{bottom:276.026667pt;}
.y50{bottom:279.946667pt;}
.y1f{bottom:280.586667pt;}
.y112{bottom:284.426667pt;}
.ye3{bottom:286.186667pt;}
.y72{bottom:289.066667pt;}
.y4f{bottom:295.626667pt;}
.y1e{bottom:296.186667pt;}
.yf9{bottom:296.586667pt;}
.yb0{bottom:298.986667pt;}
.ye2{bottom:301.786667pt;}
.y86{bottom:307.306667pt;}
.y111{bottom:308.346667pt;}
.y1d{bottom:311.866667pt;}
.yf8{bottom:312.266667pt;}
.yaf{bottom:314.666667pt;}
.ye1{bottom:317.386667pt;}
.y4e{bottom:327.226667pt;}
.yf7{bottom:327.866667pt;}
.yae{bottom:330.266667pt;}
.ye0{bottom:333.066667pt;}
.y1c{bottom:335.786667pt;}
.y4d{bottom:342.906667pt;}
.yf6{bottom:343.546667pt;}
.yad{bottom:345.946667pt;}
.y7d{bottom:347.226667pt;}
.ydf{bottom:348.666667pt;}
.y110{bottom:351.226667pt;}
.y4c{bottom:358.506667pt;}
.yf5{bottom:359.146667pt;}
.yac{bottom:361.546667pt;}
.yde{bottom:364.346667pt;}
.y10f{bottom:366.906667pt;}
.y4b{bottom:374.106667pt;}
.yf4{bottom:374.746667pt;}
.y6e{bottom:375.866667pt;}
.yab{bottom:377.146667pt;}
.y85{bottom:378.506667pt;}
.y1b{bottom:378.666667pt;}
.ydd{bottom:379.946667pt;}
.y10e{bottom:382.506667pt;}
.y4a{bottom:389.786667pt;}
.yf3{bottom:390.426667pt;}
.yaa{bottom:392.826667pt;}
.y1a{bottom:394.266667pt;}
.ydc{bottom:395.546667pt;}
.y10d{bottom:398.106667pt;}
.ya9{bottom:408.426667pt;}
.y19{bottom:410.186667pt;}
.ydb{bottom:411.226667pt;}
.y49{bottom:413.386667pt;}
.y10c{bottom:413.786667pt;}
.yf2{bottom:414.346667pt;}
.y7c{bottom:418.453333pt;}
.yda{bottom:426.853333pt;}
.y10b{bottom:429.413333pt;}
.ya8{bottom:440.133333pt;}
.yd9{bottom:442.453333pt;}
.y18{bottom:443.173333pt;}
.y48{bottom:445.093333pt;}
.y84{bottom:449.733333pt;}
.ya7{bottom:455.733333pt;}
.yf1{bottom:457.253333pt;}
.yd8{bottom:458.133333pt;}
.y17{bottom:458.773333pt;}
.y47{bottom:460.693333pt;}
.ya6{bottom:471.333333pt;}
.yd7{bottom:473.733333pt;}
.y16{bottom:474.373333pt;}
.y46{bottom:476.293333pt;}
.y6d{bottom:478.373333pt;}
.yf0{bottom:485.893333pt;}
.ya5{bottom:487.013333pt;}
.yd6{bottom:489.413333pt;}
.y15{bottom:490.053333pt;}
.y45{bottom:491.973333pt;}
.ya4{bottom:502.613333pt;}
.yd5{bottom:505.013333pt;}
.y14{bottom:505.653333pt;}
.y44{bottom:507.573333pt;}
.yd4{bottom:520.613333pt;}
.y7b{bottom:520.933333pt;}
.y13{bottom:521.333333pt;}
.y43{bottom:523.253333pt;}
.ya3{bottom:534.293333pt;}
.yd3{bottom:536.293333pt;}
.y83{bottom:536.533333pt;}
.y12{bottom:536.933333pt;}
.y42{bottom:538.853333pt;}
.y10a{bottom:539.253333pt;}
.ya2{bottom:549.893333pt;}
.yd2{bottom:551.893333pt;}
.y11{bottom:552.533333pt;}
.y109{bottom:554.853333pt;}
.y6a{bottom:565.173333pt;}
.ya1{bottom:565.493333pt;}
.yd1{bottom:567.573333pt;}
.y10{bottom:568.213333pt;}
.y41{bottom:570.453333pt;}
.ya0{bottom:581.173333pt;}
.yd0{bottom:583.173333pt;}
.yf{bottom:583.813333pt;}
.y40{bottom:586.133333pt;}
.y9f{bottom:596.773333pt;}
.ycf{bottom:598.773333pt;}
.ye{bottom:599.493333pt;}
.y3f{bottom:601.733333pt;}
.y7a{bottom:607.733333pt;}
.yce{bottom:614.453333pt;}
.yd{bottom:615.093333pt;}
.y3e{bottom:617.413333pt;}
.y9e{bottom:628.453333pt;}
.ycd{bottom:630.053333pt;}
.y3d{bottom:633.013333pt;}
.yc{bottom:639.013333pt;}
.y108{bottom:641.333333pt;}
.y9d{bottom:644.053333pt;}
.ycc{bottom:646.453333pt;}
.y3c{bottom:648.613333pt;}
.y9c{bottom:659.653333pt;}
.ycb{bottom:662.053333pt;}
.y3b{bottom:664.293333pt;}
.y67{bottom:667.653333pt;}
.y9b{bottom:675.333333pt;}
.yca{bottom:677.733333pt;}
.y79{bottom:678.933333pt;}
.yb{bottom:681.893333pt;}
.y107{bottom:684.213333pt;}
.y3a{bottom:688.213333pt;}
.y9a{bottom:690.933333pt;}
.yc9{bottom:693.333333pt;}
.y106{bottom:699.813333pt;}
.y99{bottom:706.533333pt;}
.yc8{bottom:708.933333pt;}
.ya{bottom:713.733333pt;}
.y105{bottom:715.493333pt;}
.y98{bottom:722.213333pt;}
.yc7{bottom:725.333333pt;}
.y39{bottom:731.093333pt;}
.y97{bottom:737.813333pt;}
.y123{bottom:739.093333pt;}
.yc6{bottom:740.933333pt;}
.y9{bottom:745.733333pt;}
.y38{bottom:746.693333pt;}
.y96{bottom:753.493333pt;}
.y122{bottom:754.693333pt;}
.yc5{bottom:756.613333pt;}
.y37{bottom:762.373333pt;}
.y78{bottom:765.733333pt;}
.y60{bottom:770.133333pt;}
.y121{bottom:770.373333pt;}
.yc4{bottom:772.213333pt;}
.y36{bottom:777.973333pt;}
.y104{bottom:778.373333pt;}
.y8{bottom:781.093333pt;}
.y82{bottom:781.333333pt;}
.y95{bottom:785.093333pt;}
.yc3{bottom:788.613333pt;}
.y7{bottom:793.733333pt;}
.y103{bottom:793.973333pt;}
.y94{bottom:800.693333pt;}
.yc2{bottom:804.213333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:813.093333pt;}
.y93{bottom:816.373333pt;}
.yc1{bottom:819.893333pt;}
.y34{bottom:825.253333pt;}
.y92{bottom:831.973333pt;}
.yc0{bottom:835.493333pt;}
.y77{bottom:836.933333pt;}
.y33{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y91{bottom:847.653333pt;}
.y120{bottom:848.853333pt;}
.ybf{bottom:851.893333pt;}
.y81{bottom:852.533333pt;}
.y32{bottom:856.533333pt;}
.yef{bottom:856.853333pt;}
.y90{bottom:863.253333pt;}
.y11f{bottom:864.533333pt;}
.ybe{bottom:867.493333pt;}
.y31{bottom:872.133333pt;}
.yee{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y8f{bottom:878.853333pt;}
.ybd{bottom:883.093333pt;}
.yed{bottom:888.133333pt;}
.y5b{bottom:888.213333pt;}
.y8e{bottom:894.533333pt;}
.y3{bottom:897.840000pt;}
.ybc{bottom:898.800000pt;}
.y30{bottom:903.840000pt;}
.y8d{bottom:910.160000pt;}
.ybb{bottom:914.400000pt;}
.y2f{bottom:919.440000pt;}
.y76{bottom:923.760000pt;}
.y8c{bottom:925.840000pt;}
.yba{bottom:930.800000pt;}
.y2e{bottom:935.040000pt;}
.y11e{bottom:943.040000pt;}
.yb9{bottom:946.400000pt;}
.y8b{bottom:949.760000pt;}
.y2d{bottom:950.720000pt;}
.y11d{bottom:958.720000pt;}
.yb8{bottom:962.000000pt;}
.y2c{bottom:966.320000pt;}
.y11c{bottom:974.320000pt;}
.yb7{bottom:977.600000pt;}
.y5a{bottom:978.400000pt;}
.y8a{bottom:990.320000pt;}
.y2b{bottom:998.000000pt;}
.y59{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h18{height:35.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.ha{height:54.187500pt;}
.h17{height:54.880000pt;}
.h19{height:54.927899pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h15{height:70.480000pt;}
.hd{height:70.506667pt;}
.h14{height:70.560000pt;}
.h16{height:70.586667pt;}
.h11{height:86.160000pt;}
.h13{height:86.186667pt;}
.hf{height:101.760000pt;}
.h10{height:101.840000pt;}
.h12{height:101.866667pt;}
.he{height:117.360000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:38.026667pt;}
.w3{width:72.480000pt;}
.w5{width:82.160000pt;}
.w9{width:88.640000pt;}
.w8{width:94.080000pt;}
.w6{width:98.800000pt;}
.w7{width:98.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xc{left:84.479988pt;}
.xe{left:98.239988pt;}
.xd{left:108.479988pt;}
.x5{left:134.240000pt;}
.xf{left:136.079988pt;}
.x10{left:164.506655pt;}
.x6{left:172.986667pt;}
.x2{left:179.146655pt;}
.x12{left:235.146655pt;}
.x7{left:255.866667pt;}
.x8{left:355.306667pt;}
.x9{left:454.773333pt;}
.xa{left:549.493333pt;}
.x11{left:610.133322pt;}
.xb{left:638.773333pt;}
.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; }
  