
    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_d0af4449b4392037bdfc7a47.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2e97565637128ce047bd486c.woff')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_151a3e35fcae7228fd721e2c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5bb4e4cbcad0cc4bf7d3ebd3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_69e3a9054f1aaf4cf10966ed.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ee5199a21b3a808dad4e389a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')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_db25cb6cb0525a2f300f389c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1b{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.852000px;}
.ls1c{letter-spacing:-0.475200px;}
.ls8{letter-spacing:-0.463800px;}
.ls28{letter-spacing:-0.263400px;}
.lsf{letter-spacing:-0.253200px;}
.ls17{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.193200px;}
.ls25{letter-spacing:-0.175800px;}
.ls18{letter-spacing:-0.164400px;}
.lse{letter-spacing:-0.132600px;}
.ls1a{letter-spacing:-0.115200px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.022320px;}
.ls16{letter-spacing:0.060600px;}
.ls26{letter-spacing:0.075000px;}
.ls6{letter-spacing:0.086400px;}
.lsd{letter-spacing:0.087600px;}
.ls12{letter-spacing:0.089400px;}
.ls24{letter-spacing:0.129600px;}
.ls2{letter-spacing:0.132480px;}
.ls1f{letter-spacing:0.132600px;}
.ls3{letter-spacing:0.149760px;}
.ls23{letter-spacing:0.174240px;}
.lsb{letter-spacing:0.231600px;}
.ls10{letter-spacing:0.238320px;}
.ls7{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.256320px;}
.ls22{letter-spacing:0.265200px;}
.ls9{letter-spacing:0.313800px;}
.ls21{letter-spacing:0.331200px;}
.ls1{letter-spacing:0.351360px;}
.ls20{letter-spacing:0.351600px;}
.ls19{letter-spacing:0.391680px;}
.lsc{letter-spacing:0.396000px;}
.ls1e{letter-spacing:16.865280px;}
.ls1d{letter-spacing:34.145280px;}
.ls11{letter-spacing:34.973280px;}
.ls13{letter-spacing:43.541280px;}
.ls14{letter-spacing:51.240000px;}
.ls27{letter-spacing:121.349280px;}
.sc_{text-shadow:none;}
.sc5{text-shadow:-0.015em 0 rgb(0,52,27),0 0.015em rgb(0,52,27),0.015em 0 rgb(0,52,27),0 -0.015em  rgb(0,52,27);}
.sc4{text-shadow:-0.015em 0 rgb(0,104,56),0 0.015em rgb(0,104,56),0.015em 0 rgb(0,104,56),0 -0.015em  rgb(0,104,56);}
.sc3{text-shadow:-0.015em 0 rgb(186,104,39),0 0.015em rgb(186,104,39),0.015em 0 rgb(186,104,39),0 -0.015em  rgb(186,104,39);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(171,98,46),0 0.015em rgb(171,98,46),0.015em 0 rgb(171,98,46),0 -0.015em  rgb(171,98,46);}
.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;}
.sc5{-webkit-text-stroke:0.015em rgb(0,52,27);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,104,56);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(186,104,39);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(171,98,46);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-19.038240px;}
.wsc{word-spacing:-16.272000px;}
.ws13{word-spacing:-15.321840px;}
.ws14{word-spacing:-15.301440px;}
.ws5{word-spacing:-15.284040px;}
.ws15{word-spacing:-15.235440px;}
.ws3{word-spacing:-15.226440px;}
.ws12{word-spacing:-15.102840px;}
.ws16{word-spacing:-15.099840px;}
.ws1{word-spacing:-15.056640px;}
.ws18{word-spacing:-15.045240px;}
.ws2{word-spacing:-14.970240px;}
.wsf{word-spacing:-14.855040px;}
.ws9{word-spacing:-14.837640px;}
.wse{word-spacing:-14.805840px;}
.wsd{word-spacing:-14.754240px;}
.wsa{word-spacing:-14.717040px;}
.ws4{word-spacing:-14.506440px;}
.ws11{word-spacing:-14.495040px;}
.ws10{word-spacing:-14.034240px;}
.ws17{word-spacing:-13.505760px;}
.ws8{word-spacing:-10.902240px;}
.ws19{word-spacing:-10.638840px;}
.ws7{word-spacing:-9.833760px;}
.ws6{word-spacing:-9.669360px;}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-14.334720px;}
._8{margin-left:-13.326720px;}
._c{margin-left:-11.740320px;}
._4{margin-left:-10.246320px;}
._b{margin-left:-7.735200px;}
._e{margin-left:-5.150160px;}
._6{margin-left:-3.638880px;}
._5{margin-left:-2.585520px;}
._0{margin-left:-1.074240px;}
._2{width:1.048320px;}
._3{width:2.074320px;}
._16{width:3.104640px;}
._14{width:5.100480px;}
._15{width:6.624000px;}
._13{width:8.287920px;}
._12{width:9.472320px;}
._18{width:11.120400px;}
._19{width:12.175440px;}
._17{width:13.248000px;}
._20{width:14.428800px;}
._1f{width:16.361280px;}
._1a{width:17.487360px;}
._1c{width:18.492480px;}
._11{width:19.607040px;}
._10{width:20.733120px;}
._1b{width:21.991680px;}
._1d{width:27.423360px;}
._1e{width:28.472160px;}
._22{width:29.609280px;}
._7{width:83.206080px;}
._9{width:99.145920px;}
._a{width:115.109760px;}
._f{width:836.981760px;}
._21{width:847.596000px;}
._1{width:849.185760px;}
.fc5{color:rgb(16,138,66);}
.fc0{color:rgb(0,104,56);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(89,89,89);}
.fc7{color:rgb(38,38,38);}
.fc8{color:rgb(242,242,242);}
.fc9{color:rgb(255,255,255);}
.fc2{color:rgb(12,92,53);}
.fc3{color:transparent;}
.fc4{color:rgb(171,98,46);}
.fcd{color:rgb(0,148,68);}
.fcb{color:rgb(255,0,0);}
.fca{color:rgb(186,104,39);}
.fcc{color:rgb(0,52,27);}
.fsa{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs7{font-size:120.240000px;}
.fs3{font-size:131.760000px;}
.fs2{font-size:149.760000px;}
.y10{bottom:-25.380000px;}
.y0{bottom:0.000000px;}
.y18c{bottom:3.060000px;}
.y189{bottom:3.240000px;}
.yf{bottom:4.140000px;}
.y182{bottom:4.860000px;}
.y186{bottom:6.840000px;}
.y184{bottom:9.720000px;}
.y13{bottom:10.260000px;}
.y21{bottom:10.440000px;}
.y2f{bottom:15.120000px;}
.y15{bottom:15.300000px;}
.y1a{bottom:15.480000px;}
.y32{bottom:16.380000px;}
.y59{bottom:16.560000px;}
.y5d{bottom:16.605000px;}
.y36{bottom:18.000000px;}
.y2d{bottom:20.340000px;}
.y8{bottom:20.385000px;}
.y33{bottom:21.600000px;}
.y60{bottom:28.260000px;}
.y29{bottom:30.420000px;}
.y2b{bottom:30.600000px;}
.y31{bottom:31.140000px;}
.y35{bottom:32.760000px;}
.y3{bottom:38.340000px;}
.yd{bottom:39.420000px;}
.y61{bottom:39.780000px;}
.y30{bottom:45.720000px;}
.y1c{bottom:46.260000px;}
.y34{bottom:47.340000px;}
.y187{bottom:48.240000px;}
.y2a{bottom:50.805000px;}
.y185{bottom:51.300000px;}
.y7{bottom:51.345000px;}
.y18a{bottom:54.360000px;}
.y188{bottom:54.900000px;}
.y18b{bottom:55.260000px;}
.y2{bottom:58.500000px;}
.yc{bottom:68.580000px;}
.y1d{bottom:77.220000px;}
.y181{bottom:89.280000px;}
.yb{bottom:103.320000px;}
.y157{bottom:110.160000px;}
.y17b{bottom:111.600000px;}
.y16f{bottom:115.380000px;}
.yfe{bottom:123.480000px;}
.yc4{bottom:124.560000px;}
.y156{bottom:128.520000px;}
.y16e{bottom:129.060000px;}
.y17d{bottom:133.560000px;}
.y155{bottom:133.740000px;}
.y17a{bottom:139.320000px;}
.ya1{bottom:144.720000px;}
.yfd{bottom:146.520000px;}
.y154{bottom:147.240000px;}
.yc3{bottom:147.780000px;}
.ya{bottom:149.220000px;}
.y17c{bottom:161.100000px;}
.y55{bottom:163.260000px;}
.y17f{bottom:164.160000px;}
.ya0{bottom:167.940000px;}
.y153{bottom:168.120000px;}
.yfc{bottom:169.740000px;}
.yc2{bottom:171.000000px;}
.y152{bottom:188.280000px;}
.y9f{bottom:191.160000px;}
.y17e{bottom:193.350000px;}
.yc1{bottom:194.070000px;}
.yfb{bottom:201.990000px;}
.y54{bottom:208.470000px;}
.ydc{bottom:209.550000px;}
.y9e{bottom:214.230000px;}
.yfa{bottom:225.030000px;}
.yc0{bottom:226.290000px;}
.y151{bottom:228.630000px;}
.ydb{bottom:241.590000px;}
.y9d{bottom:246.450000px;}
.y53{bottom:247.710000px;}
.yf9{bottom:248.250000px;}
.y150{bottom:248.790000px;}
.ybf{bottom:249.510000px;}
.yda{bottom:264.810000px;}
.y14f{bottom:268.950000px;}
.y9c{bottom:269.670000px;}
.ybe{bottom:272.550000px;}
.y52{bottom:276.870000px;}
.yf8{bottom:280.470000px;}
.yd9{bottom:288.030000px;}
.y14e{bottom:289.110000px;}
.y9b{bottom:292.710000px;}
.ybd{bottom:295.770000px;}
.y51{bottom:297.030000px;}
.y14d{bottom:309.270000px;}
.yd8{bottom:311.070000px;}
.yf7{bottom:312.510000px;}
.y9a{bottom:315.930000px;}
.y50{bottom:317.190000px;}
.ybc{bottom:318.990000px;}
.y2e{bottom:324.210000px;}
.yb4{bottom:326.730000px;}
.y14c{bottom:329.430000px;}
.yd7{bottom:334.290000px;}
.yf6{bottom:335.730000px;}
.y4f{bottom:337.170000px;}
.y99{bottom:339.150000px;}
.y2c{bottom:340.590000px;}
.ybb{bottom:342.030000px;}
.y14b{bottom:349.410000px;}
.y4e{bottom:357.330000px;}
.yd6{bottom:357.510000px;}
.yb3{bottom:358.950000px;}
.yba{bottom:365.250000px;}
.y14a{bottom:369.570000px;}
.y98{bottom:374.970000px;}
.y4d{bottom:377.490000px;}
.y129{bottom:379.470000px;}
.yd5{bottom:380.550000px;}
.yf5{bottom:381.990000px;}
.y149{bottom:389.730000px;}
.yb2{bottom:390.990000px;}
.y28{bottom:393.690000px;}
.yb9{bottom:401.070000px;}
.yd4{bottom:403.770000px;}
.y148{bottom:409.890000px;}
.y97{bottom:411.510000px;}
.yb1{bottom:414.210000px;}
.yf4{bottom:417.810000px;}
.y4c{bottom:421.950000px;}
.y6{bottom:425.550000px;}
.yd3{bottom:426.990000px;}
.y147{bottom:430.050000px;}
.yb0{bottom:437.475000px;}
.yb8{bottom:437.655000px;}
.y96{bottom:442.515000px;}
.y128{bottom:443.595000px;}
.yd2{bottom:450.075000px;}
.y146{bottom:450.255000px;}
.yf3{bottom:454.575000px;}
.yaf{bottom:460.515000px;}
.y27{bottom:466.815000px;}
.y95{bottom:467.355000px;}
.yb7{bottom:468.615000px;}
.y4b{bottom:470.415000px;}
.yd1{bottom:473.295000px;}
.y127{bottom:475.815000px;}
.yf2{bottom:477.615000px;}
.yae{bottom:483.735000px;}
.yb6{bottom:487.515000px;}
.y145{bottom:490.575000px;}
.y10f{bottom:495.795000px;}
.yd0{bottom:496.515000px;}
.y126{bottom:499.035000px;}
.y26{bottom:499.755000px;}
.yf1{bottom:500.835000px;}
.y4a{bottom:502.455000px;}
.y9{bottom:507.675000px;}
.y144{bottom:510.735000px;}
.yb5{bottom:512.355000px;}
.yad{bottom:515.955000px;}
.ycf{bottom:519.735000px;}
.yf0{bottom:524.055000px;}
.y10e{bottom:527.835000px;}
.y143{bottom:530.895000px;}
.y125{bottom:531.075000px;}
.y49{bottom:534.675000px;}
.y25{bottom:541.335000px;}
.yac{bottom:546.735000px;}
.y142{bottom:550.875000px;}
.y124{bottom:554.295000px;}
.yce{bottom:555.375000px;}
.yef{bottom:556.095000px;}
.y10d{bottom:560.055000px;}
.y67{bottom:563.115000px;}
.y48{bottom:566.715000px;}
.y141{bottom:571.035000px;}
.yab{bottom:571.395000px;}
.y123{bottom:577.515000px;}
.yee{bottom:579.315000px;}
.y10c{bottom:583.275000px;}
.y66{bottom:588.495000px;}
.y179{bottom:590.475000px;}
.y24{bottom:591.015000px;}
.y140{bottom:591.195000px;}
.ycd{bottom:592.095000px;}
.y47{bottom:598.935000px;}
.y122{bottom:600.555000px;}
.yed{bottom:602.535000px;}
.y7b{bottom:604.515000px;}
.y10b{bottom:606.315000px;}
.y23{bottom:607.395000px;}
.y13f{bottom:611.355000px;}
.ycc{bottom:622.875000px;}
.y121{bottom:623.775000px;}
.y178{bottom:625.575000px;}
.y65{bottom:630.435000px;}
.y46{bottom:631.155000px;}
.y13e{bottom:631.515000px;}
.yec{bottom:634.755000px;}
.y7a{bottom:636.735000px;}
.y10a{bottom:638.535000px;}
.y22{bottom:640.335000px;}
.y120{bottom:646.995000px;}
.ycb{bottom:647.715000px;}
.y177{bottom:648.795000px;}
.y13d{bottom:651.675000px;}
.yeb{bottom:657.795000px;}
.y109{bottom:661.755000px;}
.y8b{bottom:662.115000px;}
.y45{bottom:663.195000px;}
.y79{bottom:668.985000px;}
.y11f{bottom:670.065000px;}
.y13c{bottom:671.865000px;}
.y64{bottom:672.405000px;}
.y20{bottom:673.125000px;}
.yea{bottom:681.045000px;}
.y108{bottom:685.005000px;}
.y78{bottom:692.025000px;}
.y8a{bottom:694.185000px;}
.y176{bottom:695.085000px;}
.y44{bottom:695.445000px;}
.y11e{bottom:702.285000px;}
.ye9{bottom:704.265000px;}
.ye{bottom:704.445000px;}
.y107{bottom:708.045000px;}
.y13b{bottom:712.185000px;}
.y63{bottom:714.345000px;}
.y1f{bottom:714.885000px;}
.y16d{bottom:716.685000px;}
.y175{bottom:718.305000px;}
.y77{bottom:724.245000px;}
.y11d{bottom:725.505000px;}
.y89{bottom:726.405000px;}
.y43{bottom:727.665000px;}
.y106{bottom:731.265000px;}
.y13a{bottom:732.345000px;}
.ye8{bottom:736.305000px;}
.y16c{bottom:736.845000px;}
.y174{bottom:741.345000px;}
.y76{bottom:747.465000px;}
.y11c{bottom:748.545000px;}
.y139{bottom:752.325000px;}
.y62{bottom:756.285000px;}
.y16b{bottom:757.005000px;}
.y88{bottom:758.625000px;}
.y42{bottom:759.705000px;}
.y1e{bottom:764.385000px;}
.y173{bottom:764.565000px;}
.y105{bottom:767.085000px;}
.y75{bottom:770.505000px;}
.ye7{bottom:772.125000px;}
.y138{bottom:772.485000px;}
.y16a{bottom:776.985000px;}
.y1b{bottom:780.765000px;}
.y87{bottom:790.665000px;}
.y41{bottom:791.925000px;}
.y137{bottom:792.645000px;}
.y74{bottom:793.725000px;}
.y169{bottom:797.145000px;}
.y5f{bottom:798.045000px;}
.y172{bottom:799.665000px;}
.y104{bottom:803.625000px;}
.y11b{bottom:803.985000px;}
.ye6{bottom:808.845000px;}
.y136{bottom:812.805000px;}
.y86{bottom:813.885000px;}
.y168{bottom:817.305000px;}
.y171{bottom:822.885000px;}
.y40{bottom:824.145000px;}
.y73{bottom:825.945000px;}
.y11a{bottom:827.025000px;}
.ye5{bottom:831.885000px;}
.y135{bottom:832.965000px;}
.y103{bottom:835.845000px;}
.y85{bottom:837.105000px;}
.y167{bottom:837.465000px;}
.y170{bottom:846.105000px;}
.y72{bottom:848.985000px;}
.y119{bottom:850.245000px;}
.y134{bottom:853.125000px;}
.ye4{bottom:855.105000px;}
.y3f{bottom:856.185000px;}
.y166{bottom:857.625000px;}
.y102{bottom:859.065000px;}
.y5e{bottom:863.205000px;}
.y94{bottom:865.005000px;}
.y84{bottom:869.145000px;}
.y71{bottom:872.205000px;}
.y133{bottom:873.285000px;}
.y118{bottom:873.465000px;}
.y165{bottom:877.785000px;}
.ye3{bottom:878.325000px;}
.y101{bottom:882.105000px;}
.y19{bottom:885.165000px;}
.y93{bottom:888.225000px;}
.y3e{bottom:888.405000px;}
.y83{bottom:892.365000px;}
.y117{bottom:896.505000px;}
.y164{bottom:897.945000px;}
.y70{bottom:904.425000px;}
.y5c{bottom:905.145000px;}
.y100{bottom:905.325000px;}
.ye2{bottom:910.410000px;}
.yaa{bottom:914.370000px;}
.y82{bottom:915.630000px;}
.y163{bottom:918.150000px;}
.y116{bottom:919.770000px;}
.y92{bottom:920.490000px;}
.y3d{bottom:920.670000px;}
.y18{bottom:923.010000px;}
.y6f{bottom:927.510000px;}
.ye1{bottom:933.630000px;}
.ya9{bottom:937.590000px;}
.y162{bottom:938.310000px;}
.y81{bottom:938.670000px;}
.y91{bottom:943.530000px;}
.yca{bottom:946.590000px;}
.y132{bottom:946.950000px;}
.y5b{bottom:947.130000px;}
.y6e{bottom:950.730000px;}
.y115{bottom:951.990000px;}
.y3c{bottom:952.890000px;}
.ye0{bottom:956.850000px;}
.y161{bottom:958.470000px;}
.ya8{bottom:960.630000px;}
.y80{bottom:961.890000px;}
.y17{bottom:965.490000px;}
.y90{bottom:966.750000px;}
.y131{bottom:967.110000px;}
.yc9{bottom:969.810000px;}
.y6d{bottom:973.950000px;}
.y114{bottom:975.210000px;}
.y160{bottom:978.450000px;}
.ydf{bottom:979.890000px;}
.ya7{bottom:983.850000px;}
.y3b{bottom:984.930000px;}
.y130{bottom:987.270000px;}
.y5a{bottom:989.070000px;}
.y8f{bottom:989.970000px;}
.yc8{bottom:992.850000px;}
.y7f{bottom:994.110000px;}
.y6c{bottom:996.990000px;}
.y113{bottom:998.250000px;}
.y15f{bottom:998.610000px;}
.y16{bottom:1003.110000px;}
.ya6{bottom:1007.070000px;}
.y12f{bottom:1007.430000px;}
.y8e{bottom:1013.010000px;}
.yc7{bottom:1016.070000px;}
.y3a{bottom:1017.150000px;}
.y15e{bottom:1018.770000px;}
.y6b{bottom:1020.210000px;}
.y112{bottom:1021.470000px;}
.yde{bottom:1026.330000px;}
.y12d{bottom:1027.410000px;}
.y58{bottom:1030.830000px;}
.y12e{bottom:1033.350000px;}
.y15d{bottom:1038.930000px;}
.ya5{bottom:1039.110000px;}
.yc6{bottom:1039.290000px;}
.y7e{bottom:1040.370000px;}
.y6a{bottom:1043.430000px;}
.y111{bottom:1044.690000px;}
.y14{bottom:1045.590000px;}
.y12c{bottom:1047.570000px;}
.y39{bottom:1049.370000px;}
.y8d{bottom:1050.270000px;}
.y15c{bottom:1059.090000px;}
.ya4{bottom:1062.330000px;}
.y7d{bottom:1063.590000px;}
.y69{bottom:1066.650000px;}
.y12b{bottom:1067.730000px;}
.y15b{bottom:1079.250000px;}
.y12{bottom:1083.390000px;}
.ydd{bottom:1085.370000px;}
.ya3{bottom:1085.550000px;}
.y110{bottom:1085.730000px;}
.y7c{bottom:1086.810000px;}
.y12a{bottom:1087.170000px;}
.y57{bottom:1089.330000px;}
.y68{bottom:1089.690000px;}
.y38{bottom:1093.830000px;}
.yff{bottom:1094.550000px;}
.y8c{bottom:1095.630000px;}
.yc5{bottom:1098.150000px;}
.y159{bottom:1099.410000px;}
.y15a{bottom:1105.350000px;}
.y180{bottom:1107.150000px;}
.y5{bottom:1108.590000px;}
.ya2{bottom:1117.590000px;}
.y11{bottom:1124.970000px;}
.y56{bottom:1127.850000px;}
.y4{bottom:1131.810000px;}
.y158{bottom:1136.490000px;}
.y37{bottom:1140.810000px;}
.y183{bottom:1161.900000px;}
.y1{bottom:1194.120000px;}
.h2c{height:14.400000px;}
.h2b{height:14.580000px;}
.h25{height:16.200000px;}
.h29{height:18.180000px;}
.h2a{height:21.240000px;}
.h9{height:30.240000px;}
.hb{height:32.040000px;}
.h11{height:32.076000px;}
.h10{height:32.220000px;}
.h27{height:33.120000px;}
.hc{height:36.900000px;}
.he{height:37.116000px;}
.h23{height:38.671172px;}
.h1b{height:41.040000px;}
.h1a{height:41.220000px;}
.h1c{height:41.256000px;}
.h22{height:41.535703px;}
.hd{height:41.760000px;}
.h1f{height:43.400391px;}
.h21{height:45.992812px;}
.h26{height:47.980898px;}
.h15{height:49.394180px;}
.h19{height:50.229844px;}
.h13{height:52.200000px;}
.h2{height:53.237812px;}
.h24{height:59.439023px;}
.h28{height:61.189805px;}
.h1d{height:64.440000px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h20{height:68.554688px;}
.h14{height:70.380000px;}
.h6{height:71.613281px;}
.h12{height:72.396000px;}
.h16{height:73.440000px;}
.h5{height:77.436000px;}
.h1e{height:80.208984px;}
.h17{height:91.177734px;}
.hf{height:103.680000px;}
.h18{height:114.486328px;}
.ha{height:125.455078px;}
.h8{height:148.955625px;}
.h7{height:193.890000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:76.140000px;}
.w19{width:99.000000px;}
.w1b{width:99.036000px;}
.w1a{width:99.180000px;}
.w18{width:99.216000px;}
.w16{width:115.020000px;}
.we{width:126.936000px;}
.w17{width:151.950000px;}
.w9{width:168.510000px;}
.w8{width:168.690000px;}
.wa{width:169.050000px;}
.wb{width:171.390000px;}
.w6{width:171.930000px;}
.w13{width:190.290000px;}
.w3{width:210.135000px;}
.wf{width:237.270000px;}
.w10{width:237.855000px;}
.w5{width:252.975000px;}
.w11{width:352.875000px;}
.w4{width:485.025000px;}
.w14{width:487.725000px;}
.w7{width:507.705000px;}
.wc{width:508.245000px;}
.w12{width:524.805000px;}
.w15{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x5{left:10.800000px;}
.xc{left:12.060000px;}
.x14{left:23.580000px;}
.x13{left:27.720000px;}
.x15{left:29.880000px;}
.x1e{left:34.200000px;}
.x18{left:43.740000px;}
.xe{left:47.160000px;}
.x25{left:50.394000px;}
.x10{left:52.200000px;}
.x2a{left:64.794000px;}
.x1c{left:68.400000px;}
.x17{left:75.600000px;}
.x28{left:79.554000px;}
.x19{left:81.180000px;}
.x2b{left:83.334000px;}
.x12{left:86.265000px;}
.x29{left:89.994000px;}
.x1d{left:93.825000px;}
.x2c{left:95.214000px;}
.x3b{left:99.576000px;}
.x16{left:100.845000px;}
.x38{left:101.916000px;}
.x3{left:106.415987px;}
.x35{left:111.275987px;}
.x22{left:122.975987px;}
.x1b{left:128.205000px;}
.x23{left:139.355987px;}
.x30{left:149.075987px;}
.xd{left:183.270000px;}
.x27{left:204.510000px;}
.x3a{left:207.210000px;}
.x2f{left:211.349987px;}
.x36{left:227.729973px;}
.x2e{left:229.169987px;}
.x37{left:232.949987px;}
.x20{left:271.514987px;}
.x9{left:279.075000px;}
.x2d{left:290.954987px;}
.x26{left:298.335000px;}
.xf{left:310.935000px;}
.x34{left:322.454987px;}
.x21{left:368.894987px;}
.x24{left:386.174987px;}
.x6{left:400.215000px;}
.x4{left:403.455000px;}
.x7{left:406.155000px;}
.x3c{left:417.135000px;}
.x39{left:425.415000px;}
.xa{left:448.485000px;}
.x32{left:470.624973px;}
.x33{left:475.844987px;}
.x1a{left:519.405000px;}
.x3d{left:523.905000px;}
.x11{left:548.925000px;}
.xb{left:617.730000px;}
.x1{left:683.969987px;}
.x31{left:769.829987px;}
.x2{left:778.499987px;}
.x1f{left:786.599987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1b{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.757333pt;}
.ls1c{letter-spacing:-0.422400pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls28{letter-spacing:-0.234133pt;}
.lsf{letter-spacing:-0.225067pt;}
.ls17{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.171733pt;}
.ls25{letter-spacing:-0.156267pt;}
.ls18{letter-spacing:-0.146133pt;}
.lse{letter-spacing:-0.117867pt;}
.ls1a{letter-spacing:-0.102400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.019840pt;}
.ls16{letter-spacing:0.053867pt;}
.ls26{letter-spacing:0.066667pt;}
.ls6{letter-spacing:0.076800pt;}
.lsd{letter-spacing:0.077867pt;}
.ls12{letter-spacing:0.079467pt;}
.ls24{letter-spacing:0.115200pt;}
.ls2{letter-spacing:0.117760pt;}
.ls1f{letter-spacing:0.117867pt;}
.ls3{letter-spacing:0.133120pt;}
.ls23{letter-spacing:0.154880pt;}
.lsb{letter-spacing:0.205867pt;}
.ls10{letter-spacing:0.211840pt;}
.ls7{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.227840pt;}
.ls22{letter-spacing:0.235733pt;}
.ls9{letter-spacing:0.278933pt;}
.ls21{letter-spacing:0.294400pt;}
.ls1{letter-spacing:0.312320pt;}
.ls20{letter-spacing:0.312533pt;}
.ls19{letter-spacing:0.348160pt;}
.lsc{letter-spacing:0.352000pt;}
.ls1e{letter-spacing:14.991360pt;}
.ls1d{letter-spacing:30.351360pt;}
.ls11{letter-spacing:31.087360pt;}
.ls13{letter-spacing:38.703360pt;}
.ls14{letter-spacing:45.546667pt;}
.ls27{letter-spacing:107.866027pt;}
.wsb{word-spacing:-16.922880pt;}
.wsc{word-spacing:-14.464000pt;}
.ws13{word-spacing:-13.619413pt;}
.ws14{word-spacing:-13.601280pt;}
.ws5{word-spacing:-13.585813pt;}
.ws15{word-spacing:-13.542613pt;}
.ws3{word-spacing:-13.534613pt;}
.ws12{word-spacing:-13.424747pt;}
.ws16{word-spacing:-13.422080pt;}
.ws1{word-spacing:-13.383680pt;}
.ws18{word-spacing:-13.373547pt;}
.ws2{word-spacing:-13.306880pt;}
.wsf{word-spacing:-13.204480pt;}
.ws9{word-spacing:-13.189013pt;}
.wse{word-spacing:-13.160747pt;}
.wsd{word-spacing:-13.114880pt;}
.wsa{word-spacing:-13.081813pt;}
.ws4{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.884480pt;}
.ws10{word-spacing:-12.474880pt;}
.ws17{word-spacing:-12.005120pt;}
.ws8{word-spacing:-9.690880pt;}
.ws19{word-spacing:-9.456747pt;}
.ws7{word-spacing:-8.741120pt;}
.ws6{word-spacing:-8.594987pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-12.741973pt;}
._8{margin-left:-11.845973pt;}
._c{margin-left:-10.435840pt;}
._4{margin-left:-9.107840pt;}
._b{margin-left:-6.875733pt;}
._e{margin-left:-4.577920pt;}
._6{margin-left:-3.234560pt;}
._5{margin-left:-2.298240pt;}
._0{margin-left:-0.954880pt;}
._2{width:0.931840pt;}
._3{width:1.843840pt;}
._16{width:2.759680pt;}
._14{width:4.533760pt;}
._15{width:5.888000pt;}
._13{width:7.367040pt;}
._12{width:8.419840pt;}
._18{width:9.884800pt;}
._19{width:10.822613pt;}
._17{width:11.776000pt;}
._20{width:12.825600pt;}
._1f{width:14.543360pt;}
._1a{width:15.544320pt;}
._1c{width:16.437760pt;}
._11{width:17.428480pt;}
._10{width:18.429440pt;}
._1b{width:19.548160pt;}
._1d{width:24.376320pt;}
._1e{width:25.308587pt;}
._22{width:26.319360pt;}
._7{width:73.960960pt;}
._9{width:88.129707pt;}
._a{width:102.319787pt;}
._f{width:743.983787pt;}
._21{width:753.418667pt;}
._1{width:754.831787pt;}
.fsa{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs7{font-size:106.880000pt;}
.fs3{font-size:117.120000pt;}
.fs2{font-size:133.120000pt;}
.y10{bottom:-22.560000pt;}
.y0{bottom:0.000000pt;}
.y18c{bottom:2.720000pt;}
.y189{bottom:2.880000pt;}
.yf{bottom:3.680000pt;}
.y182{bottom:4.320000pt;}
.y186{bottom:6.080000pt;}
.y184{bottom:8.640000pt;}
.y13{bottom:9.120000pt;}
.y21{bottom:9.280000pt;}
.y2f{bottom:13.440000pt;}
.y15{bottom:13.600000pt;}
.y1a{bottom:13.760000pt;}
.y32{bottom:14.560000pt;}
.y59{bottom:14.720000pt;}
.y5d{bottom:14.760000pt;}
.y36{bottom:16.000000pt;}
.y2d{bottom:18.080000pt;}
.y8{bottom:18.120000pt;}
.y33{bottom:19.200000pt;}
.y60{bottom:25.120000pt;}
.y29{bottom:27.040000pt;}
.y2b{bottom:27.200000pt;}
.y31{bottom:27.680000pt;}
.y35{bottom:29.120000pt;}
.y3{bottom:34.080000pt;}
.yd{bottom:35.040000pt;}
.y61{bottom:35.360000pt;}
.y30{bottom:40.640000pt;}
.y1c{bottom:41.120000pt;}
.y34{bottom:42.080000pt;}
.y187{bottom:42.880000pt;}
.y2a{bottom:45.160000pt;}
.y185{bottom:45.600000pt;}
.y7{bottom:45.640000pt;}
.y18a{bottom:48.320000pt;}
.y188{bottom:48.800000pt;}
.y18b{bottom:49.120000pt;}
.y2{bottom:52.000000pt;}
.yc{bottom:60.960000pt;}
.y1d{bottom:68.640000pt;}
.y181{bottom:79.360000pt;}
.yb{bottom:91.840000pt;}
.y157{bottom:97.920000pt;}
.y17b{bottom:99.200000pt;}
.y16f{bottom:102.560000pt;}
.yfe{bottom:109.760000pt;}
.yc4{bottom:110.720000pt;}
.y156{bottom:114.240000pt;}
.y16e{bottom:114.720000pt;}
.y17d{bottom:118.720000pt;}
.y155{bottom:118.880000pt;}
.y17a{bottom:123.840000pt;}
.ya1{bottom:128.640000pt;}
.yfd{bottom:130.240000pt;}
.y154{bottom:130.880000pt;}
.yc3{bottom:131.360000pt;}
.ya{bottom:132.640000pt;}
.y17c{bottom:143.200000pt;}
.y55{bottom:145.120000pt;}
.y17f{bottom:145.920000pt;}
.ya0{bottom:149.280000pt;}
.y153{bottom:149.440000pt;}
.yfc{bottom:150.880000pt;}
.yc2{bottom:152.000000pt;}
.y152{bottom:167.360000pt;}
.y9f{bottom:169.920000pt;}
.y17e{bottom:171.866667pt;}
.yc1{bottom:172.506667pt;}
.yfb{bottom:179.546667pt;}
.y54{bottom:185.306667pt;}
.ydc{bottom:186.266667pt;}
.y9e{bottom:190.426667pt;}
.yfa{bottom:200.026667pt;}
.yc0{bottom:201.146667pt;}
.y151{bottom:203.226667pt;}
.ydb{bottom:214.746667pt;}
.y9d{bottom:219.066667pt;}
.y53{bottom:220.186667pt;}
.yf9{bottom:220.666667pt;}
.y150{bottom:221.146667pt;}
.ybf{bottom:221.786667pt;}
.yda{bottom:235.386667pt;}
.y14f{bottom:239.066667pt;}
.y9c{bottom:239.706667pt;}
.ybe{bottom:242.266667pt;}
.y52{bottom:246.106667pt;}
.yf8{bottom:249.306667pt;}
.yd9{bottom:256.026667pt;}
.y14e{bottom:256.986667pt;}
.y9b{bottom:260.186667pt;}
.ybd{bottom:262.906667pt;}
.y51{bottom:264.026667pt;}
.y14d{bottom:274.906667pt;}
.yd8{bottom:276.506667pt;}
.yf7{bottom:277.786667pt;}
.y9a{bottom:280.826667pt;}
.y50{bottom:281.946667pt;}
.ybc{bottom:283.546667pt;}
.y2e{bottom:288.186667pt;}
.yb4{bottom:290.426667pt;}
.y14c{bottom:292.826667pt;}
.yd7{bottom:297.146667pt;}
.yf6{bottom:298.426667pt;}
.y4f{bottom:299.706667pt;}
.y99{bottom:301.466667pt;}
.y2c{bottom:302.746667pt;}
.ybb{bottom:304.026667pt;}
.y14b{bottom:310.586667pt;}
.y4e{bottom:317.626667pt;}
.yd6{bottom:317.786667pt;}
.yb3{bottom:319.066667pt;}
.yba{bottom:324.666667pt;}
.y14a{bottom:328.506667pt;}
.y98{bottom:333.306667pt;}
.y4d{bottom:335.546667pt;}
.y129{bottom:337.306667pt;}
.yd5{bottom:338.266667pt;}
.yf5{bottom:339.546667pt;}
.y149{bottom:346.426667pt;}
.yb2{bottom:347.546667pt;}
.y28{bottom:349.946667pt;}
.yb9{bottom:356.506667pt;}
.yd4{bottom:358.906667pt;}
.y148{bottom:364.346667pt;}
.y97{bottom:365.786667pt;}
.yb1{bottom:368.186667pt;}
.yf4{bottom:371.386667pt;}
.y4c{bottom:375.066667pt;}
.y6{bottom:378.266667pt;}
.yd3{bottom:379.546667pt;}
.y147{bottom:382.266667pt;}
.yb0{bottom:388.866667pt;}
.yb8{bottom:389.026667pt;}
.y96{bottom:393.346667pt;}
.y128{bottom:394.306667pt;}
.yd2{bottom:400.066667pt;}
.y146{bottom:400.226667pt;}
.yf3{bottom:404.066667pt;}
.yaf{bottom:409.346667pt;}
.y27{bottom:414.946667pt;}
.y95{bottom:415.426667pt;}
.yb7{bottom:416.546667pt;}
.y4b{bottom:418.146667pt;}
.yd1{bottom:420.706667pt;}
.y127{bottom:422.946667pt;}
.yf2{bottom:424.546667pt;}
.yae{bottom:429.986667pt;}
.yb6{bottom:433.346667pt;}
.y145{bottom:436.066667pt;}
.y10f{bottom:440.706667pt;}
.yd0{bottom:441.346667pt;}
.y126{bottom:443.586667pt;}
.y26{bottom:444.226667pt;}
.yf1{bottom:445.186667pt;}
.y4a{bottom:446.626667pt;}
.y9{bottom:451.266667pt;}
.y144{bottom:453.986667pt;}
.yb5{bottom:455.426667pt;}
.yad{bottom:458.626667pt;}
.ycf{bottom:461.986667pt;}
.yf0{bottom:465.826667pt;}
.y10e{bottom:469.186667pt;}
.y143{bottom:471.906667pt;}
.y125{bottom:472.066667pt;}
.y49{bottom:475.266667pt;}
.y25{bottom:481.186667pt;}
.yac{bottom:485.986667pt;}
.y142{bottom:489.666667pt;}
.y124{bottom:492.706667pt;}
.yce{bottom:493.666667pt;}
.yef{bottom:494.306667pt;}
.y10d{bottom:497.826667pt;}
.y67{bottom:500.546667pt;}
.y48{bottom:503.746667pt;}
.y141{bottom:507.586667pt;}
.yab{bottom:507.906667pt;}
.y123{bottom:513.346667pt;}
.yee{bottom:514.946667pt;}
.y10c{bottom:518.466667pt;}
.y66{bottom:523.106667pt;}
.y179{bottom:524.866667pt;}
.y24{bottom:525.346667pt;}
.y140{bottom:525.506667pt;}
.ycd{bottom:526.306667pt;}
.y47{bottom:532.386667pt;}
.y122{bottom:533.826667pt;}
.yed{bottom:535.586667pt;}
.y7b{bottom:537.346667pt;}
.y10b{bottom:538.946667pt;}
.y23{bottom:539.906667pt;}
.y13f{bottom:543.426667pt;}
.ycc{bottom:553.666667pt;}
.y121{bottom:554.466667pt;}
.y178{bottom:556.066667pt;}
.y65{bottom:560.386667pt;}
.y46{bottom:561.026667pt;}
.y13e{bottom:561.346667pt;}
.yec{bottom:564.226667pt;}
.y7a{bottom:565.986667pt;}
.y10a{bottom:567.586667pt;}
.y22{bottom:569.186667pt;}
.y120{bottom:575.106667pt;}
.ycb{bottom:575.746667pt;}
.y177{bottom:576.706667pt;}
.y13d{bottom:579.266667pt;}
.yeb{bottom:584.706667pt;}
.y109{bottom:588.226667pt;}
.y8b{bottom:588.546667pt;}
.y45{bottom:589.506667pt;}
.y79{bottom:594.653333pt;}
.y11f{bottom:595.613333pt;}
.y13c{bottom:597.213333pt;}
.y64{bottom:597.693333pt;}
.y20{bottom:598.333333pt;}
.yea{bottom:605.373333pt;}
.y108{bottom:608.893333pt;}
.y78{bottom:615.133333pt;}
.y8a{bottom:617.053333pt;}
.y176{bottom:617.853333pt;}
.y44{bottom:618.173333pt;}
.y11e{bottom:624.253333pt;}
.ye9{bottom:626.013333pt;}
.ye{bottom:626.173333pt;}
.y107{bottom:629.373333pt;}
.y13b{bottom:633.053333pt;}
.y63{bottom:634.973333pt;}
.y1f{bottom:635.453333pt;}
.y16d{bottom:637.053333pt;}
.y175{bottom:638.493333pt;}
.y77{bottom:643.773333pt;}
.y11d{bottom:644.893333pt;}
.y89{bottom:645.693333pt;}
.y43{bottom:646.813333pt;}
.y106{bottom:650.013333pt;}
.y13a{bottom:650.973333pt;}
.ye8{bottom:654.493333pt;}
.y16c{bottom:654.973333pt;}
.y174{bottom:658.973333pt;}
.y76{bottom:664.413333pt;}
.y11c{bottom:665.373333pt;}
.y139{bottom:668.733333pt;}
.y62{bottom:672.253333pt;}
.y16b{bottom:672.893333pt;}
.y88{bottom:674.333333pt;}
.y42{bottom:675.293333pt;}
.y1e{bottom:679.453333pt;}
.y173{bottom:679.613333pt;}
.y105{bottom:681.853333pt;}
.y75{bottom:684.893333pt;}
.ye7{bottom:686.333333pt;}
.y138{bottom:686.653333pt;}
.y16a{bottom:690.653333pt;}
.y1b{bottom:694.013333pt;}
.y87{bottom:702.813333pt;}
.y41{bottom:703.933333pt;}
.y137{bottom:704.573333pt;}
.y74{bottom:705.533333pt;}
.y169{bottom:708.573333pt;}
.y5f{bottom:709.373333pt;}
.y172{bottom:710.813333pt;}
.y104{bottom:714.333333pt;}
.y11b{bottom:714.653333pt;}
.ye6{bottom:718.973333pt;}
.y136{bottom:722.493333pt;}
.y86{bottom:723.453333pt;}
.y168{bottom:726.493333pt;}
.y171{bottom:731.453333pt;}
.y40{bottom:732.573333pt;}
.y73{bottom:734.173333pt;}
.y11a{bottom:735.133333pt;}
.ye5{bottom:739.453333pt;}
.y135{bottom:740.413333pt;}
.y103{bottom:742.973333pt;}
.y85{bottom:744.093333pt;}
.y167{bottom:744.413333pt;}
.y170{bottom:752.093333pt;}
.y72{bottom:754.653333pt;}
.y119{bottom:755.773333pt;}
.y134{bottom:758.333333pt;}
.ye4{bottom:760.093333pt;}
.y3f{bottom:761.053333pt;}
.y166{bottom:762.333333pt;}
.y102{bottom:763.613333pt;}
.y5e{bottom:767.293333pt;}
.y94{bottom:768.893333pt;}
.y84{bottom:772.573333pt;}
.y71{bottom:775.293333pt;}
.y133{bottom:776.253333pt;}
.y118{bottom:776.413333pt;}
.y165{bottom:780.253333pt;}
.ye3{bottom:780.733333pt;}
.y101{bottom:784.093333pt;}
.y19{bottom:786.813333pt;}
.y93{bottom:789.533333pt;}
.y3e{bottom:789.693333pt;}
.y83{bottom:793.213333pt;}
.y117{bottom:796.893333pt;}
.y164{bottom:798.173333pt;}
.y70{bottom:803.933333pt;}
.y5c{bottom:804.573333pt;}
.y100{bottom:804.733333pt;}
.ye2{bottom:809.253333pt;}
.yaa{bottom:812.773333pt;}
.y82{bottom:813.893333pt;}
.y163{bottom:816.133333pt;}
.y116{bottom:817.573333pt;}
.y92{bottom:818.213333pt;}
.y3d{bottom:818.373333pt;}
.y18{bottom:820.453333pt;}
.y6f{bottom:824.453333pt;}
.ye1{bottom:829.893333pt;}
.ya9{bottom:833.413333pt;}
.y162{bottom:834.053333pt;}
.y81{bottom:834.373333pt;}
.y91{bottom:838.693333pt;}
.yca{bottom:841.413333pt;}
.y132{bottom:841.733333pt;}
.y5b{bottom:841.893333pt;}
.y6e{bottom:845.093333pt;}
.y115{bottom:846.213333pt;}
.y3c{bottom:847.013333pt;}
.ye0{bottom:850.533333pt;}
.y161{bottom:851.973333pt;}
.ya8{bottom:853.893333pt;}
.y80{bottom:855.013333pt;}
.y17{bottom:858.213333pt;}
.y90{bottom:859.333333pt;}
.y131{bottom:859.653333pt;}
.yc9{bottom:862.053333pt;}
.y6d{bottom:865.733333pt;}
.y114{bottom:866.853333pt;}
.y160{bottom:869.733333pt;}
.ydf{bottom:871.013333pt;}
.ya7{bottom:874.533333pt;}
.y3b{bottom:875.493333pt;}
.y130{bottom:877.573333pt;}
.y5a{bottom:879.173333pt;}
.y8f{bottom:879.973333pt;}
.yc8{bottom:882.533333pt;}
.y7f{bottom:883.653333pt;}
.y6c{bottom:886.213333pt;}
.y113{bottom:887.333333pt;}
.y15f{bottom:887.653333pt;}
.y16{bottom:891.653333pt;}
.ya6{bottom:895.173333pt;}
.y12f{bottom:895.493333pt;}
.y8e{bottom:900.453333pt;}
.yc7{bottom:903.173333pt;}
.y3a{bottom:904.133333pt;}
.y15e{bottom:905.573333pt;}
.y6b{bottom:906.853333pt;}
.y112{bottom:907.973333pt;}
.yde{bottom:912.293333pt;}
.y12d{bottom:913.253333pt;}
.y58{bottom:916.293333pt;}
.y12e{bottom:918.533333pt;}
.y15d{bottom:923.493333pt;}
.ya5{bottom:923.653333pt;}
.yc6{bottom:923.813333pt;}
.y7e{bottom:924.773333pt;}
.y6a{bottom:927.493333pt;}
.y111{bottom:928.613333pt;}
.y14{bottom:929.413333pt;}
.y12c{bottom:931.173333pt;}
.y39{bottom:932.773333pt;}
.y8d{bottom:933.573333pt;}
.y15c{bottom:941.413333pt;}
.ya4{bottom:944.293333pt;}
.y7d{bottom:945.413333pt;}
.y69{bottom:948.133333pt;}
.y12b{bottom:949.093333pt;}
.y15b{bottom:959.333333pt;}
.y12{bottom:963.013333pt;}
.ydd{bottom:964.773333pt;}
.ya3{bottom:964.933333pt;}
.y110{bottom:965.093333pt;}
.y7c{bottom:966.053333pt;}
.y12a{bottom:966.373333pt;}
.y57{bottom:968.293333pt;}
.y68{bottom:968.613333pt;}
.y38{bottom:972.293333pt;}
.yff{bottom:972.933333pt;}
.y8c{bottom:973.893333pt;}
.yc5{bottom:976.133333pt;}
.y159{bottom:977.253333pt;}
.y15a{bottom:982.533333pt;}
.y180{bottom:984.133333pt;}
.y5{bottom:985.413333pt;}
.ya2{bottom:993.413333pt;}
.y11{bottom:999.973333pt;}
.y56{bottom:1002.533333pt;}
.y4{bottom:1006.053333pt;}
.y158{bottom:1010.213333pt;}
.y37{bottom:1014.053333pt;}
.y183{bottom:1032.800000pt;}
.y1{bottom:1061.440000pt;}
.h2c{height:12.800000pt;}
.h2b{height:12.960000pt;}
.h25{height:14.400000pt;}
.h29{height:16.160000pt;}
.h2a{height:18.880000pt;}
.h9{height:26.880000pt;}
.hb{height:28.480000pt;}
.h11{height:28.512000pt;}
.h10{height:28.640000pt;}
.h27{height:29.440000pt;}
.hc{height:32.800000pt;}
.he{height:32.992000pt;}
.h23{height:34.374375pt;}
.h1b{height:36.480000pt;}
.h1a{height:36.640000pt;}
.h1c{height:36.672000pt;}
.h22{height:36.920625pt;}
.hd{height:37.120000pt;}
.h1f{height:38.578125pt;}
.h21{height:40.882500pt;}
.h26{height:42.649687pt;}
.h15{height:43.905937pt;}
.h19{height:44.648750pt;}
.h13{height:46.400000pt;}
.h2{height:47.322500pt;}
.h24{height:52.834688pt;}
.h28{height:54.390938pt;}
.h1d{height:57.280000pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h20{height:60.937500pt;}
.h14{height:62.560000pt;}
.h6{height:63.656250pt;}
.h12{height:64.352000pt;}
.h16{height:65.280000pt;}
.h5{height:68.832000pt;}
.h1e{height:71.296875pt;}
.h17{height:81.046875pt;}
.hf{height:92.160000pt;}
.h18{height:101.765625pt;}
.ha{height:111.515625pt;}
.h8{height:132.405000pt;}
.h7{height:172.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:67.680000pt;}
.w19{width:88.000000pt;}
.w1b{width:88.032000pt;}
.w1a{width:88.160000pt;}
.w18{width:88.192000pt;}
.w16{width:102.240000pt;}
.we{width:112.832000pt;}
.w17{width:135.066667pt;}
.w9{width:149.786667pt;}
.w8{width:149.946667pt;}
.wa{width:150.266667pt;}
.wb{width:152.346667pt;}
.w6{width:152.826667pt;}
.w13{width:169.146667pt;}
.w3{width:186.786667pt;}
.wf{width:210.906667pt;}
.w10{width:211.426667pt;}
.w5{width:224.866667pt;}
.w11{width:313.666667pt;}
.w4{width:431.133333pt;}
.w14{width:433.533333pt;}
.w7{width:451.293333pt;}
.wc{width:451.773333pt;}
.w12{width:466.493333pt;}
.w15{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x5{left:9.600000pt;}
.xc{left:10.720000pt;}
.x14{left:20.960000pt;}
.x13{left:24.640000pt;}
.x15{left:26.560000pt;}
.x1e{left:30.400000pt;}
.x18{left:38.880000pt;}
.xe{left:41.920000pt;}
.x25{left:44.794667pt;}
.x10{left:46.400000pt;}
.x2a{left:57.594667pt;}
.x1c{left:60.800000pt;}
.x17{left:67.200000pt;}
.x28{left:70.714667pt;}
.x19{left:72.160000pt;}
.x2b{left:74.074667pt;}
.x12{left:76.680000pt;}
.x29{left:79.994667pt;}
.x1d{left:83.400000pt;}
.x2c{left:84.634667pt;}
.x3b{left:88.512000pt;}
.x16{left:89.640000pt;}
.x38{left:90.592000pt;}
.x3{left:94.591988pt;}
.x35{left:98.911988pt;}
.x22{left:109.311988pt;}
.x1b{left:113.960000pt;}
.x23{left:123.871988pt;}
.x30{left:132.511988pt;}
.xd{left:162.906667pt;}
.x27{left:181.786667pt;}
.x3a{left:184.186667pt;}
.x2f{left:187.866655pt;}
.x36{left:202.426643pt;}
.x2e{left:203.706655pt;}
.x37{left:207.066655pt;}
.x20{left:241.346655pt;}
.x9{left:248.066667pt;}
.x2d{left:258.626655pt;}
.x26{left:265.186667pt;}
.xf{left:276.386667pt;}
.x34{left:286.626655pt;}
.x21{left:327.906655pt;}
.x24{left:343.266655pt;}
.x6{left:355.746667pt;}
.x4{left:358.626667pt;}
.x7{left:361.026667pt;}
.x3c{left:370.786667pt;}
.x39{left:378.146667pt;}
.xa{left:398.653333pt;}
.x32{left:418.333310pt;}
.x33{left:422.973322pt;}
.x1a{left:461.693333pt;}
.x3d{left:465.693333pt;}
.x11{left:487.933333pt;}
.xb{left:549.093333pt;}
.x1{left:607.973322pt;}
.x31{left:684.293322pt;}
.x2{left:691.999988pt;}
.x1f{left:699.199988pt;}
}




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