
    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_2cb9ff6d74dcdd93c790d537.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fc63ea9131ee18c8c10e7256.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_fe85f4af76b4216d7ac60fb6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_41c51a2241f0406aa1f343a2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_3994bb312b50b6c4ec4b32a3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.783691;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1eff3b805bd588f888be8e3d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ec0bcd06defbe2a5fc7576c2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_dfb4d631b021475a9694ede2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.999512;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_842d3b4a8ae3c1ebe08052ce.woff')format("woff");}.ffb{font-family:ffb;line-height:0.999512;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;}
.ls1c{letter-spacing:-4.116000px;}
.ls2{letter-spacing:-1.440000px;}
.ls1d{letter-spacing:-0.924000px;}
.lsc{letter-spacing:-0.774000px;}
.ls9{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.413400px;}
.ls6{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.014400px;}
.ls11{letter-spacing:0.033840px;}
.ls1b{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls21{letter-spacing:0.156000px;}
.lse{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.214560px;}
.ls5{letter-spacing:0.259800px;}
.ls23{letter-spacing:0.259920px;}
.ls20{letter-spacing:0.298800px;}
.ls1f{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.306600px;}
.ls1a{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.504000px;}
.ls18{letter-spacing:3.060000px;}
.ls22{letter-spacing:3.780000px;}
.ls19{letter-spacing:4.500000px;}
.ls1e{letter-spacing:16.506720px;}
.ls12{letter-spacing:38.106720px;}
.ls10{letter-spacing:43.146720px;}
.ls8{letter-spacing:43.866720px;}
.ls13{letter-spacing:44.586720px;}
.ls14{letter-spacing:46.026720px;}
.lsf{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-59.760000px;}
.ws2{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.246600px;}
.wse{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.220000px;}
.wsb{word-spacing:-10.824000px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._3a{margin-left:-14.489280px;}
._12{margin-left:-7.668000px;}
._b{margin-left:-6.597600px;}
._13{margin-left:-5.457360px;}
._35{margin-left:-4.448640px;}
._14{margin-left:-3.285360px;}
._c{margin-left:-2.099520px;}
._0{margin-left:-1.080000px;}
._d{width:1.148160px;}
._1{width:2.220000px;}
._18{width:3.672960px;}
._1b{width:4.900320px;}
._15{width:6.682560px;}
._17{width:8.366400px;}
._16{width:9.705600px;}
._6{width:10.800000px;}
._19{width:11.999040px;}
._1a{width:13.147200px;}
._20{width:15.996720px;}
._1f{width:17.077200px;}
._21{width:18.139920px;}
._25{width:19.734000px;}
._24{width:20.962560px;}
._23{width:22.230720px;}
._37{width:24.071520px;}
._22{width:25.637040px;}
._33{width:26.844240px;}
._34{width:27.947040px;}
._3e{width:30.234480px;}
._3d{width:31.732560px;}
._3b{width:38.225520px;}
._26{width:39.727680px;}
._3c{width:42.581520px;}
._31{width:43.937280px;}
._30{width:45.524400px;}
._29{width:50.604000px;}
._2d{width:65.735520px;}
._39{width:67.690800px;}
._38{width:69.189360px;}
._7{width:76.284960px;}
._1d{width:78.066720px;}
._36{width:80.180640px;}
._2f{width:93.033600px;}
._2b{width:102.229920px;}
._2a{width:103.697280px;}
._2e{width:126.990000px;}
._2c{width:129.845760px;}
._8{width:154.080000px;}
._27{width:155.537280px;}
._f{width:195.120000px;}
._28{width:218.888160px;}
._32{width:234.007440px;}
._2{width:255.512640px;}
._1c{width:256.532160px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._1e{width:605.383680px;}
._10{width:653.880000px;}
._11{width:703.560000px;}
._a{width:1096.860000px;}
._e{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.ybb{bottom:-11.340000px;}
.yc2{bottom:-10.980000px;}
.yd7{bottom:-9.720000px;}
.y0{bottom:0.000000px;}
.ydf{bottom:0.255000px;}
.yd9{bottom:1.800000px;}
.ydd{bottom:2.160000px;}
.ydb{bottom:3.960000px;}
.yf2{bottom:5.760000px;}
.yf9{bottom:5.940000px;}
.yba{bottom:5.970000px;}
.ye{bottom:6.300000px;}
.yc9{bottom:6.480000px;}
.yd6{bottom:7.560000px;}
.yd0{bottom:9.000000px;}
.y6{bottom:12.420000px;}
.yf0{bottom:15.660000px;}
.yf6{bottom:15.840000px;}
.y8{bottom:18.180000px;}
.yb9{bottom:23.250000px;}
.yc1{bottom:23.400000px;}
.yc8{bottom:24.840000px;}
.yf1{bottom:25.560000px;}
.yf5{bottom:25.740000px;}
.ycf{bottom:26.280000px;}
.yfa{bottom:35.640000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.yb8{bottom:40.350000px;}
.yc0{bottom:40.680000px;}
.yd5{bottom:42.120000px;}
.yc7{bottom:43.200000px;}
.yce{bottom:43.560000px;}
.yf8{bottom:45.540000px;}
.yb7{bottom:57.630000px;}
.yb{bottom:57.780000px;}
.ybf{bottom:57.960000px;}
.yd4{bottom:59.400000px;}
.ycd{bottom:60.840000px;}
.yc6{bottom:61.560000px;}
.y4{bottom:68.400000px;}
.yb6{bottom:74.910000px;}
.ybe{bottom:75.285000px;}
.yd{bottom:75.420000px;}
.yd3{bottom:76.680000px;}
.ycc{bottom:78.150000px;}
.ya{bottom:79.560000px;}
.yc5{bottom:79.740000px;}
.yb5{bottom:92.190000px;}
.ybd{bottom:92.565000px;}
.yd2{bottom:93.780000px;}
.ycb{bottom:95.430000px;}
.y3{bottom:96.330000px;}
.yc4{bottom:98.100000px;}
.y11d{bottom:106.200000px;}
.yac{bottom:109.440000px;}
.yfc{bottom:110.340000px;}
.y3a{bottom:111.240000px;}
.y75{bottom:117.180000px;}
.y125{bottom:117.360000px;}
.y122{bottom:118.440000px;}
.ye2{bottom:120.240000px;}
.y2{bottom:125.670000px;}
.y11c{bottom:126.000000px;}
.yab{bottom:129.240000px;}
.y39{bottom:131.220000px;}
.y124{bottom:136.620000px;}
.y74{bottom:136.980000px;}
.y121{bottom:138.240000px;}
.ye1{bottom:140.220000px;}
.y11b{bottom:145.800000px;}
.yaa{bottom:149.220000px;}
.y38{bottom:151.020000px;}
.y123{bottom:155.910000px;}
.yfb{bottom:156.090000px;}
.y73{bottom:156.990000px;}
.y120{bottom:158.250000px;}
.ye0{bottom:160.050000px;}
.y11a{bottom:165.630000px;}
.ya9{bottom:169.050000px;}
.y88{bottom:170.850000px;}
.y72{bottom:176.790000px;}
.y11f{bottom:178.050000px;}
.y37{bottom:179.850000px;}
.y119{bottom:186.690000px;}
.ya8{bottom:188.850000px;}
.y87{bottom:190.650000px;}
.y71{bottom:196.590000px;}
.y11e{bottom:197.850000px;}
.y36{bottom:199.650000px;}
.yf7{bottom:201.630000px;}
.y118{bottom:206.490000px;}
.ya7{bottom:208.650000px;}
.y86{bottom:210.450000px;}
.y70{bottom:216.390000px;}
.yb3{bottom:217.650000px;}
.y35{bottom:219.450000px;}
.y117{bottom:226.290000px;}
.ya6{bottom:228.450000px;}
.y85{bottom:230.430000px;}
.y6f{bottom:236.190000px;}
.yb2{bottom:237.450000px;}
.y34{bottom:239.430000px;}
.y116{bottom:247.170000px;}
.ya5{bottom:248.430000px;}
.y84{bottom:250.230000px;}
.y6e{bottom:256.170000px;}
.yb1{bottom:257.430000px;}
.y33{bottom:259.230000px;}
.y115{bottom:266.970000px;}
.yf4{bottom:267.150000px;}
.ya4{bottom:268.230000px;}
.y83{bottom:270.030000px;}
.y6d{bottom:275.970000px;}
.yb0{bottom:277.230000px;}
.y32{bottom:279.030000px;}
.y114{bottom:286.950000px;}
.ya3{bottom:288.030000px;}
.y82{bottom:289.830000px;}
.y6c{bottom:295.770000px;}
.yaf{bottom:297.030000px;}
.y31{bottom:298.830000px;}
.ya2{bottom:307.830000px;}
.y81{bottom:309.630000px;}
.yf3{bottom:312.870000px;}
.y6b{bottom:315.570000px;}
.yae{bottom:316.830000px;}
.y30{bottom:318.630000px;}
.ya1{bottom:327.630000px;}
.y80{bottom:329.610000px;}
.y6a{bottom:335.370000px;}
.yad{bottom:336.630000px;}
.y2f{bottom:338.610000px;}
.y113{bottom:347.430000px;}
.ya0{bottom:347.610000px;}
.y7f{bottom:349.410000px;}
.y69{bottom:355.350000px;}
.y5d{bottom:356.610000px;}
.y2e{bottom:358.410000px;}
.yef{bottom:358.590000px;}
.y9f{bottom:367.410000px;}
.y112{bottom:368.310000px;}
.y7e{bottom:369.210000px;}
.y68{bottom:375.150000px;}
.y5c{bottom:376.410000px;}
.y2d{bottom:378.210000px;}
.y9e{bottom:387.210000px;}
.y111{bottom:388.290000px;}
.y7d{bottom:389.010000px;}
.y67{bottom:394.950000px;}
.y5b{bottom:396.210000px;}
.y2c{bottom:398.010000px;}
.y9d{bottom:407.055000px;}
.y110{bottom:408.135000px;}
.y7c{bottom:408.855000px;}
.y66{bottom:414.795000px;}
.y5a{bottom:416.055000px;}
.y2b{bottom:417.855000px;}
.y9c{bottom:426.855000px;}
.y10f{bottom:427.935000px;}
.yee{bottom:428.835000px;}
.y65{bottom:434.595000px;}
.y59{bottom:435.855000px;}
.y2a{bottom:437.835000px;}
.yd1{bottom:444.135000px;}
.y9b{bottom:446.835000px;}
.y10e{bottom:447.735000px;}
.yed{bottom:448.635000px;}
.y64{bottom:454.575000px;}
.y58{bottom:455.835000px;}
.y29{bottom:457.635000px;}
.y9a{bottom:466.635000px;}
.y10d{bottom:467.535000px;}
.yec{bottom:468.435000px;}
.y63{bottom:474.375000px;}
.y57{bottom:475.635000px;}
.y28{bottom:477.435000px;}
.y99{bottom:486.435000px;}
.yeb{bottom:488.235000px;}
.y62{bottom:494.175000px;}
.y56{bottom:495.435000px;}
.y27{bottom:497.235000px;}
.y98{bottom:506.235000px;}
.yea{bottom:508.035000px;}
.y10c{bottom:512.355000px;}
.y61{bottom:513.975000px;}
.y55{bottom:515.235000px;}
.y26{bottom:517.035000px;}
.y97{bottom:526.035000px;}
.ye9{bottom:528.015000px;}
.y60{bottom:533.775000px;}
.y54{bottom:535.035000px;}
.y25{bottom:537.015000px;}
.y10b{bottom:538.275000px;}
.y96{bottom:546.015000px;}
.ye8{bottom:547.815000px;}
.y5f{bottom:553.755000px;}
.y53{bottom:555.015000px;}
.y24{bottom:556.815000px;}
.y10a{bottom:564.015000px;}
.y95{bottom:565.815000px;}
.ye7{bottom:567.615000px;}
.y52{bottom:574.815000px;}
.y23{bottom:576.615000px;}
.yca{bottom:578.235000px;}
.y94{bottom:585.615000px;}
.ye6{bottom:587.415000px;}
.yde{bottom:587.880000px;}
.y5e{bottom:588.135000px;}
.y109{bottom:589.935000px;}
.y51{bottom:594.615000px;}
.y22{bottom:596.415000px;}
.y93{bottom:605.415000px;}
.ye5{bottom:607.215000px;}
.y50{bottom:614.415000px;}
.y21{bottom:616.215000px;}
.y108{bottom:620.355000px;}
.ydc{bottom:624.315000px;}
.y92{bottom:625.215000px;}
.y4f{bottom:634.215000px;}
.y20{bottom:636.195000px;}
.y107{bottom:640.155000px;}
.y91{bottom:645.195000px;}
.yb4{bottom:647.895000px;}
.y4e{bottom:654.225000px;}
.y1f{bottom:656.025000px;}
.y106{bottom:660.165000px;}
.y90{bottom:665.025000px;}
.y4d{bottom:674.025000px;}
.y1e{bottom:675.825000px;}
.y105{bottom:679.965000px;}
.y8f{bottom:684.825000px;}
.y4c{bottom:693.825000px;}
.y1d{bottom:695.625000px;}
.y104{bottom:699.765000px;}
.y8e{bottom:704.625000px;}
.y4b{bottom:713.625000px;}
.y1c{bottom:715.425000px;}
.y103{bottom:719.565000px;}
.y8d{bottom:724.425000px;}
.y4a{bottom:733.425000px;}
.y1b{bottom:735.405000px;}
.y102{bottom:739.365000px;}
.y8c{bottom:744.405000px;}
.y49{bottom:753.405000px;}
.y1a{bottom:755.205000px;}
.y101{bottom:758.265000px;}
.y7b{bottom:764.205000px;}
.y48{bottom:773.205000px;}
.y19{bottom:775.005000px;}
.y7a{bottom:784.005000px;}
.y100{bottom:784.185000px;}
.yd8{bottom:785.265000px;}
.y47{bottom:793.005000px;}
.y18{bottom:794.805000px;}
.yc3{bottom:799.125000px;}
.yda{bottom:802.365000px;}
.y79{bottom:803.805000px;}
.y46{bottom:812.805000px;}
.y17{bottom:814.605000px;}
.y78{bottom:823.605000px;}
.yff{bottom:829.905000px;}
.ybc{bottom:831.885000px;}
.y45{bottom:832.605000px;}
.y16{bottom:834.585000px;}
.y77{bottom:843.585000px;}
.y44{bottom:852.585000px;}
.y15{bottom:859.605000px;}
.y76{bottom:863.385000px;}
.y43{bottom:872.385000px;}
.yfe{bottom:875.445000px;}
.y14{bottom:879.405000px;}
.y8b{bottom:883.185000px;}
.y42{bottom:892.185000px;}
.y13{bottom:894.525000px;}
.yfd{bottom:901.410000px;}
.y8a{bottom:903.030000px;}
.y41{bottom:912.030000px;}
.y12{bottom:916.350000px;}
.y89{bottom:922.830000px;}
.y40{bottom:931.830000px;}
.y11{bottom:941.370000px;}
.ye4{bottom:942.810000px;}
.y3f{bottom:951.810000px;}
.ye3{bottom:962.610000px;}
.y3e{bottom:971.610000px;}
.y10{bottom:973.050000px;}
.y3d{bottom:991.410000px;}
.yf{bottom:1004.730000px;}
.y3c{bottom:1011.210000px;}
.y3b{bottom:1031.010000px;}
.y9{bottom:1048.470000px;}
.y1{bottom:1063.050000px;}
.y7{bottom:1097.250000px;}
.h6{height:2.010938px;}
.h1b{height:14.400000px;}
.h18{height:15.840000px;}
.h1a{height:16.200000px;}
.h19{height:18.000000px;}
.h20{height:19.800000px;}
.h1f{height:19.980000px;}
.ha{height:21.780000px;}
.he{height:27.147656px;}
.h7{height:33.480000px;}
.h1c{height:39.600000px;}
.h1d{height:39.780000px;}
.h8{height:41.726953px;}
.hf{height:42.164648px;}
.h14{height:43.506914px;}
.h21{height:45.024258px;}
.h10{height:45.753750px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h11{height:49.255313px;}
.h9{height:53.224453px;}
.hd{height:53.404453px;}
.h1e{height:59.580000px;}
.h3{height:63.500977px;}
.hc{height:67.565039px;}
.h12{height:106.236000px;}
.h13{height:106.416000px;}
.h17{height:107.820000px;}
.h16{height:109.476000px;}
.h15{height:112.176000px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.wc{width:42.300000px;}
.wd{width:42.840000px;}
.wb{width:45.540000px;}
.w19{width:46.260000px;}
.we{width:49.500000px;}
.w1a{width:52.020000px;}
.w18{width:53.136000px;}
.w11{width:96.300000px;}
.w16{width:126.216000px;}
.w3{width:131.796000px;}
.w1b{width:140.616000px;}
.wf{width:153.030000px;}
.w15{width:199.830000px;}
.w7{width:210.450000px;}
.w13{width:218.955000px;}
.w14{width:222.330000px;}
.w17{width:233.490000px;}
.w8{width:241.590000px;}
.w12{width:247.035000px;}
.w9{width:250.410000px;}
.w6{width:254.010000px;}
.w10{width:270.615000px;}
.wa{width:285.555000px;}
.w2{width:654.630000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:1.080000px;}
.x2{left:8.100000px;}
.xf{left:10.800000px;}
.x11{left:22.860000px;}
.x1{left:53.280000px;}
.x6{left:57.779987px;}
.x7{left:69.299987px;}
.xd{left:80.999987px;}
.x13{left:102.276000px;}
.x12{left:108.396000px;}
.x4{left:118.290000px;}
.xb{left:123.695987px;}
.x20{left:176.250000px;}
.x1a{left:214.230000px;}
.xa{left:268.634987px;}
.x1d{left:279.975000px;}
.x16{left:378.975000px;}
.x17{left:384.915000px;}
.x8{left:409.214987px;}
.x21{left:413.535000px;}
.x14{left:433.695000px;}
.x9{left:446.504987px;}
.xe{left:468.465000px;}
.x22{left:470.445000px;}
.x10{left:482.685000px;}
.x15{left:487.005000px;}
.x1b{left:488.625000px;}
.x18{left:499.140000px;}
.x1e{left:505.905000px;}
.x23{left:520.485000px;}
.x24{left:576.285000px;}
.x1c{left:588.705000px;}
.xc{left:606.344987px;}
.x3{left:707.910000px;}
.x1f{left:709.530000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1c{letter-spacing:-3.658667pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls1d{letter-spacing:-0.821333pt;}
.lsc{letter-spacing:-0.688000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.367467pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.012800pt;}
.ls11{letter-spacing:0.030080pt;}
.ls1b{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls21{letter-spacing:0.138667pt;}
.lse{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.190720pt;}
.ls5{letter-spacing:0.230933pt;}
.ls23{letter-spacing:0.231040pt;}
.ls20{letter-spacing:0.265600pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.272533pt;}
.ls1a{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.448000pt;}
.ls18{letter-spacing:2.720000pt;}
.ls22{letter-spacing:3.360000pt;}
.ls19{letter-spacing:4.000000pt;}
.ls1e{letter-spacing:14.672640pt;}
.ls12{letter-spacing:33.872640pt;}
.ls10{letter-spacing:38.352640pt;}
.ls8{letter-spacing:38.992640pt;}
.ls13{letter-spacing:39.632640pt;}
.ls14{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.912640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.552533pt;}
.wse{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.640000pt;}
.wsb{word-spacing:-9.621333pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._3a{margin-left:-12.879360pt;}
._12{margin-left:-6.816000pt;}
._b{margin-left:-5.864533pt;}
._13{margin-left:-4.850987pt;}
._35{margin-left:-3.954347pt;}
._14{margin-left:-2.920320pt;}
._c{margin-left:-1.866240pt;}
._0{margin-left:-0.960000pt;}
._d{width:1.020587pt;}
._1{width:1.973333pt;}
._18{width:3.264853pt;}
._1b{width:4.355840pt;}
._15{width:5.940053pt;}
._17{width:7.436800pt;}
._16{width:8.627200pt;}
._6{width:9.600000pt;}
._19{width:10.665813pt;}
._1a{width:11.686400pt;}
._20{width:14.219307pt;}
._1f{width:15.179733pt;}
._21{width:16.124373pt;}
._25{width:17.541333pt;}
._24{width:18.633387pt;}
._23{width:19.760640pt;}
._37{width:21.396907pt;}
._22{width:22.788480pt;}
._33{width:23.861547pt;}
._34{width:24.841813pt;}
._3e{width:26.875093pt;}
._3d{width:28.206720pt;}
._3b{width:33.978240pt;}
._26{width:35.313493pt;}
._3c{width:37.850240pt;}
._31{width:39.055360pt;}
._30{width:40.466133pt;}
._29{width:44.981333pt;}
._2d{width:58.431573pt;}
._39{width:60.169600pt;}
._38{width:61.501653pt;}
._7{width:67.808853pt;}
._1d{width:69.392640pt;}
._36{width:71.271680pt;}
._2f{width:82.696533pt;}
._2b{width:90.871040pt;}
._2a{width:92.175360pt;}
._2e{width:112.880000pt;}
._2c{width:115.418453pt;}
._8{width:136.960000pt;}
._27{width:138.255360pt;}
._f{width:173.440000pt;}
._28{width:194.567253pt;}
._32{width:208.006613pt;}
._2{width:227.122347pt;}
._1c{width:228.028587pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._1e{width:538.118827pt;}
._10{width:581.226667pt;}
._11{width:625.386667pt;}
._a{width:974.986667pt;}
._e{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.ybb{bottom:-10.080000pt;}
.yc2{bottom:-9.760000pt;}
.yd7{bottom:-8.640000pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:0.226667pt;}
.yd9{bottom:1.600000pt;}
.ydd{bottom:1.920000pt;}
.ydb{bottom:3.520000pt;}
.yf2{bottom:5.120000pt;}
.yf9{bottom:5.280000pt;}
.yba{bottom:5.306667pt;}
.ye{bottom:5.600000pt;}
.yc9{bottom:5.760000pt;}
.yd6{bottom:6.720000pt;}
.yd0{bottom:8.000000pt;}
.y6{bottom:11.040000pt;}
.yf0{bottom:13.920000pt;}
.yf6{bottom:14.080000pt;}
.y8{bottom:16.160000pt;}
.yb9{bottom:20.666667pt;}
.yc1{bottom:20.800000pt;}
.yc8{bottom:22.080000pt;}
.yf1{bottom:22.720000pt;}
.yf5{bottom:22.880000pt;}
.ycf{bottom:23.360000pt;}
.yfa{bottom:31.680000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.yb8{bottom:35.866667pt;}
.yc0{bottom:36.160000pt;}
.yd5{bottom:37.440000pt;}
.yc7{bottom:38.400000pt;}
.yce{bottom:38.720000pt;}
.yf8{bottom:40.480000pt;}
.yb7{bottom:51.226667pt;}
.yb{bottom:51.360000pt;}
.ybf{bottom:51.520000pt;}
.yd4{bottom:52.800000pt;}
.ycd{bottom:54.080000pt;}
.yc6{bottom:54.720000pt;}
.y4{bottom:60.800000pt;}
.yb6{bottom:66.586667pt;}
.ybe{bottom:66.920000pt;}
.yd{bottom:67.040000pt;}
.yd3{bottom:68.160000pt;}
.ycc{bottom:69.466667pt;}
.ya{bottom:70.720000pt;}
.yc5{bottom:70.880000pt;}
.yb5{bottom:81.946667pt;}
.ybd{bottom:82.280000pt;}
.yd2{bottom:83.360000pt;}
.ycb{bottom:84.826667pt;}
.y3{bottom:85.626667pt;}
.yc4{bottom:87.200000pt;}
.y11d{bottom:94.400000pt;}
.yac{bottom:97.280000pt;}
.yfc{bottom:98.080000pt;}
.y3a{bottom:98.880000pt;}
.y75{bottom:104.160000pt;}
.y125{bottom:104.320000pt;}
.y122{bottom:105.280000pt;}
.ye2{bottom:106.880000pt;}
.y2{bottom:111.706667pt;}
.y11c{bottom:112.000000pt;}
.yab{bottom:114.880000pt;}
.y39{bottom:116.640000pt;}
.y124{bottom:121.440000pt;}
.y74{bottom:121.760000pt;}
.y121{bottom:122.880000pt;}
.ye1{bottom:124.640000pt;}
.y11b{bottom:129.600000pt;}
.yaa{bottom:132.640000pt;}
.y38{bottom:134.240000pt;}
.y123{bottom:138.586667pt;}
.yfb{bottom:138.746667pt;}
.y73{bottom:139.546667pt;}
.y120{bottom:140.666667pt;}
.ye0{bottom:142.266667pt;}
.y11a{bottom:147.226667pt;}
.ya9{bottom:150.266667pt;}
.y88{bottom:151.866667pt;}
.y72{bottom:157.146667pt;}
.y11f{bottom:158.266667pt;}
.y37{bottom:159.866667pt;}
.y119{bottom:165.946667pt;}
.ya8{bottom:167.866667pt;}
.y87{bottom:169.466667pt;}
.y71{bottom:174.746667pt;}
.y11e{bottom:175.866667pt;}
.y36{bottom:177.466667pt;}
.yf7{bottom:179.226667pt;}
.y118{bottom:183.546667pt;}
.ya7{bottom:185.466667pt;}
.y86{bottom:187.066667pt;}
.y70{bottom:192.346667pt;}
.yb3{bottom:193.466667pt;}
.y35{bottom:195.066667pt;}
.y117{bottom:201.146667pt;}
.ya6{bottom:203.066667pt;}
.y85{bottom:204.826667pt;}
.y6f{bottom:209.946667pt;}
.yb2{bottom:211.066667pt;}
.y34{bottom:212.826667pt;}
.y116{bottom:219.706667pt;}
.ya5{bottom:220.826667pt;}
.y84{bottom:222.426667pt;}
.y6e{bottom:227.706667pt;}
.yb1{bottom:228.826667pt;}
.y33{bottom:230.426667pt;}
.y115{bottom:237.306667pt;}
.yf4{bottom:237.466667pt;}
.ya4{bottom:238.426667pt;}
.y83{bottom:240.026667pt;}
.y6d{bottom:245.306667pt;}
.yb0{bottom:246.426667pt;}
.y32{bottom:248.026667pt;}
.y114{bottom:255.066667pt;}
.ya3{bottom:256.026667pt;}
.y82{bottom:257.626667pt;}
.y6c{bottom:262.906667pt;}
.yaf{bottom:264.026667pt;}
.y31{bottom:265.626667pt;}
.ya2{bottom:273.626667pt;}
.y81{bottom:275.226667pt;}
.yf3{bottom:278.106667pt;}
.y6b{bottom:280.506667pt;}
.yae{bottom:281.626667pt;}
.y30{bottom:283.226667pt;}
.ya1{bottom:291.226667pt;}
.y80{bottom:292.986667pt;}
.y6a{bottom:298.106667pt;}
.yad{bottom:299.226667pt;}
.y2f{bottom:300.986667pt;}
.y113{bottom:308.826667pt;}
.ya0{bottom:308.986667pt;}
.y7f{bottom:310.586667pt;}
.y69{bottom:315.866667pt;}
.y5d{bottom:316.986667pt;}
.y2e{bottom:318.586667pt;}
.yef{bottom:318.746667pt;}
.y9f{bottom:326.586667pt;}
.y112{bottom:327.386667pt;}
.y7e{bottom:328.186667pt;}
.y68{bottom:333.466667pt;}
.y5c{bottom:334.586667pt;}
.y2d{bottom:336.186667pt;}
.y9e{bottom:344.186667pt;}
.y111{bottom:345.146667pt;}
.y7d{bottom:345.786667pt;}
.y67{bottom:351.066667pt;}
.y5b{bottom:352.186667pt;}
.y2c{bottom:353.786667pt;}
.y9d{bottom:361.826667pt;}
.y110{bottom:362.786667pt;}
.y7c{bottom:363.426667pt;}
.y66{bottom:368.706667pt;}
.y5a{bottom:369.826667pt;}
.y2b{bottom:371.426667pt;}
.y9c{bottom:379.426667pt;}
.y10f{bottom:380.386667pt;}
.yee{bottom:381.186667pt;}
.y65{bottom:386.306667pt;}
.y59{bottom:387.426667pt;}
.y2a{bottom:389.186667pt;}
.yd1{bottom:394.786667pt;}
.y9b{bottom:397.186667pt;}
.y10e{bottom:397.986667pt;}
.yed{bottom:398.786667pt;}
.y64{bottom:404.066667pt;}
.y58{bottom:405.186667pt;}
.y29{bottom:406.786667pt;}
.y9a{bottom:414.786667pt;}
.y10d{bottom:415.586667pt;}
.yec{bottom:416.386667pt;}
.y63{bottom:421.666667pt;}
.y57{bottom:422.786667pt;}
.y28{bottom:424.386667pt;}
.y99{bottom:432.386667pt;}
.yeb{bottom:433.986667pt;}
.y62{bottom:439.266667pt;}
.y56{bottom:440.386667pt;}
.y27{bottom:441.986667pt;}
.y98{bottom:449.986667pt;}
.yea{bottom:451.586667pt;}
.y10c{bottom:455.426667pt;}
.y61{bottom:456.866667pt;}
.y55{bottom:457.986667pt;}
.y26{bottom:459.586667pt;}
.y97{bottom:467.586667pt;}
.ye9{bottom:469.346667pt;}
.y60{bottom:474.466667pt;}
.y54{bottom:475.586667pt;}
.y25{bottom:477.346667pt;}
.y10b{bottom:478.466667pt;}
.y96{bottom:485.346667pt;}
.ye8{bottom:486.946667pt;}
.y5f{bottom:492.226667pt;}
.y53{bottom:493.346667pt;}
.y24{bottom:494.946667pt;}
.y10a{bottom:501.346667pt;}
.y95{bottom:502.946667pt;}
.ye7{bottom:504.546667pt;}
.y52{bottom:510.946667pt;}
.y23{bottom:512.546667pt;}
.yca{bottom:513.986667pt;}
.y94{bottom:520.546667pt;}
.ye6{bottom:522.146667pt;}
.yde{bottom:522.560000pt;}
.y5e{bottom:522.786667pt;}
.y109{bottom:524.386667pt;}
.y51{bottom:528.546667pt;}
.y22{bottom:530.146667pt;}
.y93{bottom:538.146667pt;}
.ye5{bottom:539.746667pt;}
.y50{bottom:546.146667pt;}
.y21{bottom:547.746667pt;}
.y108{bottom:551.426667pt;}
.ydc{bottom:554.946667pt;}
.y92{bottom:555.746667pt;}
.y4f{bottom:563.746667pt;}
.y20{bottom:565.506667pt;}
.y107{bottom:569.026667pt;}
.y91{bottom:573.506667pt;}
.yb4{bottom:575.906667pt;}
.y4e{bottom:581.533333pt;}
.y1f{bottom:583.133333pt;}
.y106{bottom:586.813333pt;}
.y90{bottom:591.133333pt;}
.y4d{bottom:599.133333pt;}
.y1e{bottom:600.733333pt;}
.y105{bottom:604.413333pt;}
.y8f{bottom:608.733333pt;}
.y4c{bottom:616.733333pt;}
.y1d{bottom:618.333333pt;}
.y104{bottom:622.013333pt;}
.y8e{bottom:626.333333pt;}
.y4b{bottom:634.333333pt;}
.y1c{bottom:635.933333pt;}
.y103{bottom:639.613333pt;}
.y8d{bottom:643.933333pt;}
.y4a{bottom:651.933333pt;}
.y1b{bottom:653.693333pt;}
.y102{bottom:657.213333pt;}
.y8c{bottom:661.693333pt;}
.y49{bottom:669.693333pt;}
.y1a{bottom:671.293333pt;}
.y101{bottom:674.013333pt;}
.y7b{bottom:679.293333pt;}
.y48{bottom:687.293333pt;}
.y19{bottom:688.893333pt;}
.y7a{bottom:696.893333pt;}
.y100{bottom:697.053333pt;}
.yd8{bottom:698.013333pt;}
.y47{bottom:704.893333pt;}
.y18{bottom:706.493333pt;}
.yc3{bottom:710.333333pt;}
.yda{bottom:713.213333pt;}
.y79{bottom:714.493333pt;}
.y46{bottom:722.493333pt;}
.y17{bottom:724.093333pt;}
.y78{bottom:732.093333pt;}
.yff{bottom:737.693333pt;}
.ybc{bottom:739.453333pt;}
.y45{bottom:740.093333pt;}
.y16{bottom:741.853333pt;}
.y77{bottom:749.853333pt;}
.y44{bottom:757.853333pt;}
.y15{bottom:764.093333pt;}
.y76{bottom:767.453333pt;}
.y43{bottom:775.453333pt;}
.yfe{bottom:778.173333pt;}
.y14{bottom:781.693333pt;}
.y8b{bottom:785.053333pt;}
.y42{bottom:793.053333pt;}
.y13{bottom:795.133333pt;}
.yfd{bottom:801.253333pt;}
.y8a{bottom:802.693333pt;}
.y41{bottom:810.693333pt;}
.y12{bottom:814.533333pt;}
.y89{bottom:820.293333pt;}
.y40{bottom:828.293333pt;}
.y11{bottom:836.773333pt;}
.ye4{bottom:838.053333pt;}
.y3f{bottom:846.053333pt;}
.ye3{bottom:855.653333pt;}
.y3e{bottom:863.653333pt;}
.y10{bottom:864.933333pt;}
.y3d{bottom:881.253333pt;}
.yf{bottom:893.093333pt;}
.y3c{bottom:898.853333pt;}
.y3b{bottom:916.453333pt;}
.y9{bottom:931.973333pt;}
.y1{bottom:944.933333pt;}
.y7{bottom:975.333333pt;}
.h6{height:1.787500pt;}
.h1b{height:12.800000pt;}
.h18{height:14.080000pt;}
.h1a{height:14.400000pt;}
.h19{height:16.000000pt;}
.h20{height:17.600000pt;}
.h1f{height:17.760000pt;}
.ha{height:19.360000pt;}
.he{height:24.131250pt;}
.h7{height:29.760000pt;}
.h1c{height:35.200000pt;}
.h1d{height:35.360000pt;}
.h8{height:37.090625pt;}
.hf{height:37.479688pt;}
.h14{height:38.672812pt;}
.h21{height:40.021563pt;}
.h10{height:40.670000pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h11{height:43.782500pt;}
.h9{height:47.310625pt;}
.hd{height:47.470625pt;}
.h1e{height:52.960000pt;}
.h3{height:56.445312pt;}
.hc{height:60.057813pt;}
.h12{height:94.432000pt;}
.h13{height:94.592000pt;}
.h17{height:95.840000pt;}
.h16{height:97.312000pt;}
.h15{height:99.712000pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.wc{width:37.600000pt;}
.wd{width:38.080000pt;}
.wb{width:40.480000pt;}
.w19{width:41.120000pt;}
.we{width:44.000000pt;}
.w1a{width:46.240000pt;}
.w18{width:47.232000pt;}
.w11{width:85.600000pt;}
.w16{width:112.192000pt;}
.w3{width:117.152000pt;}
.w1b{width:124.992000pt;}
.wf{width:136.026667pt;}
.w15{width:177.626667pt;}
.w7{width:187.066667pt;}
.w13{width:194.626667pt;}
.w14{width:197.626667pt;}
.w17{width:207.546667pt;}
.w8{width:214.746667pt;}
.w12{width:219.586667pt;}
.w9{width:222.586667pt;}
.w6{width:225.786667pt;}
.w10{width:240.546667pt;}
.wa{width:253.826667pt;}
.w2{width:581.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:0.960000pt;}
.x2{left:7.200000pt;}
.xf{left:9.600000pt;}
.x11{left:20.320000pt;}
.x1{left:47.360000pt;}
.x6{left:51.359988pt;}
.x7{left:61.599988pt;}
.xd{left:71.999988pt;}
.x13{left:90.912000pt;}
.x12{left:96.352000pt;}
.x4{left:105.146667pt;}
.xb{left:109.951988pt;}
.x20{left:156.666667pt;}
.x1a{left:190.426667pt;}
.xa{left:238.786655pt;}
.x1d{left:248.866667pt;}
.x16{left:336.866667pt;}
.x17{left:342.146667pt;}
.x8{left:363.746655pt;}
.x21{left:367.586667pt;}
.x14{left:385.506667pt;}
.x9{left:396.893322pt;}
.xe{left:416.413333pt;}
.x22{left:418.173333pt;}
.x10{left:429.053333pt;}
.x15{left:432.893333pt;}
.x1b{left:434.333333pt;}
.x18{left:443.680000pt;}
.x1e{left:449.693333pt;}
.x23{left:462.653333pt;}
.x24{left:512.253333pt;}
.x1c{left:523.293333pt;}
.xc{left:538.973322pt;}
.x3{left:629.253333pt;}
.x1f{left:630.693333pt;}
.x5{left:737.120000pt;}
}




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