
    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_78c9eef897d7ee7fe129be0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_e6f85dd25f53af3ab4f351bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_b7673cdcd290645f5df35663.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_a00406dea109c5fc4707fe35.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_9567a979f555c9e52f643fa7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_8340b8ed6d04cd3a640ad9e3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.102051;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_f63911b3bae270f47e57429d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6488b85dc1de1d7abed36e52.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_90c1b0cd55b68a83928b175a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-1.908000px;}
.lsf{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.972000px;}
.ls11{letter-spacing:-0.954000px;}
.lse{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.630000px;}
.ls10{letter-spacing:-0.507000px;}
.ls8{letter-spacing:-0.486600px;}
.ls6{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.493920px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.869760px;}
.ls2{letter-spacing:1.080000px;}
.ls13{letter-spacing:16.306560px;}
.ls12{letter-spacing:46.546560px;}
.lsd{letter-spacing:63.826560px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-60.480000px;}
.ws5{word-spacing:-54.720000px;}
.ws0{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.633400px;}
.wsd{word-spacing:-14.613000px;}
.wsb{word-spacing:-14.184000px;}
.wse{word-spacing:-14.166000px;}
.wsa{word-spacing:-14.148000px;}
.ws4{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
._17{margin-left:-3.458880px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._7{width:5.142720px;}
._9{width:7.168320px;}
._a{width:8.363520px;}
._d{width:9.440640px;}
._11{width:10.791360px;}
._8{width:12.136320px;}
._f{width:13.608000px;}
._e{width:16.536960px;}
._b{width:18.627840px;}
._c{width:19.869120px;}
._16{width:21.407040px;}
._15{width:22.651200px;}
._5{width:25.084800px;}
._6{width:26.582400px;}
._10{width:28.244160px;}
._12{width:42.275520px;}
._14{width:48.844800px;}
._13{width:50.319360px;}
._18{width:60.022080px;}
._1c{width:88.542720px;}
._1a{width:103.980480px;}
._19{width:141.765120px;}
._1b{width:274.484160px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(14,16,26);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:2.880000px;}
.fs7{font-size:5.760000px;}
.fsc{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:3.240000px;}
.y102{bottom:3.585000px;}
.ycb{bottom:3.600000px;}
.y10a{bottom:3.630000px;}
.ye9{bottom:3.945000px;}
.y58{bottom:3.955500px;}
.y5{bottom:3.960000px;}
.y10b{bottom:3.990000px;}
.y5b{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y4b{bottom:10.795500px;}
.yf6{bottom:11.925000px;}
.yf9{bottom:12.240000px;}
.yfd{bottom:12.600000px;}
.y4a{bottom:18.715500px;}
.yfc{bottom:20.520000px;}
.yf4{bottom:20.565000px;}
.yca{bottom:20.925000px;}
.y57{bottom:21.235500px;}
.y4{bottom:21.240000px;}
.yf1{bottom:29.565000px;}
.yf3{bottom:37.845000px;}
.yf7{bottom:38.205000px;}
.y41{bottom:38.520000px;}
.y56{bottom:38.554500px;}
.y3{bottom:44.280000px;}
.yf8{bottom:46.845000px;}
.y49{bottom:48.274500px;}
.y40{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.y55{bottom:59.794500px;}
.y48{bottom:60.154500px;}
.y3f{bottom:73.080000px;}
.y47{bottom:73.114500px;}
.y54{bottom:75.634500px;}
.y46{bottom:86.074500px;}
.y3e{bottom:90.405000px;}
.y53{bottom:91.474500px;}
.y95{bottom:96.516000px;}
.y59{bottom:101.556000px;}
.y52{bottom:107.314500px;}
.y45{bottom:107.674500px;}
.y3d{bottom:107.685000px;}
.y94{bottom:113.796000px;}
.y42{bottom:115.600500px;}
.y51{bottom:116.314500px;}
.yc6{bottom:117.756000px;}
.y3c{bottom:124.965000px;}
.y93{bottom:131.076000px;}
.yc5{bottom:135.036000px;}
.y50{bottom:135.394500px;}
.y3b{bottom:142.245000px;}
.y123{bottom:146.592000px;}
.y92{bottom:148.392000px;}
.y4f{bottom:150.874500px;}
.yc4{bottom:151.995000px;}
.y3a{bottom:159.525000px;}
.yef{bottom:160.275000px;}
.y122{bottom:163.515000px;}
.y91{bottom:165.675000px;}
.y4e{bottom:166.384500px;}
.yee{bottom:168.195000px;}
.y44{bottom:169.984500px;}
.y39{bottom:176.445000px;}
.yc3{bottom:178.635000px;}
.y43{bottom:180.784500px;}
.y121{bottom:180.795000px;}
.y4d{bottom:181.864500px;}
.y90{bottom:182.955000px;}
.y38{bottom:193.725000px;}
.yed{bottom:194.835000px;}
.yc2{bottom:195.915000px;}
.y4c{bottom:196.984500px;}
.y120{bottom:198.075000px;}
.y8f{bottom:200.235000px;}
.yec{bottom:209.250000px;}
.y37{bottom:211.005000px;}
.yc1{bottom:212.475000px;}
.y11f{bottom:215.355000px;}
.y8e{bottom:217.515000px;}
.yeb{bottom:227.250000px;}
.y36{bottom:228.315000px;}
.y11e{bottom:232.275000px;}
.y8d{bottom:234.795000px;}
.yc0{bottom:239.115000px;}
.yea{bottom:245.250000px;}
.y35{bottom:245.595000px;}
.y8c{bottom:252.075000px;}
.ybf{bottom:256.035000px;}
.y11d{bottom:258.915000px;}
.y34{bottom:262.875000px;}
.ye8{bottom:263.250000px;}
.y8b{bottom:269.355000px;}
.y1f{bottom:275.835000px;}
.y11c{bottom:276.225000px;}
.y33{bottom:280.155000px;}
.ye7{bottom:281.265000px;}
.ybe{bottom:282.705000px;}
.y8a{bottom:286.305000px;}
.y11b{bottom:293.505000px;}
.y32{bottom:297.075000px;}
.ye6{bottom:299.265000px;}
.y1e{bottom:299.955000px;}
.ybd{bottom:301.065000px;}
.y89{bottom:303.585000px;}
.y11a{bottom:310.785000px;}
.ybc{bottom:319.425000px;}
.y88{bottom:320.865000px;}
.y31{bottom:322.995000px;}
.y1d{bottom:324.075000px;}
.y11{bottom:325.905000px;}
.y119{bottom:328.065000px;}
.ye5{bottom:330.945000px;}
.ybb{bottom:337.785000px;}
.y87{bottom:338.145000px;}
.y30{bottom:338.475000px;}
.ye4{bottom:338.865000px;}
.y1c{bottom:348.225000px;}
.y2f{bottom:353.985000px;}
.y86{bottom:355.425000px;}
.yba{bottom:356.145000px;}
.ye3{bottom:365.865000px;}
.y2e{bottom:369.465000px;}
.y1b{bottom:372.345000px;}
.y85{bottom:372.705000px;}
.yb9{bottom:374.505000px;}
.ye2{bottom:383.145000px;}
.y2d{bottom:384.945000px;}
.y84{bottom:389.985000px;}
.yb8{bottom:391.425000px;}
.y1a{bottom:396.465000px;}
.ye1{bottom:400.425000px;}
.y2c{bottom:400.785000px;}
.y83{bottom:407.310000px;}
.y2b{bottom:416.265000px;}
.ye0{bottom:417.750000px;}
.yb7{bottom:418.110000px;}
.y19{bottom:420.585000px;}
.y82{bottom:424.590000px;}
.y2a{bottom:431.745000px;}
.yb6{bottom:435.030000px;}
.y81{bottom:441.870000px;}
.y18{bottom:445.065000px;}
.y29{bottom:447.225000px;}
.yb5{bottom:451.950000px;}
.ydf{bottom:452.310000px;}
.y80{bottom:459.150000px;}
.y28{bottom:462.705000px;}
.y17{bottom:469.185000px;}
.yde{bottom:469.590000px;}
.y7f{bottom:476.430000px;}
.y27{bottom:478.230000px;}
.yb4{bottom:478.590000px;}
.ydd{bottom:486.510000px;}
.y16{bottom:493.350000px;}
.y26{bottom:493.710000px;}
.yb3{bottom:495.870000px;}
.y25{bottom:509.190000px;}
.ydc{bottom:509.910000px;}
.y7e{bottom:510.630000px;}
.yb2{bottom:513.150000px;}
.y15{bottom:517.470000px;}
.y24{bottom:525.030000px;}
.y7d{bottom:527.910000px;}
.yb1{bottom:530.070000px;}
.y23{bottom:540.510000px;}
.y14{bottom:541.590000px;}
.y7c{bottom:545.220000px;}
.ydb{bottom:545.940000px;}
.y22{bottom:555.990000px;}
.yb0{bottom:556.740000px;}
.y118{bottom:561.780000px;}
.y7b{bottom:562.500000px;}
.y13{bottom:565.710000px;}
.yda{bottom:567.540000px;}
.y21{bottom:571.470000px;}
.yaf{bottom:574.020000px;}
.y117{bottom:579.060000px;}
.y7a{bottom:579.780000px;}
.y20{bottom:586.590000px;}
.y12{bottom:589.830000px;}
.yae{bottom:591.300000px;}
.yd9{bottom:594.540000px;}
.y116{bottom:596.340000px;}
.y79{bottom:597.060000px;}
.yad{bottom:608.580000px;}
.yd8{bottom:611.820000px;}
.y115{bottom:613.620000px;}
.y78{bottom:614.340000px;}
.yac{bottom:625.500000px;}
.yd7{bottom:628.740000px;}
.y77{bottom:631.620000px;}
.y114{bottom:639.900000px;}
.y76{bottom:648.900000px;}
.yab{bottom:652.140000px;}
.y113{bottom:653.940000px;}
.y75{bottom:666.180000px;}
.yaa{bottom:669.090000px;}
.y112{bottom:671.985000px;}
.y74{bottom:683.130000px;}
.ya9{bottom:686.370000px;}
.y111{bottom:689.985000px;}
.y73{bottom:700.410000px;}
.ya8{bottom:703.650000px;}
.y110{bottom:707.985000px;}
.y72{bottom:717.690000px;}
.ya7{bottom:720.570000px;}
.y10f{bottom:725.985000px;}
.y71{bottom:734.610000px;}
.y12e{bottom:734.970000px;}
.y10e{bottom:743.985000px;}
.ya6{bottom:747.210000px;}
.y12d{bottom:752.250000px;}
.y70{bottom:761.250000px;}
.y10d{bottom:761.985000px;}
.ya5{bottom:764.490000px;}
.y12c{bottom:769.530000px;}
.y6f{bottom:778.530000px;}
.y10c{bottom:779.985000px;}
.ya4{bottom:782.850000px;}
.y12b{bottom:786.810000px;}
.y6e{bottom:795.810000px;}
.y109{bottom:797.985000px;}
.ya3{bottom:801.255000px;}
.y12a{bottom:804.135000px;}
.y6d{bottom:813.135000px;}
.y108{bottom:816.030000px;}
.ya2{bottom:818.535000px;}
.y129{bottom:821.415000px;}
.y6c{bottom:830.415000px;}
.yd6{bottom:831.495000px;}
.y107{bottom:834.030000px;}
.ya1{bottom:836.895000px;}
.y128{bottom:838.695000px;}
.y6b{bottom:847.695000px;}
.y106{bottom:852.030000px;}
.ya0{bottom:854.175000px;}
.y127{bottom:855.975000px;}
.yd5{bottom:857.415000px;}
.y6a{bottom:864.975000px;}
.y105{bottom:870.030000px;}
.y9f{bottom:871.815000px;}
.y126{bottom:873.255000px;}
.y69{bottom:882.255000px;}
.yd4{bottom:884.055000px;}
.y104{bottom:888.030000px;}
.y125{bottom:889.815000px;}
.y9e{bottom:898.455000px;}
.y68{bottom:899.175000px;}
.yd3{bottom:901.335000px;}
.y103{bottom:906.030000px;}
.y9d{bottom:915.735000px;}
.y67{bottom:916.455000px;}
.yd2{bottom:918.615000px;}
.y101{bottom:924.030000px;}
.y10{bottom:930.855000px;}
.y9c{bottom:933.045000px;}
.y66{bottom:933.765000px;}
.yd1{bottom:935.565000px;}
.y100{bottom:942.045000px;}
.yf{bottom:948.525000px;}
.y9b{bottom:949.965000px;}
.y65{bottom:951.045000px;}
.yd0{bottom:958.965000px;}
.yff{bottom:960.045000px;}
.ye{bottom:965.805000px;}
.y64{bottom:968.325000px;}
.y9a{bottom:976.605000px;}
.ycf{bottom:976.965000px;}
.yfe{bottom:978.045000px;}
.yd{bottom:983.085000px;}
.y63{bottom:985.605000px;}
.y99{bottom:993.885000px;}
.yce{bottom:994.965000px;}
.yfb{bottom:996.045000px;}
.yc{bottom:1000.005000px;}
.y62{bottom:1002.885000px;}
.y98{bottom:1011.165000px;}
.ycd{bottom:1012.965000px;}
.yb{bottom:1017.645000px;}
.y61{bottom:1020.165000px;}
.y97{bottom:1028.445000px;}
.ycc{bottom:1030.965000px;}
.yfa{bottom:1031.325000px;}
.ya{bottom:1035.645000px;}
.y60{bottom:1037.445000px;}
.y96{bottom:1045.365000px;}
.yc9{bottom:1048.965000px;}
.yf0{bottom:1049.325000px;}
.y5f{bottom:1054.725000px;}
.yf2{bottom:1058.325000px;}
.y9{bottom:1059.765000px;}
.y5e{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.y5d{bottom:1088.970000px;}
.y5a{bottom:1091.520000px;}
.yc8{bottom:1097.610000px;}
.yc7{bottom:1105.530000px;}
.y124{bottom:1105.890000px;}
.y5c{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h23{height:2.902500px;}
.h14{height:5.650313px;}
.h1b{height:16.905000px;}
.h20{height:17.265000px;}
.h1e{height:17.280000px;}
.h25{height:17.301000px;}
.h1f{height:17.310000px;}
.h26{height:17.316000px;}
.h19{height:18.619453px;}
.h7{height:24.348516px;}
.h16{height:27.720000px;}
.h12{height:29.678906px;}
.h24{height:34.185000px;}
.h1a{height:34.230000px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h22{height:51.510000px;}
.h1c{height:52.949531px;}
.h10{height:53.677969px;}
.h13{height:55.147500px;}
.h8{height:58.050000px;}
.h15{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.ha{height:60.952500px;}
.h18{height:62.163910px;}
.h17{height:63.455625px;}
.hc{height:65.518594px;}
.h3{height:65.884219px;}
.hb{height:66.543750px;}
.h21{height:69.510000px;}
.h1d{height:72.562500px;}
.h2{height:81.390000px;}
.h9{height:84.172500px;}
.h4{height:116.640000px;}
.h11{height:209.565000px;}
.hd{height:599.190000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w17{width:18.396000px;}
.we{width:56.520000px;}
.w16{width:60.840000px;}
.w7{width:65.182500px;}
.w19{width:66.225000px;}
.w1c{width:71.670000px;}
.w1b{width:73.080000px;}
.w1a{width:73.101000px;}
.w10{width:79.221000px;}
.wd{width:79.230000px;}
.wf{width:86.436000px;}
.w9{width:94.356000px;}
.w18{width:95.076000px;}
.w11{width:95.400000px;}
.w14{width:95.421000px;}
.w12{width:95.430000px;}
.w13{width:95.796000px;}
.w2{width:103.702500px;}
.wc{width:106.590000px;}
.wa{width:113.421000px;}
.w4{width:132.502500px;}
.wb{width:140.445000px;}
.w6{width:163.080000px;}
.w8{width:233.010000px;}
.w15{width:309.735000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:6.876000px;}
.x15{left:8.295000px;}
.x4{left:13.305000px;}
.x13{left:16.546500px;}
.x18{left:18.346500px;}
.x5{left:19.425000px;}
.x27{left:23.040000px;}
.x28{left:24.465000px;}
.x29{left:26.640000px;}
.x12{left:29.146500px;}
.x2a{left:30.240000px;}
.x6{left:43.575000px;}
.x19{left:47.542500px;}
.xd{left:50.782500px;}
.xc{left:55.102500px;}
.x1b{left:57.262500px;}
.x2b{left:58.695000px;}
.x16{left:62.295000px;}
.x1a{left:66.265500px;}
.x10{left:73.105500px;}
.xf{left:76.705500px;}
.x1{left:78.529500px;}
.x11{left:80.305500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x37{left:100.489500px;}
.x1c{left:102.985500px;}
.x17{left:106.945500px;}
.x1f{left:113.436000px;}
.x22{left:122.089500px;}
.xe{left:124.585500px;}
.x1d{left:140.472000px;}
.x31{left:158.490000px;}
.xa{left:161.355000px;}
.x3{left:182.250000px;}
.x23{left:188.010000px;}
.x3e{left:204.915000px;}
.x14{left:218.970000px;}
.x2c{left:240.945000px;}
.x32{left:254.625000px;}
.x2d{left:348.270000px;}
.x33{left:350.790000px;}
.x20{left:381.030000px;}
.x36{left:384.630000px;}
.x3a{left:410.940000px;}
.x38{left:418.860000px;}
.x24{left:421.740000px;}
.x2e{left:428.220000px;}
.x21{left:446.580000px;}
.x39{left:479.700000px;}
.x2f{left:485.820000px;}
.x3b{left:506.745000px;}
.xb{left:508.530000px;}
.x25{left:516.825000px;}
.x34{left:543.465000px;}
.x30{left:572.985000px;}
.x26{left:630.990000px;}
.x35{left:639.630000px;}
.x3c{left:647.550000px;}
.x3d{left:721.365000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-1.696000pt;}
.lsf{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.864000pt;}
.ls11{letter-spacing:-0.848000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.560000pt;}
.ls10{letter-spacing:-0.450667pt;}
.ls8{letter-spacing:-0.432533pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.439040pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.773120pt;}
.ls2{letter-spacing:0.960000pt;}
.ls13{letter-spacing:14.494720pt;}
.ls12{letter-spacing:41.374720pt;}
.lsd{letter-spacing:56.734720pt;}
.wsc{word-spacing:-53.760000pt;}
.ws5{word-spacing:-48.640000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.007467pt;}
.wsd{word-spacing:-12.989333pt;}
.wsb{word-spacing:-12.608000pt;}
.wse{word-spacing:-12.592000pt;}
.wsa{word-spacing:-12.576000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
._17{margin-left:-3.074560pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._7{width:4.571307pt;}
._9{width:6.371840pt;}
._a{width:7.434240pt;}
._d{width:8.391680pt;}
._11{width:9.592320pt;}
._8{width:10.787840pt;}
._f{width:12.096000pt;}
._e{width:14.699520pt;}
._b{width:16.558080pt;}
._c{width:17.661440pt;}
._16{width:19.028480pt;}
._15{width:20.134400pt;}
._5{width:22.297600pt;}
._6{width:23.628800pt;}
._10{width:25.105920pt;}
._12{width:37.578240pt;}
._14{width:43.417600pt;}
._13{width:44.728320pt;}
._18{width:53.352960pt;}
._1c{width:78.704640pt;}
._1a{width:92.427093pt;}
._19{width:126.013440pt;}
._1b{width:243.985920pt;}
.fse{font-size:2.560000pt;}
.fs7{font-size:5.120000pt;}
.fsc{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:2.880000pt;}
.y102{bottom:3.186667pt;}
.ycb{bottom:3.200000pt;}
.y10a{bottom:3.226667pt;}
.ye9{bottom:3.506667pt;}
.y58{bottom:3.516000pt;}
.y5{bottom:3.520000pt;}
.y10b{bottom:3.546667pt;}
.y5b{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y4b{bottom:9.596000pt;}
.yf6{bottom:10.600000pt;}
.yf9{bottom:10.880000pt;}
.yfd{bottom:11.200000pt;}
.y4a{bottom:16.636000pt;}
.yfc{bottom:18.240000pt;}
.yf4{bottom:18.280000pt;}
.yca{bottom:18.600000pt;}
.y57{bottom:18.876000pt;}
.y4{bottom:18.880000pt;}
.yf1{bottom:26.280000pt;}
.yf3{bottom:33.640000pt;}
.yf7{bottom:33.960000pt;}
.y41{bottom:34.240000pt;}
.y56{bottom:34.270667pt;}
.y3{bottom:39.360000pt;}
.yf8{bottom:41.640000pt;}
.y49{bottom:42.910667pt;}
.y40{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.y55{bottom:53.150667pt;}
.y48{bottom:53.470667pt;}
.y3f{bottom:64.960000pt;}
.y47{bottom:64.990667pt;}
.y54{bottom:67.230667pt;}
.y46{bottom:76.510667pt;}
.y3e{bottom:80.360000pt;}
.y53{bottom:81.310667pt;}
.y95{bottom:85.792000pt;}
.y59{bottom:90.272000pt;}
.y52{bottom:95.390667pt;}
.y45{bottom:95.710667pt;}
.y3d{bottom:95.720000pt;}
.y94{bottom:101.152000pt;}
.y42{bottom:102.756000pt;}
.y51{bottom:103.390667pt;}
.yc6{bottom:104.672000pt;}
.y3c{bottom:111.080000pt;}
.y93{bottom:116.512000pt;}
.yc5{bottom:120.032000pt;}
.y50{bottom:120.350667pt;}
.y3b{bottom:126.440000pt;}
.y123{bottom:130.304000pt;}
.y92{bottom:131.904000pt;}
.y4f{bottom:134.110667pt;}
.yc4{bottom:135.106667pt;}
.y3a{bottom:141.800000pt;}
.yef{bottom:142.466667pt;}
.y122{bottom:145.346667pt;}
.y91{bottom:147.266667pt;}
.y4e{bottom:147.897333pt;}
.yee{bottom:149.506667pt;}
.y44{bottom:151.097333pt;}
.y39{bottom:156.840000pt;}
.yc3{bottom:158.786667pt;}
.y43{bottom:160.697333pt;}
.y121{bottom:160.706667pt;}
.y4d{bottom:161.657333pt;}
.y90{bottom:162.626667pt;}
.y38{bottom:172.200000pt;}
.yed{bottom:173.186667pt;}
.yc2{bottom:174.146667pt;}
.y4c{bottom:175.097333pt;}
.y120{bottom:176.066667pt;}
.y8f{bottom:177.986667pt;}
.yec{bottom:186.000000pt;}
.y37{bottom:187.560000pt;}
.yc1{bottom:188.866667pt;}
.y11f{bottom:191.426667pt;}
.y8e{bottom:193.346667pt;}
.yeb{bottom:202.000000pt;}
.y36{bottom:202.946667pt;}
.y11e{bottom:206.466667pt;}
.y8d{bottom:208.706667pt;}
.yc0{bottom:212.546667pt;}
.yea{bottom:218.000000pt;}
.y35{bottom:218.306667pt;}
.y8c{bottom:224.066667pt;}
.ybf{bottom:227.586667pt;}
.y11d{bottom:230.146667pt;}
.y34{bottom:233.666667pt;}
.ye8{bottom:234.000000pt;}
.y8b{bottom:239.426667pt;}
.y1f{bottom:245.186667pt;}
.y11c{bottom:245.533333pt;}
.y33{bottom:249.026667pt;}
.ye7{bottom:250.013333pt;}
.ybe{bottom:251.293333pt;}
.y8a{bottom:254.493333pt;}
.y11b{bottom:260.893333pt;}
.y32{bottom:264.066667pt;}
.ye6{bottom:266.013333pt;}
.y1e{bottom:266.626667pt;}
.ybd{bottom:267.613333pt;}
.y89{bottom:269.853333pt;}
.y11a{bottom:276.253333pt;}
.ybc{bottom:283.933333pt;}
.y88{bottom:285.213333pt;}
.y31{bottom:287.106667pt;}
.y1d{bottom:288.066667pt;}
.y11{bottom:289.693333pt;}
.y119{bottom:291.613333pt;}
.ye5{bottom:294.173333pt;}
.ybb{bottom:300.253333pt;}
.y87{bottom:300.573333pt;}
.y30{bottom:300.866667pt;}
.ye4{bottom:301.213333pt;}
.y1c{bottom:309.533333pt;}
.y2f{bottom:314.653333pt;}
.y86{bottom:315.933333pt;}
.yba{bottom:316.573333pt;}
.ye3{bottom:325.213333pt;}
.y2e{bottom:328.413333pt;}
.y1b{bottom:330.973333pt;}
.y85{bottom:331.293333pt;}
.yb9{bottom:332.893333pt;}
.ye2{bottom:340.573333pt;}
.y2d{bottom:342.173333pt;}
.y84{bottom:346.653333pt;}
.yb8{bottom:347.933333pt;}
.y1a{bottom:352.413333pt;}
.ye1{bottom:355.933333pt;}
.y2c{bottom:356.253333pt;}
.y83{bottom:362.053333pt;}
.y2b{bottom:370.013333pt;}
.ye0{bottom:371.333333pt;}
.yb7{bottom:371.653333pt;}
.y19{bottom:373.853333pt;}
.y82{bottom:377.413333pt;}
.y2a{bottom:383.773333pt;}
.yb6{bottom:386.693333pt;}
.y81{bottom:392.773333pt;}
.y18{bottom:395.613333pt;}
.y29{bottom:397.533333pt;}
.yb5{bottom:401.733333pt;}
.ydf{bottom:402.053333pt;}
.y80{bottom:408.133333pt;}
.y28{bottom:411.293333pt;}
.y17{bottom:417.053333pt;}
.yde{bottom:417.413333pt;}
.y7f{bottom:423.493333pt;}
.y27{bottom:425.093333pt;}
.yb4{bottom:425.413333pt;}
.ydd{bottom:432.453333pt;}
.y16{bottom:438.533333pt;}
.y26{bottom:438.853333pt;}
.yb3{bottom:440.773333pt;}
.y25{bottom:452.613333pt;}
.ydc{bottom:453.253333pt;}
.y7e{bottom:453.893333pt;}
.yb2{bottom:456.133333pt;}
.y15{bottom:459.973333pt;}
.y24{bottom:466.693333pt;}
.y7d{bottom:469.253333pt;}
.yb1{bottom:471.173333pt;}
.y23{bottom:480.453333pt;}
.y14{bottom:481.413333pt;}
.y7c{bottom:484.640000pt;}
.ydb{bottom:485.280000pt;}
.y22{bottom:494.213333pt;}
.yb0{bottom:494.880000pt;}
.y118{bottom:499.360000pt;}
.y7b{bottom:500.000000pt;}
.y13{bottom:502.853333pt;}
.yda{bottom:504.480000pt;}
.y21{bottom:507.973333pt;}
.yaf{bottom:510.240000pt;}
.y117{bottom:514.720000pt;}
.y7a{bottom:515.360000pt;}
.y20{bottom:521.413333pt;}
.y12{bottom:524.293333pt;}
.yae{bottom:525.600000pt;}
.yd9{bottom:528.480000pt;}
.y116{bottom:530.080000pt;}
.y79{bottom:530.720000pt;}
.yad{bottom:540.960000pt;}
.yd8{bottom:543.840000pt;}
.y115{bottom:545.440000pt;}
.y78{bottom:546.080000pt;}
.yac{bottom:556.000000pt;}
.yd7{bottom:558.880000pt;}
.y77{bottom:561.440000pt;}
.y114{bottom:568.800000pt;}
.y76{bottom:576.800000pt;}
.yab{bottom:579.680000pt;}
.y113{bottom:581.280000pt;}
.y75{bottom:592.160000pt;}
.yaa{bottom:594.746667pt;}
.y112{bottom:597.320000pt;}
.y74{bottom:607.226667pt;}
.ya9{bottom:610.106667pt;}
.y111{bottom:613.320000pt;}
.y73{bottom:622.586667pt;}
.ya8{bottom:625.466667pt;}
.y110{bottom:629.320000pt;}
.y72{bottom:637.946667pt;}
.ya7{bottom:640.506667pt;}
.y10f{bottom:645.320000pt;}
.y71{bottom:652.986667pt;}
.y12e{bottom:653.306667pt;}
.y10e{bottom:661.320000pt;}
.ya6{bottom:664.186667pt;}
.y12d{bottom:668.666667pt;}
.y70{bottom:676.666667pt;}
.y10d{bottom:677.320000pt;}
.ya5{bottom:679.546667pt;}
.y12c{bottom:684.026667pt;}
.y6f{bottom:692.026667pt;}
.y10c{bottom:693.320000pt;}
.ya4{bottom:695.866667pt;}
.y12b{bottom:699.386667pt;}
.y6e{bottom:707.386667pt;}
.y109{bottom:709.320000pt;}
.ya3{bottom:712.226667pt;}
.y12a{bottom:714.786667pt;}
.y6d{bottom:722.786667pt;}
.y108{bottom:725.360000pt;}
.ya2{bottom:727.586667pt;}
.y129{bottom:730.146667pt;}
.y6c{bottom:738.146667pt;}
.yd6{bottom:739.106667pt;}
.y107{bottom:741.360000pt;}
.ya1{bottom:743.906667pt;}
.y128{bottom:745.506667pt;}
.y6b{bottom:753.506667pt;}
.y106{bottom:757.360000pt;}
.ya0{bottom:759.266667pt;}
.y127{bottom:760.866667pt;}
.yd5{bottom:762.146667pt;}
.y6a{bottom:768.866667pt;}
.y105{bottom:773.360000pt;}
.y9f{bottom:774.946667pt;}
.y126{bottom:776.226667pt;}
.y69{bottom:784.226667pt;}
.yd4{bottom:785.826667pt;}
.y104{bottom:789.360000pt;}
.y125{bottom:790.946667pt;}
.y9e{bottom:798.626667pt;}
.y68{bottom:799.266667pt;}
.yd3{bottom:801.186667pt;}
.y103{bottom:805.360000pt;}
.y9d{bottom:813.986667pt;}
.y67{bottom:814.626667pt;}
.yd2{bottom:816.546667pt;}
.y101{bottom:821.360000pt;}
.y10{bottom:827.426667pt;}
.y9c{bottom:829.373333pt;}
.y66{bottom:830.013333pt;}
.yd1{bottom:831.613333pt;}
.y100{bottom:837.373333pt;}
.yf{bottom:843.133333pt;}
.y9b{bottom:844.413333pt;}
.y65{bottom:845.373333pt;}
.yd0{bottom:852.413333pt;}
.yff{bottom:853.373333pt;}
.ye{bottom:858.493333pt;}
.y64{bottom:860.733333pt;}
.y9a{bottom:868.093333pt;}
.ycf{bottom:868.413333pt;}
.yfe{bottom:869.373333pt;}
.yd{bottom:873.853333pt;}
.y63{bottom:876.093333pt;}
.y99{bottom:883.453333pt;}
.yce{bottom:884.413333pt;}
.yfb{bottom:885.373333pt;}
.yc{bottom:888.893333pt;}
.y62{bottom:891.453333pt;}
.y98{bottom:898.813333pt;}
.ycd{bottom:900.413333pt;}
.yb{bottom:904.573333pt;}
.y61{bottom:906.813333pt;}
.y97{bottom:914.173333pt;}
.ycc{bottom:916.413333pt;}
.yfa{bottom:916.733333pt;}
.ya{bottom:920.573333pt;}
.y60{bottom:922.173333pt;}
.y96{bottom:929.213333pt;}
.yc9{bottom:932.413333pt;}
.yf0{bottom:932.733333pt;}
.y5f{bottom:937.533333pt;}
.yf2{bottom:940.733333pt;}
.y9{bottom:942.013333pt;}
.y5e{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.y5d{bottom:967.973333pt;}
.y5a{bottom:970.240000pt;}
.yc8{bottom:975.653333pt;}
.yc7{bottom:982.693333pt;}
.y124{bottom:983.013333pt;}
.y5c{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h23{height:2.580000pt;}
.h14{height:5.022500pt;}
.h1b{height:15.026667pt;}
.h20{height:15.346667pt;}
.h1e{height:15.360000pt;}
.h25{height:15.378667pt;}
.h1f{height:15.386667pt;}
.h26{height:15.392000pt;}
.h19{height:16.550625pt;}
.h7{height:21.643125pt;}
.h16{height:24.640000pt;}
.h12{height:26.381250pt;}
.h24{height:30.386667pt;}
.h1a{height:30.426667pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h22{height:45.786667pt;}
.h1c{height:47.066250pt;}
.h10{height:47.713750pt;}
.h13{height:49.020000pt;}
.h8{height:51.600000pt;}
.h15{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.ha{height:54.180000pt;}
.h18{height:55.256809pt;}
.h17{height:56.405000pt;}
.hc{height:58.238750pt;}
.h3{height:58.563750pt;}
.hb{height:59.150000pt;}
.h21{height:61.786667pt;}
.h1d{height:64.500000pt;}
.h2{height:72.346667pt;}
.h9{height:74.820000pt;}
.h4{height:103.680000pt;}
.h11{height:186.280000pt;}
.hd{height:532.613333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w17{width:16.352000pt;}
.we{width:50.240000pt;}
.w16{width:54.080000pt;}
.w7{width:57.940000pt;}
.w19{width:58.866667pt;}
.w1c{width:63.706667pt;}
.w1b{width:64.960000pt;}
.w1a{width:64.978667pt;}
.w10{width:70.418667pt;}
.wd{width:70.426667pt;}
.wf{width:76.832000pt;}
.w9{width:83.872000pt;}
.w18{width:84.512000pt;}
.w11{width:84.800000pt;}
.w14{width:84.818667pt;}
.w12{width:84.826667pt;}
.w13{width:85.152000pt;}
.w2{width:92.180000pt;}
.wc{width:94.746667pt;}
.wa{width:100.818667pt;}
.w4{width:117.780000pt;}
.wb{width:124.840000pt;}
.w6{width:144.960000pt;}
.w8{width:207.120000pt;}
.w15{width:275.320000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.112000pt;}
.x15{left:7.373333pt;}
.x4{left:11.826667pt;}
.x13{left:14.708000pt;}
.x18{left:16.308000pt;}
.x5{left:17.266667pt;}
.x27{left:20.480000pt;}
.x28{left:21.746667pt;}
.x29{left:23.680000pt;}
.x12{left:25.908000pt;}
.x2a{left:26.880000pt;}
.x6{left:38.733333pt;}
.x19{left:42.260000pt;}
.xd{left:45.140000pt;}
.xc{left:48.980000pt;}
.x1b{left:50.900000pt;}
.x2b{left:52.173333pt;}
.x16{left:55.373333pt;}
.x1a{left:58.902667pt;}
.x10{left:64.982667pt;}
.xf{left:68.182667pt;}
.x1{left:69.804000pt;}
.x11{left:71.382667pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x37{left:89.324000pt;}
.x1c{left:91.542667pt;}
.x17{left:95.062667pt;}
.x1f{left:100.832000pt;}
.x22{left:108.524000pt;}
.xe{left:110.742667pt;}
.x1d{left:124.864000pt;}
.x31{left:140.880000pt;}
.xa{left:143.426667pt;}
.x3{left:162.000000pt;}
.x23{left:167.120000pt;}
.x3e{left:182.146667pt;}
.x14{left:194.640000pt;}
.x2c{left:214.173333pt;}
.x32{left:226.333333pt;}
.x2d{left:309.573333pt;}
.x33{left:311.813333pt;}
.x20{left:338.693333pt;}
.x36{left:341.893333pt;}
.x3a{left:365.280000pt;}
.x38{left:372.320000pt;}
.x24{left:374.880000pt;}
.x2e{left:380.640000pt;}
.x21{left:396.960000pt;}
.x39{left:426.400000pt;}
.x2f{left:431.840000pt;}
.x3b{left:450.440000pt;}
.xb{left:452.026667pt;}
.x25{left:459.400000pt;}
.x34{left:483.080000pt;}
.x30{left:509.320000pt;}
.x26{left:560.880000pt;}
.x35{left:568.560000pt;}
.x3c{left:575.600000pt;}
.x3d{left:641.213333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
}




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