
    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_b50f1850f807b26d701e2c17.woff')format("woff");}.ff1{font-family:ff1;line-height:1.098145;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_56eab66822e4baeb64046000.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_088b6054b567ce5290db88c1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_a4df296cfbc66e1693c7f132.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_ce66e487d4f5b9459001e66b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fec1933fb8ec1fb2b9ad2d49.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919922;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_859c72d942ed727e728fa5e8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_ddb64498bde728ddd383a367.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_482f0ad7179a588a05760ea7.woff')format("woff");}.ffc{font-family:ffc;line-height:1.098145;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-15.660000px;}
.ls16{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.108000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.109440px;}
.ls12{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.900000px;}
.lsa{letter-spacing:15.066720px;}
.ls14{letter-spacing:16.506720px;}
.ls2{letter-spacing:26.586720px;}
.lsf{letter-spacing:26.730720px;}
.ls11{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.733600px;}
.ws1{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.166000px;}
.ws9{word-spacing:-13.716000px;}
.ws8{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws7{word-spacing:-0.113040px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:0.200040px;}
._d{margin-left:-6.094080px;}
._2d{margin-left:-4.661280px;}
._e{margin-left:-3.496320px;}
._c{margin-left:-2.264160px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._11{width:2.387760px;}
._16{width:4.028400px;}
._13{width:5.079600px;}
._15{width:6.095520px;}
._20{width:7.108560px;}
._17{width:8.333280px;}
._3{width:9.540000px;}
._14{width:10.932720px;}
._1{width:12.420000px;}
._25{width:13.622400px;}
._12{width:16.075440px;}
._24{width:17.089920px;}
._19{width:18.104400px;}
._1b{width:19.599840px;}
._21{width:20.732880px;}
._1e{width:21.751200px;}
._1f{width:23.352720px;}
._18{width:24.679440px;}
._23{width:26.765760px;}
._2a{width:28.444320px;}
._2b{width:29.634240px;}
._2e{width:30.834720px;}
._1d{width:32.029920px;}
._1c{width:33.160080px;}
._3c{width:34.188720px;}
._38{width:35.198640px;}
._22{width:37.204560px;}
._1a{width:38.364480px;}
._2f{width:39.800160px;}
._f{width:40.985280px;}
._10{width:42.305280px;}
._32{width:43.327440px;}
._28{width:45.236880px;}
._29{width:47.143920px;}
._2c{width:48.222720px;}
._39{width:50.435760px;}
._26{width:53.601840px;}
._27{width:54.912720px;}
._3e{width:56.473200px;}
._3d{width:57.548880px;}
._37{width:62.269920px;}
._36{width:63.465120px;}
._31{width:64.908000px;}
._33{width:69.606000px;}
._35{width:71.388000px;}
._34{width:72.846000px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._30{width:115.488000px;}
._3b{width:122.627520px;}
._3a{width:156.630960px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:5.220000px;}
.y2{bottom:5.400000px;}
.y28{bottom:5.760000px;}
.y26{bottom:5.940000px;}
.ya1{bottom:6.480000px;}
.y10{bottom:7.020000px;}
.y18{bottom:8.820000px;}
.ye0{bottom:9.000000px;}
.ydc{bottom:9.720000px;}
.ybf{bottom:10.620000px;}
.ybb{bottom:11.160000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.y9f{bottom:15.480000px;}
.ye2{bottom:18.000000px;}
.yda{bottom:18.540000px;}
.yc1{bottom:19.440000px;}
.yb9{bottom:20.160000px;}
.ye7{bottom:23.040000px;}
.ya9{bottom:23.220000px;}
.yc6{bottom:23.265000px;}
.ya0{bottom:24.300000px;}
.ya4{bottom:24.885000px;}
.y25{bottom:25.740000px;}
.ydf{bottom:26.820000px;}
.yd8{bottom:27.540000px;}
.ybe{bottom:28.440000px;}
.yb7{bottom:28.980000px;}
.yaa{bottom:32.040000px;}
.yc8{bottom:32.085000px;}
.ye1{bottom:35.820000px;}
.yd9{bottom:36.360000px;}
.yc0{bottom:37.440000px;}
.yb8{bottom:37.980000px;}
.y7{bottom:38.880000px;}
.ye6{bottom:40.860000px;}
.ya8{bottom:41.040000px;}
.yc5{bottom:41.085000px;}
.ya3{bottom:42.885000px;}
.yc{bottom:44.100000px;}
.yde{bottom:44.820000px;}
.ydb{bottom:45.360000px;}
.y24{bottom:45.570000px;}
.ybd{bottom:46.260000px;}
.yba{bottom:46.800000px;}
.yf{bottom:53.280000px;}
.ye5{bottom:58.680000px;}
.ya7{bottom:58.860000px;}
.yc4{bottom:58.905000px;}
.ya6{bottom:61.020000px;}
.ye4{bottom:62.820000px;}
.y6{bottom:63.180000px;}
.yc3{bottom:64.665000px;}
.y23{bottom:65.370000px;}
.yb{bottom:73.080000px;}
.y41{bottom:82.440000px;}
.y5{bottom:84.450000px;}
.y22{bottom:85.170000px;}
.ya{bottom:92.370000px;}
.y79{bottom:96.480000px;}
.y111{bottom:97.200000px;}
.yb5{bottom:97.920000px;}
.y40{bottom:102.240000px;}
.y21{bottom:105.150000px;}
.y4{bottom:106.950000px;}
.y9{bottom:110.190000px;}
.y78{bottom:116.280000px;}
.y110{bottom:117.000000px;}
.yb4{bottom:117.720000px;}
.y3f{bottom:122.040000px;}
.y20{bottom:124.950000px;}
.y3{bottom:126.750000px;}
.y77{bottom:136.080000px;}
.y10f{bottom:136.800000px;}
.yb3{bottom:137.700000px;}
.y3e{bottom:141.840000px;}
.y1f{bottom:144.750000px;}
.y80{bottom:146.880000px;}
.y76{bottom:155.910000px;}
.y10e{bottom:156.810000px;}
.yb2{bottom:157.530000px;}
.y3d{bottom:161.850000px;}
.y1e{bottom:164.550000px;}
.y7f{bottom:166.710000px;}
.y75{bottom:175.710000px;}
.y10d{bottom:176.610000px;}
.yb1{bottom:177.330000px;}
.y3c{bottom:181.650000px;}
.y1d{bottom:184.350000px;}
.y7e{bottom:186.690000px;}
.y74{bottom:195.690000px;}
.y10c{bottom:196.410000px;}
.yb0{bottom:197.130000px;}
.y3b{bottom:201.450000px;}
.y1c{bottom:204.330000px;}
.y7d{bottom:206.490000px;}
.y73{bottom:215.490000px;}
.y10b{bottom:216.210000px;}
.yaf{bottom:216.930000px;}
.y3a{bottom:221.250000px;}
.y1b{bottom:224.130000px;}
.y7c{bottom:226.290000px;}
.y72{bottom:235.290000px;}
.y10a{bottom:236.010000px;}
.y39{bottom:241.050000px;}
.y1a{bottom:243.930000px;}
.yae{bottom:245.910000px;}
.y7b{bottom:246.090000px;}
.y71{bottom:255.090000px;}
.y109{bottom:255.990000px;}
.y38{bottom:261.030000px;}
.yad{bottom:265.710000px;}
.y7a{bottom:265.890000px;}
.y70{bottom:274.890000px;}
.y108{bottom:275.790000px;}
.y37{bottom:280.830000px;}
.yac{bottom:285.510000px;}
.y6f{bottom:294.870000px;}
.y107{bottom:295.590000px;}
.y36{bottom:300.630000px;}
.yab{bottom:305.310000px;}
.y6e{bottom:314.670000px;}
.y106{bottom:315.390000px;}
.ya5{bottom:320.070000px;}
.y35{bottom:320.430000px;}
.y6d{bottom:334.470000px;}
.y105{bottom:335.190000px;}
.y34{bottom:340.230000px;}
.y6c{bottom:354.270000px;}
.y104{bottom:355.170000px;}
.y33{bottom:360.210000px;}
.y6b{bottom:374.070000px;}
.y103{bottom:374.970000px;}
.y32{bottom:380.010000px;}
.ya2{bottom:392.250000px;}
.y6a{bottom:394.050000px;}
.y102{bottom:394.770000px;}
.y31{bottom:399.810000px;}
.y69{bottom:413.895000px;}
.y101{bottom:414.615000px;}
.y30{bottom:419.655000px;}
.y68{bottom:433.695000px;}
.y100{bottom:434.415000px;}
.y2f{bottom:439.455000px;}
.y9e{bottom:450.255000px;}
.y67{bottom:453.495000px;}
.yff{bottom:454.395000px;}
.y2e{bottom:459.435000px;}
.y66{bottom:473.295000px;}
.yfe{bottom:474.195000px;}
.y2d{bottom:479.235000px;}
.y65{bottom:493.275000px;}
.yfd{bottom:493.995000px;}
.y9d{bottom:495.075000px;}
.y2c{bottom:499.035000px;}
.y64{bottom:513.075000px;}
.yfc{bottom:513.795000px;}
.y9c{bottom:514.875000px;}
.y2b{bottom:518.835000px;}
.y63{bottom:532.875000px;}
.yfb{bottom:533.595000px;}
.y9b{bottom:534.675000px;}
.y2a{bottom:538.635000px;}
.y62{bottom:552.675000px;}
.yfa{bottom:553.575000px;}
.y9a{bottom:554.475000px;}
.y29{bottom:558.615000px;}
.y61{bottom:572.475000px;}
.yf9{bottom:573.375000px;}
.y99{bottom:574.455000px;}
.y60{bottom:592.455000px;}
.y27{bottom:593.175000px;}
.y98{bottom:594.255000px;}
.yd6{bottom:597.495000px;}
.y5f{bottom:612.255000px;}
.yf8{bottom:612.975000px;}
.y19{bottom:613.695000px;}
.y97{bottom:614.055000px;}
.yd5{bottom:617.475000px;}
.y5e{bottom:632.055000px;}
.yf7{bottom:632.775000px;}
.y96{bottom:633.855000px;}
.yd4{bottom:637.275000px;}
.y5d{bottom:651.885000px;}
.yf6{bottom:652.785000px;}
.y95{bottom:653.685000px;}
.yd3{bottom:657.105000px;}
.y5c{bottom:671.685000px;}
.yf5{bottom:672.585000px;}
.y94{bottom:673.665000px;}
.yd2{bottom:676.905000px;}
.y5b{bottom:691.665000px;}
.yf4{bottom:692.385000px;}
.y93{bottom:693.465000px;}
.yd1{bottom:696.705000px;}
.y5a{bottom:711.465000px;}
.yf3{bottom:712.185000px;}
.y92{bottom:713.265000px;}
.yd0{bottom:716.685000px;}
.y59{bottom:731.265000px;}
.yf2{bottom:731.985000px;}
.y91{bottom:733.065000px;}
.ycf{bottom:736.485000px;}
.y58{bottom:751.065000px;}
.yf1{bottom:751.965000px;}
.y90{bottom:752.865000px;}
.yce{bottom:756.285000px;}
.y57{bottom:770.865000px;}
.yf0{bottom:771.765000px;}
.y8f{bottom:772.845000px;}
.ycd{bottom:776.085000px;}
.y56{bottom:790.845000px;}
.yef{bottom:791.565000px;}
.y8e{bottom:792.645000px;}
.ycc{bottom:804.885000px;}
.y55{bottom:810.645000px;}
.yee{bottom:811.365000px;}
.y8d{bottom:812.445000px;}
.ycb{bottom:824.865000px;}
.y54{bottom:830.445000px;}
.yed{bottom:831.165000px;}
.y8c{bottom:832.245000px;}
.yca{bottom:844.665000px;}
.y53{bottom:850.245000px;}
.yec{bottom:851.145000px;}
.y8b{bottom:852.045000px;}
.yc9{bottom:864.465000px;}
.y52{bottom:870.045000px;}
.yeb{bottom:870.945000px;}
.y8a{bottom:872.025000px;}
.y17{bottom:872.385000px;}
.yc2{bottom:879.225000px;}
.y51{bottom:890.025000px;}
.yea{bottom:890.745000px;}
.y89{bottom:891.825000px;}
.y16{bottom:901.950000px;}
.y50{bottom:909.870000px;}
.ye9{bottom:910.590000px;}
.y88{bottom:920.670000px;}
.y15{bottom:921.750000px;}
.y4f{bottom:929.670000px;}
.ye8{bottom:930.390000px;}
.y87{bottom:940.470000px;}
.y14{bottom:942.090000px;}
.ye3{bottom:945.330000px;}
.y4e{bottom:949.470000px;}
.ybc{bottom:951.450000px;}
.y86{bottom:960.270000px;}
.y13{bottom:963.330000px;}
.y4d{bottom:969.270000px;}
.y85{bottom:980.250000px;}
.y12{bottom:986.910000px;}
.y4c{bottom:989.250000px;}
.y84{bottom:1000.050000px;}
.y4b{bottom:1009.050000px;}
.yb6{bottom:1016.430000px;}
.ydd{bottom:1017.330000px;}
.y11{bottom:1018.590000px;}
.y83{bottom:1019.850000px;}
.y4a{bottom:1028.850000px;}
.y82{bottom:1039.650000px;}
.ye{bottom:1045.410000px;}
.y49{bottom:1048.650000px;}
.y81{bottom:1059.450000px;}
.y1{bottom:1067.730000px;}
.y48{bottom:1068.450000px;}
.yd7{bottom:1079.070000px;}
.y47{bottom:1088.430000px;}
.y46{bottom:1108.230000px;}
.y45{bottom:1128.030000px;}
.y44{bottom:1147.860000px;}
.y43{bottom:1174.500000px;}
.y42{bottom:1193.580000px;}
.h3{height:2.541094px;}
.h13{height:19.800000px;}
.ha{height:22.320000px;}
.h11{height:22.860000px;}
.h15{height:38.160000px;}
.h4{height:42.164648px;}
.h14{height:43.506914px;}
.h8{height:47.381836px;}
.h5{height:50.800781px;}
.h6{height:52.435898px;}
.h10{height:52.727695px;}
.hc{height:53.224453px;}
.h16{height:57.096000px;}
.hb{height:58.121719px;}
.hd{height:59.439023px;}
.hf{height:60.401953px;}
.h1e{height:61.020000px;}
.h1d{height:62.280000px;}
.h7{height:63.175781px;}
.h1a{height:64.260000px;}
.h19{height:65.340000px;}
.h9{height:65.884219px;}
.he{height:67.565039px;}
.h20{height:71.280000px;}
.h18{height:71.460000px;}
.h1c{height:71.496000px;}
.h17{height:129.276000px;}
.h1f{height:133.020000px;}
.h1b{height:136.476000px;}
.h2{height:140.796000px;}
.h12{height:257.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:35.496000px;}
.we{width:42.480000px;}
.w14{width:43.920000px;}
.w10{width:45.756000px;}
.w1b{width:53.136000px;}
.w16{width:54.180000px;}
.w19{width:56.700000px;}
.wd{width:56.736000px;}
.w13{width:58.536000px;}
.w1a{width:66.960000px;}
.w15{width:67.140000px;}
.wc{width:74.700000px;}
.w18{width:74.736000px;}
.wb{width:76.140000px;}
.w12{width:76.860000px;}
.wf{width:77.040000px;}
.w17{width:77.940000px;}
.w11{width:78.336000px;}
.w4{width:158.970000px;}
.w2{width:172.830000px;}
.w8{width:192.090000px;}
.w3{width:464.865000px;}
.w9{width:585.690000px;}
.w7{width:748.950000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.780000px;}
.xa{left:62.100000px;}
.x13{left:70.199987px;}
.xf{left:75.599987px;}
.x6{left:80.865000px;}
.xc{left:90.216000px;}
.x25{left:108.035987px;}
.x1b{left:133.776000px;}
.x7{left:140.085000px;}
.x2{left:160.050000px;}
.x26{left:180.209987px;}
.x27{left:185.429987px;}
.x24{left:187.769987px;}
.x1c{left:211.350000px;}
.x28{left:216.389987px;}
.x3{left:221.070000px;}
.x5{left:248.295000px;}
.xe{left:249.870000px;}
.x1d{left:270.615000px;}
.x1e{left:315.255000px;}
.x1f{left:383.115000px;}
.x12{left:390.854987px;}
.x10{left:473.504987px;}
.x2b{left:478.544987px;}
.x14{left:489.704987px;}
.x11{left:495.104987px;}
.x29{left:500.504987px;}
.x1a{left:505.544987px;}
.x2a{left:527.504987px;}
.x15{left:551.265000px;}
.x20{left:553.065000px;}
.x16{left:626.685000px;}
.x21{left:628.530000px;}
.x17{left:684.150000px;}
.x8{left:685.950000px;}
.x18{left:727.350000px;}
.x22{left:729.150000px;}
.x23{left:796.830000px;}
.x19{left:805.110000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-13.920000pt;}
.ls16{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.097280pt;}
.ls12{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.800000pt;}
.lsa{letter-spacing:13.392640pt;}
.ls14{letter-spacing:14.672640pt;}
.ls2{letter-spacing:23.632640pt;}
.lsf{letter-spacing:23.760640pt;}
.ls11{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.096533pt;}
.ws1{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.592000pt;}
.ws9{word-spacing:-12.192000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws7{word-spacing:-0.100480pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:0.177813pt;}
._d{margin-left:-5.416960pt;}
._2d{margin-left:-4.143360pt;}
._e{margin-left:-3.107840pt;}
._c{margin-left:-2.012587pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._11{width:2.122453pt;}
._16{width:3.580800pt;}
._13{width:4.515200pt;}
._15{width:5.418240pt;}
._20{width:6.318720pt;}
._17{width:7.407360pt;}
._3{width:8.480000pt;}
._14{width:9.717973pt;}
._1{width:11.040000pt;}
._25{width:12.108800pt;}
._12{width:14.289280pt;}
._24{width:15.191040pt;}
._19{width:16.092800pt;}
._1b{width:17.422080pt;}
._21{width:18.429227pt;}
._1e{width:19.334400pt;}
._1f{width:20.757973pt;}
._18{width:21.937280pt;}
._23{width:23.791787pt;}
._2a{width:25.283840pt;}
._2b{width:26.341547pt;}
._2e{width:27.408640pt;}
._1d{width:28.471040pt;}
._1c{width:29.475627pt;}
._3c{width:30.389973pt;}
._38{width:31.287680pt;}
._22{width:33.070720pt;}
._1a{width:34.101760pt;}
._2f{width:35.377920pt;}
._f{width:36.431360pt;}
._10{width:37.604693pt;}
._32{width:38.513280pt;}
._28{width:40.210560pt;}
._29{width:41.905707pt;}
._2c{width:42.864640pt;}
._39{width:44.831787pt;}
._26{width:47.646080pt;}
._27{width:48.811307pt;}
._3e{width:50.198400pt;}
._3d{width:51.154560pt;}
._37{width:55.351040pt;}
._36{width:56.413440pt;}
._31{width:57.696000pt;}
._33{width:61.872000pt;}
._35{width:63.456000pt;}
._34{width:64.752000pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._30{width:102.656000pt;}
._3b{width:109.002240pt;}
._3a{width:139.227520pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:4.640000pt;}
.y2{bottom:4.800000pt;}
.y28{bottom:5.120000pt;}
.y26{bottom:5.280000pt;}
.ya1{bottom:5.760000pt;}
.y10{bottom:6.240000pt;}
.y18{bottom:7.840000pt;}
.ye0{bottom:8.000000pt;}
.ydc{bottom:8.640000pt;}
.ybf{bottom:9.440000pt;}
.ybb{bottom:9.920000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.y9f{bottom:13.760000pt;}
.ye2{bottom:16.000000pt;}
.yda{bottom:16.480000pt;}
.yc1{bottom:17.280000pt;}
.yb9{bottom:17.920000pt;}
.ye7{bottom:20.480000pt;}
.ya9{bottom:20.640000pt;}
.yc6{bottom:20.680000pt;}
.ya0{bottom:21.600000pt;}
.ya4{bottom:22.120000pt;}
.y25{bottom:22.880000pt;}
.ydf{bottom:23.840000pt;}
.yd8{bottom:24.480000pt;}
.ybe{bottom:25.280000pt;}
.yb7{bottom:25.760000pt;}
.yaa{bottom:28.480000pt;}
.yc8{bottom:28.520000pt;}
.ye1{bottom:31.840000pt;}
.yd9{bottom:32.320000pt;}
.yc0{bottom:33.280000pt;}
.yb8{bottom:33.760000pt;}
.y7{bottom:34.560000pt;}
.ye6{bottom:36.320000pt;}
.ya8{bottom:36.480000pt;}
.yc5{bottom:36.520000pt;}
.ya3{bottom:38.120000pt;}
.yc{bottom:39.200000pt;}
.yde{bottom:39.840000pt;}
.ydb{bottom:40.320000pt;}
.y24{bottom:40.506667pt;}
.ybd{bottom:41.120000pt;}
.yba{bottom:41.600000pt;}
.yf{bottom:47.360000pt;}
.ye5{bottom:52.160000pt;}
.ya7{bottom:52.320000pt;}
.yc4{bottom:52.360000pt;}
.ya6{bottom:54.240000pt;}
.ye4{bottom:55.840000pt;}
.y6{bottom:56.160000pt;}
.yc3{bottom:57.480000pt;}
.y23{bottom:58.106667pt;}
.yb{bottom:64.960000pt;}
.y41{bottom:73.280000pt;}
.y5{bottom:75.066667pt;}
.y22{bottom:75.706667pt;}
.ya{bottom:82.106667pt;}
.y79{bottom:85.760000pt;}
.y111{bottom:86.400000pt;}
.yb5{bottom:87.040000pt;}
.y40{bottom:90.880000pt;}
.y21{bottom:93.466667pt;}
.y4{bottom:95.066667pt;}
.y9{bottom:97.946667pt;}
.y78{bottom:103.360000pt;}
.y110{bottom:104.000000pt;}
.yb4{bottom:104.640000pt;}
.y3f{bottom:108.480000pt;}
.y20{bottom:111.066667pt;}
.y3{bottom:112.666667pt;}
.y77{bottom:120.960000pt;}
.y10f{bottom:121.600000pt;}
.yb3{bottom:122.400000pt;}
.y3e{bottom:126.080000pt;}
.y1f{bottom:128.666667pt;}
.y80{bottom:130.560000pt;}
.y76{bottom:138.586667pt;}
.y10e{bottom:139.386667pt;}
.yb2{bottom:140.026667pt;}
.y3d{bottom:143.866667pt;}
.y1e{bottom:146.266667pt;}
.y7f{bottom:148.186667pt;}
.y75{bottom:156.186667pt;}
.y10d{bottom:156.986667pt;}
.yb1{bottom:157.626667pt;}
.y3c{bottom:161.466667pt;}
.y1d{bottom:163.866667pt;}
.y7e{bottom:165.946667pt;}
.y74{bottom:173.946667pt;}
.y10c{bottom:174.586667pt;}
.yb0{bottom:175.226667pt;}
.y3b{bottom:179.066667pt;}
.y1c{bottom:181.626667pt;}
.y7d{bottom:183.546667pt;}
.y73{bottom:191.546667pt;}
.y10b{bottom:192.186667pt;}
.yaf{bottom:192.826667pt;}
.y3a{bottom:196.666667pt;}
.y1b{bottom:199.226667pt;}
.y7c{bottom:201.146667pt;}
.y72{bottom:209.146667pt;}
.y10a{bottom:209.786667pt;}
.y39{bottom:214.266667pt;}
.y1a{bottom:216.826667pt;}
.yae{bottom:218.586667pt;}
.y7b{bottom:218.746667pt;}
.y71{bottom:226.746667pt;}
.y109{bottom:227.546667pt;}
.y38{bottom:232.026667pt;}
.yad{bottom:236.186667pt;}
.y7a{bottom:236.346667pt;}
.y70{bottom:244.346667pt;}
.y108{bottom:245.146667pt;}
.y37{bottom:249.626667pt;}
.yac{bottom:253.786667pt;}
.y6f{bottom:262.106667pt;}
.y107{bottom:262.746667pt;}
.y36{bottom:267.226667pt;}
.yab{bottom:271.386667pt;}
.y6e{bottom:279.706667pt;}
.y106{bottom:280.346667pt;}
.ya5{bottom:284.506667pt;}
.y35{bottom:284.826667pt;}
.y6d{bottom:297.306667pt;}
.y105{bottom:297.946667pt;}
.y34{bottom:302.426667pt;}
.y6c{bottom:314.906667pt;}
.y104{bottom:315.706667pt;}
.y33{bottom:320.186667pt;}
.y6b{bottom:332.506667pt;}
.y103{bottom:333.306667pt;}
.y32{bottom:337.786667pt;}
.ya2{bottom:348.666667pt;}
.y6a{bottom:350.266667pt;}
.y102{bottom:350.906667pt;}
.y31{bottom:355.386667pt;}
.y69{bottom:367.906667pt;}
.y101{bottom:368.546667pt;}
.y30{bottom:373.026667pt;}
.y68{bottom:385.506667pt;}
.y100{bottom:386.146667pt;}
.y2f{bottom:390.626667pt;}
.y9e{bottom:400.226667pt;}
.y67{bottom:403.106667pt;}
.yff{bottom:403.906667pt;}
.y2e{bottom:408.386667pt;}
.y66{bottom:420.706667pt;}
.yfe{bottom:421.506667pt;}
.y2d{bottom:425.986667pt;}
.y65{bottom:438.466667pt;}
.yfd{bottom:439.106667pt;}
.y9d{bottom:440.066667pt;}
.y2c{bottom:443.586667pt;}
.y64{bottom:456.066667pt;}
.yfc{bottom:456.706667pt;}
.y9c{bottom:457.666667pt;}
.y2b{bottom:461.186667pt;}
.y63{bottom:473.666667pt;}
.yfb{bottom:474.306667pt;}
.y9b{bottom:475.266667pt;}
.y2a{bottom:478.786667pt;}
.y62{bottom:491.266667pt;}
.yfa{bottom:492.066667pt;}
.y9a{bottom:492.866667pt;}
.y29{bottom:496.546667pt;}
.y61{bottom:508.866667pt;}
.yf9{bottom:509.666667pt;}
.y99{bottom:510.626667pt;}
.y60{bottom:526.626667pt;}
.y27{bottom:527.266667pt;}
.y98{bottom:528.226667pt;}
.yd6{bottom:531.106667pt;}
.y5f{bottom:544.226667pt;}
.yf8{bottom:544.866667pt;}
.y19{bottom:545.506667pt;}
.y97{bottom:545.826667pt;}
.yd5{bottom:548.866667pt;}
.y5e{bottom:561.826667pt;}
.yf7{bottom:562.466667pt;}
.y96{bottom:563.426667pt;}
.yd4{bottom:566.466667pt;}
.y5d{bottom:579.453333pt;}
.yf6{bottom:580.253333pt;}
.y95{bottom:581.053333pt;}
.yd3{bottom:584.093333pt;}
.y5c{bottom:597.053333pt;}
.yf5{bottom:597.853333pt;}
.y94{bottom:598.813333pt;}
.yd2{bottom:601.693333pt;}
.y5b{bottom:614.813333pt;}
.yf4{bottom:615.453333pt;}
.y93{bottom:616.413333pt;}
.yd1{bottom:619.293333pt;}
.y5a{bottom:632.413333pt;}
.yf3{bottom:633.053333pt;}
.y92{bottom:634.013333pt;}
.yd0{bottom:637.053333pt;}
.y59{bottom:650.013333pt;}
.yf2{bottom:650.653333pt;}
.y91{bottom:651.613333pt;}
.ycf{bottom:654.653333pt;}
.y58{bottom:667.613333pt;}
.yf1{bottom:668.413333pt;}
.y90{bottom:669.213333pt;}
.yce{bottom:672.253333pt;}
.y57{bottom:685.213333pt;}
.yf0{bottom:686.013333pt;}
.y8f{bottom:686.973333pt;}
.ycd{bottom:689.853333pt;}
.y56{bottom:702.973333pt;}
.yef{bottom:703.613333pt;}
.y8e{bottom:704.573333pt;}
.ycc{bottom:715.453333pt;}
.y55{bottom:720.573333pt;}
.yee{bottom:721.213333pt;}
.y8d{bottom:722.173333pt;}
.ycb{bottom:733.213333pt;}
.y54{bottom:738.173333pt;}
.yed{bottom:738.813333pt;}
.y8c{bottom:739.773333pt;}
.yca{bottom:750.813333pt;}
.y53{bottom:755.773333pt;}
.yec{bottom:756.573333pt;}
.y8b{bottom:757.373333pt;}
.yc9{bottom:768.413333pt;}
.y52{bottom:773.373333pt;}
.yeb{bottom:774.173333pt;}
.y8a{bottom:775.133333pt;}
.y17{bottom:775.453333pt;}
.yc2{bottom:781.533333pt;}
.y51{bottom:791.133333pt;}
.yea{bottom:791.773333pt;}
.y89{bottom:792.733333pt;}
.y16{bottom:801.733333pt;}
.y50{bottom:808.773333pt;}
.ye9{bottom:809.413333pt;}
.y88{bottom:818.373333pt;}
.y15{bottom:819.333333pt;}
.y4f{bottom:826.373333pt;}
.ye8{bottom:827.013333pt;}
.y87{bottom:835.973333pt;}
.y14{bottom:837.413333pt;}
.ye3{bottom:840.293333pt;}
.y4e{bottom:843.973333pt;}
.ybc{bottom:845.733333pt;}
.y86{bottom:853.573333pt;}
.y13{bottom:856.293333pt;}
.y4d{bottom:861.573333pt;}
.y85{bottom:871.333333pt;}
.y12{bottom:877.253333pt;}
.y4c{bottom:879.333333pt;}
.y84{bottom:888.933333pt;}
.y4b{bottom:896.933333pt;}
.yb6{bottom:903.493333pt;}
.ydd{bottom:904.293333pt;}
.y11{bottom:905.413333pt;}
.y83{bottom:906.533333pt;}
.y4a{bottom:914.533333pt;}
.y82{bottom:924.133333pt;}
.ye{bottom:929.253333pt;}
.y49{bottom:932.133333pt;}
.y81{bottom:941.733333pt;}
.y1{bottom:949.093333pt;}
.y48{bottom:949.733333pt;}
.yd7{bottom:959.173333pt;}
.y47{bottom:967.493333pt;}
.y46{bottom:985.093333pt;}
.y45{bottom:1002.693333pt;}
.y44{bottom:1020.320000pt;}
.y43{bottom:1044.000000pt;}
.y42{bottom:1060.960000pt;}
.h3{height:2.258750pt;}
.h13{height:17.600000pt;}
.ha{height:19.840000pt;}
.h11{height:20.320000pt;}
.h15{height:33.920000pt;}
.h4{height:37.479688pt;}
.h14{height:38.672812pt;}
.h8{height:42.117188pt;}
.h5{height:45.156250pt;}
.h6{height:46.609688pt;}
.h10{height:46.869062pt;}
.hc{height:47.310625pt;}
.h16{height:50.752000pt;}
.hb{height:51.663750pt;}
.hd{height:52.834688pt;}
.hf{height:53.690625pt;}
.h1e{height:54.240000pt;}
.h1d{height:55.360000pt;}
.h7{height:56.156250pt;}
.h1a{height:57.120000pt;}
.h19{height:58.080000pt;}
.h9{height:58.563750pt;}
.he{height:60.057813pt;}
.h20{height:63.360000pt;}
.h18{height:63.520000pt;}
.h1c{height:63.552000pt;}
.h17{height:114.912000pt;}
.h1f{height:118.240000pt;}
.h1b{height:121.312000pt;}
.h2{height:125.152000pt;}
.h12{height:229.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:31.552000pt;}
.we{width:37.760000pt;}
.w14{width:39.040000pt;}
.w10{width:40.672000pt;}
.w1b{width:47.232000pt;}
.w16{width:48.160000pt;}
.w19{width:50.400000pt;}
.wd{width:50.432000pt;}
.w13{width:52.032000pt;}
.w1a{width:59.520000pt;}
.w15{width:59.680000pt;}
.wc{width:66.400000pt;}
.w18{width:66.432000pt;}
.wb{width:67.680000pt;}
.w12{width:68.320000pt;}
.wf{width:68.480000pt;}
.w17{width:69.280000pt;}
.w11{width:69.632000pt;}
.w4{width:141.306667pt;}
.w2{width:153.626667pt;}
.w8{width:170.746667pt;}
.w3{width:413.213333pt;}
.w9{width:520.613333pt;}
.w7{width:665.733333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.360000pt;}
.xa{left:55.200000pt;}
.x13{left:62.399988pt;}
.xf{left:67.199988pt;}
.x6{left:71.880000pt;}
.xc{left:80.192000pt;}
.x25{left:96.031988pt;}
.x1b{left:118.912000pt;}
.x7{left:124.520000pt;}
.x2{left:142.266667pt;}
.x26{left:160.186655pt;}
.x27{left:164.826655pt;}
.x24{left:166.906655pt;}
.x1c{left:187.866667pt;}
.x28{left:192.346655pt;}
.x3{left:196.506667pt;}
.x5{left:220.706667pt;}
.xe{left:222.106667pt;}
.x1d{left:240.546667pt;}
.x1e{left:280.226667pt;}
.x1f{left:340.546667pt;}
.x12{left:347.426655pt;}
.x10{left:420.893322pt;}
.x2b{left:425.373322pt;}
.x14{left:435.293322pt;}
.x11{left:440.093322pt;}
.x29{left:444.893322pt;}
.x1a{left:449.373322pt;}
.x2a{left:468.893322pt;}
.x15{left:490.013333pt;}
.x20{left:491.613333pt;}
.x16{left:557.053333pt;}
.x21{left:558.693333pt;}
.x17{left:608.133333pt;}
.x8{left:609.733333pt;}
.x18{left:646.533333pt;}
.x22{left:648.133333pt;}
.x23{left:708.293333pt;}
.x19{left:715.653333pt;}
}




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