
    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_49394186b066433e8e0e57ff.woff')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_fa5948e7068c221abbf39435.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a2ade9eb77e5414be6f3987d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5394347bf03fb37516706e0a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_267cdf74b3f69e0352189eaa.woff')format("woff");}.ff6{font-family:ff6;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8c4de283fa0c4a04c46075e5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_5b3b91d91ca9ad2f4205ac1b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d267cd548744cdc20379be33.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9b9727f86da7d8125180bba2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_668868e9558d815d9831ab8d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_fc90984c7802ced7d438e4e0.woff')format("woff");}.ffd{font-family:ffd;line-height:1.061035;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_9ba992c8644e81d219bfbcb0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.854492;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_7cb20018c4b1eb8f4d043258.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_48bf66a587ea4e41b07d568d.woff')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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.260400px;}
.lsd{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.ls9{letter-spacing:0.106560px;}
.lsa{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.224400px;}
.lsf{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.828000px;}
.lsb{letter-spacing:1.080000px;}
.lse{letter-spacing:21.546720px;}
.ls8{letter-spacing:46.026720px;}
.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;}
}
.ws9{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.147200px;}
.ws4{word-spacing:-12.886800px;}
.ws0{word-spacing:-10.924560px;}
.ws3{word-spacing:-10.612800px;}
.ws1{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._48{margin-left:-11.208720px;}
._49{margin-left:-9.153360px;}
._2b{margin-left:-4.109760px;}
._d{margin-left:-3.084480px;}
._2{margin-left:-1.457280px;}
._0{width:1.068960px;}
._1{width:2.451360px;}
._f{width:3.466080px;}
._11{width:4.482000px;}
._5{width:6.215040px;}
._a{width:7.502640px;}
._9{width:8.545680px;}
._8{width:9.681120px;}
._14{width:10.936080px;}
._18{width:12.191040px;}
._19{width:13.744800px;}
._c{width:15.843120px;}
._b{width:17.151120px;}
._e{width:18.407760px;}
._13{width:20.077680px;}
._10{width:21.812400px;}
._6{width:23.186880px;}
._7{width:24.448560px;}
._38{width:25.630320px;}
._17{width:26.779200px;}
._25{width:27.914640px;}
._1f{width:28.960320px;}
._15{width:30.059280px;}
._16{width:31.447200px;}
._28{width:32.479680px;}
._12{width:33.644880px;}
._20{width:35.676720px;}
._35{width:36.812160px;}
._3{width:37.828080px;}
._4{width:38.911680px;}
._21{width:40.158720px;}
._22{width:41.360640px;}
._3d{width:43.296240px;}
._1a{width:44.341920px;}
._2f{width:45.357840px;}
._3a{width:47.449440px;}
._36{width:48.883680px;}
._40{width:50.198400px;}
._1d{width:51.214320px;}
._1e{width:52.234080px;}
._3c{width:53.424480px;}
._44{width:54.860640px;}
._24{width:55.995120px;}
._30{width:57.429360px;}
._32{width:58.803840px;}
._31{width:59.879520px;}
._45{width:61.612560px;}
._29{width:62.688240px;}
._2a{width:63.823680px;}
._41{width:64.846320px;}
._1c{width:66.097440px;}
._1b{width:68.006880px;}
._3f{width:69.022800px;}
._47{width:70.516800px;}
._33{width:71.831520px;}
._42{width:72.907200px;}
._43{width:74.341440px;}
._3b{width:76.516080px;}
._2e{width:77.963520px;}
._2d{width:79.510560px;}
._39{width:81.303360px;}
._2c{width:83.723760px;}
._23{width:86.802000px;}
._4a{width:88.660560px;}
._37{width:93.168000px;}
._26{width:100.157760px;}
._27{width:101.173680px;}
._3e{width:111.093840px;}
._4d{width:128.408880px;}
._4b{width:131.761200px;}
._46{width:134.579520px;}
._34{width:140.854320px;}
._4c{width:195.953040px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc1{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs8{font-size:23.760000px;}
.fs7{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.y69{bottom:-34.740000px;}
.y7{bottom:-22.680000px;}
.y6{bottom:-10.620000px;}
.y6c{bottom:-6.840000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.260000px;}
.y68{bottom:1.440000px;}
.y3d{bottom:3.240000px;}
.y3f{bottom:4.680000px;}
.y6b{bottom:7.200000px;}
.y66{bottom:16.380000px;}
.y3c{bottom:20.880000px;}
.y3b{bottom:38.340000px;}
.y65{bottom:43.380000px;}
.y3a{bottom:55.980000px;}
.y3{bottom:58.140000px;}
.y39{bottom:73.620000px;}
.y64{bottom:76.140000px;}
.y2{bottom:80.100000px;}
.y38{bottom:91.080000px;}
.y63{bottom:97.560000px;}
.y37{bottom:108.720000px;}
.y62{bottom:110.340000px;}
.y6a{bottom:113.580000px;}
.y36{bottom:126.360000px;}
.yd6{bottom:126.900000px;}
.ya6{bottom:129.060000px;}
.y9f{bottom:129.420000px;}
.y26{bottom:134.100000px;}
.y60{bottom:143.640000px;}
.y35{bottom:143.820000px;}
.yd5{bottom:144.000000px;}
.y9e{bottom:149.220000px;}
.y25{bottom:152.280000px;}
.y10d{bottom:157.860000px;}
.yd4{bottom:161.280000px;}
.y34{bottom:161.460000px;}
.y5f{bottom:163.440000px;}
.y50{bottom:165.960000px;}
.y9d{bottom:169.020000px;}
.y24{bottom:170.460000px;}
.y10c{bottom:175.140000px;}
.yd3{bottom:178.560000px;}
.y33{bottom:179.100000px;}
.y5e{bottom:183.240000px;}
.y4f{bottom:185.940000px;}
.ya9{bottom:188.460000px;}
.y23{bottom:188.640000px;}
.y9c{bottom:188.820000px;}
.y10b{bottom:192.420000px;}
.yd2{bottom:195.840000px;}
.y32{bottom:196.560000px;}
.y5d{bottom:203.220000px;}
.y22{bottom:204.150000px;}
.y4e{bottom:205.740000px;}
.y9b{bottom:208.800000px;}
.y10a{bottom:209.700000px;}
.yd1{bottom:213.150000px;}
.y31{bottom:214.230000px;}
.y21{bottom:218.190000px;}
.y5c{bottom:223.050000px;}
.y4d{bottom:225.570000px;}
.y109{bottom:226.830000px;}
.y9a{bottom:228.630000px;}
.yd0{bottom:230.430000px;}
.y30{bottom:231.870000px;}
.y20{bottom:232.230000px;}
.y5b{bottom:242.850000px;}
.y108{bottom:244.110000px;}
.y4c{bottom:245.370000px;}
.y1f{bottom:246.450000px;}
.ycf{bottom:247.530000px;}
.y99{bottom:248.430000px;}
.y2f{bottom:249.510000px;}
.y1e{bottom:260.490000px;}
.y107{bottom:261.390000px;}
.y5a{bottom:262.650000px;}
.yce{bottom:264.810000px;}
.y4b{bottom:265.170000px;}
.y2e{bottom:266.970000px;}
.y98{bottom:268.230000px;}
.y1d{bottom:274.170000px;}
.y106{bottom:278.670000px;}
.ycd{bottom:282.090000px;}
.y59{bottom:282.450000px;}
.y2d{bottom:284.610000px;}
.y4a{bottom:285.150000px;}
.y1c{bottom:288.030000px;}
.y105{bottom:295.950000px;}
.ycc{bottom:299.370000px;}
.y1b{bottom:301.890000px;}
.y2c{bottom:302.250000px;}
.y58{bottom:302.430000px;}
.y49{bottom:304.950000px;}
.y97{bottom:308.010000px;}
.y104{bottom:313.230000px;}
.y1a{bottom:315.930000px;}
.ycb{bottom:316.650000px;}
.y2b{bottom:319.710000px;}
.y57{bottom:322.230000px;}
.y48{bottom:324.750000px;}
.y96{bottom:327.810000px;}
.y19{bottom:329.970000px;}
.y103{bottom:330.330000px;}
.yca{bottom:333.930000px;}
.y2a{bottom:337.350000px;}
.y56{bottom:342.030000px;}
.y18{bottom:344.010000px;}
.y47{bottom:344.550000px;}
.y95{bottom:347.610000px;}
.yc9{bottom:351.030000px;}
.y29{bottom:354.990000px;}
.y17{bottom:358.590000px;}
.y55{bottom:361.830000px;}
.y46{bottom:364.350000px;}
.y102{bottom:364.890000px;}
.y94{bottom:367.410000px;}
.yc8{bottom:368.310000px;}
.y28{bottom:372.450000px;}
.y16{bottom:376.590000px;}
.y54{bottom:381.630000px;}
.y101{bottom:382.170000px;}
.y45{bottom:384.330000px;}
.yc7{bottom:385.590000px;}
.y93{bottom:387.210000px;}
.y27{bottom:393.330000px;}
.y15{bottom:393.870000px;}
.y100{bottom:399.450000px;}
.y53{bottom:401.610000px;}
.yc6{bottom:402.870000px;}
.y44{bottom:404.130000px;}
.ya3{bottom:406.830000px;}
.y92{bottom:407.190000px;}
.yff{bottom:416.730000px;}
.yc5{bottom:420.150000px;}
.y52{bottom:421.410000px;}
.y43{bottom:423.930000px;}
.y91{bottom:426.990000px;}
.yfe{bottom:433.830000px;}
.yc4{bottom:437.430000px;}
.y42{bottom:440.850000px;}
.y51{bottom:441.210000px;}
.y90{bottom:446.790000px;}
.yfd{bottom:451.155000px;}
.yc3{bottom:454.575000px;}
.y41{bottom:458.175000px;}
.y8f{bottom:466.635000px;}
.yfc{bottom:468.435000px;}
.yc2{bottom:471.855000px;}
.y40{bottom:472.575000px;}
.y3e{bottom:474.555000px;}
.y14{bottom:480.675000px;}
.yfb{bottom:485.715000px;}
.ya2{bottom:486.075000px;}
.y8e{bottom:486.435000px;}
.yc1{bottom:489.135000px;}
.yfa{bottom:502.995000px;}
.y8d{bottom:506.415000px;}
.yf9{bottom:520.095000px;}
.yc0{bottom:523.695000px;}
.y8c{bottom:526.215000px;}
.yf8{bottom:537.375000px;}
.ybf{bottom:540.795000px;}
.y8b{bottom:546.015000px;}
.yf7{bottom:554.655000px;}
.ybe{bottom:558.075000px;}
.ya1{bottom:565.455000px;}
.y8a{bottom:565.815000px;}
.yf6{bottom:571.935000px;}
.ybd{bottom:575.355000px;}
.y89{bottom:585.615000px;}
.yf5{bottom:589.215000px;}
.ybc{bottom:592.635000px;}
.y88{bottom:605.595000px;}
.yf4{bottom:606.495000px;}
.ybb{bottom:609.915000px;}
.yf3{bottom:623.595000px;}
.y87{bottom:625.395000px;}
.yba{bottom:627.195000px;}
.yf2{bottom:640.875000px;}
.yb9{bottom:643.935000px;}
.y86{bottom:645.195000px;}
.yf1{bottom:658.155000px;}
.yb8{bottom:661.575000px;}
.y85{bottom:664.995000px;}
.yf0{bottom:675.435000px;}
.yb7{bottom:678.855000px;}
.y84{bottom:684.825000px;}
.yef{bottom:692.745000px;}
.yb6{bottom:696.165000px;}
.y83{bottom:704.805000px;}
.yee{bottom:710.025000px;}
.yb5{bottom:713.445000px;}
.y82{bottom:724.605000px;}
.yed{bottom:727.125000px;}
.yb4{bottom:730.365000px;}
.y81{bottom:744.405000px;}
.yb3{bottom:747.825000px;}
.yec{bottom:761.685000px;}
.y80{bottom:764.205000px;}
.yb2{bottom:765.105000px;}
.yeb{bottom:778.965000px;}
.yb1{bottom:782.385000px;}
.y7f{bottom:784.005000px;}
.yea{bottom:796.245000px;}
.yb0{bottom:799.665000px;}
.y7e{bottom:803.985000px;}
.ye9{bottom:813.345000px;}
.yaf{bottom:816.585000px;}
.y7d{bottom:823.785000px;}
.ye8{bottom:830.625000px;}
.yae{bottom:834.045000px;}
.y7c{bottom:843.585000px;}
.ye7{bottom:847.905000px;}
.yad{bottom:851.325000px;}
.y7b{bottom:863.385000px;}
.ye6{bottom:865.185000px;}
.yac{bottom:868.605000px;}
.ye5{bottom:882.465000px;}
.y7a{bottom:883.185000px;}
.yab{bottom:885.525000px;}
.y13{bottom:893.445000px;}
.ye4{bottom:899.745000px;}
.yaa{bottom:902.805000px;}
.y79{bottom:903.165000px;}
.y12{bottom:915.585000px;}
.ye3{bottom:916.845000px;}
.y78{bottom:923.010000px;}
.y11{bottom:932.910000px;}
.ye2{bottom:934.170000px;}
.y77{bottom:942.810000px;}
.ye1{bottom:951.450000px;}
.y10{bottom:951.810000px;}
.y76{bottom:962.610000px;}
.ye0{bottom:968.730000px;}
.yf{bottom:971.250000px;}
.y75{bottom:982.410000px;}
.ydf{bottom:986.010000px;}
.ye{bottom:993.750000px;}
.y74{bottom:1002.390000px;}
.yde{bottom:1003.290000px;}
.yd{bottom:1017.330000px;}
.ydd{bottom:1020.390000px;}
.y73{bottom:1022.190000px;}
.y61{bottom:1025.250000px;}
.ydc{bottom:1037.670000px;}
.yc{bottom:1041.090000px;}
.ya8{bottom:1041.630000px;}
.y72{bottom:1041.990000px;}
.ydb{bottom:1054.950000px;}
.ya7{bottom:1061.430000px;}
.y71{bottom:1061.790000px;}
.yb{bottom:1064.850000px;}
.yda{bottom:1072.230000px;}
.ya0{bottom:1081.230000px;}
.y70{bottom:1081.590000px;}
.ya{bottom:1088.790000px;}
.yd9{bottom:1089.510000px;}
.y6f{bottom:1101.570000px;}
.yd8{bottom:1106.790000px;}
.y9{bottom:1112.550000px;}
.ya5{bottom:1121.010000px;}
.y6e{bottom:1121.370000px;}
.yd7{bottom:1123.890000px;}
.y8{bottom:1136.310000px;}
.y67{bottom:1140.090000px;}
.ya4{bottom:1140.810000px;}
.y6d{bottom:1141.170000px;}
.y4{bottom:1176.840000px;}
.y1{bottom:1191.240000px;}
.h12{height:5.653125px;}
.h13{height:5.805000px;}
.h14{height:5.920372px;}
.h11{height:6.120000px;}
.h4{height:10.980000px;}
.h1d{height:11.160000px;}
.h1e{height:18.540000px;}
.h1a{height:23.945625px;}
.h19{height:36.281250px;}
.h1f{height:40.655391px;}
.he{height:40.843828px;}
.h6{height:40.985156px;}
.h5{height:42.086250px;}
.h17{height:43.215117px;}
.h10{height:45.720703px;}
.h3{height:47.980898px;}
.h1c{height:48.616875px;}
.hd{height:49.583118px;}
.hf{height:50.218594px;}
.hc{height:50.597578px;}
.ha{height:58.651172px;}
.h15{height:60.226875px;}
.h16{height:61.423863px;}
.h20{height:62.211094px;}
.h9{height:66.757500px;}
.h1b{height:72.562500px;}
.h2{height:77.342344px;}
.h8{height:78.367500px;}
.h7{height:79.620469px;}
.h18{height:126.000000px;}
.hb{height:407.550000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:205.950000px;}
.w9{width:206.130000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.w5{width:515.955000px;}
.w7{width:516.495000px;}
.w8{width:625.785000px;}
.wa{width:719.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x10{left:10.800000px;}
.xa{left:20.700000px;}
.x3{left:41.220000px;}
.x7{left:53.999987px;}
.xd{left:63.360000px;}
.x4{left:102.990000px;}
.xf{left:104.616000px;}
.x1{left:108.035987px;}
.x13{left:135.035987px;}
.xb{left:151.950000px;}
.xe{left:157.905000px;}
.x9{left:267.195000px;}
.xc{left:312.915000px;}
.x2{left:345.855000px;}
.x5{left:464.504987px;}
.x6{left:472.424987px;}
.x14{left:486.644987px;}
.x11{left:500.144987px;}
.x12{left:527.144987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.231467pt;}
.lsd{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.ls9{letter-spacing:0.094720pt;}
.lsa{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.199467pt;}
.lsf{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.736000pt;}
.lsb{letter-spacing:0.960000pt;}
.lse{letter-spacing:19.152640pt;}
.ls8{letter-spacing:40.912640pt;}
.ws9{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.686400pt;}
.ws4{word-spacing:-11.454933pt;}
.ws0{word-spacing:-9.710720pt;}
.ws3{word-spacing:-9.433600pt;}
.ws1{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._48{margin-left:-9.963307pt;}
._49{margin-left:-8.136320pt;}
._2b{margin-left:-3.653120pt;}
._d{margin-left:-2.741760pt;}
._2{margin-left:-1.295360pt;}
._0{width:0.950187pt;}
._1{width:2.178987pt;}
._f{width:3.080960pt;}
._11{width:3.984000pt;}
._5{width:5.524480pt;}
._a{width:6.669013pt;}
._9{width:7.596160pt;}
._8{width:8.605440pt;}
._14{width:9.720960pt;}
._18{width:10.836480pt;}
._19{width:12.217600pt;}
._c{width:14.082773pt;}
._b{width:15.245440pt;}
._e{width:16.362453pt;}
._13{width:17.846827pt;}
._10{width:19.388800pt;}
._6{width:20.610560pt;}
._7{width:21.732053pt;}
._38{width:22.782507pt;}
._17{width:23.803733pt;}
._25{width:24.813013pt;}
._1f{width:25.742507pt;}
._15{width:26.719360pt;}
._16{width:27.953067pt;}
._28{width:28.870827pt;}
._12{width:29.906560pt;}
._20{width:31.712640pt;}
._35{width:32.721920pt;}
._3{width:33.624960pt;}
._4{width:34.588160pt;}
._21{width:35.696640pt;}
._22{width:36.765013pt;}
._3d{width:38.485547pt;}
._1a{width:39.415040pt;}
._2f{width:40.318080pt;}
._3a{width:42.177280pt;}
._36{width:43.452160pt;}
._40{width:44.620800pt;}
._1d{width:45.523840pt;}
._1e{width:46.430293pt;}
._3c{width:47.488427pt;}
._44{width:48.765013pt;}
._24{width:49.773440pt;}
._30{width:51.048320pt;}
._32{width:52.270080pt;}
._31{width:53.226240pt;}
._45{width:54.766720pt;}
._29{width:55.722880pt;}
._2a{width:56.732160pt;}
._41{width:57.641173pt;}
._1c{width:58.753280pt;}
._1b{width:60.450560pt;}
._3f{width:61.353600pt;}
._47{width:62.681600pt;}
._33{width:63.850240pt;}
._42{width:64.806400pt;}
._43{width:66.081280pt;}
._3b{width:68.014293pt;}
._2e{width:69.300907pt;}
._2d{width:70.676053pt;}
._39{width:72.269653pt;}
._2c{width:74.421120pt;}
._23{width:77.157333pt;}
._4a{width:78.809387pt;}
._37{width:82.816000pt;}
._26{width:89.029120pt;}
._27{width:89.932160pt;}
._3e{width:98.750080pt;}
._4d{width:114.141227pt;}
._4b{width:117.121067pt;}
._46{width:119.626240pt;}
._34{width:125.203840pt;}
._4c{width:174.180480pt;}
.fs6{font-size:5.120000pt;}
.fs8{font-size:21.120000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.y69{bottom:-30.880000pt;}
.y7{bottom:-20.160000pt;}
.y6{bottom:-9.440000pt;}
.y6c{bottom:-6.080000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.120000pt;}
.y68{bottom:1.280000pt;}
.y3d{bottom:2.880000pt;}
.y3f{bottom:4.160000pt;}
.y6b{bottom:6.400000pt;}
.y66{bottom:14.560000pt;}
.y3c{bottom:18.560000pt;}
.y3b{bottom:34.080000pt;}
.y65{bottom:38.560000pt;}
.y3a{bottom:49.760000pt;}
.y3{bottom:51.680000pt;}
.y39{bottom:65.440000pt;}
.y64{bottom:67.680000pt;}
.y2{bottom:71.200000pt;}
.y38{bottom:80.960000pt;}
.y63{bottom:86.720000pt;}
.y37{bottom:96.640000pt;}
.y62{bottom:98.080000pt;}
.y6a{bottom:100.960000pt;}
.y36{bottom:112.320000pt;}
.yd6{bottom:112.800000pt;}
.ya6{bottom:114.720000pt;}
.y9f{bottom:115.040000pt;}
.y26{bottom:119.200000pt;}
.y60{bottom:127.680000pt;}
.y35{bottom:127.840000pt;}
.yd5{bottom:128.000000pt;}
.y9e{bottom:132.640000pt;}
.y25{bottom:135.360000pt;}
.y10d{bottom:140.320000pt;}
.yd4{bottom:143.360000pt;}
.y34{bottom:143.520000pt;}
.y5f{bottom:145.280000pt;}
.y50{bottom:147.520000pt;}
.y9d{bottom:150.240000pt;}
.y24{bottom:151.520000pt;}
.y10c{bottom:155.680000pt;}
.yd3{bottom:158.720000pt;}
.y33{bottom:159.200000pt;}
.y5e{bottom:162.880000pt;}
.y4f{bottom:165.280000pt;}
.ya9{bottom:167.520000pt;}
.y23{bottom:167.680000pt;}
.y9c{bottom:167.840000pt;}
.y10b{bottom:171.040000pt;}
.yd2{bottom:174.080000pt;}
.y32{bottom:174.720000pt;}
.y5d{bottom:180.640000pt;}
.y22{bottom:181.466667pt;}
.y4e{bottom:182.880000pt;}
.y9b{bottom:185.600000pt;}
.y10a{bottom:186.400000pt;}
.yd1{bottom:189.466667pt;}
.y31{bottom:190.426667pt;}
.y21{bottom:193.946667pt;}
.y5c{bottom:198.266667pt;}
.y4d{bottom:200.506667pt;}
.y109{bottom:201.626667pt;}
.y9a{bottom:203.226667pt;}
.yd0{bottom:204.826667pt;}
.y30{bottom:206.106667pt;}
.y20{bottom:206.426667pt;}
.y5b{bottom:215.866667pt;}
.y108{bottom:216.986667pt;}
.y4c{bottom:218.106667pt;}
.y1f{bottom:219.066667pt;}
.ycf{bottom:220.026667pt;}
.y99{bottom:220.826667pt;}
.y2f{bottom:221.786667pt;}
.y1e{bottom:231.546667pt;}
.y107{bottom:232.346667pt;}
.y5a{bottom:233.466667pt;}
.yce{bottom:235.386667pt;}
.y4b{bottom:235.706667pt;}
.y2e{bottom:237.306667pt;}
.y98{bottom:238.426667pt;}
.y1d{bottom:243.706667pt;}
.y106{bottom:247.706667pt;}
.ycd{bottom:250.746667pt;}
.y59{bottom:251.066667pt;}
.y2d{bottom:252.986667pt;}
.y4a{bottom:253.466667pt;}
.y1c{bottom:256.026667pt;}
.y105{bottom:263.066667pt;}
.ycc{bottom:266.106667pt;}
.y1b{bottom:268.346667pt;}
.y2c{bottom:268.666667pt;}
.y58{bottom:268.826667pt;}
.y49{bottom:271.066667pt;}
.y97{bottom:273.786667pt;}
.y104{bottom:278.426667pt;}
.y1a{bottom:280.826667pt;}
.ycb{bottom:281.466667pt;}
.y2b{bottom:284.186667pt;}
.y57{bottom:286.426667pt;}
.y48{bottom:288.666667pt;}
.y96{bottom:291.386667pt;}
.y19{bottom:293.306667pt;}
.y103{bottom:293.626667pt;}
.yca{bottom:296.826667pt;}
.y2a{bottom:299.866667pt;}
.y56{bottom:304.026667pt;}
.y18{bottom:305.786667pt;}
.y47{bottom:306.266667pt;}
.y95{bottom:308.986667pt;}
.yc9{bottom:312.026667pt;}
.y29{bottom:315.546667pt;}
.y17{bottom:318.746667pt;}
.y55{bottom:321.626667pt;}
.y46{bottom:323.866667pt;}
.y102{bottom:324.346667pt;}
.y94{bottom:326.586667pt;}
.yc8{bottom:327.386667pt;}
.y28{bottom:331.066667pt;}
.y16{bottom:334.746667pt;}
.y54{bottom:339.226667pt;}
.y101{bottom:339.706667pt;}
.y45{bottom:341.626667pt;}
.yc7{bottom:342.746667pt;}
.y93{bottom:344.186667pt;}
.y27{bottom:349.626667pt;}
.y15{bottom:350.106667pt;}
.y100{bottom:355.066667pt;}
.y53{bottom:356.986667pt;}
.yc6{bottom:358.106667pt;}
.y44{bottom:359.226667pt;}
.ya3{bottom:361.626667pt;}
.y92{bottom:361.946667pt;}
.yff{bottom:370.426667pt;}
.yc5{bottom:373.466667pt;}
.y52{bottom:374.586667pt;}
.y43{bottom:376.826667pt;}
.y91{bottom:379.546667pt;}
.yfe{bottom:385.626667pt;}
.yc4{bottom:388.826667pt;}
.y42{bottom:391.866667pt;}
.y51{bottom:392.186667pt;}
.y90{bottom:397.146667pt;}
.yfd{bottom:401.026667pt;}
.yc3{bottom:404.066667pt;}
.y41{bottom:407.266667pt;}
.y8f{bottom:414.786667pt;}
.yfc{bottom:416.386667pt;}
.yc2{bottom:419.426667pt;}
.y40{bottom:420.066667pt;}
.y3e{bottom:421.826667pt;}
.y14{bottom:427.266667pt;}
.yfb{bottom:431.746667pt;}
.ya2{bottom:432.066667pt;}
.y8e{bottom:432.386667pt;}
.yc1{bottom:434.786667pt;}
.yfa{bottom:447.106667pt;}
.y8d{bottom:450.146667pt;}
.yf9{bottom:462.306667pt;}
.yc0{bottom:465.506667pt;}
.y8c{bottom:467.746667pt;}
.yf8{bottom:477.666667pt;}
.ybf{bottom:480.706667pt;}
.y8b{bottom:485.346667pt;}
.yf7{bottom:493.026667pt;}
.ybe{bottom:496.066667pt;}
.ya1{bottom:502.626667pt;}
.y8a{bottom:502.946667pt;}
.yf6{bottom:508.386667pt;}
.ybd{bottom:511.426667pt;}
.y89{bottom:520.546667pt;}
.yf5{bottom:523.746667pt;}
.ybc{bottom:526.786667pt;}
.y88{bottom:538.306667pt;}
.yf4{bottom:539.106667pt;}
.ybb{bottom:542.146667pt;}
.yf3{bottom:554.306667pt;}
.y87{bottom:555.906667pt;}
.yba{bottom:557.506667pt;}
.yf2{bottom:569.666667pt;}
.yb9{bottom:572.386667pt;}
.y86{bottom:573.506667pt;}
.yf1{bottom:585.026667pt;}
.yb8{bottom:588.066667pt;}
.y85{bottom:591.106667pt;}
.yf0{bottom:600.386667pt;}
.yb7{bottom:603.426667pt;}
.y84{bottom:608.733333pt;}
.yef{bottom:615.773333pt;}
.yb6{bottom:618.813333pt;}
.y83{bottom:626.493333pt;}
.yee{bottom:631.133333pt;}
.yb5{bottom:634.173333pt;}
.y82{bottom:644.093333pt;}
.yed{bottom:646.333333pt;}
.yb4{bottom:649.213333pt;}
.y81{bottom:661.693333pt;}
.yb3{bottom:664.733333pt;}
.yec{bottom:677.053333pt;}
.y80{bottom:679.293333pt;}
.yb2{bottom:680.093333pt;}
.yeb{bottom:692.413333pt;}
.yb1{bottom:695.453333pt;}
.y7f{bottom:696.893333pt;}
.yea{bottom:707.773333pt;}
.yb0{bottom:710.813333pt;}
.y7e{bottom:714.653333pt;}
.ye9{bottom:722.973333pt;}
.yaf{bottom:725.853333pt;}
.y7d{bottom:732.253333pt;}
.ye8{bottom:738.333333pt;}
.yae{bottom:741.373333pt;}
.y7c{bottom:749.853333pt;}
.ye7{bottom:753.693333pt;}
.yad{bottom:756.733333pt;}
.y7b{bottom:767.453333pt;}
.ye6{bottom:769.053333pt;}
.yac{bottom:772.093333pt;}
.ye5{bottom:784.413333pt;}
.y7a{bottom:785.053333pt;}
.yab{bottom:787.133333pt;}
.y13{bottom:794.173333pt;}
.ye4{bottom:799.773333pt;}
.yaa{bottom:802.493333pt;}
.y79{bottom:802.813333pt;}
.y12{bottom:813.853333pt;}
.ye3{bottom:814.973333pt;}
.y78{bottom:820.453333pt;}
.y11{bottom:829.253333pt;}
.ye2{bottom:830.373333pt;}
.y77{bottom:838.053333pt;}
.ye1{bottom:845.733333pt;}
.y10{bottom:846.053333pt;}
.y76{bottom:855.653333pt;}
.ye0{bottom:861.093333pt;}
.yf{bottom:863.333333pt;}
.y75{bottom:873.253333pt;}
.ydf{bottom:876.453333pt;}
.ye{bottom:883.333333pt;}
.y74{bottom:891.013333pt;}
.yde{bottom:891.813333pt;}
.yd{bottom:904.293333pt;}
.ydd{bottom:907.013333pt;}
.y73{bottom:908.613333pt;}
.y61{bottom:911.333333pt;}
.ydc{bottom:922.373333pt;}
.yc{bottom:925.413333pt;}
.ya8{bottom:925.893333pt;}
.y72{bottom:926.213333pt;}
.ydb{bottom:937.733333pt;}
.ya7{bottom:943.493333pt;}
.y71{bottom:943.813333pt;}
.yb{bottom:946.533333pt;}
.yda{bottom:953.093333pt;}
.ya0{bottom:961.093333pt;}
.y70{bottom:961.413333pt;}
.ya{bottom:967.813333pt;}
.yd9{bottom:968.453333pt;}
.y6f{bottom:979.173333pt;}
.yd8{bottom:983.813333pt;}
.y9{bottom:988.933333pt;}
.ya5{bottom:996.453333pt;}
.y6e{bottom:996.773333pt;}
.yd7{bottom:999.013333pt;}
.y8{bottom:1010.053333pt;}
.y67{bottom:1013.413333pt;}
.ya4{bottom:1014.053333pt;}
.y6d{bottom:1014.373333pt;}
.y4{bottom:1046.080000pt;}
.y1{bottom:1058.880000pt;}
.h12{height:5.025000pt;}
.h13{height:5.160000pt;}
.h14{height:5.262553pt;}
.h11{height:5.440000pt;}
.h4{height:9.760000pt;}
.h1d{height:9.920000pt;}
.h1e{height:16.480000pt;}
.h1a{height:21.285000pt;}
.h19{height:32.250000pt;}
.h1f{height:36.138125pt;}
.he{height:36.305625pt;}
.h6{height:36.431250pt;}
.h5{height:37.410000pt;}
.h17{height:38.413438pt;}
.h10{height:40.640625pt;}
.h3{height:42.649687pt;}
.h1c{height:43.215000pt;}
.hd{height:44.073883pt;}
.hf{height:44.638750pt;}
.hc{height:44.975625pt;}
.ha{height:52.134375pt;}
.h15{height:53.535000pt;}
.h16{height:54.598989pt;}
.h20{height:55.298750pt;}
.h9{height:59.340000pt;}
.h1b{height:64.500000pt;}
.h2{height:68.748750pt;}
.h8{height:69.660000pt;}
.h7{height:70.773750pt;}
.h18{height:112.000000pt;}
.hb{height:362.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:183.066667pt;}
.w9{width:183.226667pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.w5{width:458.626667pt;}
.w7{width:459.106667pt;}
.w8{width:556.253333pt;}
.wa{width:639.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x10{left:9.600000pt;}
.xa{left:18.400000pt;}
.x3{left:36.640000pt;}
.x7{left:47.999988pt;}
.xd{left:56.320000pt;}
.x4{left:91.546667pt;}
.xf{left:92.992000pt;}
.x1{left:96.031988pt;}
.x13{left:120.031988pt;}
.xb{left:135.066667pt;}
.xe{left:140.360000pt;}
.x9{left:237.506667pt;}
.xc{left:278.146667pt;}
.x2{left:307.426667pt;}
.x5{left:412.893322pt;}
.x6{left:419.933322pt;}
.x14{left:432.573322pt;}
.x11{left:444.573322pt;}
.x12{left:468.573322pt;}
}




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