
    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_3fc071c088feed06dbe8831c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b9c524181d13f0335eca22e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_a57c539c8b0057d5ca8faeb9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_bf1ba182bbd832199303ca5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_de2a005cfdd7603c41d5f172.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7076fdbe45b0c3d3a40127d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_1c28c5b430c9b06d2f92eb09.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982422;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_82e82ff77e491a3357b83437.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_6ebbc085db11ff7a404d9199.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_a5c66c1dcb7760ae1e002691.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0486818c581b66df785730b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_50a048ae878062f2ab8fe0b6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_5930b17a5d3e2048f0d5cc4e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.977539;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_ac9619cc356b1b81640f63d5.woff2')format("woff");}.fff{font-family:fff;line-height:0.800293;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_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.688477;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_1a232ae80f9ca763e917bd54.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_da7676d870b7dc708a4a6d87.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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:ff13;src:url('chunks/assets/font_f81751f8eaf9635e448f09a3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.536400px;}
.ls6{letter-spacing:-0.140400px;}
.ls8{letter-spacing:-0.085200px;}
.ls3{letter-spacing:-0.034560px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.129600px;}
.ls1{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.792000px;}
.lsd{letter-spacing:1.044000px;}
.lsc{letter-spacing:1.764000px;}
.ls7{letter-spacing:33.960000px;}
.ls9{letter-spacing:64.002720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.wsa{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.935680px;}
.ws1{word-spacing:-13.505760px;}
.wsc{word-spacing:-11.701440px;}
.wsd{word-spacing:-10.981440px;}
.ws8{word-spacing:-10.612800px;}
.ws9{word-spacing:-10.527600px;}
.ws7{word-spacing:-10.472400px;}
.ws5{word-spacing:-10.067040px;}
.ws3{word-spacing:-9.937440px;}
.ws4{word-spacing:-9.401040px;}
.ws6{word-spacing:0.000000px;}
._b{margin-left:-2.332800px;}
._0{margin-left:-1.134000px;}
._4{width:1.244880px;}
._a{width:3.161520px;}
._f{width:4.373280px;}
._e{width:5.569200px;}
._d{width:6.963120px;}
._13{width:8.424000px;}
._14{width:9.771120px;}
._c{width:10.771200px;}
._9{width:12.158640px;}
._11{width:13.192320px;}
._10{width:14.307840px;}
._1d{width:15.520320px;}
._8{width:16.980480px;}
._7{width:19.945440px;}
._15{width:21.310560px;}
._16{width:23.112000px;}
._17{width:24.264000px;}
._5{width:25.534080px;}
._6{width:26.921520px;}
._22{width:28.152000px;}
._24{width:29.527920px;}
._2{width:30.870000px;}
._1e{width:32.724000px;}
._1b{width:34.776000px;}
._1c{width:35.907120px;}
._20{width:37.512000px;}
._28{width:38.594160px;}
._21{width:39.746160px;}
._18{width:41.112000px;}
._19{width:42.120000px;}
._1f{width:43.272000px;}
._23{width:44.424000px;}
._27{width:46.203120px;}
._25{width:48.960000px;}
._26{width:50.472000px;}
._1a{width:56.736000px;}
._3{width:1091.557200px;}
._12{width:1340.970240px;}
._1{width:2098.266000px;}
.fc8{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(238,78,60);}
.fc7{color:rgb(128,128,128);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fsa{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs0{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y37{bottom:1.080000px;}
.y33{bottom:1.410000px;}
.y32{bottom:2.670000px;}
.y3e{bottom:3.240000px;}
.y3{bottom:4.500000px;}
.y3c{bottom:5.580000px;}
.y69{bottom:5.940000px;}
.ya7{bottom:6.120000px;}
.y35{bottom:9.330000px;}
.y15e{bottom:14.400000px;}
.ye9{bottom:14.760000px;}
.ya6{bottom:15.120000px;}
.yd1{bottom:15.300000px;}
.y133{bottom:15.840000px;}
.y68{bottom:16.380000px;}
.yf4{bottom:16.560000px;}
.y41{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y3a{bottom:28.440000px;}
.y3d{bottom:37.620000px;}
.y39{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y36{bottom:64.620000px;}
.y30{bottom:111.780000px;}
.ya5{bottom:112.860000px;}
.y67{bottom:113.760000px;}
.y104{bottom:118.620000px;}
.y2f{bottom:119.340000px;}
.y15c{bottom:121.680000px;}
.yf3{bottom:124.920000px;}
.yfa{bottom:125.280000px;}
.y11c{bottom:127.440000px;}
.ye8{bottom:131.400000px;}
.yc0{bottom:134.100000px;}
.y2e{bottom:134.460000px;}
.ya4{bottom:136.620000px;}
.y66{bottom:137.520000px;}
.y15b{bottom:145.440000px;}
.yd0{bottom:149.040000px;}
.y14b{bottom:152.640000px;}
.ye7{bottom:155.160000px;}
.y103{bottom:157.500000px;}
.ybf{bottom:157.860000px;}
.y132{bottom:160.380000px;}
.y65{bottom:161.460000px;}
.yf2{bottom:163.620000px;}
.y11b{bottom:166.680000px;}
.y86{bottom:172.800000px;}
.ya3{bottom:175.140000px;}
.y14a{bottom:176.400000px;}
.ybe{bottom:181.620000px;}
.y2d{bottom:184.320000px;}
.ydb{bottom:185.220000px;}
.yf9{bottom:187.380000px;}
.y11a{bottom:190.440000px;}
.ye6{bottom:194.040000px;}
.y102{bottom:196.200000px;}
.y85{bottom:196.560000px;}
.y131{bottom:199.260000px;}
.y64{bottom:199.800000px;}
.y149{bottom:200.160000px;}
.yf1{bottom:202.860000px;}
.ybd{bottom:205.380000px;}
.y2c{bottom:208.110000px;}
.yda{bottom:209.010000px;}
.y156{bottom:211.710000px;}
.ya2{bottom:214.230000px;}
.ye5{bottom:217.830000px;}
.y130{bottom:223.050000px;}
.y148{bottom:224.130000px;}
.yf0{bottom:226.650000px;}
.ybc{bottom:229.350000px;}
.y2b{bottom:229.890000px;}
.yd9{bottom:232.770000px;}
.y84{bottom:235.470000px;}
.ya1{bottom:237.990000px;}
.y63{bottom:239.070000px;}
.ye4{bottom:241.590000px;}
.y12f{bottom:246.810000px;}
.y147{bottom:247.890000px;}
.yef{bottom:250.410000px;}
.y2a{bottom:252.210000px;}
.y119{bottom:252.750000px;}
.yd8{bottom:256.710000px;}
.ycf{bottom:259.230000px;}
.ya0{bottom:261.930000px;}
.y62{bottom:262.830000px;}
.ybb{bottom:267.690000px;}
.y142{bottom:270.750000px;}
.y146{bottom:271.650000px;}
.y83{bottom:274.350000px;}
.y29{bottom:275.250000px;}
.yd7{bottom:280.470000px;}
.y101{bottom:282.990000px;}
.y9f{bottom:285.690000px;}
.y61{bottom:286.590000px;}
.y118{bottom:291.810000px;}
.y145{bottom:295.410000px;}
.yce{bottom:298.110000px;}
.y28{bottom:304.230000px;}
.yba{bottom:306.570000px;}
.y9e{bottom:309.450000px;}
.y60{bottom:310.530000px;}
.y82{bottom:312.690000px;}
.y155{bottom:313.050000px;}
.y117{bottom:315.750000px;}
.yd6{bottom:318.990000px;}
.y144{bottom:319.350000px;}
.y100{bottom:321.510000px;}
.ycd{bottom:321.870000px;}
.y27{bottom:327.990000px;}
.y9d{bottom:333.210000px;}
.y5f{bottom:334.290000px;}
.yf8{bottom:336.450000px;}
.y154{bottom:336.810000px;}
.y116{bottom:339.510000px;}
.yb9{bottom:345.630000px;}
.y12e{bottom:348.330000px;}
.y26{bottom:349.590000px;}
.y81{bottom:351.930000px;}
.y9c{bottom:357.150000px;}
.y5e{bottom:358.050000px;}
.ycc{bottom:360.750000px;}
.ye3{bottom:366.870000px;}
.yb8{bottom:369.390000px;}
.y25{bottom:370.290000px;}
.y141{bottom:371.730000px;}
.y15a{bottom:372.090000px;}
.y80{bottom:375.690000px;}
.y115{bottom:377.850000px;}
.y5d{bottom:381.810000px;}
.ycb{bottom:384.510000px;}
.y12d{bottom:386.670000px;}
.ye2{bottom:390.630000px;}
.y24{bottom:391.170000px;}
.yb7{bottom:393.330000px;}
.y9b{bottom:395.490000px;}
.y159{bottom:395.850000px;}
.y7f{bottom:399.450000px;}
.y5c{bottom:405.750000px;}
.yff{bottom:408.270000px;}
.y140{bottom:410.970000px;}
.y23{bottom:412.050000px;}
.ye1{bottom:414.390000px;}
.y114{bottom:417.090000px;}
.yca{bottom:423.210000px;}
.y12c{bottom:425.910000px;}
.y5b{bottom:429.510000px;}
.yb6{bottom:432.030000px;}
.y22{bottom:432.750000px;}
.y9a{bottom:434.730000px;}
.y7e{bottom:438.330000px;}
.y113{bottom:440.895000px;}
.yc9{bottom:447.195000px;}
.y12b{bottom:449.715000px;}
.yd5{bottom:453.315000px;}
.y21{bottom:453.675000px;}
.yb5{bottom:456.015000px;}
.y99{bottom:458.535000px;}
.yee{bottom:461.775000px;}
.y7d{bottom:462.135000px;}
.y112{bottom:464.655000px;}
.y5a{bottom:468.255000px;}
.yfe{bottom:470.595000px;}
.y13f{bottom:473.475000px;}
.y20{bottom:474.555000px;}
.yd4{bottom:477.075000px;}
.y98{bottom:482.295000px;}
.yf7{bottom:485.535000px;}
.y7c{bottom:485.895000px;}
.y12a{bottom:488.595000px;}
.y59{bottom:492.195000px;}
.yb4{bottom:494.715000px;}
.y1f{bottom:495.435000px;}
.y13e{bottom:497.415000px;}
.yd3{bottom:501.015000px;}
.y111{bottom:503.175000px;}
.y97{bottom:506.055000px;}
.yc8{bottom:509.655000px;}
.y129{bottom:512.355000px;}
.y58{bottom:515.955000px;}
.y1e{bottom:516.135000px;}
.y13d{bottom:521.175000px;}
.y7b{bottom:524.775000px;}
.y96{bottom:529.995000px;}
.yb3{bottom:533.595000px;}
.y1d{bottom:537.015000px;}
.y57{bottom:539.715000px;}
.y110{bottom:542.415000px;}
.yc7{bottom:548.175000px;}
.y7a{bottom:548.535000px;}
.y128{bottom:551.055000px;}
.y95{bottom:553.755000px;}
.yfd{bottom:557.355000px;}
.y1c{bottom:557.895000px;}
.y13c{bottom:559.875000px;}
.y56{bottom:563.475000px;}
.y10f{bottom:566.175000px;}
.y79{bottom:572.295000px;}
.y127{bottom:574.995000px;}
.y94{bottom:577.515000px;}
.y1b{bottom:578.595000px;}
.y13b{bottom:583.815000px;}
.y55{bottom:587.415000px;}
.y10e{bottom:589.935000px;}
.yfc{bottom:595.695000px;}
.yed{bottom:596.055000px;}
.y1a{bottom:599.475000px;}
.y54{bottom:611.175000px;}
.y126{bottom:613.695000px;}
.y93{bottom:616.035000px;}
.yf6{bottom:619.995000px;}
.y19{bottom:620.355000px;}
.y13a{bottom:622.515000px;}
.ye0{bottom:625.755000px;}
.y153{bottom:626.115000px;}
.y10d{bottom:628.455000px;}
.yec{bottom:634.575000px;}
.y78{bottom:634.935000px;}
.y125{bottom:637.635000px;}
.y18{bottom:641.235000px;}
.y139{bottom:646.275000px;}
.y53{bottom:649.515000px;}
.yb2{bottom:649.875000px;}
.y92{bottom:654.735000px;}
.yf5{bottom:658.335000px;}
.y77{bottom:658.695000px;}
.y158{bottom:661.395000px;}
.y17{bottom:661.935000px;}
.ydf{bottom:664.995000px;}
.y10c{bottom:667.515000px;}
.yb1{bottom:673.815000px;}
.y124{bottom:676.365000px;}
.yc6{bottom:682.665000px;}
.y16{bottom:682.845000px;}
.y138{bottom:685.185000px;}
.y52{bottom:688.785000px;}
.y10b{bottom:691.305000px;}
.y91{bottom:693.645000px;}
.yd2{bottom:697.245000px;}
.y76{bottom:697.605000px;}
.y123{bottom:700.125000px;}
.yc5{bottom:706.425000px;}
.y15{bottom:711.825000px;}
.y51{bottom:712.545000px;}
.y10a{bottom:715.245000px;}
.yb0{bottom:721.365000px;}
.y137{bottom:723.705000px;}
.y122{bottom:724.065000px;}
.y90{bottom:732.705000px;}
.y14{bottom:736.305000px;}
.y109{bottom:739.005000px;}
.yc4{bottom:744.765000px;}
.yaf{bottom:745.125000px;}
.y157{bottom:747.825000px;}
.y152{bottom:751.065000px;}
.y13{bottom:755.025000px;}
.y50{bottom:760.245000px;}
.y121{bottom:762.405000px;}
.y108{bottom:762.765000px;}
.yae{bottom:769.065000px;}
.y8f{bottom:771.585000px;}
.y12{bottom:781.845000px;}
.y4f{bottom:784.005000px;}
.y136{bottom:786.525000px;}
.y151{bottom:790.125000px;}
.yeb{bottom:792.825000px;}
.y107{bottom:801.645000px;}
.y10{bottom:802.905000px;}
.yad{bottom:807.405000px;}
.y4e{bottom:807.765000px;}
.y11{bottom:810.465000px;}
.y150{bottom:814.065000px;}
.yf{bottom:820.365000px;}
.yde{bottom:822.705000px;}
.y106{bottom:825.405000px;}
.yea{bottom:831.165000px;}
.y4d{bottom:831.525000px;}
.y14f{bottom:837.825000px;}
.yac{bottom:846.645000px;}
.ye{bottom:848.085000px;}
.y8e{bottom:849.165000px;}
.y4c{bottom:855.465000px;}
.y14e{bottom:861.585000px;}
.yd{bottom:868.785000px;}
.y75{bottom:870.045000px;}
.yab{bottom:870.405000px;}
.y120{bottom:872.925000px;}
.y4b{bottom:879.225000px;}
.y14d{bottom:885.345000px;}
.y105{bottom:887.685000px;}
.y8d{bottom:888.045000px;}
.yc{bottom:889.845000px;}
.yaa{bottom:894.165000px;}
.yc3{bottom:902.985000px;}
.y74{bottom:909.285000px;}
.y11f{bottom:911.490000px;}
.y135{bottom:911.850000px;}
.y4a{bottom:917.970000px;}
.yb{bottom:918.150000px;}
.y8c{bottom:926.790000px;}
.y73{bottom:933.090000px;}
.y15d{bottom:935.610000px;}
.yc2{bottom:941.550000px;}
.y49{bottom:941.910000px;}
.ya{bottom:947.670000px;}
.y8b{bottom:950.730000px;}
.y72{bottom:956.850000px;}
.y48{bottom:965.670000px;}
.y9{bottom:973.590000px;}
.y8a{bottom:974.490000px;}
.ydd{bottom:980.250000px;}
.y71{bottom:980.610000px;}
.y34{bottom:983.880000px;}
.y143{bottom:989.070000px;}
.y47{bottom:989.430000px;}
.y31{bottom:991.260000px;}
.y8{bottom:993.390000px;}
.y14c{bottom:995.730000px;}
.y11e{bottom:998.250000px;}
.ya9{bottom:1004.010000px;}
.y70{bottom:1004.370000px;}
.y89{bottom:1012.830000px;}
.y46{bottom:1013.190000px;}
.ydc{bottom:1019.490000px;}
.y7{bottom:1027.590000px;}
.y6f{bottom:1028.310000px;}
.y11d{bottom:1036.770000px;}
.y45{bottom:1037.130000px;}
.ya8{bottom:1043.250000px;}
.yfb{bottom:1051.710000px;}
.y88{bottom:1052.070000px;}
.y44{bottom:1060.890000px;}
.y6{bottom:1062.870000px;}
.y6e{bottom:1067.010000px;}
.y134{bottom:1075.470000px;}
.y87{bottom:1075.830000px;}
.y6d{bottom:1090.950000px;}
.y43{bottom:1099.230000px;}
.yc1{bottom:1099.590000px;}
.y5{bottom:1101.030000px;}
.y6c{bottom:1114.710000px;}
.y42{bottom:1138.110000px;}
.y6b{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y40{bottom:1183.500000px;}
.y3f{bottom:1197.540000px;}
.y6a{bottom:1199.700000px;}
.y38{bottom:1207.800000px;}
.y3b{bottom:1220.400000px;}
.h1a{height:13.320000px;}
.h18{height:14.580000px;}
.h24{height:18.000000px;}
.h27{height:18.180000px;}
.h1c{height:21.240000px;}
.h1f{height:24.380859px;}
.h1d{height:24.660000px;}
.h25{height:32.918906px;}
.h20{height:36.168398px;}
.h2{height:38.405391px;}
.h19{height:38.464805px;}
.h5{height:38.469727px;}
.h17{height:38.671172px;}
.hf{height:39.810234px;}
.h22{height:40.843828px;}
.h6{height:42.573164px;}
.h12{height:44.240625px;}
.h21{height:47.650430px;}
.h1e{height:49.680000px;}
.h23{height:50.273438px;}
.h1b{height:52.817344px;}
.h4{height:53.709961px;}
.ha{height:54.421875px;}
.h10{height:59.439023px;}
.h11{height:60.679688px;}
.hd{height:61.189805px;}
.h15{height:62.153438px;}
.h13{height:62.184375px;}
.h14{height:65.010937px;}
.h3{height:65.884219px;}
.hc{height:67.824844px;}
.hb{height:70.664062px;}
.h8{height:70.995234px;}
.h9{height:71.324297px;}
.h16{height:72.562500px;}
.h26{height:74.004654px;}
.h7{height:80.703984px;}
.he{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:77.400000px;}
.wa{width:77.580000px;}
.w8{width:82.080000px;}
.w7{width:96.300000px;}
.w3{width:104.760000px;}
.w4{width:132.480000px;}
.w5{width:189.540000px;}
.w6{width:626.400000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:10.836000px;}
.x17{left:13.830000px;}
.x10{left:17.790000px;}
.x18{left:41.220000px;}
.x14{left:93.420000px;}
.x1{left:108.036000px;}
.xe{left:112.896000px;}
.x11{left:117.540000px;}
.x19{left:120.636000px;}
.x3{left:121.716000px;}
.x1e{left:135.036000px;}
.xc{left:162.030000px;}
.x1b{left:183.630000px;}
.x4{left:234.390000px;}
.x1d{left:252.030000px;}
.xb{left:258.870000px;}
.x2{left:303.015000px;}
.x8{left:305.715000px;}
.xd{left:324.075000px;}
.x13{left:366.300000px;}
.x6{left:402.555000px;}
.x15{left:454.965000px;}
.x5{left:473.505000px;}
.x9{left:541.183125px;}
.xa{left:546.045000px;}
.x1a{left:560.445000px;}
.xf{left:691.200000px;}
.x21{left:717.840000px;}
.x24{left:729.720000px;}
.x1f{left:731.520000px;}
.x1c{left:733.500000px;}
.x22{left:735.480000px;}
.x23{left:737.460000px;}
.x20{left:750.960000px;}
.x7{left:785.130000px;}
.x16{left:810.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.476800pt;}
.ls6{letter-spacing:-0.124800pt;}
.ls8{letter-spacing:-0.075733pt;}
.ls3{letter-spacing:-0.030720pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.115200pt;}
.ls1{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.928000pt;}
.lsc{letter-spacing:1.568000pt;}
.ls7{letter-spacing:30.186667pt;}
.ls9{letter-spacing:56.891307pt;}
.wsb{word-spacing:-53.120000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.276160pt;}
.ws1{word-spacing:-12.005120pt;}
.wsc{word-spacing:-10.401280pt;}
.wsd{word-spacing:-9.761280pt;}
.ws8{word-spacing:-9.433600pt;}
.ws9{word-spacing:-9.357867pt;}
.ws7{word-spacing:-9.308800pt;}
.ws5{word-spacing:-8.948480pt;}
.ws3{word-spacing:-8.833280pt;}
.ws4{word-spacing:-8.356480pt;}
.ws6{word-spacing:0.000000pt;}
._b{margin-left:-2.073600pt;}
._0{margin-left:-1.008000pt;}
._4{width:1.106560pt;}
._a{width:2.810240pt;}
._f{width:3.887360pt;}
._e{width:4.950400pt;}
._d{width:6.189440pt;}
._13{width:7.488000pt;}
._14{width:8.685440pt;}
._c{width:9.574400pt;}
._9{width:10.807680pt;}
._11{width:11.726507pt;}
._10{width:12.718080pt;}
._1d{width:13.795840pt;}
._8{width:15.093760pt;}
._7{width:17.729280pt;}
._15{width:18.942720pt;}
._16{width:20.544000pt;}
._17{width:21.568000pt;}
._5{width:22.696960pt;}
._6{width:23.930240pt;}
._22{width:25.024000pt;}
._24{width:26.247040pt;}
._2{width:27.440000pt;}
._1e{width:29.088000pt;}
._1b{width:30.912000pt;}
._1c{width:31.917440pt;}
._20{width:33.344000pt;}
._28{width:34.305920pt;}
._21{width:35.329920pt;}
._18{width:36.544000pt;}
._19{width:37.440000pt;}
._1f{width:38.464000pt;}
._23{width:39.488000pt;}
._27{width:41.069440pt;}
._25{width:43.520000pt;}
._26{width:44.864000pt;}
._1a{width:50.432000pt;}
._3{width:970.273067pt;}
._12{width:1191.973547pt;}
._1{width:1865.125333pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs0{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:0.960000pt;}
.y33{bottom:1.253333pt;}
.y32{bottom:2.373333pt;}
.y3e{bottom:2.880000pt;}
.y3{bottom:4.000000pt;}
.y3c{bottom:4.960000pt;}
.y69{bottom:5.280000pt;}
.ya7{bottom:5.440000pt;}
.y35{bottom:8.293333pt;}
.y15e{bottom:12.800000pt;}
.ye9{bottom:13.120000pt;}
.ya6{bottom:13.440000pt;}
.yd1{bottom:13.600000pt;}
.y133{bottom:14.080000pt;}
.y68{bottom:14.560000pt;}
.yf4{bottom:14.720000pt;}
.y41{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y3a{bottom:25.280000pt;}
.y3d{bottom:33.440000pt;}
.y39{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y36{bottom:57.440000pt;}
.y30{bottom:99.360000pt;}
.ya5{bottom:100.320000pt;}
.y67{bottom:101.120000pt;}
.y104{bottom:105.440000pt;}
.y2f{bottom:106.080000pt;}
.y15c{bottom:108.160000pt;}
.yf3{bottom:111.040000pt;}
.yfa{bottom:111.360000pt;}
.y11c{bottom:113.280000pt;}
.ye8{bottom:116.800000pt;}
.yc0{bottom:119.200000pt;}
.y2e{bottom:119.520000pt;}
.ya4{bottom:121.440000pt;}
.y66{bottom:122.240000pt;}
.y15b{bottom:129.280000pt;}
.yd0{bottom:132.480000pt;}
.y14b{bottom:135.680000pt;}
.ye7{bottom:137.920000pt;}
.y103{bottom:140.000000pt;}
.ybf{bottom:140.320000pt;}
.y132{bottom:142.560000pt;}
.y65{bottom:143.520000pt;}
.yf2{bottom:145.440000pt;}
.y11b{bottom:148.160000pt;}
.y86{bottom:153.600000pt;}
.ya3{bottom:155.680000pt;}
.y14a{bottom:156.800000pt;}
.ybe{bottom:161.440000pt;}
.y2d{bottom:163.840000pt;}
.ydb{bottom:164.640000pt;}
.yf9{bottom:166.560000pt;}
.y11a{bottom:169.280000pt;}
.ye6{bottom:172.480000pt;}
.y102{bottom:174.400000pt;}
.y85{bottom:174.720000pt;}
.y131{bottom:177.120000pt;}
.y64{bottom:177.600000pt;}
.y149{bottom:177.920000pt;}
.yf1{bottom:180.320000pt;}
.ybd{bottom:182.560000pt;}
.y2c{bottom:184.986667pt;}
.yda{bottom:185.786667pt;}
.y156{bottom:188.186667pt;}
.ya2{bottom:190.426667pt;}
.ye5{bottom:193.626667pt;}
.y130{bottom:198.266667pt;}
.y148{bottom:199.226667pt;}
.yf0{bottom:201.466667pt;}
.ybc{bottom:203.866667pt;}
.y2b{bottom:204.346667pt;}
.yd9{bottom:206.906667pt;}
.y84{bottom:209.306667pt;}
.ya1{bottom:211.546667pt;}
.y63{bottom:212.506667pt;}
.ye4{bottom:214.746667pt;}
.y12f{bottom:219.386667pt;}
.y147{bottom:220.346667pt;}
.yef{bottom:222.586667pt;}
.y2a{bottom:224.186667pt;}
.y119{bottom:224.666667pt;}
.yd8{bottom:228.186667pt;}
.ycf{bottom:230.426667pt;}
.ya0{bottom:232.826667pt;}
.y62{bottom:233.626667pt;}
.ybb{bottom:237.946667pt;}
.y142{bottom:240.666667pt;}
.y146{bottom:241.466667pt;}
.y83{bottom:243.866667pt;}
.y29{bottom:244.666667pt;}
.yd7{bottom:249.306667pt;}
.y101{bottom:251.546667pt;}
.y9f{bottom:253.946667pt;}
.y61{bottom:254.746667pt;}
.y118{bottom:259.386667pt;}
.y145{bottom:262.586667pt;}
.yce{bottom:264.986667pt;}
.y28{bottom:270.426667pt;}
.yba{bottom:272.506667pt;}
.y9e{bottom:275.066667pt;}
.y60{bottom:276.026667pt;}
.y82{bottom:277.946667pt;}
.y155{bottom:278.266667pt;}
.y117{bottom:280.666667pt;}
.yd6{bottom:283.546667pt;}
.y144{bottom:283.866667pt;}
.y100{bottom:285.786667pt;}
.ycd{bottom:286.106667pt;}
.y27{bottom:291.546667pt;}
.y9d{bottom:296.186667pt;}
.y5f{bottom:297.146667pt;}
.yf8{bottom:299.066667pt;}
.y154{bottom:299.386667pt;}
.y116{bottom:301.786667pt;}
.yb9{bottom:307.226667pt;}
.y12e{bottom:309.626667pt;}
.y26{bottom:310.746667pt;}
.y81{bottom:312.826667pt;}
.y9c{bottom:317.466667pt;}
.y5e{bottom:318.266667pt;}
.ycc{bottom:320.666667pt;}
.ye3{bottom:326.106667pt;}
.yb8{bottom:328.346667pt;}
.y25{bottom:329.146667pt;}
.y141{bottom:330.426667pt;}
.y15a{bottom:330.746667pt;}
.y80{bottom:333.946667pt;}
.y115{bottom:335.866667pt;}
.y5d{bottom:339.386667pt;}
.ycb{bottom:341.786667pt;}
.y12d{bottom:343.706667pt;}
.ye2{bottom:347.226667pt;}
.y24{bottom:347.706667pt;}
.yb7{bottom:349.626667pt;}
.y9b{bottom:351.546667pt;}
.y159{bottom:351.866667pt;}
.y7f{bottom:355.066667pt;}
.y5c{bottom:360.666667pt;}
.yff{bottom:362.906667pt;}
.y140{bottom:365.306667pt;}
.y23{bottom:366.266667pt;}
.ye1{bottom:368.346667pt;}
.y114{bottom:370.746667pt;}
.yca{bottom:376.186667pt;}
.y12c{bottom:378.586667pt;}
.y5b{bottom:381.786667pt;}
.yb6{bottom:384.026667pt;}
.y22{bottom:384.666667pt;}
.y9a{bottom:386.426667pt;}
.y7e{bottom:389.626667pt;}
.y113{bottom:391.906667pt;}
.yc9{bottom:397.506667pt;}
.y12b{bottom:399.746667pt;}
.yd5{bottom:402.946667pt;}
.y21{bottom:403.266667pt;}
.yb5{bottom:405.346667pt;}
.y99{bottom:407.586667pt;}
.yee{bottom:410.466667pt;}
.y7d{bottom:410.786667pt;}
.y112{bottom:413.026667pt;}
.y5a{bottom:416.226667pt;}
.yfe{bottom:418.306667pt;}
.y13f{bottom:420.866667pt;}
.y20{bottom:421.826667pt;}
.yd4{bottom:424.066667pt;}
.y98{bottom:428.706667pt;}
.yf7{bottom:431.586667pt;}
.y7c{bottom:431.906667pt;}
.y12a{bottom:434.306667pt;}
.y59{bottom:437.506667pt;}
.yb4{bottom:439.746667pt;}
.y1f{bottom:440.386667pt;}
.y13e{bottom:442.146667pt;}
.yd3{bottom:445.346667pt;}
.y111{bottom:447.266667pt;}
.y97{bottom:449.826667pt;}
.yc8{bottom:453.026667pt;}
.y129{bottom:455.426667pt;}
.y58{bottom:458.626667pt;}
.y1e{bottom:458.786667pt;}
.y13d{bottom:463.266667pt;}
.y7b{bottom:466.466667pt;}
.y96{bottom:471.106667pt;}
.yb3{bottom:474.306667pt;}
.y1d{bottom:477.346667pt;}
.y57{bottom:479.746667pt;}
.y110{bottom:482.146667pt;}
.yc7{bottom:487.266667pt;}
.y7a{bottom:487.586667pt;}
.y128{bottom:489.826667pt;}
.y95{bottom:492.226667pt;}
.yfd{bottom:495.426667pt;}
.y1c{bottom:495.906667pt;}
.y13c{bottom:497.666667pt;}
.y56{bottom:500.866667pt;}
.y10f{bottom:503.266667pt;}
.y79{bottom:508.706667pt;}
.y127{bottom:511.106667pt;}
.y94{bottom:513.346667pt;}
.y1b{bottom:514.306667pt;}
.y13b{bottom:518.946667pt;}
.y55{bottom:522.146667pt;}
.y10e{bottom:524.386667pt;}
.yfc{bottom:529.506667pt;}
.yed{bottom:529.826667pt;}
.y1a{bottom:532.866667pt;}
.y54{bottom:543.266667pt;}
.y126{bottom:545.506667pt;}
.y93{bottom:547.586667pt;}
.yf6{bottom:551.106667pt;}
.y19{bottom:551.426667pt;}
.y13a{bottom:553.346667pt;}
.ye0{bottom:556.226667pt;}
.y153{bottom:556.546667pt;}
.y10d{bottom:558.626667pt;}
.yec{bottom:564.066667pt;}
.y78{bottom:564.386667pt;}
.y125{bottom:566.786667pt;}
.y18{bottom:569.986667pt;}
.y139{bottom:574.466667pt;}
.y53{bottom:577.346667pt;}
.yb2{bottom:577.666667pt;}
.y92{bottom:581.986667pt;}
.yf5{bottom:585.186667pt;}
.y77{bottom:585.506667pt;}
.y158{bottom:587.906667pt;}
.y17{bottom:588.386667pt;}
.ydf{bottom:591.106667pt;}
.y10c{bottom:593.346667pt;}
.yb1{bottom:598.946667pt;}
.y124{bottom:601.213333pt;}
.yc6{bottom:606.813333pt;}
.y16{bottom:606.973333pt;}
.y138{bottom:609.053333pt;}
.y52{bottom:612.253333pt;}
.y10b{bottom:614.493333pt;}
.y91{bottom:616.573333pt;}
.yd2{bottom:619.773333pt;}
.y76{bottom:620.093333pt;}
.y123{bottom:622.333333pt;}
.yc5{bottom:627.933333pt;}
.y15{bottom:632.733333pt;}
.y51{bottom:633.373333pt;}
.y10a{bottom:635.773333pt;}
.yb0{bottom:641.213333pt;}
.y137{bottom:643.293333pt;}
.y122{bottom:643.613333pt;}
.y90{bottom:651.293333pt;}
.y14{bottom:654.493333pt;}
.y109{bottom:656.893333pt;}
.yc4{bottom:662.013333pt;}
.yaf{bottom:662.333333pt;}
.y157{bottom:664.733333pt;}
.y152{bottom:667.613333pt;}
.y13{bottom:671.133333pt;}
.y50{bottom:675.773333pt;}
.y121{bottom:677.693333pt;}
.y108{bottom:678.013333pt;}
.yae{bottom:683.613333pt;}
.y8f{bottom:685.853333pt;}
.y12{bottom:694.973333pt;}
.y4f{bottom:696.893333pt;}
.y136{bottom:699.133333pt;}
.y151{bottom:702.333333pt;}
.yeb{bottom:704.733333pt;}
.y107{bottom:712.573333pt;}
.y10{bottom:713.693333pt;}
.yad{bottom:717.693333pt;}
.y4e{bottom:718.013333pt;}
.y11{bottom:720.413333pt;}
.y150{bottom:723.613333pt;}
.yf{bottom:729.213333pt;}
.yde{bottom:731.293333pt;}
.y106{bottom:733.693333pt;}
.yea{bottom:738.813333pt;}
.y4d{bottom:739.133333pt;}
.y14f{bottom:744.733333pt;}
.yac{bottom:752.573333pt;}
.ye{bottom:753.853333pt;}
.y8e{bottom:754.813333pt;}
.y4c{bottom:760.413333pt;}
.y14e{bottom:765.853333pt;}
.yd{bottom:772.253333pt;}
.y75{bottom:773.373333pt;}
.yab{bottom:773.693333pt;}
.y120{bottom:775.933333pt;}
.y4b{bottom:781.533333pt;}
.y14d{bottom:786.973333pt;}
.y105{bottom:789.053333pt;}
.y8d{bottom:789.373333pt;}
.yc{bottom:790.973333pt;}
.yaa{bottom:794.813333pt;}
.yc3{bottom:802.653333pt;}
.y74{bottom:808.253333pt;}
.y11f{bottom:810.213333pt;}
.y135{bottom:810.533333pt;}
.y4a{bottom:815.973333pt;}
.yb{bottom:816.133333pt;}
.y8c{bottom:823.813333pt;}
.y73{bottom:829.413333pt;}
.y15d{bottom:831.653333pt;}
.yc2{bottom:836.933333pt;}
.y49{bottom:837.253333pt;}
.ya{bottom:842.373333pt;}
.y8b{bottom:845.093333pt;}
.y72{bottom:850.533333pt;}
.y48{bottom:858.373333pt;}
.y9{bottom:865.413333pt;}
.y8a{bottom:866.213333pt;}
.ydd{bottom:871.333333pt;}
.y71{bottom:871.653333pt;}
.y34{bottom:874.560000pt;}
.y143{bottom:879.173333pt;}
.y47{bottom:879.493333pt;}
.y31{bottom:881.120000pt;}
.y8{bottom:883.013333pt;}
.y14c{bottom:885.093333pt;}
.y11e{bottom:887.333333pt;}
.ya9{bottom:892.453333pt;}
.y70{bottom:892.773333pt;}
.y89{bottom:900.293333pt;}
.y46{bottom:900.613333pt;}
.ydc{bottom:906.213333pt;}
.y7{bottom:913.413333pt;}
.y6f{bottom:914.053333pt;}
.y11d{bottom:921.573333pt;}
.y45{bottom:921.893333pt;}
.ya8{bottom:927.333333pt;}
.yfb{bottom:934.853333pt;}
.y88{bottom:935.173333pt;}
.y44{bottom:943.013333pt;}
.y6{bottom:944.773333pt;}
.y6e{bottom:948.453333pt;}
.y134{bottom:955.973333pt;}
.y87{bottom:956.293333pt;}
.y6d{bottom:969.733333pt;}
.y43{bottom:977.093333pt;}
.yc1{bottom:977.413333pt;}
.y5{bottom:978.693333pt;}
.y6c{bottom:990.853333pt;}
.y42{bottom:1011.653333pt;}
.y6b{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y40{bottom:1052.000000pt;}
.y3f{bottom:1064.480000pt;}
.y6a{bottom:1066.400000pt;}
.y38{bottom:1073.600000pt;}
.y3b{bottom:1084.800000pt;}
.h1a{height:11.840000pt;}
.h18{height:12.960000pt;}
.h24{height:16.000000pt;}
.h27{height:16.160000pt;}
.h1c{height:18.880000pt;}
.h1f{height:21.671875pt;}
.h1d{height:21.920000pt;}
.h25{height:29.261250pt;}
.h20{height:32.149687pt;}
.h2{height:34.138125pt;}
.h19{height:34.190937pt;}
.h5{height:34.195312pt;}
.h17{height:34.374375pt;}
.hf{height:35.386875pt;}
.h22{height:36.305625pt;}
.h6{height:37.842813pt;}
.h12{height:39.325000pt;}
.h21{height:42.355937pt;}
.h1e{height:44.160000pt;}
.h23{height:44.687500pt;}
.h1b{height:46.948750pt;}
.h4{height:47.742188pt;}
.ha{height:48.375000pt;}
.h10{height:52.834688pt;}
.h11{height:53.937500pt;}
.hd{height:54.390938pt;}
.h15{height:55.247500pt;}
.h13{height:55.275000pt;}
.h14{height:57.787500pt;}
.h3{height:58.563750pt;}
.hc{height:60.288750pt;}
.hb{height:62.812500pt;}
.h8{height:63.106875pt;}
.h9{height:63.399375pt;}
.h16{height:64.500000pt;}
.h26{height:65.781915pt;}
.h7{height:71.736875pt;}
.he{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:68.800000pt;}
.wa{width:68.960000pt;}
.w8{width:72.960000pt;}
.w7{width:85.600000pt;}
.w3{width:93.120000pt;}
.w4{width:117.760000pt;}
.w5{width:168.480000pt;}
.w6{width:556.800000pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:9.632000pt;}
.x17{left:12.293333pt;}
.x10{left:15.813333pt;}
.x18{left:36.640000pt;}
.x14{left:83.040000pt;}
.x1{left:96.032000pt;}
.xe{left:100.352000pt;}
.x11{left:104.480000pt;}
.x19{left:107.232000pt;}
.x3{left:108.192000pt;}
.x1e{left:120.032000pt;}
.xc{left:144.026667pt;}
.x1b{left:163.226667pt;}
.x4{left:208.346667pt;}
.x1d{left:224.026667pt;}
.xb{left:230.106667pt;}
.x2{left:269.346667pt;}
.x8{left:271.746667pt;}
.xd{left:288.066667pt;}
.x13{left:325.600000pt;}
.x6{left:357.826667pt;}
.x15{left:404.413333pt;}
.x5{left:420.893333pt;}
.x9{left:481.051667pt;}
.xa{left:485.373333pt;}
.x1a{left:498.173333pt;}
.xf{left:614.400000pt;}
.x21{left:638.080000pt;}
.x24{left:648.640000pt;}
.x1f{left:650.240000pt;}
.x1c{left:652.000000pt;}
.x22{left:653.760000pt;}
.x23{left:655.520000pt;}
.x20{left:667.520000pt;}
.x7{left:697.893333pt;}
.x16{left:720.640000pt;}
}




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