
    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_7f8523f1e7afdf08a9c2c664.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_062bedf03863dee12629e337.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_40193a47c1de432fe4d12da2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_c7285dde2ac36a6fb2e6f184.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.845000;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_08c13b2250c60b6fbd2a22e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.044000;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_680124f8c5ccb7bd2a6789f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052000;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_7f8523f1e7afdf08a9c2c664.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_53b730d47fee23bf16b3dfde.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941000;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-4.104000px;}
.ls2{letter-spacing:-0.594000px;}
.ls1{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-11.826000px;}
.ws0{word-spacing:-11.448000px;}
.ws3d{word-spacing:-11.232000px;}
.ws2{word-spacing:-11.178000px;}
.ws53{word-spacing:-9.720000px;}
.ws22{word-spacing:-4.266000px;}
.ws20{word-spacing:-2.322000px;}
.ws47{word-spacing:-2.268000px;}
.ws5a{word-spacing:-2.214000px;}
.ws77{word-spacing:-2.052000px;}
.ws19{word-spacing:-1.998000px;}
.ws63{word-spacing:-1.944000px;}
.ws14{word-spacing:-1.890000px;}
.ws5c{word-spacing:-1.836000px;}
.ws48{word-spacing:-1.782000px;}
.ws65{word-spacing:-1.620000px;}
.ws35{word-spacing:-1.566000px;}
.ws1b{word-spacing:-1.512000px;}
.ws18{word-spacing:-1.458000px;}
.ws51{word-spacing:-1.404000px;}
.ws57{word-spacing:-1.350000px;}
.ws15{word-spacing:-1.296000px;}
.ws42{word-spacing:-1.242000px;}
.ws41{word-spacing:-1.188000px;}
.ws64{word-spacing:-1.080000px;}
.ws75{word-spacing:-1.026000px;}
.ws24{word-spacing:-0.972000px;}
.wsd{word-spacing:-0.918000px;}
.ws6a{word-spacing:-0.864000px;}
.ws2d{word-spacing:-0.810000px;}
.ws16{word-spacing:-0.756000px;}
.ws4{word-spacing:-0.720000px;}
.ws5d{word-spacing:-0.702000px;}
.ws28{word-spacing:-0.648000px;}
.ws52{word-spacing:-0.594000px;}
.ws40{word-spacing:-0.540000px;}
.ws3a{word-spacing:-0.486000px;}
.ws6c{word-spacing:-0.432000px;}
.ws1f{word-spacing:-0.378000px;}
.ws1c{word-spacing:-0.324000px;}
.ws6b{word-spacing:-0.270000px;}
.ws3b{word-spacing:-0.216000px;}
.ws7{word-spacing:-0.162000px;}
.ws9{word-spacing:-0.108000px;}
.ws60{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:0.054000px;}
.ws49{word-spacing:0.108000px;}
.ws1a{word-spacing:0.162000px;}
.wse{word-spacing:0.216000px;}
.ws4a{word-spacing:0.270000px;}
.ws34{word-spacing:0.324000px;}
.ws2e{word-spacing:0.378000px;}
.ws43{word-spacing:0.432000px;}
.ws72{word-spacing:0.540000px;}
.ws54{word-spacing:0.594000px;}
.ws12{word-spacing:0.648000px;}
.ws1d{word-spacing:0.702000px;}
.ws36{word-spacing:0.810000px;}
.ws6e{word-spacing:0.864000px;}
.ws2c{word-spacing:0.918000px;}
.ws39{word-spacing:0.972000px;}
.ws56{word-spacing:1.026000px;}
.ws69{word-spacing:1.080000px;}
.ws25{word-spacing:1.134000px;}
.ws38{word-spacing:1.188000px;}
.ws70{word-spacing:1.242000px;}
.ws4f{word-spacing:1.296000px;}
.wsa{word-spacing:1.350000px;}
.ws21{word-spacing:1.404000px;}
.ws67{word-spacing:1.458000px;}
.wsc{word-spacing:1.512000px;}
.ws37{word-spacing:1.566000px;}
.ws46{word-spacing:1.620000px;}
.ws8{word-spacing:1.674000px;}
.ws3c{word-spacing:1.728000px;}
.ws3f{word-spacing:1.782000px;}
.wsf{word-spacing:1.836000px;}
.ws45{word-spacing:1.890000px;}
.ws31{word-spacing:1.944000px;}
.ws27{word-spacing:1.998000px;}
.ws11{word-spacing:2.052000px;}
.ws50{word-spacing:2.106000px;}
.ws5e{word-spacing:2.160000px;}
.ws33{word-spacing:2.214000px;}
.ws74{word-spacing:2.268000px;}
.ws23{word-spacing:2.322000px;}
.ws5{word-spacing:2.376000px;}
.ws6f{word-spacing:2.430000px;}
.ws30{word-spacing:2.484000px;}
.ws58{word-spacing:2.538000px;}
.ws29{word-spacing:2.592000px;}
.ws6d{word-spacing:2.754000px;}
.ws5b{word-spacing:2.808000px;}
.ws68{word-spacing:2.862000px;}
.ws44{word-spacing:2.970000px;}
.wsb{word-spacing:3.132000px;}
.ws13{word-spacing:3.186000px;}
.ws55{word-spacing:3.294000px;}
.ws66{word-spacing:3.456000px;}
.ws3e{word-spacing:3.510000px;}
.ws17{word-spacing:3.618000px;}
.ws71{word-spacing:3.726000px;}
.ws2b{word-spacing:3.834000px;}
.ws6{word-spacing:3.996000px;}
.ws1e{word-spacing:4.050000px;}
.ws61{word-spacing:4.320000px;}
.ws62{word-spacing:4.374000px;}
.ws2a{word-spacing:4.428000px;}
.ws26{word-spacing:4.482000px;}
.ws59{word-spacing:4.644000px;}
.ws76{word-spacing:4.968000px;}
.ws5f{word-spacing:5.130000px;}
.ws32{word-spacing:5.184000px;}
.ws2f{word-spacing:5.508000px;}
.ws78{word-spacing:5.940000px;}
.ws73{word-spacing:8.100000px;}
.ws4d{word-spacing:398.736000px;}
.ws4b{word-spacing:412.992000px;}
.ws4c{word-spacing:438.912000px;}
.ws4e{word-spacing:487.080000px;}
._10{margin-left:-7.236000px;}
._a{margin-left:-6.152400px;}
._3{margin-left:-5.059800px;}
._0{margin-left:-4.050000px;}
._4{margin-left:-3.027600px;}
._1{margin-left:-1.517400px;}
._2{width:1.668600px;}
._b{width:3.402000px;}
._f{width:5.194800px;}
._d{width:20.250000px;}
._c{width:84.726000px;}
._8{width:86.616000px;}
._5{width:87.858000px;}
._7{width:88.884000px;}
._6{width:90.234000px;}
._9{width:91.746000px;}
._e{width:102.114000px;}
._13{width:342.306000px;}
._12{width:435.132000px;}
._11{width:451.332000px;}
._14{width:525.258000px;}
._15{width:535.356000px;}
.fc2{color:rgb(0,110,167);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:54.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:31.493700px;}
.yd9{bottom:115.439700px;}
.yab{bottom:120.539850px;}
.yf7{bottom:121.950300px;}
.yd8{bottom:131.639700px;}
.y14e{bottom:133.310850px;}
.y12e{bottom:133.324350px;}
.yff{bottom:134.036100px;}
.yaa{bottom:135.538350px;}
.ycd{bottom:137.185500px;}
.y2f{bottom:144.700050px;}
.y58{bottom:145.460850px;}
.y12d{bottom:149.524350px;}
.ya9{bottom:150.536850px;}
.ycc{bottom:153.385500px;}
.yf6{bottom:155.160300px;}
.y2e{bottom:160.900050px;}
.y57{bottom:161.660850px;}
.y7d{bottom:164.090850px;}
.yd7{bottom:164.849700px;}
.yeb{bottom:165.211350px;}
.ya8{bottom:165.535350px;}
.y12c{bottom:165.724350px;}
.y14d{bottom:166.520850px;}
.y2d{bottom:177.100050px;}
.y56{bottom:177.860850px;}
.y7c{bottom:180.290850px;}
.y14c{bottom:182.720850px;}
.ycb{bottom:186.595500px;}
.y2c{bottom:193.300050px;}
.y55{bottom:194.060850px;}
.y7b{bottom:196.490850px;}
.ya7{bottom:197.543850px;}
.yea{bottom:198.421350px;}
.y14b{bottom:198.920850px;}
.y12b{bottom:198.934350px;}
.y2b{bottom:209.500050px;}
.y54{bottom:210.260850px;}
.y7a{bottom:212.690850px;}
.y12a{bottom:215.134350px;}
.yca{bottom:219.805500px;}
.y2a{bottom:225.700050px;}
.y53{bottom:226.460850px;}
.y79{bottom:228.890850px;}
.ya6{bottom:229.552350px;}
.y129{bottom:231.334350px;}
.y14a{bottom:232.130850px;}
.yc1{bottom:235.474050px;}
.yc9{bottom:236.005500px;}
.y29{bottom:241.900050px;}
.ye3{bottom:243.338550px;}
.y78{bottom:245.090850px;}
.y128{bottom:247.534350px;}
.y149{bottom:248.330850px;}
.yc0{bottom:251.674050px;}
.y52{bottom:259.670850px;}
.ya5{bottom:261.560850px;}
.ybf{bottom:267.874050px;}
.yc8{bottom:269.215500px;}
.y28{bottom:275.110050px;}
.ye2{bottom:276.548550px;}
.y77{bottom:278.300850px;}
.y127{bottom:280.744350px;}
.y148{bottom:281.540850px;}
.ybe{bottom:284.074050px;}
.y10b{bottom:290.009700px;}
.y27{bottom:291.310050px;}
.y51{bottom:292.880850px;}
.ya4{bottom:293.569350px;}
.y126{bottom:296.944350px;}
.y147{bottom:297.740850px;}
.y10a{bottom:306.209700px;}
.y26{bottom:307.510050px;}
.y50{bottom:309.080850px;}
.ye1{bottom:309.758550px;}
.y76{bottom:311.510850px;}
.y125{bottom:313.144350px;}
.ybd{bottom:317.284050px;}
.y109{bottom:322.409700px;}
.y25{bottom:323.710050px;}
.y4f{bottom:325.280850px;}
.ya3{bottom:325.577850px;}
.y75{bottom:327.710850px;}
.y124{bottom:329.344350px;}
.y146{bottom:330.950850px;}
.y108{bottom:338.609700px;}
.y4e{bottom:341.480850px;}
.y74{bottom:343.910850px;}
.y145{bottom:347.150850px;}
.ybc{bottom:350.494050px;}
.y24{bottom:356.920050px;}
.ya2{bottom:357.586350px;}
.y73{bottom:360.110850px;}
.y123{bottom:362.554350px;}
.yf5{bottom:363.642150px;}
.yfe{bottom:370.729050px;}
.y107{bottom:371.819700px;}
.ya1{bottom:372.584850px;}
.y23{bottom:373.120050px;}
.y4d{bottom:374.690850px;}
.y72{bottom:376.310850px;}
.y122{bottom:378.754350px;}
.yf4{bottom:379.842150px;}
.y144{bottom:380.360850px;}
.ybb{bottom:383.704050px;}
.y22{bottom:389.320050px;}
.y121{bottom:394.954350px;}
.yba{bottom:400.093050px;}
.ya0{bottom:404.593350px;}
.y106{bottom:405.029700px;}
.y4c{bottom:407.900850px;}
.y71{bottom:409.520850px;}
.y120{bottom:411.154350px;}
.yf3{bottom:413.052150px;}
.y143{bottom:413.570850px;}
.y9f{bottom:419.591850px;}
.yd6{bottom:420.245700px;}
.yb9{bottom:422.219550px;}
.y21{bottom:422.530050px;}
.y11f{bottom:427.354350px;}
.y142{bottom:429.770850px;}
.yd5{bottom:436.445700px;}
.y105{bottom:438.239700px;}
.y4b{bottom:441.110850px;}
.y70{bottom:442.730850px;}
.y11e{bottom:443.554350px;}
.yb8{bottom:444.346050px;}
.y141{bottom:445.970850px;}
.y9e{bottom:451.600350px;}
.y20{bottom:455.740050px;}
.y4a{bottom:457.310850px;}
.y6f{bottom:458.930850px;}
.y11d{bottom:459.754350px;}
.y140{bottom:462.170850px;}
.yb7{bottom:466.472550px;}
.y9d{bottom:466.598850px;}
.yd4{bottom:469.655700px;}
.y13f{bottom:478.370850px;}
.y9c{bottom:481.597350px;}
.y1f{bottom:488.950050px;}
.ye9{bottom:490.090050px;}
.yb6{bottom:490.394550px;}
.y49{bottom:490.520850px;}
.y6e{bottom:492.140850px;}
.y11c{bottom:492.964350px;}
.y13e{bottom:494.570850px;}
.y9b{bottom:496.595850px;}
.yd3{bottom:502.865700px;}
.y48{bottom:506.720850px;}
.y6d{bottom:508.340850px;}
.y11b{bottom:509.164350px;}
.y13d{bottom:510.770850px;}
.y9a{bottom:511.594350px;}
.yb5{bottom:512.521050px;}
.yc7{bottom:521.895000px;}
.y1e{bottom:522.160050px;}
.ye8{bottom:523.300050px;}
.y6c{bottom:524.540850px;}
.y11a{bottom:525.364350px;}
.yb4{bottom:534.647550px;}
.yc6{bottom:538.095000px;}
.y1d{bottom:538.360050px;}
.y47{bottom:539.930850px;}
.y6b{bottom:540.740850px;}
.y119{bottom:541.564350px;}
.y99{bottom:543.602850px;}
.ye0{bottom:543.681300px;}
.y13c{bottom:543.980850px;}
.y1c{bottom:554.560050px;}
.ye7{bottom:556.510050px;}
.y118{bottom:557.764350px;}
.y98{bottom:558.601350px;}
.y13b{bottom:560.180850px;}
.y1b{bottom:570.760050px;}
.yc5{bottom:571.305000px;}
.y46{bottom:573.140850px;}
.y97{bottom:573.599850px;}
.y6a{bottom:573.950850px;}
.y117{bottom:573.964350px;}
.y13a{bottom:576.380850px;}
.ydf{bottom:576.891300px;}
.y1a{bottom:586.960050px;}
.y96{bottom:588.598350px;}
.y15c{bottom:589.340850px;}
.y116{bottom:590.164350px;}
.y139{bottom:592.580850px;}
.yfd{bottom:604.233000px;}
.y15b{bottom:605.540850px;}
.y45{bottom:606.350850px;}
.y69{bottom:607.160850px;}
.y138{bottom:608.780850px;}
.yde{bottom:610.101300px;}
.y19{bottom:620.170050px;}
.yfc{bottom:620.433000px;}
.y95{bottom:620.606850px;}
.y15a{bottom:621.740850px;}
.y68{bottom:623.360850px;}
.y115{bottom:623.374350px;}
.y137{bottom:624.980850px;}
.y94{bottom:635.605350px;}
.yfb{bottom:636.633000px;}
.y44{bottom:639.560850px;}
.y114{bottom:639.574350px;}
.y136{bottom:641.180850px;}
.yf2{bottom:647.444250px;}
.y93{bottom:650.603850px;}
.y18{bottom:653.380050px;}
.y159{bottom:654.950850px;}
.y67{bottom:655.760850px;}
.y113{bottom:655.774350px;}
.y135{bottom:657.380850px;}
.yf1{bottom:663.644250px;}
.y92{bottom:665.602350px;}
.yfa{bottom:669.843000px;}
.y158{bottom:671.150850px;}
.y112{bottom:671.974350px;}
.y43{bottom:672.770850px;}
.y134{bottom:673.580850px;}
.yf0{bottom:678.642750px;}
.y91{bottom:680.600850px;}
.y17{bottom:686.590050px;}
.y111{bottom:688.174350px;}
.y66{bottom:688.970850px;}
.yf9{bottom:703.053000px;}
.y157{bottom:704.360850px;}
.y110{bottom:704.374350px;}
.y42{bottom:705.980850px;}
.y133{bottom:706.790850px;}
.yef{bottom:710.651250px;}
.y104{bottom:711.589200px;}
.y90{bottom:712.609350px;}
.y16{bottom:719.800050px;}
.y156{bottom:720.560850px;}
.y10f{bottom:720.574350px;}
.y65{bottom:722.180850px;}
.y132{bottom:722.990850px;}
.yd2{bottom:727.458900px;}
.y8f{bottom:727.607850px;}
.y103{bottom:727.789200px;}
.y15{bottom:736.000050px;}
.yf8{bottom:736.263000px;}
.y64{bottom:738.380850px;}
.y41{bottom:739.190850px;}
.y8e{bottom:742.606350px;}
.yee{bottom:742.659750px;}
.yd1{bottom:743.658900px;}
.y102{bottom:743.989200px;}
.y14{bottom:752.200050px;}
.y155{bottom:753.770850px;}
.y10e{bottom:753.784350px;}
.y63{bottom:754.580850px;}
.y40{bottom:755.390850px;}
.y8d{bottom:757.604850px;}
.yed{bottom:757.658250px;}
.y13{bottom:768.400050px;}
.y154{bottom:769.970850px;}
.y62{bottom:770.780850px;}
.y131{bottom:771.590850px;}
.y8c{bottom:772.603350px;}
.yd0{bottom:776.868900px;}
.y101{bottom:777.199200px;}
.y12{bottom:784.600050px;}
.y10d{bottom:786.994350px;}
.y8b{bottom:787.601850px;}
.y130{bottom:787.790850px;}
.y3f{bottom:788.600850px;}
.y153{bottom:803.180850px;}
.y10c{bottom:803.194350px;}
.y61{bottom:803.990850px;}
.yb3{bottom:804.800850px;}
.ye6{bottom:805.673400px;}
.ycf{bottom:810.078900px;}
.y100{bottom:810.409200px;}
.y11{bottom:817.810050px;}
.yc4{bottom:818.245650px;}
.y152{bottom:819.380850px;}
.y8a{bottom:819.610350px;}
.y12f{bottom:821.000850px;}
.y3e{bottom:821.810850px;}
.yc3{bottom:834.445650px;}
.ydd{bottom:836.390850px;}
.y60{bottom:837.200850px;}
.y3d{bottom:838.010850px;}
.ye5{bottom:838.883400px;}
.y10{bottom:851.020050px;}
.y89{bottom:851.618850px;}
.y151{bottom:852.590850px;}
.y5f{bottom:853.400850px;}
.y3c{bottom:854.210850px;}
.y88{bottom:866.617350px;}
.yf{bottom:867.220050px;}
.yc2{bottom:867.655650px;}
.y150{bottom:868.790850px;}
.y5e{bottom:869.600850px;}
.y3b{bottom:870.410850px;}
.ye4{bottom:872.093400px;}
.y87{bottom:881.615850px;}
.y14f{bottom:884.990850px;}
.y5d{bottom:885.800850px;}
.y3a{bottom:886.610850px;}
.y86{bottom:896.614350px;}
.ye{bottom:900.430050px;}
.y5c{bottom:902.000850px;}
.yb2{bottom:902.810850px;}
.y85{bottom:911.612850px;}
.yd{bottom:916.630050px;}
.ydc{bottom:918.200850px;}
.yb1{bottom:919.010850px;}
.y39{bottom:919.820850px;}
.ydb{bottom:934.400850px;}
.y5b{bottom:935.210850px;}
.y38{bottom:936.020850px;}
.y84{bottom:943.621350px;}
.yc{bottom:949.840050px;}
.yda{bottom:950.600850px;}
.yb0{bottom:951.410850px;}
.y37{bottom:952.220850px;}
.yb{bottom:966.040050px;}
.yaf{bottom:967.610850px;}
.y36{bottom:968.420850px;}
.yec{bottom:974.428350px;}
.y83{bottom:975.629850px;}
.yae{bottom:983.810850px;}
.y35{bottom:984.620850px;}
.y82{bottom:990.628350px;}
.ya{bottom:999.227850px;}
.yad{bottom:1000.010850px;}
.y34{bottom:1000.820850px;}
.y81{bottom:1005.626850px;}
.yac{bottom:1016.210850px;}
.y33{bottom:1017.020850px;}
.y9{bottom:1020.233850px;}
.y80{bottom:1020.625350px;}
.y5a{bottom:1033.220850px;}
.yce{bottom:1034.030850px;}
.y7f{bottom:1035.623850px;}
.y59{bottom:1049.420850px;}
.y32{bottom:1050.230850px;}
.y7e{bottom:1050.622350px;}
.y8{bottom:1058.249850px;}
.y31{bottom:1066.430850px;}
.y7{bottom:1079.255850px;}
.y30{bottom:1082.630850px;}
.y5{bottom:1165.105050px;}
.y4{bottom:1181.305050px;}
.y3{bottom:1197.505050px;}
.y2{bottom:1213.705050px;}
.y1{bottom:1229.905050px;}
.h2{height:38.934000px;}
.h5{height:44.442000px;}
.h6{height:44.928000px;}
.h4{height:60.048000px;}
.h3{height:79.259766px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:85.039350px;}
.x10{left:91.225500px;}
.xa{left:99.203850px;}
.xc{left:103.487850px;}
.x11{left:213.252000px;}
.xb{left:236.921850px;}
.xd{left:264.821850px;}
.x12{left:320.213100px;}
.xf{left:374.374500px;}
.x5{left:470.623800px;}
.x2{left:486.567300px;}
.x3{left:487.917300px;}
.x4{left:585.846300px;}
.x1{left:614.938800px;}
.x14{left:653.740050px;}
.x13{left:669.685050px;}
.x8{left:715.473900px;}
.x9{left:724.370400px;}
.x6{left:764.292750px;}
.x7{left:791.613900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-3.648000pt;}
.ls2{letter-spacing:-0.528000pt;}
.ls1{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-10.512000pt;}
.ws0{word-spacing:-10.176000pt;}
.ws3d{word-spacing:-9.984000pt;}
.ws2{word-spacing:-9.936000pt;}
.ws53{word-spacing:-8.640000pt;}
.ws22{word-spacing:-3.792000pt;}
.ws20{word-spacing:-2.064000pt;}
.ws47{word-spacing:-2.016000pt;}
.ws5a{word-spacing:-1.968000pt;}
.ws77{word-spacing:-1.824000pt;}
.ws19{word-spacing:-1.776000pt;}
.ws63{word-spacing:-1.728000pt;}
.ws14{word-spacing:-1.680000pt;}
.ws5c{word-spacing:-1.632000pt;}
.ws48{word-spacing:-1.584000pt;}
.ws65{word-spacing:-1.440000pt;}
.ws35{word-spacing:-1.392000pt;}
.ws1b{word-spacing:-1.344000pt;}
.ws18{word-spacing:-1.296000pt;}
.ws51{word-spacing:-1.248000pt;}
.ws57{word-spacing:-1.200000pt;}
.ws15{word-spacing:-1.152000pt;}
.ws42{word-spacing:-1.104000pt;}
.ws41{word-spacing:-1.056000pt;}
.ws64{word-spacing:-0.960000pt;}
.ws75{word-spacing:-0.912000pt;}
.ws24{word-spacing:-0.864000pt;}
.wsd{word-spacing:-0.816000pt;}
.ws6a{word-spacing:-0.768000pt;}
.ws2d{word-spacing:-0.720000pt;}
.ws16{word-spacing:-0.672000pt;}
.ws4{word-spacing:-0.640000pt;}
.ws5d{word-spacing:-0.624000pt;}
.ws28{word-spacing:-0.576000pt;}
.ws52{word-spacing:-0.528000pt;}
.ws40{word-spacing:-0.480000pt;}
.ws3a{word-spacing:-0.432000pt;}
.ws6c{word-spacing:-0.384000pt;}
.ws1f{word-spacing:-0.336000pt;}
.ws1c{word-spacing:-0.288000pt;}
.ws6b{word-spacing:-0.240000pt;}
.ws3b{word-spacing:-0.192000pt;}
.ws7{word-spacing:-0.144000pt;}
.ws9{word-spacing:-0.096000pt;}
.ws60{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:0.048000pt;}
.ws49{word-spacing:0.096000pt;}
.ws1a{word-spacing:0.144000pt;}
.wse{word-spacing:0.192000pt;}
.ws4a{word-spacing:0.240000pt;}
.ws34{word-spacing:0.288000pt;}
.ws2e{word-spacing:0.336000pt;}
.ws43{word-spacing:0.384000pt;}
.ws72{word-spacing:0.480000pt;}
.ws54{word-spacing:0.528000pt;}
.ws12{word-spacing:0.576000pt;}
.ws1d{word-spacing:0.624000pt;}
.ws36{word-spacing:0.720000pt;}
.ws6e{word-spacing:0.768000pt;}
.ws2c{word-spacing:0.816000pt;}
.ws39{word-spacing:0.864000pt;}
.ws56{word-spacing:0.912000pt;}
.ws69{word-spacing:0.960000pt;}
.ws25{word-spacing:1.008000pt;}
.ws38{word-spacing:1.056000pt;}
.ws70{word-spacing:1.104000pt;}
.ws4f{word-spacing:1.152000pt;}
.wsa{word-spacing:1.200000pt;}
.ws21{word-spacing:1.248000pt;}
.ws67{word-spacing:1.296000pt;}
.wsc{word-spacing:1.344000pt;}
.ws37{word-spacing:1.392000pt;}
.ws46{word-spacing:1.440000pt;}
.ws8{word-spacing:1.488000pt;}
.ws3c{word-spacing:1.536000pt;}
.ws3f{word-spacing:1.584000pt;}
.wsf{word-spacing:1.632000pt;}
.ws45{word-spacing:1.680000pt;}
.ws31{word-spacing:1.728000pt;}
.ws27{word-spacing:1.776000pt;}
.ws11{word-spacing:1.824000pt;}
.ws50{word-spacing:1.872000pt;}
.ws5e{word-spacing:1.920000pt;}
.ws33{word-spacing:1.968000pt;}
.ws74{word-spacing:2.016000pt;}
.ws23{word-spacing:2.064000pt;}
.ws5{word-spacing:2.112000pt;}
.ws6f{word-spacing:2.160000pt;}
.ws30{word-spacing:2.208000pt;}
.ws58{word-spacing:2.256000pt;}
.ws29{word-spacing:2.304000pt;}
.ws6d{word-spacing:2.448000pt;}
.ws5b{word-spacing:2.496000pt;}
.ws68{word-spacing:2.544000pt;}
.ws44{word-spacing:2.640000pt;}
.wsb{word-spacing:2.784000pt;}
.ws13{word-spacing:2.832000pt;}
.ws55{word-spacing:2.928000pt;}
.ws66{word-spacing:3.072000pt;}
.ws3e{word-spacing:3.120000pt;}
.ws17{word-spacing:3.216000pt;}
.ws71{word-spacing:3.312000pt;}
.ws2b{word-spacing:3.408000pt;}
.ws6{word-spacing:3.552000pt;}
.ws1e{word-spacing:3.600000pt;}
.ws61{word-spacing:3.840000pt;}
.ws62{word-spacing:3.888000pt;}
.ws2a{word-spacing:3.936000pt;}
.ws26{word-spacing:3.984000pt;}
.ws59{word-spacing:4.128000pt;}
.ws76{word-spacing:4.416000pt;}
.ws5f{word-spacing:4.560000pt;}
.ws32{word-spacing:4.608000pt;}
.ws2f{word-spacing:4.896000pt;}
.ws78{word-spacing:5.280000pt;}
.ws73{word-spacing:7.200000pt;}
.ws4d{word-spacing:354.432000pt;}
.ws4b{word-spacing:367.104000pt;}
.ws4c{word-spacing:390.144000pt;}
.ws4e{word-spacing:432.960000pt;}
._10{margin-left:-6.432000pt;}
._a{margin-left:-5.468800pt;}
._3{margin-left:-4.497600pt;}
._0{margin-left:-3.600000pt;}
._4{margin-left:-2.691200pt;}
._1{margin-left:-1.348800pt;}
._2{width:1.483200pt;}
._b{width:3.024000pt;}
._f{width:4.617600pt;}
._d{width:18.000000pt;}
._c{width:75.312000pt;}
._8{width:76.992000pt;}
._5{width:78.096000pt;}
._7{width:79.008000pt;}
._6{width:80.208000pt;}
._9{width:81.552000pt;}
._e{width:90.768000pt;}
._13{width:304.272000pt;}
._12{width:386.784000pt;}
._11{width:401.184000pt;}
._14{width:466.896000pt;}
._15{width:475.872000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:27.994400pt;}
.yd9{bottom:102.613067pt;}
.yab{bottom:107.146533pt;}
.yf7{bottom:108.400267pt;}
.yd8{bottom:117.013067pt;}
.y14e{bottom:118.498533pt;}
.y12e{bottom:118.510533pt;}
.yff{bottom:119.143200pt;}
.yaa{bottom:120.478533pt;}
.ycd{bottom:121.942667pt;}
.y2f{bottom:128.622267pt;}
.y58{bottom:129.298533pt;}
.y12d{bottom:132.910533pt;}
.ya9{bottom:133.810533pt;}
.ycc{bottom:136.342667pt;}
.yf6{bottom:137.920267pt;}
.y2e{bottom:143.022267pt;}
.y57{bottom:143.698533pt;}
.y7d{bottom:145.858533pt;}
.yd7{bottom:146.533067pt;}
.yeb{bottom:146.854533pt;}
.ya8{bottom:147.142533pt;}
.y12c{bottom:147.310533pt;}
.y14d{bottom:148.018533pt;}
.y2d{bottom:157.422267pt;}
.y56{bottom:158.098533pt;}
.y7c{bottom:160.258533pt;}
.y14c{bottom:162.418533pt;}
.ycb{bottom:165.862667pt;}
.y2c{bottom:171.822267pt;}
.y55{bottom:172.498533pt;}
.y7b{bottom:174.658533pt;}
.ya7{bottom:175.594533pt;}
.yea{bottom:176.374533pt;}
.y14b{bottom:176.818533pt;}
.y12b{bottom:176.830533pt;}
.y2b{bottom:186.222267pt;}
.y54{bottom:186.898533pt;}
.y7a{bottom:189.058533pt;}
.y12a{bottom:191.230533pt;}
.yca{bottom:195.382667pt;}
.y2a{bottom:200.622267pt;}
.y53{bottom:201.298533pt;}
.y79{bottom:203.458533pt;}
.ya6{bottom:204.046533pt;}
.y129{bottom:205.630533pt;}
.y14a{bottom:206.338533pt;}
.yc1{bottom:209.310267pt;}
.yc9{bottom:209.782667pt;}
.y29{bottom:215.022267pt;}
.ye3{bottom:216.300933pt;}
.y78{bottom:217.858533pt;}
.y128{bottom:220.030533pt;}
.y149{bottom:220.738533pt;}
.yc0{bottom:223.710267pt;}
.y52{bottom:230.818533pt;}
.ya5{bottom:232.498533pt;}
.ybf{bottom:238.110267pt;}
.yc8{bottom:239.302667pt;}
.y28{bottom:244.542267pt;}
.ye2{bottom:245.820933pt;}
.y77{bottom:247.378533pt;}
.y127{bottom:249.550533pt;}
.y148{bottom:250.258533pt;}
.ybe{bottom:252.510267pt;}
.y10b{bottom:257.786400pt;}
.y27{bottom:258.942267pt;}
.y51{bottom:260.338533pt;}
.ya4{bottom:260.950533pt;}
.y126{bottom:263.950533pt;}
.y147{bottom:264.658533pt;}
.y10a{bottom:272.186400pt;}
.y26{bottom:273.342267pt;}
.y50{bottom:274.738533pt;}
.ye1{bottom:275.340933pt;}
.y76{bottom:276.898533pt;}
.y125{bottom:278.350533pt;}
.ybd{bottom:282.030267pt;}
.y109{bottom:286.586400pt;}
.y25{bottom:287.742267pt;}
.y4f{bottom:289.138533pt;}
.ya3{bottom:289.402533pt;}
.y75{bottom:291.298533pt;}
.y124{bottom:292.750533pt;}
.y146{bottom:294.178533pt;}
.y108{bottom:300.986400pt;}
.y4e{bottom:303.538533pt;}
.y74{bottom:305.698533pt;}
.y145{bottom:308.578533pt;}
.ybc{bottom:311.550267pt;}
.y24{bottom:317.262267pt;}
.ya2{bottom:317.854533pt;}
.y73{bottom:320.098533pt;}
.y123{bottom:322.270533pt;}
.yf5{bottom:323.237467pt;}
.yfe{bottom:329.536933pt;}
.y107{bottom:330.506400pt;}
.ya1{bottom:331.186533pt;}
.y23{bottom:331.662267pt;}
.y4d{bottom:333.058533pt;}
.y72{bottom:334.498533pt;}
.y122{bottom:336.670533pt;}
.yf4{bottom:337.637467pt;}
.y144{bottom:338.098533pt;}
.ybb{bottom:341.070267pt;}
.y22{bottom:346.062267pt;}
.y121{bottom:351.070533pt;}
.yba{bottom:355.638267pt;}
.ya0{bottom:359.638533pt;}
.y106{bottom:360.026400pt;}
.y4c{bottom:362.578533pt;}
.y71{bottom:364.018533pt;}
.y120{bottom:365.470533pt;}
.yf3{bottom:367.157467pt;}
.y143{bottom:367.618533pt;}
.y9f{bottom:372.970533pt;}
.yd6{bottom:373.551733pt;}
.yb9{bottom:375.306267pt;}
.y21{bottom:375.582267pt;}
.y11f{bottom:379.870533pt;}
.y142{bottom:382.018533pt;}
.yd5{bottom:387.951733pt;}
.y105{bottom:389.546400pt;}
.y4b{bottom:392.098533pt;}
.y70{bottom:393.538533pt;}
.y11e{bottom:394.270533pt;}
.yb8{bottom:394.974267pt;}
.y141{bottom:396.418533pt;}
.y9e{bottom:401.422533pt;}
.y20{bottom:405.102267pt;}
.y4a{bottom:406.498533pt;}
.y6f{bottom:407.938533pt;}
.y11d{bottom:408.670533pt;}
.y140{bottom:410.818533pt;}
.yb7{bottom:414.642267pt;}
.y9d{bottom:414.754533pt;}
.yd4{bottom:417.471733pt;}
.y13f{bottom:425.218533pt;}
.y9c{bottom:428.086533pt;}
.y1f{bottom:434.622267pt;}
.ye9{bottom:435.635600pt;}
.yb6{bottom:435.906267pt;}
.y49{bottom:436.018533pt;}
.y6e{bottom:437.458533pt;}
.y11c{bottom:438.190533pt;}
.y13e{bottom:439.618533pt;}
.y9b{bottom:441.418533pt;}
.yd3{bottom:446.991733pt;}
.y48{bottom:450.418533pt;}
.y6d{bottom:451.858533pt;}
.y11b{bottom:452.590533pt;}
.y13d{bottom:454.018533pt;}
.y9a{bottom:454.750533pt;}
.yb5{bottom:455.574267pt;}
.yc7{bottom:463.906667pt;}
.y1e{bottom:464.142267pt;}
.ye8{bottom:465.155600pt;}
.y6c{bottom:466.258533pt;}
.y11a{bottom:466.990533pt;}
.yb4{bottom:475.242267pt;}
.yc6{bottom:478.306667pt;}
.y1d{bottom:478.542267pt;}
.y47{bottom:479.938533pt;}
.y6b{bottom:480.658533pt;}
.y119{bottom:481.390533pt;}
.y99{bottom:483.202533pt;}
.ye0{bottom:483.272267pt;}
.y13c{bottom:483.538533pt;}
.y1c{bottom:492.942267pt;}
.ye7{bottom:494.675600pt;}
.y118{bottom:495.790533pt;}
.y98{bottom:496.534533pt;}
.y13b{bottom:497.938533pt;}
.y1b{bottom:507.342267pt;}
.yc5{bottom:507.826667pt;}
.y46{bottom:509.458533pt;}
.y97{bottom:509.866533pt;}
.y6a{bottom:510.178533pt;}
.y117{bottom:510.190533pt;}
.y13a{bottom:512.338533pt;}
.ydf{bottom:512.792267pt;}
.y1a{bottom:521.742267pt;}
.y96{bottom:523.198533pt;}
.y15c{bottom:523.858533pt;}
.y116{bottom:524.590533pt;}
.y139{bottom:526.738533pt;}
.yfd{bottom:537.096000pt;}
.y15b{bottom:538.258533pt;}
.y45{bottom:538.978533pt;}
.y69{bottom:539.698533pt;}
.y138{bottom:541.138533pt;}
.yde{bottom:542.312267pt;}
.y19{bottom:551.262267pt;}
.yfc{bottom:551.496000pt;}
.y95{bottom:551.650533pt;}
.y15a{bottom:552.658533pt;}
.y68{bottom:554.098533pt;}
.y115{bottom:554.110533pt;}
.y137{bottom:555.538533pt;}
.y94{bottom:564.982533pt;}
.yfb{bottom:565.896000pt;}
.y44{bottom:568.498533pt;}
.y114{bottom:568.510533pt;}
.y136{bottom:569.938533pt;}
.yf2{bottom:575.506000pt;}
.y93{bottom:578.314533pt;}
.y18{bottom:580.782267pt;}
.y159{bottom:582.178533pt;}
.y67{bottom:582.898533pt;}
.y113{bottom:582.910533pt;}
.y135{bottom:584.338533pt;}
.yf1{bottom:589.906000pt;}
.y92{bottom:591.646533pt;}
.yfa{bottom:595.416000pt;}
.y158{bottom:596.578533pt;}
.y112{bottom:597.310533pt;}
.y43{bottom:598.018533pt;}
.y134{bottom:598.738533pt;}
.yf0{bottom:603.238000pt;}
.y91{bottom:604.978533pt;}
.y17{bottom:610.302267pt;}
.y111{bottom:611.710533pt;}
.y66{bottom:612.418533pt;}
.yf9{bottom:624.936000pt;}
.y157{bottom:626.098533pt;}
.y110{bottom:626.110533pt;}
.y42{bottom:627.538533pt;}
.y133{bottom:628.258533pt;}
.yef{bottom:631.690000pt;}
.y104{bottom:632.523733pt;}
.y90{bottom:633.430533pt;}
.y16{bottom:639.822267pt;}
.y156{bottom:640.498533pt;}
.y10f{bottom:640.510533pt;}
.y65{bottom:641.938533pt;}
.y132{bottom:642.658533pt;}
.yd2{bottom:646.630133pt;}
.y8f{bottom:646.762533pt;}
.y103{bottom:646.923733pt;}
.y15{bottom:654.222267pt;}
.yf8{bottom:654.456000pt;}
.y64{bottom:656.338533pt;}
.y41{bottom:657.058533pt;}
.y8e{bottom:660.094533pt;}
.yee{bottom:660.142000pt;}
.yd1{bottom:661.030133pt;}
.y102{bottom:661.323733pt;}
.y14{bottom:668.622267pt;}
.y155{bottom:670.018533pt;}
.y10e{bottom:670.030533pt;}
.y63{bottom:670.738533pt;}
.y40{bottom:671.458533pt;}
.y8d{bottom:673.426533pt;}
.yed{bottom:673.474000pt;}
.y13{bottom:683.022267pt;}
.y154{bottom:684.418533pt;}
.y62{bottom:685.138533pt;}
.y131{bottom:685.858533pt;}
.y8c{bottom:686.758533pt;}
.yd0{bottom:690.550133pt;}
.y101{bottom:690.843733pt;}
.y12{bottom:697.422267pt;}
.y10d{bottom:699.550533pt;}
.y8b{bottom:700.090533pt;}
.y130{bottom:700.258533pt;}
.y3f{bottom:700.978533pt;}
.y153{bottom:713.938533pt;}
.y10c{bottom:713.950533pt;}
.y61{bottom:714.658533pt;}
.yb3{bottom:715.378533pt;}
.ye6{bottom:716.154133pt;}
.ycf{bottom:720.070133pt;}
.y100{bottom:720.363733pt;}
.y11{bottom:726.942267pt;}
.yc4{bottom:727.329467pt;}
.y152{bottom:728.338533pt;}
.y8a{bottom:728.542533pt;}
.y12f{bottom:729.778533pt;}
.y3e{bottom:730.498533pt;}
.yc3{bottom:741.729467pt;}
.ydd{bottom:743.458533pt;}
.y60{bottom:744.178533pt;}
.y3d{bottom:744.898533pt;}
.ye5{bottom:745.674133pt;}
.y10{bottom:756.462267pt;}
.y89{bottom:756.994533pt;}
.y151{bottom:757.858533pt;}
.y5f{bottom:758.578533pt;}
.y3c{bottom:759.298533pt;}
.y88{bottom:770.326533pt;}
.yf{bottom:770.862267pt;}
.yc2{bottom:771.249467pt;}
.y150{bottom:772.258533pt;}
.y5e{bottom:772.978533pt;}
.y3b{bottom:773.698533pt;}
.ye4{bottom:775.194133pt;}
.y87{bottom:783.658533pt;}
.y14f{bottom:786.658533pt;}
.y5d{bottom:787.378533pt;}
.y3a{bottom:788.098533pt;}
.y86{bottom:796.990533pt;}
.ye{bottom:800.382267pt;}
.y5c{bottom:801.778533pt;}
.yb2{bottom:802.498533pt;}
.y85{bottom:810.322533pt;}
.yd{bottom:814.782267pt;}
.ydc{bottom:816.178533pt;}
.yb1{bottom:816.898533pt;}
.y39{bottom:817.618533pt;}
.ydb{bottom:830.578533pt;}
.y5b{bottom:831.298533pt;}
.y38{bottom:832.018533pt;}
.y84{bottom:838.774533pt;}
.yc{bottom:844.302267pt;}
.yda{bottom:844.978533pt;}
.yb0{bottom:845.698533pt;}
.y37{bottom:846.418533pt;}
.yb{bottom:858.702267pt;}
.yaf{bottom:860.098533pt;}
.y36{bottom:860.818533pt;}
.yec{bottom:866.158533pt;}
.y83{bottom:867.226533pt;}
.yae{bottom:874.498533pt;}
.y35{bottom:875.218533pt;}
.y82{bottom:880.558533pt;}
.ya{bottom:888.202533pt;}
.yad{bottom:888.898533pt;}
.y34{bottom:889.618533pt;}
.y81{bottom:893.890533pt;}
.yac{bottom:903.298533pt;}
.y33{bottom:904.018533pt;}
.y9{bottom:906.874533pt;}
.y80{bottom:907.222533pt;}
.y5a{bottom:918.418533pt;}
.yce{bottom:919.138533pt;}
.y7f{bottom:920.554533pt;}
.y59{bottom:932.818533pt;}
.y32{bottom:933.538533pt;}
.y7e{bottom:933.886533pt;}
.y8{bottom:940.666533pt;}
.y31{bottom:947.938533pt;}
.y7{bottom:959.338533pt;}
.y30{bottom:962.338533pt;}
.y5{bottom:1035.648933pt;}
.y4{bottom:1050.048933pt;}
.y3{bottom:1064.448933pt;}
.y2{bottom:1078.848933pt;}
.y1{bottom:1093.248933pt;}
.h2{height:34.608000pt;}
.h5{height:39.504000pt;}
.h6{height:39.936000pt;}
.h4{height:53.376000pt;}
.h3{height:70.453125pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:75.590533pt;}
.x10{left:81.089333pt;}
.xa{left:88.181200pt;}
.xc{left:91.989200pt;}
.x11{left:189.557333pt;}
.xb{left:210.597200pt;}
.xd{left:235.397200pt;}
.x12{left:284.633867pt;}
.xf{left:332.777333pt;}
.x5{left:418.332267pt;}
.x2{left:432.504267pt;}
.x3{left:433.704267pt;}
.x4{left:520.752267pt;}
.x1{left:546.612267pt;}
.x14{left:581.102267pt;}
.x13{left:595.275600pt;}
.x8{left:635.976800pt;}
.x9{left:643.884800pt;}
.x6{left:679.371333pt;}
.x7{left:703.656800pt;}
}




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