
    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_0f10933cbf5124119bb90b14.woff')format("woff");}.ff1{font-family:ff1;line-height:1.150391;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_5dbaa70ba808d412882ad05d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7d89a5c97aa221526cd3d6cb.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c36c57cae64e4765b42f6ed5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.416016;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_d101f46437d60517505d4799.woff')format("woff");}.ff6{font-family:ff6;line-height:1.051270;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_23c08419570287d45e05ef10.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c953827b4b1a8131b348e265.woff')format("woff");}.ff8{font-family:ff8;line-height:0.884277;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_f71ef765984442ce160c89cb.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_b3eb2eb540af680d54674720.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6a99ef93187cfd330d039a7c.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8af0732d619483448e43ec91.woff')format("woff");}.ffc{font-family:ffc;line-height:1.372559;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_93405eeb881353e32f260bb4.woff')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8da856e71ce2cfe05d06cd20.woff')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_ba2e08b7d1d5110ad0eae96f.woff')format("woff");}.fff{font-family:fff;line-height:0.850586;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);}
.v9{vertical-align:-31.680000px;}
.va{vertical-align:-28.080000px;}
.v4{vertical-align:-23.760000px;}
.v8{vertical-align:-5.040000px;}
.v2{vertical-align:-3.600000px;}
.v6{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.440000px;}
.v1{vertical-align:3.600000px;}
.v7{vertical-align:5.040000px;}
.v3{vertical-align:23.760000px;}
.vb{vertical-align:27.360000px;}
.lsc{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.086400px;}
.lsb{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.350640px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.lse{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.720000px;}
.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;}
}
.ws14{word-spacing:-66.496200px;}
.ws9{word-spacing:-66.240000px;}
.ws8{word-spacing:-22.824000px;}
.ws0{word-spacing:-21.060000px;}
.ws12{word-spacing:-18.576000px;}
.ws10{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.856000px;}
.wse{word-spacing:-17.712000px;}
.wsa{word-spacing:-16.560000px;}
.ws13{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.026400px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.140000px;}
.wsb{word-spacing:-10.440000px;}
.wsd{word-spacing:0.000000px;}
._42{margin-left:-2574.720000px;}
._43{margin-left:-2573.171040px;}
._40{margin-left:-2482.070880px;}
._44{margin-left:-2404.468080px;}
._46{margin-left:-1800.592320px;}
._41{margin-left:-1324.791360px;}
._4b{margin-left:-1168.148160px;}
._4c{margin-left:-827.802720px;}
._45{margin-left:-785.191680px;}
._32{margin-left:-746.873040px;}
._37{margin-left:-741.851520px;}
._1{margin-left:-685.938240px;}
._1b{margin-left:-621.728160px;}
._15{margin-left:-607.281840px;}
._1c{margin-left:-591.480000px;}
._3b{margin-left:-590.348640px;}
._39{margin-left:-568.951680px;}
._19{margin-left:-530.775840px;}
._33{margin-left:-510.916080px;}
._34{margin-left:-495.424080px;}
._f{margin-left:-489.673440px;}
._c{margin-left:-469.818720px;}
._3{margin-left:-464.131920px;}
._49{margin-left:-462.760080px;}
._35{margin-left:-455.368800px;}
._48{margin-left:-446.688000px;}
._e{margin-left:-445.500000px;}
._30{margin-left:-439.884000px;}
._b{margin-left:-436.046640px;}
._4a{margin-left:-419.904000px;}
._3c{margin-left:-230.112000px;}
._17{margin-left:-156.113280px;}
._14{margin-left:-141.120000px;}
._13{margin-left:-137.033280px;}
._9{margin-left:-135.552000px;}
._a{margin-left:-120.960000px;}
._55{margin-left:-105.119760px;}
._10{margin-left:-92.160000px;}
._7{margin-left:-82.872000px;}
._16{margin-left:-75.420000px;}
._4{margin-left:-72.000000px;}
._1d{margin-left:-70.999680px;}
._5{margin-left:-69.102000px;}
._8{margin-left:-66.960000px;}
._47{margin-left:-65.635920px;}
._11{margin-left:-62.153280px;}
._d{margin-left:-53.001360px;}
._12{margin-left:-46.440000px;}
._6{margin-left:-41.580000px;}
._38{margin-left:-39.778560px;}
._2f{margin-left:-19.627920px;}
._3f{margin-left:-17.346720px;}
._3a{margin-left:-16.338720px;}
._3d{margin-left:-12.922080px;}
._3e{margin-left:-11.016000px;}
._36{margin-left:-9.847200px;}
._31{margin-left:-8.002800px;}
._1a{margin-left:-5.967840px;}
._18{margin-left:-4.608000px;}
._20{margin-left:-2.760000px;}
._2{margin-left:-1.016160px;}
._0{width:1.195200px;}
._29{width:2.748960px;}
._23{width:4.008000px;}
._1e{width:5.472000px;}
._1f{width:6.552000px;}
._21{width:7.856160px;}
._22{width:9.380160px;}
._4e{width:10.448160px;}
._25{width:11.664000px;}
._2d{width:12.700800px;}
._26{width:13.824000px;}
._50{width:15.348960px;}
._2c{width:16.992000px;}
._24{width:19.742400px;}
._4d{width:21.384000px;}
._28{width:22.912320px;}
._27{width:24.120000px;}
._51{width:25.183680px;}
._2a{width:27.864000px;}
._2b{width:29.124960px;}
._54{width:30.131040px;}
._4f{width:35.568000px;}
._52{width:38.448000px;}
._53{width:39.556800px;}
._56{width:51.378720px;}
._2e{width:846.156000px;}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,0,153);}
.fc2{color:rgb(227,108,10);}
.fc1{color:rgb(18,3,125);}
.fc0{color:rgb(0,0,255);}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yab{bottom:0.165000px;}
.y7{bottom:2.895000px;}
.y11{bottom:4.131000px;}
.yc{bottom:6.300000px;}
.y2{bottom:11.340000px;}
.ya{bottom:19.275000px;}
.y6{bottom:20.175000px;}
.y10{bottom:28.251000px;}
.y9{bottom:32.940000px;}
.y4{bottom:43.020000px;}
.y8{bottom:46.800000px;}
.yf{bottom:55.431000px;}
.y12{bottom:60.291000px;}
.y3{bottom:60.330000px;}
.y13{bottom:61.011000px;}
.y14{bottom:69.840000px;}
.ye{bottom:85.365000px;}
.yad{bottom:174.450000px;}
.y51{bottom:178.410000px;}
.y101{bottom:179.130000px;}
.y78{bottom:181.830000px;}
.y8a{bottom:185.430000px;}
.y96{bottom:192.270000px;}
.ya0{bottom:192.630000px;}
.yac{bottom:193.350000px;}
.y50{bottom:198.930000px;}
.y100{bottom:199.830000px;}
.ye0{bottom:202.170000px;}
.y77{bottom:202.530000px;}
.y89{bottom:209.550000px;}
.yce{bottom:211.530000px;}
.y95{bottom:212.970000px;}
.y9f{bottom:216.570000px;}
.yaa{bottom:217.305000px;}
.y4f{bottom:219.630000px;}
.yff{bottom:220.530000px;}
.ydf{bottom:222.870000px;}
.y76{bottom:223.230000px;}
.ycd{bottom:232.230000px;}
.y94{bottom:238.170000px;}
.y4e{bottom:240.330000px;}
.yfe{bottom:241.230000px;}
.yde{bottom:243.570000px;}
.y75{bottom:243.930000px;}
.ycc{bottom:252.930000px;}
.y4d{bottom:261.030000px;}
.yfd{bottom:261.930000px;}
.ydd{bottom:264.270000px;}
.y74{bottom:264.630000px;}
.ycb{bottom:273.630000px;}
.y4c{bottom:281.730000px;}
.yfc{bottom:282.630000px;}
.ydc{bottom:284.970000px;}
.y73{bottom:285.330000px;}
.yca{bottom:294.330000px;}
.y4b{bottom:302.430000px;}
.yfb{bottom:303.330000px;}
.ydb{bottom:305.670000px;}
.y72{bottom:306.030000px;}
.yc9{bottom:315.030000px;}
.y4a{bottom:322.770000px;}
.yfa{bottom:324.030000px;}
.yda{bottom:326.370000px;}
.y71{bottom:326.730000px;}
.yc8{bottom:335.730000px;}
.yf9{bottom:344.775000px;}
.yd9{bottom:347.115000px;}
.y70{bottom:347.475000px;}
.yc7{bottom:356.475000px;}
.y32{bottom:364.395000px;}
.yf8{bottom:365.475000px;}
.y6f{bottom:367.815000px;}
.y49{bottom:375.195000px;}
.yc6{bottom:377.175000px;}
.y31{bottom:385.095000px;}
.yf7{bottom:386.175000px;}
.yd8{bottom:388.515000px;}
.yc5{bottom:397.875000px;}
.y88{bottom:402.015000px;}
.y48{bottom:405.075000px;}
.y30{bottom:405.795000px;}
.y6e{bottom:406.515000px;}
.yf6{bottom:406.875000px;}
.yd7{bottom:408.855000px;}
.yc4{bottom:418.575000px;}
.y87{bottom:422.715000px;}
.y2f{bottom:426.495000px;}
.yf5{bottom:427.575000px;}
.y47{bottom:434.955000px;}
.yc3{bottom:439.275000px;}
.y86{bottom:443.415000px;}
.y2e{bottom:447.195000px;}
.yf4{bottom:448.275000px;}
.y6d{bottom:454.575000px;}
.yd6{bottom:456.915000px;}
.yc2{bottom:459.615000px;}
.y85{bottom:464.115000px;}
.y46{bottom:464.835000px;}
.y2d{bottom:467.895000px;}
.yf3{bottom:468.975000px;}
.y6c{bottom:475.275000px;}
.yd5{bottom:477.615000px;}
.y84{bottom:484.815000px;}
.ya9{bottom:485.175000px;}
.y2c{bottom:488.595000px;}
.yf2{bottom:489.675000px;}
.y45{bottom:494.715000px;}
.y6b{bottom:495.975000px;}
.yd4{bottom:498.315000px;}
.yc1{bottom:498.675000px;}
.y83{bottom:505.515000px;}
.ya8{bottom:505.695000px;}
.y2b{bottom:509.295000px;}
.yf1{bottom:510.375000px;}
.y6a{bottom:516.675000px;}
.yd3{bottom:519.015000px;}
.yc0{bottom:519.375000px;}
.y44{bottom:524.595000px;}
.y82{bottom:526.215000px;}
.ya7{bottom:526.395000px;}
.y2a{bottom:529.995000px;}
.yf0{bottom:531.075000px;}
.y69{bottom:537.375000px;}
.yd2{bottom:539.715000px;}
.ybf{bottom:540.075000px;}
.y81{bottom:546.555000px;}
.ya6{bottom:547.095000px;}
.y29{bottom:550.695000px;}
.yef{bottom:551.775000px;}
.y43{bottom:554.295000px;}
.y68{bottom:558.075000px;}
.yd1{bottom:560.415000px;}
.ybe{bottom:560.775000px;}
.ya5{bottom:567.795000px;}
.y28{bottom:571.395000px;}
.yee{bottom:572.475000px;}
.y67{bottom:578.775000px;}
.yd0{bottom:580.575000px;}
.ybd{bottom:581.475000px;}
.y42{bottom:584.175000px;}
.y80{bottom:585.615000px;}
.ya4{bottom:588.495000px;}
.y93{bottom:591.915000px;}
.y27{bottom:592.095000px;}
.yed{bottom:593.175000px;}
.y66{bottom:599.475000px;}
.ybc{bottom:602.175000px;}
.ycf{bottom:604.695000px;}
.y7f{bottom:606.315000px;}
.y9e{bottom:608.865000px;}
.ya3{bottom:609.225000px;}
.y92{bottom:612.645000px;}
.y26{bottom:612.825000px;}
.yec{bottom:613.905000px;}
.y41{bottom:614.085000px;}
.y65{bottom:620.205000px;}
.ybb{bottom:622.905000px;}
.y7e{bottom:627.045000px;}
.y9d{bottom:629.565000px;}
.y91{bottom:633.345000px;}
.y25{bottom:633.525000px;}
.yeb{bottom:634.605000px;}
.y64{bottom:640.905000px;}
.yba{bottom:643.605000px;}
.y40{bottom:643.965000px;}
.ya2{bottom:647.565000px;}
.y7d{bottom:647.745000px;}
.y9c{bottom:650.265000px;}
.y90{bottom:654.045000px;}
.y24{bottom:654.225000px;}
.yea{bottom:655.305000px;}
.y63{bottom:661.605000px;}
.yb9{bottom:664.305000px;}
.y7c{bottom:668.445000px;}
.y9b{bottom:670.965000px;}
.ya1{bottom:671.505000px;}
.y3f{bottom:673.665000px;}
.y8f{bottom:674.745000px;}
.y23{bottom:674.925000px;}
.ye9{bottom:676.005000px;}
.y62{bottom:682.305000px;}
.yb8{bottom:685.005000px;}
.y7b{bottom:689.145000px;}
.y9a{bottom:691.665000px;}
.y8e{bottom:695.265000px;}
.y22{bottom:695.625000px;}
.ye8{bottom:696.705000px;}
.y61{bottom:703.005000px;}
.y3e{bottom:703.545000px;}
.yb7{bottom:705.705000px;}
.y99{bottom:712.365000px;}
.y21{bottom:716.325000px;}
.y8d{bottom:716.505000px;}
.ye7{bottom:717.405000px;}
.y60{bottom:723.705000px;}
.yb6{bottom:726.405000px;}
.y7a{bottom:727.305000px;}
.y3d{bottom:733.425000px;}
.y20{bottom:737.025000px;}
.y8c{bottom:737.565000px;}
.ye6{bottom:738.105000px;}
.y5f{bottom:744.405000px;}
.yb5{bottom:747.105000px;}
.y98{bottom:750.705000px;}
.y79{bottom:751.425000px;}
.y1f{bottom:757.725000px;}
.y8b{bottom:758.445000px;}
.ye5{bottom:758.805000px;}
.y3c{bottom:763.305000px;}
.y5e{bottom:765.105000px;}
.yb4{bottom:767.805000px;}
.y97{bottom:774.645000px;}
.y1e{bottom:778.425000px;}
.ye4{bottom:779.505000px;}
.y5d{bottom:785.805000px;}
.yb3{bottom:788.505000px;}
.y3b{bottom:793.005000px;}
.y1d{bottom:799.125000px;}
.ye3{bottom:800.205000px;}
.y5c{bottom:806.505000px;}
.yb2{bottom:809.205000px;}
.y1c{bottom:819.465000px;}
.ye2{bottom:820.905000px;}
.y3a{bottom:822.885000px;}
.y5b{bottom:827.205000px;}
.yb1{bottom:829.905000px;}
.y1b{bottom:840.165000px;}
.ye1{bottom:841.245000px;}
.y5a{bottom:847.905000px;}
.yb0{bottom:850.605000px;}
.y39{bottom:852.765000px;}
.y1a{bottom:866.625000px;}
.y59{bottom:868.605000px;}
.yaf{bottom:871.350000px;}
.y38{bottom:878.190000px;}
.y19{bottom:879.630000px;}
.y58{bottom:889.350000px;}
.yae{bottom:891.690000px;}
.y18{bottom:898.710000px;}
.y37{bottom:902.670000px;}
.y57{bottom:910.050000px;}
.y36{bottom:930.030000px;}
.y56{bottom:930.750000px;}
.y17{bottom:935.250000px;}
.y55{bottom:951.450000px;}
.y34{bottom:957.390000px;}
.y35{bottom:964.230000px;}
.y54{bottom:972.150000px;}
.y16{bottom:972.690000px;}
.y53{bottom:992.850000px;}
.y33{bottom:1005.270000px;}
.y15{bottom:1010.310000px;}
.y52{bottom:1013.550000px;}
.yd{bottom:1034.430000px;}
.yb{bottom:1056.570000px;}
.y5{bottom:1081.935000px;}
.y1{bottom:1081.950000px;}
.hb{height:23.205000px;}
.h1b{height:39.884062px;}
.h17{height:41.250938px;}
.ha{height:45.272109px;}
.h12{height:45.992812px;}
.h9{height:48.616875px;}
.h26{height:49.992188px;}
.h14{height:50.229844px;}
.h22{height:50.273438px;}
.h3{height:50.677734px;}
.h11{height:53.753906px;}
.h8{height:54.421875px;}
.h5{height:56.083359px;}
.hc{height:60.226875px;}
.h1a{height:63.264375px;}
.h15{height:65.010937px;}
.hd{height:65.884219px;}
.h16{height:66.757500px;}
.h1c{height:68.148281px;}
.h1d{height:68.765625px;}
.h13{height:70.664062px;}
.h18{height:72.562500px;}
.h1e{height:74.074219px;}
.h2{height:74.190000px;}
.h4{height:74.196000px;}
.h6{height:74.205000px;}
.h21{height:74.704922px;}
.h1f{height:75.514219px;}
.he{height:76.491000px;}
.h10{height:76.500000px;}
.hf{height:77.674219px;}
.h20{height:79.114219px;}
.h19{height:80.455781px;}
.h23{height:82.676953px;}
.h7{height:84.898125px;}
.h24{height:254.730000px;}
.h25{height:263.355000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:53.271000px;}
.w5{width:191.355000px;}
.w6{width:191.370000px;}
.w3{width:212.610000px;}
.w4{width:212.625000px;}
.w2{width:212.820000px;}
.w8{width:265.701000px;}
.wa{width:286.980000px;}
.w9{width:305.175000px;}
.w7{width:351.105000px;}
.wc{width:637.155000px;}
.wd{width:638.055000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.020000px;}
.x2{left:11.865000px;}
.x5{left:24.840000px;}
.x42{left:26.091000px;}
.x9{left:30.225000px;}
.x17{left:34.545000px;}
.xb{left:40.125000px;}
.xa{left:44.625000px;}
.x6{left:50.760000px;}
.x15{left:60.645000px;}
.x12{left:77.565000px;}
.x11{left:87.825000px;}
.xe{left:109.425000px;}
.x16{left:120.285000px;}
.x26{left:122.256000px;}
.x1e{left:127.656000px;}
.x27{left:135.396000px;}
.x8{left:138.285000px;}
.x7{left:140.970000px;}
.x13{left:144.210000px;}
.x41{left:146.916000px;}
.x3c{left:148.176000px;}
.x3e{left:160.590000px;}
.x3a{left:171.030000px;}
.x14{left:173.565000px;}
.x18{left:219.090000px;}
.x35{left:232.590000px;}
.x36{left:249.195000px;}
.x33{left:263.775000px;}
.x1b{left:268.095000px;}
.x1d{left:276.015000px;}
.x38{left:277.815000px;}
.x1c{left:297.615000px;}
.x1a{left:301.035000px;}
.x19{left:313.095000px;}
.x2c{left:318.495000px;}
.x2e{left:323.175000px;}
.x3{left:329.655000px;}
.xd{left:333.615000px;}
.x22{left:343.695000px;}
.x23{left:358.095000px;}
.x2a{left:393.195000px;}
.xc{left:403.995000px;}
.x3f{left:415.185000px;}
.x21{left:449.025000px;}
.x28{left:453.165000px;}
.x20{left:454.605000px;}
.x10{left:460.560000px;}
.x24{left:514.725000px;}
.x2d{left:528.015000px;}
.x1{left:542.280000px;}
.x3b{left:555.945000px;}
.x3d{left:576.645000px;}
.x1f{left:579.930000px;}
.x2f{left:615.495000px;}
.x34{left:620.970000px;}
.x30{left:641.775000px;}
.x31{left:665.790000px;}
.x32{left:678.390000px;}
.x40{left:679.650000px;}
.x2b{left:693.150000px;}
.x25{left:717.450000px;}
.x39{left:725.730000px;}
.x43{left:747.000000px;}
.x29{left:748.260000px;}
.x37{left:750.420000px;}
.xf{left:756.000000px;}
@media print{
.v9{vertical-align:-28.160000pt;}
.va{vertical-align:-24.960000pt;}
.v4{vertical-align:-21.120000pt;}
.v8{vertical-align:-4.480000pt;}
.v2{vertical-align:-3.200000pt;}
.v6{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.280000pt;}
.v1{vertical-align:3.200000pt;}
.v7{vertical-align:4.480000pt;}
.v3{vertical-align:21.120000pt;}
.vb{vertical-align:24.320000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.076800pt;}
.lsb{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.311680pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.640000pt;}
.ws14{word-spacing:-59.107733pt;}
.ws9{word-spacing:-58.880000pt;}
.ws8{word-spacing:-20.288000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws12{word-spacing:-16.512000pt;}
.ws10{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.744000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.356800pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.680000pt;}
.wsb{word-spacing:-9.280000pt;}
.wsd{word-spacing:0.000000pt;}
._42{margin-left:-2288.640000pt;}
._43{margin-left:-2287.263147pt;}
._40{margin-left:-2206.285227pt;}
._44{margin-left:-2137.304960pt;}
._46{margin-left:-1600.526507pt;}
._41{margin-left:-1177.592320pt;}
._4b{margin-left:-1038.353920pt;}
._4c{margin-left:-735.824640pt;}
._45{margin-left:-697.948160pt;}
._32{margin-left:-663.887147pt;}
._37{margin-left:-659.423573pt;}
._1{margin-left:-609.722880pt;}
._1b{margin-left:-552.647253pt;}
._15{margin-left:-539.806080pt;}
._1c{margin-left:-525.760000pt;}
._3b{margin-left:-524.754347pt;}
._39{margin-left:-505.734827pt;}
._19{margin-left:-471.800747pt;}
._33{margin-left:-454.147627pt;}
._34{margin-left:-440.376960pt;}
._f{margin-left:-435.265280pt;}
._c{margin-left:-417.616640pt;}
._3{margin-left:-412.561707pt;}
._49{margin-left:-411.342293pt;}
._35{margin-left:-404.772267pt;}
._48{margin-left:-397.056000pt;}
._e{margin-left:-396.000000pt;}
._30{margin-left:-391.008000pt;}
._b{margin-left:-387.597013pt;}
._4a{margin-left:-373.248000pt;}
._3c{margin-left:-204.544000pt;}
._17{margin-left:-138.767360pt;}
._14{margin-left:-125.440000pt;}
._13{margin-left:-121.807360pt;}
._9{margin-left:-120.490667pt;}
._a{margin-left:-107.520000pt;}
._55{margin-left:-93.439787pt;}
._10{margin-left:-81.920000pt;}
._7{margin-left:-73.664000pt;}
._16{margin-left:-67.040000pt;}
._4{margin-left:-64.000000pt;}
._1d{margin-left:-63.110827pt;}
._5{margin-left:-61.424000pt;}
._8{margin-left:-59.520000pt;}
._47{margin-left:-58.343040pt;}
._11{margin-left:-55.247360pt;}
._d{margin-left:-47.112320pt;}
._12{margin-left:-41.280000pt;}
._6{margin-left:-36.960000pt;}
._38{margin-left:-35.358720pt;}
._2f{margin-left:-17.447040pt;}
._3f{margin-left:-15.419307pt;}
._3a{margin-left:-14.523307pt;}
._3d{margin-left:-11.486293pt;}
._3e{margin-left:-9.792000pt;}
._36{margin-left:-8.753067pt;}
._31{margin-left:-7.113600pt;}
._1a{margin-left:-5.304747pt;}
._18{margin-left:-4.096000pt;}
._20{margin-left:-2.453333pt;}
._2{margin-left:-0.903253pt;}
._0{width:1.062400pt;}
._29{width:2.443520pt;}
._23{width:3.562667pt;}
._1e{width:4.864000pt;}
._1f{width:5.824000pt;}
._21{width:6.983253pt;}
._22{width:8.337920pt;}
._4e{width:9.287253pt;}
._25{width:10.368000pt;}
._2d{width:11.289600pt;}
._26{width:12.288000pt;}
._50{width:13.643520pt;}
._2c{width:15.104000pt;}
._24{width:17.548800pt;}
._4d{width:19.008000pt;}
._28{width:20.366507pt;}
._27{width:21.440000pt;}
._51{width:22.385493pt;}
._2a{width:24.768000pt;}
._2b{width:25.888853pt;}
._54{width:26.783147pt;}
._4f{width:31.616000pt;}
._52{width:34.176000pt;}
._53{width:35.161600pt;}
._56{width:45.669973pt;}
._2e{width:752.138667pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:0.146667pt;}
.y7{bottom:2.573333pt;}
.y11{bottom:3.672000pt;}
.yc{bottom:5.600000pt;}
.y2{bottom:10.080000pt;}
.ya{bottom:17.133333pt;}
.y6{bottom:17.933333pt;}
.y10{bottom:25.112000pt;}
.y9{bottom:29.280000pt;}
.y4{bottom:38.240000pt;}
.y8{bottom:41.600000pt;}
.yf{bottom:49.272000pt;}
.y12{bottom:53.592000pt;}
.y3{bottom:53.626667pt;}
.y13{bottom:54.232000pt;}
.y14{bottom:62.080000pt;}
.ye{bottom:75.880000pt;}
.yad{bottom:155.066667pt;}
.y51{bottom:158.586667pt;}
.y101{bottom:159.226667pt;}
.y78{bottom:161.626667pt;}
.y8a{bottom:164.826667pt;}
.y96{bottom:170.906667pt;}
.ya0{bottom:171.226667pt;}
.yac{bottom:171.866667pt;}
.y50{bottom:176.826667pt;}
.y100{bottom:177.626667pt;}
.ye0{bottom:179.706667pt;}
.y77{bottom:180.026667pt;}
.y89{bottom:186.266667pt;}
.yce{bottom:188.026667pt;}
.y95{bottom:189.306667pt;}
.y9f{bottom:192.506667pt;}
.yaa{bottom:193.160000pt;}
.y4f{bottom:195.226667pt;}
.yff{bottom:196.026667pt;}
.ydf{bottom:198.106667pt;}
.y76{bottom:198.426667pt;}
.ycd{bottom:206.426667pt;}
.y94{bottom:211.706667pt;}
.y4e{bottom:213.626667pt;}
.yfe{bottom:214.426667pt;}
.yde{bottom:216.506667pt;}
.y75{bottom:216.826667pt;}
.ycc{bottom:224.826667pt;}
.y4d{bottom:232.026667pt;}
.yfd{bottom:232.826667pt;}
.ydd{bottom:234.906667pt;}
.y74{bottom:235.226667pt;}
.ycb{bottom:243.226667pt;}
.y4c{bottom:250.426667pt;}
.yfc{bottom:251.226667pt;}
.ydc{bottom:253.306667pt;}
.y73{bottom:253.626667pt;}
.yca{bottom:261.626667pt;}
.y4b{bottom:268.826667pt;}
.yfb{bottom:269.626667pt;}
.ydb{bottom:271.706667pt;}
.y72{bottom:272.026667pt;}
.yc9{bottom:280.026667pt;}
.y4a{bottom:286.906667pt;}
.yfa{bottom:288.026667pt;}
.yda{bottom:290.106667pt;}
.y71{bottom:290.426667pt;}
.yc8{bottom:298.426667pt;}
.yf9{bottom:306.466667pt;}
.yd9{bottom:308.546667pt;}
.y70{bottom:308.866667pt;}
.yc7{bottom:316.866667pt;}
.y32{bottom:323.906667pt;}
.yf8{bottom:324.866667pt;}
.y6f{bottom:326.946667pt;}
.y49{bottom:333.506667pt;}
.yc6{bottom:335.266667pt;}
.y31{bottom:342.306667pt;}
.yf7{bottom:343.266667pt;}
.yd8{bottom:345.346667pt;}
.yc5{bottom:353.666667pt;}
.y88{bottom:357.346667pt;}
.y48{bottom:360.066667pt;}
.y30{bottom:360.706667pt;}
.y6e{bottom:361.346667pt;}
.yf6{bottom:361.666667pt;}
.yd7{bottom:363.426667pt;}
.yc4{bottom:372.066667pt;}
.y87{bottom:375.746667pt;}
.y2f{bottom:379.106667pt;}
.yf5{bottom:380.066667pt;}
.y47{bottom:386.626667pt;}
.yc3{bottom:390.466667pt;}
.y86{bottom:394.146667pt;}
.y2e{bottom:397.506667pt;}
.yf4{bottom:398.466667pt;}
.y6d{bottom:404.066667pt;}
.yd6{bottom:406.146667pt;}
.yc2{bottom:408.546667pt;}
.y85{bottom:412.546667pt;}
.y46{bottom:413.186667pt;}
.y2d{bottom:415.906667pt;}
.yf3{bottom:416.866667pt;}
.y6c{bottom:422.466667pt;}
.yd5{bottom:424.546667pt;}
.y84{bottom:430.946667pt;}
.ya9{bottom:431.266667pt;}
.y2c{bottom:434.306667pt;}
.yf2{bottom:435.266667pt;}
.y45{bottom:439.746667pt;}
.y6b{bottom:440.866667pt;}
.yd4{bottom:442.946667pt;}
.yc1{bottom:443.266667pt;}
.y83{bottom:449.346667pt;}
.ya8{bottom:449.506667pt;}
.y2b{bottom:452.706667pt;}
.yf1{bottom:453.666667pt;}
.y6a{bottom:459.266667pt;}
.yd3{bottom:461.346667pt;}
.yc0{bottom:461.666667pt;}
.y44{bottom:466.306667pt;}
.y82{bottom:467.746667pt;}
.ya7{bottom:467.906667pt;}
.y2a{bottom:471.106667pt;}
.yf0{bottom:472.066667pt;}
.y69{bottom:477.666667pt;}
.yd2{bottom:479.746667pt;}
.ybf{bottom:480.066667pt;}
.y81{bottom:485.826667pt;}
.ya6{bottom:486.306667pt;}
.y29{bottom:489.506667pt;}
.yef{bottom:490.466667pt;}
.y43{bottom:492.706667pt;}
.y68{bottom:496.066667pt;}
.yd1{bottom:498.146667pt;}
.ybe{bottom:498.466667pt;}
.ya5{bottom:504.706667pt;}
.y28{bottom:507.906667pt;}
.yee{bottom:508.866667pt;}
.y67{bottom:514.466667pt;}
.yd0{bottom:516.066667pt;}
.ybd{bottom:516.866667pt;}
.y42{bottom:519.266667pt;}
.y80{bottom:520.546667pt;}
.ya4{bottom:523.106667pt;}
.y93{bottom:526.146667pt;}
.y27{bottom:526.306667pt;}
.yed{bottom:527.266667pt;}
.y66{bottom:532.866667pt;}
.ybc{bottom:535.266667pt;}
.ycf{bottom:537.506667pt;}
.y7f{bottom:538.946667pt;}
.y9e{bottom:541.213333pt;}
.ya3{bottom:541.533333pt;}
.y92{bottom:544.573333pt;}
.y26{bottom:544.733333pt;}
.yec{bottom:545.693333pt;}
.y41{bottom:545.853333pt;}
.y65{bottom:551.293333pt;}
.ybb{bottom:553.693333pt;}
.y7e{bottom:557.373333pt;}
.y9d{bottom:559.613333pt;}
.y91{bottom:562.973333pt;}
.y25{bottom:563.133333pt;}
.yeb{bottom:564.093333pt;}
.y64{bottom:569.693333pt;}
.yba{bottom:572.093333pt;}
.y40{bottom:572.413333pt;}
.ya2{bottom:575.613333pt;}
.y7d{bottom:575.773333pt;}
.y9c{bottom:578.013333pt;}
.y90{bottom:581.373333pt;}
.y24{bottom:581.533333pt;}
.yea{bottom:582.493333pt;}
.y63{bottom:588.093333pt;}
.yb9{bottom:590.493333pt;}
.y7c{bottom:594.173333pt;}
.y9b{bottom:596.413333pt;}
.ya1{bottom:596.893333pt;}
.y3f{bottom:598.813333pt;}
.y8f{bottom:599.773333pt;}
.y23{bottom:599.933333pt;}
.ye9{bottom:600.893333pt;}
.y62{bottom:606.493333pt;}
.yb8{bottom:608.893333pt;}
.y7b{bottom:612.573333pt;}
.y9a{bottom:614.813333pt;}
.y8e{bottom:618.013333pt;}
.y22{bottom:618.333333pt;}
.ye8{bottom:619.293333pt;}
.y61{bottom:624.893333pt;}
.y3e{bottom:625.373333pt;}
.yb7{bottom:627.293333pt;}
.y99{bottom:633.213333pt;}
.y21{bottom:636.733333pt;}
.y8d{bottom:636.893333pt;}
.ye7{bottom:637.693333pt;}
.y60{bottom:643.293333pt;}
.yb6{bottom:645.693333pt;}
.y7a{bottom:646.493333pt;}
.y3d{bottom:651.933333pt;}
.y20{bottom:655.133333pt;}
.y8c{bottom:655.613333pt;}
.ye6{bottom:656.093333pt;}
.y5f{bottom:661.693333pt;}
.yb5{bottom:664.093333pt;}
.y98{bottom:667.293333pt;}
.y79{bottom:667.933333pt;}
.y1f{bottom:673.533333pt;}
.y8b{bottom:674.173333pt;}
.ye5{bottom:674.493333pt;}
.y3c{bottom:678.493333pt;}
.y5e{bottom:680.093333pt;}
.yb4{bottom:682.493333pt;}
.y97{bottom:688.573333pt;}
.y1e{bottom:691.933333pt;}
.ye4{bottom:692.893333pt;}
.y5d{bottom:698.493333pt;}
.yb3{bottom:700.893333pt;}
.y3b{bottom:704.893333pt;}
.y1d{bottom:710.333333pt;}
.ye3{bottom:711.293333pt;}
.y5c{bottom:716.893333pt;}
.yb2{bottom:719.293333pt;}
.y1c{bottom:728.413333pt;}
.ye2{bottom:729.693333pt;}
.y3a{bottom:731.453333pt;}
.y5b{bottom:735.293333pt;}
.yb1{bottom:737.693333pt;}
.y1b{bottom:746.813333pt;}
.ye1{bottom:747.773333pt;}
.y5a{bottom:753.693333pt;}
.yb0{bottom:756.093333pt;}
.y39{bottom:758.013333pt;}
.y1a{bottom:770.333333pt;}
.y59{bottom:772.093333pt;}
.yaf{bottom:774.533333pt;}
.y38{bottom:780.613333pt;}
.y19{bottom:781.893333pt;}
.y58{bottom:790.533333pt;}
.yae{bottom:792.613333pt;}
.y18{bottom:798.853333pt;}
.y37{bottom:802.373333pt;}
.y57{bottom:808.933333pt;}
.y36{bottom:826.693333pt;}
.y56{bottom:827.333333pt;}
.y17{bottom:831.333333pt;}
.y55{bottom:845.733333pt;}
.y34{bottom:851.013333pt;}
.y35{bottom:857.093333pt;}
.y54{bottom:864.133333pt;}
.y16{bottom:864.613333pt;}
.y53{bottom:882.533333pt;}
.y33{bottom:893.573333pt;}
.y15{bottom:898.053333pt;}
.y52{bottom:900.933333pt;}
.yd{bottom:919.493333pt;}
.yb{bottom:939.173333pt;}
.y5{bottom:961.720000pt;}
.y1{bottom:961.733333pt;}
.hb{height:20.626667pt;}
.h1b{height:35.452500pt;}
.h17{height:36.667500pt;}
.ha{height:40.241875pt;}
.h12{height:40.882500pt;}
.h9{height:43.215000pt;}
.h26{height:44.437500pt;}
.h14{height:44.648750pt;}
.h22{height:44.687500pt;}
.h3{height:45.046875pt;}
.h11{height:47.781250pt;}
.h8{height:48.375000pt;}
.h5{height:49.851875pt;}
.hc{height:53.535000pt;}
.h1a{height:56.235000pt;}
.h15{height:57.787500pt;}
.hd{height:58.563750pt;}
.h16{height:59.340000pt;}
.h1c{height:60.576250pt;}
.h1d{height:61.125000pt;}
.h13{height:62.812500pt;}
.h18{height:64.500000pt;}
.h1e{height:65.843750pt;}
.h2{height:65.946667pt;}
.h4{height:65.952000pt;}
.h6{height:65.960000pt;}
.h21{height:66.404375pt;}
.h1f{height:67.123750pt;}
.he{height:67.992000pt;}
.h10{height:68.000000pt;}
.hf{height:69.043750pt;}
.h20{height:70.323750pt;}
.h19{height:71.516250pt;}
.h23{height:73.490625pt;}
.h7{height:75.465000pt;}
.h24{height:226.426667pt;}
.h25{height:234.093333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:47.352000pt;}
.w5{width:170.093333pt;}
.w6{width:170.106667pt;}
.w3{width:188.986667pt;}
.w4{width:189.000000pt;}
.w2{width:189.173333pt;}
.w8{width:236.178667pt;}
.wa{width:255.093333pt;}
.w9{width:271.266667pt;}
.w7{width:312.093333pt;}
.wc{width:566.360000pt;}
.wd{width:567.160000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.240000pt;}
.x2{left:10.546667pt;}
.x5{left:22.080000pt;}
.x42{left:23.192000pt;}
.x9{left:26.866667pt;}
.x17{left:30.706667pt;}
.xb{left:35.666667pt;}
.xa{left:39.666667pt;}
.x6{left:45.120000pt;}
.x15{left:53.906667pt;}
.x12{left:68.946667pt;}
.x11{left:78.066667pt;}
.xe{left:97.266667pt;}
.x16{left:106.920000pt;}
.x26{left:108.672000pt;}
.x1e{left:113.472000pt;}
.x27{left:120.352000pt;}
.x8{left:122.920000pt;}
.x7{left:125.306667pt;}
.x13{left:128.186667pt;}
.x41{left:130.592000pt;}
.x3c{left:131.712000pt;}
.x3e{left:142.746667pt;}
.x3a{left:152.026667pt;}
.x14{left:154.280000pt;}
.x18{left:194.746667pt;}
.x35{left:206.746667pt;}
.x36{left:221.506667pt;}
.x33{left:234.466667pt;}
.x1b{left:238.306667pt;}
.x1d{left:245.346667pt;}
.x38{left:246.946667pt;}
.x1c{left:264.546667pt;}
.x1a{left:267.586667pt;}
.x19{left:278.306667pt;}
.x2c{left:283.106667pt;}
.x2e{left:287.266667pt;}
.x3{left:293.026667pt;}
.xd{left:296.546667pt;}
.x22{left:305.506667pt;}
.x23{left:318.306667pt;}
.x2a{left:349.506667pt;}
.xc{left:359.106667pt;}
.x3f{left:369.053333pt;}
.x21{left:399.133333pt;}
.x28{left:402.813333pt;}
.x20{left:404.093333pt;}
.x10{left:409.386667pt;}
.x24{left:457.533333pt;}
.x2d{left:469.346667pt;}
.x1{left:482.026667pt;}
.x3b{left:494.173333pt;}
.x3d{left:512.573333pt;}
.x1f{left:515.493333pt;}
.x2f{left:547.106667pt;}
.x34{left:551.973333pt;}
.x30{left:570.466667pt;}
.x31{left:591.813333pt;}
.x32{left:603.013333pt;}
.x40{left:604.133333pt;}
.x2b{left:616.133333pt;}
.x25{left:637.733333pt;}
.x39{left:645.093333pt;}
.x43{left:664.000000pt;}
.x29{left:665.120000pt;}
.x37{left:667.040000pt;}
.xf{left:672.000000pt;}
}




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