
    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_27ecb649bf9beb584b25b551.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_07adf673c508c3a7dc358578.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_2331c4d61de7061dea28bc65.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.810547;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_28a854a67a96c3368f16fe58.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_1fe797c411de768cab387253.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_af59584081f852be40503eb8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.813477;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_78d300e0a911f2be5ab6eca5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_82935069506993bca2d997fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_0421e37cd369c88803c08019.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_4a0c818084ce9949c923d3d5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1781184bea7a08eb3afc86eb.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_aa027a0581fb6f0e763aee93.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_789cc192e357214fe7271d0e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.827916;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:fff;src:url('chunks/assets/font_da0cff96677d7b43429440e4.woff2')format("woff");}.fff{font-family:fff;line-height:0.916016;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:ff10;src:url('chunks/assets/font_30557f867b1c850e16297c93.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.916016;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:ff11;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff11{font-family:ff11;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;}
.lsf{letter-spacing:-0.924000px;}
.ls23{letter-spacing:-0.612000px;}
.ls21{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.463800px;}
.ls20{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.106560px;}
.ls1f{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.774000px;}
.ls17{letter-spacing:0.826560px;}
.lse{letter-spacing:0.828000px;}
.ls13{letter-spacing:0.876000px;}
.ls25{letter-spacing:0.896400px;}
.lsd{letter-spacing:0.900000px;}
.ls15{letter-spacing:0.970560px;}
.lsb{letter-spacing:0.979920px;}
.ls24{letter-spacing:1.015920px;}
.ls9{letter-spacing:1.080000px;}
.ls16{letter-spacing:1.440000px;}
.ls12{letter-spacing:3.780000px;}
.ls1d{letter-spacing:4.620000px;}
.ls10{letter-spacing:5.940000px;}
.ls3{letter-spacing:7.380000px;}
.ls1b{letter-spacing:8.100000px;}
.ls0{letter-spacing:10.002240px;}
.ls1{letter-spacing:10.080000px;}
.ls1a{letter-spacing:10.980000px;}
.ls14{letter-spacing:14.346720px;}
.ls22{letter-spacing:16.740000px;}
.ls1c{letter-spacing:18.900000px;}
.ls4{letter-spacing:30.420000px;}
.ls5{letter-spacing:45.306720px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws4{word-spacing:-23.940000px;}
.ws3{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.020000px;}
.wsf{word-spacing:-15.955920px;}
.wsb{word-spacing:-15.816000px;}
.wsa{word-spacing:-15.768000px;}
.wsc{word-spacing:-15.714000px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.226440px;}
.ws1{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws0{word-spacing:-14.506440px;}
.ws6{word-spacing:-13.500000px;}
.ws8{word-spacing:0.000000px;}
._8{margin-left:-6.990480px;}
._10{margin-left:-5.186880px;}
._26{margin-left:-4.181040px;}
._1{margin-left:-3.179520px;}
._f{margin-left:-2.097360px;}
._2{margin-left:-1.059840px;}
._0{width:1.185840px;}
._3{width:2.890320px;}
._b{width:3.928080px;}
._1e{width:5.110560px;}
._e{width:6.129360px;}
._9{width:7.369920px;}
._1b{width:8.831520px;}
._4{width:10.200000px;}
._11{width:11.219040px;}
._18{width:12.476880px;}
._7{width:14.334720px;}
._5{width:16.089840px;}
._6{width:17.141040px;}
._1d{width:18.148800px;}
._1f{width:19.185840px;}
._20{width:20.447280px;}
._15{width:21.582720px;}
._16{width:22.619280px;}
._1c{width:23.859360px;}
._14{width:25.765920px;}
._17{width:26.901360px;}
._1a{width:28.445760px;}
._c{width:30.285360px;}
._d{width:31.312080px;}
._19{width:32.688720px;}
._13{width:35.327520px;}
._30{width:36.861360px;}
._2e{width:37.874880px;}
._32{width:38.928240px;}
._2f{width:40.001520px;}
._12{width:41.353920px;}
._31{width:44.184480px;}
._2b{width:50.337840px;}
._2a{width:52.157520px;}
._25{width:56.794080px;}
._22{width:57.836880px;}
._23{width:59.148720px;}
._24{width:62.149200px;}
._a{width:64.600560px;}
._2d{width:92.692080px;}
._2c{width:98.360640px;}
._29{width:126.441360px;}
._27{width:132.934320px;}
._28{width:135.364560px;}
._21{width:216.837360px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y36{bottom:6.300000px;}
.y14{bottom:8.100000px;}
.y7{bottom:14.940000px;}
.y24{bottom:25.605000px;}
.y8f{bottom:29.730000px;}
.y35{bottom:29.745000px;}
.y91{bottom:30.600000px;}
.y6{bottom:43.920000px;}
.y23{bottom:52.605000px;}
.y34{bottom:53.145000px;}
.y82{bottom:54.540000px;}
.y5{bottom:64.080000px;}
.yd{bottom:68.040000px;}
.yb{bottom:73.980000px;}
.y33{bottom:76.545000px;}
.y8c{bottom:77.970000px;}
.ya{bottom:78.480000px;}
.y22{bottom:79.425000px;}
.y4{bottom:86.400000px;}
.ycf{bottom:93.960000px;}
.yf1{bottom:95.220000px;}
.y32{bottom:99.945000px;}
.y122{bottom:100.800000px;}
.y71{bottom:101.700000px;}
.y86{bottom:102.960000px;}
.ya6{bottom:104.760000px;}
.y7e{bottom:105.660000px;}
.y157{bottom:106.380000px;}
.y21{bottom:106.425000px;}
.y9{bottom:107.460000px;}
.y112{bottom:107.820000px;}
.y42{bottom:112.140000px;}
.yce{bottom:117.360000px;}
.yf0{bottom:118.620000px;}
.y121{bottom:120.600000px;}
.y3{bottom:122.790000px;}
.y31{bottom:123.345000px;}
.y70{bottom:125.100000px;}
.y156{bottom:126.180000px;}
.y7d{bottom:129.060000px;}
.y111{bottom:131.220000px;}
.y20{bottom:133.245000px;}
.y41{bottom:135.540000px;}
.y8{bottom:136.650000px;}
.ya5{bottom:137.160000px;}
.y120{bottom:140.580000px;}
.ycd{bottom:140.760000px;}
.yef{bottom:142.020000px;}
.y155{bottom:146.160000px;}
.y30{bottom:146.745000px;}
.y6f{bottom:148.500000px;}
.y7c{bottom:152.490000px;}
.y110{bottom:154.650000px;}
.y40{bottom:158.970000px;}
.y1f{bottom:160.245000px;}
.y11f{bottom:160.410000px;}
.ya4{bottom:160.590000px;}
.ycc{bottom:164.190000px;}
.yee{bottom:165.450000px;}
.y154{bottom:165.990000px;}
.y2f{bottom:170.145000px;}
.y6e{bottom:171.930000px;}
.y7b{bottom:175.890000px;}
.y10f{bottom:178.050000px;}
.y11e{bottom:180.210000px;}
.y3f{bottom:182.370000px;}
.ya3{bottom:183.990000px;}
.ycb{bottom:184.530000px;}
.y153{bottom:185.790000px;}
.y1e{bottom:187.065000px;}
.yed{bottom:188.850000px;}
.y2e{bottom:193.545000px;}
.y6d{bottom:195.330000px;}
.y11d{bottom:200.010000px;}
.y10e{bottom:201.450000px;}
.y7a{bottom:203.790000px;}
.yca{bottom:204.690000px;}
.y152{bottom:205.590000px;}
.y3e{bottom:205.770000px;}
.ya2{bottom:207.390000px;}
.yec{bottom:212.250000px;}
.y1d{bottom:213.885000px;}
.y2d{bottom:216.945000px;}
.y6c{bottom:218.730000px;}
.y11c{bottom:219.810000px;}
.y10d{bottom:224.850000px;}
.y151{bottom:225.390000px;}
.y79{bottom:227.190000px;}
.yc9{bottom:228.090000px;}
.y3d{bottom:229.170000px;}
.ya1{bottom:230.790000px;}
.yeb{bottom:235.650000px;}
.y11b{bottom:239.790000px;}
.y2c{bottom:240.345000px;}
.y1c{bottom:240.885000px;}
.y6b{bottom:242.130000px;}
.y150{bottom:245.370000px;}
.y10c{bottom:248.250000px;}
.y78{bottom:250.590000px;}
.yc8{bottom:251.490000px;}
.y3c{bottom:252.570000px;}
.ya0{bottom:254.190000px;}
.yea{bottom:259.050000px;}
.y11a{bottom:259.590000px;}
.y2b{bottom:263.775000px;}
.y14f{bottom:265.170000px;}
.y6a{bottom:265.530000px;}
.y1b{bottom:267.735000px;}
.y10b{bottom:271.650000px;}
.y77{bottom:273.990000px;}
.yc7{bottom:274.890000px;}
.y3b{bottom:275.970000px;}
.y9f{bottom:277.590000px;}
.y119{bottom:279.930000px;}
.ye9{bottom:282.450000px;}
.y14e{bottom:284.970000px;}
.y2a{bottom:287.175000px;}
.y69{bottom:288.930000px;}
.y1a{bottom:294.735000px;}
.y10a{bottom:295.050000px;}
.y76{bottom:297.390000px;}
.yc6{bottom:298.290000px;}
.y3a{bottom:299.370000px;}
.y9e{bottom:300.990000px;}
.y118{bottom:303.330000px;}
.y14d{bottom:304.770000px;}
.ye8{bottom:305.850000px;}
.y29{bottom:310.575000px;}
.y68{bottom:312.330000px;}
.y109{bottom:318.450000px;}
.y75{bottom:320.790000px;}
.y19{bottom:321.555000px;}
.yc5{bottom:321.690000px;}
.y39{bottom:322.770000px;}
.y9d{bottom:324.390000px;}
.y14c{bottom:324.570000px;}
.y117{bottom:326.730000px;}
.ye7{bottom:329.250000px;}
.y28{bottom:333.975000px;}
.y7f{bottom:335.550000px;}
.y67{bottom:335.730000px;}
.y108{bottom:341.850000px;}
.y74{bottom:344.190000px;}
.y14b{bottom:344.550000px;}
.yc4{bottom:345.090000px;}
.y38{bottom:346.170000px;}
.y9c{bottom:347.790000px;}
.y18{bottom:348.555000px;}
.y116{bottom:350.130000px;}
.ye6{bottom:352.650000px;}
.y27{bottom:357.375000px;}
.y66{bottom:359.130000px;}
.y14a{bottom:364.350000px;}
.y107{bottom:365.250000px;}
.y73{bottom:367.590000px;}
.yc3{bottom:368.490000px;}
.y37{bottom:369.570000px;}
.y9b{bottom:371.190000px;}
.y115{bottom:373.530000px;}
.y17{bottom:375.375000px;}
.ye5{bottom:376.050000px;}
.y26{bottom:380.775000px;}
.y65{bottom:382.530000px;}
.y149{bottom:384.150000px;}
.y15{bottom:387.390000px;}
.y106{bottom:388.650000px;}
.yc2{bottom:388.830000px;}
.y72{bottom:390.990000px;}
.y9a{bottom:394.590000px;}
.y114{bottom:396.930000px;}
.ye4{bottom:399.450000px;}
.y16{bottom:402.375000px;}
.y148{bottom:403.995000px;}
.y25{bottom:404.175000px;}
.y64{bottom:405.975000px;}
.yc1{bottom:409.215000px;}
.y105{bottom:412.095000px;}
.y99{bottom:418.035000px;}
.ye3{bottom:419.835000px;}
.y113{bottom:423.435000px;}
.y147{bottom:423.795000px;}
.y63{bottom:429.375000px;}
.yc0{bottom:432.615000px;}
.y104{bottom:435.495000px;}
.y98{bottom:441.435000px;}
.y146{bottom:443.775000px;}
.ye2{bottom:449.175000px;}
.y62{bottom:452.775000px;}
.ybf{bottom:456.015000px;}
.y103{bottom:458.895000px;}
.y145{bottom:463.575000px;}
.y97{bottom:464.835000px;}
.ye1{bottom:472.575000px;}
.y61{bottom:476.175000px;}
.ybe{bottom:479.415000px;}
.y102{bottom:482.295000px;}
.y144{bottom:483.375000px;}
.y96{bottom:488.235000px;}
.ye0{bottom:495.975000px;}
.y60{bottom:499.575000px;}
.ybd{bottom:502.815000px;}
.y143{bottom:503.175000px;}
.y101{bottom:505.695000px;}
.y95{bottom:511.635000px;}
.y5f{bottom:522.975000px;}
.ybc{bottom:526.215000px;}
.ydf{bottom:528.375000px;}
.y100{bottom:529.095000px;}
.y94{bottom:535.035000px;}
.y142{bottom:542.955000px;}
.y5e{bottom:546.375000px;}
.ybb{bottom:549.615000px;}
.yde{bottom:551.775000px;}
.yff{bottom:552.495000px;}
.y93{bottom:558.435000px;}
.y141{bottom:562.755000px;}
.y5d{bottom:569.775000px;}
.yba{bottom:573.015000px;}
.ydd{bottom:575.175000px;}
.yfe{bottom:575.895000px;}
.y90{bottom:576.255000px;}
.y140{bottom:582.555000px;}
.y5c{bottom:593.175000px;}
.yb9{bottom:596.415000px;}
.ydc{bottom:598.575000px;}
.yfd{bottom:599.295000px;}
.y92{bottom:600.555000px;}
.y13f{bottom:602.355000px;}
.y5b{bottom:616.575000px;}
.yb8{bottom:619.815000px;}
.ydb{bottom:621.975000px;}
.y13e{bottom:622.155000px;}
.yfc{bottom:622.695000px;}
.y8b{bottom:624.675000px;}
.y5a{bottom:639.975000px;}
.y13d{bottom:642.135000px;}
.yb7{bottom:643.215000px;}
.yda{bottom:645.375000px;}
.yfb{bottom:646.095000px;}
.y13c{bottom:661.965000px;}
.y59{bottom:663.405000px;}
.yb6{bottom:663.585000px;}
.yd9{bottom:668.805000px;}
.yfa{bottom:669.525000px;}
.y8e{bottom:672.225000px;}
.y13b{bottom:681.765000px;}
.yb5{bottom:683.925000px;}
.y58{bottom:686.805000px;}
.yd8{bottom:692.205000px;}
.yf9{bottom:692.925000px;}
.y8d{bottom:696.345000px;}
.y13a{bottom:701.565000px;}
.yb4{bottom:707.325000px;}
.y57{bottom:710.205000px;}
.yd7{bottom:715.605000px;}
.yf8{bottom:716.325000px;}
.y158{bottom:716.505000px;}
.y85{bottom:720.465000px;}
.y139{bottom:721.365000px;}
.yb3{bottom:730.725000px;}
.y56{bottom:733.605000px;}
.yd6{bottom:739.005000px;}
.yf7{bottom:739.725000px;}
.y138{bottom:741.345000px;}
.y8a{bottom:744.585000px;}
.yb2{bottom:754.125000px;}
.y55{bottom:757.005000px;}
.y137{bottom:761.145000px;}
.yf6{bottom:763.125000px;}
.y89{bottom:768.885000px;}
.yd5{bottom:771.405000px;}
.yb1{bottom:777.525000px;}
.y54{bottom:780.405000px;}
.y136{bottom:780.945000px;}
.yf5{bottom:786.525000px;}
.y88{bottom:793.005000px;}
.yd4{bottom:794.805000px;}
.y135{bottom:800.745000px;}
.yb0{bottom:800.925000px;}
.y53{bottom:803.805000px;}
.y13{bottom:809.385000px;}
.yf4{bottom:809.925000px;}
.y87{bottom:817.125000px;}
.yd3{bottom:818.205000px;}
.y134{bottom:820.545000px;}
.yaf{bottom:824.325000px;}
.y52{bottom:827.205000px;}
.yf3{bottom:833.325000px;}
.y133{bottom:840.525000px;}
.y81{bottom:841.245000px;}
.yd2{bottom:841.605000px;}
.yae{bottom:847.725000px;}
.y51{bottom:850.605000px;}
.yf2{bottom:853.665000px;}
.y132{bottom:860.325000px;}
.y12{bottom:860.685000px;}
.yd1{bottom:865.005000px;}
.y84{bottom:865.365000px;}
.yad{bottom:871.125000px;}
.y50{bottom:874.005000px;}
.y131{bottom:880.125000px;}
.y11{bottom:883.545000px;}
.yd0{bottom:888.405000px;}
.y83{bottom:889.485000px;}
.yac{bottom:891.465000px;}
.y4f{bottom:897.405000px;}
.y130{bottom:899.970000px;}
.y10{bottom:906.990000px;}
.yab{bottom:911.850000px;}
.y80{bottom:913.830000px;}
.y12f{bottom:919.770000px;}
.y4e{bottom:920.850000px;}
.yaa{bottom:935.250000px;}
.yf{bottom:939.390000px;}
.y12e{bottom:939.750000px;}
.y4d{bottom:944.250000px;}
.ya9{bottom:958.650000px;}
.y12d{bottom:959.550000px;}
.y4c{bottom:967.650000px;}
.y12c{bottom:979.350000px;}
.ya8{bottom:982.050000px;}
.ye{bottom:986.190000px;}
.y4b{bottom:991.050000px;}
.y12b{bottom:999.150000px;}
.ya7{bottom:1005.450000px;}
.y4a{bottom:1014.450000px;}
.y12a{bottom:1018.950000px;}
.yc{bottom:1021.650000px;}
.y1{bottom:1036.950000px;}
.y49{bottom:1037.850000px;}
.y129{bottom:1038.930000px;}
.y128{bottom:1058.730000px;}
.y48{bottom:1061.250000px;}
.y127{bottom:1078.530000px;}
.y47{bottom:1084.650000px;}
.y126{bottom:1098.330000px;}
.y46{bottom:1108.050000px;}
.y125{bottom:1118.130000px;}
.y45{bottom:1131.450000px;}
.y124{bottom:1138.110000px;}
.y44{bottom:1154.880000px;}
.y123{bottom:1157.940000px;}
.y43{bottom:1184.220000px;}
.h3{height:2.864531px;}
.h11{height:23.400000px;}
.h13{height:23.436000px;}
.hc{height:27.000000px;}
.h18{height:41.843672px;}
.hd{height:42.164648px;}
.hf{height:43.506914px;}
.h6{height:44.704687px;}
.ha{height:46.736719px;}
.h16{height:46.836000px;}
.h17{height:47.700000px;}
.h10{height:49.255313px;}
.hb{height:53.573906px;}
.h7{height:59.383125px;}
.h9{height:67.565039px;}
.h5{height:67.824844px;}
.h12{height:71.676000px;}
.h8{height:85.847344px;}
.h15{height:95.076000px;}
.h4{height:105.060586px;}
.h14{height:120.060000px;}
.h2{height:161.310000px;}
.he{height:421.275000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:86.040000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.wa{width:169.410000px;}
.w9{width:222.150000px;}
.w7{width:287.895000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.x15{left:61.559987px;}
.x13{left:80.999987px;}
.x14{left:108.035987px;}
.x8{left:110.205000px;}
.x7{left:117.225000px;}
.x5{left:119.385000px;}
.xe{left:128.196000px;}
.x2{left:136.290000px;}
.x3{left:208.470000px;}
.x6{left:236.385000px;}
.xc{left:304.634987px;}
.xb{left:343.875000px;}
.xf{left:351.075000px;}
.x10{left:521.205000px;}
.xd{left:666.329987px;}
.x11{left:678.930000px;}
.x9{left:681.270000px;}
.x12{left:804.389987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.821333pt;}
.ls23{letter-spacing:-0.544000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.094720pt;}
.ls1f{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.688000pt;}
.ls17{letter-spacing:0.734720pt;}
.lse{letter-spacing:0.736000pt;}
.ls13{letter-spacing:0.778667pt;}
.ls25{letter-spacing:0.796800pt;}
.lsd{letter-spacing:0.800000pt;}
.ls15{letter-spacing:0.862720pt;}
.lsb{letter-spacing:0.871040pt;}
.ls24{letter-spacing:0.903040pt;}
.ls9{letter-spacing:0.960000pt;}
.ls16{letter-spacing:1.280000pt;}
.ls12{letter-spacing:3.360000pt;}
.ls1d{letter-spacing:4.106667pt;}
.ls10{letter-spacing:5.280000pt;}
.ls3{letter-spacing:6.560000pt;}
.ls1b{letter-spacing:7.200000pt;}
.ls0{letter-spacing:8.890880pt;}
.ls1{letter-spacing:8.960000pt;}
.ls1a{letter-spacing:9.760000pt;}
.ls14{letter-spacing:12.752640pt;}
.ls22{letter-spacing:14.880000pt;}
.ls1c{letter-spacing:16.800000pt;}
.ls4{letter-spacing:27.040000pt;}
.ls5{letter-spacing:40.272640pt;}
.wse{word-spacing:-53.120000pt;}
.ws4{word-spacing:-21.280000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.240000pt;}
.wsf{word-spacing:-14.183040pt;}
.wsb{word-spacing:-14.058667pt;}
.wsa{word-spacing:-14.016000pt;}
.wsc{word-spacing:-13.968000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws0{word-spacing:-12.894613pt;}
.ws6{word-spacing:-12.000000pt;}
.ws8{word-spacing:0.000000pt;}
._8{margin-left:-6.213760pt;}
._10{margin-left:-4.610560pt;}
._26{margin-left:-3.716480pt;}
._1{margin-left:-2.826240pt;}
._f{margin-left:-1.864320pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._3{width:2.569173pt;}
._b{width:3.491627pt;}
._1e{width:4.542720pt;}
._e{width:5.448320pt;}
._9{width:6.551040pt;}
._1b{width:7.850240pt;}
._4{width:9.066667pt;}
._11{width:9.972480pt;}
._18{width:11.090560pt;}
._7{width:12.741973pt;}
._5{width:14.302080pt;}
._6{width:15.236480pt;}
._1d{width:16.132267pt;}
._1f{width:17.054080pt;}
._20{width:18.175360pt;}
._15{width:19.184640pt;}
._16{width:20.106027pt;}
._1c{width:21.208320pt;}
._14{width:22.903040pt;}
._17{width:23.912320pt;}
._1a{width:25.285120pt;}
._c{width:26.920320pt;}
._d{width:27.832960pt;}
._19{width:29.056640pt;}
._13{width:31.402240pt;}
._30{width:32.765653pt;}
._2e{width:33.666560pt;}
._32{width:34.602880pt;}
._2f{width:35.556907pt;}
._12{width:36.759040pt;}
._31{width:39.275093pt;}
._2b{width:44.744747pt;}
._2a{width:46.362240pt;}
._25{width:50.483627pt;}
._22{width:51.410560pt;}
._23{width:52.576640pt;}
._24{width:55.243733pt;}
._a{width:57.422720pt;}
._2d{width:82.392960pt;}
._2c{width:87.431680pt;}
._29{width:112.392320pt;}
._27{width:118.163840pt;}
._28{width:120.324053pt;}
._21{width:192.744320pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y36{bottom:5.600000pt;}
.y14{bottom:7.200000pt;}
.y7{bottom:13.280000pt;}
.y24{bottom:22.760000pt;}
.y8f{bottom:26.426667pt;}
.y35{bottom:26.440000pt;}
.y91{bottom:27.200000pt;}
.y6{bottom:39.040000pt;}
.y23{bottom:46.760000pt;}
.y34{bottom:47.240000pt;}
.y82{bottom:48.480000pt;}
.y5{bottom:56.960000pt;}
.yd{bottom:60.480000pt;}
.yb{bottom:65.760000pt;}
.y33{bottom:68.040000pt;}
.y8c{bottom:69.306667pt;}
.ya{bottom:69.760000pt;}
.y22{bottom:70.600000pt;}
.y4{bottom:76.800000pt;}
.ycf{bottom:83.520000pt;}
.yf1{bottom:84.640000pt;}
.y32{bottom:88.840000pt;}
.y122{bottom:89.600000pt;}
.y71{bottom:90.400000pt;}
.y86{bottom:91.520000pt;}
.ya6{bottom:93.120000pt;}
.y7e{bottom:93.920000pt;}
.y157{bottom:94.560000pt;}
.y21{bottom:94.600000pt;}
.y9{bottom:95.520000pt;}
.y112{bottom:95.840000pt;}
.y42{bottom:99.680000pt;}
.yce{bottom:104.320000pt;}
.yf0{bottom:105.440000pt;}
.y121{bottom:107.200000pt;}
.y3{bottom:109.146667pt;}
.y31{bottom:109.640000pt;}
.y70{bottom:111.200000pt;}
.y156{bottom:112.160000pt;}
.y7d{bottom:114.720000pt;}
.y111{bottom:116.640000pt;}
.y20{bottom:118.440000pt;}
.y41{bottom:120.480000pt;}
.y8{bottom:121.466667pt;}
.ya5{bottom:121.920000pt;}
.y120{bottom:124.960000pt;}
.ycd{bottom:125.120000pt;}
.yef{bottom:126.240000pt;}
.y155{bottom:129.920000pt;}
.y30{bottom:130.440000pt;}
.y6f{bottom:132.000000pt;}
.y7c{bottom:135.546667pt;}
.y110{bottom:137.466667pt;}
.y40{bottom:141.306667pt;}
.y1f{bottom:142.440000pt;}
.y11f{bottom:142.586667pt;}
.ya4{bottom:142.746667pt;}
.ycc{bottom:145.946667pt;}
.yee{bottom:147.066667pt;}
.y154{bottom:147.546667pt;}
.y2f{bottom:151.240000pt;}
.y6e{bottom:152.826667pt;}
.y7b{bottom:156.346667pt;}
.y10f{bottom:158.266667pt;}
.y11e{bottom:160.186667pt;}
.y3f{bottom:162.106667pt;}
.ya3{bottom:163.546667pt;}
.ycb{bottom:164.026667pt;}
.y153{bottom:165.146667pt;}
.y1e{bottom:166.280000pt;}
.yed{bottom:167.866667pt;}
.y2e{bottom:172.040000pt;}
.y6d{bottom:173.626667pt;}
.y11d{bottom:177.786667pt;}
.y10e{bottom:179.066667pt;}
.y7a{bottom:181.146667pt;}
.yca{bottom:181.946667pt;}
.y152{bottom:182.746667pt;}
.y3e{bottom:182.906667pt;}
.ya2{bottom:184.346667pt;}
.yec{bottom:188.666667pt;}
.y1d{bottom:190.120000pt;}
.y2d{bottom:192.840000pt;}
.y6c{bottom:194.426667pt;}
.y11c{bottom:195.386667pt;}
.y10d{bottom:199.866667pt;}
.y151{bottom:200.346667pt;}
.y79{bottom:201.946667pt;}
.yc9{bottom:202.746667pt;}
.y3d{bottom:203.706667pt;}
.ya1{bottom:205.146667pt;}
.yeb{bottom:209.466667pt;}
.y11b{bottom:213.146667pt;}
.y2c{bottom:213.640000pt;}
.y1c{bottom:214.120000pt;}
.y6b{bottom:215.226667pt;}
.y150{bottom:218.106667pt;}
.y10c{bottom:220.666667pt;}
.y78{bottom:222.746667pt;}
.yc8{bottom:223.546667pt;}
.y3c{bottom:224.506667pt;}
.ya0{bottom:225.946667pt;}
.yea{bottom:230.266667pt;}
.y11a{bottom:230.746667pt;}
.y2b{bottom:234.466667pt;}
.y14f{bottom:235.706667pt;}
.y6a{bottom:236.026667pt;}
.y1b{bottom:237.986667pt;}
.y10b{bottom:241.466667pt;}
.y77{bottom:243.546667pt;}
.yc7{bottom:244.346667pt;}
.y3b{bottom:245.306667pt;}
.y9f{bottom:246.746667pt;}
.y119{bottom:248.826667pt;}
.ye9{bottom:251.066667pt;}
.y14e{bottom:253.306667pt;}
.y2a{bottom:255.266667pt;}
.y69{bottom:256.826667pt;}
.y1a{bottom:261.986667pt;}
.y10a{bottom:262.266667pt;}
.y76{bottom:264.346667pt;}
.yc6{bottom:265.146667pt;}
.y3a{bottom:266.106667pt;}
.y9e{bottom:267.546667pt;}
.y118{bottom:269.626667pt;}
.y14d{bottom:270.906667pt;}
.ye8{bottom:271.866667pt;}
.y29{bottom:276.066667pt;}
.y68{bottom:277.626667pt;}
.y109{bottom:283.066667pt;}
.y75{bottom:285.146667pt;}
.y19{bottom:285.826667pt;}
.yc5{bottom:285.946667pt;}
.y39{bottom:286.906667pt;}
.y9d{bottom:288.346667pt;}
.y14c{bottom:288.506667pt;}
.y117{bottom:290.426667pt;}
.ye7{bottom:292.666667pt;}
.y28{bottom:296.866667pt;}
.y7f{bottom:298.266667pt;}
.y67{bottom:298.426667pt;}
.y108{bottom:303.866667pt;}
.y74{bottom:305.946667pt;}
.y14b{bottom:306.266667pt;}
.yc4{bottom:306.746667pt;}
.y38{bottom:307.706667pt;}
.y9c{bottom:309.146667pt;}
.y18{bottom:309.826667pt;}
.y116{bottom:311.226667pt;}
.ye6{bottom:313.466667pt;}
.y27{bottom:317.666667pt;}
.y66{bottom:319.226667pt;}
.y14a{bottom:323.866667pt;}
.y107{bottom:324.666667pt;}
.y73{bottom:326.746667pt;}
.yc3{bottom:327.546667pt;}
.y37{bottom:328.506667pt;}
.y9b{bottom:329.946667pt;}
.y115{bottom:332.026667pt;}
.y17{bottom:333.666667pt;}
.ye5{bottom:334.266667pt;}
.y26{bottom:338.466667pt;}
.y65{bottom:340.026667pt;}
.y149{bottom:341.466667pt;}
.y15{bottom:344.346667pt;}
.y106{bottom:345.466667pt;}
.yc2{bottom:345.626667pt;}
.y72{bottom:347.546667pt;}
.y9a{bottom:350.746667pt;}
.y114{bottom:352.826667pt;}
.ye4{bottom:355.066667pt;}
.y16{bottom:357.666667pt;}
.y148{bottom:359.106667pt;}
.y25{bottom:359.266667pt;}
.y64{bottom:360.866667pt;}
.yc1{bottom:363.746667pt;}
.y105{bottom:366.306667pt;}
.y99{bottom:371.586667pt;}
.ye3{bottom:373.186667pt;}
.y113{bottom:376.386667pt;}
.y147{bottom:376.706667pt;}
.y63{bottom:381.666667pt;}
.yc0{bottom:384.546667pt;}
.y104{bottom:387.106667pt;}
.y98{bottom:392.386667pt;}
.y146{bottom:394.466667pt;}
.ye2{bottom:399.266667pt;}
.y62{bottom:402.466667pt;}
.ybf{bottom:405.346667pt;}
.y103{bottom:407.906667pt;}
.y145{bottom:412.066667pt;}
.y97{bottom:413.186667pt;}
.ye1{bottom:420.066667pt;}
.y61{bottom:423.266667pt;}
.ybe{bottom:426.146667pt;}
.y102{bottom:428.706667pt;}
.y144{bottom:429.666667pt;}
.y96{bottom:433.986667pt;}
.ye0{bottom:440.866667pt;}
.y60{bottom:444.066667pt;}
.ybd{bottom:446.946667pt;}
.y143{bottom:447.266667pt;}
.y101{bottom:449.506667pt;}
.y95{bottom:454.786667pt;}
.y5f{bottom:464.866667pt;}
.ybc{bottom:467.746667pt;}
.ydf{bottom:469.666667pt;}
.y100{bottom:470.306667pt;}
.y94{bottom:475.586667pt;}
.y142{bottom:482.626667pt;}
.y5e{bottom:485.666667pt;}
.ybb{bottom:488.546667pt;}
.yde{bottom:490.466667pt;}
.yff{bottom:491.106667pt;}
.y93{bottom:496.386667pt;}
.y141{bottom:500.226667pt;}
.y5d{bottom:506.466667pt;}
.yba{bottom:509.346667pt;}
.ydd{bottom:511.266667pt;}
.yfe{bottom:511.906667pt;}
.y90{bottom:512.226667pt;}
.y140{bottom:517.826667pt;}
.y5c{bottom:527.266667pt;}
.yb9{bottom:530.146667pt;}
.ydc{bottom:532.066667pt;}
.yfd{bottom:532.706667pt;}
.y92{bottom:533.826667pt;}
.y13f{bottom:535.426667pt;}
.y5b{bottom:548.066667pt;}
.yb8{bottom:550.946667pt;}
.ydb{bottom:552.866667pt;}
.y13e{bottom:553.026667pt;}
.yfc{bottom:553.506667pt;}
.y8b{bottom:555.266667pt;}
.y5a{bottom:568.866667pt;}
.y13d{bottom:570.786667pt;}
.yb7{bottom:571.746667pt;}
.yda{bottom:573.666667pt;}
.yfb{bottom:574.306667pt;}
.y13c{bottom:588.413333pt;}
.y59{bottom:589.693333pt;}
.yb6{bottom:589.853333pt;}
.yd9{bottom:594.493333pt;}
.yfa{bottom:595.133333pt;}
.y8e{bottom:597.533333pt;}
.y13b{bottom:606.013333pt;}
.yb5{bottom:607.933333pt;}
.y58{bottom:610.493333pt;}
.yd8{bottom:615.293333pt;}
.yf9{bottom:615.933333pt;}
.y8d{bottom:618.973333pt;}
.y13a{bottom:623.613333pt;}
.yb4{bottom:628.733333pt;}
.y57{bottom:631.293333pt;}
.yd7{bottom:636.093333pt;}
.yf8{bottom:636.733333pt;}
.y158{bottom:636.893333pt;}
.y85{bottom:640.413333pt;}
.y139{bottom:641.213333pt;}
.yb3{bottom:649.533333pt;}
.y56{bottom:652.093333pt;}
.yd6{bottom:656.893333pt;}
.yf7{bottom:657.533333pt;}
.y138{bottom:658.973333pt;}
.y8a{bottom:661.853333pt;}
.yb2{bottom:670.333333pt;}
.y55{bottom:672.893333pt;}
.y137{bottom:676.573333pt;}
.yf6{bottom:678.333333pt;}
.y89{bottom:683.453333pt;}
.yd5{bottom:685.693333pt;}
.yb1{bottom:691.133333pt;}
.y54{bottom:693.693333pt;}
.y136{bottom:694.173333pt;}
.yf5{bottom:699.133333pt;}
.y88{bottom:704.893333pt;}
.yd4{bottom:706.493333pt;}
.y135{bottom:711.773333pt;}
.yb0{bottom:711.933333pt;}
.y53{bottom:714.493333pt;}
.y13{bottom:719.453333pt;}
.yf4{bottom:719.933333pt;}
.y87{bottom:726.333333pt;}
.yd3{bottom:727.293333pt;}
.y134{bottom:729.373333pt;}
.yaf{bottom:732.733333pt;}
.y52{bottom:735.293333pt;}
.yf3{bottom:740.733333pt;}
.y133{bottom:747.133333pt;}
.y81{bottom:747.773333pt;}
.yd2{bottom:748.093333pt;}
.yae{bottom:753.533333pt;}
.y51{bottom:756.093333pt;}
.yf2{bottom:758.813333pt;}
.y132{bottom:764.733333pt;}
.y12{bottom:765.053333pt;}
.yd1{bottom:768.893333pt;}
.y84{bottom:769.213333pt;}
.yad{bottom:774.333333pt;}
.y50{bottom:776.893333pt;}
.y131{bottom:782.333333pt;}
.y11{bottom:785.373333pt;}
.yd0{bottom:789.693333pt;}
.y83{bottom:790.653333pt;}
.yac{bottom:792.413333pt;}
.y4f{bottom:797.693333pt;}
.y130{bottom:799.973333pt;}
.y10{bottom:806.213333pt;}
.yab{bottom:810.533333pt;}
.y80{bottom:812.293333pt;}
.y12f{bottom:817.573333pt;}
.y4e{bottom:818.533333pt;}
.yaa{bottom:831.333333pt;}
.yf{bottom:835.013333pt;}
.y12e{bottom:835.333333pt;}
.y4d{bottom:839.333333pt;}
.ya9{bottom:852.133333pt;}
.y12d{bottom:852.933333pt;}
.y4c{bottom:860.133333pt;}
.y12c{bottom:870.533333pt;}
.ya8{bottom:872.933333pt;}
.ye{bottom:876.613333pt;}
.y4b{bottom:880.933333pt;}
.y12b{bottom:888.133333pt;}
.ya7{bottom:893.733333pt;}
.y4a{bottom:901.733333pt;}
.y12a{bottom:905.733333pt;}
.yc{bottom:908.133333pt;}
.y1{bottom:921.733333pt;}
.y49{bottom:922.533333pt;}
.y129{bottom:923.493333pt;}
.y128{bottom:941.093333pt;}
.y48{bottom:943.333333pt;}
.y127{bottom:958.693333pt;}
.y47{bottom:964.133333pt;}
.y126{bottom:976.293333pt;}
.y46{bottom:984.933333pt;}
.y125{bottom:993.893333pt;}
.y45{bottom:1005.733333pt;}
.y124{bottom:1011.653333pt;}
.y44{bottom:1026.560000pt;}
.y123{bottom:1029.280000pt;}
.y43{bottom:1052.640000pt;}
.h3{height:2.546250pt;}
.h11{height:20.800000pt;}
.h13{height:20.832000pt;}
.hc{height:24.000000pt;}
.h18{height:37.194375pt;}
.hd{height:37.479688pt;}
.hf{height:38.672812pt;}
.h6{height:39.737500pt;}
.ha{height:41.543750pt;}
.h16{height:41.632000pt;}
.h17{height:42.400000pt;}
.h10{height:43.782500pt;}
.hb{height:47.621250pt;}
.h7{height:52.785000pt;}
.h9{height:60.057813pt;}
.h5{height:60.288750pt;}
.h12{height:63.712000pt;}
.h8{height:76.308750pt;}
.h15{height:84.512000pt;}
.h4{height:93.387187pt;}
.h14{height:106.720000pt;}
.h2{height:143.386667pt;}
.he{height:374.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:76.480000pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.wa{width:150.586667pt;}
.w9{width:197.466667pt;}
.w7{width:255.906667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.x15{left:54.719988pt;}
.x13{left:71.999988pt;}
.x14{left:96.031988pt;}
.x8{left:97.960000pt;}
.x7{left:104.200000pt;}
.x5{left:106.120000pt;}
.xe{left:113.952000pt;}
.x2{left:121.146667pt;}
.x3{left:185.306667pt;}
.x6{left:210.120000pt;}
.xc{left:270.786655pt;}
.xb{left:305.666667pt;}
.xf{left:312.066667pt;}
.x10{left:463.293333pt;}
.xd{left:592.293322pt;}
.x11{left:603.493333pt;}
.x9{left:605.573333pt;}
.x12{left:715.013322pt;}
}




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