
    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_a319c8a256288dd3d1950f30.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e78ede6cdc6d58c5b6093de6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a2d945d2c4d89762a21978cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_58ac644c2efb2674dc8fcd60.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c9dc2c16333cbbf1116188fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_da499426f170ebac787d807c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_c655788af93a8c543ce96dab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_fd471b9167fd8d1c52e93c56.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_ba080546e63316526c7999db.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ff4646b651c6456adfcbaa08.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_41826cf4e3d79388654e7fa1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_ac03e9d1d84ffbee637e05de.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_09fd5de0dc7a1e6c237edff7.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_045963994b3fafd95e34518e.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6b84d5b75f06b38ad311c9aa.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0a10dd94ba86aad7d5479932.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_f7853978761f81edc67166fb.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a729211813cbe4edf1eeb730.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-4.680000px;}
.lsb{letter-spacing:-3.960000px;}
.lse{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls15{letter-spacing:0.513600px;}
.ls16{letter-spacing:0.666000px;}
.ls3{letter-spacing:0.786240px;}
.ls13{letter-spacing:13.140000px;}
.ls14{letter-spacing:15.786720px;}
.ls11{letter-spacing:45.306720px;}
.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;}
}
.ws0{word-spacing:-16.626360px;}
.ws1{word-spacing:-16.493760px;}
.ws10{word-spacing:-15.606000px;}
.ws5{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.093600px;}
.ws6{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.220000px;}
.wsa{word-spacing:-13.505760px;}
.ws8{word-spacing:-10.980000px;}
.ws7{word-spacing:-10.260000px;}
.wsb{word-spacing:-9.732960px;}
.wse{word-spacing:-9.720000px;}
.ws2{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._13{margin-left:-7.410720px;}
._11{margin-left:-6.035760px;}
._3{margin-left:-4.708800px;}
._2{margin-left:-2.921760px;}
._1{margin-left:-1.206000px;}
._0{width:1.038000px;}
._6{width:2.273520px;}
._5{width:3.401520px;}
._b{width:4.492080px;}
._4{width:5.977440px;}
._f{width:7.693920px;}
._e{width:9.083520px;}
._9{width:10.722960px;}
._a{width:11.758560px;}
._10{width:13.087440px;}
._12{width:16.613280px;}
._d{width:17.933040px;}
._7{width:21.513600px;}
._8{width:22.713120px;}
._c{width:24.808320px;}
.fc5{color:rgb(227,108,10);}
.fc7{color:rgb(5,99,193);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc8{color:rgb(51,51,51);}
.fc6{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc9{color:rgb(255,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:3.240000px;}
.y96{bottom:3.420000px;}
.y3{bottom:3.600000px;}
.y3e{bottom:3.780000px;}
.y43{bottom:3.960000px;}
.ye{bottom:4.140000px;}
.y18{bottom:4.860000px;}
.y41{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y3d{bottom:21.060000px;}
.y42{bottom:22.320000px;}
.y40{bottom:25.200000px;}
.y17{bottom:29.565000px;}
.yb{bottom:30.240000px;}
.y5{bottom:32.940000px;}
.y3c{bottom:38.340000px;}
.y16{bottom:46.125000px;}
.ya{bottom:46.620000px;}
.y1{bottom:53.820000px;}
.y3b{bottom:55.440000px;}
.y15{bottom:61.785000px;}
.y14{bottom:72.405000px;}
.y3a{bottom:72.720000px;}
.y9{bottom:73.260000px;}
.y39{bottom:90.000000px;}
.y13{bottom:90.585000px;}
.y8{bottom:93.090000px;}
.ycb{bottom:105.336000px;}
.y38{bottom:107.280000px;}
.y12{bottom:109.125000px;}
.y55{bottom:109.296000px;}
.y7{bottom:111.450000px;}
.y105{bottom:116.496000px;}
.yca{bottom:123.336000px;}
.y37{bottom:124.560000px;}
.y54{bottom:126.396000px;}
.y92{bottom:129.276000px;}
.y104{bottom:133.776000px;}
.y11{bottom:134.865000px;}
.yc9{bottom:141.336000px;}
.y36{bottom:141.840000px;}
.y53{bottom:143.676000px;}
.y91{bottom:146.556000px;}
.y28{bottom:147.960000px;}
.y103{bottom:151.050000px;}
.y35{bottom:158.970000px;}
.yc8{bottom:159.330000px;}
.y10{bottom:159.525000px;}
.y52{bottom:160.950000px;}
.y27{bottom:163.470000px;}
.y90{bottom:163.830000px;}
.y102{bottom:168.330000px;}
.y34{bottom:176.250000px;}
.y51{bottom:178.230000px;}
.yc7{bottom:180.570000px;}
.y8f{bottom:180.930000px;}
.y26{bottom:181.290000px;}
.y101{bottom:185.430000px;}
.y33{bottom:193.530000px;}
.y50{bottom:195.510000px;}
.y8e{bottom:198.210000px;}
.y25{bottom:198.570000px;}
.y100{bottom:202.710000px;}
.y32{bottom:210.810000px;}
.yc6{bottom:212.430000px;}
.y4f{bottom:212.790000px;}
.y8d{bottom:215.490000px;}
.y24{bottom:215.850000px;}
.yff{bottom:219.990000px;}
.y31{bottom:228.090000px;}
.y4e{bottom:229.890000px;}
.yc5{bottom:230.430000px;}
.y8c{bottom:232.770000px;}
.y23{bottom:233.310000px;}
.yfe{bottom:237.270000px;}
.y30{bottom:245.190000px;}
.y4d{bottom:247.170000px;}
.yc4{bottom:248.430000px;}
.y8b{bottom:250.050000px;}
.y22{bottom:250.590000px;}
.yfd{bottom:254.550000px;}
.y2f{bottom:262.470000px;}
.y4c{bottom:264.450000px;}
.yc3{bottom:266.430000px;}
.y8a{bottom:267.330000px;}
.y21{bottom:268.050000px;}
.yfc{bottom:271.830000px;}
.y2e{bottom:279.750000px;}
.y4b{bottom:281.730000px;}
.y89{bottom:284.430000px;}
.y20{bottom:285.510000px;}
.yc2{bottom:287.850000px;}
.yfb{bottom:288.930000px;}
.y2d{bottom:297.030000px;}
.y4a{bottom:299.010000px;}
.y88{bottom:301.710000px;}
.y1f{bottom:302.790000px;}
.yc1{bottom:305.130000px;}
.yfa{bottom:306.210000px;}
.y2c{bottom:314.310000px;}
.y49{bottom:316.290000px;}
.y10b{bottom:318.630000px;}
.y87{bottom:318.990000px;}
.yc0{bottom:319.710000px;}
.y1e{bottom:323.130000px;}
.yf9{bottom:323.490000px;}
.y2b{bottom:331.590000px;}
.y48{bottom:333.390000px;}
.y86{bottom:336.270000px;}
.ybf{bottom:337.755000px;}
.yf8{bottom:340.815000px;}
.y2a{bottom:348.690000px;}
.y1d{bottom:350.670000px;}
.y47{bottom:350.715000px;}
.y85{bottom:353.595000px;}
.ybe{bottom:355.755000px;}
.yf7{bottom:358.095000px;}
.y29{bottom:365.970000px;}
.y46{bottom:367.995000px;}
.y1c{bottom:368.130000px;}
.y84{bottom:370.875000px;}
.ybd{bottom:373.755000px;}
.yf6{bottom:375.375000px;}
.y45{bottom:384.915000px;}
.y83{bottom:387.975000px;}
.ybc{bottom:391.755000px;}
.yf5{bottom:392.475000px;}
.y44{bottom:402.555000px;}
.y82{bottom:405.255000px;}
.ybb{bottom:409.755000px;}
.y3f{bottom:416.055000px;}
.y81{bottom:422.535000px;}
.yf4{bottom:427.035000px;}
.yba{bottom:427.755000px;}
.y80{bottom:439.815000px;}
.yf3{bottom:444.315000px;}
.yb9{bottom:445.755000px;}
.y1b{bottom:452.595000px;}
.y7f{bottom:457.095000px;}
.yf2{bottom:461.595000px;}
.y10a{bottom:462.315000px;}
.yb8{bottom:463.755000px;}
.y7e{bottom:474.195000px;}
.yf1{bottom:478.695000px;}
.yb7{bottom:481.755000px;}
.y7d{bottom:491.475000px;}
.yf0{bottom:495.975000px;}
.yb6{bottom:499.755000px;}
.y7c{bottom:508.755000px;}
.yef{bottom:513.255000px;}
.yb5{bottom:517.755000px;}
.y7b{bottom:526.035000px;}
.yee{bottom:530.535000px;}
.yb4{bottom:535.755000px;}
.y7a{bottom:543.315000px;}
.yed{bottom:547.815000px;}
.yb3{bottom:553.755000px;}
.y79{bottom:560.595000px;}
.yec{bottom:565.095000px;}
.yb2{bottom:571.755000px;}
.y78{bottom:577.335000px;}
.y109{bottom:577.695000px;}
.yeb{bottom:582.195000px;}
.yb1{bottom:589.755000px;}
.y77{bottom:594.615000px;}
.y108{bottom:594.975000px;}
.yea{bottom:599.475000px;}
.yb0{bottom:611.205000px;}
.y76{bottom:612.285000px;}
.ye9{bottom:616.785000px;}
.yaf{bottom:628.485000px;}
.y75{bottom:629.565000px;}
.ye8{bottom:634.065000px;}
.yae{bottom:643.065000px;}
.y74{bottom:646.845000px;}
.ye7{bottom:651.345000px;}
.yad{bottom:661.065000px;}
.y73{bottom:664.125000px;}
.ye6{bottom:668.625000px;}
.yac{bottom:679.065000px;}
.y72{bottom:681.225000px;}
.ye5{bottom:685.725000px;}
.yab{bottom:697.065000px;}
.y71{bottom:698.505000px;}
.ye4{bottom:703.005000px;}
.yaa{bottom:715.065000px;}
.y70{bottom:715.785000px;}
.ye3{bottom:720.285000px;}
.y6f{bottom:733.065000px;}
.ye2{bottom:737.565000px;}
.y6e{bottom:750.345000px;}
.ya9{bottom:751.065000px;}
.ye1{bottom:754.845000px;}
.y6d{bottom:767.625000px;}
.ya8{bottom:769.065000px;}
.ye0{bottom:772.125000px;}
.y6c{bottom:784.725000px;}
.ya7{bottom:787.065000px;}
.ydf{bottom:789.225000px;}
.y6b{bottom:802.005000px;}
.yde{bottom:806.505000px;}
.ya6{bottom:808.485000px;}
.y6a{bottom:819.285000px;}
.ydd{bottom:823.785000px;}
.ya5{bottom:825.585000px;}
.y19{bottom:832.065000px;}
.y69{bottom:836.565000px;}
.ya4{bottom:840.345000px;}
.ydc{bottom:840.705000px;}
.y68{bottom:853.845000px;}
.ya3{bottom:858.345000px;}
.yf{bottom:861.585000px;}
.y67{bottom:870.990000px;}
.ydb{bottom:872.610000px;}
.ya2{bottom:876.390000px;}
.y66{bottom:888.270000px;}
.yda{bottom:890.610000px;}
.ya0{bottom:894.390000px;}
.y65{bottom:905.550000px;}
.yd9{bottom:908.610000px;}
.y9f{bottom:915.630000px;}
.y64{bottom:922.830000px;}
.yd8{bottom:926.610000px;}
.y9e{bottom:932.910000px;}
.y63{bottom:940.110000px;}
.yd7{bottom:944.610000px;}
.y9d{bottom:947.490000px;}
.y62{bottom:957.030000px;}
.y107{bottom:957.390000px;}
.yd6{bottom:962.610000px;}
.y9c{bottom:965.490000px;}
.y61{bottom:974.490000px;}
.yd5{bottom:980.610000px;}
.y9b{bottom:983.490000px;}
.y60{bottom:991.770000px;}
.yd4{bottom:998.610000px;}
.y9a{bottom:1001.490000px;}
.y5f{bottom:1009.050000px;}
.y99{bottom:1019.490000px;}
.yd3{bottom:1020.030000px;}
.y5e{bottom:1025.970000px;}
.y106{bottom:1026.330000px;}
.yd{bottom:1036.410000px;}
.y98{bottom:1037.490000px;}
.y10c{bottom:1043.250000px;}
.y5d{bottom:1043.610000px;}
.yd2{bottom:1051.890000px;}
.y97{bottom:1055.490000px;}
.y6{bottom:1056.390000px;}
.y5c{bottom:1060.890000px;}
.yd1{bottom:1069.890000px;}
.y95{bottom:1073.490000px;}
.y5b{bottom:1077.990000px;}
.yd0{bottom:1087.890000px;}
.y94{bottom:1094.910000px;}
.y5a{bottom:1095.270000px;}
.ycf{bottom:1105.890000px;}
.y93{bottom:1112.190000px;}
.y59{bottom:1112.550000px;}
.yce{bottom:1123.890000px;}
.y58{bottom:1129.830000px;}
.ycd{bottom:1141.920000px;}
.y57{bottom:1147.140000px;}
.ycc{bottom:1159.920000px;}
.y56{bottom:1164.420000px;}
.h26{height:17.100000px;}
.h27{height:17.136000px;}
.h25{height:17.280000px;}
.h28{height:17.316000px;}
.hc{height:19.440000px;}
.h29{height:27.147656px;}
.h14{height:29.520000px;}
.h13{height:32.103633px;}
.h2{height:32.976000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h20{height:36.540000px;}
.h1e{height:41.726953px;}
.h1d{height:42.164648px;}
.h1c{height:42.186445px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h17{height:47.980898px;}
.h23{height:48.027656px;}
.h1a{height:49.742227px;}
.h21{height:52.260820px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h19{height:56.741133px;}
.h10{height:59.439023px;}
.h1b{height:59.614102px;}
.h24{height:61.022513px;}
.h11{height:61.189805px;}
.h1f{height:61.423863px;}
.h22{height:62.211094px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:174.810000px;}
.h16{height:379.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w5{width:151.950000px;}
.w8{width:216.075000px;}
.wa{width:243.075000px;}
.wc{width:243.210000px;}
.wb{width:243.390000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x12{left:12.600000px;}
.xb{left:27.396000px;}
.x1{left:81.000000px;}
.xc{left:94.710000px;}
.x4{left:98.130000px;}
.xe{left:101.190000px;}
.x1c{left:107.855987px;}
.xf{left:139.350000px;}
.x19{left:151.409987px;}
.xd{left:174.090000px;}
.x17{left:209.369987px;}
.x10{left:215.175000px;}
.x16{left:224.849987px;}
.x5{left:232.950000px;}
.x1a{left:256.529987px;}
.x18{left:257.609987px;}
.x8{left:272.235000px;}
.x11{left:297.075000px;}
.x13{left:322.634987px;}
.x14{left:324.795000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x1b{left:396.074987px;}
.x9{left:439.500000px;}
.x15{left:568.185000px;}
.x3{left:739.050000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-4.160000pt;}
.lsb{letter-spacing:-3.520000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls15{letter-spacing:0.456533pt;}
.ls16{letter-spacing:0.592000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls13{letter-spacing:11.680000pt;}
.ls14{letter-spacing:14.032640pt;}
.ls11{letter-spacing:40.272640pt;}
.ws0{word-spacing:-14.778987pt;}
.ws1{word-spacing:-14.661120pt;}
.ws10{word-spacing:-13.872000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.416533pt;}
.ws6{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws12{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.640000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws8{word-spacing:-9.760000pt;}
.ws7{word-spacing:-9.120000pt;}
.wsb{word-spacing:-8.651520pt;}
.wse{word-spacing:-8.640000pt;}
.ws2{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._13{margin-left:-6.587307pt;}
._11{margin-left:-5.365120pt;}
._3{margin-left:-4.185600pt;}
._2{margin-left:-2.597120pt;}
._1{margin-left:-1.072000pt;}
._0{width:0.922667pt;}
._6{width:2.020907pt;}
._5{width:3.023573pt;}
._b{width:3.992960pt;}
._4{width:5.313280pt;}
._f{width:6.839040pt;}
._e{width:8.074240pt;}
._9{width:9.531520pt;}
._a{width:10.452053pt;}
._10{width:11.633280pt;}
._12{width:14.767360pt;}
._d{width:15.940480pt;}
._7{width:19.123200pt;}
._8{width:20.189440pt;}
._c{width:22.051840pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:2.880000pt;}
.y96{bottom:3.040000pt;}
.y3{bottom:3.200000pt;}
.y3e{bottom:3.360000pt;}
.y43{bottom:3.520000pt;}
.ye{bottom:3.680000pt;}
.y18{bottom:4.320000pt;}
.y41{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y3d{bottom:18.720000pt;}
.y42{bottom:19.840000pt;}
.y40{bottom:22.400000pt;}
.y17{bottom:26.280000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:29.280000pt;}
.y3c{bottom:34.080000pt;}
.y16{bottom:41.000000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:47.840000pt;}
.y3b{bottom:49.280000pt;}
.y15{bottom:54.920000pt;}
.y14{bottom:64.360000pt;}
.y3a{bottom:64.640000pt;}
.y9{bottom:65.120000pt;}
.y39{bottom:80.000000pt;}
.y13{bottom:80.520000pt;}
.y8{bottom:82.746667pt;}
.ycb{bottom:93.632000pt;}
.y38{bottom:95.360000pt;}
.y12{bottom:97.000000pt;}
.y55{bottom:97.152000pt;}
.y7{bottom:99.066667pt;}
.y105{bottom:103.552000pt;}
.yca{bottom:109.632000pt;}
.y37{bottom:110.720000pt;}
.y54{bottom:112.352000pt;}
.y92{bottom:114.912000pt;}
.y104{bottom:118.912000pt;}
.y11{bottom:119.880000pt;}
.yc9{bottom:125.632000pt;}
.y36{bottom:126.080000pt;}
.y53{bottom:127.712000pt;}
.y91{bottom:130.272000pt;}
.y28{bottom:131.520000pt;}
.y103{bottom:134.266667pt;}
.y35{bottom:141.306667pt;}
.yc8{bottom:141.626667pt;}
.y10{bottom:141.800000pt;}
.y52{bottom:143.066667pt;}
.y27{bottom:145.306667pt;}
.y90{bottom:145.626667pt;}
.y102{bottom:149.626667pt;}
.y34{bottom:156.666667pt;}
.y51{bottom:158.426667pt;}
.yc7{bottom:160.506667pt;}
.y8f{bottom:160.826667pt;}
.y26{bottom:161.146667pt;}
.y101{bottom:164.826667pt;}
.y33{bottom:172.026667pt;}
.y50{bottom:173.786667pt;}
.y8e{bottom:176.186667pt;}
.y25{bottom:176.506667pt;}
.y100{bottom:180.186667pt;}
.y32{bottom:187.386667pt;}
.yc6{bottom:188.826667pt;}
.y4f{bottom:189.146667pt;}
.y8d{bottom:191.546667pt;}
.y24{bottom:191.866667pt;}
.yff{bottom:195.546667pt;}
.y31{bottom:202.746667pt;}
.y4e{bottom:204.346667pt;}
.yc5{bottom:204.826667pt;}
.y8c{bottom:206.906667pt;}
.y23{bottom:207.386667pt;}
.yfe{bottom:210.906667pt;}
.y30{bottom:217.946667pt;}
.y4d{bottom:219.706667pt;}
.yc4{bottom:220.826667pt;}
.y8b{bottom:222.266667pt;}
.y22{bottom:222.746667pt;}
.yfd{bottom:226.266667pt;}
.y2f{bottom:233.306667pt;}
.y4c{bottom:235.066667pt;}
.yc3{bottom:236.826667pt;}
.y8a{bottom:237.626667pt;}
.y21{bottom:238.266667pt;}
.yfc{bottom:241.626667pt;}
.y2e{bottom:248.666667pt;}
.y4b{bottom:250.426667pt;}
.y89{bottom:252.826667pt;}
.y20{bottom:253.786667pt;}
.yc2{bottom:255.866667pt;}
.yfb{bottom:256.826667pt;}
.y2d{bottom:264.026667pt;}
.y4a{bottom:265.786667pt;}
.y88{bottom:268.186667pt;}
.y1f{bottom:269.146667pt;}
.yc1{bottom:271.226667pt;}
.yfa{bottom:272.186667pt;}
.y2c{bottom:279.386667pt;}
.y49{bottom:281.146667pt;}
.y10b{bottom:283.226667pt;}
.y87{bottom:283.546667pt;}
.yc0{bottom:284.186667pt;}
.y1e{bottom:287.226667pt;}
.yf9{bottom:287.546667pt;}
.y2b{bottom:294.746667pt;}
.y48{bottom:296.346667pt;}
.y86{bottom:298.906667pt;}
.ybf{bottom:300.226667pt;}
.yf8{bottom:302.946667pt;}
.y2a{bottom:309.946667pt;}
.y1d{bottom:311.706667pt;}
.y47{bottom:311.746667pt;}
.y85{bottom:314.306667pt;}
.ybe{bottom:316.226667pt;}
.yf7{bottom:318.306667pt;}
.y29{bottom:325.306667pt;}
.y46{bottom:327.106667pt;}
.y1c{bottom:327.226667pt;}
.y84{bottom:329.666667pt;}
.ybd{bottom:332.226667pt;}
.yf6{bottom:333.666667pt;}
.y45{bottom:342.146667pt;}
.y83{bottom:344.866667pt;}
.ybc{bottom:348.226667pt;}
.yf5{bottom:348.866667pt;}
.y44{bottom:357.826667pt;}
.y82{bottom:360.226667pt;}
.ybb{bottom:364.226667pt;}
.y3f{bottom:369.826667pt;}
.y81{bottom:375.586667pt;}
.yf4{bottom:379.586667pt;}
.yba{bottom:380.226667pt;}
.y80{bottom:390.946667pt;}
.yf3{bottom:394.946667pt;}
.yb9{bottom:396.226667pt;}
.y1b{bottom:402.306667pt;}
.y7f{bottom:406.306667pt;}
.yf2{bottom:410.306667pt;}
.y10a{bottom:410.946667pt;}
.yb8{bottom:412.226667pt;}
.y7e{bottom:421.506667pt;}
.yf1{bottom:425.506667pt;}
.yb7{bottom:428.226667pt;}
.y7d{bottom:436.866667pt;}
.yf0{bottom:440.866667pt;}
.yb6{bottom:444.226667pt;}
.y7c{bottom:452.226667pt;}
.yef{bottom:456.226667pt;}
.yb5{bottom:460.226667pt;}
.y7b{bottom:467.586667pt;}
.yee{bottom:471.586667pt;}
.yb4{bottom:476.226667pt;}
.y7a{bottom:482.946667pt;}
.yed{bottom:486.946667pt;}
.yb3{bottom:492.226667pt;}
.y79{bottom:498.306667pt;}
.yec{bottom:502.306667pt;}
.yb2{bottom:508.226667pt;}
.y78{bottom:513.186667pt;}
.y109{bottom:513.506667pt;}
.yeb{bottom:517.506667pt;}
.yb1{bottom:524.226667pt;}
.y77{bottom:528.546667pt;}
.y108{bottom:528.866667pt;}
.yea{bottom:532.866667pt;}
.yb0{bottom:543.293333pt;}
.y76{bottom:544.253333pt;}
.ye9{bottom:548.253333pt;}
.yaf{bottom:558.653333pt;}
.y75{bottom:559.613333pt;}
.ye8{bottom:563.613333pt;}
.yae{bottom:571.613333pt;}
.y74{bottom:574.973333pt;}
.ye7{bottom:578.973333pt;}
.yad{bottom:587.613333pt;}
.y73{bottom:590.333333pt;}
.ye6{bottom:594.333333pt;}
.yac{bottom:603.613333pt;}
.y72{bottom:605.533333pt;}
.ye5{bottom:609.533333pt;}
.yab{bottom:619.613333pt;}
.y71{bottom:620.893333pt;}
.ye4{bottom:624.893333pt;}
.yaa{bottom:635.613333pt;}
.y70{bottom:636.253333pt;}
.ye3{bottom:640.253333pt;}
.y6f{bottom:651.613333pt;}
.ye2{bottom:655.613333pt;}
.y6e{bottom:666.973333pt;}
.ya9{bottom:667.613333pt;}
.ye1{bottom:670.973333pt;}
.y6d{bottom:682.333333pt;}
.ya8{bottom:683.613333pt;}
.ye0{bottom:686.333333pt;}
.y6c{bottom:697.533333pt;}
.ya7{bottom:699.613333pt;}
.ydf{bottom:701.533333pt;}
.y6b{bottom:712.893333pt;}
.yde{bottom:716.893333pt;}
.ya6{bottom:718.653333pt;}
.y6a{bottom:728.253333pt;}
.ydd{bottom:732.253333pt;}
.ya5{bottom:733.853333pt;}
.y19{bottom:739.613333pt;}
.y69{bottom:743.613333pt;}
.ya4{bottom:746.973333pt;}
.ydc{bottom:747.293333pt;}
.y68{bottom:758.973333pt;}
.ya3{bottom:762.973333pt;}
.yf{bottom:765.853333pt;}
.y67{bottom:774.213333pt;}
.ydb{bottom:775.653333pt;}
.ya2{bottom:779.013333pt;}
.y66{bottom:789.573333pt;}
.yda{bottom:791.653333pt;}
.ya0{bottom:795.013333pt;}
.y65{bottom:804.933333pt;}
.yd9{bottom:807.653333pt;}
.y9f{bottom:813.893333pt;}
.y64{bottom:820.293333pt;}
.yd8{bottom:823.653333pt;}
.y9e{bottom:829.253333pt;}
.y63{bottom:835.653333pt;}
.yd7{bottom:839.653333pt;}
.y9d{bottom:842.213333pt;}
.y62{bottom:850.693333pt;}
.y107{bottom:851.013333pt;}
.yd6{bottom:855.653333pt;}
.y9c{bottom:858.213333pt;}
.y61{bottom:866.213333pt;}
.yd5{bottom:871.653333pt;}
.y9b{bottom:874.213333pt;}
.y60{bottom:881.573333pt;}
.yd4{bottom:887.653333pt;}
.y9a{bottom:890.213333pt;}
.y5f{bottom:896.933333pt;}
.y99{bottom:906.213333pt;}
.yd3{bottom:906.693333pt;}
.y5e{bottom:911.973333pt;}
.y106{bottom:912.293333pt;}
.yd{bottom:921.253333pt;}
.y98{bottom:922.213333pt;}
.y10c{bottom:927.333333pt;}
.y5d{bottom:927.653333pt;}
.yd2{bottom:935.013333pt;}
.y97{bottom:938.213333pt;}
.y6{bottom:939.013333pt;}
.y5c{bottom:943.013333pt;}
.yd1{bottom:951.013333pt;}
.y95{bottom:954.213333pt;}
.y5b{bottom:958.213333pt;}
.yd0{bottom:967.013333pt;}
.y94{bottom:973.253333pt;}
.y5a{bottom:973.573333pt;}
.ycf{bottom:983.013333pt;}
.y93{bottom:988.613333pt;}
.y59{bottom:988.933333pt;}
.yce{bottom:999.013333pt;}
.y58{bottom:1004.293333pt;}
.ycd{bottom:1015.040000pt;}
.y57{bottom:1019.680000pt;}
.ycc{bottom:1031.040000pt;}
.y56{bottom:1035.040000pt;}
.h26{height:15.200000pt;}
.h27{height:15.232000pt;}
.h25{height:15.360000pt;}
.h28{height:15.392000pt;}
.hc{height:17.280000pt;}
.h29{height:24.131250pt;}
.h14{height:26.240000pt;}
.h13{height:28.536563pt;}
.h2{height:29.312000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h20{height:32.480000pt;}
.h1e{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h1c{height:37.499062pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h17{height:42.649687pt;}
.h23{height:42.691250pt;}
.h1a{height:44.215312pt;}
.h21{height:46.454062pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h19{height:50.436563pt;}
.h10{height:52.834688pt;}
.h1b{height:52.990313pt;}
.h24{height:54.242234pt;}
.h11{height:54.390938pt;}
.h1f{height:54.598989pt;}
.h22{height:55.298750pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:155.386667pt;}
.h16{height:337.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w5{width:135.066667pt;}
.w8{width:192.066667pt;}
.wa{width:216.066667pt;}
.wc{width:216.186667pt;}
.wb{width:216.346667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x12{left:11.200000pt;}
.xb{left:24.352000pt;}
.x1{left:72.000000pt;}
.xc{left:84.186667pt;}
.x4{left:87.226667pt;}
.xe{left:89.946667pt;}
.x1c{left:95.871988pt;}
.xf{left:123.866667pt;}
.x19{left:134.586655pt;}
.xd{left:154.746667pt;}
.x17{left:186.106655pt;}
.x10{left:191.266667pt;}
.x16{left:199.866655pt;}
.x5{left:207.066667pt;}
.x1a{left:228.026655pt;}
.x18{left:228.986655pt;}
.x8{left:241.986667pt;}
.x11{left:264.066667pt;}
.x13{left:286.786655pt;}
.x14{left:288.706667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x1b{left:352.066655pt;}
.x9{left:390.666667pt;}
.x15{left:505.053333pt;}
.x3{left:656.933333pt;}
}




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