
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fc4406fbe3d1d93c58cebda6.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_c96009898edb6da7294b0ca1.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_467ccf326e2275bf74c92c6d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7a4f893c1e498cbe32ba1566.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1a3d88c12569ca648f4d1658.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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;}
.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;}
.ls1{letter-spacing:-0.774000px;}
.ls13{letter-spacing:-0.593400px;}
.ls5{letter-spacing:-0.541200px;}
.lsa{letter-spacing:-0.535800px;}
.ls2{letter-spacing:-0.334200px;}
.ls6{letter-spacing:-0.270600px;}
.ls11{letter-spacing:-0.184200px;}
.ls4{letter-spacing:-0.166800px;}
.ls3{letter-spacing:-0.028800px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.040320px;}
.ls8{letter-spacing:0.126600px;}
.ls7{letter-spacing:0.178560px;}
.lsf{letter-spacing:0.178800px;}
.lsb{letter-spacing:0.184200px;}
.ls9{letter-spacing:0.195600px;}
.lsc{letter-spacing:0.201600px;}
.lsd{letter-spacing:0.259200px;}
.ls10{letter-spacing:7.585920px;}
.lse{letter-spacing:42.865920px;}
.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;}
}
.wsa{word-spacing:-14.140800px;}
.ws7{word-spacing:-14.134800px;}
.ws9{word-spacing:-14.123400px;}
.wsb{word-spacing:-14.118000px;}
.ws6{word-spacing:-14.065800px;}
.wsd{word-spacing:-13.979520px;}
.ws2{word-spacing:-13.939200px;}
.wsc{word-spacing:-13.755000px;}
.ws5{word-spacing:-13.668600px;}
.ws1{word-spacing:-13.605000px;}
.ws8{word-spacing:-13.403400px;}
.ws3{word-spacing:-13.398000px;}
.wse{word-spacing:-13.345800px;}
.ws0{word-spacing:-13.165200px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.267200px;}
._2{width:1.233600px;}
._e{width:2.559360px;}
._d{width:3.784320px;}
._8{width:5.309280px;}
._7{width:6.462720px;}
._11{width:7.856640px;}
._b{width:9.060480px;}
._c{width:10.327680px;}
._13{width:11.341440px;}
._5{width:12.418560px;}
._12{width:15.713280px;}
._15{width:16.790400px;}
._9{width:17.804160px;}
._a{width:19.077840px;}
._4{width:20.268720px;}
._3{width:21.438720px;}
._14{width:22.636800px;}
._6{width:23.832480px;}
._1{width:25.060800px;}
._17{width:26.188320px;}
._f{width:27.561600px;}
._10{width:28.702080px;}
._16{width:29.779200px;}
._35{width:31.363200px;}
._4c{width:33.073920px;}
._1c{width:34.087680px;}
._18{width:35.418240px;}
._31{width:36.622080px;}
._1b{width:37.635840px;}
._19{width:38.903040px;}
._34{width:40.170240px;}
._33{width:41.247360px;}
._1d{width:43.119360px;}
._4b{width:44.138880px;}
._42{width:45.302400px;}
._1f{width:47.013120px;}
._2a{width:48.343680px;}
._21{width:51.131520px;}
._46{width:52.715520px;}
._1a{width:54.426240px;}
._39{width:55.693440px;}
._22{width:57.277440px;}
._23{width:58.481280px;}
._2c{width:59.621760px;}
._30{width:61.205760px;}
._3c{width:63.930240px;}
._2d{width:65.070720px;}
._43{width:67.005120px;}
._20{width:68.175360px;}
._29{width:69.505920px;}
._3b{width:71.026560px;}
._2f{width:73.180800px;}
._24{width:75.335040px;}
._50{width:76.665600px;}
._67{width:78.059520px;}
._52{width:79.136640px;}
._64{width:81.037440px;}
._3e{width:84.078720px;}
._1e{width:85.916160px;}
._54{width:87.056640px;}
._65{width:88.133760px;}
._32{width:89.961120px;}
._4d{width:91.048320px;}
._37{width:94.026240px;}
._56{width:95.863680px;}
._27{width:97.257600px;}
._5b{width:98.271360px;}
._3a{width:100.742400px;}
._44{width:101.756160px;}
._51{width:103.340160px;}
._5a{width:104.480640px;}
._2b{width:106.508160px;}
._45{width:109.802880px;}
._41{width:111.640320px;}
._3f{width:113.034240px;}
._47{width:115.822080px;}
._3d{width:117.659520px;}
._36{width:119.623680px;}
._58{width:127.290240px;}
._62{width:131.788800px;}
._63{width:135.146880px;}
._2e{width:136.160640px;}
._4f{width:141.356160px;}
._59{width:143.256960px;}
._61{width:147.058560px;}
._40{width:148.896000px;}
._60{width:150.543360px;}
._53{width:152.634240px;}
._25{width:167.650560px;}
._5f{width:176.389920px;}
._57{width:178.928640px;}
._49{width:180.702720px;}
._26{width:192.867840px;}
._55{width:213.459840px;}
._5c{width:223.914240px;}
._28{width:227.905920px;}
._66{width:262.500480px;}
._4a{width:263.640960px;}
._48{width:280.431360px;}
._38{width:287.654400px;}
._4e{width:305.141760px;}
._5e{width:323.072640px;}
._5d{width:364.320000px;}
._69{width:605.220000px;}
._68{width:606.413280px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.420000px;}
.ye8{bottom:3.450000px;}
.y8b{bottom:21.780000px;}
.y113{bottom:21.810000px;}
.yef{bottom:21.825000px;}
.y5{bottom:21.960000px;}
.ye7{bottom:21.990000px;}
.yfb{bottom:22.005000px;}
.y8a{bottom:40.320000px;}
.y4{bottom:40.350000px;}
.yee{bottom:40.365000px;}
.ybf{bottom:40.500000px;}
.y93{bottom:40.530000px;}
.yc5{bottom:40.545000px;}
.y9{bottom:55.440000px;}
.y8{bottom:58.320000px;}
.yaf{bottom:58.680000px;}
.yb6{bottom:58.710000px;}
.yb1{bottom:58.725000px;}
.y8f{bottom:58.860000px;}
.y3{bottom:58.890000px;}
.y89{bottom:58.905000px;}
.y8e{bottom:77.220000px;}
.yb5{bottom:77.250000px;}
.y88{bottom:77.265000px;}
.yca{bottom:77.400000px;}
.y92{bottom:77.430000px;}
.y100{bottom:77.445000px;}
.yc2{bottom:82.260000px;}
.y84{bottom:85.140000px;}
.y19f{bottom:85.860000px;}
.y140{bottom:87.480000px;}
.y10d{bottom:87.840000px;}
.ydf{bottom:90.180000px;}
.y16a{bottom:90.360000px;}
.yac{bottom:90.900000px;}
.y78{bottom:95.400000px;}
.y8d{bottom:95.760000px;}
.y91{bottom:95.790000px;}
.y87{bottom:95.805000px;}
.y3d{bottom:98.280000px;}
.yf8{bottom:102.600000px;}
.y83{bottom:103.680000px;}
.y19e{bottom:104.220000px;}
.y13f{bottom:105.840000px;}
.y10c{bottom:106.380000px;}
.yde{bottom:108.540000px;}
.y169{bottom:108.900000px;}
.yab{bottom:109.260000px;}
.y77{bottom:113.760000px;}
.yb9{bottom:114.120000px;}
.yb4{bottom:114.150000px;}
.y3c{bottom:116.820000px;}
.yf7{bottom:120.960000px;}
.y82{bottom:122.040000px;}
.y19d{bottom:122.760000px;}
.y13e{bottom:124.380000px;}
.y10b{bottom:124.740000px;}
.ydd{bottom:127.080000px;}
.y17b{bottom:127.440000px;}
.yaa{bottom:127.800000px;}
.y76{bottom:132.300000px;}
.yb8{bottom:132.660000px;}
.y3b{bottom:135.360000px;}
.y168{bottom:136.440000px;}
.yf6{bottom:139.500000px;}
.y19c{bottom:141.300000px;}
.y13d{bottom:142.740000px;}
.y81{bottom:143.100000px;}
.y10a{bottom:143.280000px;}
.ydc{bottom:145.440000px;}
.ya9{bottom:146.160000px;}
.y75{bottom:150.660000px;}
.y3a{bottom:153.720000px;}
.y17a{bottom:154.800000px;}
.y167{bottom:154.980000px;}
.yc1{bottom:156.780000px;}
.yf5{bottom:158.040000px;}
.y19b{bottom:159.660000px;}
.y13c{bottom:161.280000px;}
.y80{bottom:161.640000px;}
.ydb{bottom:163.980000px;}
.ya8{bottom:164.700000px;}
.y74{bottom:169.200000px;}
.y39{bottom:172.260000px;}
.y179{bottom:173.340000px;}
.yf4{bottom:176.400000px;}
.y19a{bottom:178.200000px;}
.y13b{bottom:179.820000px;}
.y7f{bottom:180.000000px;}
.y109{bottom:180.180000px;}
.yda{bottom:182.340000px;}
.ya7{bottom:183.240000px;}
.y73{bottom:187.740000px;}
.y38{bottom:190.620000px;}
.yf3{bottom:194.940000px;}
.y199{bottom:196.560000px;}
.y13a{bottom:198.180000px;}
.y108{bottom:198.540000px;}
.y178{bottom:200.700000px;}
.y7e{bottom:200.880000px;}
.ya6{bottom:201.600000px;}
.y72{bottom:206.100000px;}
.y37{bottom:209.160000px;}
.yf2{bottom:210.630000px;}
.yc0{bottom:212.970000px;}
.y198{bottom:216.390000px;}
.y139{bottom:216.750000px;}
.y107{bottom:217.110000px;}
.y177{bottom:219.270000px;}
.y7d{bottom:219.450000px;}
.ya5{bottom:220.170000px;}
.y71{bottom:224.670000px;}
.y36{bottom:227.730000px;}
.y166{bottom:228.270000px;}
.y138{bottom:235.110000px;}
.y106{bottom:235.650000px;}
.yd9{bottom:237.810000px;}
.y7c{bottom:237.990000px;}
.ya4{bottom:238.530000px;}
.y197{bottom:241.050000px;}
.y70{bottom:243.030000px;}
.y35{bottom:246.090000px;}
.y165{bottom:246.810000px;}
.y137{bottom:253.650000px;}
.y105{bottom:254.010000px;}
.yd8{bottom:256.350000px;}
.ya3{bottom:257.070000px;}
.y7b{bottom:258.870000px;}
.y6f{bottom:261.570000px;}
.y34{bottom:264.630000px;}
.y176{bottom:265.170000px;}
.y164{bottom:265.350000px;}
.y196{bottom:265.530000px;}
.y136{bottom:272.010000px;}
.y104{bottom:272.550000px;}
.yd7{bottom:274.710000px;}
.ya2{bottom:275.430000px;}
.y7a{bottom:277.410000px;}
.y6e{bottom:279.930000px;}
.y33{bottom:282.990000px;}
.y175{bottom:283.710000px;}
.yf1{bottom:285.330000px;}
.ybe{bottom:287.490000px;}
.y195{bottom:290.190000px;}
.y135{bottom:290.550000px;}
.y103{bottom:290.910000px;}
.y163{bottom:292.710000px;}
.yd6{bottom:293.250000px;}
.ya1{bottom:293.970000px;}
.y79{bottom:295.950000px;}
.y6d{bottom:298.470000px;}
.y32{bottom:301.530000px;}
.y134{bottom:309.090000px;}
.y102{bottom:309.450000px;}
.y174{bottom:311.070000px;}
.y162{bottom:311.250000px;}
.yd5{bottom:311.610000px;}
.ya0{bottom:312.510000px;}
.y194{bottom:313.590000px;}
.y6c{bottom:317.010000px;}
.y31{bottom:319.890000px;}
.y101{bottom:325.290000px;}
.y133{bottom:327.450000px;}
.y173{bottom:329.610000px;}
.yd4{bottom:330.150000px;}
.y9f{bottom:330.870000px;}
.y193{bottom:333.390000px;}
.y6b{bottom:335.370000px;}
.y30{bottom:338.430000px;}
.y161{bottom:338.610000px;}
.y132{bottom:345.990000px;}
.yd3{bottom:348.690000px;}
.y9e{bottom:349.410000px;}
.y6a{bottom:353.910000px;}
.y2f{bottom:356.970000px;}
.y160{bottom:357.150000px;}
.y192{bottom:357.870000px;}
.yf0{bottom:359.850000px;}
.ybd{bottom:362.190000px;}
.y131{bottom:364.350000px;}
.yd2{bottom:367.050000px;}
.y9d{bottom:367.770000px;}
.y69{bottom:372.270000px;}
.y2e{bottom:375.330000px;}
.y15f{bottom:375.510000px;}
.y191{bottom:382.530000px;}
.y130{bottom:382.890000px;}
.yd1{bottom:385.590000px;}
.y9c{bottom:386.310000px;}
.y68{bottom:390.810000px;}
.y2d{bottom:393.870000px;}
.yff{bottom:399.810000px;}
.y12f{bottom:401.430000px;}
.y15e{bottom:403.050000px;}
.yd0{bottom:403.950000px;}
.y9b{bottom:404.850000px;}
.y190{bottom:407.190000px;}
.y67{bottom:409.350000px;}
.y2c{bottom:412.230000px;}
.ybc{bottom:418.350000px;}
.y12e{bottom:419.790000px;}
.y15d{bottom:421.590000px;}
.ycf{bottom:422.490000px;}
.y9a{bottom:423.210000px;}
.y66{bottom:427.710000px;}
.y2b{bottom:430.770000px;}
.y18f{bottom:431.850000px;}
.yed{bottom:434.550000px;}
.y12d{bottom:438.330000px;}
.ybb{bottom:441.030000px;}
.y99{bottom:441.750000px;}
.y65{bottom:446.295000px;}
.y15c{bottom:448.995000px;}
.y2a{bottom:449.355000px;}
.y18e{bottom:456.375000px;}
.y12c{bottom:456.735000px;}
.yba{bottom:459.435000px;}
.y98{bottom:460.155000px;}
.y64{bottom:464.655000px;}
.y15b{bottom:467.535000px;}
.y29{bottom:467.715000px;}
.yb7{bottom:475.275000px;}
.yce{bottom:477.975000px;}
.y97{bottom:478.695000px;}
.y18d{bottom:481.035000px;}
.y63{bottom:483.195000px;}
.y172{bottom:485.895000px;}
.y28{bottom:486.255000px;}
.yfe{bottom:492.915000px;}
.y12b{bottom:493.635000px;}
.y15a{bottom:494.895000px;}
.ycd{bottom:496.335000px;}
.y96{bottom:497.055000px;}
.y62{bottom:501.555000px;}
.y18c{bottom:504.435000px;}
.y27{bottom:504.615000px;}
.yec{bottom:509.115000px;}
.y12a{bottom:512.175000px;}
.y159{bottom:513.435000px;}
.ycc{bottom:514.875000px;}
.y95{bottom:515.595000px;}
.y61{bottom:520.095000px;}
.y26{bottom:523.155000px;}
.y129{bottom:530.715000px;}
.y94{bottom:531.435000px;}
.y18b{bottom:531.795000px;}
.y158{bottom:531.975000px;}
.ycb{bottom:533.235000px;}
.y60{bottom:538.635000px;}
.y25{bottom:545.475000px;}
.yc9{bottom:549.075000px;}
.y18a{bottom:550.335000px;}
.y119{bottom:551.775000px;}
.y5f{bottom:556.995000px;}
.y157{bottom:559.335000px;}
.y24{bottom:563.835000px;}
.yfd{bottom:567.615000px;}
.y118{bottom:570.315000px;}
.y5e{bottom:575.535000px;}
.y189{bottom:577.695000px;}
.y156{bottom:577.875000px;}
.y23{bottom:582.195000px;}
.y128{bottom:585.975000px;}
.y117{bottom:588.675000px;}
.y5d{bottom:593.895000px;}
.y188{bottom:596.235000px;}
.y22{bottom:600.735000px;}
.y127{bottom:604.515000px;}
.y155{bottom:605.235000px;}
.y116{bottom:607.215000px;}
.y5c{bottom:612.435000px;}
.y21{bottom:619.275000px;}
.yeb{bottom:620.715000px;}
.y126{bottom:623.055000px;}
.y187{bottom:623.595000px;}
.yb3{bottom:623.775000px;}
.y115{bottom:625.575000px;}
.y5b{bottom:630.975000px;}
.y20{bottom:637.635000px;}
.y125{bottom:641.415000px;}
.yc8{bottom:642.135000px;}
.y90{bottom:642.855000px;}
.yea{bottom:643.395000px;}
.y114{bottom:644.115000px;}
.y5a{bottom:649.335000px;}
.y1f{bottom:656.175000px;}
.y112{bottom:659.955000px;}
.y186{bottom:660.675000px;}
.ye9{bottom:661.755000px;}
.y59{bottom:667.875000px;}
.y154{bottom:669.675000px;}
.y1e{bottom:674.535000px;}
.ye6{bottom:677.595000px;}
.y124{bottom:678.315000px;}
.y58{bottom:686.265000px;}
.y185{bottom:688.065000px;}
.y153{bottom:688.245000px;}
.y1d{bottom:693.105000px;}
.y123{bottom:696.885000px;}
.y57{bottom:704.805000px;}
.y152{bottom:706.605000px;}
.y1c{bottom:711.465000px;}
.y122{bottom:715.245000px;}
.yfc{bottom:716.865000px;}
.y56{bottom:723.165000px;}
.y184{bottom:725.145000px;}
.y1b{bottom:730.005000px;}
.y121{bottom:733.785000px;}
.y151{bottom:733.965000px;}
.y111{bottom:734.505000px;}
.yc7{bottom:735.225000px;}
.y55{bottom:741.705000px;}
.y1a{bottom:748.545000px;}
.ye5{bottom:752.325000px;}
.y150{bottom:752.505000px;}
.yb2{bottom:753.765000px;}
.y8c{bottom:754.485000px;}
.y54{bottom:760.245000px;}
.y19{bottom:766.905000px;}
.y120{bottom:770.685000px;}
.y183{bottom:771.045000px;}
.y53{bottom:778.605000px;}
.y14f{bottom:780.045000px;}
.y18{bottom:785.445000px;}
.y11f{bottom:789.225000px;}
.y52{bottom:797.145000px;}
.y182{bottom:798.405000px;}
.y14e{bottom:798.585000px;}
.y17{bottom:803.805000px;}
.y11e{bottom:807.585000px;}
.y110{bottom:809.205000px;}
.yc6{bottom:809.925000px;}
.y51{bottom:815.505000px;}
.y181{bottom:816.945000px;}
.y16{bottom:824.505000px;}
.y14d{bottom:825.945000px;}
.y11d{bottom:826.125000px;}
.ye4{bottom:826.845000px;}
.y50{bottom:834.045000px;}
.y15{bottom:843.045000px;}
.y180{bottom:844.305000px;}
.y14c{bottom:844.485000px;}
.y11c{bottom:844.665000px;}
.y4f{bottom:852.585000px;}
.y14{bottom:861.585000px;}
.y17f{bottom:862.845000px;}
.y11b{bottom:863.025000px;}
.yb0{bottom:865.365000px;}
.y86{bottom:866.085000px;}
.y4e{bottom:870.945000px;}
.y14b{bottom:871.845000px;}
.y11a{bottom:878.145000px;}
.y13{bottom:879.945000px;}
.y17e{bottom:881.385000px;}
.y10f{bottom:883.725000px;}
.yc4{bottom:884.445000px;}
.y4d{bottom:889.485000px;}
.y14a{bottom:890.385000px;}
.y12{bottom:898.485000px;}
.yfa{bottom:902.985000px;}
.y4c{bottom:907.845000px;}
.y149{bottom:908.745000px;}
.y11{bottom:916.890000px;}
.ye3{bottom:919.950000px;}
.y4b{bottom:926.430000px;}
.y171{bottom:927.330000px;}
.y10{bottom:935.430000px;}
.y148{bottom:936.330000px;}
.y10e{bottom:939.930000px;}
.yc3{bottom:940.650000px;}
.y4a{bottom:944.790000px;}
.y17d{bottom:945.870000px;}
.yf{bottom:953.970000px;}
.y170{bottom:954.690000px;}
.y147{bottom:954.870000px;}
.yae{bottom:958.470000px;}
.y49{bottom:963.330000px;}
.ye{bottom:972.330000px;}
.y146{bottom:973.230000px;}
.y85{bottom:977.550000px;}
.y48{bottom:981.870000px;}
.y145{bottom:991.770000px;}
.yd{bottom:992.490000px;}
.ye2{bottom:994.650000px;}
.y47{bottom:1000.230000px;}
.y16f{bottom:1000.590000px;}
.y17c{bottom:1010.130000px;}
.yf9{bottom:1014.630000px;}
.yc{bottom:1018.770000px;}
.y144{bottom:1019.130000px;}
.y46{bottom:1037.130000px;}
.y143{bottom:1037.670000px;}
.yb{bottom:1045.230000px;}
.yad{bottom:1051.530000px;}
.y45{bottom:1055.670000px;}
.y16e{bottom:1056.210000px;}
.y142{bottom:1065.030000px;}
.ye1{bottom:1069.170000px;}
.y44{bottom:1074.210000px;}
.ya{bottom:1081.950000px;}
.y141{bottom:1083.570000px;}
.y43{bottom:1092.570000px;}
.y16d{bottom:1102.110000px;}
.y7{bottom:1110.930000px;}
.y42{bottom:1111.110000px;}
.y2{bottom:1118.130000px;}
.y16c{bottom:1120.470000px;}
.y41{bottom:1129.470000px;}
.ye0{bottom:1143.870000px;}
.y16b{bottom:1147.830000px;}
.y40{bottom:1148.010000px;}
.y3f{bottom:1166.400000px;}
.y1{bottom:1191.960000px;}
.y3e{bottom:1193.400000px;}
.h8{height:18.360000px;}
.h19{height:18.396000px;}
.h18{height:18.540000px;}
.h6{height:30.077578px;}
.hf{height:36.900000px;}
.ha{height:37.080000px;}
.h4{height:53.645625px;}
.h2{height:53.709961px;}
.h5{height:55.130625px;}
.h14{height:55.440000px;}
.h17{height:55.476000px;}
.h7{height:65.884219px;}
.h1b{height:73.298672px;}
.h16{height:73.800000px;}
.h3{height:73.836000px;}
.h15{height:73.980000px;}
.h1a{height:74.016000px;}
.h9{height:76.201172px;}
.h10{height:92.340000px;}
.h11{height:92.376000px;}
.he{height:110.700000px;}
.hb{height:110.736000px;}
.hc{height:110.880000px;}
.hd{height:110.916000px;}
.h12{height:129.276000px;}
.h13{height:147.780000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:26.136000px;}
.w6{width:99.360000px;}
.w7{width:106.236000px;}
.wa{width:107.100000px;}
.wb{width:133.956000px;}
.w1d{width:142.200000px;}
.we{width:166.860000px;}
.wf{width:183.270000px;}
.w17{width:191.010000px;}
.w14{width:194.790000px;}
.w1a{width:195.150000px;}
.w11{width:202.890000px;}
.w15{width:219.990000px;}
.wd{width:220.935000px;}
.w12{width:225.030000px;}
.w18{width:226.470000px;}
.w1e{width:233.175000px;}
.w1b{width:238.350000px;}
.w9{width:250.275000px;}
.wc{width:254.010000px;}
.w8{width:259.950000px;}
.w1c{width:283.035000px;}
.w13{width:288.615000px;}
.w19{width:298.875000px;}
.w16{width:301.575000px;}
.w1f{width:341.895000px;}
.w3{width:364.605000px;}
.w10{width:366.405000px;}
.w4{width:366.735000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:5.940000px;}
.x14{left:7.740000px;}
.x1d{left:21.600000px;}
.x25{left:23.805000px;}
.x16{left:27.180000px;}
.x38{left:34.245000px;}
.x2e{left:42.300000px;}
.x1e{left:45.540000px;}
.x22{left:51.885000px;}
.x18{left:62.280000px;}
.x20{left:63.720000px;}
.x1a{left:70.065000px;}
.x2{left:81.000000px;}
.x35{left:86.400000px;}
.x13{left:87.516000px;}
.x2b{left:89.280000px;}
.x9{left:90.755987px;}
.x33{left:94.140000px;}
.xd{left:96.515987px;}
.x4{left:102.420000px;}
.x3c{left:108.035987px;}
.x8{left:116.855987px;}
.x5{left:119.880000px;}
.x27{left:128.190000px;}
.x11{left:153.389987px;}
.x2c{left:156.629987px;}
.x15{left:187.590000px;}
.x36{left:189.389987px;}
.x1c{left:195.330000px;}
.x12{left:198.569987px;}
.x1b{left:208.829987px;}
.x23{left:212.429987px;}
.x28{left:220.349987px;}
.x37{left:230.250000px;}
.x30{left:236.369987px;}
.x24{left:255.270000px;}
.x31{left:279.435000px;}
.x2d{left:283.215000px;}
.x29{left:291.315000px;}
.x17{left:294.555000px;}
.x1f{left:330.015000px;}
.xf{left:350.714987px;}
.x3b{left:355.574987px;}
.xc{left:376.814987px;}
.x10{left:381.494987px;}
.xe{left:386.894987px;}
.xa{left:391.394987px;}
.x3a{left:411.734987px;}
.x26{left:439.275000px;}
.x3{left:445.605000px;}
.xb{left:446.684987px;}
.x39{left:464.145000px;}
.x2f{left:504.105000px;}
.x32{left:506.805000px;}
.x2a{left:517.065000px;}
.x34{left:522.645000px;}
.x19{left:555.405000px;}
.x21{left:584.745000px;}
.x7{left:786.210000px;}
.x1{left:812.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.688000pt;}
.ls13{letter-spacing:-0.527467pt;}
.ls5{letter-spacing:-0.481067pt;}
.lsa{letter-spacing:-0.476267pt;}
.ls2{letter-spacing:-0.297067pt;}
.ls6{letter-spacing:-0.240533pt;}
.ls11{letter-spacing:-0.163733pt;}
.ls4{letter-spacing:-0.148267pt;}
.ls3{letter-spacing:-0.025600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.035840pt;}
.ls8{letter-spacing:0.112533pt;}
.ls7{letter-spacing:0.158720pt;}
.lsf{letter-spacing:0.158933pt;}
.lsb{letter-spacing:0.163733pt;}
.ls9{letter-spacing:0.173867pt;}
.lsc{letter-spacing:0.179200pt;}
.lsd{letter-spacing:0.230400pt;}
.ls10{letter-spacing:6.743040pt;}
.lse{letter-spacing:38.103040pt;}
.wsa{word-spacing:-12.569600pt;}
.ws7{word-spacing:-12.564267pt;}
.ws9{word-spacing:-12.554133pt;}
.wsb{word-spacing:-12.549333pt;}
.ws6{word-spacing:-12.502933pt;}
.wsd{word-spacing:-12.426240pt;}
.ws2{word-spacing:-12.390400pt;}
.wsc{word-spacing:-12.226667pt;}
.ws5{word-spacing:-12.149867pt;}
.ws1{word-spacing:-12.093333pt;}
.ws8{word-spacing:-11.914133pt;}
.ws3{word-spacing:-11.909333pt;}
.wse{word-spacing:-11.862933pt;}
.ws0{word-spacing:-11.702400pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.126400pt;}
._2{width:1.096533pt;}
._e{width:2.274987pt;}
._d{width:3.363840pt;}
._8{width:4.719360pt;}
._7{width:5.744640pt;}
._11{width:6.983680pt;}
._b{width:8.053760pt;}
._c{width:9.180160pt;}
._13{width:10.081280pt;}
._5{width:11.038720pt;}
._12{width:13.967360pt;}
._15{width:14.924800pt;}
._9{width:15.825920pt;}
._a{width:16.958080pt;}
._4{width:18.016640pt;}
._3{width:19.056640pt;}
._14{width:20.121600pt;}
._6{width:21.184427pt;}
._1{width:22.276267pt;}
._17{width:23.278507pt;}
._f{width:24.499200pt;}
._10{width:25.512960pt;}
._16{width:26.470400pt;}
._35{width:27.878400pt;}
._4c{width:29.399040pt;}
._1c{width:30.300160pt;}
._18{width:31.482880pt;}
._31{width:32.552960pt;}
._1b{width:33.454080pt;}
._19{width:34.580480pt;}
._34{width:35.706880pt;}
._33{width:36.664320pt;}
._1d{width:38.328320pt;}
._4b{width:39.234560pt;}
._42{width:40.268800pt;}
._1f{width:41.789440pt;}
._2a{width:42.972160pt;}
._21{width:45.450240pt;}
._46{width:46.858240pt;}
._1a{width:48.378880pt;}
._39{width:49.505280pt;}
._22{width:50.913280pt;}
._23{width:51.983360pt;}
._2c{width:52.997120pt;}
._30{width:54.405120pt;}
._3c{width:56.826880pt;}
._2d{width:57.840640pt;}
._43{width:59.560107pt;}
._20{width:60.600320pt;}
._29{width:61.783040pt;}
._3b{width:63.134720pt;}
._2f{width:65.049600pt;}
._24{width:66.964480pt;}
._50{width:68.147200pt;}
._67{width:69.386240pt;}
._52{width:70.343680pt;}
._64{width:72.033280pt;}
._3e{width:74.736640pt;}
._1e{width:76.369920pt;}
._54{width:77.383680pt;}
._65{width:78.341120pt;}
._32{width:79.965440pt;}
._4d{width:80.931840pt;}
._37{width:83.578880pt;}
._56{width:85.212160pt;}
._27{width:86.451200pt;}
._5b{width:87.352320pt;}
._3a{width:89.548800pt;}
._44{width:90.449920pt;}
._51{width:91.857920pt;}
._5a{width:92.871680pt;}
._2b{width:94.673920pt;}
._45{width:97.602560pt;}
._41{width:99.235840pt;}
._3f{width:100.474880pt;}
._47{width:102.952960pt;}
._3d{width:104.586240pt;}
._36{width:106.332160pt;}
._58{width:113.146880pt;}
._62{width:117.145600pt;}
._63{width:120.130560pt;}
._2e{width:121.031680pt;}
._4f{width:125.649920pt;}
._59{width:127.339520pt;}
._61{width:130.718720pt;}
._40{width:132.352000pt;}
._60{width:133.816320pt;}
._53{width:135.674880pt;}
._25{width:149.022720pt;}
._5f{width:156.791040pt;}
._57{width:159.047680pt;}
._49{width:160.624640pt;}
._26{width:171.438080pt;}
._55{width:189.742080pt;}
._5c{width:199.034880pt;}
._28{width:202.583040pt;}
._66{width:233.333760pt;}
._4a{width:234.347520pt;}
._48{width:249.272320pt;}
._38{width:255.692800pt;}
._4e{width:271.237120pt;}
._5e{width:287.175680pt;}
._5d{width:323.840000pt;}
._69{width:537.973333pt;}
._68{width:539.034027pt;}
.fs2{font-size:26.880000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.040000pt;}
.ye8{bottom:3.066667pt;}
.y8b{bottom:19.360000pt;}
.y113{bottom:19.386667pt;}
.yef{bottom:19.400000pt;}
.y5{bottom:19.520000pt;}
.ye7{bottom:19.546667pt;}
.yfb{bottom:19.560000pt;}
.y8a{bottom:35.840000pt;}
.y4{bottom:35.866667pt;}
.yee{bottom:35.880000pt;}
.ybf{bottom:36.000000pt;}
.y93{bottom:36.026667pt;}
.yc5{bottom:36.040000pt;}
.y9{bottom:49.280000pt;}
.y8{bottom:51.840000pt;}
.yaf{bottom:52.160000pt;}
.yb6{bottom:52.186667pt;}
.yb1{bottom:52.200000pt;}
.y8f{bottom:52.320000pt;}
.y3{bottom:52.346667pt;}
.y89{bottom:52.360000pt;}
.y8e{bottom:68.640000pt;}
.yb5{bottom:68.666667pt;}
.y88{bottom:68.680000pt;}
.yca{bottom:68.800000pt;}
.y92{bottom:68.826667pt;}
.y100{bottom:68.840000pt;}
.yc2{bottom:73.120000pt;}
.y84{bottom:75.680000pt;}
.y19f{bottom:76.320000pt;}
.y140{bottom:77.760000pt;}
.y10d{bottom:78.080000pt;}
.ydf{bottom:80.160000pt;}
.y16a{bottom:80.320000pt;}
.yac{bottom:80.800000pt;}
.y78{bottom:84.800000pt;}
.y8d{bottom:85.120000pt;}
.y91{bottom:85.146667pt;}
.y87{bottom:85.160000pt;}
.y3d{bottom:87.360000pt;}
.yf8{bottom:91.200000pt;}
.y83{bottom:92.160000pt;}
.y19e{bottom:92.640000pt;}
.y13f{bottom:94.080000pt;}
.y10c{bottom:94.560000pt;}
.yde{bottom:96.480000pt;}
.y169{bottom:96.800000pt;}
.yab{bottom:97.120000pt;}
.y77{bottom:101.120000pt;}
.yb9{bottom:101.440000pt;}
.yb4{bottom:101.466667pt;}
.y3c{bottom:103.840000pt;}
.yf7{bottom:107.520000pt;}
.y82{bottom:108.480000pt;}
.y19d{bottom:109.120000pt;}
.y13e{bottom:110.560000pt;}
.y10b{bottom:110.880000pt;}
.ydd{bottom:112.960000pt;}
.y17b{bottom:113.280000pt;}
.yaa{bottom:113.600000pt;}
.y76{bottom:117.600000pt;}
.yb8{bottom:117.920000pt;}
.y3b{bottom:120.320000pt;}
.y168{bottom:121.280000pt;}
.yf6{bottom:124.000000pt;}
.y19c{bottom:125.600000pt;}
.y13d{bottom:126.880000pt;}
.y81{bottom:127.200000pt;}
.y10a{bottom:127.360000pt;}
.ydc{bottom:129.280000pt;}
.ya9{bottom:129.920000pt;}
.y75{bottom:133.920000pt;}
.y3a{bottom:136.640000pt;}
.y17a{bottom:137.600000pt;}
.y167{bottom:137.760000pt;}
.yc1{bottom:139.360000pt;}
.yf5{bottom:140.480000pt;}
.y19b{bottom:141.920000pt;}
.y13c{bottom:143.360000pt;}
.y80{bottom:143.680000pt;}
.ydb{bottom:145.760000pt;}
.ya8{bottom:146.400000pt;}
.y74{bottom:150.400000pt;}
.y39{bottom:153.120000pt;}
.y179{bottom:154.080000pt;}
.yf4{bottom:156.800000pt;}
.y19a{bottom:158.400000pt;}
.y13b{bottom:159.840000pt;}
.y7f{bottom:160.000000pt;}
.y109{bottom:160.160000pt;}
.yda{bottom:162.080000pt;}
.ya7{bottom:162.880000pt;}
.y73{bottom:166.880000pt;}
.y38{bottom:169.440000pt;}
.yf3{bottom:173.280000pt;}
.y199{bottom:174.720000pt;}
.y13a{bottom:176.160000pt;}
.y108{bottom:176.480000pt;}
.y178{bottom:178.400000pt;}
.y7e{bottom:178.560000pt;}
.ya6{bottom:179.200000pt;}
.y72{bottom:183.200000pt;}
.y37{bottom:185.920000pt;}
.yf2{bottom:187.226667pt;}
.yc0{bottom:189.306667pt;}
.y198{bottom:192.346667pt;}
.y139{bottom:192.666667pt;}
.y107{bottom:192.986667pt;}
.y177{bottom:194.906667pt;}
.y7d{bottom:195.066667pt;}
.ya5{bottom:195.706667pt;}
.y71{bottom:199.706667pt;}
.y36{bottom:202.426667pt;}
.y166{bottom:202.906667pt;}
.y138{bottom:208.986667pt;}
.y106{bottom:209.466667pt;}
.yd9{bottom:211.386667pt;}
.y7c{bottom:211.546667pt;}
.ya4{bottom:212.026667pt;}
.y197{bottom:214.266667pt;}
.y70{bottom:216.026667pt;}
.y35{bottom:218.746667pt;}
.y165{bottom:219.386667pt;}
.y137{bottom:225.466667pt;}
.y105{bottom:225.786667pt;}
.yd8{bottom:227.866667pt;}
.ya3{bottom:228.506667pt;}
.y7b{bottom:230.106667pt;}
.y6f{bottom:232.506667pt;}
.y34{bottom:235.226667pt;}
.y176{bottom:235.706667pt;}
.y164{bottom:235.866667pt;}
.y196{bottom:236.026667pt;}
.y136{bottom:241.786667pt;}
.y104{bottom:242.266667pt;}
.yd7{bottom:244.186667pt;}
.ya2{bottom:244.826667pt;}
.y7a{bottom:246.586667pt;}
.y6e{bottom:248.826667pt;}
.y33{bottom:251.546667pt;}
.y175{bottom:252.186667pt;}
.yf1{bottom:253.626667pt;}
.ybe{bottom:255.546667pt;}
.y195{bottom:257.946667pt;}
.y135{bottom:258.266667pt;}
.y103{bottom:258.586667pt;}
.y163{bottom:260.186667pt;}
.yd6{bottom:260.666667pt;}
.ya1{bottom:261.306667pt;}
.y79{bottom:263.066667pt;}
.y6d{bottom:265.306667pt;}
.y32{bottom:268.026667pt;}
.y134{bottom:274.746667pt;}
.y102{bottom:275.066667pt;}
.y174{bottom:276.506667pt;}
.y162{bottom:276.666667pt;}
.yd5{bottom:276.986667pt;}
.ya0{bottom:277.786667pt;}
.y194{bottom:278.746667pt;}
.y6c{bottom:281.786667pt;}
.y31{bottom:284.346667pt;}
.y101{bottom:289.146667pt;}
.y133{bottom:291.066667pt;}
.y173{bottom:292.986667pt;}
.yd4{bottom:293.466667pt;}
.y9f{bottom:294.106667pt;}
.y193{bottom:296.346667pt;}
.y6b{bottom:298.106667pt;}
.y30{bottom:300.826667pt;}
.y161{bottom:300.986667pt;}
.y132{bottom:307.546667pt;}
.yd3{bottom:309.946667pt;}
.y9e{bottom:310.586667pt;}
.y6a{bottom:314.586667pt;}
.y2f{bottom:317.306667pt;}
.y160{bottom:317.466667pt;}
.y192{bottom:318.106667pt;}
.yf0{bottom:319.866667pt;}
.ybd{bottom:321.946667pt;}
.y131{bottom:323.866667pt;}
.yd2{bottom:326.266667pt;}
.y9d{bottom:326.906667pt;}
.y69{bottom:330.906667pt;}
.y2e{bottom:333.626667pt;}
.y15f{bottom:333.786667pt;}
.y191{bottom:340.026667pt;}
.y130{bottom:340.346667pt;}
.yd1{bottom:342.746667pt;}
.y9c{bottom:343.386667pt;}
.y68{bottom:347.386667pt;}
.y2d{bottom:350.106667pt;}
.yff{bottom:355.386667pt;}
.y12f{bottom:356.826667pt;}
.y15e{bottom:358.266667pt;}
.yd0{bottom:359.066667pt;}
.y9b{bottom:359.866667pt;}
.y190{bottom:361.946667pt;}
.y67{bottom:363.866667pt;}
.y2c{bottom:366.426667pt;}
.ybc{bottom:371.866667pt;}
.y12e{bottom:373.146667pt;}
.y15d{bottom:374.746667pt;}
.ycf{bottom:375.546667pt;}
.y9a{bottom:376.186667pt;}
.y66{bottom:380.186667pt;}
.y2b{bottom:382.906667pt;}
.y18f{bottom:383.866667pt;}
.yed{bottom:386.266667pt;}
.y12d{bottom:389.626667pt;}
.ybb{bottom:392.026667pt;}
.y99{bottom:392.666667pt;}
.y65{bottom:396.706667pt;}
.y15c{bottom:399.106667pt;}
.y2a{bottom:399.426667pt;}
.y18e{bottom:405.666667pt;}
.y12c{bottom:405.986667pt;}
.yba{bottom:408.386667pt;}
.y98{bottom:409.026667pt;}
.y64{bottom:413.026667pt;}
.y15b{bottom:415.586667pt;}
.y29{bottom:415.746667pt;}
.yb7{bottom:422.466667pt;}
.yce{bottom:424.866667pt;}
.y97{bottom:425.506667pt;}
.y18d{bottom:427.586667pt;}
.y63{bottom:429.506667pt;}
.y172{bottom:431.906667pt;}
.y28{bottom:432.226667pt;}
.yfe{bottom:438.146667pt;}
.y12b{bottom:438.786667pt;}
.y15a{bottom:439.906667pt;}
.ycd{bottom:441.186667pt;}
.y96{bottom:441.826667pt;}
.y62{bottom:445.826667pt;}
.y18c{bottom:448.386667pt;}
.y27{bottom:448.546667pt;}
.yec{bottom:452.546667pt;}
.y12a{bottom:455.266667pt;}
.y159{bottom:456.386667pt;}
.ycc{bottom:457.666667pt;}
.y95{bottom:458.306667pt;}
.y61{bottom:462.306667pt;}
.y26{bottom:465.026667pt;}
.y129{bottom:471.746667pt;}
.y94{bottom:472.386667pt;}
.y18b{bottom:472.706667pt;}
.y158{bottom:472.866667pt;}
.ycb{bottom:473.986667pt;}
.y60{bottom:478.786667pt;}
.y25{bottom:484.866667pt;}
.yc9{bottom:488.066667pt;}
.y18a{bottom:489.186667pt;}
.y119{bottom:490.466667pt;}
.y5f{bottom:495.106667pt;}
.y157{bottom:497.186667pt;}
.y24{bottom:501.186667pt;}
.yfd{bottom:504.546667pt;}
.y118{bottom:506.946667pt;}
.y5e{bottom:511.586667pt;}
.y189{bottom:513.506667pt;}
.y156{bottom:513.666667pt;}
.y23{bottom:517.506667pt;}
.y128{bottom:520.866667pt;}
.y117{bottom:523.266667pt;}
.y5d{bottom:527.906667pt;}
.y188{bottom:529.986667pt;}
.y22{bottom:533.986667pt;}
.y127{bottom:537.346667pt;}
.y155{bottom:537.986667pt;}
.y116{bottom:539.746667pt;}
.y5c{bottom:544.386667pt;}
.y21{bottom:550.466667pt;}
.yeb{bottom:551.746667pt;}
.y126{bottom:553.826667pt;}
.y187{bottom:554.306667pt;}
.yb3{bottom:554.466667pt;}
.y115{bottom:556.066667pt;}
.y5b{bottom:560.866667pt;}
.y20{bottom:566.786667pt;}
.y125{bottom:570.146667pt;}
.yc8{bottom:570.786667pt;}
.y90{bottom:571.426667pt;}
.yea{bottom:571.906667pt;}
.y114{bottom:572.546667pt;}
.y5a{bottom:577.186667pt;}
.y1f{bottom:583.266667pt;}
.y112{bottom:586.626667pt;}
.y186{bottom:587.266667pt;}
.ye9{bottom:588.226667pt;}
.y59{bottom:593.666667pt;}
.y154{bottom:595.266667pt;}
.y1e{bottom:599.586667pt;}
.ye6{bottom:602.306667pt;}
.y124{bottom:602.946667pt;}
.y58{bottom:610.013333pt;}
.y185{bottom:611.613333pt;}
.y153{bottom:611.773333pt;}
.y1d{bottom:616.093333pt;}
.y123{bottom:619.453333pt;}
.y57{bottom:626.493333pt;}
.y152{bottom:628.093333pt;}
.y1c{bottom:632.413333pt;}
.y122{bottom:635.773333pt;}
.yfc{bottom:637.213333pt;}
.y56{bottom:642.813333pt;}
.y184{bottom:644.573333pt;}
.y1b{bottom:648.893333pt;}
.y121{bottom:652.253333pt;}
.y151{bottom:652.413333pt;}
.y111{bottom:652.893333pt;}
.yc7{bottom:653.533333pt;}
.y55{bottom:659.293333pt;}
.y1a{bottom:665.373333pt;}
.ye5{bottom:668.733333pt;}
.y150{bottom:668.893333pt;}
.yb2{bottom:670.013333pt;}
.y8c{bottom:670.653333pt;}
.y54{bottom:675.773333pt;}
.y19{bottom:681.693333pt;}
.y120{bottom:685.053333pt;}
.y183{bottom:685.373333pt;}
.y53{bottom:692.093333pt;}
.y14f{bottom:693.373333pt;}
.y18{bottom:698.173333pt;}
.y11f{bottom:701.533333pt;}
.y52{bottom:708.573333pt;}
.y182{bottom:709.693333pt;}
.y14e{bottom:709.853333pt;}
.y17{bottom:714.493333pt;}
.y11e{bottom:717.853333pt;}
.y110{bottom:719.293333pt;}
.yc6{bottom:719.933333pt;}
.y51{bottom:724.893333pt;}
.y181{bottom:726.173333pt;}
.y16{bottom:732.893333pt;}
.y14d{bottom:734.173333pt;}
.y11d{bottom:734.333333pt;}
.ye4{bottom:734.973333pt;}
.y50{bottom:741.373333pt;}
.y15{bottom:749.373333pt;}
.y180{bottom:750.493333pt;}
.y14c{bottom:750.653333pt;}
.y11c{bottom:750.813333pt;}
.y4f{bottom:757.853333pt;}
.y14{bottom:765.853333pt;}
.y17f{bottom:766.973333pt;}
.y11b{bottom:767.133333pt;}
.yb0{bottom:769.213333pt;}
.y86{bottom:769.853333pt;}
.y4e{bottom:774.173333pt;}
.y14b{bottom:774.973333pt;}
.y11a{bottom:780.573333pt;}
.y13{bottom:782.173333pt;}
.y17e{bottom:783.453333pt;}
.y10f{bottom:785.533333pt;}
.yc4{bottom:786.173333pt;}
.y4d{bottom:790.653333pt;}
.y14a{bottom:791.453333pt;}
.y12{bottom:798.653333pt;}
.yfa{bottom:802.653333pt;}
.y4c{bottom:806.973333pt;}
.y149{bottom:807.773333pt;}
.y11{bottom:815.013333pt;}
.ye3{bottom:817.733333pt;}
.y4b{bottom:823.493333pt;}
.y171{bottom:824.293333pt;}
.y10{bottom:831.493333pt;}
.y148{bottom:832.293333pt;}
.y10e{bottom:835.493333pt;}
.yc3{bottom:836.133333pt;}
.y4a{bottom:839.813333pt;}
.y17d{bottom:840.773333pt;}
.yf{bottom:847.973333pt;}
.y170{bottom:848.613333pt;}
.y147{bottom:848.773333pt;}
.yae{bottom:851.973333pt;}
.y49{bottom:856.293333pt;}
.ye{bottom:864.293333pt;}
.y146{bottom:865.093333pt;}
.y85{bottom:868.933333pt;}
.y48{bottom:872.773333pt;}
.y145{bottom:881.573333pt;}
.yd{bottom:882.213333pt;}
.ye2{bottom:884.133333pt;}
.y47{bottom:889.093333pt;}
.y16f{bottom:889.413333pt;}
.y17c{bottom:897.893333pt;}
.yf9{bottom:901.893333pt;}
.yc{bottom:905.573333pt;}
.y144{bottom:905.893333pt;}
.y46{bottom:921.893333pt;}
.y143{bottom:922.373333pt;}
.yb{bottom:929.093333pt;}
.yad{bottom:934.693333pt;}
.y45{bottom:938.373333pt;}
.y16e{bottom:938.853333pt;}
.y142{bottom:946.693333pt;}
.ye1{bottom:950.373333pt;}
.y44{bottom:954.853333pt;}
.ya{bottom:961.733333pt;}
.y141{bottom:963.173333pt;}
.y43{bottom:971.173333pt;}
.y16d{bottom:979.653333pt;}
.y7{bottom:987.493333pt;}
.y42{bottom:987.653333pt;}
.y2{bottom:993.893333pt;}
.y16c{bottom:995.973333pt;}
.y41{bottom:1003.973333pt;}
.ye0{bottom:1016.773333pt;}
.y16b{bottom:1020.293333pt;}
.y40{bottom:1020.453333pt;}
.y3f{bottom:1036.800000pt;}
.y1{bottom:1059.520000pt;}
.y3e{bottom:1060.800000pt;}
.h8{height:16.320000pt;}
.h19{height:16.352000pt;}
.h18{height:16.480000pt;}
.h6{height:26.735625pt;}
.hf{height:32.800000pt;}
.ha{height:32.960000pt;}
.h4{height:47.685000pt;}
.h2{height:47.742188pt;}
.h5{height:49.005000pt;}
.h14{height:49.280000pt;}
.h17{height:49.312000pt;}
.h7{height:58.563750pt;}
.h1b{height:65.154375pt;}
.h16{height:65.600000pt;}
.h3{height:65.632000pt;}
.h15{height:65.760000pt;}
.h1a{height:65.792000pt;}
.h9{height:67.734375pt;}
.h10{height:82.080000pt;}
.h11{height:82.112000pt;}
.he{height:98.400000pt;}
.hb{height:98.432000pt;}
.hc{height:98.560000pt;}
.hd{height:98.592000pt;}
.h12{height:114.912000pt;}
.h13{height:131.360000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:23.232000pt;}
.w6{width:88.320000pt;}
.w7{width:94.432000pt;}
.wa{width:95.200000pt;}
.wb{width:119.072000pt;}
.w1d{width:126.400000pt;}
.we{width:148.320000pt;}
.wf{width:162.906667pt;}
.w17{width:169.786667pt;}
.w14{width:173.146667pt;}
.w1a{width:173.466667pt;}
.w11{width:180.346667pt;}
.w15{width:195.546667pt;}
.wd{width:196.386667pt;}
.w12{width:200.026667pt;}
.w18{width:201.306667pt;}
.w1e{width:207.266667pt;}
.w1b{width:211.866667pt;}
.w9{width:222.466667pt;}
.wc{width:225.786667pt;}
.w8{width:231.066667pt;}
.w1c{width:251.586667pt;}
.w13{width:256.546667pt;}
.w19{width:265.666667pt;}
.w16{width:268.066667pt;}
.w1f{width:303.906667pt;}
.w3{width:324.093333pt;}
.w10{width:325.693333pt;}
.w4{width:325.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:5.280000pt;}
.x14{left:6.880000pt;}
.x1d{left:19.200000pt;}
.x25{left:21.160000pt;}
.x16{left:24.160000pt;}
.x38{left:30.440000pt;}
.x2e{left:37.600000pt;}
.x1e{left:40.480000pt;}
.x22{left:46.120000pt;}
.x18{left:55.360000pt;}
.x20{left:56.640000pt;}
.x1a{left:62.280000pt;}
.x2{left:72.000000pt;}
.x35{left:76.800000pt;}
.x13{left:77.792000pt;}
.x2b{left:79.360000pt;}
.x9{left:80.671988pt;}
.x33{left:83.680000pt;}
.xd{left:85.791988pt;}
.x4{left:91.040000pt;}
.x3c{left:96.031988pt;}
.x8{left:103.871988pt;}
.x5{left:106.560000pt;}
.x27{left:113.946667pt;}
.x11{left:136.346655pt;}
.x2c{left:139.226655pt;}
.x15{left:166.746667pt;}
.x36{left:168.346655pt;}
.x1c{left:173.626667pt;}
.x12{left:176.506655pt;}
.x1b{left:185.626655pt;}
.x23{left:188.826655pt;}
.x28{left:195.866655pt;}
.x37{left:204.666667pt;}
.x30{left:210.106655pt;}
.x24{left:226.906667pt;}
.x31{left:248.386667pt;}
.x2d{left:251.746667pt;}
.x29{left:258.946667pt;}
.x17{left:261.826667pt;}
.x1f{left:293.346667pt;}
.xf{left:311.746655pt;}
.x3b{left:316.066655pt;}
.xc{left:334.946655pt;}
.x10{left:339.106655pt;}
.xe{left:343.906655pt;}
.xa{left:347.906655pt;}
.x3a{left:365.986655pt;}
.x26{left:390.466667pt;}
.x3{left:396.093333pt;}
.xb{left:397.053322pt;}
.x39{left:412.573333pt;}
.x2f{left:448.093333pt;}
.x32{left:450.493333pt;}
.x2a{left:459.613333pt;}
.x34{left:464.573333pt;}
.x19{left:493.693333pt;}
.x21{left:519.773333pt;}
.x7{left:698.853333pt;}
.x1{left:722.079988pt;}
}




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