
    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_6843eac528fc90b1d5cdb22b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_29e8faef20d358fb29f5e648.woff2')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_40911b959272e8db05871e6c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_29d45c922111465812464a16.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c891a0d00eb286208dc76af1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b3a8dc124dda75d4ad2db0ee.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_23cb10528a07ceb5866a12f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.957520;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_17faacf69b42caa1d8c5abd8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.957520;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_e95aa7898097bd6d249e51aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854004;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_48204790f225eac33f770703.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_4b861310b5a44f28eab3465b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m3{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls2c{letter-spacing:-2.826000px;}
.lsa{letter-spacing:-2.160000px;}
.ls2b{letter-spacing:-1.800000px;}
.ls14{letter-spacing:-1.284000px;}
.ls2d{letter-spacing:-1.260000px;}
.ls30{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-0.828000px;}
.lsf{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.513600px;}
.lse{letter-spacing:-0.460200px;}
.ls11{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.109200px;}
.ls24{letter-spacing:0.153600px;}
.ls1b{letter-spacing:0.156000px;}
.ls15{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.249120px;}
.lsd{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.666000px;}
.ls16{letter-spacing:4.500000px;}
.ls18{letter-spacing:5.220000px;}
.ls22{letter-spacing:7.380000px;}
.ls1d{letter-spacing:8.820000px;}
.ls2e{letter-spacing:9.540000px;}
.ls21{letter-spacing:10.260000px;}
.ls2{letter-spacing:10.313280px;}
.ls1f{letter-spacing:11.700000px;}
.ls19{letter-spacing:13.860000px;}
.ls3{letter-spacing:14.508720px;}
.ls25{letter-spacing:16.506720px;}
.ls2f{letter-spacing:18.900000px;}
.ls5{letter-spacing:23.220000px;}
.ls20{letter-spacing:26.100000px;}
.ls1c{letter-spacing:28.260000px;}
.ls17{letter-spacing:37.620000px;}
.ls28{letter-spacing:44.820000px;}
.ls23{letter-spacing:46.026720px;}
.ls29{letter-spacing:65.700000px;}
.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;}
}
.ws1{word-spacing:-16.669200px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.254600px;}
.ws13{word-spacing:-15.606000px;}
.ws4{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.146400px;}
.ws14{word-spacing:-15.093600px;}
.wsd{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.680200px;}
.wse{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.479800px;}
.ws10{word-spacing:-14.426400px;}
.wsc{word-spacing:-14.166000px;}
.ws16{word-spacing:-14.112000px;}
.ws18{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.656000px;}
.ws17{word-spacing:-13.140000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsf{word-spacing:0.000000px;}
._b{margin-left:-6.356160px;}
._7{margin-left:-5.092080px;}
._a{margin-left:-3.420720px;}
._6{margin-left:-2.364960px;}
._0{margin-left:-1.224000px;}
._5{width:1.149120px;}
._1{width:2.184000px;}
._8{width:3.194400px;}
._c{width:4.724400px;}
._f{width:5.918400px;}
._16{width:7.349760px;}
._29{width:8.501760px;}
._e{width:9.611760px;}
._1a{width:10.995840px;}
._28{width:12.563280px;}
._9{width:13.910400px;}
._d{width:16.613280px;}
._1b{width:17.629200px;}
._15{width:18.884160px;}
._14{width:20.437920px;}
._23{width:21.440160px;}
._1e{width:22.927920px;}
._17{width:24.127920px;}
._22{width:25.708320px;}
._2b{width:26.714160px;}
._2a{width:27.907920px;}
._21{width:28.937520px;}
._1f{width:30.942000px;}
._25{width:32.376240px;}
._1d{width:34.107120px;}
._1c{width:35.198640px;}
._4{width:36.886080px;}
._3{width:38.878560px;}
._24{width:40.016160px;}
._11{width:42.549120px;}
._3b{width:44.064960px;}
._3a{width:45.395760px;}
._2c{width:46.916400px;}
._27{width:48.226320px;}
._26{width:49.302000px;}
._31{width:51.200640px;}
._30{width:52.409520px;}
._2e{width:53.753040px;}
._19{width:55.337760px;}
._18{width:56.413440px;}
._3e{width:58.918800px;}
._3c{width:60.164640px;}
._40{width:61.988400px;}
._2f{width:63.033120px;}
._2d{width:64.663920px;}
._38{width:66.990960px;}
._39{width:68.582160px;}
._20{width:72.907200px;}
._37{width:74.626560px;}
._41{width:82.486560px;}
._3d{width:85.417920px;}
._3f{width:87.464160px;}
._36{width:88.966560px;}
._35{width:93.092400px;}
._32{width:98.339760px;}
._12{width:139.718880px;}
._10{width:146.232720px;}
._33{width:153.583200px;}
._34{width:188.890560px;}
._13{width:243.462240px;}
._2{width:303.508320px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.900000px;}
.y22{bottom:5.760000px;}
.y63{bottom:5.940000px;}
.y12{bottom:7.560000px;}
.y107{bottom:10.800000px;}
.yd1{bottom:11.700000px;}
.y6{bottom:13.860000px;}
.y7b{bottom:15.660000px;}
.y81{bottom:15.840000px;}
.y109{bottom:16.200000px;}
.yce{bottom:16.380000px;}
.yd4{bottom:16.560000px;}
.ybe{bottom:18.900000px;}
.yea{bottom:18.930000px;}
.y86{bottom:19.080000px;}
.yb9{bottom:19.125000px;}
.ya3{bottom:19.440000px;}
.y98{bottom:20.160000px;}
.y75{bottom:24.660000px;}
.y21{bottom:25.560000px;}
.y9d{bottom:25.590000px;}
.y78{bottom:25.605000px;}
.y5f{bottom:25.740000px;}
.y66{bottom:25.785000px;}
.y10d{bottom:30.600000px;}
.y106{bottom:30.825000px;}
.yd0{bottom:31.500000px;}
.y7a{bottom:35.460000px;}
.y83{bottom:35.490000px;}
.y80{bottom:35.640000px;}
.y97{bottom:39.960000px;}
.y74{bottom:44.640000px;}
.y5{bottom:45.180000px;}
.y20{bottom:45.360000px;}
.yf3{bottom:45.390000px;}
.yf8{bottom:45.405000px;}
.y7e{bottom:45.540000px;}
.y9{bottom:58.680000px;}
.y1f{bottom:65.340000px;}
.y142{bottom:65.370000px;}
.y4{bottom:76.320000px;}
.y143{bottom:83.340000px;}
.y9b{bottom:83.520000px;}
.yec{bottom:83.880000px;}
.y126{bottom:84.240000px;}
.y1e{bottom:85.140000px;}
.y72{bottom:89.280000px;}
.y40{bottom:89.640000px;}
.yc6{bottom:93.420000px;}
.y38{bottom:93.780000px;}
.y15e{bottom:97.560000px;}
.y141{bottom:104.040000px;}
.y125{bottom:104.760000px;}
.y1d{bottom:104.940000px;}
.y3{bottom:107.670000px;}
.y71{bottom:109.080000px;}
.y3f{bottom:109.620000px;}
.yc5{bottom:113.220000px;}
.y37{bottom:113.580000px;}
.y15d{bottom:117.360000px;}
.yeb{bottom:117.720000px;}
.y9a{bottom:123.840000px;}
.y1c{bottom:124.770000px;}
.y70{bottom:128.880000px;}
.y3e{bottom:129.420000px;}
.yc4{bottom:133.020000px;}
.y36{bottom:133.380000px;}
.y15c{bottom:137.160000px;}
.y2{bottom:139.530000px;}
.y1b{bottom:144.570000px;}
.y124{bottom:145.260000px;}
.y6f{bottom:148.680000px;}
.y3d{bottom:149.220000px;}
.ye9{bottom:151.560000px;}
.yc3{bottom:153.030000px;}
.y35{bottom:153.390000px;}
.y15b{bottom:156.990000px;}
.y99{bottom:164.370000px;}
.y1a{bottom:164.550000px;}
.y6e{bottom:168.510000px;}
.y3c{bottom:169.050000px;}
.yc2{bottom:172.830000px;}
.y34{bottom:173.190000px;}
.y15a{bottom:176.790000px;}
.y140{bottom:184.170000px;}
.y19{bottom:184.350000px;}
.ye8{bottom:185.430000px;}
.y123{bottom:185.610000px;}
.y6d{bottom:188.490000px;}
.y3b{bottom:188.850000px;}
.yc1{bottom:192.630000px;}
.y33{bottom:192.990000px;}
.y159{bottom:196.770000px;}
.y18{bottom:204.150000px;}
.y96{bottom:204.690000px;}
.y6c{bottom:208.290000px;}
.y3a{bottom:208.830000px;}
.yc0{bottom:212.430000px;}
.y158{bottom:216.570000px;}
.y32{bottom:217.290000px;}
.ye7{bottom:219.270000px;}
.y17{bottom:223.950000px;}
.y122{bottom:226.110000px;}
.y6b{bottom:228.090000px;}
.y39{bottom:228.630000px;}
.y13f{bottom:230.430000px;}
.ybf{bottom:232.230000px;}
.y157{bottom:236.370000px;}
.y6a{bottom:242.850000px;}
.y16{bottom:243.750000px;}
.ybd{bottom:247.170000px;}
.yff{bottom:247.890000px;}
.y31{bottom:248.430000px;}
.y13e{bottom:250.230000px;}
.ye6{bottom:252.930000px;}
.y156{bottom:256.170000px;}
.y69{bottom:263.550000px;}
.y15{bottom:263.730000px;}
.y95{bottom:265.170000px;}
.y121{bottom:266.430000px;}
.yfe{bottom:267.690000px;}
.y30{bottom:268.230000px;}
.y13d{bottom:270.030000px;}
.ye5{bottom:273.630000px;}
.y155{bottom:275.970000px;}
.ybc{bottom:280.830000px;}
.y14{bottom:283.530000px;}
.y94{bottom:284.970000px;}
.yfd{bottom:287.670000px;}
.y2f{bottom:288.030000px;}
.y13c{bottom:289.830000px;}
.y154{bottom:295.950000px;}
.ybb{bottom:301.530000px;}
.y68{bottom:303.870000px;}
.y93{bottom:304.950000px;}
.y120{bottom:306.930000px;}
.yfc{bottom:307.470000px;}
.y2e{bottom:308.010000px;}
.y13b{bottom:309.630000px;}
.y153{bottom:315.750000px;}
.ye4{bottom:319.890000px;}
.y92{bottom:324.750000px;}
.yfb{bottom:327.270000px;}
.y2d{bottom:327.810000px;}
.y13a{bottom:329.610000px;}
.y152{bottom:335.550000px;}
.ye3{bottom:339.690000px;}
.yba{bottom:341.850000px;}
.y67{bottom:344.370000px;}
.y91{bottom:344.550000px;}
.y11f{bottom:346.530000px;}
.yfa{bottom:347.070000px;}
.y2c{bottom:347.610000px;}
.y139{bottom:349.410000px;}
.y151{bottom:355.350000px;}
.ye2{bottom:359.490000px;}
.y90{bottom:364.350000px;}
.y11e{bottom:366.330000px;}
.yf9{bottom:366.870000px;}
.y2b{bottom:367.410000px;}
.y138{bottom:369.210000px;}
.y150{bottom:375.150000px;}
.ye1{bottom:379.290000px;}
.yf7{bottom:381.810000px;}
.yb8{bottom:382.350000px;}
.y8f{bottom:384.150000px;}
.y65{bottom:384.690000px;}
.y11d{bottom:386.130000px;}
.y2a{bottom:387.210000px;}
.y137{bottom:389.010000px;}
.y14f{bottom:395.130000px;}
.ye0{bottom:399.090000px;}
.y8e{bottom:404.175000px;}
.y11c{bottom:405.975000px;}
.y29{bottom:407.235000px;}
.y136{bottom:408.855000px;}
.y14e{bottom:414.975000px;}
.yb7{bottom:416.235000px;}
.ydf{bottom:419.115000px;}
.y8d{bottom:423.975000px;}
.y64{bottom:425.235000px;}
.y11b{bottom:425.955000px;}
.y28{bottom:427.035000px;}
.y135{bottom:428.835000px;}
.y14d{bottom:434.775000px;}
.yde{bottom:438.915000px;}
.yf6{bottom:441.975000px;}
.y8c{bottom:443.775000px;}
.y11a{bottom:445.755000px;}
.y27{bottom:446.835000px;}
.y134{bottom:448.635000px;}
.y14c{bottom:454.575000px;}
.yb6{bottom:456.555000px;}
.ydd{bottom:458.715000px;}
.y8b{bottom:463.575000px;}
.y62{bottom:465.555000px;}
.y26{bottom:466.635000px;}
.y133{bottom:468.435000px;}
.y14b{bottom:474.375000px;}
.ydc{bottom:478.515000px;}
.y8a{bottom:483.375000px;}
.y119{bottom:485.355000px;}
.y25{bottom:486.435000px;}
.y132{bottom:488.235000px;}
.y14a{bottom:494.355000px;}
.ydb{bottom:498.315000px;}
.yf5{bottom:502.275000px;}
.y89{bottom:503.355000px;}
.y118{bottom:505.155000px;}
.y61{bottom:506.055000px;}
.y24{bottom:506.415000px;}
.yb5{bottom:506.955000px;}
.y131{bottom:508.035000px;}
.y149{bottom:514.155000px;}
.yda{bottom:518.295000px;}
.y88{bottom:523.155000px;}
.y117{bottom:525.135000px;}
.y23{bottom:526.215000px;}
.y130{bottom:528.015000px;}
.y148{bottom:533.955000px;}
.yd9{bottom:538.095000px;}
.y13{bottom:540.975000px;}
.y87{bottom:542.955000px;}
.y116{bottom:544.935000px;}
.y60{bottom:546.555000px;}
.yb4{bottom:547.455000px;}
.y12f{bottom:547.815000px;}
.y147{bottom:553.755000px;}
.y85{bottom:557.715000px;}
.yd8{bottom:557.895000px;}
.yf4{bottom:562.575000px;}
.y115{bottom:564.735000px;}
.y12e{bottom:567.615000px;}
.y146{bottom:573.555000px;}
.yd7{bottom:577.695000px;}
.y114{bottom:584.535000px;}
.y5e{bottom:586.875000px;}
.y12d{bottom:587.415000px;}
.yb3{bottom:587.955000px;}
.y84{bottom:591.555000px;}
.y145{bottom:593.355000px;}
.yd6{bottom:597.495000px;}
.y113{bottom:604.335000px;}
.y12c{bottom:607.215000px;}
.y144{bottom:613.335000px;}
.yd5{bottom:617.475000px;}
.y12b{bottom:622.155000px;}
.yf2{bottom:622.875000px;}
.y112{bottom:624.315000px;}
.y82{bottom:632.055000px;}
.yd3{bottom:632.235000px;}
.y5d{bottom:633.135000px;}
.yb2{bottom:634.035000px;}
.y12a{bottom:642.675000px;}
.y111{bottom:644.115000px;}
.y5c{bottom:652.965000px;}
.yb1{bottom:653.865000px;}
.yd2{bottom:663.585000px;}
.y110{bottom:663.945000px;}
.y5b{bottom:672.765000px;}
.yb0{bottom:673.845000px;}
.y7f{bottom:682.305000px;}
.yf1{bottom:683.025000px;}
.y10f{bottom:683.745000px;}
.y5a{bottom:692.565000px;}
.yaf{bottom:693.645000px;}
.y10e{bottom:703.545000px;}
.ycf{bottom:704.085000px;}
.y59{bottom:712.545000px;}
.yae{bottom:713.445000px;}
.y10c{bottom:718.485000px;}
.y129{bottom:723.525000px;}
.y58{bottom:732.345000px;}
.y7d{bottom:732.705000px;}
.yad{bottom:733.245000px;}
.yf0{bottom:743.325000px;}
.ycd{bottom:750.345000px;}
.y57{bottom:752.145000px;}
.yac{bottom:753.045000px;}
.y10b{bottom:763.845000px;}
.y128{bottom:764.025000px;}
.y56{bottom:771.945000px;}
.yab{bottom:773.025000px;}
.ycc{bottom:781.485000px;}
.y55{bottom:791.745000px;}
.yaa{bottom:792.825000px;}
.y7c{bottom:793.005000px;}
.yef{bottom:803.625000px;}
.y10a{bottom:804.345000px;}
.y54{bottom:811.725000px;}
.ya9{bottom:812.625000px;}
.ycb{bottom:821.985000px;}
.y53{bottom:831.525000px;}
.ya8{bottom:832.425000px;}
.y79{bottom:833.505000px;}
.y11{bottom:839.265000px;}
.y108{bottom:844.665000px;}
.y127{bottom:844.845000px;}
.y52{bottom:851.325000px;}
.ya7{bottom:852.225000px;}
.yca{bottom:862.305000px;}
.yee{bottom:863.925000px;}
.y51{bottom:871.125000px;}
.y10{bottom:871.845000px;}
.ya6{bottom:872.205000px;}
.y105{bottom:875.625000px;}
.y77{bottom:883.905000px;}
.y50{bottom:890.925000px;}
.ya5{bottom:892.005000px;}
.yf{bottom:897.045000px;}
.yc9{bottom:902.850000px;}
.yed{bottom:904.290000px;}
.y4f{bottom:910.950000px;}
.ya4{bottom:911.850000px;}
.ye{bottom:916.890000px;}
.y104{bottom:921.210000px;}
.y76{bottom:924.270000px;}
.ya2{bottom:926.610000px;}
.y4e{bottom:930.750000px;}
.yd{bottom:932.010000px;}
.yc8{bottom:943.350000px;}
.y4d{bottom:950.550000px;}
.yc{bottom:953.250000px;}
.ya1{bottom:960.810000px;}
.y103{bottom:961.530000px;}
.y73{bottom:964.770000px;}
.y4c{bottom:970.350000px;}
.yb{bottom:976.830000px;}
.yc7{bottom:983.670000px;}
.y4b{bottom:990.150000px;}
.ya0{bottom:1001.310000px;}
.y102{bottom:1002.030000px;}
.ya{bottom:1008.510000px;}
.y4a{bottom:1010.130000px;}
.y49{bottom:1029.930000px;}
.y8{bottom:1034.430000px;}
.y9f{bottom:1041.630000px;}
.y101{bottom:1042.530000px;}
.y48{bottom:1049.730000px;}
.y1{bottom:1050.450000px;}
.y47{bottom:1069.530000px;}
.y9e{bottom:1082.130000px;}
.y100{bottom:1082.850000px;}
.y46{bottom:1089.330000px;}
.y45{bottom:1109.310000px;}
.y9c{bottom:1122.630000px;}
.y44{bottom:1129.110000px;}
.y43{bottom:1148.940000px;}
.y42{bottom:1169.820000px;}
.y41{bottom:1192.680000px;}
.h18{height:19.800000px;}
.h23{height:19.980000px;}
.hd{height:26.100000px;}
.hb{height:27.147656px;}
.h2b{height:30.240000px;}
.h25{height:30.420000px;}
.h27{height:30.636000px;}
.h24{height:32.940000px;}
.h28{height:32.976000px;}
.h1f{height:33.120000px;}
.h22{height:33.156000px;}
.h21{height:33.480000px;}
.h16{height:39.600000px;}
.h1a{height:39.636000px;}
.h15{height:39.780000px;}
.h17{height:39.816000px;}
.hc{height:41.726953px;}
.h9{height:42.164648px;}
.h10{height:43.302656px;}
.h14{height:43.506914px;}
.h2c{height:44.640000px;}
.h2a{height:44.856000px;}
.h26{height:45.540000px;}
.h6{height:46.251562px;}
.h7{height:47.933437px;}
.he{height:48.027656px;}
.h4{height:48.774375px;}
.h1b{height:49.500000px;}
.h1e{height:49.536000px;}
.h1d{height:49.680000px;}
.h12{height:50.510039px;}
.h13{height:51.706406px;}
.h3{height:53.015625px;}
.ha{height:53.224453px;}
.h20{height:54.000000px;}
.h11{height:55.987031px;}
.h19{height:58.680000px;}
.h29{height:59.436000px;}
.h1c{height:59.580000px;}
.h5{height:62.028281px;}
.h8{height:67.565039px;}
.h2d{height:79.416000px;}
.h2{height:158.430000px;}
.hf{height:297.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:57.420000px;}
.wb{width:57.600000px;}
.wf{width:58.500000px;}
.w19{width:59.220000px;}
.w1c{width:85.860000px;}
.w26{width:86.400000px;}
.w21{width:87.300000px;}
.w13{width:89.280000px;}
.w9{width:89.640000px;}
.w17{width:91.800000px;}
.wd{width:93.240000px;}
.w25{width:112.716000px;}
.w14{width:124.956000px;}
.w11{width:125.136000px;}
.wa{width:125.316000px;}
.we{width:129.276000px;}
.w18{width:132.336000px;}
.w3{width:146.736000px;}
.w7{width:163.290000px;}
.w1d{width:166.530000px;}
.w27{width:168.330000px;}
.w22{width:169.050000px;}
.w1b{width:174.990000px;}
.w20{width:178.950000px;}
.w1a{width:200.190000px;}
.w1f{width:204.330000px;}
.w24{width:260.670000px;}
.w10{width:338.475000px;}
.w16{width:350.175000px;}
.wc{width:351.795000px;}
.w8{width:355.395000px;}
.w12{width:390.675000px;}
.w6{width:616.830000px;}
.w1e{width:629.925000px;}
.w28{width:630.285000px;}
.w2{width:637.890000px;}
.w23{width:641.985000px;}
.w5{width:780.120000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.080000px;}
.x2{left:8.100000px;}
.x17{left:9.540000px;}
.x2e{left:11.340000px;}
.x2d{left:20.340000px;}
.x11{left:22.860000px;}
.x18{left:24.660000px;}
.x2b{left:28.800000px;}
.x14{left:29.880000px;}
.x13{left:31.860000px;}
.x27{left:35.274000px;}
.x12{left:36.360000px;}
.x1a{left:38.340000px;}
.x21{left:40.860000px;}
.x2a{left:44.820000px;}
.x1{left:54.180000px;}
.x5{left:56.520000px;}
.xb{left:63.719987px;}
.x29{left:67.319987px;}
.xa{left:70.919987px;}
.x2f{left:72.719987px;}
.x22{left:74.154000px;}
.x34{left:75.239987px;}
.x28{left:77.214000px;}
.x3d{left:80.999987px;}
.x10{left:82.254000px;}
.x30{left:90.756000px;}
.x7{left:108.035987px;}
.x23{left:114.336000px;}
.x35{left:125.496000px;}
.x15{left:128.916000px;}
.xc{left:131.436000px;}
.x4{left:138.630000px;}
.x1d{left:139.896000px;}
.x45{left:201.089987px;}
.x46{left:212.609987px;}
.x41{left:221.249987px;}
.x3e{left:246.629987px;}
.x42{left:247.709987px;}
.x3f{left:260.129987px;}
.x47{left:266.474987px;}
.x43{left:278.534987px;}
.x31{left:291.675000px;}
.x44{left:304.994987px;}
.x36{left:330.735000px;}
.x39{left:352.155000px;}
.x40{left:419.474987px;}
.x3a{left:465.585000px;}
.x32{left:467.385000px;}
.x8{left:473.504987px;}
.x1e{left:479.085000px;}
.x16{left:481.425000px;}
.xd{left:487.545000px;}
.x3c{left:500.504987px;}
.x24{left:505.725000px;}
.x37{left:510.405000px;}
.x9{left:527.504987px;}
.x3b{left:552.705000px;}
.x33{left:554.145000px;}
.x1f{left:569.625000px;}
.x2c{left:572.145000px;}
.x19{left:575.385000px;}
.xe{left:577.905000px;}
.x25{left:595.725000px;}
.x38{left:598.425000px;}
.x6{left:673.350000px;}
.x3{left:692.070000px;}
.x20{left:695.670000px;}
.xf{left:703.950000px;}
.x1b{left:705.570000px;}
.x26{left:721.410000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls2c{letter-spacing:-2.512000pt;}
.lsa{letter-spacing:-1.920000pt;}
.ls2b{letter-spacing:-1.600000pt;}
.ls14{letter-spacing:-1.141333pt;}
.ls2d{letter-spacing:-1.120000pt;}
.ls30{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.736000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.456533pt;}
.lse{letter-spacing:-0.409067pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.097067pt;}
.ls24{letter-spacing:0.136533pt;}
.ls1b{letter-spacing:0.138667pt;}
.ls15{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.221440pt;}
.lsd{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.592000pt;}
.ls16{letter-spacing:4.000000pt;}
.ls18{letter-spacing:4.640000pt;}
.ls22{letter-spacing:6.560000pt;}
.ls1d{letter-spacing:7.840000pt;}
.ls2e{letter-spacing:8.480000pt;}
.ls21{letter-spacing:9.120000pt;}
.ls2{letter-spacing:9.167360pt;}
.ls1f{letter-spacing:10.400000pt;}
.ls19{letter-spacing:12.320000pt;}
.ls3{letter-spacing:12.896640pt;}
.ls25{letter-spacing:14.672640pt;}
.ls2f{letter-spacing:16.800000pt;}
.ls5{letter-spacing:20.640000pt;}
.ls20{letter-spacing:23.200000pt;}
.ls1c{letter-spacing:25.120000pt;}
.ls17{letter-spacing:33.440000pt;}
.ls28{letter-spacing:39.840000pt;}
.ls23{letter-spacing:40.912640pt;}
.ls29{letter-spacing:58.400000pt;}
.ws1{word-spacing:-14.817067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.448533pt;}
.ws13{word-spacing:-13.872000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.463467pt;}
.ws14{word-spacing:-13.416533pt;}
.wsd{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.049067pt;}
.wse{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.870933pt;}
.ws10{word-spacing:-12.823467pt;}
.wsc{word-spacing:-12.592000pt;}
.ws16{word-spacing:-12.544000pt;}
.ws18{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.138667pt;}
.ws17{word-spacing:-11.680000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsf{word-spacing:0.000000pt;}
._b{margin-left:-5.649920pt;}
._7{margin-left:-4.526293pt;}
._a{margin-left:-3.040640pt;}
._6{margin-left:-2.102187pt;}
._0{margin-left:-1.088000pt;}
._5{width:1.021440pt;}
._1{width:1.941333pt;}
._8{width:2.839467pt;}
._c{width:4.199467pt;}
._f{width:5.260800pt;}
._16{width:6.533120pt;}
._29{width:7.557120pt;}
._e{width:8.543787pt;}
._1a{width:9.774080pt;}
._28{width:11.167360pt;}
._9{width:12.364800pt;}
._d{width:14.767360pt;}
._1b{width:15.670400pt;}
._15{width:16.785920pt;}
._14{width:18.167040pt;}
._23{width:19.057920pt;}
._1e{width:20.380373pt;}
._17{width:21.447040pt;}
._22{width:22.851840pt;}
._2b{width:23.745920pt;}
._2a{width:24.807040pt;}
._21{width:25.722240pt;}
._1f{width:27.504000pt;}
._25{width:28.778880pt;}
._1d{width:30.317440pt;}
._1c{width:31.287680pt;}
._4{width:32.787627pt;}
._3{width:34.558720pt;}
._24{width:35.569920pt;}
._11{width:37.821440pt;}
._3b{width:39.168853pt;}
._3a{width:40.351787pt;}
._2c{width:41.703467pt;}
._27{width:42.867840pt;}
._26{width:43.824000pt;}
._31{width:45.511680pt;}
._30{width:46.586240pt;}
._2e{width:47.780480pt;}
._19{width:49.189120pt;}
._18{width:50.145280pt;}
._3e{width:52.372267pt;}
._3c{width:53.479680pt;}
._40{width:55.100800pt;}
._2f{width:56.029440pt;}
._2d{width:57.479040pt;}
._38{width:59.547520pt;}
._39{width:60.961920pt;}
._20{width:64.806400pt;}
._37{width:66.334720pt;}
._41{width:73.321387pt;}
._3d{width:75.927040pt;}
._3f{width:77.745920pt;}
._36{width:79.081387pt;}
._35{width:82.748800pt;}
._32{width:87.413120pt;}
._12{width:124.194560pt;}
._10{width:129.984640pt;}
._33{width:136.518400pt;}
._34{width:167.902720pt;}
._13{width:216.410880pt;}
._2{width:269.785173pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.800000pt;}
.y22{bottom:5.120000pt;}
.y63{bottom:5.280000pt;}
.y12{bottom:6.720000pt;}
.y107{bottom:9.600000pt;}
.yd1{bottom:10.400000pt;}
.y6{bottom:12.320000pt;}
.y7b{bottom:13.920000pt;}
.y81{bottom:14.080000pt;}
.y109{bottom:14.400000pt;}
.yce{bottom:14.560000pt;}
.yd4{bottom:14.720000pt;}
.ybe{bottom:16.800000pt;}
.yea{bottom:16.826667pt;}
.y86{bottom:16.960000pt;}
.yb9{bottom:17.000000pt;}
.ya3{bottom:17.280000pt;}
.y98{bottom:17.920000pt;}
.y75{bottom:21.920000pt;}
.y21{bottom:22.720000pt;}
.y9d{bottom:22.746667pt;}
.y78{bottom:22.760000pt;}
.y5f{bottom:22.880000pt;}
.y66{bottom:22.920000pt;}
.y10d{bottom:27.200000pt;}
.y106{bottom:27.400000pt;}
.yd0{bottom:28.000000pt;}
.y7a{bottom:31.520000pt;}
.y83{bottom:31.546667pt;}
.y80{bottom:31.680000pt;}
.y97{bottom:35.520000pt;}
.y74{bottom:39.680000pt;}
.y5{bottom:40.160000pt;}
.y20{bottom:40.320000pt;}
.yf3{bottom:40.346667pt;}
.yf8{bottom:40.360000pt;}
.y7e{bottom:40.480000pt;}
.y9{bottom:52.160000pt;}
.y1f{bottom:58.080000pt;}
.y142{bottom:58.106667pt;}
.y4{bottom:67.840000pt;}
.y143{bottom:74.080000pt;}
.y9b{bottom:74.240000pt;}
.yec{bottom:74.560000pt;}
.y126{bottom:74.880000pt;}
.y1e{bottom:75.680000pt;}
.y72{bottom:79.360000pt;}
.y40{bottom:79.680000pt;}
.yc6{bottom:83.040000pt;}
.y38{bottom:83.360000pt;}
.y15e{bottom:86.720000pt;}
.y141{bottom:92.480000pt;}
.y125{bottom:93.120000pt;}
.y1d{bottom:93.280000pt;}
.y3{bottom:95.706667pt;}
.y71{bottom:96.960000pt;}
.y3f{bottom:97.440000pt;}
.yc5{bottom:100.640000pt;}
.y37{bottom:100.960000pt;}
.y15d{bottom:104.320000pt;}
.yeb{bottom:104.640000pt;}
.y9a{bottom:110.080000pt;}
.y1c{bottom:110.906667pt;}
.y70{bottom:114.560000pt;}
.y3e{bottom:115.040000pt;}
.yc4{bottom:118.240000pt;}
.y36{bottom:118.560000pt;}
.y15c{bottom:121.920000pt;}
.y2{bottom:124.026667pt;}
.y1b{bottom:128.506667pt;}
.y124{bottom:129.120000pt;}
.y6f{bottom:132.160000pt;}
.y3d{bottom:132.640000pt;}
.ye9{bottom:134.720000pt;}
.yc3{bottom:136.026667pt;}
.y35{bottom:136.346667pt;}
.y15b{bottom:139.546667pt;}
.y99{bottom:146.106667pt;}
.y1a{bottom:146.266667pt;}
.y6e{bottom:149.786667pt;}
.y3c{bottom:150.266667pt;}
.yc2{bottom:153.626667pt;}
.y34{bottom:153.946667pt;}
.y15a{bottom:157.146667pt;}
.y140{bottom:163.706667pt;}
.y19{bottom:163.866667pt;}
.ye8{bottom:164.826667pt;}
.y123{bottom:164.986667pt;}
.y6d{bottom:167.546667pt;}
.y3b{bottom:167.866667pt;}
.yc1{bottom:171.226667pt;}
.y33{bottom:171.546667pt;}
.y159{bottom:174.906667pt;}
.y18{bottom:181.466667pt;}
.y96{bottom:181.946667pt;}
.y6c{bottom:185.146667pt;}
.y3a{bottom:185.626667pt;}
.yc0{bottom:188.826667pt;}
.y158{bottom:192.506667pt;}
.y32{bottom:193.146667pt;}
.ye7{bottom:194.906667pt;}
.y17{bottom:199.066667pt;}
.y122{bottom:200.986667pt;}
.y6b{bottom:202.746667pt;}
.y39{bottom:203.226667pt;}
.y13f{bottom:204.826667pt;}
.ybf{bottom:206.426667pt;}
.y157{bottom:210.106667pt;}
.y6a{bottom:215.866667pt;}
.y16{bottom:216.666667pt;}
.ybd{bottom:219.706667pt;}
.yff{bottom:220.346667pt;}
.y31{bottom:220.826667pt;}
.y13e{bottom:222.426667pt;}
.ye6{bottom:224.826667pt;}
.y156{bottom:227.706667pt;}
.y69{bottom:234.266667pt;}
.y15{bottom:234.426667pt;}
.y95{bottom:235.706667pt;}
.y121{bottom:236.826667pt;}
.yfe{bottom:237.946667pt;}
.y30{bottom:238.426667pt;}
.y13d{bottom:240.026667pt;}
.ye5{bottom:243.226667pt;}
.y155{bottom:245.306667pt;}
.ybc{bottom:249.626667pt;}
.y14{bottom:252.026667pt;}
.y94{bottom:253.306667pt;}
.yfd{bottom:255.706667pt;}
.y2f{bottom:256.026667pt;}
.y13c{bottom:257.626667pt;}
.y154{bottom:263.066667pt;}
.ybb{bottom:268.026667pt;}
.y68{bottom:270.106667pt;}
.y93{bottom:271.066667pt;}
.y120{bottom:272.826667pt;}
.yfc{bottom:273.306667pt;}
.y2e{bottom:273.786667pt;}
.y13b{bottom:275.226667pt;}
.y153{bottom:280.666667pt;}
.ye4{bottom:284.346667pt;}
.y92{bottom:288.666667pt;}
.yfb{bottom:290.906667pt;}
.y2d{bottom:291.386667pt;}
.y13a{bottom:292.986667pt;}
.y152{bottom:298.266667pt;}
.ye3{bottom:301.946667pt;}
.yba{bottom:303.866667pt;}
.y67{bottom:306.106667pt;}
.y91{bottom:306.266667pt;}
.y11f{bottom:308.026667pt;}
.yfa{bottom:308.506667pt;}
.y2c{bottom:308.986667pt;}
.y139{bottom:310.586667pt;}
.y151{bottom:315.866667pt;}
.ye2{bottom:319.546667pt;}
.y90{bottom:323.866667pt;}
.y11e{bottom:325.626667pt;}
.yf9{bottom:326.106667pt;}
.y2b{bottom:326.586667pt;}
.y138{bottom:328.186667pt;}
.y150{bottom:333.466667pt;}
.ye1{bottom:337.146667pt;}
.yf7{bottom:339.386667pt;}
.yb8{bottom:339.866667pt;}
.y8f{bottom:341.466667pt;}
.y65{bottom:341.946667pt;}
.y11d{bottom:343.226667pt;}
.y2a{bottom:344.186667pt;}
.y137{bottom:345.786667pt;}
.y14f{bottom:351.226667pt;}
.ye0{bottom:354.746667pt;}
.y8e{bottom:359.266667pt;}
.y11c{bottom:360.866667pt;}
.y29{bottom:361.986667pt;}
.y136{bottom:363.426667pt;}
.y14e{bottom:368.866667pt;}
.yb7{bottom:369.986667pt;}
.ydf{bottom:372.546667pt;}
.y8d{bottom:376.866667pt;}
.y64{bottom:377.986667pt;}
.y11b{bottom:378.626667pt;}
.y28{bottom:379.586667pt;}
.y135{bottom:381.186667pt;}
.y14d{bottom:386.466667pt;}
.yde{bottom:390.146667pt;}
.yf6{bottom:392.866667pt;}
.y8c{bottom:394.466667pt;}
.y11a{bottom:396.226667pt;}
.y27{bottom:397.186667pt;}
.y134{bottom:398.786667pt;}
.y14c{bottom:404.066667pt;}
.yb6{bottom:405.826667pt;}
.ydd{bottom:407.746667pt;}
.y8b{bottom:412.066667pt;}
.y62{bottom:413.826667pt;}
.y26{bottom:414.786667pt;}
.y133{bottom:416.386667pt;}
.y14b{bottom:421.666667pt;}
.ydc{bottom:425.346667pt;}
.y8a{bottom:429.666667pt;}
.y119{bottom:431.426667pt;}
.y25{bottom:432.386667pt;}
.y132{bottom:433.986667pt;}
.y14a{bottom:439.426667pt;}
.ydb{bottom:442.946667pt;}
.yf5{bottom:446.466667pt;}
.y89{bottom:447.426667pt;}
.y118{bottom:449.026667pt;}
.y61{bottom:449.826667pt;}
.y24{bottom:450.146667pt;}
.yb5{bottom:450.626667pt;}
.y131{bottom:451.586667pt;}
.y149{bottom:457.026667pt;}
.yda{bottom:460.706667pt;}
.y88{bottom:465.026667pt;}
.y117{bottom:466.786667pt;}
.y23{bottom:467.746667pt;}
.y130{bottom:469.346667pt;}
.y148{bottom:474.626667pt;}
.yd9{bottom:478.306667pt;}
.y13{bottom:480.866667pt;}
.y87{bottom:482.626667pt;}
.y116{bottom:484.386667pt;}
.y60{bottom:485.826667pt;}
.yb4{bottom:486.626667pt;}
.y12f{bottom:486.946667pt;}
.y147{bottom:492.226667pt;}
.y85{bottom:495.746667pt;}
.yd8{bottom:495.906667pt;}
.yf4{bottom:500.066667pt;}
.y115{bottom:501.986667pt;}
.y12e{bottom:504.546667pt;}
.y146{bottom:509.826667pt;}
.yd7{bottom:513.506667pt;}
.y114{bottom:519.586667pt;}
.y5e{bottom:521.666667pt;}
.y12d{bottom:522.146667pt;}
.yb3{bottom:522.626667pt;}
.y84{bottom:525.826667pt;}
.y145{bottom:527.426667pt;}
.yd6{bottom:531.106667pt;}
.y113{bottom:537.186667pt;}
.y12c{bottom:539.746667pt;}
.y144{bottom:545.186667pt;}
.yd5{bottom:548.866667pt;}
.y12b{bottom:553.026667pt;}
.yf2{bottom:553.666667pt;}
.y112{bottom:554.946667pt;}
.y82{bottom:561.826667pt;}
.yd3{bottom:561.986667pt;}
.y5d{bottom:562.786667pt;}
.yb2{bottom:563.586667pt;}
.y12a{bottom:571.266667pt;}
.y111{bottom:572.546667pt;}
.y5c{bottom:580.413333pt;}
.yb1{bottom:581.213333pt;}
.yd2{bottom:589.853333pt;}
.y110{bottom:590.173333pt;}
.y5b{bottom:598.013333pt;}
.yb0{bottom:598.973333pt;}
.y7f{bottom:606.493333pt;}
.yf1{bottom:607.133333pt;}
.y10f{bottom:607.773333pt;}
.y5a{bottom:615.613333pt;}
.yaf{bottom:616.573333pt;}
.y10e{bottom:625.373333pt;}
.ycf{bottom:625.853333pt;}
.y59{bottom:633.373333pt;}
.yae{bottom:634.173333pt;}
.y10c{bottom:638.653333pt;}
.y129{bottom:643.133333pt;}
.y58{bottom:650.973333pt;}
.y7d{bottom:651.293333pt;}
.yad{bottom:651.773333pt;}
.yf0{bottom:660.733333pt;}
.ycd{bottom:666.973333pt;}
.y57{bottom:668.573333pt;}
.yac{bottom:669.373333pt;}
.y10b{bottom:678.973333pt;}
.y128{bottom:679.133333pt;}
.y56{bottom:686.173333pt;}
.yab{bottom:687.133333pt;}
.ycc{bottom:694.653333pt;}
.y55{bottom:703.773333pt;}
.yaa{bottom:704.733333pt;}
.y7c{bottom:704.893333pt;}
.yef{bottom:714.333333pt;}
.y10a{bottom:714.973333pt;}
.y54{bottom:721.533333pt;}
.ya9{bottom:722.333333pt;}
.ycb{bottom:730.653333pt;}
.y53{bottom:739.133333pt;}
.ya8{bottom:739.933333pt;}
.y79{bottom:740.893333pt;}
.y11{bottom:746.013333pt;}
.y108{bottom:750.813333pt;}
.y127{bottom:750.973333pt;}
.y52{bottom:756.733333pt;}
.ya7{bottom:757.533333pt;}
.yca{bottom:766.493333pt;}
.yee{bottom:767.933333pt;}
.y51{bottom:774.333333pt;}
.y10{bottom:774.973333pt;}
.ya6{bottom:775.293333pt;}
.y105{bottom:778.333333pt;}
.y77{bottom:785.693333pt;}
.y50{bottom:791.933333pt;}
.ya5{bottom:792.893333pt;}
.yf{bottom:797.373333pt;}
.yc9{bottom:802.533333pt;}
.yed{bottom:803.813333pt;}
.y4f{bottom:809.733333pt;}
.ya4{bottom:810.533333pt;}
.ye{bottom:815.013333pt;}
.y104{bottom:818.853333pt;}
.y76{bottom:821.573333pt;}
.ya2{bottom:823.653333pt;}
.y4e{bottom:827.333333pt;}
.yd{bottom:828.453333pt;}
.yc8{bottom:838.533333pt;}
.y4d{bottom:844.933333pt;}
.yc{bottom:847.333333pt;}
.ya1{bottom:854.053333pt;}
.y103{bottom:854.693333pt;}
.y73{bottom:857.573333pt;}
.y4c{bottom:862.533333pt;}
.yb{bottom:868.293333pt;}
.yc7{bottom:874.373333pt;}
.y4b{bottom:880.133333pt;}
.ya0{bottom:890.053333pt;}
.y102{bottom:890.693333pt;}
.ya{bottom:896.453333pt;}
.y4a{bottom:897.893333pt;}
.y49{bottom:915.493333pt;}
.y8{bottom:919.493333pt;}
.y9f{bottom:925.893333pt;}
.y101{bottom:926.693333pt;}
.y48{bottom:933.093333pt;}
.y1{bottom:933.733333pt;}
.y47{bottom:950.693333pt;}
.y9e{bottom:961.893333pt;}
.y100{bottom:962.533333pt;}
.y46{bottom:968.293333pt;}
.y45{bottom:986.053333pt;}
.y9c{bottom:997.893333pt;}
.y44{bottom:1003.653333pt;}
.y43{bottom:1021.280000pt;}
.y42{bottom:1039.840000pt;}
.y41{bottom:1060.160000pt;}
.h18{height:17.600000pt;}
.h23{height:17.760000pt;}
.hd{height:23.200000pt;}
.hb{height:24.131250pt;}
.h2b{height:26.880000pt;}
.h25{height:27.040000pt;}
.h27{height:27.232000pt;}
.h24{height:29.280000pt;}
.h28{height:29.312000pt;}
.h1f{height:29.440000pt;}
.h22{height:29.472000pt;}
.h21{height:29.760000pt;}
.h16{height:35.200000pt;}
.h1a{height:35.232000pt;}
.h15{height:35.360000pt;}
.h17{height:35.392000pt;}
.hc{height:37.090625pt;}
.h9{height:37.479688pt;}
.h10{height:38.491250pt;}
.h14{height:38.672812pt;}
.h2c{height:39.680000pt;}
.h2a{height:39.872000pt;}
.h26{height:40.480000pt;}
.h6{height:41.112500pt;}
.h7{height:42.607500pt;}
.he{height:42.691250pt;}
.h4{height:43.355000pt;}
.h1b{height:44.000000pt;}
.h1e{height:44.032000pt;}
.h1d{height:44.160000pt;}
.h12{height:44.897813pt;}
.h13{height:45.961250pt;}
.h3{height:47.125000pt;}
.ha{height:47.310625pt;}
.h20{height:48.000000pt;}
.h11{height:49.766250pt;}
.h19{height:52.160000pt;}
.h29{height:52.832000pt;}
.h1c{height:52.960000pt;}
.h5{height:55.136250pt;}
.h8{height:60.057813pt;}
.h2d{height:70.592000pt;}
.h2{height:140.826667pt;}
.hf{height:264.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:51.040000pt;}
.wb{width:51.200000pt;}
.wf{width:52.000000pt;}
.w19{width:52.640000pt;}
.w1c{width:76.320000pt;}
.w26{width:76.800000pt;}
.w21{width:77.600000pt;}
.w13{width:79.360000pt;}
.w9{width:79.680000pt;}
.w17{width:81.600000pt;}
.wd{width:82.880000pt;}
.w25{width:100.192000pt;}
.w14{width:111.072000pt;}
.w11{width:111.232000pt;}
.wa{width:111.392000pt;}
.we{width:114.912000pt;}
.w18{width:117.632000pt;}
.w3{width:130.432000pt;}
.w7{width:145.146667pt;}
.w1d{width:148.026667pt;}
.w27{width:149.626667pt;}
.w22{width:150.266667pt;}
.w1b{width:155.546667pt;}
.w20{width:159.066667pt;}
.w1a{width:177.946667pt;}
.w1f{width:181.626667pt;}
.w24{width:231.706667pt;}
.w10{width:300.866667pt;}
.w16{width:311.266667pt;}
.wc{width:312.706667pt;}
.w8{width:315.906667pt;}
.w12{width:347.266667pt;}
.w6{width:548.293333pt;}
.w1e{width:559.933333pt;}
.w28{width:560.253333pt;}
.w2{width:567.013333pt;}
.w23{width:570.653333pt;}
.w5{width:693.440000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:0.960000pt;}
.x2{left:7.200000pt;}
.x17{left:8.480000pt;}
.x2e{left:10.080000pt;}
.x2d{left:18.080000pt;}
.x11{left:20.320000pt;}
.x18{left:21.920000pt;}
.x2b{left:25.600000pt;}
.x14{left:26.560000pt;}
.x13{left:28.320000pt;}
.x27{left:31.354667pt;}
.x12{left:32.320000pt;}
.x1a{left:34.080000pt;}
.x21{left:36.320000pt;}
.x2a{left:39.840000pt;}
.x1{left:48.160000pt;}
.x5{left:50.240000pt;}
.xb{left:56.639988pt;}
.x29{left:59.839988pt;}
.xa{left:63.039988pt;}
.x2f{left:64.639988pt;}
.x22{left:65.914667pt;}
.x34{left:66.879988pt;}
.x28{left:68.634667pt;}
.x3d{left:71.999988pt;}
.x10{left:73.114667pt;}
.x30{left:80.672000pt;}
.x7{left:96.031988pt;}
.x23{left:101.632000pt;}
.x35{left:111.552000pt;}
.x15{left:114.592000pt;}
.xc{left:116.832000pt;}
.x4{left:123.226667pt;}
.x1d{left:124.352000pt;}
.x45{left:178.746655pt;}
.x46{left:188.986655pt;}
.x41{left:196.666655pt;}
.x3e{left:219.226655pt;}
.x42{left:220.186655pt;}
.x3f{left:231.226655pt;}
.x47{left:236.866655pt;}
.x43{left:247.586655pt;}
.x31{left:259.266667pt;}
.x44{left:271.106655pt;}
.x36{left:293.986667pt;}
.x39{left:313.026667pt;}
.x40{left:372.866655pt;}
.x3a{left:413.853333pt;}
.x32{left:415.453333pt;}
.x8{left:420.893322pt;}
.x1e{left:425.853333pt;}
.x16{left:427.933333pt;}
.xd{left:433.373333pt;}
.x3c{left:444.893322pt;}
.x24{left:449.533333pt;}
.x37{left:453.693333pt;}
.x9{left:468.893322pt;}
.x3b{left:491.293333pt;}
.x33{left:492.573333pt;}
.x1f{left:506.333333pt;}
.x2c{left:508.573333pt;}
.x19{left:511.453333pt;}
.xe{left:513.693333pt;}
.x25{left:529.533333pt;}
.x38{left:531.933333pt;}
.x6{left:598.533333pt;}
.x3{left:615.173333pt;}
.x20{left:618.373333pt;}
.xf{left:625.733333pt;}
.x1b{left:627.173333pt;}
.x26{left:641.253333pt;}
}




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