
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_1e9ceac73ad84ec1b3de92bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b0d635222f7097e7e9d8c5c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_aae1cc8dc3a1cb46c57808ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_339ad41479e67162f92e86f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_78035a343a37187246572b9a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_6193fc93719873dbca485474.woff2')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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3539c0d88f7404e04745c6ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2f02a9de54fccf3fa21b868a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;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_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1f{letter-spacing:-0.660000px;}
.lsf{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls1a{letter-spacing:-0.431400px;}
.ls21{letter-spacing:-0.414000px;}
.ls18{letter-spacing:-0.326400px;}
.ls19{letter-spacing:-0.240600px;}
.lsa{letter-spacing:-0.228000px;}
.ls20{letter-spacing:-0.107400px;}
.ls9{letter-spacing:-0.064800px;}
.ls10{letter-spacing:-0.058320px;}
.lsc{letter-spacing:-0.041040px;}
.ls4{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.060600px;}
.ls12{letter-spacing:0.064080px;}
.ls16{letter-spacing:0.064200px;}
.ls22{letter-spacing:0.169200px;}
.ls14{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.ls11{letter-spacing:0.175200px;}
.lsb{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.190200px;}
.ls5{letter-spacing:0.256200px;}
.ls24{letter-spacing:0.306000px;}
.ls8{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.479400px;}
.ls15{letter-spacing:0.858000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1c{letter-spacing:3.054240px;}
.ls1e{letter-spacing:12.186720px;}
.ls1d{letter-spacing:20.334240px;}
.ls1b{letter-spacing:42.426720px;}
.lse{letter-spacing:47.466720px;}
.ls13{letter-spacing:64.890720px;}
.lsd{letter-spacing:65.610720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws10{word-spacing:-13.811760px;}
.wsc{word-spacing:-13.680960px;}
.wsf{word-spacing:-13.674960px;}
.wsd{word-spacing:-13.569960px;}
.ws8{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.464720px;}
.wsb{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.440960px;}
.wse{word-spacing:-13.398360px;}
.ws4{word-spacing:-9.437760px;}
.ws6{word-spacing:-9.146880px;}
.ws5{word-spacing:-8.786880px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-1461.456240px;}
._2{margin-left:-1339.637760px;}
._3{margin-left:-1020.277200px;}
._5{margin-left:-592.697760px;}
._7{margin-left:-4.884000px;}
._6{margin-left:-3.312000px;}
._e{margin-left:-2.270880px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._b{width:2.495040px;}
._f{width:3.915360px;}
._14{width:5.438160px;}
._10{width:7.410240px;}
._13{width:8.784720px;}
._d{width:9.862560px;}
._c{width:11.023200px;}
._18{width:12.364080px;}
._8{width:14.459760px;}
._16{width:15.476880px;}
._15{width:16.673040px;}
._17{width:18.346320px;}
._1c{width:19.661040px;}
._1b{width:21.035520px;}
._33{width:22.249200px;}
._12{width:23.827920px;}
._11{width:24.919920px;}
._20{width:26.593200px;}
._1d{width:27.788400px;}
._28{width:28.864080px;}
._1a{width:30.059280px;}
._1e{width:33.286320px;}
._24{width:35.856000px;}
._3a{width:36.949920px;}
._37{width:38.604960px;}
._19{width:39.620880px;}
._29{width:41.573040px;}
._2d{width:42.628800px;}
._23{width:44.341920px;}
._27{width:45.827280px;}
._21{width:47.389680px;}
._32{width:49.242240px;}
._2a{width:53.724240px;}
._1f{width:55.098720px;}
._22{width:57.787920px;}
._38{width:61.014960px;}
._39{width:62.449200px;}
._26{width:63.763920px;}
._25{width:66.273840px;}
._2c{width:73.532400px;}
._a{width:74.851680px;}
._34{width:78.166080px;}
._35{width:80.377200px;}
._30{width:81.452880px;}
._36{width:84.201840px;}
._2b{width:105.536160px;}
._2e{width:146.949840px;}
._31{width:195.654240px;}
._2f{width:206.650080px;}
._9{width:1076.154240px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y98{bottom:2.700000px;}
.y99{bottom:6.480000px;}
.y83{bottom:6.660000px;}
.yc8{bottom:6.705000px;}
.y9a{bottom:7.200000px;}
.ybd{bottom:7.380000px;}
.yc5{bottom:7.425000px;}
.ye9{bottom:8.100000px;}
.yee{bottom:8.820000px;}
.y8b{bottom:9.000000px;}
.y8d{bottom:9.720000px;}
.yb3{bottom:10.485000px;}
.ydb{bottom:16.380000px;}
.y81{bottom:20.340000px;}
.ycf{bottom:21.450000px;}
.yc6{bottom:22.185000px;}
.ye2{bottom:23.760000px;}
.ybb{bottom:23.790000px;}
.yc7{bottom:23.805000px;}
.y8e{bottom:23.940000px;}
.ybc{bottom:24.510000px;}
.yc4{bottom:24.525000px;}
.ye8{bottom:25.200000px;}
.ya5{bottom:25.380000px;}
.yba{bottom:25.950000px;}
.y8a{bottom:26.100000px;}
.ybe{bottom:26.670000px;}
.y8c{bottom:26.820000px;}
.y82{bottom:27.720000px;}
.y92{bottom:27.750000px;}
.y9e{bottom:27.765000px;}
.ya6{bottom:28.440000px;}
.yd9{bottom:33.525000px;}
.y142{bottom:34.770000px;}
.yda{bottom:37.440000px;}
.ya9{bottom:48.780000px;}
.y91{bottom:48.810000px;}
.y9d{bottom:48.825000px;}
.yb1{bottom:53.325000px;}
.y6{bottom:61.380000px;}
.y80{bottom:63.180000px;}
.yc9{bottom:69.660000px;}
.ya8{bottom:69.840000px;}
.y90{bottom:69.870000px;}
.y9c{bottom:69.885000px;}
.yd7{bottom:86.265000px;}
.ya7{bottom:90.900000px;}
.y8f{bottom:90.930000px;}
.y9b{bottom:90.945000px;}
.y125{bottom:91.260000px;}
.y109{bottom:95.400000px;}
.yb4{bottom:96.480000px;}
.y31{bottom:102.960000px;}
.yed{bottom:103.140000px;}
.y64{bottom:103.320000px;}
.ydc{bottom:107.820000px;}
.yf1{bottom:111.990000px;}
.y124{bottom:112.320000px;}
.y108{bottom:116.460000px;}
.y141{bottom:122.400000px;}
.y30{bottom:124.020000px;}
.yec{bottom:124.200000px;}
.y63{bottom:124.380000px;}
.y13f{bottom:130.320000px;}
.yf0{bottom:133.050000px;}
.y123{bottom:133.380000px;}
.y107{bottom:137.520000px;}
.y84{bottom:138.600000px;}
.yb8{bottom:139.320000px;}
.ye7{bottom:142.950000px;}
.y2f{bottom:145.080000px;}
.yeb{bottom:145.260000px;}
.y62{bottom:145.440000px;}
.ye1{bottom:150.480000px;}
.y13e{bottom:151.380000px;}
.y122{bottom:154.470000px;}
.y106{bottom:158.610000px;}
.y2e{bottom:166.170000px;}
.y61{bottom:166.530000px;}
.ye0{bottom:171.750000px;}
.ydf{bottom:172.290000px;}
.y13d{bottom:172.470000px;}
.y121{bottom:175.530000px;}
.y105{bottom:179.670000px;}
.y97{bottom:180.390000px;}
.ycd{bottom:184.170000px;}
.yc3{bottom:184.185000px;}
.y2d{bottom:187.230000px;}
.y60{bottom:187.590000px;}
.y89{bottom:188.865000px;}
.yb9{bottom:193.170000px;}
.yde{bottom:193.350000px;}
.y13c{bottom:193.530000px;}
.yb7{bottom:193.890000px;}
.y120{bottom:196.590000px;}
.y104{bottom:200.730000px;}
.ycc{bottom:205.230000px;}
.y2c{bottom:208.290000px;}
.y5f{bottom:208.650000px;}
.ya4{bottom:210.600000px;}
.ydd{bottom:214.410000px;}
.y13b{bottom:214.590000px;}
.yb6{bottom:214.950000px;}
.y11f{bottom:217.650000px;}
.y103{bottom:221.790000px;}
.ycb{bottom:226.290000px;}
.ye5{bottom:227.880000px;}
.y2b{bottom:229.350000px;}
.y5e{bottom:229.710000px;}
.y13a{bottom:235.650000px;}
.yb5{bottom:236.010000px;}
.y11e{bottom:238.710000px;}
.y102{bottom:242.850000px;}
.y88{bottom:244.650000px;}
.yc1{bottom:248.085000px;}
.ye4{bottom:248.970000px;}
.y2a{bottom:250.410000px;}
.y5d{bottom:250.770000px;}
.y87{bottom:252.750000px;}
.y139{bottom:256.710000px;}
.y11d{bottom:259.770000px;}
.y101{bottom:263.910000px;}
.y95{bottom:265.365000px;}
.yc0{bottom:269.145000px;}
.y29{bottom:271.290000px;}
.y5c{bottom:271.830000px;}
.y86{bottom:273.855000px;}
.ya2{bottom:274.530000px;}
.y138{bottom:277.770000px;}
.y11c{bottom:280.830000px;}
.y100{bottom:284.970000px;}
.y94{bottom:286.455000px;}
.y28{bottom:292.350000px;}
.y5b{bottom:292.890000px;}
.y85{bottom:294.915000px;}
.ya1{bottom:295.590000px;}
.y137{bottom:298.830000px;}
.y11b{bottom:301.890000px;}
.yff{bottom:306.030000px;}
.y27{bottom:313.410000px;}
.y5a{bottom:313.950000px;}
.ya0{bottom:316.650000px;}
.y136{bottom:319.890000px;}
.y11a{bottom:322.950000px;}
.yfe{bottom:327.090000px;}
.y26{bottom:334.470000px;}
.y59{bottom:335.010000px;}
.yd6{bottom:337.350000px;}
.y135{bottom:340.950000px;}
.y119{bottom:344.010000px;}
.yb0{bottom:347.790000px;}
.yfd{bottom:348.150000px;}
.y25{bottom:355.530000px;}
.y58{bottom:356.070000px;}
.y134{bottom:362.010000px;}
.y118{bottom:365.070000px;}
.yfc{bottom:369.210000px;}
.y24{bottom:376.590000px;}
.y57{bottom:377.130000px;}
.y133{bottom:383.070000px;}
.y117{bottom:386.130000px;}
.yd8{bottom:390.090000px;}
.yfb{bottom:390.270000px;}
.yb2{bottom:390.630000px;}
.y23{bottom:397.650000px;}
.y56{bottom:398.190000px;}
.y132{bottom:404.175000px;}
.y116{bottom:407.235000px;}
.yfa{bottom:411.375000px;}
.y22{bottom:418.755000px;}
.y55{bottom:419.295000px;}
.yaf{bottom:422.895000px;}
.y131{bottom:425.235000px;}
.y115{bottom:428.295000px;}
.yf9{bottom:432.435000px;}
.y21{bottom:439.815000px;}
.yae{bottom:443.955000px;}
.yd5{bottom:445.395000px;}
.y130{bottom:446.295000px;}
.y7f{bottom:448.635000px;}
.y54{bottom:449.355000px;}
.yf8{bottom:453.495000px;}
.y114{bottom:458.355000px;}
.y20{bottom:460.875000px;}
.yad{bottom:465.015000px;}
.yd4{bottom:466.455000px;}
.y12f{bottom:467.355000px;}
.y53{bottom:470.415000px;}
.y113{bottom:479.415000px;}
.yf7{bottom:483.555000px;}
.y1f{bottom:484.455000px;}
.yac{bottom:486.075000px;}
.yd3{bottom:487.515000px;}
.y12e{bottom:488.415000px;}
.y52{bottom:491.475000px;}
.y112{bottom:500.475000px;}
.yf6{bottom:504.615000px;}
.yab{bottom:507.135000px;}
.yd2{bottom:508.575000px;}
.y12d{bottom:509.475000px;}
.y51{bottom:512.535000px;}
.y1e{bottom:514.335000px;}
.y111{bottom:521.535000px;}
.yf5{bottom:525.675000px;}
.yaa{bottom:528.195000px;}
.yd1{bottom:529.635000px;}
.y12c{bottom:530.535000px;}
.y50{bottom:533.595000px;}
.y1d{bottom:535.395000px;}
.y110{bottom:542.595000px;}
.y9f{bottom:543.315000px;}
.yf4{bottom:546.735000px;}
.yd0{bottom:550.695000px;}
.y12b{bottom:551.595000px;}
.y7e{bottom:554.655000px;}
.y1c{bottom:556.455000px;}
.y4f{bottom:563.655000px;}
.yca{bottom:565.815000px;}
.yf3{bottom:567.795000px;}
.y12a{bottom:572.655000px;}
.y7d{bottom:575.715000px;}
.y1b{bottom:577.515000px;}
.y4e{bottom:584.715000px;}
.yf2{bottom:588.855000px;}
.y129{bottom:593.715000px;}
.y7c{bottom:596.775000px;}
.y1a{bottom:598.575000px;}
.yef{bottom:603.975000px;}
.y4d{bottom:605.775000px;}
.y128{bottom:614.775000px;}
.y7b{bottom:617.835000px;}
.y19{bottom:619.635000px;}
.y4c{bottom:626.835000px;}
.yce{bottom:629.715000px;}
.y127{bottom:635.835000px;}
.y7a{bottom:638.895000px;}
.y18{bottom:640.695000px;}
.y4b{bottom:647.895000px;}
.ya3{bottom:649.365000px;}
.y126{bottom:656.925000px;}
.y79{bottom:659.985000px;}
.y17{bottom:661.785000px;}
.y10f{bottom:668.985000px;}
.y4a{bottom:677.985000px;}
.y78{bottom:681.045000px;}
.y16{bottom:682.845000px;}
.y10e{bottom:690.045000px;}
.y49{bottom:699.045000px;}
.y77{bottom:702.105000px;}
.y15{bottom:703.905000px;}
.y10d{bottom:711.105000px;}
.y48{bottom:720.105000px;}
.y76{bottom:723.165000px;}
.y14{bottom:724.965000px;}
.y10c{bottom:732.165000px;}
.y47{bottom:741.165000px;}
.y75{bottom:744.225000px;}
.y13{bottom:746.025000px;}
.yea{bottom:752.145000px;}
.y10b{bottom:753.225000px;}
.y46{bottom:762.225000px;}
.y74{bottom:765.285000px;}
.y12{bottom:767.085000px;}
.y10a{bottom:774.285000px;}
.y45{bottom:783.285000px;}
.y73{bottom:786.345000px;}
.y11{bottom:788.145000px;}
.y44{bottom:804.345000px;}
.y72{bottom:807.405000px;}
.y10{bottom:809.205000px;}
.y140{bottom:824.325000px;}
.y43{bottom:825.405000px;}
.yf{bottom:830.265000px;}
.y71{bottom:837.465000px;}
.y42{bottom:846.465000px;}
.ye{bottom:851.325000px;}
.y70{bottom:858.525000px;}
.y41{bottom:867.525000px;}
.yd{bottom:874.905000px;}
.y93{bottom:875.085000px;}
.y6f{bottom:879.585000px;}
.y40{bottom:888.585000px;}
.yc2{bottom:892.365000px;}
.y6e{bottom:900.690000px;}
.yc{bottom:901.230000px;}
.y3f{bottom:909.690000px;}
.ye3{bottom:912.570000px;}
.y6d{bottom:921.570000px;}
.yb{bottom:922.290000px;}
.y3e{bottom:930.570000px;}
.ya{bottom:939.030000px;}
.y6c{bottom:942.630000px;}
.y3d{bottom:951.630000px;}
.y9{bottom:961.350000px;}
.y6b{bottom:963.690000px;}
.y3c{bottom:972.690000px;}
.y96{bottom:981.150000px;}
.y6a{bottom:984.750000px;}
.y8{bottom:986.550000px;}
.y3b{bottom:993.750000px;}
.y69{bottom:1005.810000px;}
.y3a{bottom:1014.810000px;}
.ye6{bottom:1018.590000px;}
.y7{bottom:1020.210000px;}
.y68{bottom:1026.870000px;}
.y39{bottom:1035.870000px;}
.y67{bottom:1047.930000px;}
.y38{bottom:1056.930000px;}
.y5{bottom:1060.350000px;}
.y66{bottom:1068.990000px;}
.y37{bottom:1077.990000px;}
.y65{bottom:1090.050000px;}
.ybf{bottom:1091.670000px;}
.y4{bottom:1092.570000px;}
.y36{bottom:1099.050000px;}
.y35{bottom:1120.110000px;}
.y3{bottom:1124.610000px;}
.y34{bottom:1141.170000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1162.260000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h2b{height:2.864531px;}
.h16{height:24.876000px;}
.hb{height:34.740000px;}
.h8{height:38.671172px;}
.hc{height:42.120000px;}
.h2a{height:45.992812px;}
.h21{height:47.916000px;}
.h22{height:51.840000px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h1f{height:63.180000px;}
.h25{height:63.216000px;}
.h4{height:65.884219px;}
.h15{height:67.716000px;}
.h7{height:67.824844px;}
.ha{height:77.580000px;}
.h3{height:83.787539px;}
.h1c{height:84.060000px;}
.h19{height:84.276000px;}
.h5{height:98.051133px;}
.h20{height:100.656000px;}
.h14{height:105.300000px;}
.hf{height:105.336000px;}
.h29{height:147.456000px;}
.h27{height:157.350000px;}
.h28{height:159.690000px;}
.h24{height:164.880000px;}
.h1e{height:176.790000px;}
.h11{height:194.790000px;}
.h1b{height:198.570000px;}
.he{height:203.250000px;}
.h18{height:207.570000px;}
.h13{height:225.000000px;}
.h23{height:228.810000px;}
.h1d{height:240.690000px;}
.h17{height:250.410000px;}
.h26{height:263.370000px;}
.h1a{height:283.530000px;}
.h10{height:300.855000px;}
.hd{height:309.315000px;}
.h12{height:331.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:87.876000px;}
.w8{width:93.996000px;}
.w3{width:118.116000px;}
.w10{width:132.516000px;}
.w13{width:133.056000px;}
.w12{width:133.956000px;}
.w11{width:134.640000px;}
.wa{width:166.350000px;}
.wb{width:170.670000px;}
.wc{width:171.030000px;}
.wd{width:177.510000px;}
.w14{width:210.810000px;}
.w5{width:211.350000px;}
.w6{width:218.190000px;}
.w7{width:233.895000px;}
.w15{width:581.010000px;}
.w4{width:664.890000px;}
.wf{width:669.750000px;}
.w9{width:687.750000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x2{left:52.919987px;}
.x1{left:53.999987px;}
.x1f{left:67.500000px;}
.x28{left:75.239987px;}
.x4{left:85.895987px;}
.x1e{left:96.515987px;}
.x7{left:101.195987px;}
.x29{left:102.275987px;}
.x6{left:106.775987px;}
.x3{left:108.035987px;}
.x5{left:112.895987px;}
.x26{left:120.990000px;}
.x27{left:123.165000px;}
.x24{left:124.785000px;}
.x25{left:126.900000px;}
.x14{left:149.436000px;}
.x18{left:156.279000px;}
.x1b{left:158.430000px;}
.x1a{left:160.770000px;}
.x19{left:162.930000px;}
.x1c{left:165.990000px;}
.x1d{left:169.770000px;}
.x9{left:173.550000px;}
.xc{left:186.165000px;}
.x2a{left:190.110000px;}
.xf{left:192.285000px;}
.xd{left:198.930000px;}
.x10{left:203.430000px;}
.x12{left:210.270000px;}
.xe{left:212.475000px;}
.x11{left:217.695000px;}
.x13{left:225.975000px;}
.x2b{left:264.810000px;}
.x20{left:289.335000px;}
.x15{left:316.515000px;}
.xa{left:385.635000px;}
.x21{left:424.875000px;}
.x16{left:487.905000px;}
.x22{left:559.545000px;}
.xb{left:604.545000px;}
.x17{left:659.670000px;}
.x23{left:692.790000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1f{letter-spacing:-0.586667pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls1a{letter-spacing:-0.383467pt;}
.ls21{letter-spacing:-0.368000pt;}
.ls18{letter-spacing:-0.290133pt;}
.ls19{letter-spacing:-0.213867pt;}
.lsa{letter-spacing:-0.202667pt;}
.ls20{letter-spacing:-0.095467pt;}
.ls9{letter-spacing:-0.057600pt;}
.ls10{letter-spacing:-0.051840pt;}
.lsc{letter-spacing:-0.036480pt;}
.ls4{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.053867pt;}
.ls12{letter-spacing:0.056960pt;}
.ls16{letter-spacing:0.057067pt;}
.ls22{letter-spacing:0.150400pt;}
.ls14{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.ls11{letter-spacing:0.155733pt;}
.lsb{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.169067pt;}
.ls5{letter-spacing:0.227733pt;}
.ls24{letter-spacing:0.272000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426133pt;}
.ls15{letter-spacing:0.762667pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1c{letter-spacing:2.714880pt;}
.ls1e{letter-spacing:10.832640pt;}
.ls1d{letter-spacing:18.074880pt;}
.ls1b{letter-spacing:37.712640pt;}
.lse{letter-spacing:42.192640pt;}
.ls13{letter-spacing:57.680640pt;}
.lsd{letter-spacing:58.320640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws10{word-spacing:-12.277120pt;}
.wsc{word-spacing:-12.160853pt;}
.wsf{word-spacing:-12.155520pt;}
.wsd{word-spacing:-12.062187pt;}
.ws8{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.968640pt;}
.wsb{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.947520pt;}
.wse{word-spacing:-11.909653pt;}
.ws4{word-spacing:-8.389120pt;}
.ws6{word-spacing:-8.130560pt;}
.ws5{word-spacing:-7.810560pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-1299.072213pt;}
._2{margin-left:-1190.789120pt;}
._3{margin-left:-906.913067pt;}
._5{margin-left:-526.842453pt;}
._7{margin-left:-4.341333pt;}
._6{margin-left:-2.944000pt;}
._e{margin-left:-2.018560pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._b{width:2.217813pt;}
._f{width:3.480320pt;}
._14{width:4.833920pt;}
._10{width:6.586880pt;}
._13{width:7.808640pt;}
._d{width:8.766720pt;}
._c{width:9.798400pt;}
._18{width:10.990293pt;}
._8{width:12.853120pt;}
._16{width:13.757227pt;}
._15{width:14.820480pt;}
._17{width:16.307840pt;}
._1c{width:17.476480pt;}
._1b{width:18.698240pt;}
._33{width:19.777067pt;}
._12{width:21.180373pt;}
._11{width:22.151040pt;}
._20{width:23.638400pt;}
._1d{width:24.700800pt;}
._28{width:25.656960pt;}
._1a{width:26.719360pt;}
._1e{width:29.587840pt;}
._24{width:31.872000pt;}
._3a{width:32.844373pt;}
._37{width:34.315520pt;}
._19{width:35.218560pt;}
._29{width:36.953813pt;}
._2d{width:37.892267pt;}
._23{width:39.415040pt;}
._27{width:40.735360pt;}
._21{width:42.124160pt;}
._32{width:43.770880pt;}
._2a{width:47.754880pt;}
._1f{width:48.976640pt;}
._22{width:51.367040pt;}
._38{width:54.235520pt;}
._39{width:55.510400pt;}
._26{width:56.679040pt;}
._25{width:58.910080pt;}
._2c{width:65.362133pt;}
._a{width:66.534827pt;}
._34{width:69.480960pt;}
._35{width:71.446400pt;}
._30{width:72.402560pt;}
._36{width:74.846080pt;}
._2b{width:93.809920pt;}
._2e{width:130.622080pt;}
._31{width:173.914880pt;}
._2f{width:183.688960pt;}
._9{width:956.581547pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:2.400000pt;}
.y99{bottom:5.760000pt;}
.y83{bottom:5.920000pt;}
.yc8{bottom:5.960000pt;}
.y9a{bottom:6.400000pt;}
.ybd{bottom:6.560000pt;}
.yc5{bottom:6.600000pt;}
.ye9{bottom:7.200000pt;}
.yee{bottom:7.840000pt;}
.y8b{bottom:8.000000pt;}
.y8d{bottom:8.640000pt;}
.yb3{bottom:9.320000pt;}
.ydb{bottom:14.560000pt;}
.y81{bottom:18.080000pt;}
.ycf{bottom:19.066667pt;}
.yc6{bottom:19.720000pt;}
.ye2{bottom:21.120000pt;}
.ybb{bottom:21.146667pt;}
.yc7{bottom:21.160000pt;}
.y8e{bottom:21.280000pt;}
.ybc{bottom:21.786667pt;}
.yc4{bottom:21.800000pt;}
.ye8{bottom:22.400000pt;}
.ya5{bottom:22.560000pt;}
.yba{bottom:23.066667pt;}
.y8a{bottom:23.200000pt;}
.ybe{bottom:23.706667pt;}
.y8c{bottom:23.840000pt;}
.y82{bottom:24.640000pt;}
.y92{bottom:24.666667pt;}
.y9e{bottom:24.680000pt;}
.ya6{bottom:25.280000pt;}
.yd9{bottom:29.800000pt;}
.y142{bottom:30.906667pt;}
.yda{bottom:33.280000pt;}
.ya9{bottom:43.360000pt;}
.y91{bottom:43.386667pt;}
.y9d{bottom:43.400000pt;}
.yb1{bottom:47.400000pt;}
.y6{bottom:54.560000pt;}
.y80{bottom:56.160000pt;}
.yc9{bottom:61.920000pt;}
.ya8{bottom:62.080000pt;}
.y90{bottom:62.106667pt;}
.y9c{bottom:62.120000pt;}
.yd7{bottom:76.680000pt;}
.ya7{bottom:80.800000pt;}
.y8f{bottom:80.826667pt;}
.y9b{bottom:80.840000pt;}
.y125{bottom:81.120000pt;}
.y109{bottom:84.800000pt;}
.yb4{bottom:85.760000pt;}
.y31{bottom:91.520000pt;}
.yed{bottom:91.680000pt;}
.y64{bottom:91.840000pt;}
.ydc{bottom:95.840000pt;}
.yf1{bottom:99.546667pt;}
.y124{bottom:99.840000pt;}
.y108{bottom:103.520000pt;}
.y141{bottom:108.800000pt;}
.y30{bottom:110.240000pt;}
.yec{bottom:110.400000pt;}
.y63{bottom:110.560000pt;}
.y13f{bottom:115.840000pt;}
.yf0{bottom:118.266667pt;}
.y123{bottom:118.560000pt;}
.y107{bottom:122.240000pt;}
.y84{bottom:123.200000pt;}
.yb8{bottom:123.840000pt;}
.ye7{bottom:127.066667pt;}
.y2f{bottom:128.960000pt;}
.yeb{bottom:129.120000pt;}
.y62{bottom:129.280000pt;}
.ye1{bottom:133.760000pt;}
.y13e{bottom:134.560000pt;}
.y122{bottom:137.306667pt;}
.y106{bottom:140.986667pt;}
.y2e{bottom:147.706667pt;}
.y61{bottom:148.026667pt;}
.ye0{bottom:152.666667pt;}
.ydf{bottom:153.146667pt;}
.y13d{bottom:153.306667pt;}
.y121{bottom:156.026667pt;}
.y105{bottom:159.706667pt;}
.y97{bottom:160.346667pt;}
.ycd{bottom:163.706667pt;}
.yc3{bottom:163.720000pt;}
.y2d{bottom:166.426667pt;}
.y60{bottom:166.746667pt;}
.y89{bottom:167.880000pt;}
.yb9{bottom:171.706667pt;}
.yde{bottom:171.866667pt;}
.y13c{bottom:172.026667pt;}
.yb7{bottom:172.346667pt;}
.y120{bottom:174.746667pt;}
.y104{bottom:178.426667pt;}
.ycc{bottom:182.426667pt;}
.y2c{bottom:185.146667pt;}
.y5f{bottom:185.466667pt;}
.ya4{bottom:187.200000pt;}
.ydd{bottom:190.586667pt;}
.y13b{bottom:190.746667pt;}
.yb6{bottom:191.066667pt;}
.y11f{bottom:193.466667pt;}
.y103{bottom:197.146667pt;}
.ycb{bottom:201.146667pt;}
.ye5{bottom:202.560000pt;}
.y2b{bottom:203.866667pt;}
.y5e{bottom:204.186667pt;}
.y13a{bottom:209.466667pt;}
.yb5{bottom:209.786667pt;}
.y11e{bottom:212.186667pt;}
.y102{bottom:215.866667pt;}
.y88{bottom:217.466667pt;}
.yc1{bottom:220.520000pt;}
.ye4{bottom:221.306667pt;}
.y2a{bottom:222.586667pt;}
.y5d{bottom:222.906667pt;}
.y87{bottom:224.666667pt;}
.y139{bottom:228.186667pt;}
.y11d{bottom:230.906667pt;}
.y101{bottom:234.586667pt;}
.y95{bottom:235.880000pt;}
.yc0{bottom:239.240000pt;}
.y29{bottom:241.146667pt;}
.y5c{bottom:241.626667pt;}
.y86{bottom:243.426667pt;}
.ya2{bottom:244.026667pt;}
.y138{bottom:246.906667pt;}
.y11c{bottom:249.626667pt;}
.y100{bottom:253.306667pt;}
.y94{bottom:254.626667pt;}
.y28{bottom:259.866667pt;}
.y5b{bottom:260.346667pt;}
.y85{bottom:262.146667pt;}
.ya1{bottom:262.746667pt;}
.y137{bottom:265.626667pt;}
.y11b{bottom:268.346667pt;}
.yff{bottom:272.026667pt;}
.y27{bottom:278.586667pt;}
.y5a{bottom:279.066667pt;}
.ya0{bottom:281.466667pt;}
.y136{bottom:284.346667pt;}
.y11a{bottom:287.066667pt;}
.yfe{bottom:290.746667pt;}
.y26{bottom:297.306667pt;}
.y59{bottom:297.786667pt;}
.yd6{bottom:299.866667pt;}
.y135{bottom:303.066667pt;}
.y119{bottom:305.786667pt;}
.yb0{bottom:309.146667pt;}
.yfd{bottom:309.466667pt;}
.y25{bottom:316.026667pt;}
.y58{bottom:316.506667pt;}
.y134{bottom:321.786667pt;}
.y118{bottom:324.506667pt;}
.yfc{bottom:328.186667pt;}
.y24{bottom:334.746667pt;}
.y57{bottom:335.226667pt;}
.y133{bottom:340.506667pt;}
.y117{bottom:343.226667pt;}
.yd8{bottom:346.746667pt;}
.yfb{bottom:346.906667pt;}
.yb2{bottom:347.226667pt;}
.y23{bottom:353.466667pt;}
.y56{bottom:353.946667pt;}
.y132{bottom:359.266667pt;}
.y116{bottom:361.986667pt;}
.yfa{bottom:365.666667pt;}
.y22{bottom:372.226667pt;}
.y55{bottom:372.706667pt;}
.yaf{bottom:375.906667pt;}
.y131{bottom:377.986667pt;}
.y115{bottom:380.706667pt;}
.yf9{bottom:384.386667pt;}
.y21{bottom:390.946667pt;}
.yae{bottom:394.626667pt;}
.yd5{bottom:395.906667pt;}
.y130{bottom:396.706667pt;}
.y7f{bottom:398.786667pt;}
.y54{bottom:399.426667pt;}
.yf8{bottom:403.106667pt;}
.y114{bottom:407.426667pt;}
.y20{bottom:409.666667pt;}
.yad{bottom:413.346667pt;}
.yd4{bottom:414.626667pt;}
.y12f{bottom:415.426667pt;}
.y53{bottom:418.146667pt;}
.y113{bottom:426.146667pt;}
.yf7{bottom:429.826667pt;}
.y1f{bottom:430.626667pt;}
.yac{bottom:432.066667pt;}
.yd3{bottom:433.346667pt;}
.y12e{bottom:434.146667pt;}
.y52{bottom:436.866667pt;}
.y112{bottom:444.866667pt;}
.yf6{bottom:448.546667pt;}
.yab{bottom:450.786667pt;}
.yd2{bottom:452.066667pt;}
.y12d{bottom:452.866667pt;}
.y51{bottom:455.586667pt;}
.y1e{bottom:457.186667pt;}
.y111{bottom:463.586667pt;}
.yf5{bottom:467.266667pt;}
.yaa{bottom:469.506667pt;}
.yd1{bottom:470.786667pt;}
.y12c{bottom:471.586667pt;}
.y50{bottom:474.306667pt;}
.y1d{bottom:475.906667pt;}
.y110{bottom:482.306667pt;}
.y9f{bottom:482.946667pt;}
.yf4{bottom:485.986667pt;}
.yd0{bottom:489.506667pt;}
.y12b{bottom:490.306667pt;}
.y7e{bottom:493.026667pt;}
.y1c{bottom:494.626667pt;}
.y4f{bottom:501.026667pt;}
.yca{bottom:502.946667pt;}
.yf3{bottom:504.706667pt;}
.y12a{bottom:509.026667pt;}
.y7d{bottom:511.746667pt;}
.y1b{bottom:513.346667pt;}
.y4e{bottom:519.746667pt;}
.yf2{bottom:523.426667pt;}
.y129{bottom:527.746667pt;}
.y7c{bottom:530.466667pt;}
.y1a{bottom:532.066667pt;}
.yef{bottom:536.866667pt;}
.y4d{bottom:538.466667pt;}
.y128{bottom:546.466667pt;}
.y7b{bottom:549.186667pt;}
.y19{bottom:550.786667pt;}
.y4c{bottom:557.186667pt;}
.yce{bottom:559.746667pt;}
.y127{bottom:565.186667pt;}
.y7a{bottom:567.906667pt;}
.y18{bottom:569.506667pt;}
.y4b{bottom:575.906667pt;}
.ya3{bottom:577.213333pt;}
.y126{bottom:583.933333pt;}
.y79{bottom:586.653333pt;}
.y17{bottom:588.253333pt;}
.y10f{bottom:594.653333pt;}
.y4a{bottom:602.653333pt;}
.y78{bottom:605.373333pt;}
.y16{bottom:606.973333pt;}
.y10e{bottom:613.373333pt;}
.y49{bottom:621.373333pt;}
.y77{bottom:624.093333pt;}
.y15{bottom:625.693333pt;}
.y10d{bottom:632.093333pt;}
.y48{bottom:640.093333pt;}
.y76{bottom:642.813333pt;}
.y14{bottom:644.413333pt;}
.y10c{bottom:650.813333pt;}
.y47{bottom:658.813333pt;}
.y75{bottom:661.533333pt;}
.y13{bottom:663.133333pt;}
.yea{bottom:668.573333pt;}
.y10b{bottom:669.533333pt;}
.y46{bottom:677.533333pt;}
.y74{bottom:680.253333pt;}
.y12{bottom:681.853333pt;}
.y10a{bottom:688.253333pt;}
.y45{bottom:696.253333pt;}
.y73{bottom:698.973333pt;}
.y11{bottom:700.573333pt;}
.y44{bottom:714.973333pt;}
.y72{bottom:717.693333pt;}
.y10{bottom:719.293333pt;}
.y140{bottom:732.733333pt;}
.y43{bottom:733.693333pt;}
.yf{bottom:738.013333pt;}
.y71{bottom:744.413333pt;}
.y42{bottom:752.413333pt;}
.ye{bottom:756.733333pt;}
.y70{bottom:763.133333pt;}
.y41{bottom:771.133333pt;}
.yd{bottom:777.693333pt;}
.y93{bottom:777.853333pt;}
.y6f{bottom:781.853333pt;}
.y40{bottom:789.853333pt;}
.yc2{bottom:793.213333pt;}
.y6e{bottom:800.613333pt;}
.yc{bottom:801.093333pt;}
.y3f{bottom:808.613333pt;}
.ye3{bottom:811.173333pt;}
.y6d{bottom:819.173333pt;}
.yb{bottom:819.813333pt;}
.y3e{bottom:827.173333pt;}
.ya{bottom:834.693333pt;}
.y6c{bottom:837.893333pt;}
.y3d{bottom:845.893333pt;}
.y9{bottom:854.533333pt;}
.y6b{bottom:856.613333pt;}
.y3c{bottom:864.613333pt;}
.y96{bottom:872.133333pt;}
.y6a{bottom:875.333333pt;}
.y8{bottom:876.933333pt;}
.y3b{bottom:883.333333pt;}
.y69{bottom:894.053333pt;}
.y3a{bottom:902.053333pt;}
.ye6{bottom:905.413333pt;}
.y7{bottom:906.853333pt;}
.y68{bottom:912.773333pt;}
.y39{bottom:920.773333pt;}
.y67{bottom:931.493333pt;}
.y38{bottom:939.493333pt;}
.y5{bottom:942.533333pt;}
.y66{bottom:950.213333pt;}
.y37{bottom:958.213333pt;}
.y65{bottom:968.933333pt;}
.ybf{bottom:970.373333pt;}
.y4{bottom:971.173333pt;}
.y36{bottom:976.933333pt;}
.y35{bottom:995.653333pt;}
.y3{bottom:999.653333pt;}
.y34{bottom:1014.373333pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1033.120000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h2b{height:2.546250pt;}
.h16{height:22.112000pt;}
.hb{height:30.880000pt;}
.h8{height:34.374375pt;}
.hc{height:37.440000pt;}
.h2a{height:40.882500pt;}
.h21{height:42.592000pt;}
.h22{height:46.080000pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h1f{height:56.160000pt;}
.h25{height:56.192000pt;}
.h4{height:58.563750pt;}
.h15{height:60.192000pt;}
.h7{height:60.288750pt;}
.ha{height:68.960000pt;}
.h3{height:74.477812pt;}
.h1c{height:74.720000pt;}
.h19{height:74.912000pt;}
.h5{height:87.156562pt;}
.h20{height:89.472000pt;}
.h14{height:93.600000pt;}
.hf{height:93.632000pt;}
.h29{height:131.072000pt;}
.h27{height:139.866667pt;}
.h28{height:141.946667pt;}
.h24{height:146.560000pt;}
.h1e{height:157.146667pt;}
.h11{height:173.146667pt;}
.h1b{height:176.506667pt;}
.he{height:180.666667pt;}
.h18{height:184.506667pt;}
.h13{height:200.000000pt;}
.h23{height:203.386667pt;}
.h1d{height:213.946667pt;}
.h17{height:222.586667pt;}
.h26{height:234.106667pt;}
.h1a{height:252.026667pt;}
.h10{height:267.426667pt;}
.hd{height:274.946667pt;}
.h12{height:294.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:78.112000pt;}
.w8{width:83.552000pt;}
.w3{width:104.992000pt;}
.w10{width:117.792000pt;}
.w13{width:118.272000pt;}
.w12{width:119.072000pt;}
.w11{width:119.680000pt;}
.wa{width:147.866667pt;}
.wb{width:151.706667pt;}
.wc{width:152.026667pt;}
.wd{width:157.786667pt;}
.w14{width:187.386667pt;}
.w5{width:187.866667pt;}
.w6{width:193.946667pt;}
.w7{width:207.906667pt;}
.w15{width:516.453333pt;}
.w4{width:591.013333pt;}
.wf{width:595.333333pt;}
.w9{width:611.333333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x2{left:47.039988pt;}
.x1{left:47.999988pt;}
.x1f{left:60.000000pt;}
.x28{left:66.879988pt;}
.x4{left:76.351988pt;}
.x1e{left:85.791988pt;}
.x7{left:89.951988pt;}
.x29{left:90.911988pt;}
.x6{left:94.911988pt;}
.x3{left:96.031988pt;}
.x5{left:100.351988pt;}
.x26{left:107.546667pt;}
.x27{left:109.480000pt;}
.x24{left:110.920000pt;}
.x25{left:112.800000pt;}
.x14{left:132.832000pt;}
.x18{left:138.914667pt;}
.x1b{left:140.826667pt;}
.x1a{left:142.906667pt;}
.x19{left:144.826667pt;}
.x1c{left:147.546667pt;}
.x1d{left:150.906667pt;}
.x9{left:154.266667pt;}
.xc{left:165.480000pt;}
.x2a{left:168.986667pt;}
.xf{left:170.920000pt;}
.xd{left:176.826667pt;}
.x10{left:180.826667pt;}
.x12{left:186.906667pt;}
.xe{left:188.866667pt;}
.x11{left:193.506667pt;}
.x13{left:200.866667pt;}
.x2b{left:235.386667pt;}
.x20{left:257.186667pt;}
.x15{left:281.346667pt;}
.xa{left:342.786667pt;}
.x21{left:377.666667pt;}
.x16{left:433.693333pt;}
.x22{left:497.373333pt;}
.xb{left:537.373333pt;}
.x17{left:586.373333pt;}
.x23{left:615.813333pt;}
}




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