
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_360322162f41af402c38c9e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_76057542beaf0f695b65586b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c3cc5968f54061bf115934d6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_afd970b728659764980244f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a9643a9de34ffb97e1a3629e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_68f386814f2b0d1bc828d5c1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_15031f431afb59d2b2c862fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_99ce2326605f094e4457dd01.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_bedc3dbc3c89698197bc53b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854492;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);}
.v1{vertical-align:-20.880000px;}
.v9{vertical-align:-11.520000px;}
.vb{vertical-align:-10.080000px;}
.v3{vertical-align:-2.880000px;}
.v8{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.v7{vertical-align:42.840000px;}
.v6{vertical-align:52.920000px;}
.v5{vertical-align:54.360000px;}
.va{vertical-align:61.200000px;}
.ls2d{letter-spacing:-0.513600px;}
.lsf{letter-spacing:-0.444600px;}
.ls2b{letter-spacing:-0.427200px;}
.ls27{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls22{letter-spacing:-0.162000px;}
.ls24{letter-spacing:-0.156000px;}
.ls28{letter-spacing:-0.153600px;}
.ls31{letter-spacing:-0.151800px;}
.ls2f{letter-spacing:-0.142200px;}
.ls32{letter-spacing:-0.141600px;}
.ls7{letter-spacing:-0.135000px;}
.ls2c{letter-spacing:-0.125400px;}
.ls9{letter-spacing:-0.121200px;}
.ls33{letter-spacing:-0.101400px;}
.ls30{letter-spacing:-0.096600px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls23{letter-spacing:-0.063600px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000360px;}
.ls25{letter-spacing:0.019440px;}
.ls35{letter-spacing:0.020160px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls2e{letter-spacing:0.054720px;}
.ls13{letter-spacing:0.056880px;}
.ls11{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.074160px;}
.ls19{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.097800px;}
.ls14{letter-spacing:0.097920px;}
.ls29{letter-spacing:0.116400px;}
.ls1b{letter-spacing:0.127200px;}
.ls34{letter-spacing:0.133200px;}
.ls5{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.150000px;}
.ls1f{letter-spacing:0.160200px;}
.lsd{letter-spacing:0.173400px;}
.ls2a{letter-spacing:0.177000px;}
.ls10{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls21{letter-spacing:0.533400px;}
.ls20{letter-spacing:1.836000px;}
.ls1d{letter-spacing:16.290360px;}
.ls16{letter-spacing:16.650360px;}
.ls15{letter-spacing:20.205720px;}
.ls1c{letter-spacing:20.495880px;}
.ls37{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls1e{letter-spacing:65.896920px;}
.ls17{letter-spacing:71.296920px;}
.ls36{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws16{word-spacing:-13.403400px;}
.ws6{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.376400px;}
.ws22{word-spacing:-13.359600px;}
.ws18{word-spacing:-13.353600px;}
.ws13{word-spacing:-13.342800px;}
.ws1b{word-spacing:-13.291200px;}
.ws1c{word-spacing:-13.281120px;}
.ws9{word-spacing:-13.275360px;}
.ws23{word-spacing:-13.246560px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.162800px;}
.ws21{word-spacing:-13.125000px;}
.ws19{word-spacing:-13.101000px;}
.ws20{word-spacing:-13.084800px;}
.ws1f{word-spacing:-13.074600px;}
.ws12{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.070400px;}
.wsa{word-spacing:-13.064400px;}
.ws7{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.982800px;}
.ws17{word-spacing:-12.799200px;}
.ws1a{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-9.266400px;}
.ws1d{word-spacing:-9.124200px;}
.ws15{word-spacing:-8.670000px;}
.ws14{word-spacing:-8.651400px;}
.wsc{word-spacing:-8.553600px;}
.ws1e{word-spacing:-8.457000px;}
.wsf{word-spacing:-7.920000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._15{margin-left:-6.711840px;}
._1a{margin-left:-4.295378px;}
._9{margin-left:-3.158400px;}
._10{margin-left:-2.136600px;}
._0{margin-left:-1.110000px;}
._1{width:1.090188px;}
._2{width:2.276411px;}
._3{width:3.366600px;}
._4{width:4.494266px;}
._6{width:5.776886px;}
._5{width:7.154400px;}
._7{width:8.356800px;}
._8{width:9.799199px;}
._a{width:10.942802px;}
._11{width:11.963880px;}
._25{width:14.460652px;}
._12{width:15.539014px;}
._16{width:16.624054px;}
._1d{width:17.883480px;}
._f{width:18.937800px;}
._b{width:20.020200px;}
._c{width:21.040196px;}
._d{width:22.605000px;}
._e{width:23.928000px;}
._23{width:29.218320px;}
._24{width:30.526680px;}
._1b{width:37.695240px;}
._1c{width:38.837520px;}
._1e{width:54.889560px;}
._22{width:63.366480px;}
._18{width:81.101880px;}
._20{width:111.763080px;}
._13{width:119.548102px;}
._17{width:125.926919px;}
._19{width:127.694880px;}
._21{width:131.121720px;}
._1f{width:133.827120px;}
._14{width:202.773600px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y29{bottom:4.500000px;}
.y28{bottom:5.580000px;}
.y2b{bottom:7.830000px;}
.yb2{bottom:7.920000px;}
.yc8{bottom:7.950000px;}
.y106{bottom:13.230000px;}
.y108{bottom:13.320000px;}
.yb4{bottom:16.650000px;}
.yfb{bottom:21.510000px;}
.y104{bottom:25.380000px;}
.yb0{bottom:25.470000px;}
.yd8{bottom:25.500000px;}
.ye6{bottom:26.640000px;}
.yf8{bottom:30.330000px;}
.y110{bottom:34.200000px;}
.yb3{bottom:34.290000px;}
.yc2{bottom:35.190000px;}
.y10c{bottom:39.060000px;}
.yf6{bottom:39.150000px;}
.yfc{bottom:43.020000px;}
.yb1{bottom:43.110000px;}
.y10d{bottom:47.880000px;}
.yf7{bottom:47.970000px;}
.yae{bottom:52.830000px;}
.y10f{bottom:56.700000px;}
.yfa{bottom:56.730000px;}
.y124{bottom:60.570000px;}
.y128{bottom:60.660000px;}
.yad{bottom:70.380000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y127{bottom:78.210000px;}
.y126{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.y159{bottom:119.280000px;}
.yf4{bottom:119.460000px;}
.y11a{bottom:121.800000px;}
.y81{bottom:124.590000px;}
.y158{bottom:136.830000px;}
.yf3{bottom:137.100000px;}
.yf2{bottom:154.650000px;}
.y119{bottom:154.830000px;}
.yd4{bottom:158.070000px;}
.y80{bottom:160.230000px;}
.y4b{bottom:161.760000px;}
.y157{bottom:163.380000px;}
.y13d{bottom:163.830000px;}
.yf1{bottom:172.290000px;}
.yab{bottom:172.650000px;}
.y7f{bottom:177.780000px;}
.y4a{bottom:179.310000px;}
.y156{bottom:181.020000px;}
.y13c{bottom:181.380000px;}
.y118{bottom:182.100000px;}
.yd3{bottom:193.620000px;}
.y7e{bottom:195.330000px;}
.y49{bottom:196.950000px;}
.yf0{bottom:205.230000px;}
.y155{bottom:207.570000px;}
.yaa{bottom:208.200000px;}
.y117{bottom:209.460000px;}
.yd2{bottom:211.260000px;}
.y7d{bottom:212.970000px;}
.y48{bottom:214.500000px;}
.y13b{bottom:217.020000px;}
.y24{bottom:219.810000px;}
.y154{bottom:225.210000px;}
.yd1{bottom:228.810000px;}
.y47{bottom:232.050000px;}
.yef{bottom:232.590000px;}
.y13a{bottom:234.570000px;}
.y23{bottom:237.450000px;}
.ya9{bottom:243.840000px;}
.yd0{bottom:246.450000px;}
.y7c{bottom:246.990000px;}
.y46{bottom:249.690000px;}
.y153{bottom:251.760000px;}
.y7a{bottom:251.940000px;}
.y139{bottom:252.210000px;}
.y22{bottom:255.000000px;}
.y7b{bottom:257.430000px;}
.yee{bottom:259.860000px;}
.y77{bottom:261.030000px;}
.y45{bottom:267.240000px;}
.y79{bottom:268.680000px;}
.y152{bottom:269.310000px;}
.y116{bottom:272.010000px;}
.y21{bottom:272.550000px;}
.ycf{bottom:273.000000px;}
.y78{bottom:278.760000px;}
.ya8{bottom:279.390000px;}
.y138{bottom:287.760000px;}
.y20{bottom:290.190000px;}
.y44{bottom:293.880000px;}
.y151{bottom:295.950000px;}
.ya7{bottom:296.940000px;}
.y115{bottom:299.280000px;}
.yce{bottom:302.970000px;}
.yed{bottom:304.770000px;}
.y137{bottom:305.310000px;}
.y1f{bottom:307.740000px;}
.y76{bottom:308.820000px;}
.y150{bottom:313.500000px;}
.ya6{bottom:314.580000px;}
.y136{bottom:322.950000px;}
.y1e{bottom:325.380000px;}
.y75{bottom:326.370000px;}
.y43{bottom:329.430000px;}
.ycd{bottom:330.330000px;}
.ya5{bottom:332.130000px;}
.y14f{bottom:340.410000px;}
.y135{bottom:340.500000px;}
.y74{bottom:343.920000px;}
.y42{bottom:346.980000px;}
.ya4{bottom:349.770000px;}
.ycc{bottom:357.690000px;}
.y134{bottom:358.050000px;}
.yec{bottom:359.490000px;}
.y1d{bottom:360.930000px;}
.y73{bottom:361.560000px;}
.y114{bottom:361.830000px;}
.y41{bottom:364.620000px;}
.ya3{bottom:367.320000px;}
.y133{bottom:375.690000px;}
.y1c{bottom:378.480000px;}
.ycb{bottom:384.960000px;}
.yeb{bottom:386.850000px;}
.y72{bottom:388.110000px;}
.y14e{bottom:388.740000px;}
.y113{bottom:389.190000px;}
.y40{bottom:391.530000px;}
.ya2{bottom:393.870000px;}
.y1b{bottom:396.120000px;}
.y14d{bottom:406.290000px;}
.y132{bottom:411.240000px;}
.yca{bottom:412.320000px;}
.y1a{bottom:413.670000px;}
.yea{bottom:414.120000px;}
.y112{bottom:416.460000px;}
.y71{bottom:420.690000px;}
.y14c{bottom:423.840000px;}
.y131{bottom:428.880000px;}
.ya1{bottom:429.510000px;}
.y19{bottom:431.310000px;}
.y70{bottom:438.330000px;}
.yc9{bottom:439.680000px;}
.y3f{bottom:439.770000px;}
.y14b{bottom:441.480000px;}
.y111{bottom:443.820000px;}
.y130{bottom:446.430000px;}
.ya0{bottom:447.060000px;}
.y18{bottom:448.860000px;}
.y6f{bottom:455.880000px;}
.y3e{bottom:457.410000px;}
.y14a{bottom:459.030000px;}
.y12f{bottom:463.980000px;}
.y9f{bottom:464.700000px;}
.y17{bottom:466.410000px;}
.yc7{bottom:466.950000px;}
.y10b{bottom:471.210000px;}
.y6e{bottom:473.550000px;}
.y3d{bottom:474.990000px;}
.ye9{bottom:480.480000px;}
.y9e{bottom:482.280000px;}
.y16{bottom:484.080000px;}
.y6d{bottom:491.100000px;}
.y3c{bottom:492.540000px;}
.yc6{bottom:494.340000px;}
.y149{bottom:494.700000px;}
.y12e{bottom:499.650000px;}
.y9d{bottom:499.830000px;}
.y15{bottom:501.630000px;}
.y6c{bottom:508.650000px;}
.y3b{bottom:510.180000px;}
.y148{bottom:512.250000px;}
.ye8{bottom:516.030000px;}
.y12d{bottom:517.200000px;}
.yc5{bottom:521.700000px;}
.y6b{bottom:526.290000px;}
.y3a{bottom:527.730000px;}
.y14{bottom:528.540000px;}
.y147{bottom:529.800000px;}
.ye7{bottom:531.060000px;}
.y10e{bottom:533.670000px;}
.y12c{bottom:534.840000px;}
.y9c{bottom:535.470000px;}
.y39{bottom:545.280000px;}
.y146{bottom:547.440000px;}
.yc4{bottom:549.060000px;}
.y12b{bottom:552.390000px;}
.y9b{bottom:553.020000px;}
.ye5{bottom:558.330000px;}
.y6a{bottom:559.230000px;}
.y38{bottom:562.920000px;}
.y68{bottom:563.190000px;}
.y69{bottom:567.150000px;}
.y65{bottom:567.690000px;}
.y12a{bottom:569.940000px;}
.y9a{bottom:570.660000px;}
.y64{bottom:570.750000px;}
.y145{bottom:574.350000px;}
.yc1{bottom:576.330000px;}
.y13{bottom:577.140000px;}
.y67{bottom:577.680000px;}
.y10a{bottom:582.360000px;}
.y66{bottom:585.600000px;}
.ye4{bottom:585.690000px;}
.y129{bottom:587.580000px;}
.y99{bottom:597.210000px;}
.y37{bottom:598.470000px;}
.yc3{bottom:603.690000px;}
.y12{bottom:614.130000px;}
.y63{bottom:615.480000px;}
.y36{bottom:616.110000px;}
.y109{bottom:618.000000px;}
.y125{bottom:620.520000px;}
.y144{bottom:622.590000px;}
.ye3{bottom:630.600000px;}
.y11{bottom:631.770000px;}
.y98{bottom:632.760000px;}
.y62{bottom:633.120000px;}
.y35{bottom:633.660000px;}
.y143{bottom:640.140000px;}
.y107{bottom:641.940000px;}
.y10{bottom:649.320000px;}
.y97{bottom:650.400000px;}
.y61{bottom:650.670000px;}
.y34{bottom:651.210000px;}
.yc0{bottom:652.380000px;}
.y142{bottom:657.780000px;}
.ye2{bottom:657.960000px;}
.yf{bottom:666.960000px;}
.y96{bottom:667.950000px;}
.y60{bottom:668.220000px;}
.y33{bottom:668.850000px;}
.y105{bottom:669.300000px;}
.y141{bottom:675.330000px;}
.ye{bottom:684.510000px;}
.ye1{bottom:685.320000px;}
.y95{bottom:685.590000px;}
.y32{bottom:686.400000px;}
.ybf{bottom:688.020000px;}
.y140{bottom:692.970000px;}
.y5f{bottom:694.860000px;}
.y103{bottom:696.660000px;}
.yd{bottom:702.060000px;}
.ybe{bottom:702.960000px;}
.y94{bottom:703.140000px;}
.y31{bottom:704.040000px;}
.ye0{bottom:712.590000px;}
.yc{bottom:719.700000px;}
.y93{bottom:720.690000px;}
.y30{bottom:721.590000px;}
.y13f{bottom:728.520000px;}
.ybd{bottom:730.320000px;}
.y5e{bottom:730.410000px;}
.y123{bottom:735.810000px;}
.yb{bottom:737.250000px;}
.y2f{bottom:739.140000px;}
.ydf{bottom:739.950000px;}
.y92{bottom:747.330000px;}
.y5d{bottom:748.050000px;}
.ya{bottom:754.890000px;}
.y2e{bottom:756.780000px;}
.ybc{bottom:757.590000px;}
.y102{bottom:759.120000px;}
.y13e{bottom:760.740000px;}
.y5c{bottom:765.600000px;}
.y2d{bottom:774.330000px;}
.y9{bottom:781.800000px;}
.y91{bottom:783.240000px;}
.ybb{bottom:784.950000px;}
.y101{bottom:786.480000px;}
.y5b{bottom:792.150000px;}
.yde{bottom:806.280000px;}
.y2c{bottom:809.970000px;}
.y122{bottom:815.910000px;}
.y5a{bottom:827.790000px;}
.yba{bottom:829.860000px;}
.y8{bottom:830.040000px;}
.y90{bottom:831.480000px;}
.y2a{bottom:833.190000px;}
.ydd{bottom:841.830000px;}
.y59{bottom:845.340000px;}
.y100{bottom:848.940000px;}
.y8f{bottom:849.030000px;}
.yb9{bottom:857.220000px;}
.ydc{bottom:859.380000px;}
.y27{bottom:859.740000px;}
.y58{bottom:862.890000px;}
.y7{bottom:865.860000px;}
.y8e{bottom:866.670000px;}
.y15f{bottom:875.220000px;}
.yff{bottom:876.300000px;}
.y57{bottom:880.530000px;}
.y121{bottom:882.150000px;}
.y8d{bottom:884.220000px;}
.ydb{bottom:892.410000px;}
.y56{bottom:898.080000px;}
.y6{bottom:901.860000px;}
.yb8{bottom:902.130000px;}
.yfe{bottom:903.660000px;}
.y120{bottom:917.790000px;}
.y15e{bottom:919.410000px;}
.y8c{bottom:919.860000px;}
.y55{bottom:924.720000px;}
.yfd{bottom:930.930000px;}
.y11f{bottom:935.340000px;}
.yda{bottom:937.320000px;}
.y8b{bottom:937.410000px;}
.y5{bottom:937.860000px;}
.y15d{bottom:945.960000px;}
.yb7{bottom:947.040000px;}
.y11e{bottom:953.700000px;}
.y8a{bottom:954.960000px;}
.yf5{bottom:958.290000px;}
.y54{bottom:960.270000px;}
.y15c{bottom:963.600000px;}
.yd9{bottom:964.680000px;}
.y89{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.yb6{bottom:974.400000px;}
.y53{bottom:977.820000px;}
.y88{bottom:990.150000px;}
.yd7{bottom:991.950000px;}
.y52{bottom:996.270000px;}
.yb5{bottom:1001.760000px;}
.y11d{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.y51{bottom:1014.660000px;}
.yf9{bottom:1020.870000px;}
.y11c{bottom:1025.370000px;}
.y87{bottom:1025.820000px;}
.yac{bottom:1029.060000px;}
.y50{bottom:1033.110000px;}
.y15b{bottom:1034.370000px;}
.yd6{bottom:1036.890000px;}
.y11b{bottom:1042.920000px;}
.y86{bottom:1043.370000px;}
.y15a{bottom:1051.920000px;}
.y85{bottom:1060.920000px;}
.yd5{bottom:1064.250000px;}
.y4f{bottom:1069.560000px;}
.y84{bottom:1078.560000px;}
.yaf{bottom:1091.610000px;}
.y83{bottom:1096.110000px;}
.y4e{bottom:1105.110000px;}
.y82{bottom:1113.750000px;}
.y4d{bottom:1122.750000px;}
.y4c{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h8{height:26.550000px;}
.h14{height:26.580000px;}
.h15{height:26.640000px;}
.h18{height:26.670000px;}
.h2{height:30.022383px;}
.hf{height:30.339844px;}
.h10{height:35.497617px;}
.h3{height:38.100586px;}
.h16{height:44.190000px;}
.h19{height:44.220000px;}
.hd{height:50.667539px;}
.h6{height:50.902383px;}
.h17{height:53.910000px;}
.h5{height:55.779258px;}
.hc{height:59.973223px;}
.h1c{height:61.740000px;}
.h1b{height:61.770000px;}
.hb{height:61.793886px;}
.h13{height:61.830000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1d{height:79.290000px;}
.h11{height:84.457617px;}
.h12{height:89.100000px;}
.h1a{height:89.130000px;}
.he{height:89.857617px;}
.h1e{height:114.570000px;}
.h7{height:294.780000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w23{width:22.230000px;}
.w5{width:34.200000px;}
.w1a{width:34.290000px;}
.w29{width:37.890000px;}
.w27{width:39.690000px;}
.w22{width:43.470000px;}
.w20{width:44.280000px;}
.w2f{width:46.350000px;}
.w9{width:51.750000px;}
.w2a{width:56.340000px;}
.w1d{width:57.060000px;}
.w2b{width:62.820000px;}
.w2e{width:63.360000px;}
.wf{width:63.540000px;}
.w1e{width:64.440000px;}
.w7{width:64.800000px;}
.w21{width:67.860000px;}
.wa{width:68.400000px;}
.w25{width:71.190000px;}
.w15{width:73.530000px;}
.w1f{width:73.560000px;}
.wb{width:74.790000px;}
.w13{width:77.040000px;}
.w2d{width:80.220000px;}
.w14{width:80.760000px;}
.w24{width:81.570000px;}
.we{width:82.170000px;}
.w2c{width:84.960000px;}
.w16{width:92.520000px;}
.wc{width:96.960000px;}
.w28{width:100.620000px;}
.w30{width:104.520000px;}
.w6{width:105.420000px;}
.wd{width:106.740000px;}
.w33{width:108.450000px;}
.w32{width:110.640000px;}
.w1c{width:110.970000px;}
.w34{width:140.220000px;}
.w3{width:148.950000px;}
.w4{width:151.230000px;}
.w1b{width:160.410000px;}
.w11{width:200.460000px;}
.w10{width:206.040000px;}
.w17{width:300.900000px;}
.w18{width:324.030000px;}
.w12{width:378.750000px;}
.w35{width:394.140000px;}
.w19{width:430.860000px;}
.w26{width:436.530000px;}
.w31{width:508.530000px;}
.w8{width:548.940000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:1.710000px;}
.x3a{left:2.880000px;}
.x40{left:4.050000px;}
.x28{left:5.400000px;}
.x15{left:7.740000px;}
.x4c{left:9.270000px;}
.x33{left:10.890000px;}
.x3e{left:12.960000px;}
.x44{left:14.760000px;}
.x48{left:15.840000px;}
.x39{left:16.920000px;}
.x31{left:19.800000px;}
.x38{left:22.410000px;}
.x42{left:24.300000px;}
.x4b{left:26.040000px;}
.x45{left:27.270000px;}
.x4a{left:28.440000px;}
.x43{left:31.410000px;}
.x47{left:35.940000px;}
.x46{left:38.340000px;}
.x49{left:43.200000px;}
.x4d{left:50.310000px;}
.x8{left:65.070000px;}
.x1{left:68.040000px;}
.x30{left:91.710000px;}
.xa{left:95.039987px;}
.x16{left:103.770000px;}
.x1f{left:106.380000px;}
.x55{left:111.239987px;}
.x4f{left:122.039987px;}
.x35{left:131.310000px;}
.x5{left:140.850000px;}
.x7{left:143.130000px;}
.x9{left:148.499987px;}
.x32{left:174.000000px;}
.x50{left:180.210000px;}
.x17{left:210.000000px;}
.x2{left:211.079987px;}
.x34{left:246.000000px;}
.xb{left:251.939987px;}
.x4e{left:254.250000px;}
.x11{left:256.889987px;}
.x27{left:264.900000px;}
.xc{left:268.769987px;}
.x54{left:272.099987px;}
.x18{left:275.520000px;}
.x3b{left:284.700000px;}
.x51{left:289.380000px;}
.x4{left:296.580000px;}
.xd{left:301.619987px;}
.x12{left:304.859987px;}
.xe{left:308.369987px;}
.x13{left:312.329987px;}
.xf{left:315.839987px;}
.x19{left:327.990000px;}
.x20{left:342.480000px;}
.x14{left:365.429987px;}
.x10{left:376.679987px;}
.x26{left:393.600000px;}
.x1a{left:397.200000px;}
.x3c{left:405.390000px;}
.x21{left:408.090000px;}
.x52{left:430.320000px;}
.x29{left:434.460000px;}
.x6{left:445.530000px;}
.x1b{left:472.800000px;}
.x22{left:485.940000px;}
.x3d{left:491.160000px;}
.x2a{left:499.620000px;}
.x53{left:513.059987px;}
.x23{left:567.510000px;}
.x1c{left:570.480000px;}
.x3f{left:572.100000px;}
.x2b{left:573.990000px;}
.x2c{left:619.080000px;}
.x41{left:636.180000px;}
.x24{left:641.760000px;}
.x1d{left:678.030000px;}
.x36{left:683.340000px;}
.x25{left:694.320000px;}
.x2d{left:712.320000px;}
.x37{left:723.840000px;}
.x1e{left:760.920000px;}
.x2e{left:780.990000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v9{vertical-align:-10.240000pt;}
.vb{vertical-align:-8.960000pt;}
.v3{vertical-align:-2.560000pt;}
.v8{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.v7{vertical-align:38.080000pt;}
.v6{vertical-align:47.040000pt;}
.v5{vertical-align:48.320000pt;}
.va{vertical-align:54.400000pt;}
.ls2d{letter-spacing:-0.456533pt;}
.lsf{letter-spacing:-0.395200pt;}
.ls2b{letter-spacing:-0.379733pt;}
.ls27{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls22{letter-spacing:-0.144000pt;}
.ls24{letter-spacing:-0.138667pt;}
.ls28{letter-spacing:-0.136533pt;}
.ls31{letter-spacing:-0.134933pt;}
.ls2f{letter-spacing:-0.126400pt;}
.ls32{letter-spacing:-0.125867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls2c{letter-spacing:-0.111467pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls33{letter-spacing:-0.090133pt;}
.ls30{letter-spacing:-0.085867pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls23{letter-spacing:-0.056533pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000320pt;}
.ls25{letter-spacing:0.017280pt;}
.ls35{letter-spacing:0.017920pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls2e{letter-spacing:0.048640pt;}
.ls13{letter-spacing:0.050560pt;}
.ls11{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.065920pt;}
.ls19{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.086933pt;}
.ls14{letter-spacing:0.087040pt;}
.ls29{letter-spacing:0.103467pt;}
.ls1b{letter-spacing:0.113067pt;}
.ls34{letter-spacing:0.118400pt;}
.ls5{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.133333pt;}
.ls1f{letter-spacing:0.142400pt;}
.lsd{letter-spacing:0.154133pt;}
.ls2a{letter-spacing:0.157333pt;}
.ls10{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls21{letter-spacing:0.474133pt;}
.ls20{letter-spacing:1.632000pt;}
.ls1d{letter-spacing:14.480320pt;}
.ls16{letter-spacing:14.800320pt;}
.ls15{letter-spacing:17.960640pt;}
.ls1c{letter-spacing:18.218560pt;}
.ls37{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls1e{letter-spacing:58.575040pt;}
.ls17{letter-spacing:63.375040pt;}
.ls36{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws16{word-spacing:-11.914133pt;}
.ws6{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.890133pt;}
.ws22{word-spacing:-11.875200pt;}
.ws18{word-spacing:-11.869867pt;}
.ws13{word-spacing:-11.860267pt;}
.ws1b{word-spacing:-11.814400pt;}
.ws1c{word-spacing:-11.805440pt;}
.ws9{word-spacing:-11.800320pt;}
.ws23{word-spacing:-11.774720pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.700267pt;}
.ws21{word-spacing:-11.666667pt;}
.ws19{word-spacing:-11.645333pt;}
.ws20{word-spacing:-11.630933pt;}
.ws1f{word-spacing:-11.621867pt;}
.ws12{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.618133pt;}
.wsa{word-spacing:-11.612800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.540267pt;}
.ws17{word-spacing:-11.377067pt;}
.ws1a{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-8.236800pt;}
.ws1d{word-spacing:-8.110400pt;}
.ws15{word-spacing:-7.706667pt;}
.ws14{word-spacing:-7.690133pt;}
.wsc{word-spacing:-7.603200pt;}
.ws1e{word-spacing:-7.517333pt;}
.wsf{word-spacing:-7.040000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._15{margin-left:-5.966080pt;}
._1a{margin-left:-3.818114pt;}
._9{margin-left:-2.807466pt;}
._10{margin-left:-1.899200pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969056pt;}
._2{width:2.023477pt;}
._3{width:2.992533pt;}
._4{width:3.994903pt;}
._6{width:5.135010pt;}
._5{width:6.359467pt;}
._7{width:7.428267pt;}
._8{width:8.710399pt;}
._a{width:9.726935pt;}
._11{width:10.634560pt;}
._25{width:12.853913pt;}
._12{width:13.812457pt;}
._16{width:14.776937pt;}
._1d{width:15.896427pt;}
._f{width:16.833600pt;}
._b{width:17.795734pt;}
._c{width:18.702397pt;}
._d{width:20.093333pt;}
._e{width:21.269334pt;}
._23{width:25.971840pt;}
._24{width:27.134827pt;}
._1b{width:33.506880pt;}
._1c{width:34.522240pt;}
._1e{width:48.790720pt;}
._22{width:56.325760pt;}
._18{width:72.090560pt;}
._20{width:99.344960pt;}
._13{width:106.264980pt;}
._17{width:111.935039pt;}
._19{width:113.506560pt;}
._21{width:116.552640pt;}
._1f{width:118.957440pt;}
._14{width:180.243200pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:4.000000pt;}
.y28{bottom:4.960000pt;}
.y2b{bottom:6.960000pt;}
.yb2{bottom:7.040000pt;}
.yc8{bottom:7.066667pt;}
.y106{bottom:11.760000pt;}
.y108{bottom:11.840000pt;}
.yb4{bottom:14.800000pt;}
.yfb{bottom:19.120000pt;}
.y104{bottom:22.560000pt;}
.yb0{bottom:22.640000pt;}
.yd8{bottom:22.666667pt;}
.ye6{bottom:23.680000pt;}
.yf8{bottom:26.960000pt;}
.y110{bottom:30.400000pt;}
.yb3{bottom:30.480000pt;}
.yc2{bottom:31.280000pt;}
.y10c{bottom:34.720000pt;}
.yf6{bottom:34.800000pt;}
.yfc{bottom:38.240000pt;}
.yb1{bottom:38.320000pt;}
.y10d{bottom:42.560000pt;}
.yf7{bottom:42.640000pt;}
.yae{bottom:46.960000pt;}
.y10f{bottom:50.400000pt;}
.yfa{bottom:50.426667pt;}
.y124{bottom:53.840000pt;}
.y128{bottom:53.920000pt;}
.yad{bottom:62.560000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y127{bottom:69.520000pt;}
.y126{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.y159{bottom:106.026667pt;}
.yf4{bottom:106.186667pt;}
.y11a{bottom:108.266667pt;}
.y81{bottom:110.746667pt;}
.y158{bottom:121.626667pt;}
.yf3{bottom:121.866667pt;}
.yf2{bottom:137.466667pt;}
.y119{bottom:137.626667pt;}
.yd4{bottom:140.506667pt;}
.y80{bottom:142.426667pt;}
.y4b{bottom:143.786667pt;}
.y157{bottom:145.226667pt;}
.y13d{bottom:145.626667pt;}
.yf1{bottom:153.146667pt;}
.yab{bottom:153.466667pt;}
.y7f{bottom:158.026667pt;}
.y4a{bottom:159.386667pt;}
.y156{bottom:160.906667pt;}
.y13c{bottom:161.226667pt;}
.y118{bottom:161.866667pt;}
.yd3{bottom:172.106667pt;}
.y7e{bottom:173.626667pt;}
.y49{bottom:175.066667pt;}
.yf0{bottom:182.426667pt;}
.y155{bottom:184.506667pt;}
.yaa{bottom:185.066667pt;}
.y117{bottom:186.186667pt;}
.yd2{bottom:187.786667pt;}
.y7d{bottom:189.306667pt;}
.y48{bottom:190.666667pt;}
.y13b{bottom:192.906667pt;}
.y24{bottom:195.386667pt;}
.y154{bottom:200.186667pt;}
.yd1{bottom:203.386667pt;}
.y47{bottom:206.266667pt;}
.yef{bottom:206.746667pt;}
.y13a{bottom:208.506667pt;}
.y23{bottom:211.066667pt;}
.ya9{bottom:216.746667pt;}
.yd0{bottom:219.066667pt;}
.y7c{bottom:219.546667pt;}
.y46{bottom:221.946667pt;}
.y153{bottom:223.786667pt;}
.y7a{bottom:223.946667pt;}
.y139{bottom:224.186667pt;}
.y22{bottom:226.666667pt;}
.y7b{bottom:228.826667pt;}
.yee{bottom:230.986667pt;}
.y77{bottom:232.026667pt;}
.y45{bottom:237.546667pt;}
.y79{bottom:238.826667pt;}
.y152{bottom:239.386667pt;}
.y116{bottom:241.786667pt;}
.y21{bottom:242.266667pt;}
.ycf{bottom:242.666667pt;}
.y78{bottom:247.786667pt;}
.ya8{bottom:248.346667pt;}
.y138{bottom:255.786667pt;}
.y20{bottom:257.946667pt;}
.y44{bottom:261.226667pt;}
.y151{bottom:263.066667pt;}
.ya7{bottom:263.946667pt;}
.y115{bottom:266.026667pt;}
.yce{bottom:269.306667pt;}
.yed{bottom:270.906667pt;}
.y137{bottom:271.386667pt;}
.y1f{bottom:273.546667pt;}
.y76{bottom:274.506667pt;}
.y150{bottom:278.666667pt;}
.ya6{bottom:279.626667pt;}
.y136{bottom:287.066667pt;}
.y1e{bottom:289.226667pt;}
.y75{bottom:290.106667pt;}
.y43{bottom:292.826667pt;}
.ycd{bottom:293.626667pt;}
.ya5{bottom:295.226667pt;}
.y14f{bottom:302.586667pt;}
.y135{bottom:302.666667pt;}
.y74{bottom:305.706667pt;}
.y42{bottom:308.426667pt;}
.ya4{bottom:310.906667pt;}
.ycc{bottom:317.946667pt;}
.y134{bottom:318.266667pt;}
.yec{bottom:319.546667pt;}
.y1d{bottom:320.826667pt;}
.y73{bottom:321.386667pt;}
.y114{bottom:321.626667pt;}
.y41{bottom:324.106667pt;}
.ya3{bottom:326.506667pt;}
.y133{bottom:333.946667pt;}
.y1c{bottom:336.426667pt;}
.ycb{bottom:342.186667pt;}
.yeb{bottom:343.866667pt;}
.y72{bottom:344.986667pt;}
.y14e{bottom:345.546667pt;}
.y113{bottom:345.946667pt;}
.y40{bottom:348.026667pt;}
.ya2{bottom:350.106667pt;}
.y1b{bottom:352.106667pt;}
.y14d{bottom:361.146667pt;}
.y132{bottom:365.546667pt;}
.yca{bottom:366.506667pt;}
.y1a{bottom:367.706667pt;}
.yea{bottom:368.106667pt;}
.y112{bottom:370.186667pt;}
.y71{bottom:373.946667pt;}
.y14c{bottom:376.746667pt;}
.y131{bottom:381.226667pt;}
.ya1{bottom:381.786667pt;}
.y19{bottom:383.386667pt;}
.y70{bottom:389.626667pt;}
.yc9{bottom:390.826667pt;}
.y3f{bottom:390.906667pt;}
.y14b{bottom:392.426667pt;}
.y111{bottom:394.506667pt;}
.y130{bottom:396.826667pt;}
.ya0{bottom:397.386667pt;}
.y18{bottom:398.986667pt;}
.y6f{bottom:405.226667pt;}
.y3e{bottom:406.586667pt;}
.y14a{bottom:408.026667pt;}
.y12f{bottom:412.426667pt;}
.y9f{bottom:413.066667pt;}
.y17{bottom:414.586667pt;}
.yc7{bottom:415.066667pt;}
.y10b{bottom:418.853333pt;}
.y6e{bottom:420.933333pt;}
.y3d{bottom:422.213333pt;}
.ye9{bottom:427.093333pt;}
.y9e{bottom:428.693333pt;}
.y16{bottom:430.293333pt;}
.y6d{bottom:436.533333pt;}
.y3c{bottom:437.813333pt;}
.yc6{bottom:439.413333pt;}
.y149{bottom:439.733333pt;}
.y12e{bottom:444.133333pt;}
.y9d{bottom:444.293333pt;}
.y15{bottom:445.893333pt;}
.y6c{bottom:452.133333pt;}
.y3b{bottom:453.493333pt;}
.y148{bottom:455.333333pt;}
.ye8{bottom:458.693333pt;}
.y12d{bottom:459.733333pt;}
.yc5{bottom:463.733333pt;}
.y6b{bottom:467.813333pt;}
.y3a{bottom:469.093333pt;}
.y14{bottom:469.813333pt;}
.y147{bottom:470.933333pt;}
.ye7{bottom:472.053333pt;}
.y10e{bottom:474.373333pt;}
.y12c{bottom:475.413333pt;}
.y9c{bottom:475.973333pt;}
.y39{bottom:484.693333pt;}
.y146{bottom:486.613333pt;}
.yc4{bottom:488.053333pt;}
.y12b{bottom:491.013333pt;}
.y9b{bottom:491.573333pt;}
.ye5{bottom:496.293333pt;}
.y6a{bottom:497.093333pt;}
.y38{bottom:500.373333pt;}
.y68{bottom:500.613333pt;}
.y69{bottom:504.133333pt;}
.y65{bottom:504.613333pt;}
.y12a{bottom:506.613333pt;}
.y9a{bottom:507.253333pt;}
.y64{bottom:507.333333pt;}
.y145{bottom:510.533333pt;}
.yc1{bottom:512.293333pt;}
.y13{bottom:513.013333pt;}
.y67{bottom:513.493333pt;}
.y10a{bottom:517.653333pt;}
.y66{bottom:520.533333pt;}
.ye4{bottom:520.613333pt;}
.y129{bottom:522.293333pt;}
.y99{bottom:530.853333pt;}
.y37{bottom:531.973333pt;}
.yc3{bottom:536.613333pt;}
.y12{bottom:545.893333pt;}
.y63{bottom:547.093333pt;}
.y36{bottom:547.653333pt;}
.y109{bottom:549.333333pt;}
.y125{bottom:551.573333pt;}
.y144{bottom:553.413333pt;}
.ye3{bottom:560.533333pt;}
.y11{bottom:561.573333pt;}
.y98{bottom:562.453333pt;}
.y62{bottom:562.773333pt;}
.y35{bottom:563.253333pt;}
.y143{bottom:569.013333pt;}
.y107{bottom:570.613333pt;}
.y10{bottom:577.173333pt;}
.y97{bottom:578.133333pt;}
.y61{bottom:578.373333pt;}
.y34{bottom:578.853333pt;}
.yc0{bottom:579.893333pt;}
.y142{bottom:584.693333pt;}
.ye2{bottom:584.853333pt;}
.yf{bottom:592.853333pt;}
.y96{bottom:593.733333pt;}
.y60{bottom:593.973333pt;}
.y33{bottom:594.533333pt;}
.y105{bottom:594.933333pt;}
.y141{bottom:600.293333pt;}
.ye{bottom:608.453333pt;}
.ye1{bottom:609.173333pt;}
.y95{bottom:609.413333pt;}
.y32{bottom:610.133333pt;}
.ybf{bottom:611.573333pt;}
.y140{bottom:615.973333pt;}
.y5f{bottom:617.653333pt;}
.y103{bottom:619.253333pt;}
.yd{bottom:624.053333pt;}
.ybe{bottom:624.853333pt;}
.y94{bottom:625.013333pt;}
.y31{bottom:625.813333pt;}
.ye0{bottom:633.413333pt;}
.yc{bottom:639.733333pt;}
.y93{bottom:640.613333pt;}
.y30{bottom:641.413333pt;}
.y13f{bottom:647.573333pt;}
.ybd{bottom:649.173333pt;}
.y5e{bottom:649.253333pt;}
.y123{bottom:654.053333pt;}
.yb{bottom:655.333333pt;}
.y2f{bottom:657.013333pt;}
.ydf{bottom:657.733333pt;}
.y92{bottom:664.293333pt;}
.y5d{bottom:664.933333pt;}
.ya{bottom:671.013333pt;}
.y2e{bottom:672.693333pt;}
.ybc{bottom:673.413333pt;}
.y102{bottom:674.773333pt;}
.y13e{bottom:676.213333pt;}
.y5c{bottom:680.533333pt;}
.y2d{bottom:688.293333pt;}
.y9{bottom:694.933333pt;}
.y91{bottom:696.213333pt;}
.ybb{bottom:697.733333pt;}
.y101{bottom:699.093333pt;}
.y5b{bottom:704.133333pt;}
.yde{bottom:716.693333pt;}
.y2c{bottom:719.973333pt;}
.y122{bottom:725.253333pt;}
.y5a{bottom:735.813333pt;}
.yba{bottom:737.653333pt;}
.y8{bottom:737.813333pt;}
.y90{bottom:739.093333pt;}
.y2a{bottom:740.613333pt;}
.ydd{bottom:748.293333pt;}
.y59{bottom:751.413333pt;}
.y100{bottom:754.613333pt;}
.y8f{bottom:754.693333pt;}
.yb9{bottom:761.973333pt;}
.ydc{bottom:763.893333pt;}
.y27{bottom:764.213333pt;}
.y58{bottom:767.013333pt;}
.y7{bottom:769.653333pt;}
.y8e{bottom:770.373333pt;}
.y15f{bottom:777.973333pt;}
.yff{bottom:778.933333pt;}
.y57{bottom:782.693333pt;}
.y121{bottom:784.133333pt;}
.y8d{bottom:785.973333pt;}
.ydb{bottom:793.253333pt;}
.y56{bottom:798.293333pt;}
.y6{bottom:801.653333pt;}
.yb8{bottom:801.893333pt;}
.yfe{bottom:803.253333pt;}
.y120{bottom:815.813333pt;}
.y15e{bottom:817.253333pt;}
.y8c{bottom:817.653333pt;}
.y55{bottom:821.973333pt;}
.yfd{bottom:827.493333pt;}
.y11f{bottom:831.413333pt;}
.yda{bottom:833.173333pt;}
.y8b{bottom:833.253333pt;}
.y5{bottom:833.653333pt;}
.y15d{bottom:840.853333pt;}
.yb7{bottom:841.813333pt;}
.y11e{bottom:847.733333pt;}
.y8a{bottom:848.853333pt;}
.yf5{bottom:851.813333pt;}
.y54{bottom:853.573333pt;}
.y15c{bottom:856.533333pt;}
.yd9{bottom:857.493333pt;}
.y89{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.yb6{bottom:866.133333pt;}
.y53{bottom:869.173333pt;}
.y88{bottom:880.133333pt;}
.yd7{bottom:881.733333pt;}
.y52{bottom:885.573333pt;}
.yb5{bottom:890.453333pt;}
.y11d{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.y51{bottom:901.920000pt;}
.yf9{bottom:907.440000pt;}
.y11c{bottom:911.440000pt;}
.y87{bottom:911.840000pt;}
.yac{bottom:914.720000pt;}
.y50{bottom:918.320000pt;}
.y15b{bottom:919.440000pt;}
.yd6{bottom:921.680000pt;}
.y11b{bottom:927.040000pt;}
.y86{bottom:927.440000pt;}
.y15a{bottom:935.040000pt;}
.y85{bottom:943.040000pt;}
.yd5{bottom:946.000000pt;}
.y4f{bottom:950.720000pt;}
.y84{bottom:958.720000pt;}
.yaf{bottom:970.320000pt;}
.y83{bottom:974.320000pt;}
.y4e{bottom:982.320000pt;}
.y82{bottom:990.000000pt;}
.y4d{bottom:998.000000pt;}
.y4c{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h8{height:23.600000pt;}
.h14{height:23.626667pt;}
.h15{height:23.680000pt;}
.h18{height:23.706667pt;}
.h2{height:26.686562pt;}
.hf{height:26.968750pt;}
.h10{height:31.553437pt;}
.h3{height:33.867188pt;}
.h16{height:39.280000pt;}
.h19{height:39.306667pt;}
.hd{height:45.037812pt;}
.h6{height:45.246562pt;}
.h17{height:47.920000pt;}
.h5{height:49.581562pt;}
.hc{height:53.309531pt;}
.h1c{height:54.880000pt;}
.h1b{height:54.906667pt;}
.hb{height:54.927899pt;}
.h13{height:54.960000pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1d{height:70.480000pt;}
.h11{height:75.073437pt;}
.h12{height:79.200000pt;}
.h1a{height:79.226667pt;}
.he{height:79.873438pt;}
.h1e{height:101.840000pt;}
.h7{height:262.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w23{width:19.760000pt;}
.w5{width:30.400000pt;}
.w1a{width:30.480000pt;}
.w29{width:33.680000pt;}
.w27{width:35.280000pt;}
.w22{width:38.640000pt;}
.w20{width:39.360000pt;}
.w2f{width:41.200000pt;}
.w9{width:46.000000pt;}
.w2a{width:50.080000pt;}
.w1d{width:50.720000pt;}
.w2b{width:55.840000pt;}
.w2e{width:56.320000pt;}
.wf{width:56.480000pt;}
.w1e{width:57.280000pt;}
.w7{width:57.600000pt;}
.w21{width:60.320000pt;}
.wa{width:60.800000pt;}
.w25{width:63.280000pt;}
.w15{width:65.360000pt;}
.w1f{width:65.386667pt;}
.wb{width:66.480000pt;}
.w13{width:68.480000pt;}
.w2d{width:71.306667pt;}
.w14{width:71.786667pt;}
.w24{width:72.506667pt;}
.we{width:73.040000pt;}
.w2c{width:75.520000pt;}
.w16{width:82.240000pt;}
.wc{width:86.186667pt;}
.w28{width:89.440000pt;}
.w30{width:92.906667pt;}
.w6{width:93.706667pt;}
.wd{width:94.880000pt;}
.w33{width:96.400000pt;}
.w32{width:98.346667pt;}
.w1c{width:98.640000pt;}
.w34{width:124.640000pt;}
.w3{width:132.400000pt;}
.w4{width:134.426667pt;}
.w1b{width:142.586667pt;}
.w11{width:178.186667pt;}
.w10{width:183.146667pt;}
.w17{width:267.466667pt;}
.w18{width:288.026667pt;}
.w12{width:336.666667pt;}
.w35{width:350.346667pt;}
.w19{width:382.986667pt;}
.w26{width:388.026667pt;}
.w31{width:452.026667pt;}
.w8{width:487.946667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:1.520000pt;}
.x3a{left:2.560000pt;}
.x40{left:3.600000pt;}
.x28{left:4.800000pt;}
.x15{left:6.880000pt;}
.x4c{left:8.240000pt;}
.x33{left:9.680000pt;}
.x3e{left:11.520000pt;}
.x44{left:13.120000pt;}
.x48{left:14.080000pt;}
.x39{left:15.040000pt;}
.x31{left:17.600000pt;}
.x38{left:19.920000pt;}
.x42{left:21.600000pt;}
.x4b{left:23.146667pt;}
.x45{left:24.240000pt;}
.x4a{left:25.280000pt;}
.x43{left:27.920000pt;}
.x47{left:31.946667pt;}
.x46{left:34.080000pt;}
.x49{left:38.400000pt;}
.x4d{left:44.720000pt;}
.x8{left:57.840000pt;}
.x1{left:60.480000pt;}
.x30{left:81.520000pt;}
.xa{left:84.479988pt;}
.x16{left:92.240000pt;}
.x1f{left:94.560000pt;}
.x55{left:98.879988pt;}
.x4f{left:108.479988pt;}
.x35{left:116.720000pt;}
.x5{left:125.200000pt;}
.x7{left:127.226667pt;}
.x9{left:131.999988pt;}
.x32{left:154.666667pt;}
.x50{left:160.186667pt;}
.x17{left:186.666667pt;}
.x2{left:187.626655pt;}
.x34{left:218.666667pt;}
.xb{left:223.946655pt;}
.x4e{left:226.000000pt;}
.x11{left:228.346655pt;}
.x27{left:235.466667pt;}
.xc{left:238.906655pt;}
.x54{left:241.866655pt;}
.x18{left:244.906667pt;}
.x3b{left:253.066667pt;}
.x51{left:257.226667pt;}
.x4{left:263.626667pt;}
.xd{left:268.106655pt;}
.x12{left:270.986655pt;}
.xe{left:274.106655pt;}
.x13{left:277.626655pt;}
.xf{left:280.746655pt;}
.x19{left:291.546667pt;}
.x20{left:304.426667pt;}
.x14{left:324.826655pt;}
.x10{left:334.826655pt;}
.x26{left:349.866667pt;}
.x1a{left:353.066667pt;}
.x3c{left:360.346667pt;}
.x21{left:362.746667pt;}
.x52{left:382.506667pt;}
.x29{left:386.186667pt;}
.x6{left:396.026667pt;}
.x1b{left:420.266667pt;}
.x22{left:431.946667pt;}
.x3d{left:436.586667pt;}
.x2a{left:444.106667pt;}
.x53{left:456.053322pt;}
.x23{left:504.453333pt;}
.x1c{left:507.093333pt;}
.x3f{left:508.533333pt;}
.x2b{left:510.213333pt;}
.x2c{left:550.293333pt;}
.x41{left:565.493333pt;}
.x24{left:570.453333pt;}
.x1d{left:602.693333pt;}
.x36{left:607.413333pt;}
.x25{left:617.173333pt;}
.x2d{left:633.173333pt;}
.x37{left:643.413333pt;}
.x1e{left:676.373333pt;}
.x2e{left:694.213333pt;}
.x3{left:711.413322pt;}
}




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