
    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_fcd2d7dd90761796521a3921.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_3cdf2cdbf6e51e1e63a5f953.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_68390ef28e2d992313be04b7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_9b5ca07124caa94519bcd210.woff')format("woff");}.ff4{font-family:ff4;line-height:1.213379;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_ac09a241d397dc1258f169c2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_1d57569d52ab5c49c3988d18.woff')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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_e5d2edefcf60aae8d694c835.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_472f19209ffa623dbc94453b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.030273;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_0c4bfe97f3ceb7ce6877c474.woff')format("woff");}.ff9{font-family:ff9;line-height:0.859375;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_6b7df3d520335cb62aeb74ea.woff')format("woff");}.ffa{font-family:ffa;line-height:0.859375;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_6e461af6a2971506d50582f9.woff')format("woff");}.ffb{font-family:ffb;line-height:1.030273;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_82746e1a8d3e224abd18fe37.woff')format("woff");}.ffc{font-family:ffc;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_507ce6769ef1a88236154008.woff')format("woff");}.ffd{font-family:ffd;line-height:1.030273;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_1415bb40dc5fa5d821491d9b.woff')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_edbd535e8920a97740eeec21.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d48cd6e6f56885102f90e126.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_da00100aa1c5837154b8cc03.woff')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.512400px;}
.ls5{letter-spacing:-0.348600px;}
.ls3{letter-spacing:-0.247800px;}
.ls7{letter-spacing:-0.230400px;}
.ls2{letter-spacing:-0.224400px;}
.ls4{letter-spacing:-0.031680px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.106800px;}
.ls8{letter-spacing:64.002720px;}
.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;}
}
.ws1{word-spacing:-120.240000px;}
.ws4{word-spacing:-72.000000px;}
.wsc{word-spacing:-59.760000px;}
.ws2{word-spacing:-23.206320px;}
.wsa{word-spacing:-16.272000px;}
.ws0{word-spacing:-14.616000px;}
.ws3{word-spacing:-13.446720px;}
.ws8{word-spacing:-13.415040px;}
.wsb{word-spacing:-13.216320px;}
.ws7{word-spacing:-13.198920px;}
.ws5{word-spacing:-12.934320px;}
.ws9{word-spacing:-10.962000px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-6.384240px;}
._3{margin-left:-5.100480px;}
._2{margin-left:-2.980800px;}
._0{margin-left:-1.962000px;}
._1{width:1.314000px;}
._7{width:2.691120px;}
._6{width:16.793280px;}
._5{width:17.958720px;}
.fc3{color:rgb(79,79,78);}
.fc1{color:rgb(133,23,172);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:3.780000px;}
.y95{bottom:4.674000px;}
.y19{bottom:4.680000px;}
.yb0{bottom:4.725000px;}
.yeb{bottom:4.860000px;}
.y9{bottom:5.040000px;}
.y4a{bottom:5.220000px;}
.ya{bottom:5.580000px;}
.y49{bottom:6.300000px;}
.yb{bottom:6.480000px;}
.y4b{bottom:7.920000px;}
.y17{bottom:13.680000px;}
.yd8{bottom:13.725000px;}
.yed{bottom:13.860000px;}
.y24{bottom:14.220000px;}
.y60{bottom:14.580000px;}
.y25{bottom:14.760000px;}
.ye8{bottom:15.480000px;}
.ye9{bottom:16.560000px;}
.ya5{bottom:20.340000px;}
.ydc{bottom:23.400000px;}
.ybd{bottom:23.445000px;}
.yd3{bottom:23.754000px;}
.y20{bottom:23.760000px;}
.y110{bottom:23.805000px;}
.y61{bottom:24.660000px;}
.y58{bottom:24.834000px;}
.y18{bottom:24.840000px;}
.y4d{bottom:24.870000px;}
.yaf{bottom:24.885000px;}
.y10a{bottom:26.460000px;}
.yea{bottom:26.820000px;}
.y10b{bottom:27.540000px;}
.y1b{bottom:33.840000px;}
.y42{bottom:33.885000px;}
.y51{bottom:34.920000px;}
.y41{bottom:34.965000px;}
.ya4{bottom:36.720000px;}
.yf1{bottom:43.740000px;}
.y34{bottom:43.914000px;}
.y45{bottom:43.920000px;}
.y54{bottom:43.965000px;}
.y5e{bottom:44.820000px;}
.y111{bottom:44.865000px;}
.y37{bottom:44.994000px;}
.y1d{bottom:45.000000px;}
.y43{bottom:45.045000px;}
.y10c{bottom:48.780000px;}
.y121{bottom:52.770000px;}
.ya3{bottom:53.280000px;}
.y5b{bottom:54.000000px;}
.y5a{bottom:54.900000px;}
.y3{bottom:57.996000px;}
.yac{bottom:62.460000px;}
.yae{bottom:62.505000px;}
.y105{bottom:64.080000px;}
.y5d{bottom:64.980000px;}
.y36{bottom:65.154000px;}
.y30{bottom:65.160000px;}
.y1c{bottom:65.205000px;}
.ya2{bottom:70.560000px;}
.yb9{bottom:72.900000px;}
.y120{bottom:72.930000px;}
.yd5{bottom:74.160000px;}
.y9d{bottom:76.860000px;}
.y9c{bottom:77.940000px;}
.y2{bottom:79.956000px;}
.y3b{bottom:84.240000px;}
.y5c{bottom:85.140000px;}
.y55{bottom:85.185000px;}
.y35{bottom:85.314000px;}
.y3a{bottom:85.320000px;}
.y9a{bottom:85.365000px;}
.ya1{bottom:90.720000px;}
.y11f{bottom:92.910000px;}
.y119{bottom:92.925000px;}
.yb8{bottom:93.060000px;}
.y71{bottom:94.314000px;}
.y98{bottom:94.320000px;}
.y70{bottom:95.394000px;}
.y97{bottom:95.400000px;}
.y3f{bottom:105.300000px;}
.y76{bottom:105.474000px;}
.y78{bottom:105.480000px;}
.y8c{bottom:105.510000px;}
.ya0{bottom:110.880000px;}
.yb7{bottom:113.040000px;}
.y11e{bottom:113.070000px;}
.y118{bottom:113.085000px;}
.yc8{bottom:116.130000px;}
.y26{bottom:120.996000px;}
.ya9{bottom:122.790000px;}
.y75{bottom:125.454000px;}
.y3e{bottom:125.460000px;}
.yaa{bottom:125.490000px;}
.y57{bottom:125.496000px;}
.y106{bottom:125.640000px;}
.y8b{bottom:125.670000px;}
.y9f{bottom:131.040000px;}
.y65{bottom:134.460000px;}
.y90{bottom:134.679000px;}
.y64{bottom:135.540000px;}
.y8f{bottom:135.579000px;}
.yc7{bottom:136.290000px;}
.yf2{bottom:136.656000px;}
.y6f{bottom:139.356000px;}
.y3d{bottom:145.620000px;}
.y8a{bottom:145.650000px;}
.y74{bottom:145.659000px;}
.yd2{bottom:147.276000px;}
.y8e{bottom:148.356000px;}
.yb3{bottom:149.976000px;}
.yf4{bottom:150.690000px;}
.y9e{bottom:151.200000px;}
.ydd{bottom:155.190000px;}
.yc6{bottom:156.450000px;}
.y3c{bottom:165.780000px;}
.y89{bottom:165.810000px;}
.y73{bottom:165.819000px;}
.y15{bottom:173.340000px;}
.yc5{bottom:176.610000px;}
.y6a{bottom:185.940000px;}
.y88{bottom:185.970000px;}
.y72{bottom:185.979000px;}
.y12f{bottom:186.510000px;}
.y56{bottom:187.410000px;}
.y14{bottom:193.320000px;}
.yc4{bottom:196.770000px;}
.yf0{bottom:197.130000px;}
.y69{bottom:205.920000px;}
.y87{bottom:206.130000px;}
.y94{bottom:206.139000px;}
.yd1{bottom:209.190000px;}
.y2e{bottom:212.079000px;}
.y112{bottom:212.610000px;}
.y13{bottom:213.480000px;}
.yc3{bottom:216.750000px;}
.y33{bottom:223.230000px;}
.y12e{bottom:223.950000px;}
.yb2{bottom:224.850000px;}
.y7b{bottom:225.210000px;}
.y68{bottom:226.080000px;}
.y7a{bottom:226.290000px;}
.y93{bottom:226.299000px;}
.y2d{bottom:232.239000px;}
.y12{bottom:233.640000px;}
.yc2{bottom:236.910000px;}
.y67{bottom:246.240000px;}
.y86{bottom:246.450000px;}
.y92{bottom:246.459000px;}
.y53{bottom:249.330000px;}
.y2c{bottom:252.399000px;}
.y11{bottom:253.800000px;}
.yc1{bottom:257.070000px;}
.y12d{bottom:260.130000px;}
.yb1{bottom:262.290000px;}
.y66{bottom:266.445000px;}
.y85{bottom:266.610000px;}
.y91{bottom:266.619000px;}
.y2b{bottom:272.559000px;}
.y10{bottom:273.960000px;}
.y10f{bottom:274.530000px;}
.yc0{bottom:277.230000px;}
.yad{bottom:280.110000px;}
.y12c{bottom:281.190000px;}
.y84{bottom:286.770000px;}
.y2a{bottom:292.719000px;}
.yf{bottom:294.165000px;}
.ybf{bottom:297.390000px;}
.yef{bottom:299.235000px;}
.y12b{bottom:302.475000px;}
.y32{bottom:305.355000px;}
.y83{bottom:306.930000px;}
.yd0{bottom:311.475000px;}
.y29{bottom:312.879000px;}
.ye{bottom:314.325000px;}
.y12a{bottom:324.615000px;}
.y82{bottom:326.910000px;}
.y28{bottom:333.039000px;}
.yd{bottom:334.485000px;}
.y10e{bottom:336.495000px;}
.y6e{bottom:342.255000px;}
.y129{bottom:345.855000px;}
.y81{bottom:347.070000px;}
.y52{bottom:351.615000px;}
.y27{bottom:353.199000px;}
.yee{bottom:361.155000px;}
.yab{bottom:361.515000px;}
.y128{bottom:367.095000px;}
.y80{bottom:367.230000px;}
.y31{bottom:367.275000px;}
.ycf{bottom:373.395000px;}
.y7f{bottom:387.435000px;}
.y127{bottom:389.415000px;}
.y50{bottom:393.375000px;}
.y6d{bottom:404.175000px;}
.y7e{bottom:407.595000px;}
.y2f{bottom:409.035000px;}
.y126{bottom:411.555000px;}
.y10d{bottom:418.575000px;}
.yec{bottom:423.075000px;}
.y7d{bottom:427.755000px;}
.y8d{bottom:431.895000px;}
.y125{bottom:432.795000px;}
.ya8{bottom:442.875000px;}
.ye3{bottom:443.415000px;}
.y7c{bottom:447.915000px;}
.yce{bottom:455.475000px;}
.ye2{bottom:463.575000px;}
.ye7{bottom:465.015000px;}
.y6c{bottom:466.095000px;}
.y124{bottom:466.995000px;}
.y79{bottom:473.655000px;}
.y4f{bottom:475.455000px;}
.y109{bottom:480.495000px;}
.ye1{bottom:483.735000px;}
.y123{bottom:488.055000px;}
.y23{bottom:491.115000px;}
.ye0{bottom:503.895000px;}
.ye6{bottom:510.375000px;}
.y4e{bottom:517.215000px;}
.ybe{bottom:517.395000px;}
.y122{bottom:521.535000px;}
.ydf{bottom:524.055000px;}
.y11d{bottom:537.015000px;}
.y4c{bottom:542.055000px;}
.yde{bottom:544.215000px;}
.y108{bottom:547.815000px;}
.y6b{bottom:548.175000px;}
.y22{bottom:553.395000px;}
.yc{bottom:572.145000px;}
.ye5{bottom:572.325000px;}
.ycd{bottom:579.345000px;}
.y48{bottom:583.845000px;}
.ya7{bottom:584.565000px;}
.y107{bottom:589.605000px;}
.y63{bottom:590.145000px;}
.y47{bottom:608.685000px;}
.ycc{bottom:621.105000px;}
.y9b{bottom:626.325000px;}
.y104{bottom:631.365000px;}
.y21{bottom:634.065000px;}
.y46{bottom:650.445000px;}
.ye4{bottom:654.405000px;}
.y11c{bottom:667.185000px;}
.ycb{bottom:683.025000px;}
.yff{bottom:692.895000px;}
.y1f{bottom:695.985000px;}
.y11b{bottom:711.105000px;}
.y44{bottom:712.365000px;}
.yfe{bottom:713.100000px;}
.ydb{bottom:716.325000px;}
.yfd{bottom:733.080000px;}
.y11a{bottom:748.545000px;}
.yfc{bottom:753.240000px;}
.y1e{bottom:757.905000px;}
.yca{bottom:765.105000px;}
.y117{bottom:767.265000px;}
.yfb{bottom:773.400000px;}
.y103{bottom:773.925000px;}
.yda{bottom:778.785000px;}
.yc9{bottom:789.945000px;}
.yfa{bottom:793.560000px;}
.y99{bottom:794.445000px;}
.y1a{bottom:799.665000px;}
.yf9{bottom:813.720000px;}
.y40{bottom:814.605000px;}
.y102{bottom:815.685000px;}
.yd9{bottom:816.225000px;}
.ybc{bottom:831.705000px;}
.yf8{bottom:833.880000px;}
.yd7{bottom:834.765000px;}
.yf7{bottom:854.040000px;}
.y62{bottom:873.510000px;}
.yf6{bottom:874.200000px;}
.yd6{bottom:876.570000px;}
.y101{bottom:877.650000px;}
.y16{bottom:881.790000px;}
.ybb{bottom:894.210000px;}
.yf5{bottom:894.360000px;}
.y39{bottom:896.730000px;}
.y116{bottom:897.270000px;}
.y5f{bottom:915.450000px;}
.y8{bottom:923.550000px;}
.yba{bottom:931.650000px;}
.y77{bottom:938.490000px;}
.y115{bottom:941.370000px;}
.yb6{bottom:950.190000px;}
.y59{bottom:957.210000px;}
.y7{bottom:967.650000px;}
.yd4{bottom:978.810000px;}
.y114{bottom:997.350000px;}
.y100{bottom:1000.050000px;}
.y6{bottom:1005.270000px;}
.y5{bottom:1042.530000px;}
.y113{bottom:1059.270000px;}
.yf3{bottom:1061.970000px;}
.y38{bottom:1079.430000px;}
.yb5{bottom:1080.330000px;}
.y4{bottom:1084.650000px;}
.y96{bottom:1099.590000px;}
.yb4{bottom:1124.250000px;}
.y1{bottom:1141.380000px;}
.h6{height:21.960000px;}
.h15{height:23.400000px;}
.h1a{height:40.140000px;}
.h9{height:40.320000px;}
.h16{height:40.356000px;}
.h28{height:43.920000px;}
.h22{height:45.641602px;}
.h30{height:51.793945px;}
.hd{height:55.987031px;}
.h7{height:57.410156px;}
.ha{height:58.218750px;}
.hc{height:60.300000px;}
.h2e{height:60.336000px;}
.h10{height:60.480000px;}
.h13{height:60.516000px;}
.h2{height:62.402344px;}
.h2d{height:65.880000px;}
.h29{height:71.613281px;}
.h5{height:73.722656px;}
.h17{height:80.460000px;}
.h11{height:80.496000px;}
.hf{height:80.640000px;}
.hb{height:80.676000px;}
.h18{height:100.656000px;}
.h12{height:100.800000px;}
.h20{height:100.836000px;}
.h4{height:101.628633px;}
.h3{height:109.437187px;}
.h19{height:120.780000px;}
.h2b{height:120.960000px;}
.h24{height:128.520000px;}
.h2f{height:128.556000px;}
.h23{height:140.976000px;}
.h2c{height:141.120000px;}
.h26{height:161.130000px;}
.h21{height:166.680000px;}
.h14{height:181.260000px;}
.h1f{height:201.420000px;}
.h1c{height:201.450000px;}
.h1b{height:281.910000px;}
.h1e{height:282.090000px;}
.h25{height:312.870000px;}
.h8{height:349.950000px;}
.he{height:368.670000px;}
.h1d{height:463.395000px;}
.h27{height:559.695000px;}
.h2a{height:909.825000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:16.920000px;}
.w9{width:32.400000px;}
.w5{width:51.120000px;}
.w7{width:51.156000px;}
.w6{width:51.300000px;}
.w4{width:51.336000px;}
.wd{width:51.840000px;}
.wf{width:51.876000px;}
.we{width:52.020000px;}
.wc{width:52.056000px;}
.w3{width:178.560000px;}
.wb{width:179.280000px;}
.wa{width:253.650000px;}
.w13{width:270.750000px;}
.w8{width:287.670000px;}
.w10{width:288.390000px;}
.w11{width:678.345000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.380000px;}
.x9{left:10.800000px;}
.x7{left:11.925000px;}
.xf{left:16.605000px;}
.xb{left:21.420000px;}
.x11{left:25.605000px;}
.x3{left:108.035987px;}
.x4{left:109.476000px;}
.x13{left:135.035987px;}
.xe{left:143.820000px;}
.x14{left:162.029987px;}
.x6{left:289.470000px;}
.x8{left:342.255000px;}
.xa{left:394.815000px;}
.xc{left:447.555000px;}
.xd{left:500.145000px;}
.x12{left:517.065000px;}
.x10{left:534.165000px;}
.x2{left:775.589987px;}
.x1{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.455467pt;}
.ls5{letter-spacing:-0.309867pt;}
.ls3{letter-spacing:-0.220267pt;}
.ls7{letter-spacing:-0.204800pt;}
.ls2{letter-spacing:-0.199467pt;}
.ls4{letter-spacing:-0.028160pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.094933pt;}
.ls8{letter-spacing:56.891307pt;}
.ws1{word-spacing:-106.880000pt;}
.ws4{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws2{word-spacing:-20.627840pt;}
.wsa{word-spacing:-14.464000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws3{word-spacing:-11.952640pt;}
.ws8{word-spacing:-11.924480pt;}
.wsb{word-spacing:-11.747840pt;}
.ws7{word-spacing:-11.732373pt;}
.ws5{word-spacing:-11.497173pt;}
.ws9{word-spacing:-9.744000pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-5.674880pt;}
._3{margin-left:-4.533760pt;}
._2{margin-left:-2.649600pt;}
._0{margin-left:-1.744000pt;}
._1{width:1.168000pt;}
._7{width:2.392107pt;}
._6{width:14.927360pt;}
._5{width:15.963307pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:3.360000pt;}
.y95{bottom:4.154667pt;}
.y19{bottom:4.160000pt;}
.yb0{bottom:4.200000pt;}
.yeb{bottom:4.320000pt;}
.y9{bottom:4.480000pt;}
.y4a{bottom:4.640000pt;}
.ya{bottom:4.960000pt;}
.y49{bottom:5.600000pt;}
.yb{bottom:5.760000pt;}
.y4b{bottom:7.040000pt;}
.y17{bottom:12.160000pt;}
.yd8{bottom:12.200000pt;}
.yed{bottom:12.320000pt;}
.y24{bottom:12.640000pt;}
.y60{bottom:12.960000pt;}
.y25{bottom:13.120000pt;}
.ye8{bottom:13.760000pt;}
.ye9{bottom:14.720000pt;}
.ya5{bottom:18.080000pt;}
.ydc{bottom:20.800000pt;}
.ybd{bottom:20.840000pt;}
.yd3{bottom:21.114667pt;}
.y20{bottom:21.120000pt;}
.y110{bottom:21.160000pt;}
.y61{bottom:21.920000pt;}
.y58{bottom:22.074667pt;}
.y18{bottom:22.080000pt;}
.y4d{bottom:22.106667pt;}
.yaf{bottom:22.120000pt;}
.y10a{bottom:23.520000pt;}
.yea{bottom:23.840000pt;}
.y10b{bottom:24.480000pt;}
.y1b{bottom:30.080000pt;}
.y42{bottom:30.120000pt;}
.y51{bottom:31.040000pt;}
.y41{bottom:31.080000pt;}
.ya4{bottom:32.640000pt;}
.yf1{bottom:38.880000pt;}
.y34{bottom:39.034667pt;}
.y45{bottom:39.040000pt;}
.y54{bottom:39.080000pt;}
.y5e{bottom:39.840000pt;}
.y111{bottom:39.880000pt;}
.y37{bottom:39.994667pt;}
.y1d{bottom:40.000000pt;}
.y43{bottom:40.040000pt;}
.y10c{bottom:43.360000pt;}
.y121{bottom:46.906667pt;}
.ya3{bottom:47.360000pt;}
.y5b{bottom:48.000000pt;}
.y5a{bottom:48.800000pt;}
.y3{bottom:51.552000pt;}
.yac{bottom:55.520000pt;}
.yae{bottom:55.560000pt;}
.y105{bottom:56.960000pt;}
.y5d{bottom:57.760000pt;}
.y36{bottom:57.914667pt;}
.y30{bottom:57.920000pt;}
.y1c{bottom:57.960000pt;}
.ya2{bottom:62.720000pt;}
.yb9{bottom:64.800000pt;}
.y120{bottom:64.826667pt;}
.yd5{bottom:65.920000pt;}
.y9d{bottom:68.320000pt;}
.y9c{bottom:69.280000pt;}
.y2{bottom:71.072000pt;}
.y3b{bottom:74.880000pt;}
.y5c{bottom:75.680000pt;}
.y55{bottom:75.720000pt;}
.y35{bottom:75.834667pt;}
.y3a{bottom:75.840000pt;}
.y9a{bottom:75.880000pt;}
.ya1{bottom:80.640000pt;}
.y11f{bottom:82.586667pt;}
.y119{bottom:82.600000pt;}
.yb8{bottom:82.720000pt;}
.y71{bottom:83.834667pt;}
.y98{bottom:83.840000pt;}
.y70{bottom:84.794667pt;}
.y97{bottom:84.800000pt;}
.y3f{bottom:93.600000pt;}
.y76{bottom:93.754667pt;}
.y78{bottom:93.760000pt;}
.y8c{bottom:93.786667pt;}
.ya0{bottom:98.560000pt;}
.yb7{bottom:100.480000pt;}
.y11e{bottom:100.506667pt;}
.y118{bottom:100.520000pt;}
.yc8{bottom:103.226667pt;}
.y26{bottom:107.552000pt;}
.ya9{bottom:109.146667pt;}
.y75{bottom:111.514667pt;}
.y3e{bottom:111.520000pt;}
.yaa{bottom:111.546667pt;}
.y57{bottom:111.552000pt;}
.y106{bottom:111.680000pt;}
.y8b{bottom:111.706667pt;}
.y9f{bottom:116.480000pt;}
.y65{bottom:119.520000pt;}
.y90{bottom:119.714667pt;}
.y64{bottom:120.480000pt;}
.y8f{bottom:120.514667pt;}
.yc7{bottom:121.146667pt;}
.yf2{bottom:121.472000pt;}
.y6f{bottom:123.872000pt;}
.y3d{bottom:129.440000pt;}
.y8a{bottom:129.466667pt;}
.y74{bottom:129.474667pt;}
.yd2{bottom:130.912000pt;}
.y8e{bottom:131.872000pt;}
.yb3{bottom:133.312000pt;}
.yf4{bottom:133.946667pt;}
.y9e{bottom:134.400000pt;}
.ydd{bottom:137.946667pt;}
.yc6{bottom:139.066667pt;}
.y3c{bottom:147.360000pt;}
.y89{bottom:147.386667pt;}
.y73{bottom:147.394667pt;}
.y15{bottom:154.080000pt;}
.yc5{bottom:156.986667pt;}
.y6a{bottom:165.280000pt;}
.y88{bottom:165.306667pt;}
.y72{bottom:165.314667pt;}
.y12f{bottom:165.786667pt;}
.y56{bottom:166.586667pt;}
.y14{bottom:171.840000pt;}
.yc4{bottom:174.906667pt;}
.yf0{bottom:175.226667pt;}
.y69{bottom:183.040000pt;}
.y87{bottom:183.226667pt;}
.y94{bottom:183.234667pt;}
.yd1{bottom:185.946667pt;}
.y2e{bottom:188.514667pt;}
.y112{bottom:188.986667pt;}
.y13{bottom:189.760000pt;}
.yc3{bottom:192.666667pt;}
.y33{bottom:198.426667pt;}
.y12e{bottom:199.066667pt;}
.yb2{bottom:199.866667pt;}
.y7b{bottom:200.186667pt;}
.y68{bottom:200.960000pt;}
.y7a{bottom:201.146667pt;}
.y93{bottom:201.154667pt;}
.y2d{bottom:206.434667pt;}
.y12{bottom:207.680000pt;}
.yc2{bottom:210.586667pt;}
.y67{bottom:218.880000pt;}
.y86{bottom:219.066667pt;}
.y92{bottom:219.074667pt;}
.y53{bottom:221.626667pt;}
.y2c{bottom:224.354667pt;}
.y11{bottom:225.600000pt;}
.yc1{bottom:228.506667pt;}
.y12d{bottom:231.226667pt;}
.yb1{bottom:233.146667pt;}
.y66{bottom:236.840000pt;}
.y85{bottom:236.986667pt;}
.y91{bottom:236.994667pt;}
.y2b{bottom:242.274667pt;}
.y10{bottom:243.520000pt;}
.y10f{bottom:244.026667pt;}
.yc0{bottom:246.426667pt;}
.yad{bottom:248.986667pt;}
.y12c{bottom:249.946667pt;}
.y84{bottom:254.906667pt;}
.y2a{bottom:260.194667pt;}
.yf{bottom:261.480000pt;}
.ybf{bottom:264.346667pt;}
.yef{bottom:265.986667pt;}
.y12b{bottom:268.866667pt;}
.y32{bottom:271.426667pt;}
.y83{bottom:272.826667pt;}
.yd0{bottom:276.866667pt;}
.y29{bottom:278.114667pt;}
.ye{bottom:279.400000pt;}
.y12a{bottom:288.546667pt;}
.y82{bottom:290.586667pt;}
.y28{bottom:296.034667pt;}
.yd{bottom:297.320000pt;}
.y10e{bottom:299.106667pt;}
.y6e{bottom:304.226667pt;}
.y129{bottom:307.426667pt;}
.y81{bottom:308.506667pt;}
.y52{bottom:312.546667pt;}
.y27{bottom:313.954667pt;}
.yee{bottom:321.026667pt;}
.yab{bottom:321.346667pt;}
.y128{bottom:326.306667pt;}
.y80{bottom:326.426667pt;}
.y31{bottom:326.466667pt;}
.ycf{bottom:331.906667pt;}
.y7f{bottom:344.386667pt;}
.y127{bottom:346.146667pt;}
.y50{bottom:349.666667pt;}
.y6d{bottom:359.266667pt;}
.y7e{bottom:362.306667pt;}
.y2f{bottom:363.586667pt;}
.y126{bottom:365.826667pt;}
.y10d{bottom:372.066667pt;}
.yec{bottom:376.066667pt;}
.y7d{bottom:380.226667pt;}
.y8d{bottom:383.906667pt;}
.y125{bottom:384.706667pt;}
.ya8{bottom:393.666667pt;}
.ye3{bottom:394.146667pt;}
.y7c{bottom:398.146667pt;}
.yce{bottom:404.866667pt;}
.ye2{bottom:412.066667pt;}
.ye7{bottom:413.346667pt;}
.y6c{bottom:414.306667pt;}
.y124{bottom:415.106667pt;}
.y79{bottom:421.026667pt;}
.y4f{bottom:422.626667pt;}
.y109{bottom:427.106667pt;}
.ye1{bottom:429.986667pt;}
.y123{bottom:433.826667pt;}
.y23{bottom:436.546667pt;}
.ye0{bottom:447.906667pt;}
.ye6{bottom:453.666667pt;}
.y4e{bottom:459.746667pt;}
.ybe{bottom:459.906667pt;}
.y122{bottom:463.586667pt;}
.ydf{bottom:465.826667pt;}
.y11d{bottom:477.346667pt;}
.y4c{bottom:481.826667pt;}
.yde{bottom:483.746667pt;}
.y108{bottom:486.946667pt;}
.y6b{bottom:487.266667pt;}
.y22{bottom:491.906667pt;}
.yc{bottom:508.573333pt;}
.ye5{bottom:508.733333pt;}
.ycd{bottom:514.973333pt;}
.y48{bottom:518.973333pt;}
.ya7{bottom:519.613333pt;}
.y107{bottom:524.093333pt;}
.y63{bottom:524.573333pt;}
.y47{bottom:541.053333pt;}
.ycc{bottom:552.093333pt;}
.y9b{bottom:556.733333pt;}
.y104{bottom:561.213333pt;}
.y21{bottom:563.613333pt;}
.y46{bottom:578.173333pt;}
.ye4{bottom:581.693333pt;}
.y11c{bottom:593.053333pt;}
.ycb{bottom:607.133333pt;}
.yff{bottom:615.906667pt;}
.y1f{bottom:618.653333pt;}
.y11b{bottom:632.093333pt;}
.y44{bottom:633.213333pt;}
.yfe{bottom:633.866667pt;}
.ydb{bottom:636.733333pt;}
.yfd{bottom:651.626667pt;}
.y11a{bottom:665.373333pt;}
.yfc{bottom:669.546667pt;}
.y1e{bottom:673.693333pt;}
.yca{bottom:680.093333pt;}
.y117{bottom:682.013333pt;}
.yfb{bottom:687.466667pt;}
.y103{bottom:687.933333pt;}
.yda{bottom:692.253333pt;}
.yc9{bottom:702.173333pt;}
.yfa{bottom:705.386667pt;}
.y99{bottom:706.173333pt;}
.y1a{bottom:710.813333pt;}
.yf9{bottom:723.306667pt;}
.y40{bottom:724.093333pt;}
.y102{bottom:725.053333pt;}
.yd9{bottom:725.533333pt;}
.ybc{bottom:739.293333pt;}
.yf8{bottom:741.226667pt;}
.yd7{bottom:742.013333pt;}
.yf7{bottom:759.146667pt;}
.y62{bottom:776.453333pt;}
.yf6{bottom:777.066667pt;}
.yd6{bottom:779.173333pt;}
.y101{bottom:780.133333pt;}
.y16{bottom:783.813333pt;}
.ybb{bottom:794.853333pt;}
.yf5{bottom:794.986667pt;}
.y39{bottom:797.093333pt;}
.y116{bottom:797.573333pt;}
.y5f{bottom:813.733333pt;}
.y8{bottom:820.933333pt;}
.yba{bottom:828.133333pt;}
.y77{bottom:834.213333pt;}
.y115{bottom:836.773333pt;}
.yb6{bottom:844.613333pt;}
.y59{bottom:850.853333pt;}
.y7{bottom:860.133333pt;}
.yd4{bottom:870.053333pt;}
.y114{bottom:886.533333pt;}
.y100{bottom:888.933333pt;}
.y6{bottom:893.573333pt;}
.y5{bottom:926.693333pt;}
.y113{bottom:941.573333pt;}
.yf3{bottom:943.973333pt;}
.y38{bottom:959.493333pt;}
.yb5{bottom:960.293333pt;}
.y4{bottom:964.133333pt;}
.y96{bottom:977.413333pt;}
.yb4{bottom:999.333333pt;}
.y1{bottom:1014.560000pt;}
.h6{height:19.520000pt;}
.h15{height:20.800000pt;}
.h1a{height:35.680000pt;}
.h9{height:35.840000pt;}
.h16{height:35.872000pt;}
.h28{height:39.040000pt;}
.h22{height:40.570312pt;}
.h30{height:46.039063pt;}
.hd{height:49.766250pt;}
.h7{height:51.031250pt;}
.ha{height:51.750000pt;}
.hc{height:53.600000pt;}
.h2e{height:53.632000pt;}
.h10{height:53.760000pt;}
.h13{height:53.792000pt;}
.h2{height:55.468750pt;}
.h2d{height:58.560000pt;}
.h29{height:63.656250pt;}
.h5{height:65.531250pt;}
.h17{height:71.520000pt;}
.h11{height:71.552000pt;}
.hf{height:71.680000pt;}
.hb{height:71.712000pt;}
.h18{height:89.472000pt;}
.h12{height:89.600000pt;}
.h20{height:89.632000pt;}
.h4{height:90.336562pt;}
.h3{height:97.277500pt;}
.h19{height:107.360000pt;}
.h2b{height:107.520000pt;}
.h24{height:114.240000pt;}
.h2f{height:114.272000pt;}
.h23{height:125.312000pt;}
.h2c{height:125.440000pt;}
.h26{height:143.226667pt;}
.h21{height:148.160000pt;}
.h14{height:161.120000pt;}
.h1f{height:179.040000pt;}
.h1c{height:179.066667pt;}
.h1b{height:250.586667pt;}
.h1e{height:250.746667pt;}
.h25{height:278.106667pt;}
.h8{height:311.066667pt;}
.he{height:327.706667pt;}
.h1d{height:411.906667pt;}
.h27{height:497.506667pt;}
.h2a{height:808.733333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:15.040000pt;}
.w9{width:28.800000pt;}
.w5{width:45.440000pt;}
.w7{width:45.472000pt;}
.w6{width:45.600000pt;}
.w4{width:45.632000pt;}
.wd{width:46.080000pt;}
.wf{width:46.112000pt;}
.we{width:46.240000pt;}
.wc{width:46.272000pt;}
.w3{width:158.720000pt;}
.wb{width:159.360000pt;}
.wa{width:225.466667pt;}
.w13{width:240.666667pt;}
.w8{width:255.706667pt;}
.w10{width:256.346667pt;}
.w11{width:602.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.560000pt;}
.x9{left:9.600000pt;}
.x7{left:10.600000pt;}
.xf{left:14.760000pt;}
.xb{left:19.040000pt;}
.x11{left:22.760000pt;}
.x3{left:96.031988pt;}
.x4{left:97.312000pt;}
.x13{left:120.031988pt;}
.xe{left:127.840000pt;}
.x14{left:144.026655pt;}
.x6{left:257.306667pt;}
.x8{left:304.226667pt;}
.xa{left:350.946667pt;}
.xc{left:397.826667pt;}
.xd{left:444.573333pt;}
.x12{left:459.613333pt;}
.x10{left:474.813333pt;}
.x2{left:689.413322pt;}
.x1{left:697.893322pt;}
}




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