
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5ceb4fc5a579659ef7506e30.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_892bb844b94b004903207326.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8014afe14e0df2b4a6d467b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_39e8a16ecbcca4ac7cc6dd1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fac10841065d551601e7941e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_461c203ab0cca24094f3b415.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_cba5bbfefc8627645058b161.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_75779e051df37370526c6935.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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_05684ecb1cbc4651636fead3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v4{vertical-align:30.240000px;}
.v3{vertical-align:35.280000px;}
.v5{vertical-align:42.120000px;}
.ls29{letter-spacing:-0.444600px;}
.ls1e{letter-spacing:-0.409200px;}
.ls19{letter-spacing:-0.358800px;}
.ls10{letter-spacing:-0.186600px;}
.ls1d{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls2a{letter-spacing:-0.117600px;}
.ls6{letter-spacing:-0.090000px;}
.lsf{letter-spacing:-0.084600px;}
.ls20{letter-spacing:-0.068400px;}
.ls17{letter-spacing:-0.063600px;}
.ls23{letter-spacing:-0.040320px;}
.ls1a{letter-spacing:-0.029880px;}
.ls8{letter-spacing:-0.029400px;}
.ls24{letter-spacing:-0.027360px;}
.ls1b{letter-spacing:-0.020880px;}
.ls1f{letter-spacing:-0.013320px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000364px;}
.ls14{letter-spacing:0.005400px;}
.ls18{letter-spacing:0.031320px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls13{letter-spacing:0.056160px;}
.ls21{letter-spacing:0.068400px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls26{letter-spacing:0.116400px;}
.ls25{letter-spacing:0.133800px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.173400px;}
.lse{letter-spacing:0.173520px;}
.ls15{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.183000px;}
.ls11{letter-spacing:0.199200px;}
.ls22{letter-spacing:0.293520px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls1c{letter-spacing:2.613600px;}
.ls28{letter-spacing:47.726640px;}
.ls27{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.453600px;}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.425600px;}
.ws3{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.213080px;}
.wsc{word-spacing:-13.162800px;}
.ws16{word-spacing:-13.158000px;}
.ws1b{word-spacing:-13.108800px;}
.ws13{word-spacing:-13.064400px;}
.ws8{word-spacing:-13.039800px;}
.ws14{word-spacing:-12.817200px;}
.ws12{word-spacing:-11.429400px;}
.ws11{word-spacing:-11.225520px;}
.ws17{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-9.297720px;}
.wse{word-spacing:-9.266764px;}
.ws10{word-spacing:-9.236520px;}
.wsf{word-spacing:-8.907600px;}
.ws1a{word-spacing:-8.687400px;}
.ws18{word-spacing:-8.553600px;}
.ws19{word-spacing:-8.526240px;}
.ws7{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._10{margin-left:-3.869763px;}
._8{margin-left:-2.686200px;}
._0{margin-left:-1.110000px;}
._2{width:1.006644px;}
._3{width:2.096099px;}
._5{width:3.405636px;}
._1{width:4.948836px;}
._4{width:5.985960px;}
._6{width:7.935600px;}
._c{width:9.018000px;}
._a{width:10.821600px;}
._b{width:12.047400px;}
._14{width:14.609160px;}
._e{width:16.112160px;}
._9{width:17.194200px;}
._d{width:19.118160px;}
._f{width:20.320560px;}
._7{width:21.763200px;}
._11{width:23.354868px;}
._13{width:134.082360px;}
._12{width:199.754868px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs7{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y88{bottom:7.830000px;}
.y84{bottom:7.920000px;}
.y9f{bottom:7.950000px;}
.yc5{bottom:13.050000px;}
.yc4{bottom:35.190000px;}
.y2{bottom:55.380000px;}
.y96{bottom:62.460000px;}
.y8b{bottom:62.550000px;}
.y86{bottom:62.580000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:83.640000px;}
.y29{bottom:91.830000px;}
.y124{bottom:111.990000px;}
.ye9{bottom:119.640000px;}
.y123{bottom:129.540000px;}
.yfa{bottom:130.170000px;}
.y82{bottom:133.320000px;}
.yaf{bottom:135.840000px;}
.ye8{bottom:137.190000px;}
.y59{bottom:138.270000px;}
.yc3{bottom:139.800000px;}
.y122{bottom:147.090000px;}
.yf9{bottom:147.720000px;}
.yae{bottom:153.390000px;}
.ye7{bottom:154.740000px;}
.y27{bottom:155.820000px;}
.yc2{bottom:157.440000px;}
.yf8{bottom:165.270000px;}
.y81{bottom:168.960000px;}
.yad{bottom:171.030000px;}
.ye6{bottom:172.380000px;}
.y26{bottom:173.460000px;}
.y121{bottom:173.730000px;}
.y58{bottom:173.910000px;}
.yf7{bottom:182.910000px;}
.yc1{bottom:183.990000px;}
.yac{bottom:188.580000px;}
.ye5{bottom:189.930000px;}
.y25{bottom:191.010000px;}
.y120{bottom:191.280000px;}
.y57{bottom:191.460000px;}
.yf6{bottom:200.460000px;}
.y80{bottom:204.510000px;}
.y24{bottom:208.650000px;}
.y56{bottom:209.100000px;}
.y11f{bottom:217.830000px;}
.yc0{bottom:219.630000px;}
.y7f{bottom:222.150000px;}
.yab{bottom:224.220000px;}
.ye4{bottom:224.760000px;}
.y23{bottom:226.200000px;}
.yf5{bottom:227.370000px;}
.y11e{bottom:235.470000px;}
.y55{bottom:235.650000px;}
.ye3{bottom:237.000000px;}
.ybf{bottom:237.180000px;}
.y7e{bottom:239.700000px;}
.yaa{bottom:241.770000px;}
.y22{bottom:243.750000px;}
.ybe{bottom:254.730000px;}
.ya9{bottom:259.320000px;}
.y11d{bottom:262.020000px;}
.ye2{bottom:264.360000px;}
.y54{bottom:271.200000px;}
.ybd{bottom:272.370000px;}
.y7d{bottom:275.250000px;}
.yf4{bottom:275.700000px;}
.ya8{bottom:276.960000px;}
.y21{bottom:279.390000px;}
.y11c{bottom:279.660000px;}
.y53{bottom:288.840000px;}
.ybc{bottom:289.920000px;}
.ye1{bottom:291.630000px;}
.y7c{bottom:292.890000px;}
.ya7{bottom:294.510000px;}
.y20{bottom:296.940000px;}
.y11b{bottom:297.210000px;}
.yf3{bottom:301.530000px;}
.y52{bottom:306.390000px;}
.ybb{bottom:307.560000px;}
.y7b{bottom:310.440000px;}
.ya6{bottom:312.150000px;}
.y1f{bottom:314.580000px;}
.yf2{bottom:315.570000px;}
.ye0{bottom:318.990000px;}
.y11a{bottom:323.760000px;}
.y51{bottom:323.940000px;}
.yba{bottom:325.110000px;}
.y7a{bottom:327.990000px;}
.yf1{bottom:329.700000px;}
.y1e{bottom:332.130000px;}
.yf0{bottom:341.130000px;}
.y119{bottom:341.400000px;}
.yb9{bottom:342.660000px;}
.yde{bottom:346.350000px;}
.ya5{bottom:347.700000px;}
.y1d{bottom:349.680000px;}
.y50{bottom:350.580000px;}
.y79{bottom:354.630000px;}
.yb8{bottom:360.300000px;}
.ya4{bottom:365.250000px;}
.y1c{bottom:367.320000px;}
.y118{bottom:367.950000px;}
.ydf{bottom:373.620000px;}
.yb7{bottom:377.850000px;}
.ya3{bottom:382.890000px;}
.y1b{bottom:384.870000px;}
.y117{bottom:385.590000px;}
.y4f{bottom:386.130000px;}
.y78{bottom:390.540000px;}
.yb6{bottom:395.400000px;}
.ya2{bottom:400.440000px;}
.y1a{bottom:402.420000px;}
.y116{bottom:403.140000px;}
.y4e{bottom:403.770000px;}
.ya1{bottom:418.080000px;}
.y4d{bottom:421.320000px;}
.ydd{bottom:422.400000px;}
.y19{bottom:429.330000px;}
.y115{bottom:429.690000px;}
.yb5{bottom:431.040000px;}
.y76{bottom:438.240000px;}
.y4c{bottom:438.870000px;}
.y75{bottom:447.330000px;}
.yb4{bottom:448.590000px;}
.ydc{bottom:448.950000px;}
.y77{bottom:451.830000px;}
.ya0{bottom:452.910000px;}
.y4b{bottom:456.510000px;}
.y9c{bottom:465.060000px;}
.y114{bottom:473.910000px;}
.yb3{bottom:474.540000px;}
.y18{bottom:477.960000px;}
.y4a{bottom:483.090000px;}
.ydb{bottom:484.530000px;}
.yb2{bottom:488.580000px;}
.y74{bottom:491.010000px;}
.y113{bottom:491.550000px;}
.y9e{bottom:492.450000px;}
.yda{bottom:502.170000px;}
.yb1{bottom:502.620000px;}
.y73{bottom:508.560000px;}
.y112{bottom:509.100000px;}
.yb0{bottom:514.050000px;}
.y17{bottom:515.040000px;}
.y49{bottom:518.730000px;}
.yd9{bottom:519.720000px;}
.y9d{bottom:519.810000px;}
.y72{bottom:526.200000px;}
.y16{bottom:532.590000px;}
.y111{bottom:535.650000px;}
.y48{bottom:536.280000px;}
.y99{bottom:547.080000px;}
.y15{bottom:550.230000px;}
.y110{bottom:553.290000px;}
.y47{bottom:553.830000px;}
.yd8{bottom:555.360000px;}
.y71{bottom:561.750000px;}
.y14{bottom:567.780000px;}
.y46{bottom:571.470000px;}
.yd7{bottom:572.910000px;}
.y9b{bottom:574.440000px;}
.y70{bottom:579.390000px;}
.y10f{bottom:579.840000px;}
.y13{bottom:585.330000px;}
.y45{bottom:589.020000px;}
.yd6{bottom:590.460000px;}
.y6f{bottom:596.940000px;}
.y10e{bottom:597.480000px;}
.y9a{bottom:601.800000px;}
.y12{bottom:602.970000px;}
.yd5{bottom:608.100000px;}
.y6e{bottom:614.490000px;}
.y11{bottom:620.520000px;}
.y10d{bottom:624.030000px;}
.y44{bottom:624.660000px;}
.yd4{bottom:625.650000px;}
.y95{bottom:629.160000px;}
.y10{bottom:638.070000px;}
.y6d{bottom:641.130000px;}
.y10c{bottom:641.580000px;}
.y43{bottom:642.210000px;}
.yd3{bottom:643.200000px;}
.yf{bottom:655.710000px;}
.y98{bottom:656.430000px;}
.y10b{bottom:659.220000px;}
.y42{bottom:659.760000px;}
.yd2{bottom:660.840000px;}
.ye{bottom:673.260000px;}
.y6c{bottom:676.680000px;}
.y41{bottom:677.400000px;}
.y97{bottom:683.790000px;}
.y10a{bottom:685.770000px;}
.yd{bottom:690.900000px;}
.y6b{bottom:694.230000px;}
.y40{bottom:694.950000px;}
.yd1{bottom:696.390000px;}
.y109{bottom:703.410000px;}
.yc{bottom:708.450000px;}
.y94{bottom:711.150000px;}
.y6a{bottom:711.870000px;}
.y3f{bottom:712.590000px;}
.yd0{bottom:714.030000px;}
.y69{bottom:729.420000px;}
.y108{bottom:729.960000px;}
.ycf{bottom:731.580000px;}
.yb{bottom:735.360000px;}
.y3e{bottom:739.500000px;}
.y107{bottom:747.510000px;}
.yce{bottom:749.130000px;}
.y93{bottom:759.840000px;}
.y68{bottom:765.060000px;}
.ycd{bottom:766.770000px;}
.yef{bottom:769.740000px;}
.y106{bottom:774.150000px;}
.y92{bottom:777.390000px;}
.ya{bottom:782.160000px;}
.y67{bottom:782.610000px;}
.ycc{bottom:784.320000px;}
.yee{bottom:787.290000px;}
.y3d{bottom:787.740000px;}
.y105{bottom:791.700000px;}
.y66{bottom:800.160000px;}
.yed{bottom:804.930000px;}
.y3c{bottom:805.290000px;}
.y91{bottom:813.030000px;}
.y9{bottom:817.980000px;}
.y104{bottom:818.340000px;}
.ycb{bottom:819.960000px;}
.y3b{bottom:822.930000px;}
.y65{bottom:826.800000px;}
.y8e{bottom:827.970000px;}
.y103{bottom:835.890000px;}
.yca{bottom:837.510000px;}
.y3a{bottom:840.480000px;}
.y8{bottom:853.980000px;}
.yc9{bottom:855.060000px;}
.y90{bottom:855.330000px;}
.yec{bottom:858.030000px;}
.y64{bottom:861.000000px;}
.y102{bottom:862.800000px;}
.y63{bottom:868.560000px;}
.yc8{bottom:872.700000px;}
.yeb{bottom:875.670000px;}
.y39{bottom:876.030000px;}
.y8f{bottom:882.600000px;}
.y7{bottom:889.980000px;}
.yc7{bottom:890.250000px;}
.y38{bottom:893.670000px;}
.y6{bottom:907.980000px;}
.y62{bottom:908.340000px;}
.y8a{bottom:909.960000px;}
.y101{bottom:911.040000px;}
.y37{bottom:911.220000px;}
.yc6{bottom:925.170000px;}
.y61{bottom:925.980000px;}
.y36{bottom:928.860000px;}
.y8d{bottom:937.320000px;}
.y100{bottom:937.950000px;}
.y5{bottom:944.070000px;}
.y35{bottom:946.410000px;}
.y60{bottom:952.530000px;}
.y34{bottom:963.960000px;}
.y8c{bottom:964.680000px;}
.yff{bottom:975.030000px;}
.y33{bottom:981.600000px;}
.y4{bottom:982.320000px;}
.y5f{bottom:986.730000px;}
.y85{bottom:991.950000px;}
.yfe{bottom:992.580000px;}
.y5e{bottom:994.290000px;}
.yea{bottom:999.150000px;}
.y3{bottom:1006.980000px;}
.yfd{bottom:1010.160000px;}
.y32{bottom:1017.180000px;}
.y89{bottom:1019.340000px;}
.y5d{bottom:1033.920000px;}
.y31{bottom:1034.820000px;}
.yfc{bottom:1037.070000px;}
.y87{bottom:1046.700000px;}
.y30{bottom:1052.370000px;}
.y5c{bottom:1060.560000px;}
.y126{bottom:1060.920000px;}
.y2f{bottom:1069.920000px;}
.y83{bottom:1073.970000px;}
.yfb{bottom:1074.420000px;}
.y125{bottom:1078.560000px;}
.y2e{bottom:1087.560000px;}
.y5b{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y5a{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h11{height:26.550000px;}
.hf{height:26.640000px;}
.h12{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.he{height:40.539023px;}
.hd{height:43.082578px;}
.h6{height:50.902383px;}
.h15{height:53.910000px;}
.h5{height:55.779258px;}
.h9{height:59.973223px;}
.h16{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.ha{height:70.777617px;}
.h4{height:71.019492px;}
.hb{height:81.142383px;}
.h14{height:81.180000px;}
.h13{height:81.270000px;}
.h10{height:81.300000px;}
.hc{height:85.202578px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:63.180000px;}
.w14{width:66.600000px;}
.w6{width:68.490000px;}
.w8{width:72.720000px;}
.w7{width:73.710000px;}
.wf{width:86.400000px;}
.wc{width:97.380000px;}
.wb{width:97.410000px;}
.w15{width:97.740000px;}
.w16{width:103.440000px;}
.w11{width:107.190000px;}
.wa{width:112.050000px;}
.w10{width:116.580000px;}
.w12{width:117.090000px;}
.wd{width:126.810000px;}
.w9{width:127.110000px;}
.w4{width:213.870000px;}
.w3{width:223.950000px;}
.w13{width:300.450000px;}
.we{width:337.350000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x2b{left:70.109987px;}
.x1a{left:75.509987px;}
.x2a{left:77.939987px;}
.x19{left:80.639987px;}
.xb{left:86.760000px;}
.x2d{left:111.239987px;}
.x12{left:147.510000px;}
.x1d{left:170.580000px;}
.x23{left:203.790000px;}
.x6{left:207.839987px;}
.x2{left:211.079987px;}
.x22{left:213.959987px;}
.x17{left:243.299987px;}
.x4{left:250.499987px;}
.x13{left:275.340000px;}
.x28{left:282.719987px;}
.x8{left:292.349987px;}
.x1e{left:298.200000px;}
.xd{left:311.430000px;}
.x24{left:321.690000px;}
.x2c{left:343.829987px;}
.x1b{left:345.179987px;}
.x1c{left:376.679987px;}
.x14{left:388.200000px;}
.x20{left:411.060000px;}
.x9{left:414.569987px;}
.x26{left:420.240000px;}
.x7{left:452.819987px;}
.x5{left:454.169987px;}
.x27{left:524.400000px;}
.xe{left:526.110000px;}
.x21{left:528.360000px;}
.x15{left:550.230000px;}
.xf{left:590.010000px;}
.xa{left:600.899987px;}
.x25{left:622.860000px;}
.x1f{left:636.270000px;}
.x16{left:648.330000px;}
.x10{left:659.310000px;}
.x29{left:693.059987px;}
.x18{left:725.639987px;}
.x11{left:733.740000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:26.880000pt;}
.v3{vertical-align:31.360000pt;}
.v5{vertical-align:37.440000pt;}
.ls29{letter-spacing:-0.395200pt;}
.ls1e{letter-spacing:-0.363733pt;}
.ls19{letter-spacing:-0.318933pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls1d{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls2a{letter-spacing:-0.104533pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsf{letter-spacing:-0.075200pt;}
.ls20{letter-spacing:-0.060800pt;}
.ls17{letter-spacing:-0.056533pt;}
.ls23{letter-spacing:-0.035840pt;}
.ls1a{letter-spacing:-0.026560pt;}
.ls8{letter-spacing:-0.026133pt;}
.ls24{letter-spacing:-0.024320pt;}
.ls1b{letter-spacing:-0.018560pt;}
.ls1f{letter-spacing:-0.011840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000323pt;}
.ls14{letter-spacing:0.004800pt;}
.ls18{letter-spacing:0.027840pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls13{letter-spacing:0.049920pt;}
.ls21{letter-spacing:0.060800pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls26{letter-spacing:0.103467pt;}
.ls25{letter-spacing:0.118933pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.154240pt;}
.ls15{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.162667pt;}
.ls11{letter-spacing:0.177067pt;}
.ls22{letter-spacing:0.260907pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls1c{letter-spacing:2.323200pt;}
.ls28{letter-spacing:42.423680pt;}
.ls27{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.403200pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.933867pt;}
.ws3{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.744960pt;}
.wsc{word-spacing:-11.700267pt;}
.ws16{word-spacing:-11.696000pt;}
.ws1b{word-spacing:-11.652267pt;}
.ws13{word-spacing:-11.612800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws14{word-spacing:-11.393067pt;}
.ws12{word-spacing:-10.159467pt;}
.ws11{word-spacing:-9.978240pt;}
.ws17{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-8.264640pt;}
.wse{word-spacing:-8.237123pt;}
.ws10{word-spacing:-8.210240pt;}
.wsf{word-spacing:-7.917867pt;}
.ws1a{word-spacing:-7.722133pt;}
.ws18{word-spacing:-7.603200pt;}
.ws19{word-spacing:-7.578880pt;}
.ws7{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._10{margin-left:-3.439789pt;}
._8{margin-left:-2.387733pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894795pt;}
._3{width:1.863199pt;}
._5{width:3.027232pt;}
._1{width:4.398965pt;}
._4{width:5.320853pt;}
._6{width:7.053866pt;}
._c{width:8.016000pt;}
._a{width:9.619200pt;}
._b{width:10.708800pt;}
._14{width:12.985920pt;}
._e{width:14.321920pt;}
._9{width:15.283733pt;}
._d{width:16.993920pt;}
._f{width:18.062720pt;}
._7{width:19.345066pt;}
._11{width:20.759883pt;}
._13{width:119.184320pt;}
._12{width:177.559883pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs7{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:6.960000pt;}
.y84{bottom:7.040000pt;}
.y9f{bottom:7.066667pt;}
.yc5{bottom:11.600000pt;}
.yc4{bottom:31.280000pt;}
.y2{bottom:49.226667pt;}
.y96{bottom:55.520000pt;}
.y8b{bottom:55.600000pt;}
.y86{bottom:55.626667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:74.346667pt;}
.y29{bottom:81.626667pt;}
.y124{bottom:99.546667pt;}
.ye9{bottom:106.346667pt;}
.y123{bottom:115.146667pt;}
.yfa{bottom:115.706667pt;}
.y82{bottom:118.506667pt;}
.yaf{bottom:120.746667pt;}
.ye8{bottom:121.946667pt;}
.y59{bottom:122.906667pt;}
.yc3{bottom:124.266667pt;}
.y122{bottom:130.746667pt;}
.yf9{bottom:131.306667pt;}
.yae{bottom:136.346667pt;}
.ye7{bottom:137.546667pt;}
.y27{bottom:138.506667pt;}
.yc2{bottom:139.946667pt;}
.yf8{bottom:146.906667pt;}
.y81{bottom:150.186667pt;}
.yad{bottom:152.026667pt;}
.ye6{bottom:153.226667pt;}
.y26{bottom:154.186667pt;}
.y121{bottom:154.426667pt;}
.y58{bottom:154.586667pt;}
.yf7{bottom:162.586667pt;}
.yc1{bottom:163.546667pt;}
.yac{bottom:167.626667pt;}
.ye5{bottom:168.826667pt;}
.y25{bottom:169.786667pt;}
.y120{bottom:170.026667pt;}
.y57{bottom:170.186667pt;}
.yf6{bottom:178.186667pt;}
.y80{bottom:181.786667pt;}
.y24{bottom:185.466667pt;}
.y56{bottom:185.866667pt;}
.y11f{bottom:193.626667pt;}
.yc0{bottom:195.226667pt;}
.y7f{bottom:197.466667pt;}
.yab{bottom:199.306667pt;}
.ye4{bottom:199.786667pt;}
.y23{bottom:201.066667pt;}
.yf5{bottom:202.106667pt;}
.y11e{bottom:209.306667pt;}
.y55{bottom:209.466667pt;}
.ye3{bottom:210.666667pt;}
.ybf{bottom:210.826667pt;}
.y7e{bottom:213.066667pt;}
.yaa{bottom:214.906667pt;}
.y22{bottom:216.666667pt;}
.ybe{bottom:226.426667pt;}
.ya9{bottom:230.506667pt;}
.y11d{bottom:232.906667pt;}
.ye2{bottom:234.986667pt;}
.y54{bottom:241.066667pt;}
.ybd{bottom:242.106667pt;}
.y7d{bottom:244.666667pt;}
.yf4{bottom:245.066667pt;}
.ya8{bottom:246.186667pt;}
.y21{bottom:248.346667pt;}
.y11c{bottom:248.586667pt;}
.y53{bottom:256.746667pt;}
.ybc{bottom:257.706667pt;}
.ye1{bottom:259.226667pt;}
.y7c{bottom:260.346667pt;}
.ya7{bottom:261.786667pt;}
.y20{bottom:263.946667pt;}
.y11b{bottom:264.186667pt;}
.yf3{bottom:268.026667pt;}
.y52{bottom:272.346667pt;}
.ybb{bottom:273.386667pt;}
.y7b{bottom:275.946667pt;}
.ya6{bottom:277.466667pt;}
.y1f{bottom:279.626667pt;}
.yf2{bottom:280.506667pt;}
.ye0{bottom:283.546667pt;}
.y11a{bottom:287.786667pt;}
.y51{bottom:287.946667pt;}
.yba{bottom:288.986667pt;}
.y7a{bottom:291.546667pt;}
.yf1{bottom:293.066667pt;}
.y1e{bottom:295.226667pt;}
.yf0{bottom:303.226667pt;}
.y119{bottom:303.466667pt;}
.yb9{bottom:304.586667pt;}
.yde{bottom:307.866667pt;}
.ya5{bottom:309.066667pt;}
.y1d{bottom:310.826667pt;}
.y50{bottom:311.626667pt;}
.y79{bottom:315.226667pt;}
.yb8{bottom:320.266667pt;}
.ya4{bottom:324.666667pt;}
.y1c{bottom:326.506667pt;}
.y118{bottom:327.066667pt;}
.ydf{bottom:332.106667pt;}
.yb7{bottom:335.866667pt;}
.ya3{bottom:340.346667pt;}
.y1b{bottom:342.106667pt;}
.y117{bottom:342.746667pt;}
.y4f{bottom:343.226667pt;}
.y78{bottom:347.146667pt;}
.yb6{bottom:351.466667pt;}
.ya2{bottom:355.946667pt;}
.y1a{bottom:357.706667pt;}
.y116{bottom:358.346667pt;}
.y4e{bottom:358.906667pt;}
.ya1{bottom:371.626667pt;}
.y4d{bottom:374.506667pt;}
.ydd{bottom:375.466667pt;}
.y19{bottom:381.626667pt;}
.y115{bottom:381.946667pt;}
.yb5{bottom:383.146667pt;}
.y76{bottom:389.546667pt;}
.y4c{bottom:390.106667pt;}
.y75{bottom:397.626667pt;}
.yb4{bottom:398.746667pt;}
.ydc{bottom:399.066667pt;}
.y77{bottom:401.626667pt;}
.ya0{bottom:402.586667pt;}
.y4b{bottom:405.786667pt;}
.y9c{bottom:413.386667pt;}
.y114{bottom:421.253333pt;}
.yb3{bottom:421.813333pt;}
.y18{bottom:424.853333pt;}
.y4a{bottom:429.413333pt;}
.ydb{bottom:430.693333pt;}
.yb2{bottom:434.293333pt;}
.y74{bottom:436.453333pt;}
.y113{bottom:436.933333pt;}
.y9e{bottom:437.733333pt;}
.yda{bottom:446.373333pt;}
.yb1{bottom:446.773333pt;}
.y73{bottom:452.053333pt;}
.y112{bottom:452.533333pt;}
.yb0{bottom:456.933333pt;}
.y17{bottom:457.813333pt;}
.y49{bottom:461.093333pt;}
.yd9{bottom:461.973333pt;}
.y9d{bottom:462.053333pt;}
.y72{bottom:467.733333pt;}
.y16{bottom:473.413333pt;}
.y111{bottom:476.133333pt;}
.y48{bottom:476.693333pt;}
.y99{bottom:486.293333pt;}
.y15{bottom:489.093333pt;}
.y110{bottom:491.813333pt;}
.y47{bottom:492.293333pt;}
.yd8{bottom:493.653333pt;}
.y71{bottom:499.333333pt;}
.y14{bottom:504.693333pt;}
.y46{bottom:507.973333pt;}
.yd7{bottom:509.253333pt;}
.y9b{bottom:510.613333pt;}
.y70{bottom:515.013333pt;}
.y10f{bottom:515.413333pt;}
.y13{bottom:520.293333pt;}
.y45{bottom:523.573333pt;}
.yd6{bottom:524.853333pt;}
.y6f{bottom:530.613333pt;}
.y10e{bottom:531.093333pt;}
.y9a{bottom:534.933333pt;}
.y12{bottom:535.973333pt;}
.yd5{bottom:540.533333pt;}
.y6e{bottom:546.213333pt;}
.y11{bottom:551.573333pt;}
.y10d{bottom:554.693333pt;}
.y44{bottom:555.253333pt;}
.yd4{bottom:556.133333pt;}
.y95{bottom:559.253333pt;}
.y10{bottom:567.173333pt;}
.y6d{bottom:569.893333pt;}
.y10c{bottom:570.293333pt;}
.y43{bottom:570.853333pt;}
.yd3{bottom:571.733333pt;}
.yf{bottom:582.853333pt;}
.y98{bottom:583.493333pt;}
.y10b{bottom:585.973333pt;}
.y42{bottom:586.453333pt;}
.yd2{bottom:587.413333pt;}
.ye{bottom:598.453333pt;}
.y6c{bottom:601.493333pt;}
.y41{bottom:602.133333pt;}
.y97{bottom:607.813333pt;}
.y10a{bottom:609.573333pt;}
.yd{bottom:614.133333pt;}
.y6b{bottom:617.093333pt;}
.y40{bottom:617.733333pt;}
.yd1{bottom:619.013333pt;}
.y109{bottom:625.253333pt;}
.yc{bottom:629.733333pt;}
.y94{bottom:632.133333pt;}
.y6a{bottom:632.773333pt;}
.y3f{bottom:633.413333pt;}
.yd0{bottom:634.693333pt;}
.y69{bottom:648.373333pt;}
.y108{bottom:648.853333pt;}
.ycf{bottom:650.293333pt;}
.yb{bottom:653.653333pt;}
.y3e{bottom:657.333333pt;}
.y107{bottom:664.453333pt;}
.yce{bottom:665.893333pt;}
.y93{bottom:675.413333pt;}
.y68{bottom:680.053333pt;}
.ycd{bottom:681.573333pt;}
.yef{bottom:684.213333pt;}
.y106{bottom:688.133333pt;}
.y92{bottom:691.013333pt;}
.ya{bottom:695.253333pt;}
.y67{bottom:695.653333pt;}
.ycc{bottom:697.173333pt;}
.yee{bottom:699.813333pt;}
.y3d{bottom:700.213333pt;}
.y105{bottom:703.733333pt;}
.y66{bottom:711.253333pt;}
.yed{bottom:715.493333pt;}
.y3c{bottom:715.813333pt;}
.y91{bottom:722.693333pt;}
.y9{bottom:727.093333pt;}
.y104{bottom:727.413333pt;}
.ycb{bottom:728.853333pt;}
.y3b{bottom:731.493333pt;}
.y65{bottom:734.933333pt;}
.y8e{bottom:735.973333pt;}
.y103{bottom:743.013333pt;}
.yca{bottom:744.453333pt;}
.y3a{bottom:747.093333pt;}
.y8{bottom:759.093333pt;}
.yc9{bottom:760.053333pt;}
.y90{bottom:760.293333pt;}
.yec{bottom:762.693333pt;}
.y64{bottom:765.333333pt;}
.y102{bottom:766.933333pt;}
.y63{bottom:772.053333pt;}
.yc8{bottom:775.733333pt;}
.yeb{bottom:778.373333pt;}
.y39{bottom:778.693333pt;}
.y8f{bottom:784.533333pt;}
.y7{bottom:791.093333pt;}
.yc7{bottom:791.333333pt;}
.y38{bottom:794.373333pt;}
.y6{bottom:807.093333pt;}
.y62{bottom:807.413333pt;}
.y8a{bottom:808.853333pt;}
.y101{bottom:809.813333pt;}
.y37{bottom:809.973333pt;}
.yc6{bottom:822.373333pt;}
.y61{bottom:823.093333pt;}
.y36{bottom:825.653333pt;}
.y8d{bottom:833.173333pt;}
.y100{bottom:833.733333pt;}
.y5{bottom:839.173333pt;}
.y35{bottom:841.253333pt;}
.y60{bottom:846.693333pt;}
.y34{bottom:856.853333pt;}
.y8c{bottom:857.493333pt;}
.yff{bottom:866.693333pt;}
.y33{bottom:872.533333pt;}
.y4{bottom:873.173333pt;}
.y5f{bottom:877.093333pt;}
.y85{bottom:881.733333pt;}
.yfe{bottom:882.293333pt;}
.y5e{bottom:883.813333pt;}
.yea{bottom:888.133333pt;}
.y3{bottom:895.093333pt;}
.yfd{bottom:897.920000pt;}
.y32{bottom:904.160000pt;}
.y89{bottom:906.080000pt;}
.y5d{bottom:919.040000pt;}
.y31{bottom:919.840000pt;}
.yfc{bottom:921.840000pt;}
.y87{bottom:930.400000pt;}
.y30{bottom:935.440000pt;}
.y5c{bottom:942.720000pt;}
.y126{bottom:943.040000pt;}
.y2f{bottom:951.040000pt;}
.y83{bottom:954.640000pt;}
.yfb{bottom:955.040000pt;}
.y125{bottom:958.720000pt;}
.y2e{bottom:966.720000pt;}
.y5b{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y5a{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h11{height:23.600000pt;}
.hf{height:23.680000pt;}
.h12{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.he{height:36.034687pt;}
.hd{height:38.295625pt;}
.h6{height:45.246562pt;}
.h15{height:47.920000pt;}
.h5{height:49.581562pt;}
.h9{height:53.309531pt;}
.h16{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.ha{height:62.913438pt;}
.h4{height:63.128437pt;}
.hb{height:72.126562pt;}
.h14{height:72.160000pt;}
.h13{height:72.240000pt;}
.h10{height:72.266667pt;}
.hc{height:75.735625pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:56.160000pt;}
.w14{width:59.200000pt;}
.w6{width:60.880000pt;}
.w8{width:64.640000pt;}
.w7{width:65.520000pt;}
.wf{width:76.800000pt;}
.wc{width:86.560000pt;}
.wb{width:86.586667pt;}
.w15{width:86.880000pt;}
.w16{width:91.946667pt;}
.w11{width:95.280000pt;}
.wa{width:99.600000pt;}
.w10{width:103.626667pt;}
.w12{width:104.080000pt;}
.wd{width:112.720000pt;}
.w9{width:112.986667pt;}
.w4{width:190.106667pt;}
.w3{width:199.066667pt;}
.w13{width:267.066667pt;}
.we{width:299.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x2b{left:62.319988pt;}
.x1a{left:67.119988pt;}
.x2a{left:69.279988pt;}
.x19{left:71.679988pt;}
.xb{left:77.120000pt;}
.x2d{left:98.879988pt;}
.x12{left:131.120000pt;}
.x1d{left:151.626667pt;}
.x23{left:181.146667pt;}
.x6{left:184.746655pt;}
.x2{left:187.626655pt;}
.x22{left:190.186655pt;}
.x17{left:216.266655pt;}
.x4{left:222.666655pt;}
.x13{left:244.746667pt;}
.x28{left:251.306655pt;}
.x8{left:259.866655pt;}
.x1e{left:265.066667pt;}
.xd{left:276.826667pt;}
.x24{left:285.946667pt;}
.x2c{left:305.626655pt;}
.x1b{left:306.826655pt;}
.x1c{left:334.826655pt;}
.x14{left:345.066667pt;}
.x20{left:365.386667pt;}
.x9{left:368.506655pt;}
.x26{left:373.546667pt;}
.x7{left:402.506655pt;}
.x5{left:403.706655pt;}
.x27{left:466.133333pt;}
.xe{left:467.653333pt;}
.x21{left:469.653333pt;}
.x15{left:489.093333pt;}
.xf{left:524.453333pt;}
.xa{left:534.133322pt;}
.x25{left:553.653333pt;}
.x1f{left:565.573333pt;}
.x16{left:576.293333pt;}
.x10{left:586.053333pt;}
.x29{left:616.053322pt;}
.x18{left:645.013322pt;}
.x11{left:652.213333pt;}
.x3{left:711.413322pt;}
}




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