
    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_b45f2ac76888442f750b087f.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_47b9ddb81aba83979465d00f.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_23b4e7020830baa13b6e852b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_b374f6243c1ce0f0233c2eaf.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_d99f6af8eb035a86a140773f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d70db29b4f210f3114059534.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f0cb32f7f525c52bb5a4e5b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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;}
.lsf{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls19{letter-spacing:-0.093000px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls13{letter-spacing:0.019080px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.108600px;}
.ls12{letter-spacing:0.113400px;}
.ls11{letter-spacing:0.115800px;}
.ls17{letter-spacing:0.116400px;}
.lsb{letter-spacing:0.127200px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:47.726640px;}
.ls15{letter-spacing:63.566640px;}
.ls16{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;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.353600px;}
.wsf{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.342200px;}
.wsd{word-spacing:-13.339800px;}
.wsb{word-spacing:-13.335000px;}
.wsa{word-spacing:-13.275360px;}
.wse{word-spacing:-13.245480px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.133400px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._8{margin-left:-3.550798px;}
._5{margin-left:-2.437200px;}
._0{margin-left:-1.110000px;}
._2{width:1.533360px;}
._7{width:2.553600px;}
._4{width:4.477802px;}
._3{width:5.530800px;}
._9{width:6.793800px;}
._6{width:7.935600px;}
._a{width:9.138601px;}
._b{width:10.459798px;}
._e{width:11.778474px;}
._d{width:14.549040px;}
._f{width:15.571080px;}
._13{width:16.857360px;}
._c{width:18.937800px;}
._11{width:20.741400px;}
._12{width:22.568760px;}
._10{width:26.061840px;}
._16{width:31.863600px;}
._1{width:38.920236px;}
._14{width:41.362560px;}
._15{width:42.686160px;}
.fc2{color:transparent;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y54{bottom:7.830000px;}
.y79{bottom:7.860000px;}
.y52{bottom:7.920000px;}
.y9e{bottom:7.950000px;}
.yba{bottom:25.470000px;}
.ybc{bottom:26.550000px;}
.yc1{bottom:26.640000px;}
.y50{bottom:35.280000px;}
.yb9{bottom:44.190000px;}
.y87{bottom:62.580000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ye6{bottom:112.170000px;}
.y5c{bottom:116.940000px;}
.yd1{bottom:126.030000px;}
.ye5{bottom:129.720000px;}
.yac{bottom:132.600000px;}
.y12d{bottom:133.680000px;}
.y5b{bottom:134.580000px;}
.yd0{bottom:143.670000px;}
.ye4{bottom:147.360000px;}
.y102{bottom:148.350000px;}
.yab{bottom:150.150000px;}
.y27{bottom:160.050000px;}
.y12c{bottom:160.320000px;}
.ycf{bottom:161.220000px;}
.ye3{bottom:164.910000px;}
.y83{bottom:165.360000px;}
.y101{bottom:165.990000px;}
.yaa{bottom:167.790000px;}
.y5a{bottom:170.130000px;}
.y26{bottom:177.600000px;}
.y12b{bottom:177.870000px;}
.yce{bottom:178.860000px;}
.ye2{bottom:182.550000px;}
.ya9{bottom:185.340000px;}
.y59{bottom:187.680000px;}
.y100{bottom:192.540000px;}
.y25{bottom:195.240000px;}
.ycd{bottom:196.410000px;}
.y82{bottom:201.000000px;}
.ya8{bottom:202.980000px;}
.y12a{bottom:204.510000px;}
.y58{bottom:205.320000px;}
.yff{bottom:210.180000px;}
.y24{bottom:212.790000px;}
.ye1{bottom:218.100000px;}
.y129{bottom:222.060000px;}
.y57{bottom:222.870000px;}
.ycc{bottom:223.320000px;}
.yfe{bottom:227.730000px;}
.y23{bottom:230.340000px;}
.ye0{bottom:235.650000px;}
.y81{bottom:236.550000px;}
.ya7{bottom:237.810000px;}
.y22{bottom:247.980000px;}
.y128{bottom:248.610000px;}
.y56{bottom:249.510000px;}
.ya6{bottom:249.960000px;}
.ydf{bottom:253.290000px;}
.yfd{bottom:254.280000px;}
.y21{bottom:265.530000px;}
.y127{bottom:266.250000px;}
.yde{bottom:270.840000px;}
.ycb{bottom:271.560000px;}
.yfc{bottom:271.920000px;}
.y80{bottom:272.190000px;}
.ya5{bottom:277.320000px;}
.y55{bottom:282.450000px;}
.y20{bottom:283.170000px;}
.ydd{bottom:288.480000px;}
.yca{bottom:289.200000px;}
.yfb{bottom:289.470000px;}
.y126{bottom:292.800000px;}
.y1f{bottom:300.720000px;}
.ya4{bottom:304.680000px;}
.ydc{bottom:306.030000px;}
.yc9{bottom:306.750000px;}
.y7f{bottom:307.740000px;}
.y53{bottom:309.810000px;}
.y125{bottom:310.440000px;}
.yfa{bottom:316.380000px;}
.y1e{bottom:318.270000px;}
.ydb{bottom:323.580000px;}
.yc8{bottom:324.300000px;}
.y124{bottom:327.990000px;}
.ya3{bottom:331.950000px;}
.y4f{bottom:337.080000px;}
.yda{bottom:341.220000px;}
.yc7{bottom:341.940000px;}
.y7e{bottom:343.290000px;}
.y1d{bottom:353.910000px;}
.y123{bottom:354.540000px;}
.yd9{bottom:358.770000px;}
.ya2{bottom:359.310000px;}
.yc6{bottom:359.490000px;}
.y7d{bottom:360.930000px;}
.y51{bottom:364.440000px;}
.yf9{bottom:364.620000px;}
.y1c{bottom:371.460000px;}
.y122{bottom:372.180000px;}
.yd8{bottom:376.410000px;}
.y7c{bottom:378.480000px;}
.ya1{bottom:386.670000px;}
.y1b{bottom:389.100000px;}
.yc5{bottom:395.130000px;}
.y121{bottom:398.730000px;}
.yf8{bottom:400.530000px;}
.y1a{bottom:406.650000px;}
.y7b{bottom:411.510000px;}
.yd7{bottom:411.960000px;}
.yc4{bottom:412.680000px;}
.y4e{bottom:413.130000px;}
.ya0{bottom:414.030000px;}
.y120{bottom:416.370000px;}
.y136{bottom:425.370000px;}
.yc3{bottom:430.230000px;}
.y19{bottom:433.560000px;}
.y11f{bottom:433.920000px;}
.yf7{bottom:437.610000px;}
.y7a{bottom:438.780000px;}
.y9f{bottom:441.300000px;}
.y135{bottom:442.920000px;}
.yd6{bottom:444.180000px;}
.yc2{bottom:447.870000px;}
.y4d{bottom:448.770000px;}
.y11e{bottom:460.470000px;}
.yf6{bottom:464.520000px;}
.y78{bottom:466.140000px;}
.y4c{bottom:466.320000px;}
.y9d{bottom:468.660000px;}
.y134{bottom:469.470000px;}
.y11d{bottom:478.140000px;}
.yc0{bottom:480.840000px;}
.y18{bottom:482.190000px;}
.y4b{bottom:483.900000px;}
.y133{bottom:487.140000px;}
.y77{bottom:493.530000px;}
.y4a{bottom:501.540000px;}
.yf5{bottom:501.900000px;}
.y11c{bottom:504.690000px;}
.ybf{bottom:508.200000px;}
.y9c{bottom:517.380000px;}
.y17{bottom:519.180000px;}
.y76{bottom:520.800000px;}
.y49{bottom:528.450000px;}
.y11b{bottom:531.330000px;}
.ybe{bottom:535.560000px;}
.y16{bottom:536.820000px;}
.y75{bottom:548.160000px;}
.y11a{bottom:548.880000px;}
.yf4{bottom:550.140000px;}
.y9b{bottom:553.020000px;}
.y15{bottom:554.370000px;}
.ybd{bottom:562.830000px;}
.yf3{bottom:567.690000px;}
.y14{bottom:571.920000px;}
.y119{bottom:575.430000px;}
.y74{bottom:575.520000px;}
.y48{bottom:576.690000px;}
.yf2{bottom:586.140000px;}
.y9a{bottom:588.570000px;}
.y13{bottom:589.560000px;}
.ybb{bottom:590.190000px;}
.y118{bottom:593.070000px;}
.y47{bottom:594.330000px;}
.yf1{bottom:603.690000px;}
.y99{bottom:606.120000px;}
.y12{bottom:607.110000px;}
.y117{bottom:610.620000px;}
.y46{bottom:611.880000px;}
.yb8{bottom:617.550000px;}
.yf0{bottom:622.140000px;}
.y73{bottom:624.210000px;}
.y11{bottom:624.750000px;}
.y45{bottom:629.430000px;}
.y116{bottom:637.260000px;}
.yef{bottom:639.690000px;}
.y98{bottom:641.760000px;}
.y10{bottom:642.300000px;}
.y44{bottom:647.070000px;}
.y115{bottom:654.810000px;}
.yee{bottom:658.140000px;}
.y97{bottom:659.310000px;}
.y72{bottom:659.760000px;}
.yf{bottom:659.850000px;}
.y43{bottom:664.620000px;}
.y114{bottom:672.360000px;}
.yed{bottom:676.590000px;}
.y96{bottom:676.950000px;}
.y71{bottom:677.400000px;}
.ye{bottom:677.490000px;}
.y132{bottom:681.360000px;}
.y42{bottom:682.260000px;}
.yb7{bottom:683.790000px;}
.yec{bottom:694.140000px;}
.y95{bottom:694.500000px;}
.y70{bottom:694.950000px;}
.yd{bottom:695.040000px;}
.y113{bottom:699.000000px;}
.y41{bottom:699.810000px;}
.y94{bottom:712.050000px;}
.y6f{bottom:712.590000px;}
.yc{bottom:712.680000px;}
.y112{bottom:716.550000px;}
.y40{bottom:717.360000px;}
.yb6{bottom:719.430000px;}
.y93{bottom:729.690000px;}
.y6e{bottom:730.140000px;}
.yb{bottom:730.230000px;}
.yeb{bottom:730.590000px;}
.yb5{bottom:736.980000px;}
.y111{bottom:743.190000px;}
.y92{bottom:747.240000px;}
.y6d{bottom:747.690000px;}
.y3f{bottom:753.000000px;}
.ya{bottom:757.140000px;}
.yea{bottom:757.500000px;}
.y110{bottom:760.740000px;}
.y91{bottom:764.880000px;}
.y6c{bottom:765.330000px;}
.y3e{bottom:770.550000px;}
.yb4{bottom:772.530000px;}
.y6b{bottom:782.880000px;}
.y10f{bottom:787.290000px;}
.y3d{bottom:788.190000px;}
.yb3{bottom:790.170000px;}
.y90{bottom:800.430000px;}
.y6a{bottom:800.520000px;}
.y10e{bottom:804.930000px;}
.yd5{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.y3c{bottom:805.740000px;}
.yb2{bottom:807.720000px;}
.y8f{bottom:817.980000px;}
.y69{bottom:818.070000px;}
.y10d{bottom:822.480000px;}
.yd4{bottom:822.930000px;}
.y3b{bottom:823.290000px;}
.yb1{bottom:825.360000px;}
.y131{bottom:831.480000px;}
.y68{bottom:835.620000px;}
.yd3{bottom:840.480000px;}
.y3a{bottom:840.930000px;}
.y8{bottom:841.200000px;}
.y10c{bottom:849.030000px;}
.y8e{bottom:853.170000px;}
.y67{bottom:853.260000px;}
.y39{bottom:858.480000px;}
.yb0{bottom:860.910000px;}
.y10b{bottom:866.670000px;}
.y66{bottom:870.810000px;}
.y38{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.yaf{bottom:878.460000px;}
.y10a{bottom:884.220000px;}
.y8d{bottom:888.000000px;}
.y37{bottom:893.670000px;}
.yae{bottom:896.100000px;}
.y65{bottom:897.720000px;}
.y8c{bottom:900.240000px;}
.y109{bottom:910.860000px;}
.y36{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y8b{bottom:927.600000px;}
.y108{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.yad{bottom:931.650000px;}
.y64{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y8a{bottom:954.870000px;}
.y130{bottom:954.960000px;}
.y63{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.y107{bottom:972.600000px;}
.y62{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.ye9{bottom:981.960000px;}
.y86{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y106{bottom:990.150000px;}
.y61{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.ye8{bottom:999.600000px;}
.y89{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y60{bottom:1016.370000px;}
.yd2{bottom:1016.820000px;}
.ye7{bottom:1017.180000px;}
.y105{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.y88{bottom:1036.890000px;}
.y12f{bottom:1043.370000px;}
.y5f{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y12e{bottom:1060.920000px;}
.y85{bottom:1064.250000px;}
.y5e{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y104{bottom:1078.560000px;}
.y5d{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y84{bottom:1091.610000px;}
.y103{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.550000px;}
.hf{height:26.580000px;}
.hb{height:26.640000px;}
.h12{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h11{height:41.661211px;}
.h13{height:44.190000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.ha{height:54.000000px;}
.he{height:55.503491px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h14{height:61.793886px;}
.hd{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h10{height:81.300000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:32.040000px;}
.wd{width:33.300000px;}
.w12{width:33.930000px;}
.w1a{width:43.470000px;}
.w15{width:51.750000px;}
.wb{width:53.220000px;}
.w20{width:56.700000px;}
.w21{width:60.030000px;}
.we{width:61.740000px;}
.w25{width:62.820000px;}
.w24{width:68.070000px;}
.w14{width:71.010000px;}
.w13{width:73.740000px;}
.w7{width:74.160000px;}
.w11{width:75.060000px;}
.w19{width:76.680000px;}
.w9{width:82.350000px;}
.wa{width:84.420000px;}
.w23{width:91.260000px;}
.w2a{width:100.710000px;}
.w28{width:101.340000px;}
.w22{width:101.880000px;}
.w2b{width:101.970000px;}
.w6{width:103.590000px;}
.w18{width:104.880000px;}
.w27{width:105.870000px;}
.wc{width:111.420000px;}
.w3{width:111.870000px;}
.w26{width:118.350000px;}
.w16{width:122.220000px;}
.w1f{width:134.490000px;}
.w5{width:137.550000px;}
.w1e{width:145.800000px;}
.w10{width:156.420000px;}
.w17{width:177.660000px;}
.wf{width:184.260000px;}
.w1b{width:201.270000px;}
.w29{width:203.490000px;}
.w1d{width:220.140000px;}
.w4{width:241.860000px;}
.w1c{width:281.010000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x1e{left:77.670000px;}
.x2d{left:95.039987px;}
.x1f{left:111.690000px;}
.x2e{left:122.039987px;}
.x25{left:160.830000px;}
.x17{left:166.170000px;}
.x2{left:202.799987px;}
.x8{left:225.840000px;}
.xe{left:227.730000px;}
.x26{left:229.710000px;}
.x16{left:236.819987px;}
.x2c{left:252.119987px;}
.xf{left:261.750000px;}
.x4{left:269.400000px;}
.x18{left:289.110000px;}
.x27{left:293.250000px;}
.x9{left:300.810000px;}
.x20{left:313.680000px;}
.x10{left:324.210000px;}
.x1d{left:325.379987px;}
.xa{left:333.660000px;}
.x6{left:381.990000px;}
.x12{left:400.080000px;}
.x28{left:412.320000px;}
.xb{left:416.730000px;}
.x13{left:434.730000px;}
.x22{left:460.200000px;}
.x19{left:467.580000px;}
.x1a{left:500.430000px;}
.xc{left:501.960000px;}
.x11{left:509.190000px;}
.x29{left:518.910000px;}
.x7{left:520.260000px;}
.xd{left:555.990000px;}
.x14{left:581.010000px;}
.x21{left:595.410000px;}
.x1b{left:606.120000px;}
.x15{left:613.860000px;}
.x2a{left:620.970000px;}
.x23{left:652.830000px;}
.x1c{left:683.610000px;}
.x24{left:713.670000px;}
.x2b{left:722.490000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls19{letter-spacing:-0.082667pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls13{letter-spacing:0.016960pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.096533pt;}
.ls12{letter-spacing:0.100800pt;}
.ls11{letter-spacing:0.102933pt;}
.ls17{letter-spacing:0.103467pt;}
.lsb{letter-spacing:0.113067pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:42.423680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.869867pt;}
.wsf{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.859733pt;}
.wsd{word-spacing:-11.857600pt;}
.wsb{word-spacing:-11.853333pt;}
.wsa{word-spacing:-11.800320pt;}
.wse{word-spacing:-11.773760pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.674133pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._8{margin-left:-3.156265pt;}
._5{margin-left:-2.166400pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.362987pt;}
._7{width:2.269867pt;}
._4{width:3.980269pt;}
._3{width:4.916266pt;}
._9{width:6.038934pt;}
._6{width:7.053866pt;}
._a{width:8.123201pt;}
._b{width:9.297598pt;}
._e{width:10.469755pt;}
._d{width:12.932480pt;}
._f{width:13.840960pt;}
._13{width:14.984320pt;}
._c{width:16.833600pt;}
._11{width:18.436800pt;}
._12{width:20.061120pt;}
._10{width:23.166080pt;}
._16{width:28.323200pt;}
._1{width:34.595765pt;}
._14{width:36.766720pt;}
._15{width:37.943253pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:6.960000pt;}
.y79{bottom:6.986667pt;}
.y52{bottom:7.040000pt;}
.y9e{bottom:7.066667pt;}
.yba{bottom:22.640000pt;}
.ybc{bottom:23.600000pt;}
.yc1{bottom:23.680000pt;}
.y50{bottom:31.360000pt;}
.yb9{bottom:39.280000pt;}
.y87{bottom:55.626667pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ye6{bottom:99.706667pt;}
.y5c{bottom:103.946667pt;}
.yd1{bottom:112.026667pt;}
.ye5{bottom:115.306667pt;}
.yac{bottom:117.866667pt;}
.y12d{bottom:118.826667pt;}
.y5b{bottom:119.626667pt;}
.yd0{bottom:127.706667pt;}
.ye4{bottom:130.986667pt;}
.y102{bottom:131.866667pt;}
.yab{bottom:133.466667pt;}
.y27{bottom:142.266667pt;}
.y12c{bottom:142.506667pt;}
.ycf{bottom:143.306667pt;}
.ye3{bottom:146.586667pt;}
.y83{bottom:146.986667pt;}
.y101{bottom:147.546667pt;}
.yaa{bottom:149.146667pt;}
.y5a{bottom:151.226667pt;}
.y26{bottom:157.866667pt;}
.y12b{bottom:158.106667pt;}
.yce{bottom:158.986667pt;}
.ye2{bottom:162.266667pt;}
.ya9{bottom:164.746667pt;}
.y59{bottom:166.826667pt;}
.y100{bottom:171.146667pt;}
.y25{bottom:173.546667pt;}
.ycd{bottom:174.586667pt;}
.y82{bottom:178.666667pt;}
.ya8{bottom:180.426667pt;}
.y12a{bottom:181.786667pt;}
.y58{bottom:182.506667pt;}
.yff{bottom:186.826667pt;}
.y24{bottom:189.146667pt;}
.ye1{bottom:193.866667pt;}
.y129{bottom:197.386667pt;}
.y57{bottom:198.106667pt;}
.ycc{bottom:198.506667pt;}
.yfe{bottom:202.426667pt;}
.y23{bottom:204.746667pt;}
.ye0{bottom:209.466667pt;}
.y81{bottom:210.266667pt;}
.ya7{bottom:211.386667pt;}
.y22{bottom:220.426667pt;}
.y128{bottom:220.986667pt;}
.y56{bottom:221.786667pt;}
.ya6{bottom:222.186667pt;}
.ydf{bottom:225.146667pt;}
.yfd{bottom:226.026667pt;}
.y21{bottom:236.026667pt;}
.y127{bottom:236.666667pt;}
.yde{bottom:240.746667pt;}
.ycb{bottom:241.386667pt;}
.yfc{bottom:241.706667pt;}
.y80{bottom:241.946667pt;}
.ya5{bottom:246.506667pt;}
.y55{bottom:251.066667pt;}
.y20{bottom:251.706667pt;}
.ydd{bottom:256.426667pt;}
.yca{bottom:257.066667pt;}
.yfb{bottom:257.306667pt;}
.y126{bottom:260.266667pt;}
.y1f{bottom:267.306667pt;}
.ya4{bottom:270.826667pt;}
.ydc{bottom:272.026667pt;}
.yc9{bottom:272.666667pt;}
.y7f{bottom:273.546667pt;}
.y53{bottom:275.386667pt;}
.y125{bottom:275.946667pt;}
.yfa{bottom:281.226667pt;}
.y1e{bottom:282.906667pt;}
.ydb{bottom:287.626667pt;}
.yc8{bottom:288.266667pt;}
.y124{bottom:291.546667pt;}
.ya3{bottom:295.066667pt;}
.y4f{bottom:299.626667pt;}
.yda{bottom:303.306667pt;}
.yc7{bottom:303.946667pt;}
.y7e{bottom:305.146667pt;}
.y1d{bottom:314.586667pt;}
.y123{bottom:315.146667pt;}
.yd9{bottom:318.906667pt;}
.ya2{bottom:319.386667pt;}
.yc6{bottom:319.546667pt;}
.y7d{bottom:320.826667pt;}
.y51{bottom:323.946667pt;}
.yf9{bottom:324.106667pt;}
.y1c{bottom:330.186667pt;}
.y122{bottom:330.826667pt;}
.yd8{bottom:334.586667pt;}
.y7c{bottom:336.426667pt;}
.ya1{bottom:343.706667pt;}
.y1b{bottom:345.866667pt;}
.yc5{bottom:351.226667pt;}
.y121{bottom:354.426667pt;}
.yf8{bottom:356.026667pt;}
.y1a{bottom:361.466667pt;}
.y7b{bottom:365.786667pt;}
.yd7{bottom:366.186667pt;}
.yc4{bottom:366.826667pt;}
.y4e{bottom:367.226667pt;}
.ya0{bottom:368.026667pt;}
.y120{bottom:370.106667pt;}
.y136{bottom:378.106667pt;}
.yc3{bottom:382.426667pt;}
.y19{bottom:385.386667pt;}
.y11f{bottom:385.706667pt;}
.yf7{bottom:388.986667pt;}
.y7a{bottom:390.026667pt;}
.y9f{bottom:392.266667pt;}
.y135{bottom:393.706667pt;}
.yd6{bottom:394.826667pt;}
.yc2{bottom:398.106667pt;}
.y4d{bottom:398.906667pt;}
.y11e{bottom:409.306667pt;}
.yf6{bottom:412.906667pt;}
.y78{bottom:414.346667pt;}
.y4c{bottom:414.506667pt;}
.y9d{bottom:416.586667pt;}
.y134{bottom:417.306667pt;}
.y11d{bottom:425.013333pt;}
.yc0{bottom:427.413333pt;}
.y18{bottom:428.613333pt;}
.y4b{bottom:430.133333pt;}
.y133{bottom:433.013333pt;}
.y77{bottom:438.693333pt;}
.y4a{bottom:445.813333pt;}
.yf5{bottom:446.133333pt;}
.y11c{bottom:448.613333pt;}
.ybf{bottom:451.733333pt;}
.y9c{bottom:459.893333pt;}
.y17{bottom:461.493333pt;}
.y76{bottom:462.933333pt;}
.y49{bottom:469.733333pt;}
.y11b{bottom:472.293333pt;}
.ybe{bottom:476.053333pt;}
.y16{bottom:477.173333pt;}
.y75{bottom:487.253333pt;}
.y11a{bottom:487.893333pt;}
.yf4{bottom:489.013333pt;}
.y9b{bottom:491.573333pt;}
.y15{bottom:492.773333pt;}
.ybd{bottom:500.293333pt;}
.yf3{bottom:504.613333pt;}
.y14{bottom:508.373333pt;}
.y119{bottom:511.493333pt;}
.y74{bottom:511.573333pt;}
.y48{bottom:512.613333pt;}
.yf2{bottom:521.013333pt;}
.y9a{bottom:523.173333pt;}
.y13{bottom:524.053333pt;}
.ybb{bottom:524.613333pt;}
.y118{bottom:527.173333pt;}
.y47{bottom:528.293333pt;}
.yf1{bottom:536.613333pt;}
.y99{bottom:538.773333pt;}
.y12{bottom:539.653333pt;}
.y117{bottom:542.773333pt;}
.y46{bottom:543.893333pt;}
.yb8{bottom:548.933333pt;}
.yf0{bottom:553.013333pt;}
.y73{bottom:554.853333pt;}
.y11{bottom:555.333333pt;}
.y45{bottom:559.493333pt;}
.y116{bottom:566.453333pt;}
.yef{bottom:568.613333pt;}
.y98{bottom:570.453333pt;}
.y10{bottom:570.933333pt;}
.y44{bottom:575.173333pt;}
.y115{bottom:582.053333pt;}
.yee{bottom:585.013333pt;}
.y97{bottom:586.053333pt;}
.y72{bottom:586.453333pt;}
.yf{bottom:586.533333pt;}
.y43{bottom:590.773333pt;}
.y114{bottom:597.653333pt;}
.yed{bottom:601.413333pt;}
.y96{bottom:601.733333pt;}
.y71{bottom:602.133333pt;}
.ye{bottom:602.213333pt;}
.y132{bottom:605.653333pt;}
.y42{bottom:606.453333pt;}
.yb7{bottom:607.813333pt;}
.yec{bottom:617.013333pt;}
.y95{bottom:617.333333pt;}
.y70{bottom:617.733333pt;}
.yd{bottom:617.813333pt;}
.y113{bottom:621.333333pt;}
.y41{bottom:622.053333pt;}
.y94{bottom:632.933333pt;}
.y6f{bottom:633.413333pt;}
.yc{bottom:633.493333pt;}
.y112{bottom:636.933333pt;}
.y40{bottom:637.653333pt;}
.yb6{bottom:639.493333pt;}
.y93{bottom:648.613333pt;}
.y6e{bottom:649.013333pt;}
.yb{bottom:649.093333pt;}
.yeb{bottom:649.413333pt;}
.yb5{bottom:655.093333pt;}
.y111{bottom:660.613333pt;}
.y92{bottom:664.213333pt;}
.y6d{bottom:664.613333pt;}
.y3f{bottom:669.333333pt;}
.ya{bottom:673.013333pt;}
.yea{bottom:673.333333pt;}
.y110{bottom:676.213333pt;}
.y91{bottom:679.893333pt;}
.y6c{bottom:680.293333pt;}
.y3e{bottom:684.933333pt;}
.yb4{bottom:686.693333pt;}
.y6b{bottom:695.893333pt;}
.y10f{bottom:699.813333pt;}
.y3d{bottom:700.613333pt;}
.yb3{bottom:702.373333pt;}
.y90{bottom:711.493333pt;}
.y6a{bottom:711.573333pt;}
.y10e{bottom:715.493333pt;}
.yd5{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.y3c{bottom:716.213333pt;}
.yb2{bottom:717.973333pt;}
.y8f{bottom:727.093333pt;}
.y69{bottom:727.173333pt;}
.y10d{bottom:731.093333pt;}
.yd4{bottom:731.493333pt;}
.y3b{bottom:731.813333pt;}
.yb1{bottom:733.653333pt;}
.y131{bottom:739.093333pt;}
.y68{bottom:742.773333pt;}
.yd3{bottom:747.093333pt;}
.y3a{bottom:747.493333pt;}
.y8{bottom:747.733333pt;}
.y10c{bottom:754.693333pt;}
.y8e{bottom:758.373333pt;}
.y67{bottom:758.453333pt;}
.y39{bottom:763.093333pt;}
.yb0{bottom:765.253333pt;}
.y10b{bottom:770.373333pt;}
.y66{bottom:774.053333pt;}
.y38{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.yaf{bottom:780.853333pt;}
.y10a{bottom:785.973333pt;}
.y8d{bottom:789.333333pt;}
.y37{bottom:794.373333pt;}
.yae{bottom:796.533333pt;}
.y65{bottom:797.973333pt;}
.y8c{bottom:800.213333pt;}
.y109{bottom:809.653333pt;}
.y36{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y8b{bottom:824.533333pt;}
.y108{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.yad{bottom:828.133333pt;}
.y64{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y8a{bottom:848.773333pt;}
.y130{bottom:848.853333pt;}
.y63{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.y107{bottom:864.533333pt;}
.y62{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.ye9{bottom:872.853333pt;}
.y86{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y106{bottom:880.133333pt;}
.y61{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.ye8{bottom:888.533333pt;}
.y89{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y60{bottom:903.440000pt;}
.yd2{bottom:903.840000pt;}
.ye7{bottom:904.160000pt;}
.y105{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.y88{bottom:921.680000pt;}
.y12f{bottom:927.440000pt;}
.y5f{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y12e{bottom:943.040000pt;}
.y85{bottom:946.000000pt;}
.y5e{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y104{bottom:958.720000pt;}
.y5d{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y84{bottom:970.320000pt;}
.y103{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.hf{height:23.626667pt;}
.hb{height:23.680000pt;}
.h12{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h11{height:37.032187pt;}
.h13{height:39.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.ha{height:48.000000pt;}
.he{height:49.336436pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h14{height:54.927899pt;}
.hd{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h10{height:72.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:28.480000pt;}
.wd{width:29.600000pt;}
.w12{width:30.160000pt;}
.w1a{width:38.640000pt;}
.w15{width:46.000000pt;}
.wb{width:47.306667pt;}
.w20{width:50.400000pt;}
.w21{width:53.360000pt;}
.we{width:54.880000pt;}
.w25{width:55.840000pt;}
.w24{width:60.506667pt;}
.w14{width:63.120000pt;}
.w13{width:65.546667pt;}
.w7{width:65.920000pt;}
.w11{width:66.720000pt;}
.w19{width:68.160000pt;}
.w9{width:73.200000pt;}
.wa{width:75.040000pt;}
.w23{width:81.120000pt;}
.w2a{width:89.520000pt;}
.w28{width:90.080000pt;}
.w22{width:90.560000pt;}
.w2b{width:90.640000pt;}
.w6{width:92.080000pt;}
.w18{width:93.226667pt;}
.w27{width:94.106667pt;}
.wc{width:99.040000pt;}
.w3{width:99.440000pt;}
.w26{width:105.200000pt;}
.w16{width:108.640000pt;}
.w1f{width:119.546667pt;}
.w5{width:122.266667pt;}
.w1e{width:129.600000pt;}
.w10{width:139.040000pt;}
.w17{width:157.920000pt;}
.wf{width:163.786667pt;}
.w1b{width:178.906667pt;}
.w29{width:180.880000pt;}
.w1d{width:195.680000pt;}
.w4{width:214.986667pt;}
.w1c{width:249.786667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1e{left:69.040000pt;}
.x2d{left:84.479988pt;}
.x1f{left:99.280000pt;}
.x2e{left:108.479988pt;}
.x25{left:142.960000pt;}
.x17{left:147.706667pt;}
.x2{left:180.266655pt;}
.x8{left:200.746667pt;}
.xe{left:202.426667pt;}
.x26{left:204.186667pt;}
.x16{left:210.506655pt;}
.x2c{left:224.106655pt;}
.xf{left:232.666667pt;}
.x4{left:239.466667pt;}
.x18{left:256.986667pt;}
.x27{left:260.666667pt;}
.x9{left:267.386667pt;}
.x20{left:278.826667pt;}
.x10{left:288.186667pt;}
.x1d{left:289.226655pt;}
.xa{left:296.586667pt;}
.x6{left:339.546667pt;}
.x12{left:355.626667pt;}
.x28{left:366.506667pt;}
.xb{left:370.426667pt;}
.x13{left:386.426667pt;}
.x22{left:409.066667pt;}
.x19{left:415.626667pt;}
.x1a{left:444.826667pt;}
.xc{left:446.186667pt;}
.x11{left:452.613333pt;}
.x29{left:461.253333pt;}
.x7{left:462.453333pt;}
.xd{left:494.213333pt;}
.x14{left:516.453333pt;}
.x21{left:529.253333pt;}
.x1b{left:538.773333pt;}
.x15{left:545.653333pt;}
.x2a{left:551.973333pt;}
.x23{left:580.293333pt;}
.x1c{left:607.653333pt;}
.x24{left:634.373333pt;}
.x2b{left:642.213333pt;}
.x3{left:704.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  