
    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_c388591e1abc94570d164b1e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2cbd5710efa2ed5788dae088.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_792f0817e08d6e035e64cf56.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dbc5534e1cc8597d91d5df88.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934082;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_4728e16fcda13ca5cfc8b0a0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.900879;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_88de07bf68b13548e88f8b4a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.711914;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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-0.960000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls7{letter-spacing:-0.240600px;}
.ls17{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.132600px;}
.ls16{letter-spacing:-0.067200px;}
.ls1f{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.023760px;}
.ls24{letter-spacing:0.025200px;}
.ls3{letter-spacing:0.038880px;}
.ls1c{letter-spacing:0.064200px;}
.ls1b{letter-spacing:0.066000px;}
.lsf{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.lsd{letter-spacing:0.169200px;}
.ls18{letter-spacing:0.174000px;}
.ls13{letter-spacing:0.175200px;}
.ls21{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.218400px;}
.lsa{letter-spacing:0.306000px;}
.ls1d{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.393600px;}
.ls8{letter-spacing:0.417000px;}
.ls27{letter-spacing:0.433440px;}
.ls11{letter-spacing:0.479400px;}
.lsb{letter-spacing:0.612000px;}
.ls23{letter-spacing:0.780000px;}
.ls14{letter-spacing:0.894240px;}
.ls22{letter-spacing:0.900000px;}
.ls9{letter-spacing:1.026000px;}
.ls1{letter-spacing:5.934240px;}
.ls26{letter-spacing:12.186720px;}
.ls1a{letter-spacing:22.986720px;}
.ls25{letter-spacing:42.426720px;}
.ls19{letter-spacing:46.026720px;}
.ls20{letter-spacing:46.170720px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws9{word-spacing:-13.899360px;}
.ws8{word-spacing:-13.811760px;}
.wse{word-spacing:-13.724160px;}
.wsd{word-spacing:-13.680960px;}
.wsa{word-spacing:-13.674960px;}
.wsc{word-spacing:-13.646160px;}
.ws11{word-spacing:-13.530960px;}
.ws6{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.440960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.wsf{word-spacing:-0.419760px;}
.ws7{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._22{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._29{margin-left:-4.441920px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.317240px;}
._30{width:2.424360px;}
._2f{width:3.525840px;}
._35{width:4.536720px;}
._2d{width:5.547240px;}
._2e{width:6.607800px;}
._33{width:8.351160px;}
._32{width:9.920160px;}
._31{width:10.995840px;}
._37{width:12.370320px;}
._2a{width:14.842800px;}
._2b{width:16.038720px;}
._36{width:17.202000px;}
._2c{width:18.397680px;}
._38{width:20.139120px;}
._43{width:21.687840px;}
._42{width:22.806720px;}
._3d{width:24.083280px;}
._40{width:25.538520px;}
._3a{width:48.525120px;}
._3c{width:78.225840px;}
._3b{width:90.416880px;}
._39{width:182.995320px;}
._3e{width:194.937120px;}
._34{width:202.638240px;}
._41{width:282.813240px;}
._3f{width:317.655840px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:6.660000px;}
.yd2{bottom:15.480000px;}
.yca{bottom:17.280000px;}
.yce{bottom:17.310000px;}
.yd3{bottom:24.300000px;}
.ycb{bottom:27.720000px;}
.ycf{bottom:27.750000px;}
.yf4{bottom:27.765000px;}
.yd5{bottom:27.900000px;}
.yf1{bottom:48.780000px;}
.yf3{bottom:48.825000px;}
.y6{bottom:60.660000px;}
.y95{bottom:90.180000px;}
.y64{bottom:93.060000px;}
.yd0{bottom:94.500000px;}
.y67{bottom:105.120000px;}
.yb6{bottom:108.180000px;}
.y94{bottom:111.240000px;}
.yff{bottom:113.220000px;}
.y63{bottom:114.120000px;}
.y10e{bottom:120.420000px;}
.y66{bottom:126.180000px;}
.yb5{bottom:129.240000px;}
.y2f{bottom:129.960000px;}
.y93{bottom:132.300000px;}
.yfe{bottom:134.280000px;}
.y62{bottom:135.180000px;}
.ycd{bottom:137.880000px;}
.y65{bottom:147.240000px;}
.yb4{bottom:150.300000px;}
.y2e{bottom:151.020000px;}
.y92{bottom:153.390000px;}
.yfd{bottom:155.370000px;}
.y61{bottom:156.270000px;}
.yb3{bottom:171.390000px;}
.y2d{bottom:172.110000px;}
.yfc{bottom:176.430000px;}
.y60{bottom:177.330000px;}
.yc9{bottom:181.290000px;}
.y91{bottom:183.270000px;}
.yb2{bottom:192.270000px;}
.y2c{bottom:193.170000px;}
.yfb{bottom:197.490000px;}
.y5f{bottom:198.390000px;}
.y90{bottom:204.330000px;}
.yb1{bottom:213.330000px;}
.y2b{bottom:214.230000px;}
.yfa{bottom:218.550000px;}
.y5e{bottom:219.270000px;}
.y8f{bottom:225.390000px;}
.yc8{bottom:231.330000px;}
.yb0{bottom:234.390000px;}
.y2a{bottom:235.290000px;}
.yf9{bottom:239.610000px;}
.y5d{bottom:240.330000px;}
.y8e{bottom:246.450000px;}
.yc7{bottom:252.390000px;}
.yaf{bottom:255.450000px;}
.y29{bottom:256.350000px;}
.yf8{bottom:260.670000px;}
.y5c{bottom:261.390000px;}
.y8d{bottom:267.510000px;}
.yc6{bottom:273.450000px;}
.yae{bottom:276.510000px;}
.y28{bottom:277.410000px;}
.yf7{bottom:281.730000px;}
.y5b{bottom:282.450000px;}
.y8c{bottom:288.570000px;}
.yc5{bottom:294.510000px;}
.yad{bottom:297.570000px;}
.y27{bottom:298.470000px;}
.yf6{bottom:302.790000px;}
.y5a{bottom:303.510000px;}
.y8b{bottom:309.630000px;}
.yc4{bottom:315.570000px;}
.yf5{bottom:317.910000px;}
.yac{bottom:318.630000px;}
.y26{bottom:319.530000px;}
.y59{bottom:324.570000px;}
.y8a{bottom:330.690000px;}
.yc3{bottom:336.630000px;}
.yab{bottom:339.690000px;}
.y25{bottom:340.590000px;}
.y58{bottom:345.630000px;}
.y102{bottom:348.690000px;}
.y89{bottom:351.750000px;}
.yc2{bottom:357.690000px;}
.y10d{bottom:360.750000px;}
.y24{bottom:361.650000px;}
.y57{bottom:366.690000px;}
.yaa{bottom:369.750000px;}
.y88{bottom:372.810000px;}
.yc1{bottom:378.750000px;}
.yf2{bottom:381.810000px;}
.y23{bottom:382.710000px;}
.y56{bottom:387.750000px;}
.ya9{bottom:390.810000px;}
.y87{bottom:393.870000px;}
.yc0{bottom:399.810000px;}
.y10c{bottom:402.915000px;}
.y22{bottom:403.815000px;}
.y55{bottom:408.855000px;}
.ya8{bottom:411.915000px;}
.ybf{bottom:420.915000px;}
.y86{bottom:423.975000px;}
.y21{bottom:424.875000px;}
.y54{bottom:429.915000px;}
.ya7{bottom:432.975000px;}
.ybe{bottom:441.975000px;}
.y85{bottom:445.035000px;}
.yf0{bottom:445.755000px;}
.y20{bottom:445.935000px;}
.y53{bottom:450.975000px;}
.ya6{bottom:454.035000px;}
.ybd{bottom:463.035000px;}
.y84{bottom:466.095000px;}
.y1f{bottom:466.995000px;}
.y52{bottom:472.035000px;}
.ya5{bottom:475.095000px;}
.ybc{bottom:484.095000px;}
.y83{bottom:487.155000px;}
.y1e{bottom:488.055000px;}
.y51{bottom:493.095000px;}
.ya4{bottom:496.155000px;}
.ybb{bottom:505.155000px;}
.y82{bottom:508.215000px;}
.y1d{bottom:509.115000px;}
.y50{bottom:514.155000px;}
.yef{bottom:516.495000px;}
.ya3{bottom:517.215000px;}
.yba{bottom:526.215000px;}
.y81{bottom:529.275000px;}
.y1c{bottom:530.175000px;}
.y4f{bottom:535.215000px;}
.yee{bottom:537.555000px;}
.y101{bottom:538.275000px;}
.ya2{bottom:547.275000px;}
.y80{bottom:550.335000px;}
.y1b{bottom:551.235000px;}
.y4e{bottom:556.275000px;}
.yed{bottom:558.615000px;}
.y100{bottom:559.335000px;}
.ya1{bottom:568.335000px;}
.y7f{bottom:571.395000px;}
.y1a{bottom:572.295000px;}
.y4d{bottom:577.335000px;}
.yec{bottom:579.675000px;}
.y10b{bottom:580.395000px;}
.ya0{bottom:589.395000px;}
.y7e{bottom:592.455000px;}
.y19{bottom:595.695000px;}
.y4c{bottom:598.395000px;}
.yeb{bottom:600.735000px;}
.y10a{bottom:601.455000px;}
.y9f{bottom:610.455000px;}
.y7d{bottom:613.515000px;}
.y4b{bottom:619.455000px;}
.yea{bottom:621.795000px;}
.y109{bottom:622.515000px;}
.y18{bottom:625.575000px;}
.y9e{bottom:631.515000px;}
.y7c{bottom:634.575000px;}
.y4a{bottom:640.515000px;}
.ye9{bottom:642.675000px;}
.y108{bottom:643.575000px;}
.y17{bottom:646.635000px;}
.y9d{bottom:652.605000px;}
.y7b{bottom:655.665000px;}
.y49{bottom:661.605000px;}
.ye8{bottom:663.765000px;}
.y107{bottom:664.665000px;}
.y16{bottom:667.725000px;}
.y9c{bottom:673.665000px;}
.y7a{bottom:676.725000px;}
.y48{bottom:682.665000px;}
.ye7{bottom:684.825000px;}
.y106{bottom:685.725000px;}
.y15{bottom:688.785000px;}
.y9b{bottom:694.725000px;}
.y47{bottom:703.725000px;}
.ye6{bottom:705.885000px;}
.y79{bottom:706.785000px;}
.y14{bottom:709.845000px;}
.y9a{bottom:715.785000px;}
.y46{bottom:724.785000px;}
.ye5{bottom:726.945000px;}
.y78{bottom:727.845000px;}
.y13{bottom:730.905000px;}
.y99{bottom:736.845000px;}
.y45{bottom:745.845000px;}
.ye4{bottom:748.005000px;}
.y77{bottom:748.905000px;}
.y12{bottom:751.965000px;}
.y98{bottom:757.905000px;}
.y44{bottom:766.905000px;}
.ye3{bottom:769.065000px;}
.y76{bottom:769.965000px;}
.y11{bottom:773.025000px;}
.y97{bottom:778.965000px;}
.y43{bottom:787.965000px;}
.ye2{bottom:790.125000px;}
.y75{bottom:791.025000px;}
.y10{bottom:794.085000px;}
.y96{bottom:800.025000px;}
.y42{bottom:809.025000px;}
.ye1{bottom:811.185000px;}
.y74{bottom:812.085000px;}
.yf{bottom:815.145000px;}
.yb9{bottom:821.085000px;}
.y41{bottom:830.085000px;}
.ye0{bottom:832.245000px;}
.y73{bottom:833.145000px;}
.ye{bottom:836.385000px;}
.yb8{bottom:842.145000px;}
.y40{bottom:851.145000px;}
.ydf{bottom:853.305000px;}
.y72{bottom:854.205000px;}
.yb7{bottom:863.205000px;}
.yd{bottom:864.825000px;}
.y3f{bottom:872.205000px;}
.yde{bottom:874.365000px;}
.y71{bottom:875.265000px;}
.y105{bottom:884.265000px;}
.yc{bottom:885.885000px;}
.y3e{bottom:893.265000px;}
.ydd{bottom:895.425000px;}
.y70{bottom:896.325000px;}
.yb{bottom:902.490000px;}
.y104{bottom:905.370000px;}
.y3d{bottom:914.370000px;}
.ydc{bottom:916.530000px;}
.ya{bottom:924.810000px;}
.y6f{bottom:926.430000px;}
.y3c{bottom:935.430000px;}
.ydb{bottom:937.590000px;}
.y6e{bottom:947.490000px;}
.y9{bottom:950.010000px;}
.y3b{bottom:956.490000px;}
.yda{bottom:958.650000px;}
.y6d{bottom:968.550000px;}
.y3a{bottom:977.550000px;}
.yd9{bottom:979.710000px;}
.y8{bottom:983.850000px;}
.y6c{bottom:989.610000px;}
.y39{bottom:998.610000px;}
.yd8{bottom:1000.770000px;}
.y6b{bottom:1010.670000px;}
.y7{bottom:1017.510000px;}
.y38{bottom:1019.670000px;}
.yd7{bottom:1021.830000px;}
.y6a{bottom:1031.730000px;}
.yd6{bottom:1036.950000px;}
.y37{bottom:1040.730000px;}
.y69{bottom:1052.790000px;}
.y5{bottom:1056.210000px;}
.y36{bottom:1061.790000px;}
.y68{bottom:1073.850000px;}
.yd4{bottom:1076.910000px;}
.y35{bottom:1082.850000px;}
.y4{bottom:1086.810000px;}
.y103{bottom:1094.910000px;}
.y34{bottom:1103.910000px;}
.y3{bottom:1117.590000px;}
.yd1{bottom:1120.470000px;}
.y33{bottom:1124.970000px;}
.y32{bottom:1146.030000px;}
.y2{bottom:1148.400000px;}
.y31{bottom:1173.960000px;}
.y1{bottom:1180.620000px;}
.y30{bottom:1194.120000px;}
.h7{height:38.671172px;}
.he{height:38.700000px;}
.hc{height:38.736000px;}
.ha{height:42.120000px;}
.hb{height:42.156000px;}
.hd{height:42.300000px;}
.h9{height:45.170156px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.hf{height:63.180000px;}
.h10{height:63.216000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:40.140000px;}
.we{width:61.920000px;}
.w7{width:63.396000px;}
.w6{width:79.020000px;}
.wc{width:85.860000px;}
.wa{width:116.100000px;}
.w10{width:116.460000px;}
.wb{width:125.496000px;}
.wd{width:128.556000px;}
.w5{width:129.816000px;}
.w8{width:130.140000px;}
.wf{width:180.030000px;}
.w9{width:180.750000px;}
.w4{width:221.970000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x19{left:52.919987px;}
.x6{left:53.999987px;}
.x1a{left:59.039987px;}
.x11{left:64.259987px;}
.x10{left:74.879987px;}
.x12{left:80.999987px;}
.x18{left:86.075987px;}
.x7{left:96.515987px;}
.x8{left:108.035987px;}
.x9{left:113.436000px;}
.xb{left:153.930000px;}
.x5{left:176.969987px;}
.x3{left:272.414987px;}
.x13{left:277.095000px;}
.x2{left:350.714987px;}
.xc{left:376.275000px;}
.x14{left:393.555000px;}
.x4{left:419.294987px;}
.x1{left:479.444987px;}
.xd{left:506.445000px;}
.x15{left:519.405000px;}
.xe{left:586.005000px;}
.x16{left:605.625000px;}
.xf{left:649.770000px;}
.x17{left:734.550000px;}
.x1b{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.853333pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls7{letter-spacing:-0.213867pt;}
.ls17{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls16{letter-spacing:-0.059733pt;}
.ls1f{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.021120pt;}
.ls24{letter-spacing:0.022400pt;}
.ls3{letter-spacing:0.034560pt;}
.ls1c{letter-spacing:0.057067pt;}
.ls1b{letter-spacing:0.058667pt;}
.lsf{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.lsd{letter-spacing:0.150400pt;}
.ls18{letter-spacing:0.154667pt;}
.ls13{letter-spacing:0.155733pt;}
.ls21{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.194133pt;}
.lsa{letter-spacing:0.272000pt;}
.ls1d{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.349867pt;}
.ls8{letter-spacing:0.370667pt;}
.ls27{letter-spacing:0.385280pt;}
.ls11{letter-spacing:0.426133pt;}
.lsb{letter-spacing:0.544000pt;}
.ls23{letter-spacing:0.693333pt;}
.ls14{letter-spacing:0.794880pt;}
.ls22{letter-spacing:0.800000pt;}
.ls9{letter-spacing:0.912000pt;}
.ls1{letter-spacing:5.274880pt;}
.ls26{letter-spacing:10.832640pt;}
.ls1a{letter-spacing:20.432640pt;}
.ls25{letter-spacing:37.712640pt;}
.ls19{letter-spacing:40.912640pt;}
.ls20{letter-spacing:41.040640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws9{word-spacing:-12.354987pt;}
.ws8{word-spacing:-12.277120pt;}
.wse{word-spacing:-12.199253pt;}
.wsd{word-spacing:-12.160853pt;}
.wsa{word-spacing:-12.155520pt;}
.wsc{word-spacing:-12.129920pt;}
.ws11{word-spacing:-12.027520pt;}
.ws6{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.947520pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.wsf{word-spacing:-0.373120pt;}
.ws7{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._22{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._29{margin-left:-3.948373pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.170880pt;}
._30{width:2.154987pt;}
._2f{width:3.134080pt;}
._35{width:4.032640pt;}
._2d{width:4.930880pt;}
._2e{width:5.873600pt;}
._33{width:7.423253pt;}
._32{width:8.817920pt;}
._31{width:9.774080pt;}
._37{width:10.995840pt;}
._2a{width:13.193600pt;}
._2b{width:14.256640pt;}
._36{width:15.290667pt;}
._2c{width:16.353493pt;}
._38{width:17.901440pt;}
._43{width:19.278080pt;}
._42{width:20.272640pt;}
._3d{width:21.407360pt;}
._40{width:22.700907pt;}
._3a{width:43.133440pt;}
._3c{width:69.534080pt;}
._3b{width:80.370560pt;}
._39{width:162.662507pt;}
._3e{width:173.277440pt;}
._34{width:180.122880pt;}
._41{width:251.389547pt;}
._3f{width:282.360747pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:5.920000pt;}
.yd2{bottom:13.760000pt;}
.yca{bottom:15.360000pt;}
.yce{bottom:15.386667pt;}
.yd3{bottom:21.600000pt;}
.ycb{bottom:24.640000pt;}
.ycf{bottom:24.666667pt;}
.yf4{bottom:24.680000pt;}
.yd5{bottom:24.800000pt;}
.yf1{bottom:43.360000pt;}
.yf3{bottom:43.400000pt;}
.y6{bottom:53.920000pt;}
.y95{bottom:80.160000pt;}
.y64{bottom:82.720000pt;}
.yd0{bottom:84.000000pt;}
.y67{bottom:93.440000pt;}
.yb6{bottom:96.160000pt;}
.y94{bottom:98.880000pt;}
.yff{bottom:100.640000pt;}
.y63{bottom:101.440000pt;}
.y10e{bottom:107.040000pt;}
.y66{bottom:112.160000pt;}
.yb5{bottom:114.880000pt;}
.y2f{bottom:115.520000pt;}
.y93{bottom:117.600000pt;}
.yfe{bottom:119.360000pt;}
.y62{bottom:120.160000pt;}
.ycd{bottom:122.560000pt;}
.y65{bottom:130.880000pt;}
.yb4{bottom:133.600000pt;}
.y2e{bottom:134.240000pt;}
.y92{bottom:136.346667pt;}
.yfd{bottom:138.106667pt;}
.y61{bottom:138.906667pt;}
.yb3{bottom:152.346667pt;}
.y2d{bottom:152.986667pt;}
.yfc{bottom:156.826667pt;}
.y60{bottom:157.626667pt;}
.yc9{bottom:161.146667pt;}
.y91{bottom:162.906667pt;}
.yb2{bottom:170.906667pt;}
.y2c{bottom:171.706667pt;}
.yfb{bottom:175.546667pt;}
.y5f{bottom:176.346667pt;}
.y90{bottom:181.626667pt;}
.yb1{bottom:189.626667pt;}
.y2b{bottom:190.426667pt;}
.yfa{bottom:194.266667pt;}
.y5e{bottom:194.906667pt;}
.y8f{bottom:200.346667pt;}
.yc8{bottom:205.626667pt;}
.yb0{bottom:208.346667pt;}
.y2a{bottom:209.146667pt;}
.yf9{bottom:212.986667pt;}
.y5d{bottom:213.626667pt;}
.y8e{bottom:219.066667pt;}
.yc7{bottom:224.346667pt;}
.yaf{bottom:227.066667pt;}
.y29{bottom:227.866667pt;}
.yf8{bottom:231.706667pt;}
.y5c{bottom:232.346667pt;}
.y8d{bottom:237.786667pt;}
.yc6{bottom:243.066667pt;}
.yae{bottom:245.786667pt;}
.y28{bottom:246.586667pt;}
.yf7{bottom:250.426667pt;}
.y5b{bottom:251.066667pt;}
.y8c{bottom:256.506667pt;}
.yc5{bottom:261.786667pt;}
.yad{bottom:264.506667pt;}
.y27{bottom:265.306667pt;}
.yf6{bottom:269.146667pt;}
.y5a{bottom:269.786667pt;}
.y8b{bottom:275.226667pt;}
.yc4{bottom:280.506667pt;}
.yf5{bottom:282.586667pt;}
.yac{bottom:283.226667pt;}
.y26{bottom:284.026667pt;}
.y59{bottom:288.506667pt;}
.y8a{bottom:293.946667pt;}
.yc3{bottom:299.226667pt;}
.yab{bottom:301.946667pt;}
.y25{bottom:302.746667pt;}
.y58{bottom:307.226667pt;}
.y102{bottom:309.946667pt;}
.y89{bottom:312.666667pt;}
.yc2{bottom:317.946667pt;}
.y10d{bottom:320.666667pt;}
.y24{bottom:321.466667pt;}
.y57{bottom:325.946667pt;}
.yaa{bottom:328.666667pt;}
.y88{bottom:331.386667pt;}
.yc1{bottom:336.666667pt;}
.yf2{bottom:339.386667pt;}
.y23{bottom:340.186667pt;}
.y56{bottom:344.666667pt;}
.ya9{bottom:347.386667pt;}
.y87{bottom:350.106667pt;}
.yc0{bottom:355.386667pt;}
.y10c{bottom:358.146667pt;}
.y22{bottom:358.946667pt;}
.y55{bottom:363.426667pt;}
.ya8{bottom:366.146667pt;}
.ybf{bottom:374.146667pt;}
.y86{bottom:376.866667pt;}
.y21{bottom:377.666667pt;}
.y54{bottom:382.146667pt;}
.ya7{bottom:384.866667pt;}
.ybe{bottom:392.866667pt;}
.y85{bottom:395.586667pt;}
.yf0{bottom:396.226667pt;}
.y20{bottom:396.386667pt;}
.y53{bottom:400.866667pt;}
.ya6{bottom:403.586667pt;}
.ybd{bottom:411.586667pt;}
.y84{bottom:414.306667pt;}
.y1f{bottom:415.106667pt;}
.y52{bottom:419.586667pt;}
.ya5{bottom:422.306667pt;}
.ybc{bottom:430.306667pt;}
.y83{bottom:433.026667pt;}
.y1e{bottom:433.826667pt;}
.y51{bottom:438.306667pt;}
.ya4{bottom:441.026667pt;}
.ybb{bottom:449.026667pt;}
.y82{bottom:451.746667pt;}
.y1d{bottom:452.546667pt;}
.y50{bottom:457.026667pt;}
.yef{bottom:459.106667pt;}
.ya3{bottom:459.746667pt;}
.yba{bottom:467.746667pt;}
.y81{bottom:470.466667pt;}
.y1c{bottom:471.266667pt;}
.y4f{bottom:475.746667pt;}
.yee{bottom:477.826667pt;}
.y101{bottom:478.466667pt;}
.ya2{bottom:486.466667pt;}
.y80{bottom:489.186667pt;}
.y1b{bottom:489.986667pt;}
.y4e{bottom:494.466667pt;}
.yed{bottom:496.546667pt;}
.y100{bottom:497.186667pt;}
.ya1{bottom:505.186667pt;}
.y7f{bottom:507.906667pt;}
.y1a{bottom:508.706667pt;}
.y4d{bottom:513.186667pt;}
.yec{bottom:515.266667pt;}
.y10b{bottom:515.906667pt;}
.ya0{bottom:523.906667pt;}
.y7e{bottom:526.626667pt;}
.y19{bottom:529.506667pt;}
.y4c{bottom:531.906667pt;}
.yeb{bottom:533.986667pt;}
.y10a{bottom:534.626667pt;}
.y9f{bottom:542.626667pt;}
.y7d{bottom:545.346667pt;}
.y4b{bottom:550.626667pt;}
.yea{bottom:552.706667pt;}
.y109{bottom:553.346667pt;}
.y18{bottom:556.066667pt;}
.y9e{bottom:561.346667pt;}
.y7c{bottom:564.066667pt;}
.y4a{bottom:569.346667pt;}
.ye9{bottom:571.266667pt;}
.y108{bottom:572.066667pt;}
.y17{bottom:574.786667pt;}
.y9d{bottom:580.093333pt;}
.y7b{bottom:582.813333pt;}
.y49{bottom:588.093333pt;}
.ye8{bottom:590.013333pt;}
.y107{bottom:590.813333pt;}
.y16{bottom:593.533333pt;}
.y9c{bottom:598.813333pt;}
.y7a{bottom:601.533333pt;}
.y48{bottom:606.813333pt;}
.ye7{bottom:608.733333pt;}
.y106{bottom:609.533333pt;}
.y15{bottom:612.253333pt;}
.y9b{bottom:617.533333pt;}
.y47{bottom:625.533333pt;}
.ye6{bottom:627.453333pt;}
.y79{bottom:628.253333pt;}
.y14{bottom:630.973333pt;}
.y9a{bottom:636.253333pt;}
.y46{bottom:644.253333pt;}
.ye5{bottom:646.173333pt;}
.y78{bottom:646.973333pt;}
.y13{bottom:649.693333pt;}
.y99{bottom:654.973333pt;}
.y45{bottom:662.973333pt;}
.ye4{bottom:664.893333pt;}
.y77{bottom:665.693333pt;}
.y12{bottom:668.413333pt;}
.y98{bottom:673.693333pt;}
.y44{bottom:681.693333pt;}
.ye3{bottom:683.613333pt;}
.y76{bottom:684.413333pt;}
.y11{bottom:687.133333pt;}
.y97{bottom:692.413333pt;}
.y43{bottom:700.413333pt;}
.ye2{bottom:702.333333pt;}
.y75{bottom:703.133333pt;}
.y10{bottom:705.853333pt;}
.y96{bottom:711.133333pt;}
.y42{bottom:719.133333pt;}
.ye1{bottom:721.053333pt;}
.y74{bottom:721.853333pt;}
.yf{bottom:724.573333pt;}
.yb9{bottom:729.853333pt;}
.y41{bottom:737.853333pt;}
.ye0{bottom:739.773333pt;}
.y73{bottom:740.573333pt;}
.ye{bottom:743.453333pt;}
.yb8{bottom:748.573333pt;}
.y40{bottom:756.573333pt;}
.ydf{bottom:758.493333pt;}
.y72{bottom:759.293333pt;}
.yb7{bottom:767.293333pt;}
.yd{bottom:768.733333pt;}
.y3f{bottom:775.293333pt;}
.yde{bottom:777.213333pt;}
.y71{bottom:778.013333pt;}
.y105{bottom:786.013333pt;}
.yc{bottom:787.453333pt;}
.y3e{bottom:794.013333pt;}
.ydd{bottom:795.933333pt;}
.y70{bottom:796.733333pt;}
.yb{bottom:802.213333pt;}
.y104{bottom:804.773333pt;}
.y3d{bottom:812.773333pt;}
.ydc{bottom:814.693333pt;}
.ya{bottom:822.053333pt;}
.y6f{bottom:823.493333pt;}
.y3c{bottom:831.493333pt;}
.ydb{bottom:833.413333pt;}
.y6e{bottom:842.213333pt;}
.y9{bottom:844.453333pt;}
.y3b{bottom:850.213333pt;}
.yda{bottom:852.133333pt;}
.y6d{bottom:860.933333pt;}
.y3a{bottom:868.933333pt;}
.yd9{bottom:870.853333pt;}
.y8{bottom:874.533333pt;}
.y6c{bottom:879.653333pt;}
.y39{bottom:887.653333pt;}
.yd8{bottom:889.573333pt;}
.y6b{bottom:898.373333pt;}
.y7{bottom:904.453333pt;}
.y38{bottom:906.373333pt;}
.yd7{bottom:908.293333pt;}
.y6a{bottom:917.093333pt;}
.yd6{bottom:921.733333pt;}
.y37{bottom:925.093333pt;}
.y69{bottom:935.813333pt;}
.y5{bottom:938.853333pt;}
.y36{bottom:943.813333pt;}
.y68{bottom:954.533333pt;}
.yd4{bottom:957.253333pt;}
.y35{bottom:962.533333pt;}
.y4{bottom:966.053333pt;}
.y103{bottom:973.253333pt;}
.y34{bottom:981.253333pt;}
.y3{bottom:993.413333pt;}
.yd1{bottom:995.973333pt;}
.y33{bottom:999.973333pt;}
.y32{bottom:1018.693333pt;}
.y2{bottom:1020.800000pt;}
.y31{bottom:1043.520000pt;}
.y1{bottom:1049.440000pt;}
.y30{bottom:1061.440000pt;}
.h7{height:34.374375pt;}
.he{height:34.400000pt;}
.hc{height:34.432000pt;}
.ha{height:37.440000pt;}
.hb{height:37.472000pt;}
.hd{height:37.600000pt;}
.h9{height:40.151250pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.hf{height:56.160000pt;}
.h10{height:56.192000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:35.680000pt;}
.we{width:55.040000pt;}
.w7{width:56.352000pt;}
.w6{width:70.240000pt;}
.wc{width:76.320000pt;}
.wa{width:103.200000pt;}
.w10{width:103.520000pt;}
.wb{width:111.552000pt;}
.wd{width:114.272000pt;}
.w5{width:115.392000pt;}
.w8{width:115.680000pt;}
.wf{width:160.026667pt;}
.w9{width:160.666667pt;}
.w4{width:197.306667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x19{left:47.039988pt;}
.x6{left:47.999988pt;}
.x1a{left:52.479988pt;}
.x11{left:57.119988pt;}
.x10{left:66.559988pt;}
.x12{left:71.999988pt;}
.x18{left:76.511988pt;}
.x7{left:85.791988pt;}
.x8{left:96.031988pt;}
.x9{left:100.832000pt;}
.xb{left:136.826667pt;}
.x5{left:157.306655pt;}
.x3{left:242.146655pt;}
.x13{left:246.306667pt;}
.x2{left:311.746655pt;}
.xc{left:334.466667pt;}
.x14{left:349.826667pt;}
.x4{left:372.706655pt;}
.x1{left:426.173322pt;}
.xd{left:450.173333pt;}
.x15{left:461.693333pt;}
.xe{left:520.893333pt;}
.x16{left:538.333333pt;}
.xf{left:577.573333pt;}
.x17{left:652.933333pt;}
.x1b{left:746.079988pt;}
}




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