
    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_40840757c9190673a25cc40d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.769000;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_00b89bd3f5bd052e72fef9a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_830d9de70fa110ff741385bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_acc189e5f5cb761c7459749a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.192000;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_5a1d8c1d44b269e29d1ec227.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_b95ebe6f01f79004d077265e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_670634585bc1bd1ab19de1b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_7ecd7c174729232bfd58b324.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fd030d63284ef1b51f079abb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_beb89faa6a07e6fdf43971e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.130371;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_768a662c9e3a3e9b1b00d8bc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983398;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_6180ada38b21c697ac55c714.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3420cc7c90faa373f4f53356.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.130371;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_6e85ac8b6c51e62a2e7c8ab2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.948242;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_c76f596afb24e430461b2421.woff2')format("woff");}.fff{font-family:fff;line-height:0.853027;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.va{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-5.760000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.880000px;}
.v6{vertical-align:5.760000px;}
.v1{vertical-align:8.502779px;}
.v4{vertical-align:15.120000px;}
.v9{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls7{letter-spacing:-0.936000px;}
.ls23{letter-spacing:-0.648000px;}
.ls16{letter-spacing:-0.292200px;}
.lsd{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.252000px;}
.ls3{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.132600px;}
.ls15{letter-spacing:-0.126000px;}
.ls1e{letter-spacing:-0.109200px;}
.ls22{letter-spacing:-0.090600px;}
.ls1f{letter-spacing:-0.089400px;}
.lsa{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.053280px;}
.ls5{letter-spacing:-0.028080px;}
.ls14{letter-spacing:-0.018000px;}
.ls2{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018720px;}
.ls26{letter-spacing:0.061920px;}
.ls11{letter-spacing:0.069120px;}
.ls1b{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.132480px;}
.ls17{letter-spacing:0.141000px;}
.ls12{letter-spacing:0.141120px;}
.ls13{letter-spacing:0.149760px;}
.ls24{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.256200px;}
.ls1c{letter-spacing:0.262200px;}
.ls21{letter-spacing:0.269280px;}
.ls20{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.305280px;}
.ls1d{letter-spacing:0.305400px;}
.lse{letter-spacing:0.324000px;}
.ls18{letter-spacing:0.354000px;}
.ls19{letter-spacing:0.457920px;}
.ls25{letter-spacing:3.816000px;}
.lsb{letter-spacing:849.185760px;}
.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;}
}
.ws1e{word-spacing:-72.000000px;}
.ws0{word-spacing:-47.400974px;}
.ws3{word-spacing:-34.963018px;}
.ws1{word-spacing:-34.893898px;}
.ws2{word-spacing:-34.755659px;}
.ws5{word-spacing:-29.024695px;}
.ws9{word-spacing:-26.640000px;}
.ws4{word-spacing:-24.234584px;}
.wse{word-spacing:-23.390640px;}
.ws27{word-spacing:-20.304000px;}
.ws25{word-spacing:-20.016000px;}
.ws22{word-spacing:-18.720120px;}
.ws21{word-spacing:-18.676920px;}
.wsb{word-spacing:-18.414720px;}
.ws23{word-spacing:-18.305520px;}
.wsd{word-spacing:-16.613280px;}
.ws13{word-spacing:-16.488000px;}
.ws14{word-spacing:-16.272000px;}
.ws15{word-spacing:-15.984000px;}
.ws20{word-spacing:-15.324240px;}
.ws12{word-spacing:-15.226440px;}
.ws1f{word-spacing:-15.111240px;}
.ws10{word-spacing:-14.970240px;}
.wsf{word-spacing:-14.837640px;}
.ws11{word-spacing:-14.034240px;}
.ws26{word-spacing:-13.410720px;}
.ws28{word-spacing:-13.320120px;}
.ws16{word-spacing:-12.528000px;}
.ws17{word-spacing:-12.402000px;}
.ws29{word-spacing:-12.366000px;}
.ws1a{word-spacing:-12.186000px;}
.ws1b{word-spacing:-12.078000px;}
.wsa{word-spacing:-11.609280px;}
.ws24{word-spacing:-11.519880px;}
.wsc{word-spacing:-10.808640px;}
.ws1c{word-spacing:-9.437760px;}
.ws1d{word-spacing:-9.145560px;}
.ws19{word-spacing:-8.136000px;}
.ws18{word-spacing:-7.884000px;}
.ws7{word-spacing:-1.259450px;}
.ws6{word-spacing:-1.142292px;}
.ws8{word-spacing:0.000000px;}
._d{margin-left:-2.584800px;}
._8{margin-left:-1.436400px;}
._7{width:1.819440px;}
._b{width:2.835600px;}
._27{width:4.013760px;}
._e{width:5.048640px;}
._f{width:7.383600px;}
._a{width:9.001440px;}
._9{width:10.246320px;}
._23{width:11.290080px;}
._0{width:19.068327px;}
._1{width:21.140971px;}
._2{width:25.708465px;}
._c{width:27.164351px;}
._22{width:31.020240px;}
._26{width:54.864000px;}
._25{width:56.592000px;}
._21{width:79.912080px;}
._6{width:125.029440px;}
._1c{width:146.320800px;}
._5{width:174.402095px;}
._1d{width:442.235760px;}
._15{width:506.304960px;}
._20{width:849.185760px;}
._1f{width:957.073920px;}
._1b{width:1161.105360px;}
._10{width:1181.832000px;}
._1e{width:1258.200960px;}
._18{width:1403.411280px;}
._11{width:1453.272000px;}
._19{width:1561.878240px;}
._17{width:1620.633120px;}
._1a{width:1648.392000px;}
._24{width:1656.756960px;}
._12{width:1913.064000px;}
._16{width:2011.801200px;}
._14{width:2015.960640px;}
._13{width:2098.907040px;}
._3{width:2616.903241px;}
._4{width:2776.029127px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs4{font-size:41.842200px;}
.fs10{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fsc{font-size:72.000000px;}
.fs11{font-size:75.893905px;}
.fs3{font-size:76.764600px;}
.fsd{font-size:77.760000px;}
.fsb{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs12{font-size:108.000000px;}
.fs5{font-size:113.573400px;}
.fs2{font-size:115.199400px;}
.fs1{font-size:125.999400px;}
.fs0{font-size:239.999400px;}
.y9{bottom:-37.842195px;}
.y8{bottom:-25.086600px;}
.y0{bottom:0.000000px;}
.y4a{bottom:4.500000px;}
.ycf{bottom:4.680000px;}
.yd1{bottom:4.725000px;}
.y48{bottom:4.860000px;}
.y47{bottom:6.300000px;}
.y5f{bottom:12.780000px;}
.y50{bottom:12.960000px;}
.y8c{bottom:13.500000px;}
.y6c{bottom:14.040000px;}
.y70{bottom:14.085000px;}
.y69{bottom:14.220000px;}
.y7c{bottom:14.250000px;}
.y92{bottom:14.265000px;}
.y39{bottom:18.285000px;}
.y36{bottom:18.390000px;}
.y74{bottom:18.720000px;}
.y88{bottom:18.900000px;}
.y73{bottom:39.420000px;}
.y87{bottom:39.780000px;}
.y62{bottom:41.580000px;}
.y8b{bottom:45.180000px;}
.y7b{bottom:45.210000px;}
.y91{bottom:45.225000px;}
.y6a{bottom:54.900000px;}
.y86{bottom:60.705000px;}
.y5e{bottom:62.280000px;}
.y53{bottom:62.460000px;}
.y68{bottom:85.860000px;}
.y5b{bottom:108.360000px;}
.y56{bottom:108.405000px;}
.y52{bottom:108.540000px;}
.y2b{bottom:116.496000px;}
.y54{bottom:122.400000px;}
.ycc{bottom:123.876000px;}
.y57{bottom:124.065000px;}
.y5c{bottom:125.850000px;}
.ycb{bottom:140.256000px;}
.y9f{bottom:143.496000px;}
.y60{bottom:143.820000px;}
.y59{bottom:144.000000px;}
.y2a{bottom:149.616000px;}
.yca{bottom:161.130000px;}
.y3f{bottom:167.790000px;}
.y34{bottom:173.550000px;}
.y9e{bottom:177.690000px;}
.yc9{bottom:182.010000px;}
.y29{bottom:183.990000px;}
.y9d{bottom:194.250000px;}
.y3e{bottom:194.430000px;}
.yc8{bottom:202.890000px;}
.y33{bottom:207.390000px;}
.y63{bottom:209.910000px;}
.y89{bottom:212.430000px;}
.y9c{bottom:220.710000px;}
.yb1{bottom:222.330000px;}
.y35{bottom:223.200000px;}
.yc7{bottom:223.770000px;}
.y61{bottom:226.290000px;}
.y28{bottom:226.470000px;}
.y85{bottom:228.810000px;}
.ya6{bottom:236.190000px;}
.yc6{bottom:244.650000px;}
.yb0{bottom:256.530000px;}
.y27{bottom:260.130000px;}
.ya5{bottom:262.650000px;}
.yc5{bottom:265.530000px;}
.yaf{bottom:283.215000px;}
.y5d{bottom:284.115000px;}
.yc4{bottom:286.455000px;}
.y26{bottom:291.495000px;}
.yab{bottom:293.835000px;}
.y84{bottom:307.155000px;}
.yc3{bottom:307.515000px;}
.y25{bottom:322.095000px;}
.yaa{bottom:328.035000px;}
.yc2{bottom:328.395000px;}
.y83{bottom:339.015000px;}
.yc1{bottom:349.275000px;}
.y24{bottom:351.255000px;}
.ya9{bottom:354.675000px;}
.yc0{bottom:370.155000px;}
.y82{bottom:370.695000px;}
.y23{bottom:380.595000px;}
.y81{bottom:402.555000px;}
.ybf{bottom:409.575000px;}
.y22{bottom:410.295000px;}
.y4c{bottom:423.255000px;}
.y80{bottom:434.415000px;}
.ybe{bottom:440.535000px;}
.y21{bottom:441.075000px;}
.y5a{bottom:444.135000px;}
.y4b{bottom:457.095000px;}
.ybd{bottom:462.315000px;}
.y7f{bottom:466.095000px;}
.y20{bottom:470.235000px;}
.y49{bottom:473.475000px;}
.ybc{bottom:484.095000px;}
.y46{bottom:494.355000px;}
.y7e{bottom:497.955000px;}
.y1f{bottom:499.575000px;}
.ybb{bottom:505.695000px;}
.yba{bottom:528.375000px;}
.y1e{bottom:528.735000px;}
.y7d{bottom:529.815000px;}
.y45{bottom:535.575000px;}
.y1d{bottom:558.435000px;}
.y7a{bottom:561.495000px;}
.yb9{bottom:565.305000px;}
.y44{bottom:567.105000px;}
.yb8{bottom:581.685000px;}
.y43{bottom:583.665000px;}
.y58{bottom:586.185000px;}
.y1c{bottom:589.245000px;}
.y38{bottom:606.960000px;}
.y32{bottom:608.685000px;}
.y42{bottom:610.125000px;}
.y1b{bottom:618.405000px;}
.ycd{bottom:622.545000px;}
.yb7{bottom:638.745000px;}
.y3d{bottom:640.185000px;}
.y79{bottom:642.885000px;}
.y97{bottom:643.605000px;}
.y31{bottom:645.405000px;}
.y1a{bottom:648.285000px;}
.ya8{bottom:656.745000px;}
.y78{bottom:659.445000px;}
.y3c{bottom:666.825000px;}
.yb6{bottom:670.605000px;}
.y77{bottom:676.005000px;}
.y96{bottom:677.445000px;}
.y30{bottom:679.065000px;}
.y19{bottom:679.425000px;}
.ya7{bottom:683.205000px;}
.y95{bottom:693.825000px;}
.y76{bottom:695.445000px;}
.y18{bottom:710.565000px;}
.y9b{bottom:710.925000px;}
.y2f{bottom:713.265000px;}
.y7{bottom:720.454088px;}
.yb5{bottom:720.825000px;}
.y9a{bottom:727.485000px;}
.y75{bottom:730.725000px;}
.yb4{bottom:737.385000px;}
.y2e{bottom:739.905000px;}
.y6{bottom:741.288000px;}
.y17{bottom:743.505000px;}
.y55{bottom:746.385000px;}
.y72{bottom:747.105000px;}
.y94{bottom:750.885000px;}
.ya4{bottom:753.045000px;}
.y99{bottom:753.765000px;}
.yb3{bottom:753.945000px;}
.yae{bottom:773.385000px;}
.yb2{bottom:773.745000px;}
.ya3{bottom:775.365000px;}
.y5{bottom:776.751419px;}
.y16{bottom:777.165000px;}
.yce{bottom:778.785000px;}
.yad{bottom:789.945000px;}
.y71{bottom:804.165000px;}
.y4{bottom:805.410149px;}
.ya2{bottom:810.645000px;}
.y15{bottom:813.345000px;}
.y41{bottom:813.525000px;}
.y93{bottom:813.705000px;}
.yac{bottom:816.225000px;}
.y3{bottom:834.066000px;}
.y6f{bottom:836.025000px;}
.y40{bottom:839.985000px;}
.yd0{bottom:844.485000px;}
.ya1{bottom:844.665000px;}
.y90{bottom:845.565000px;}
.y14{bottom:849.570000px;}
.y6e{bottom:867.930000px;}
.ya0{bottom:871.350000px;}
.y13{bottom:880.170000px;}
.y51{bottom:886.650000px;}
.y6d{bottom:899.610000px;}
.y12{bottom:903.390000px;}
.y8f{bottom:908.430000px;}
.y11{bottom:929.490000px;}
.yd2{bottom:930.210000px;}
.y6b{bottom:931.470000px;}
.y8e{bottom:940.290000px;}
.y10{bottom:952.530000px;}
.y2{bottom:955.501500px;}
.y67{bottom:963.150000px;}
.y8d{bottom:971.970000px;}
.yf{bottom:978.990000px;}
.ye{bottom:999.330000px;}
.y8a{bottom:1003.830000px;}
.yd3{bottom:1007.970000px;}
.y1{bottom:1015.540500px;}
.y4f{bottom:1025.250000px;}
.yd{bottom:1032.090000px;}
.yc{bottom:1054.770000px;}
.y4e{bottom:1072.950000px;}
.yb{bottom:1084.650000px;}
.y66{bottom:1085.190000px;}
.yd4{bottom:1085.550000px;}
.y98{bottom:1086.810000px;}
.y4d{bottom:1089.510000px;}
.y65{bottom:1101.750000px;}
.y37{bottom:1108.950000px;}
.y2d{bottom:1113.450000px;}
.ya{bottom:1114.350000px;}
.y3b{bottom:1115.430000px;}
.y64{bottom:1118.310000px;}
.y2c{bottom:1136.160000px;}
.y3a{bottom:1137.780000px;}
.h2e{height:19.980000px;}
.h1a{height:20.160000px;}
.h2f{height:20.196000px;}
.h30{height:20.340000px;}
.h31{height:20.376000px;}
.h19{height:21.960000px;}
.h1b{height:28.440000px;}
.h23{height:30.960000px;}
.h25{height:30.996000px;}
.h24{height:31.140000px;}
.h17{height:31.320000px;}
.h15{height:31.680000px;}
.h6{height:40.796145px;}
.h14{height:43.453125px;}
.h18{height:44.088750px;}
.h2c{height:44.268750px;}
.hc{height:44.327813px;}
.h5{height:55.347277px;}
.h26{height:56.340000px;}
.h21{height:57.096000px;}
.h2a{height:62.100000px;}
.h27{height:62.136000px;}
.hd{height:62.327813px;}
.h29{height:63.961367px;}
.h11{height:65.884219px;}
.h16{height:68.554688px;}
.ha{height:69.086250px;}
.hb{height:70.914375px;}
.h10{height:71.613281px;}
.hf{height:73.722656px;}
.h13{height:74.039062px;}
.h12{height:75.093750px;}
.h28{height:77.616000px;}
.h2b{height:77.973750px;}
.h4{height:83.058767px;}
.he{height:87.859687px;}
.h3{height:90.845567px;}
.h9{height:99.874688px;}
.h22{height:102.780000px;}
.h2d{height:112.640625px;}
.h7{height:119.236844px;}
.h1c{height:137.880000px;}
.h1d{height:139.536000px;}
.h1f{height:141.336000px;}
.h20{height:159.300000px;}
.h1e{height:159.480000px;}
.h2{height:181.439546px;}
.h0{height:1262.835000px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:84.276000px;}
.w8{width:94.860000px;}
.w6{width:105.300000px;}
.w13{width:105.480000px;}
.wc{width:105.516000px;}
.w9{width:105.696000px;}
.w14{width:112.536000px;}
.we{width:133.596000px;}
.w16{width:134.676000px;}
.wd{width:137.340000px;}
.w7{width:137.556000px;}
.w1a{width:144.396000px;}
.w1d{width:165.630000px;}
.w1e{width:168.300000px;}
.w17{width:168.330000px;}
.w11{width:169.200000px;}
.w19{width:169.410000px;}
.w1f{width:184.170000px;}
.w20{width:194.430000px;}
.w10{width:200.910000px;}
.w1c{width:222.510000px;}
.wa{width:229.350000px;}
.w15{width:232.770000px;}
.w18{width:254.010000px;}
.w1b{width:286.050000px;}
.wb{width:296.670000px;}
.w5{width:612.000000px;}
.wf{width:675.645000px;}
.w4{width:701.640000px;}
.w0{width:892.914000px;}
.w3{width:892.979987px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.503800px;}
.x28{left:10.800000px;}
.x3{left:70.157400px;}
.x18{left:79.374000px;}
.x17{left:90.714000px;}
.x16{left:103.674000px;}
.x5{left:108.035987px;}
.xa{left:119.160000px;}
.x8{left:140.975987px;}
.xb{left:165.600000px;}
.xf{left:214.770000px;}
.x1{left:243.468000px;}
.x26{left:277.770000px;}
.x2{left:289.644000px;}
.x19{left:310.575000px;}
.x7{left:320.474987px;}
.x1d{left:342.435000px;}
.x1f{left:347.259000px;}
.x10{left:353.055000px;}
.x20{left:363.675000px;}
.x24{left:395.535000px;}
.x13{left:406.155000px;}
.x6{left:446.474987px;}
.x11{left:448.635000px;}
.x21{left:469.875000px;}
.x1a{left:480.675000px;}
.xe{left:506.984987px;}
.x14{left:512.565000px;}
.x29{left:542.265000px;}
.x27{left:552.525000px;}
.x12{left:555.045000px;}
.x1b{left:565.665000px;}
.x1e{left:616.065000px;}
.x25{left:618.765000px;}
.x22{left:640.005000px;}
.x15{left:650.805000px;}
.x1c{left:671.865000px;}
.x23{left:719.069987px;}
.xd{left:721.949987px;}
.xc{left:725.729987px;}
.x9{left:785.309987px;}
@media print{
.va{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-5.120000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.560000pt;}
.v6{vertical-align:5.120000pt;}
.v1{vertical-align:7.558025pt;}
.v4{vertical-align:13.440000pt;}
.v9{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls23{letter-spacing:-0.576000pt;}
.ls16{letter-spacing:-0.259733pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.224000pt;}
.ls3{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.117867pt;}
.ls15{letter-spacing:-0.112000pt;}
.ls1e{letter-spacing:-0.097067pt;}
.ls22{letter-spacing:-0.080533pt;}
.ls1f{letter-spacing:-0.079467pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:-0.024960pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016640pt;}
.ls26{letter-spacing:0.055040pt;}
.ls11{letter-spacing:0.061440pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.117760pt;}
.ls17{letter-spacing:0.125333pt;}
.ls12{letter-spacing:0.125440pt;}
.ls13{letter-spacing:0.133120pt;}
.ls24{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.227733pt;}
.ls1c{letter-spacing:0.233067pt;}
.ls21{letter-spacing:0.239360pt;}
.ls20{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.271360pt;}
.ls1d{letter-spacing:0.271467pt;}
.lse{letter-spacing:0.288000pt;}
.ls18{letter-spacing:0.314667pt;}
.ls19{letter-spacing:0.407040pt;}
.ls25{letter-spacing:3.392000pt;}
.lsb{letter-spacing:754.831787pt;}
.ws1e{word-spacing:-64.000000pt;}
.ws0{word-spacing:-42.134199pt;}
.ws3{word-spacing:-31.078238pt;}
.ws1{word-spacing:-31.016798pt;}
.ws2{word-spacing:-30.893919pt;}
.ws5{word-spacing:-25.799729pt;}
.ws9{word-spacing:-23.680000pt;}
.ws4{word-spacing:-21.541853pt;}
.wse{word-spacing:-20.791680pt;}
.ws27{word-spacing:-18.048000pt;}
.ws25{word-spacing:-17.792000pt;}
.ws22{word-spacing:-16.640107pt;}
.ws21{word-spacing:-16.601707pt;}
.wsb{word-spacing:-16.368640pt;}
.ws23{word-spacing:-16.271573pt;}
.wsd{word-spacing:-14.767360pt;}
.ws13{word-spacing:-14.656000pt;}
.ws14{word-spacing:-14.464000pt;}
.ws15{word-spacing:-14.208000pt;}
.ws20{word-spacing:-13.621547pt;}
.ws12{word-spacing:-13.534613pt;}
.ws1f{word-spacing:-13.432213pt;}
.ws10{word-spacing:-13.306880pt;}
.wsf{word-spacing:-13.189013pt;}
.ws11{word-spacing:-12.474880pt;}
.ws26{word-spacing:-11.920640pt;}
.ws28{word-spacing:-11.840107pt;}
.ws16{word-spacing:-11.136000pt;}
.ws17{word-spacing:-11.024000pt;}
.ws29{word-spacing:-10.992000pt;}
.ws1a{word-spacing:-10.832000pt;}
.ws1b{word-spacing:-10.736000pt;}
.wsa{word-spacing:-10.319360pt;}
.ws24{word-spacing:-10.239893pt;}
.wsc{word-spacing:-9.607680pt;}
.ws1c{word-spacing:-8.389120pt;}
.ws1d{word-spacing:-8.129387pt;}
.ws19{word-spacing:-7.232000pt;}
.ws18{word-spacing:-7.008000pt;}
.ws7{word-spacing:-1.119511pt;}
.ws6{word-spacing:-1.015371pt;}
.ws8{word-spacing:0.000000pt;}
._d{margin-left:-2.297600pt;}
._8{margin-left:-1.276800pt;}
._7{width:1.617280pt;}
._b{width:2.520533pt;}
._27{width:3.567787pt;}
._e{width:4.487680pt;}
._f{width:6.563200pt;}
._a{width:8.001280pt;}
._9{width:9.107840pt;}
._23{width:10.035627pt;}
._0{width:16.949624pt;}
._1{width:18.791974pt;}
._2{width:22.851968pt;}
._c{width:24.146090pt;}
._22{width:27.573547pt;}
._26{width:48.768000pt;}
._25{width:50.304000pt;}
._21{width:71.032960pt;}
._6{width:111.137280pt;}
._1c{width:130.062933pt;}
._5{width:155.024084pt;}
._1d{width:393.098453pt;}
._15{width:450.048853pt;}
._20{width:754.831787pt;}
._1f{width:850.732373pt;}
._1b{width:1032.093653pt;}
._10{width:1050.517333pt;}
._1e{width:1118.400853pt;}
._18{width:1247.476693pt;}
._11{width:1291.797333pt;}
._19{width:1388.336213pt;}
._17{width:1440.562773pt;}
._1a{width:1465.237333pt;}
._24{width:1472.672853pt;}
._12{width:1700.501333pt;}
._16{width:1788.267733pt;}
._14{width:1791.965013pt;}
._13{width:1865.695147pt;}
._3{width:2326.136214pt;}
._4{width:2467.581447pt;}
.fsf{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs4{font-size:37.193067pt;}
.fs10{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fsc{font-size:64.000000pt;}
.fs11{font-size:67.461249pt;}
.fs3{font-size:68.235200pt;}
.fsd{font-size:69.120000pt;}
.fsb{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs12{font-size:96.000000pt;}
.fs5{font-size:100.954133pt;}
.fs2{font-size:102.399467pt;}
.fs1{font-size:111.999467pt;}
.fs0{font-size:213.332800pt;}
.y9{bottom:-33.637506pt;}
.y8{bottom:-22.299200pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:4.000000pt;}
.ycf{bottom:4.160000pt;}
.yd1{bottom:4.200000pt;}
.y48{bottom:4.320000pt;}
.y47{bottom:5.600000pt;}
.y5f{bottom:11.360000pt;}
.y50{bottom:11.520000pt;}
.y8c{bottom:12.000000pt;}
.y6c{bottom:12.480000pt;}
.y70{bottom:12.520000pt;}
.y69{bottom:12.640000pt;}
.y7c{bottom:12.666667pt;}
.y92{bottom:12.680000pt;}
.y39{bottom:16.253333pt;}
.y36{bottom:16.346667pt;}
.y74{bottom:16.640000pt;}
.y88{bottom:16.800000pt;}
.y73{bottom:35.040000pt;}
.y87{bottom:35.360000pt;}
.y62{bottom:36.960000pt;}
.y8b{bottom:40.160000pt;}
.y7b{bottom:40.186667pt;}
.y91{bottom:40.200000pt;}
.y6a{bottom:48.800000pt;}
.y86{bottom:53.960000pt;}
.y5e{bottom:55.360000pt;}
.y53{bottom:55.520000pt;}
.y68{bottom:76.320000pt;}
.y5b{bottom:96.320000pt;}
.y56{bottom:96.360000pt;}
.y52{bottom:96.480000pt;}
.y2b{bottom:103.552000pt;}
.y54{bottom:108.800000pt;}
.ycc{bottom:110.112000pt;}
.y57{bottom:110.280000pt;}
.y5c{bottom:111.866667pt;}
.ycb{bottom:124.672000pt;}
.y9f{bottom:127.552000pt;}
.y60{bottom:127.840000pt;}
.y59{bottom:128.000000pt;}
.y2a{bottom:132.992000pt;}
.yca{bottom:143.226667pt;}
.y3f{bottom:149.146667pt;}
.y34{bottom:154.266667pt;}
.y9e{bottom:157.946667pt;}
.yc9{bottom:161.786667pt;}
.y29{bottom:163.546667pt;}
.y9d{bottom:172.666667pt;}
.y3e{bottom:172.826667pt;}
.yc8{bottom:180.346667pt;}
.y33{bottom:184.346667pt;}
.y63{bottom:186.586667pt;}
.y89{bottom:188.826667pt;}
.y9c{bottom:196.186667pt;}
.yb1{bottom:197.626667pt;}
.y35{bottom:198.400000pt;}
.yc7{bottom:198.906667pt;}
.y61{bottom:201.146667pt;}
.y28{bottom:201.306667pt;}
.y85{bottom:203.386667pt;}
.ya6{bottom:209.946667pt;}
.yc6{bottom:217.466667pt;}
.yb0{bottom:228.026667pt;}
.y27{bottom:231.226667pt;}
.ya5{bottom:233.466667pt;}
.yc5{bottom:236.026667pt;}
.yaf{bottom:251.746667pt;}
.y5d{bottom:252.546667pt;}
.yc4{bottom:254.626667pt;}
.y26{bottom:259.106667pt;}
.yab{bottom:261.186667pt;}
.y84{bottom:273.026667pt;}
.yc3{bottom:273.346667pt;}
.y25{bottom:286.306667pt;}
.yaa{bottom:291.586667pt;}
.yc2{bottom:291.906667pt;}
.y83{bottom:301.346667pt;}
.yc1{bottom:310.466667pt;}
.y24{bottom:312.226667pt;}
.ya9{bottom:315.266667pt;}
.yc0{bottom:329.026667pt;}
.y82{bottom:329.506667pt;}
.y23{bottom:338.306667pt;}
.y81{bottom:357.826667pt;}
.ybf{bottom:364.066667pt;}
.y22{bottom:364.706667pt;}
.y4c{bottom:376.226667pt;}
.y80{bottom:386.146667pt;}
.ybe{bottom:391.586667pt;}
.y21{bottom:392.066667pt;}
.y5a{bottom:394.786667pt;}
.y4b{bottom:406.306667pt;}
.ybd{bottom:410.946667pt;}
.y7f{bottom:414.306667pt;}
.y20{bottom:417.986667pt;}
.y49{bottom:420.866667pt;}
.ybc{bottom:430.306667pt;}
.y46{bottom:439.426667pt;}
.y7e{bottom:442.626667pt;}
.y1f{bottom:444.066667pt;}
.ybb{bottom:449.506667pt;}
.yba{bottom:469.666667pt;}
.y1e{bottom:469.986667pt;}
.y7d{bottom:470.946667pt;}
.y45{bottom:476.066667pt;}
.y1d{bottom:496.386667pt;}
.y7a{bottom:499.106667pt;}
.yb9{bottom:502.493333pt;}
.y44{bottom:504.093333pt;}
.yb8{bottom:517.053333pt;}
.y43{bottom:518.813333pt;}
.y58{bottom:521.053333pt;}
.y1c{bottom:523.773333pt;}
.y38{bottom:539.520000pt;}
.y32{bottom:541.053333pt;}
.y42{bottom:542.333333pt;}
.y1b{bottom:549.693333pt;}
.ycd{bottom:553.373333pt;}
.yb7{bottom:567.773333pt;}
.y3d{bottom:569.053333pt;}
.y79{bottom:571.453333pt;}
.y97{bottom:572.093333pt;}
.y31{bottom:573.693333pt;}
.y1a{bottom:576.253333pt;}
.ya8{bottom:583.773333pt;}
.y78{bottom:586.173333pt;}
.y3c{bottom:592.733333pt;}
.yb6{bottom:596.093333pt;}
.y77{bottom:600.893333pt;}
.y96{bottom:602.173333pt;}
.y30{bottom:603.613333pt;}
.y19{bottom:603.933333pt;}
.ya7{bottom:607.293333pt;}
.y95{bottom:616.733333pt;}
.y76{bottom:618.173333pt;}
.y18{bottom:631.613333pt;}
.y9b{bottom:631.933333pt;}
.y2f{bottom:634.013333pt;}
.y7{bottom:640.403633pt;}
.yb5{bottom:640.733333pt;}
.y9a{bottom:646.653333pt;}
.y75{bottom:649.533333pt;}
.yb4{bottom:655.453333pt;}
.y2e{bottom:657.693333pt;}
.y6{bottom:658.922667pt;}
.y17{bottom:660.893333pt;}
.y55{bottom:663.453333pt;}
.y72{bottom:664.093333pt;}
.y94{bottom:667.453333pt;}
.ya4{bottom:669.373333pt;}
.y99{bottom:670.013333pt;}
.yb3{bottom:670.173333pt;}
.yae{bottom:687.453333pt;}
.yb2{bottom:687.773333pt;}
.ya3{bottom:689.213333pt;}
.y5{bottom:690.445705pt;}
.y16{bottom:690.813333pt;}
.yce{bottom:692.253333pt;}
.yad{bottom:702.173333pt;}
.y71{bottom:714.813333pt;}
.y4{bottom:715.920133pt;}
.ya2{bottom:720.573333pt;}
.y15{bottom:722.973333pt;}
.y41{bottom:723.133333pt;}
.y93{bottom:723.293333pt;}
.yac{bottom:725.533333pt;}
.y3{bottom:741.392000pt;}
.y6f{bottom:743.133333pt;}
.y40{bottom:746.653333pt;}
.yd0{bottom:750.653333pt;}
.ya1{bottom:750.813333pt;}
.y90{bottom:751.613333pt;}
.y14{bottom:755.173333pt;}
.y6e{bottom:771.493333pt;}
.ya0{bottom:774.533333pt;}
.y13{bottom:782.373333pt;}
.y51{bottom:788.133333pt;}
.y6d{bottom:799.653333pt;}
.y12{bottom:803.013333pt;}
.y8f{bottom:807.493333pt;}
.y11{bottom:826.213333pt;}
.yd2{bottom:826.853333pt;}
.y6b{bottom:827.973333pt;}
.y8e{bottom:835.813333pt;}
.y10{bottom:846.693333pt;}
.y2{bottom:849.334667pt;}
.y67{bottom:856.133333pt;}
.y8d{bottom:863.973333pt;}
.yf{bottom:870.213333pt;}
.ye{bottom:888.293333pt;}
.y8a{bottom:892.293333pt;}
.yd3{bottom:895.973333pt;}
.y1{bottom:902.702667pt;}
.y4f{bottom:911.333333pt;}
.yd{bottom:917.413333pt;}
.yc{bottom:937.573333pt;}
.y4e{bottom:953.733333pt;}
.yb{bottom:964.133333pt;}
.y66{bottom:964.613333pt;}
.yd4{bottom:964.933333pt;}
.y98{bottom:966.053333pt;}
.y4d{bottom:968.453333pt;}
.y65{bottom:979.333333pt;}
.y37{bottom:985.733333pt;}
.y2d{bottom:989.733333pt;}
.ya{bottom:990.533333pt;}
.y3b{bottom:991.493333pt;}
.y64{bottom:994.053333pt;}
.y2c{bottom:1009.920000pt;}
.y3a{bottom:1011.360000pt;}
.h2e{height:17.760000pt;}
.h1a{height:17.920000pt;}
.h2f{height:17.952000pt;}
.h30{height:18.080000pt;}
.h31{height:18.112000pt;}
.h19{height:19.520000pt;}
.h1b{height:25.280000pt;}
.h23{height:27.520000pt;}
.h25{height:27.552000pt;}
.h24{height:27.680000pt;}
.h17{height:27.840000pt;}
.h15{height:28.160000pt;}
.h6{height:36.263240pt;}
.h14{height:38.625000pt;}
.h18{height:39.190000pt;}
.h2c{height:39.350000pt;}
.hc{height:39.402500pt;}
.h5{height:49.197579pt;}
.h26{height:50.080000pt;}
.h21{height:50.752000pt;}
.h2a{height:55.200000pt;}
.h27{height:55.232000pt;}
.hd{height:55.402500pt;}
.h29{height:56.854549pt;}
.h11{height:58.563750pt;}
.h16{height:60.937500pt;}
.ha{height:61.410000pt;}
.hb{height:63.035000pt;}
.h10{height:63.656250pt;}
.hf{height:65.531250pt;}
.h13{height:65.812500pt;}
.h12{height:66.750000pt;}
.h28{height:68.992000pt;}
.h2b{height:69.310000pt;}
.h4{height:73.830015pt;}
.he{height:78.097500pt;}
.h3{height:80.751615pt;}
.h9{height:88.777500pt;}
.h22{height:91.360000pt;}
.h2d{height:100.125000pt;}
.h7{height:105.988305pt;}
.h1c{height:122.560000pt;}
.h1d{height:124.032000pt;}
.h1f{height:125.632000pt;}
.h20{height:141.600000pt;}
.h1e{height:141.760000pt;}
.h2{height:161.279597pt;}
.h0{height:1122.520000pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:74.912000pt;}
.w8{width:84.320000pt;}
.w6{width:93.600000pt;}
.w13{width:93.760000pt;}
.wc{width:93.792000pt;}
.w9{width:93.952000pt;}
.w14{width:100.032000pt;}
.we{width:118.752000pt;}
.w16{width:119.712000pt;}
.wd{width:122.080000pt;}
.w7{width:122.272000pt;}
.w1a{width:128.352000pt;}
.w1d{width:147.226667pt;}
.w1e{width:149.600000pt;}
.w17{width:149.626667pt;}
.w11{width:150.400000pt;}
.w19{width:150.586667pt;}
.w1f{width:163.706667pt;}
.w20{width:172.826667pt;}
.w10{width:178.586667pt;}
.w1c{width:197.786667pt;}
.wa{width:203.866667pt;}
.w15{width:206.906667pt;}
.w18{width:225.786667pt;}
.w1b{width:254.266667pt;}
.wb{width:263.706667pt;}
.w5{width:544.000000pt;}
.wf{width:600.573333pt;}
.w4{width:623.680000pt;}
.w0{width:793.701333pt;}
.w3{width:793.759988pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.558933pt;}
.x28{left:9.600000pt;}
.x3{left:62.362133pt;}
.x18{left:70.554667pt;}
.x17{left:80.634667pt;}
.x16{left:92.154667pt;}
.x5{left:96.031988pt;}
.xa{left:105.920000pt;}
.x8{left:125.311988pt;}
.xb{left:147.200000pt;}
.xf{left:190.906667pt;}
.x1{left:216.416000pt;}
.x26{left:246.906667pt;}
.x2{left:257.461333pt;}
.x19{left:276.066667pt;}
.x7{left:284.866655pt;}
.x1d{left:304.386667pt;}
.x1f{left:308.674667pt;}
.x10{left:313.826667pt;}
.x20{left:323.266667pt;}
.x24{left:351.586667pt;}
.x13{left:361.026667pt;}
.x6{left:396.866655pt;}
.x11{left:398.786667pt;}
.x21{left:417.666667pt;}
.x1a{left:427.266667pt;}
.xe{left:450.653322pt;}
.x14{left:455.613333pt;}
.x29{left:482.013333pt;}
.x27{left:491.133333pt;}
.x12{left:493.373333pt;}
.x1b{left:502.813333pt;}
.x1e{left:547.613333pt;}
.x25{left:550.013333pt;}
.x22{left:568.893333pt;}
.x15{left:578.493333pt;}
.x1c{left:597.213333pt;}
.x23{left:639.173322pt;}
.xd{left:641.733322pt;}
.xc{left:645.093322pt;}
.x9{left:698.053322pt;}
}




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