
    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_1a74025be8e8dca9e38fe09c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_ad10d6db2ee0d29ea246bc4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_40911b959272e8db05871e6c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a102464f383b0e7094f258e1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_14ae8f4a4c9e4161ed42cc4d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2d38848504a308cd04143305.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_89a5ac91198a4d8a4b259d91.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_8d684117c238c87a72a3a23d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_5b5811d7f047e614be353f26.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_0ed46da7f3f0e5e643f9c7c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_e39f4c0073bb17476472c15b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.052734;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_c02be9758c5118a43c3e11a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.095703;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_ff19b69e053dfcdbbfbd0572.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.095703;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_6193fc93719873dbca485474.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.fff{font-family:fff;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v6{vertical-align:-14.400000px;}
.v7{vertical-align:-12.240000px;}
.v4{vertical-align:-5.760000px;}
.v5{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.440000px;}
.v9{vertical-align:5.760000px;}
.v8{vertical-align:7.920000px;}
.vc{vertical-align:13.680000px;}
.va{vertical-align:15.840000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.260000px;}
.ls26{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.349800px;}
.ls24{letter-spacing:-0.339600px;}
.ls17{letter-spacing:-0.145200px;}
.ls2b{letter-spacing:-0.053280px;}
.ls16{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.015120px;}
.ls1b{letter-spacing:0.020160px;}
.ls0{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.233280px;}
.ls6{letter-spacing:0.259800px;}
.ls30{letter-spacing:0.259920px;}
.ls2e{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.305400px;}
.ls12{letter-spacing:0.306000px;}
.ls1{letter-spacing:0.311040px;}
.ls9{letter-spacing:0.314400px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.364800px;}
.ls15{letter-spacing:0.480000px;}
.ls13{letter-spacing:2.714400px;}
.ls10{letter-spacing:4.255200px;}
.ls1c{letter-spacing:4.669920px;}
.ls2a{letter-spacing:6.109920px;}
.ls2c{letter-spacing:9.540000px;}
.ls1f{letter-spacing:9.709920px;}
.lse{letter-spacing:10.260000px;}
.ls20{letter-spacing:14.029920px;}
.ls1d{letter-spacing:14.749920px;}
.ls29{letter-spacing:15.469920px;}
.ls2f{letter-spacing:16.506720px;}
.ls19{letter-spacing:21.060000px;}
.ls23{letter-spacing:24.829920px;}
.ls22{letter-spacing:26.269920px;}
.ls21{letter-spacing:29.149920px;}
.ls2d{letter-spacing:46.026720px;}
.ls1e{letter-spacing:80.269920px;}
.lsf{letter-spacing:91.694160px;}
.ls11{letter-spacing:105.230160px;}
.ls28{letter-spacing:178.165920px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.wsf{word-spacing:-41.760000px;}
.wse{word-spacing:-41.614800px;}
.ws2{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.808160px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws1a{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.328000px;}
.ws17{word-spacing:-14.166000px;}
.ws15{word-spacing:-11.700000px;}
.ws19{word-spacing:-11.360160px;}
.ws18{word-spacing:-11.355120px;}
.ws12{word-spacing:-11.340000px;}
.ws13{word-spacing:-11.000400px;}
.ws14{word-spacing:-10.990200px;}
.ws1{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.711360px;}
.ws16{word-spacing:-7.560000px;}
.ws7{word-spacing:0.000000px;}
.ws10{word-spacing:210.684960px;}
.ws11{word-spacing:289.200960px;}
._40{margin-left:-8.788320px;}
._3c{margin-left:-7.207200px;}
._2f{margin-left:-5.857920px;}
._1e{margin-left:-3.873600px;}
._9{margin-left:-2.589600px;}
._0{margin-left:-1.224000px;}
._4{width:1.044960px;}
._1{width:2.184000px;}
._6{width:3.202800px;}
._a{width:4.544400px;}
._7{width:5.556480px;}
._b{width:7.111440px;}
._c{width:8.246880px;}
._3{width:9.288720px;}
._19{width:10.436880px;}
._8{width:11.562480px;}
._5{width:12.640320px;}
._21{width:13.867200px;}
._16{width:16.763520px;}
._12{width:18.107280px;}
._11{width:19.302480px;}
._15{width:20.362560px;}
._20{width:21.991680px;}
._14{width:23.545440px;}
._13{width:24.621120px;}
._1b{width:25.700160px;}
._1d{width:26.770800px;}
._24{width:27.834240px;}
._17{width:29.593920px;}
._22{width:30.656880px;}
._18{width:31.823040px;}
._1f{width:32.837280px;}
._25{width:34.332960px;}
._2d{width:35.914080px;}
._2c{width:37.110960px;}
._2a{width:38.454480px;}
._29{width:39.859920px;}
._28{width:41.114880px;}
._2b{width:43.445280px;}
._1c{width:44.461440px;}
._2e{width:45.754800px;}
._36{width:46.828800px;}
._27{width:48.644640px;}
._3a{width:49.919520px;}
._30{width:51.364560px;}
._1a{width:52.559760px;}
._39{width:54.141840px;}
._34{width:56.234160px;}
._3b{width:58.096080px;}
._38{width:59.334000px;}
._e{width:60.627360px;}
._41{width:61.761120px;}
._33{width:62.835120px;}
._42{width:64.525920px;}
._35{width:66.751920px;}
._37{width:68.217600px;}
._26{width:71.054640px;}
._3f{width:73.525440px;}
._31{width:81.304320px;}
._32{width:82.378320px;}
._d{width:103.683600px;}
._23{width:109.301040px;}
._f{width:123.793680px;}
._10{width:167.925600px;}
._3d{width:201.152160px;}
._2{width:303.508320px;}
._3e{width:789.520080px;}
.fc3{color:transparent;}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.900000px;}
.yb2{bottom:4.320000px;}
.yad{bottom:4.500000px;}
.y23{bottom:5.760000px;}
.y13{bottom:7.560000px;}
.yab{bottom:11.880000px;}
.y6{bottom:13.860000px;}
.yaf{bottom:19.260000px;}
.yfc{bottom:19.290000px;}
.ye7{bottom:19.305000px;}
.yac{bottom:19.440000px;}
.y22{bottom:25.560000px;}
.yf9{bottom:34.020000px;}
.ye4{bottom:34.200000px;}
.ye6{bottom:34.245000px;}
.y5{bottom:45.180000px;}
.y21{bottom:45.540000px;}
.yed{bottom:49.140000px;}
.y41{bottom:55.800000px;}
.y9{bottom:59.940000px;}
.y20{bottom:65.340000px;}
.y4{bottom:76.320000px;}
.y12e{bottom:83.520000px;}
.y1f{bottom:85.140000px;}
.y78{bottom:87.120000px;}
.ye0{bottom:94.680000px;}
.y37{bottom:97.920000px;}
.y3e{bottom:98.100000px;}
.y12d{bottom:103.320000px;}
.y1e{bottom:104.940000px;}
.ya8{bottom:106.380000px;}
.y77{bottom:107.100000px;}
.yfd{bottom:107.460000px;}
.y3{bottom:107.670000px;}
.ydf{bottom:114.480000px;}
.y36{bottom:115.200000px;}
.y3d{bottom:117.900000px;}
.y12c{bottom:123.120000px;}
.y1d{bottom:124.740000px;}
.ya7{bottom:126.180000px;}
.y76{bottom:126.900000px;}
.y35{bottom:132.300000px;}
.yde{bottom:134.460000px;}
.y3c{bottom:137.700000px;}
.yfb{bottom:138.060000px;}
.y2{bottom:139.530000px;}
.y12b{bottom:142.920000px;}
.y1c{bottom:144.750000px;}
.ya6{bottom:145.980000px;}
.y75{bottom:146.700000px;}
.y34{bottom:149.580000px;}
.ydd{bottom:154.290000px;}
.y3b{bottom:157.530000px;}
.y12a{bottom:162.750000px;}
.y1b{bottom:164.550000px;}
.ya5{bottom:165.810000px;}
.y74{bottom:166.530000px;}
.y33{bottom:166.890000px;}
.yfa{bottom:168.510000px;}
.ydc{bottom:174.090000px;}
.y6d{bottom:177.330000px;}
.y3a{bottom:177.510000px;}
.y129{bottom:182.730000px;}
.y32{bottom:184.170000px;}
.y1a{bottom:184.350000px;}
.ya4{bottom:185.610000px;}
.y73{bottom:186.330000px;}
.y39{bottom:197.310000px;}
.y128{bottom:202.530000px;}
.ydb{bottom:202.890000px;}
.y19{bottom:204.150000px;}
.ya3{bottom:205.590000px;}
.y31{bottom:205.950000px;}
.y72{bottom:206.310000px;}
.yf8{bottom:214.050000px;}
.y38{bottom:217.110000px;}
.y127{bottom:222.330000px;}
.yda{bottom:222.690000px;}
.y18{bottom:223.950000px;}
.y71{bottom:226.110000px;}
.ya2{bottom:234.390000px;}
.y30{bottom:236.910000px;}
.y126{bottom:242.130000px;}
.yd9{bottom:242.670000px;}
.y17{bottom:243.930000px;}
.y70{bottom:245.910000px;}
.ya1{bottom:254.190000px;}
.y2f{bottom:256.710000px;}
.yf7{bottom:259.410000px;}
.y125{bottom:261.930000px;}
.yd8{bottom:262.470000px;}
.y16{bottom:263.730000px;}
.y6f{bottom:265.710000px;}
.ya0{bottom:273.990000px;}
.y6c{bottom:276.510000px;}
.y2e{bottom:276.690000px;}
.y124{bottom:281.910000px;}
.yd7{bottom:282.270000px;}
.y15{bottom:283.530000px;}
.y6e{bottom:285.510000px;}
.y9f{bottom:293.790000px;}
.y2d{bottom:296.490000px;}
.y123{bottom:301.710000px;}
.yd6{bottom:302.070000px;}
.yf6{bottom:304.770000px;}
.y6b{bottom:305.490000px;}
.y9e{bottom:313.770000px;}
.y2c{bottom:316.290000px;}
.y122{bottom:321.510000px;}
.yd5{bottom:321.870000px;}
.y6a{bottom:325.290000px;}
.y9d{bottom:333.570000px;}
.yf5{bottom:335.190000px;}
.y2b{bottom:336.090000px;}
.y121{bottom:341.310000px;}
.yd4{bottom:341.850000px;}
.y69{bottom:345.090000px;}
.y9c{bottom:353.370000px;}
.y2a{bottom:355.890000px;}
.y120{bottom:361.110000px;}
.yd3{bottom:361.650000px;}
.y68{bottom:364.890000px;}
.y9b{bottom:373.170000px;}
.y14e{bottom:375.690000px;}
.y29{bottom:375.870000px;}
.yf4{bottom:380.550000px;}
.y11f{bottom:381.090000px;}
.yd2{bottom:381.450000px;}
.y67{bottom:384.690000px;}
.y9a{bottom:392.970000px;}
.y28{bottom:395.670000px;}
.y11e{bottom:400.935000px;}
.yd1{bottom:401.295000px;}
.y66{bottom:404.715000px;}
.y99{bottom:412.995000px;}
.y27{bottom:415.515000px;}
.y11d{bottom:420.735000px;}
.yd0{bottom:421.095000px;}
.y65{bottom:424.515000px;}
.yf3{bottom:425.955000px;}
.y98{bottom:432.795000px;}
.y26{bottom:435.315000px;}
.y11c{bottom:440.535000px;}
.ycf{bottom:441.075000px;}
.y64{bottom:444.315000px;}
.y97{bottom:452.595000px;}
.y25{bottom:455.115000px;}
.y11b{bottom:460.335000px;}
.yce{bottom:460.875000px;}
.y63{bottom:464.115000px;}
.yf2{bottom:471.495000px;}
.y96{bottom:472.395000px;}
.y14d{bottom:474.915000px;}
.y24{bottom:475.095000px;}
.y11a{bottom:480.315000px;}
.ycd{bottom:480.675000px;}
.y62{bottom:483.915000px;}
.y95{bottom:492.195000px;}
.y14c{bottom:494.895000px;}
.y119{bottom:500.115000px;}
.ycc{bottom:500.475000px;}
.yf1{bottom:501.915000px;}
.y61{bottom:503.895000px;}
.y14{bottom:509.655000px;}
.y94{bottom:512.175000px;}
.y14b{bottom:514.695000px;}
.y118{bottom:519.915000px;}
.ycb{bottom:520.275000px;}
.y60{bottom:523.695000px;}
.y93{bottom:531.975000px;}
.yf0{bottom:532.335000px;}
.y14a{bottom:534.495000px;}
.y117{bottom:539.715000px;}
.yca{bottom:540.255000px;}
.y5f{bottom:543.495000px;}
.y92{bottom:551.775000px;}
.y149{bottom:554.295000px;}
.y116{bottom:559.515000px;}
.yc9{bottom:560.055000px;}
.yef{bottom:562.935000px;}
.y5e{bottom:563.295000px;}
.y91{bottom:571.575000px;}
.y148{bottom:574.095000px;}
.y115{bottom:579.495000px;}
.yc8{bottom:579.855000px;}
.y5d{bottom:583.095000px;}
.y90{bottom:591.375000px;}
.y147{bottom:594.075000px;}
.yc7{bottom:594.615000px;}
.y114{bottom:599.295000px;}
.y5c{bottom:603.075000px;}
.yee{bottom:608.295000px;}
.y8f{bottom:611.355000px;}
.y146{bottom:613.875000px;}
.y113{bottom:619.095000px;}
.y5b{bottom:622.875000px;}
.yc6{bottom:625.215000px;}
.y8e{bottom:631.155000px;}
.y145{bottom:633.675000px;}
.y112{bottom:638.895000px;}
.y5a{bottom:642.675000px;}
.y8d{bottom:650.985000px;}
.y144{bottom:653.505000px;}
.yec{bottom:653.685000px;}
.yc5{bottom:655.665000px;}
.y111{bottom:658.725000px;}
.y59{bottom:662.505000px;}
.y143{bottom:673.305000px;}
.y110{bottom:678.705000px;}
.y8c{bottom:679.785000px;}
.y58{bottom:682.305000px;}
.yc4{bottom:686.265000px;}
.y142{bottom:693.285000px;}
.y10f{bottom:698.505000px;}
.y8b{bottom:699.585000px;}
.yc3{bottom:701.745000px;}
.y57{bottom:702.285000px;}
.y141{bottom:713.085000px;}
.yeb{bottom:713.985000px;}
.yc2{bottom:717.405000px;}
.y10e{bottom:718.305000px;}
.y8a{bottom:719.565000px;}
.y56{bottom:722.085000px;}
.y140{bottom:732.885000px;}
.y10d{bottom:738.105000px;}
.y89{bottom:739.365000px;}
.y55{bottom:741.885000px;}
.yc1{bottom:752.505000px;}
.y13f{bottom:752.685000px;}
.y10c{bottom:757.905000px;}
.y88{bottom:759.165000px;}
.yea{bottom:759.345000px;}
.y54{bottom:761.685000px;}
.yc0{bottom:769.605000px;}
.y13e{bottom:772.485000px;}
.y10b{bottom:777.885000px;}
.y87{bottom:778.965000px;}
.y53{bottom:781.485000px;}
.ybf{bottom:789.405000px;}
.y13d{bottom:792.465000px;}
.y10a{bottom:797.685000px;}
.y86{bottom:798.765000px;}
.y52{bottom:801.465000px;}
.ye9{bottom:804.705000px;}
.y12{bottom:807.945000px;}
.ybe{bottom:809.205000px;}
.y13c{bottom:812.265000px;}
.y109{bottom:817.485000px;}
.y85{bottom:818.745000px;}
.y51{bottom:821.265000px;}
.ybd{bottom:829.185000px;}
.y13b{bottom:832.065000px;}
.y108{bottom:837.285000px;}
.y84{bottom:838.545000px;}
.y11{bottom:840.705000px;}
.y50{bottom:841.065000px;}
.ybc{bottom:848.985000px;}
.ye8{bottom:850.065000px;}
.y13a{bottom:851.865000px;}
.y107{bottom:857.085000px;}
.y83{bottom:858.345000px;}
.y4f{bottom:860.865000px;}
.y10{bottom:865.725000px;}
.ybb{bottom:868.785000px;}
.y139{bottom:871.665000px;}
.y106{bottom:877.065000px;}
.y82{bottom:878.145000px;}
.y4e{bottom:880.665000px;}
.yf{bottom:885.525000px;}
.yba{bottom:888.585000px;}
.y138{bottom:891.645000px;}
.y105{bottom:896.865000px;}
.y81{bottom:897.990000px;}
.ye{bottom:900.690000px;}
.yb9{bottom:908.430000px;}
.y137{bottom:911.490000px;}
.y104{bottom:916.710000px;}
.y80{bottom:917.970000px;}
.y4d{bottom:920.490000px;}
.yd{bottom:921.930000px;}
.ye5{bottom:926.070000px;}
.yb8{bottom:928.410000px;}
.y136{bottom:931.290000px;}
.y103{bottom:936.510000px;}
.y7f{bottom:937.770000px;}
.y4c{bottom:940.290000px;}
.yc{bottom:945.510000px;}
.yb7{bottom:948.210000px;}
.y135{bottom:951.090000px;}
.y102{bottom:956.310000px;}
.ye3{bottom:956.490000px;}
.y7e{bottom:957.570000px;}
.y4b{bottom:960.090000px;}
.yb6{bottom:968.010000px;}
.y134{bottom:970.890000px;}
.y101{bottom:971.250000px;}
.yb{bottom:977.190000px;}
.y7d{bottom:977.370000px;}
.y4a{bottom:979.890000px;}
.yb5{bottom:982.770000px;}
.y133{bottom:990.870000px;}
.y7a{bottom:995.910000px;}
.y7c{bottom:996.090000px;}
.yb4{bottom:998.430000px;}
.y49{bottom:999.870000px;}
.y100{bottom:1001.670000px;}
.y7b{bottom:1004.910000px;}
.y79{bottom:1005.090000px;}
.ye2{bottom:1006.530000px;}
.ya{bottom:1008.870000px;}
.y132{bottom:1010.670000px;}
.yb3{bottom:1014.090000px;}
.y48{bottom:1019.670000px;}
.ye1{bottom:1022.370000px;}
.yb1{bottom:1029.750000px;}
.y131{bottom:1030.470000px;}
.y8{bottom:1034.430000px;}
.y47{bottom:1039.470000px;}
.yb0{bottom:1045.230000px;}
.y1{bottom:1049.190000px;}
.y130{bottom:1050.270000px;}
.y46{bottom:1059.270000px;}
.yff{bottom:1061.970000px;}
.y12f{bottom:1070.070000px;}
.yae{bottom:1075.830000px;}
.y45{bottom:1079.070000px;}
.y44{bottom:1099.050000px;}
.yaa{bottom:1106.250000px;}
.yfe{bottom:1107.330000px;}
.y43{bottom:1118.850000px;}
.y42{bottom:1138.650000px;}
.ya9{bottom:1141.350000px;}
.y40{bottom:1168.380000px;}
.y3f{bottom:1191.420000px;}
.h1d{height:14.760000px;}
.h1e{height:14.940000px;}
.hb{height:26.100000px;}
.h1b{height:29.700000px;}
.h20{height:29.736000px;}
.h19{height:29.880000px;}
.h1a{height:32.004492px;}
.h18{height:34.036523px;}
.ha{height:34.855313px;}
.h14{height:35.194219px;}
.h1c{height:40.664531px;}
.he{height:42.164648px;}
.h1f{height:43.246406px;}
.h24{height:44.460000px;}
.h21{height:44.640000px;}
.h22{height:44.676000px;}
.h7{height:47.933437px;}
.hf{height:48.496641px;}
.h4{height:48.774375px;}
.h13{height:50.364141px;}
.h11{height:51.706406px;}
.h17{height:52.581797px;}
.h3{height:53.015625px;}
.h9{height:53.224453px;}
.h6{height:53.573906px;}
.h10{height:53.755312px;}
.hc{height:55.735312px;}
.h23{height:59.580000px;}
.h25{height:60.855469px;}
.h5{height:62.028281px;}
.h12{height:64.546875px;}
.h16{height:66.533906px;}
.h15{height:67.253906px;}
.h8{height:67.565039px;}
.h2{height:158.430000px;}
.hd{height:297.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:42.660000px;}
.wc{width:50.940000px;}
.w13{width:52.020000px;}
.w18{width:52.056000px;}
.w10{width:54.720000px;}
.w1b{width:55.980000px;}
.w17{width:56.196000px;}
.w11{width:57.996000px;}
.w16{width:59.400000px;}
.w1a{width:59.580000px;}
.wa{width:60.120000px;}
.wd{width:61.200000px;}
.wb{width:61.416000px;}
.wf{width:61.920000px;}
.w8{width:62.136000px;}
.w14{width:63.000000px;}
.w19{width:63.036000px;}
.w15{width:63.216000px;}
.w9{width:64.620000px;}
.we{width:81.936000px;}
.w3{width:146.736000px;}
.w7{width:153.390000px;}
.w6{width:626.730000px;}
.w2{width:637.890000px;}
.w5{width:780.120000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x23{left:9.180000px;}
.x1b{left:10.440000px;}
.x25{left:13.140000px;}
.x18{left:15.840000px;}
.x1d{left:17.100000px;}
.x19{left:18.900000px;}
.x24{left:19.980000px;}
.x1c{left:21.060000px;}
.x26{left:23.940000px;}
.x1a{left:34.740000px;}
.x1{left:54.180000px;}
.x5{left:56.520000px;}
.x8{left:64.619987px;}
.x2a{left:75.239987px;}
.x29{left:102.275987px;}
.x1e{left:107.496000px;}
.xa{left:117.576000px;}
.xf{left:137.376000px;}
.x4{left:138.630000px;}
.x1f{left:171.390000px;}
.x9{left:175.709987px;}
.xb{left:182.910000px;}
.x10{left:200.010000px;}
.x20{left:235.110000px;}
.xc{left:243.750000px;}
.x11{left:255.450000px;}
.x21{left:298.875000px;}
.xd{left:305.895000px;}
.x12{left:314.175000px;}
.xe{left:357.555000px;}
.x22{left:359.175000px;}
.x7{left:473.504987px;}
.x27{left:494.744987px;}
.x28{left:521.744987px;}
.x13{left:527.145000px;}
.x14{left:590.865000px;}
.x15{left:654.810000px;}
.x6{left:683.250000px;}
.x3{left:692.070000px;}
.x16{left:718.530000px;}
.x17{left:778.650000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v6{vertical-align:-12.800000pt;}
.v7{vertical-align:-10.880000pt;}
.v4{vertical-align:-5.120000pt;}
.v5{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.280000pt;}
.v9{vertical-align:5.120000pt;}
.v8{vertical-align:7.040000pt;}
.vc{vertical-align:12.160000pt;}
.va{vertical-align:14.080000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-1.120000pt;}
.ls26{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.310933pt;}
.ls24{letter-spacing:-0.301867pt;}
.ls17{letter-spacing:-0.129067pt;}
.ls2b{letter-spacing:-0.047360pt;}
.ls16{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.013440pt;}
.ls1b{letter-spacing:0.017920pt;}
.ls0{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.207360pt;}
.ls6{letter-spacing:0.230933pt;}
.ls30{letter-spacing:0.231040pt;}
.ls2e{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.271467pt;}
.ls12{letter-spacing:0.272000pt;}
.ls1{letter-spacing:0.276480pt;}
.ls9{letter-spacing:0.279467pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.324267pt;}
.ls15{letter-spacing:0.426667pt;}
.ls13{letter-spacing:2.412800pt;}
.ls10{letter-spacing:3.782400pt;}
.ls1c{letter-spacing:4.151040pt;}
.ls2a{letter-spacing:5.431040pt;}
.ls2c{letter-spacing:8.480000pt;}
.ls1f{letter-spacing:8.631040pt;}
.lse{letter-spacing:9.120000pt;}
.ls20{letter-spacing:12.471040pt;}
.ls1d{letter-spacing:13.111040pt;}
.ls29{letter-spacing:13.751040pt;}
.ls2f{letter-spacing:14.672640pt;}
.ls19{letter-spacing:18.720000pt;}
.ls23{letter-spacing:22.071040pt;}
.ls22{letter-spacing:23.351040pt;}
.ls21{letter-spacing:25.911040pt;}
.ls2d{letter-spacing:40.912640pt;}
.ls1e{letter-spacing:71.351040pt;}
.lsf{letter-spacing:81.505920pt;}
.ls11{letter-spacing:93.537920pt;}
.ls28{letter-spacing:158.369707pt;}
.wsd{word-spacing:-53.120000pt;}
.wsf{word-spacing:-37.120000pt;}
.wse{word-spacing:-36.990933pt;}
.ws2{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.940587pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1a{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.736000pt;}
.ws17{word-spacing:-12.592000pt;}
.ws15{word-spacing:-10.400000pt;}
.ws19{word-spacing:-10.097920pt;}
.ws18{word-spacing:-10.093440pt;}
.ws12{word-spacing:-10.080000pt;}
.ws13{word-spacing:-9.778133pt;}
.ws14{word-spacing:-9.769067pt;}
.ws1{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.632320pt;}
.ws16{word-spacing:-6.720000pt;}
.ws7{word-spacing:0.000000pt;}
.ws10{word-spacing:187.275520pt;}
.ws11{word-spacing:257.067520pt;}
._40{margin-left:-7.811840pt;}
._3c{margin-left:-6.406400pt;}
._2f{margin-left:-5.207040pt;}
._1e{margin-left:-3.443200pt;}
._9{margin-left:-2.301867pt;}
._0{margin-left:-1.088000pt;}
._4{width:0.928853pt;}
._1{width:1.941333pt;}
._6{width:2.846933pt;}
._a{width:4.039467pt;}
._7{width:4.939093pt;}
._b{width:6.321280pt;}
._c{width:7.330560pt;}
._3{width:8.256640pt;}
._19{width:9.277227pt;}
._8{width:10.277760pt;}
._5{width:11.235840pt;}
._21{width:12.326400pt;}
._16{width:14.900907pt;}
._12{width:16.095360pt;}
._11{width:17.157760pt;}
._15{width:18.100053pt;}
._20{width:19.548160pt;}
._14{width:20.929280pt;}
._13{width:21.885440pt;}
._1b{width:22.844587pt;}
._1d{width:23.796267pt;}
._24{width:24.741547pt;}
._17{width:26.305707pt;}
._22{width:27.250560pt;}
._18{width:28.287147pt;}
._1f{width:29.188693pt;}
._25{width:30.518187pt;}
._2d{width:31.923627pt;}
._2c{width:32.987520pt;}
._2a{width:34.181760pt;}
._29{width:35.431040pt;}
._28{width:36.546560pt;}
._2b{width:38.618027pt;}
._1c{width:39.521280pt;}
._2e{width:40.670933pt;}
._36{width:41.625600pt;}
._27{width:43.239680pt;}
._3a{width:44.372907pt;}
._30{width:45.657387pt;}
._1a{width:46.719787pt;}
._39{width:48.126080pt;}
._34{width:49.985920pt;}
._3b{width:51.640960pt;}
._38{width:52.741333pt;}
._e{width:53.890987pt;}
._41{width:54.898773pt;}
._33{width:55.853440pt;}
._42{width:57.356373pt;}
._35{width:59.335040pt;}
._37{width:60.637867pt;}
._26{width:63.159680pt;}
._3f{width:65.355947pt;}
._31{width:72.270507pt;}
._32{width:73.225173pt;}
._d{width:92.163200pt;}
._23{width:97.156480pt;}
._f{width:110.038827pt;}
._10{width:149.267200pt;}
._3d{width:178.801920pt;}
._2{width:269.785173pt;}
._3e{width:701.795627pt;}
.fs9{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.800000pt;}
.yb2{bottom:3.840000pt;}
.yad{bottom:4.000000pt;}
.y23{bottom:5.120000pt;}
.y13{bottom:6.720000pt;}
.yab{bottom:10.560000pt;}
.y6{bottom:12.320000pt;}
.yaf{bottom:17.120000pt;}
.yfc{bottom:17.146667pt;}
.ye7{bottom:17.160000pt;}
.yac{bottom:17.280000pt;}
.y22{bottom:22.720000pt;}
.yf9{bottom:30.240000pt;}
.ye4{bottom:30.400000pt;}
.ye6{bottom:30.440000pt;}
.y5{bottom:40.160000pt;}
.y21{bottom:40.480000pt;}
.yed{bottom:43.680000pt;}
.y41{bottom:49.600000pt;}
.y9{bottom:53.280000pt;}
.y20{bottom:58.080000pt;}
.y4{bottom:67.840000pt;}
.y12e{bottom:74.240000pt;}
.y1f{bottom:75.680000pt;}
.y78{bottom:77.440000pt;}
.ye0{bottom:84.160000pt;}
.y37{bottom:87.040000pt;}
.y3e{bottom:87.200000pt;}
.y12d{bottom:91.840000pt;}
.y1e{bottom:93.280000pt;}
.ya8{bottom:94.560000pt;}
.y77{bottom:95.200000pt;}
.yfd{bottom:95.520000pt;}
.y3{bottom:95.706667pt;}
.ydf{bottom:101.760000pt;}
.y36{bottom:102.400000pt;}
.y3d{bottom:104.800000pt;}
.y12c{bottom:109.440000pt;}
.y1d{bottom:110.880000pt;}
.ya7{bottom:112.160000pt;}
.y76{bottom:112.800000pt;}
.y35{bottom:117.600000pt;}
.yde{bottom:119.520000pt;}
.y3c{bottom:122.400000pt;}
.yfb{bottom:122.720000pt;}
.y2{bottom:124.026667pt;}
.y12b{bottom:127.040000pt;}
.y1c{bottom:128.666667pt;}
.ya6{bottom:129.760000pt;}
.y75{bottom:130.400000pt;}
.y34{bottom:132.960000pt;}
.ydd{bottom:137.146667pt;}
.y3b{bottom:140.026667pt;}
.y12a{bottom:144.666667pt;}
.y1b{bottom:146.266667pt;}
.ya5{bottom:147.386667pt;}
.y74{bottom:148.026667pt;}
.y33{bottom:148.346667pt;}
.yfa{bottom:149.786667pt;}
.ydc{bottom:154.746667pt;}
.y6d{bottom:157.626667pt;}
.y3a{bottom:157.786667pt;}
.y129{bottom:162.426667pt;}
.y32{bottom:163.706667pt;}
.y1a{bottom:163.866667pt;}
.ya4{bottom:164.986667pt;}
.y73{bottom:165.626667pt;}
.y39{bottom:175.386667pt;}
.y128{bottom:180.026667pt;}
.ydb{bottom:180.346667pt;}
.y19{bottom:181.466667pt;}
.ya3{bottom:182.746667pt;}
.y31{bottom:183.066667pt;}
.y72{bottom:183.386667pt;}
.yf8{bottom:190.266667pt;}
.y38{bottom:192.986667pt;}
.y127{bottom:197.626667pt;}
.yda{bottom:197.946667pt;}
.y18{bottom:199.066667pt;}
.y71{bottom:200.986667pt;}
.ya2{bottom:208.346667pt;}
.y30{bottom:210.586667pt;}
.y126{bottom:215.226667pt;}
.yd9{bottom:215.706667pt;}
.y17{bottom:216.826667pt;}
.y70{bottom:218.586667pt;}
.ya1{bottom:225.946667pt;}
.y2f{bottom:228.186667pt;}
.yf7{bottom:230.586667pt;}
.y125{bottom:232.826667pt;}
.yd8{bottom:233.306667pt;}
.y16{bottom:234.426667pt;}
.y6f{bottom:236.186667pt;}
.ya0{bottom:243.546667pt;}
.y6c{bottom:245.786667pt;}
.y2e{bottom:245.946667pt;}
.y124{bottom:250.586667pt;}
.yd7{bottom:250.906667pt;}
.y15{bottom:252.026667pt;}
.y6e{bottom:253.786667pt;}
.y9f{bottom:261.146667pt;}
.y2d{bottom:263.546667pt;}
.y123{bottom:268.186667pt;}
.yd6{bottom:268.506667pt;}
.yf6{bottom:270.906667pt;}
.y6b{bottom:271.546667pt;}
.y9e{bottom:278.906667pt;}
.y2c{bottom:281.146667pt;}
.y122{bottom:285.786667pt;}
.yd5{bottom:286.106667pt;}
.y6a{bottom:289.146667pt;}
.y9d{bottom:296.506667pt;}
.yf5{bottom:297.946667pt;}
.y2b{bottom:298.746667pt;}
.y121{bottom:303.386667pt;}
.yd4{bottom:303.866667pt;}
.y69{bottom:306.746667pt;}
.y9c{bottom:314.106667pt;}
.y2a{bottom:316.346667pt;}
.y120{bottom:320.986667pt;}
.yd3{bottom:321.466667pt;}
.y68{bottom:324.346667pt;}
.y9b{bottom:331.706667pt;}
.y14e{bottom:333.946667pt;}
.y29{bottom:334.106667pt;}
.yf4{bottom:338.266667pt;}
.y11f{bottom:338.746667pt;}
.yd2{bottom:339.066667pt;}
.y67{bottom:341.946667pt;}
.y9a{bottom:349.306667pt;}
.y28{bottom:351.706667pt;}
.y11e{bottom:356.386667pt;}
.yd1{bottom:356.706667pt;}
.y66{bottom:359.746667pt;}
.y99{bottom:367.106667pt;}
.y27{bottom:369.346667pt;}
.y11d{bottom:373.986667pt;}
.yd0{bottom:374.306667pt;}
.y65{bottom:377.346667pt;}
.yf3{bottom:378.626667pt;}
.y98{bottom:384.706667pt;}
.y26{bottom:386.946667pt;}
.y11c{bottom:391.586667pt;}
.ycf{bottom:392.066667pt;}
.y64{bottom:394.946667pt;}
.y97{bottom:402.306667pt;}
.y25{bottom:404.546667pt;}
.y11b{bottom:409.186667pt;}
.yce{bottom:409.666667pt;}
.y63{bottom:412.546667pt;}
.yf2{bottom:419.106667pt;}
.y96{bottom:419.906667pt;}
.y14d{bottom:422.146667pt;}
.y24{bottom:422.306667pt;}
.y11a{bottom:426.946667pt;}
.ycd{bottom:427.266667pt;}
.y62{bottom:430.146667pt;}
.y95{bottom:437.506667pt;}
.y14c{bottom:439.906667pt;}
.y119{bottom:444.546667pt;}
.ycc{bottom:444.866667pt;}
.yf1{bottom:446.146667pt;}
.y61{bottom:447.906667pt;}
.y14{bottom:453.026667pt;}
.y94{bottom:455.266667pt;}
.y14b{bottom:457.506667pt;}
.y118{bottom:462.146667pt;}
.ycb{bottom:462.466667pt;}
.y60{bottom:465.506667pt;}
.y93{bottom:472.866667pt;}
.yf0{bottom:473.186667pt;}
.y14a{bottom:475.106667pt;}
.y117{bottom:479.746667pt;}
.yca{bottom:480.226667pt;}
.y5f{bottom:483.106667pt;}
.y92{bottom:490.466667pt;}
.y149{bottom:492.706667pt;}
.y116{bottom:497.346667pt;}
.yc9{bottom:497.826667pt;}
.yef{bottom:500.386667pt;}
.y5e{bottom:500.706667pt;}
.y91{bottom:508.066667pt;}
.y148{bottom:510.306667pt;}
.y115{bottom:515.106667pt;}
.yc8{bottom:515.426667pt;}
.y5d{bottom:518.306667pt;}
.y90{bottom:525.666667pt;}
.y147{bottom:528.066667pt;}
.yc7{bottom:528.546667pt;}
.y114{bottom:532.706667pt;}
.y5c{bottom:536.066667pt;}
.yee{bottom:540.706667pt;}
.y8f{bottom:543.426667pt;}
.y146{bottom:545.666667pt;}
.y113{bottom:550.306667pt;}
.y5b{bottom:553.666667pt;}
.yc6{bottom:555.746667pt;}
.y8e{bottom:561.026667pt;}
.y145{bottom:563.266667pt;}
.y112{bottom:567.906667pt;}
.y5a{bottom:571.266667pt;}
.y8d{bottom:578.653333pt;}
.y144{bottom:580.893333pt;}
.yec{bottom:581.053333pt;}
.yc5{bottom:582.813333pt;}
.y111{bottom:585.533333pt;}
.y59{bottom:588.893333pt;}
.y143{bottom:598.493333pt;}
.y110{bottom:603.293333pt;}
.y8c{bottom:604.253333pt;}
.y58{bottom:606.493333pt;}
.yc4{bottom:610.013333pt;}
.y142{bottom:616.253333pt;}
.y10f{bottom:620.893333pt;}
.y8b{bottom:621.853333pt;}
.yc3{bottom:623.773333pt;}
.y57{bottom:624.253333pt;}
.y141{bottom:633.853333pt;}
.yeb{bottom:634.653333pt;}
.yc2{bottom:637.693333pt;}
.y10e{bottom:638.493333pt;}
.y8a{bottom:639.613333pt;}
.y56{bottom:641.853333pt;}
.y140{bottom:651.453333pt;}
.y10d{bottom:656.093333pt;}
.y89{bottom:657.213333pt;}
.y55{bottom:659.453333pt;}
.yc1{bottom:668.893333pt;}
.y13f{bottom:669.053333pt;}
.y10c{bottom:673.693333pt;}
.y88{bottom:674.813333pt;}
.yea{bottom:674.973333pt;}
.y54{bottom:677.053333pt;}
.yc0{bottom:684.093333pt;}
.y13e{bottom:686.653333pt;}
.y10b{bottom:691.453333pt;}
.y87{bottom:692.413333pt;}
.y53{bottom:694.653333pt;}
.ybf{bottom:701.693333pt;}
.y13d{bottom:704.413333pt;}
.y10a{bottom:709.053333pt;}
.y86{bottom:710.013333pt;}
.y52{bottom:712.413333pt;}
.ye9{bottom:715.293333pt;}
.y12{bottom:718.173333pt;}
.ybe{bottom:719.293333pt;}
.y13c{bottom:722.013333pt;}
.y109{bottom:726.653333pt;}
.y85{bottom:727.773333pt;}
.y51{bottom:730.013333pt;}
.ybd{bottom:737.053333pt;}
.y13b{bottom:739.613333pt;}
.y108{bottom:744.253333pt;}
.y84{bottom:745.373333pt;}
.y11{bottom:747.293333pt;}
.y50{bottom:747.613333pt;}
.ybc{bottom:754.653333pt;}
.ye8{bottom:755.613333pt;}
.y13a{bottom:757.213333pt;}
.y107{bottom:761.853333pt;}
.y83{bottom:762.973333pt;}
.y4f{bottom:765.213333pt;}
.y10{bottom:769.533333pt;}
.ybb{bottom:772.253333pt;}
.y139{bottom:774.813333pt;}
.y106{bottom:779.613333pt;}
.y82{bottom:780.573333pt;}
.y4e{bottom:782.813333pt;}
.yf{bottom:787.133333pt;}
.yba{bottom:789.853333pt;}
.y138{bottom:792.573333pt;}
.y105{bottom:797.213333pt;}
.y81{bottom:798.213333pt;}
.ye{bottom:800.613333pt;}
.yb9{bottom:807.493333pt;}
.y137{bottom:810.213333pt;}
.y104{bottom:814.853333pt;}
.y80{bottom:815.973333pt;}
.y4d{bottom:818.213333pt;}
.yd{bottom:819.493333pt;}
.ye5{bottom:823.173333pt;}
.yb8{bottom:825.253333pt;}
.y136{bottom:827.813333pt;}
.y103{bottom:832.453333pt;}
.y7f{bottom:833.573333pt;}
.y4c{bottom:835.813333pt;}
.yc{bottom:840.453333pt;}
.yb7{bottom:842.853333pt;}
.y135{bottom:845.413333pt;}
.y102{bottom:850.053333pt;}
.ye3{bottom:850.213333pt;}
.y7e{bottom:851.173333pt;}
.y4b{bottom:853.413333pt;}
.yb6{bottom:860.453333pt;}
.y134{bottom:863.013333pt;}
.y101{bottom:863.333333pt;}
.yb{bottom:868.613333pt;}
.y7d{bottom:868.773333pt;}
.y4a{bottom:871.013333pt;}
.yb5{bottom:873.573333pt;}
.y133{bottom:880.773333pt;}
.y7a{bottom:885.253333pt;}
.y7c{bottom:885.413333pt;}
.yb4{bottom:887.493333pt;}
.y49{bottom:888.773333pt;}
.y100{bottom:890.373333pt;}
.y7b{bottom:893.253333pt;}
.y79{bottom:893.413333pt;}
.ye2{bottom:894.693333pt;}
.ya{bottom:896.773333pt;}
.y132{bottom:898.373333pt;}
.yb3{bottom:901.413333pt;}
.y48{bottom:906.373333pt;}
.ye1{bottom:908.773333pt;}
.yb1{bottom:915.333333pt;}
.y131{bottom:915.973333pt;}
.y8{bottom:919.493333pt;}
.y47{bottom:923.973333pt;}
.yb0{bottom:929.093333pt;}
.y1{bottom:932.613333pt;}
.y130{bottom:933.573333pt;}
.y46{bottom:941.573333pt;}
.yff{bottom:943.973333pt;}
.y12f{bottom:951.173333pt;}
.yae{bottom:956.293333pt;}
.y45{bottom:959.173333pt;}
.y44{bottom:976.933333pt;}
.yaa{bottom:983.333333pt;}
.yfe{bottom:984.293333pt;}
.y43{bottom:994.533333pt;}
.y42{bottom:1012.133333pt;}
.ya9{bottom:1014.533333pt;}
.y40{bottom:1038.560000pt;}
.y3f{bottom:1059.040000pt;}
.h1d{height:13.120000pt;}
.h1e{height:13.280000pt;}
.hb{height:23.200000pt;}
.h1b{height:26.400000pt;}
.h20{height:26.432000pt;}
.h19{height:26.560000pt;}
.h1a{height:28.448437pt;}
.h18{height:30.254687pt;}
.ha{height:30.982500pt;}
.h14{height:31.283750pt;}
.h1c{height:36.146250pt;}
.he{height:37.479688pt;}
.h1f{height:38.441250pt;}
.h24{height:39.520000pt;}
.h21{height:39.680000pt;}
.h22{height:39.712000pt;}
.h7{height:42.607500pt;}
.hf{height:43.108125pt;}
.h4{height:43.355000pt;}
.h13{height:44.768125pt;}
.h11{height:45.961250pt;}
.h17{height:46.739375pt;}
.h3{height:47.125000pt;}
.h9{height:47.310625pt;}
.h6{height:47.621250pt;}
.h10{height:47.782500pt;}
.hc{height:49.542500pt;}
.h23{height:52.960000pt;}
.h25{height:54.093750pt;}
.h5{height:55.136250pt;}
.h12{height:57.375000pt;}
.h16{height:59.141250pt;}
.h15{height:59.781250pt;}
.h8{height:60.057813pt;}
.h2{height:140.826667pt;}
.hd{height:264.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:37.920000pt;}
.wc{width:45.280000pt;}
.w13{width:46.240000pt;}
.w18{width:46.272000pt;}
.w10{width:48.640000pt;}
.w1b{width:49.760000pt;}
.w17{width:49.952000pt;}
.w11{width:51.552000pt;}
.w16{width:52.800000pt;}
.w1a{width:52.960000pt;}
.wa{width:53.440000pt;}
.wd{width:54.400000pt;}
.wb{width:54.592000pt;}
.wf{width:55.040000pt;}
.w8{width:55.232000pt;}
.w14{width:56.000000pt;}
.w19{width:56.032000pt;}
.w15{width:56.192000pt;}
.w9{width:57.440000pt;}
.we{width:72.832000pt;}
.w3{width:130.432000pt;}
.w7{width:136.346667pt;}
.w6{width:557.093333pt;}
.w2{width:567.013333pt;}
.w5{width:693.440000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x23{left:8.160000pt;}
.x1b{left:9.280000pt;}
.x25{left:11.680000pt;}
.x18{left:14.080000pt;}
.x1d{left:15.200000pt;}
.x19{left:16.800000pt;}
.x24{left:17.760000pt;}
.x1c{left:18.720000pt;}
.x26{left:21.280000pt;}
.x1a{left:30.880000pt;}
.x1{left:48.160000pt;}
.x5{left:50.240000pt;}
.x8{left:57.439988pt;}
.x2a{left:66.879988pt;}
.x29{left:90.911988pt;}
.x1e{left:95.552000pt;}
.xa{left:104.512000pt;}
.xf{left:122.112000pt;}
.x4{left:123.226667pt;}
.x1f{left:152.346667pt;}
.x9{left:156.186655pt;}
.xb{left:162.586667pt;}
.x10{left:177.786667pt;}
.x20{left:208.986667pt;}
.xc{left:216.666667pt;}
.x11{left:227.066667pt;}
.x21{left:265.666667pt;}
.xd{left:271.906667pt;}
.x12{left:279.266667pt;}
.xe{left:317.826667pt;}
.x22{left:319.266667pt;}
.x7{left:420.893322pt;}
.x27{left:439.773322pt;}
.x28{left:463.773322pt;}
.x13{left:468.573333pt;}
.x14{left:525.213333pt;}
.x15{left:582.053333pt;}
.x6{left:607.333333pt;}
.x3{left:615.173333pt;}
.x16{left:638.693333pt;}
.x17{left:692.133333pt;}
}




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