
    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_70223e19ce9c8307983d4919.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_e6f0708552efe89a65852fea.woff')format("woff");}.ff2{font-family:ff2;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e05b2107b61cdb2e12a9f62a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6e679169fa812ec975072aed.woff')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3fd30b5d65735a403de223ba.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_b55ef11ad6054de8fe0baf61.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_aa6a56863633b289f9de36c8.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4a3e8254fc36feafa2ae79a7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-2.136000px;}
.ls3{letter-spacing:-1.416000px;}
.lsd{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.618000px;}
.ls14{letter-spacing:-0.313800px;}
.lsa{letter-spacing:-0.207600px;}
.ls7{letter-spacing:-0.172800px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.ls8{letter-spacing:0.054720px;}
.lsb{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.075000px;}
.ls5{letter-spacing:0.100800px;}
.lsc{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.175680px;}
.lse{letter-spacing:0.262080px;}
.ls13{letter-spacing:0.328320px;}
.ls10{letter-spacing:39.185280px;}
.ls9{letter-spacing:55.386720px;}
.lsf{letter-spacing:67.265280px;}
.ls1{letter-spacing:93.427200px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws6{word-spacing:-59.760000px;}
.ws9{word-spacing:-14.679600px;}
.wsa{word-spacing:-14.647800px;}
.ws7{word-spacing:-14.644800px;}
.ws4{word-spacing:-14.627520px;}
.ws0{word-spacing:-14.595840px;}
.ws2{word-spacing:-14.572800px;}
.wsb{word-spacing:-14.259000px;}
.ws1{word-spacing:-13.156800px;}
.ws3{word-spacing:-12.436800px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-4.464960px;}
._5{margin-left:-3.312000px;}
._18{margin-left:-2.305920px;}
._1{margin-left:-1.297920px;}
._2{width:1.559280px;}
._a{width:3.469440px;}
._8{width:5.166720px;}
._9{width:6.332160px;}
._c{width:7.497600px;}
._b{width:8.544960px;}
._d{width:9.803520px;}
._e{width:11.327040px;}
._6{width:13.044480px;}
._19{width:15.698880px;}
._16{width:17.089920px;}
._24{width:18.156960px;}
._3{width:19.408320px;}
._4{width:20.904960px;}
._7{width:22.548480px;}
._17{width:24.256320px;}
._11{width:25.568640px;}
._27{width:26.646720px;}
._10{width:27.661440px;}
._14{width:28.805520px;}
._12{width:30.006720px;}
._23{width:31.175760px;}
._22{width:32.192640px;}
._2a{width:33.203760px;}
._13{width:34.246080px;}
._15{width:36.073920px;}
._1e{width:37.624320px;}
._1f{width:38.816640px;}
._25{width:40.247040px;}
._26{width:41.326800px;}
._29{width:48.951360px;}
._1a{width:63.391680px;}
._21{width:73.923840px;}
._1d{width:111.481920px;}
._20{width:120.689280px;}
._1c{width:124.133760px;}
._1b{width:125.392320px;}
._28{width:175.507200px;}
._f{width:195.213600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:15.654000px;}
.y94{bottom:15.660000px;}
.ybc{bottom:15.840000px;}
.y8{bottom:16.200000px;}
.y9e{bottom:16.374000px;}
.y7{bottom:33.480000px;}
.y93{bottom:34.920000px;}
.ya0{bottom:46.974000px;}
.y97{bottom:46.980000px;}
.ybb{bottom:47.160000px;}
.y9d{bottom:47.694000px;}
.y6{bottom:56.520000px;}
.y9f{bottom:78.294000px;}
.yb2{bottom:78.300000px;}
.yb9{bottom:78.330000px;}
.yb5{bottom:78.345000px;}
.y96{bottom:78.480000px;}
.y9c{bottom:79.014000px;}
.y9b{bottom:110.334000px;}
.y33{bottom:111.456000px;}
.y70{bottom:114.696000px;}
.y173{bottom:117.936000px;}
.y156{bottom:118.116000px;}
.y12d{bottom:123.336000px;}
.yc3{bottom:127.836000px;}
.ye7{bottom:128.916000px;}
.y108{bottom:129.096000px;}
.y32{bottom:132.336000px;}
.y6f{bottom:134.136000px;}
.y144{bottom:134.856000px;}
.y98{bottom:135.756000px;}
.y155{bottom:137.376000px;}
.y9a{bottom:141.654000px;}
.y12c{bottom:144.216000px;}
.yc2{bottom:148.716000px;}
.ye6{bottom:149.976000px;}
.y31{bottom:153.210000px;}
.y192{bottom:153.570000px;}
.y172{bottom:155.190000px;}
.y154{bottom:156.810000px;}
.y127{bottom:158.790000px;}
.yfb{bottom:161.850000px;}
.y12b{bottom:165.090000px;}
.y6e{bottom:166.890000px;}
.y143{bottom:167.610000px;}
.yc1{bottom:169.590000px;}
.ye5{bottom:170.850000px;}
.y191{bottom:172.830000px;}
.y99{bottom:173.154000px;}
.y30{bottom:174.090000px;}
.y153{bottom:176.070000px;}
.y126{bottom:179.850000px;}
.yfa{bottom:182.910000px;}
.y5c{bottom:185.790000px;}
.y12a{bottom:185.970000px;}
.ye4{bottom:191.730000px;}
.y171{bottom:192.450000px;}
.y2f{bottom:194.970000px;}
.y152{bottom:195.510000px;}
.y6d{bottom:199.470000px;}
.y142{bottom:200.550000px;}
.y125{bottom:200.730000px;}
.yc0{bottom:202.350000px;}
.yf9{bottom:203.790000px;}
.y5b{bottom:206.850000px;}
.y190{bottom:210.270000px;}
.y170{bottom:211.890000px;}
.ye3{bottom:212.610000px;}
.y151{bottom:214.770000px;}
.y2e{bottom:215.850000px;}
.y124{bottom:221.610000px;}
.yf8{bottom:224.670000px;}
.y5a{bottom:227.730000px;}
.y6c{bottom:229.350000px;}
.y18f{bottom:229.530000px;}
.y95{bottom:230.430000px;}
.y16f{bottom:231.150000px;}
.y141{bottom:233.310000px;}
.ye2{bottom:233.490000px;}
.ybf{bottom:233.850000px;}
.y150{bottom:234.210000px;}
.y123{bottom:242.310000px;}
.yf7{bottom:245.550000px;}
.y2d{bottom:248.610000px;}
.y14f{bottom:253.470000px;}
.ye1{bottom:254.370000px;}
.y122{bottom:263.190000px;}
.ybe{bottom:265.170000px;}
.y18e{bottom:266.970000px;}
.y16e{bottom:268.590000px;}
.y59{bottom:269.490000px;}
.y14e{bottom:272.730000px;}
.ye0{bottom:275.250000px;}
.yf6{bottom:278.130000px;}
.y6b{bottom:279.930000px;}
.y2c{bottom:281.550000px;}
.y121{bottom:284.070000px;}
.y18d{bottom:286.230000px;}
.y16d{bottom:287.850000px;}
.y58{bottom:290.370000px;}
.y14d{bottom:292.170000px;}
.ydf{bottom:296.130000px;}
.yf5{bottom:299.190000px;}
.y6a{bottom:299.370000px;}
.y120{bottom:304.950000px;}
.y18c{bottom:305.670000px;}
.ybd{bottom:306.030000px;}
.y16c{bottom:307.110000px;}
.y57{bottom:311.250000px;}
.y14c{bottom:311.430000px;}
.y2b{bottom:314.310000px;}
.yde{bottom:317.055000px;}
.yf4{bottom:320.115000px;}
.ya3{bottom:322.635000px;}
.y18b{bottom:324.975000px;}
.y92{bottom:325.335000px;}
.y140{bottom:328.935000px;}
.y69{bottom:330.735000px;}
.y14b{bottom:330.915000px;}
.y56{bottom:332.175000px;}
.y2a{bottom:335.415000px;}
.y11f{bottom:337.755000px;}
.ydd{bottom:337.935000px;}
.yf3{bottom:340.995000px;}
.y16b{bottom:344.595000px;}
.y68{bottom:349.995000px;}
.y14a{bottom:350.175000px;}
.y55{bottom:353.055000px;}
.y29{bottom:354.855000px;}
.y107{bottom:358.815000px;}
.yf2{bottom:361.875000px;}
.y18a{bottom:362.415000px;}
.y149{bottom:369.615000px;}
.ydc{bottom:370.695000px;}
.y54{bottom:373.935000px;}
.y28{bottom:374.115000px;}
.y106{bottom:379.695000px;}
.y67{bottom:381.495000px;}
.y189{bottom:381.675000px;}
.y16a{bottom:381.855000px;}
.y13f{bottom:382.575000px;}
.yf1{bottom:382.755000px;}
.y148{bottom:388.875000px;}
.ydb{bottom:391.755000px;}
.y27{bottom:393.555000px;}
.y53{bottom:394.815000px;}
.y105{bottom:400.575000px;}
.y188{bottom:400.935000px;}
.y169{bottom:401.295000px;}
.y91{bottom:401.835000px;}
.yf0{bottom:403.635000px;}
.y147{bottom:408.315000px;}
.yda{bottom:412.635000px;}
.y26{bottom:412.815000px;}
.y52{bottom:415.695000px;}
.yba{bottom:417.315000px;}
.y187{bottom:420.375000px;}
.y168{bottom:420.555000px;}
.y104{bottom:421.455000px;}
.yef{bottom:424.515000px;}
.y146{bottom:427.575000px;}
.y25{bottom:432.075000px;}
.yd9{bottom:433.515000px;}
.y90{bottom:434.775000px;}
.y13e{bottom:436.395000px;}
.y51{bottom:436.575000px;}
.y186{bottom:439.635000px;}
.y11e{bottom:442.335000px;}
.yee{bottom:445.395000px;}
.y145{bottom:447.015000px;}
.y24{bottom:451.515000px;}
.y103{bottom:454.215000px;}
.yd8{bottom:454.395000px;}
.y50{bottom:457.455000px;}
.y167{bottom:457.995000px;}
.y8f{bottom:466.275000px;}
.y23{bottom:470.775000px;}
.y11d{bottom:475.095000px;}
.yd7{bottom:475.275000px;}
.y185{bottom:477.075000px;}
.y166{bottom:477.255000px;}
.yed{bottom:478.155000px;}
.y4f{bottom:478.335000px;}
.y8e{bottom:485.715000px;}
.yb0{bottom:486.390000px;}
.y102{bottom:486.975000px;}
.y22{bottom:490.215000px;}
.y11c{bottom:496.155000px;}
.y184{bottom:496.335000px;}
.y4e{bottom:499.215000px;}
.y66{bottom:502.095000px;}
.y8d{bottom:504.975000px;}
.yaf{bottom:505.875000px;}
.yd6{bottom:507.855000px;}
.y101{bottom:508.035000px;}
.y21{bottom:509.475000px;}
.yb8{bottom:512.175000px;}
.y165{bottom:514.695000px;}
.y11b{bottom:517.035000px;}
.y4d{bottom:520.095000px;}
.y13d{bottom:522.975000px;}
.y8c{bottom:524.415000px;}
.yae{bottom:525.135000px;}
.y20{bottom:528.915000px;}
.y65{bottom:533.415000px;}
.y183{bottom:533.775000px;}
.y164{bottom:533.955000px;}
.y11a{bottom:537.735000px;}
.y4c{bottom:540.975000px;}
.y8b{bottom:543.675000px;}
.y13c{bottom:544.035000px;}
.yad{bottom:544.575000px;}
.y1f{bottom:548.175000px;}
.yd5{bottom:549.795000px;}
.y64{bottom:552.855000px;}
.y182{bottom:553.035000px;}
.y163{bottom:553.215000px;}
.y119{bottom:558.615000px;}
.y4b{bottom:561.855000px;}
.y8a{bottom:562.935000px;}
.yac{bottom:563.835000px;}
.y13b{bottom:564.915000px;}
.y1e{bottom:567.615000px;}
.yd4{bottom:570.705000px;}
.y63{bottom:572.145000px;}
.y181{bottom:572.325000px;}
.y118{bottom:579.525000px;}
.y89{bottom:582.405000px;}
.y4a{bottom:582.765000px;}
.yab{bottom:583.275000px;}
.y13a{bottom:585.825000px;}
.y1d{bottom:586.905000px;}
.y162{bottom:590.685000px;}
.y62{bottom:591.585000px;}
.y88{bottom:601.665000px;}
.yaa{bottom:602.535000px;}
.y49{bottom:603.645000px;}
.y1c{bottom:606.345000px;}
.y139{bottom:606.705000px;}
.yb7{bottom:607.065000px;}
.y180{bottom:609.765000px;}
.y161{bottom:610.125000px;}
.y117{bottom:612.285000px;}
.yd3{bottom:612.465000px;}
.y87{bottom:621.105000px;}
.ya9{bottom:621.975000px;}
.y61{bottom:622.905000px;}
.y48{bottom:624.525000px;}
.y1b{bottom:625.605000px;}
.y138{bottom:627.585000px;}
.y17f{bottom:629.205000px;}
.y160{bottom:629.385000px;}
.y116{bottom:633.345000px;}
.y86{bottom:640.365000px;}
.ya8{bottom:641.235000px;}
.y1a{bottom:645.045000px;}
.yd2{bottom:645.225000px;}
.y47{bottom:645.405000px;}
.y19c{bottom:646.845000px;}
.y137{bottom:648.465000px;}
.y60{bottom:654.225000px;}
.yec{bottom:657.105000px;}
.y85{bottom:659.805000px;}
.ya7{bottom:660.675000px;}
.y19{bottom:664.305000px;}
.y46{bottom:666.285000px;}
.y15f{bottom:666.645000px;}
.y136{bottom:669.345000px;}
.yb6{bottom:670.425000px;}
.y115{bottom:675.105000px;}
.yeb{bottom:678.165000px;}
.y84{bottom:679.065000px;}
.y19b{bottom:679.425000px;}
.ya6{bottom:679.935000px;}
.y17e{bottom:685.905000px;}
.y15e{bottom:686.085000px;}
.y5f{bottom:686.985000px;}
.y45{bottom:687.165000px;}
.y135{bottom:690.225000px;}
.y114{bottom:695.985000px;}
.y18{bottom:697.065000px;}
.y83{bottom:698.505000px;}
.yea{bottom:699.045000px;}
.y17d{bottom:705.165000px;}
.y15d{bottom:705.345000px;}
.yd1{bottom:708.045000px;}
.y134{bottom:711.105000px;}
.ya5{bottom:711.255000px;}
.y19a{bottom:712.365000px;}
.y17{bottom:716.505000px;}
.y113{bottom:716.865000px;}
.y82{bottom:717.765000px;}
.y44{bottom:719.745000px;}
.ye9{bottom:719.925000px;}
.y17c{bottom:724.425000px;}
.yd0{bottom:728.925000px;}
.y133{bottom:731.985000px;}
.y16{bottom:735.945000px;}
.y81{bottom:737.205000px;}
.y112{bottom:737.745000px;}
.y43{bottom:740.805000px;}
.ya4{bottom:742.575000px;}
.y15c{bottom:742.785000px;}
.y199{bottom:743.865000px;}
.ycf{bottom:749.805000px;}
.y132{bottom:752.865000px;}
.y15{bottom:755.205000px;}
.y80{bottom:756.465000px;}
.y111{bottom:758.625000px;}
.y42{bottom:761.685000px;}
.y17b{bottom:761.865000px;}
.y15b{bottom:762.045000px;}
.yb4{bottom:765.285000px;}
.yce{bottom:770.685000px;}
.y131{bottom:773.745000px;}
.y14{bottom:774.645000px;}
.y7f{bottom:775.905000px;}
.y17a{bottom:781.125000px;}
.y15a{bottom:781.485000px;}
.y129{bottom:782.385000px;}
.y41{bottom:782.565000px;}
.y110{bottom:791.385000px;}
.y100{bottom:791.565000px;}
.y13{bottom:793.905000px;}
.y130{bottom:794.625000px;}
.y7e{bottom:795.165000px;}
.y179{bottom:800.385000px;}
.y159{bottom:800.745000px;}
.ycd{bottom:803.265000px;}
.y40{bottom:803.445000px;}
.y10f{bottom:812.445000px;}
.y12{bottom:813.345000px;}
.y7d{bottom:814.605000px;}
.y12f{bottom:815.505000px;}
.yff{bottom:824.190000px;}
.y3f{bottom:824.370000px;}
.y11{bottom:832.650000px;}
.y10e{bottom:833.190000px;}
.y7c{bottom:833.910000px;}
.ycc{bottom:836.250000px;}
.y12e{bottom:836.430000px;}
.y178{bottom:837.870000px;}
.y198{bottom:838.050000px;}
.y158{bottom:838.230000px;}
.y3e{bottom:845.250000px;}
.y10{bottom:851.910000px;}
.y7b{bottom:853.170000px;}
.y10d{bottom:854.070000px;}
.ycb{bottom:857.310000px;}
.yb3{bottom:860.010000px;}
.y3d{bottom:866.130000px;}
.y157{bottom:870.810000px;}
.yf{bottom:871.350000px;}
.y7a{bottom:872.610000px;}
.y10c{bottom:874.950000px;}
.y197{bottom:875.310000px;}
.y177{bottom:876.570000px;}
.ye8{bottom:878.010000px;}
.yca{bottom:878.190000px;}
.y3c{bottom:887.010000px;}
.ye{bottom:890.610000px;}
.y79{bottom:891.870000px;}
.y196{bottom:894.570000px;}
.y10b{bottom:895.830000px;}
.yc9{bottom:899.070000px;}
.y3b{bottom:907.890000px;}
.yd{bottom:910.050000px;}
.y78{bottom:911.310000px;}
.y195{bottom:913.830000px;}
.y10a{bottom:916.710000px;}
.y128{bottom:919.770000px;}
.yc8{bottom:919.950000px;}
.y3a{bottom:928.770000px;}
.yc{bottom:929.310000px;}
.y77{bottom:930.570000px;}
.y176{bottom:933.450000px;}
.yc7{bottom:940.830000px;}
.y109{bottom:949.470000px;}
.y39{bottom:949.650000px;}
.y76{bottom:950.010000px;}
.y194{bottom:951.270000px;}
.yb1{bottom:954.870000px;}
.yc6{bottom:961.710000px;}
.yb{bottom:963.690000px;}
.y75{bottom:969.270000px;}
.y38{bottom:970.530000px;}
.y175{bottom:970.710000px;}
.yc5{bottom:982.590000px;}
.y74{bottom:988.710000px;}
.y174{bottom:989.970000px;}
.ya{bottom:990.150000px;}
.y5e{bottom:991.410000px;}
.y37{bottom:1003.290000px;}
.yc4{bottom:1003.470000px;}
.y73{bottom:1007.970000px;}
.y193{bottom:1009.230000px;}
.yfe{bottom:1012.290000px;}
.y9{bottom:1016.790000px;}
.y5d{bottom:1024.170000px;}
.y36{bottom:1024.350000px;}
.y72{bottom:1027.410000px;}
.yfd{bottom:1033.170000px;}
.y5{bottom:1038.930000px;}
.y35{bottom:1045.230000px;}
.y71{bottom:1046.670000px;}
.ya2{bottom:1049.550000px;}
.y4{bottom:1052.250000px;}
.yfc{bottom:1065.930000px;}
.y34{bottom:1066.110000px;}
.y3{bottom:1074.600000px;}
.y2{bottom:1096.740000px;}
.y1{bottom:1119.060000px;}
.h2{height:25.559297px;}
.hb{height:31.356000px;}
.h3{height:32.040000px;}
.h7{height:50.580000px;}
.h6{height:51.998203px;}
.h5{height:56.084062px;}
.h1{height:57.636562px;}
.hf{height:62.640000px;}
.h4{height:71.324297px;}
.ha{height:93.960000px;}
.he{height:93.996000px;}
.hd{height:94.140000px;}
.h8{height:94.176000px;}
.h9{height:188.850000px;}
.hc{height:758.265000px;}
.h0{height:1188.000000px;}
.w4{width:95.040000px;}
.w5{width:190.650000px;}
.w2{width:322.950000px;}
.w3{width:392.295000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x4{left:10.800000px;}
.x19{left:33.660000px;}
.x18{left:38.160000px;}
.x16{left:41.940000px;}
.x3{left:109.296000px;}
.x13{left:119.376000px;}
.x1{left:127.655986px;}
.x5{left:146.915986px;}
.x11{left:154.649986px;}
.x6{left:166.889986px;}
.x12{left:181.649986px;}
.xb{left:232.589986px;}
.xa{left:270.209986px;}
.x1b{left:278.129986px;}
.x7{left:312.554986px;}
.x8{left:320.114986px;}
.x9{left:328.034986px;}
.xd{left:331.274986px;}
.xe{left:346.034986px;}
.xc{left:355.934986px;}
.x1c{left:398.054986px;}
.x10{left:430.094986px;}
.x1d{left:431.174986px;}
.xf{left:459.074986px;}
.x1a{left:486.104986px;}
.x15{left:512.385000px;}
.x17{left:608.145000px;}
.x2{left:753.989986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.898667pt;}
.ls3{letter-spacing:-1.258667pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.549333pt;}
.ls14{letter-spacing:-0.278933pt;}
.lsa{letter-spacing:-0.184533pt;}
.ls7{letter-spacing:-0.153600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls8{letter-spacing:0.048640pt;}
.lsb{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.066667pt;}
.ls5{letter-spacing:0.089600pt;}
.lsc{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.156160pt;}
.lse{letter-spacing:0.232960pt;}
.ls13{letter-spacing:0.291840pt;}
.ls10{letter-spacing:34.831360pt;}
.ls9{letter-spacing:49.232640pt;}
.lsf{letter-spacing:59.791360pt;}
.ls1{letter-spacing:83.046400pt;}
.ws8{word-spacing:-58.880000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws9{word-spacing:-13.048533pt;}
.wsa{word-spacing:-13.020267pt;}
.ws7{word-spacing:-13.017600pt;}
.ws4{word-spacing:-13.002240pt;}
.ws0{word-spacing:-12.974080pt;}
.ws2{word-spacing:-12.953600pt;}
.wsb{word-spacing:-12.674667pt;}
.ws1{word-spacing:-11.694933pt;}
.ws3{word-spacing:-11.054933pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-3.968853pt;}
._5{margin-left:-2.944000pt;}
._18{margin-left:-2.049707pt;}
._1{margin-left:-1.153707pt;}
._2{width:1.386027pt;}
._a{width:3.083947pt;}
._8{width:4.592640pt;}
._9{width:5.628587pt;}
._c{width:6.664533pt;}
._b{width:7.595520pt;}
._d{width:8.714240pt;}
._e{width:10.068480pt;}
._6{width:11.595093pt;}
._19{width:13.954560pt;}
._16{width:15.191040pt;}
._24{width:16.139520pt;}
._3{width:17.251840pt;}
._4{width:18.582187pt;}
._7{width:20.043093pt;}
._17{width:21.561173pt;}
._11{width:22.727680pt;}
._27{width:23.685973pt;}
._10{width:24.587947pt;}
._14{width:25.604907pt;}
._12{width:26.672640pt;}
._23{width:27.711787pt;}
._22{width:28.615680pt;}
._2a{width:29.514453pt;}
._13{width:30.440960pt;}
._15{width:32.065707pt;}
._1e{width:33.443840pt;}
._1f{width:34.503680pt;}
._25{width:35.775147pt;}
._26{width:36.734933pt;}
._29{width:43.512320pt;}
._1a{width:56.348160pt;}
._21{width:65.710080pt;}
._1d{width:99.095040pt;}
._20{width:107.279360pt;}
._1c{width:110.341120pt;}
._1b{width:111.459840pt;}
._28{width:156.006400pt;}
._f{width:173.523200pt;}
.fs1{font-size:26.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:13.914667pt;}
.y94{bottom:13.920000pt;}
.ybc{bottom:14.080000pt;}
.y8{bottom:14.400000pt;}
.y9e{bottom:14.554667pt;}
.y7{bottom:29.760000pt;}
.y93{bottom:31.040000pt;}
.ya0{bottom:41.754667pt;}
.y97{bottom:41.760000pt;}
.ybb{bottom:41.920000pt;}
.y9d{bottom:42.394667pt;}
.y6{bottom:50.240000pt;}
.y9f{bottom:69.594667pt;}
.yb2{bottom:69.600000pt;}
.yb9{bottom:69.626667pt;}
.yb5{bottom:69.640000pt;}
.y96{bottom:69.760000pt;}
.y9c{bottom:70.234667pt;}
.y9b{bottom:98.074667pt;}
.y33{bottom:99.072000pt;}
.y70{bottom:101.952000pt;}
.y173{bottom:104.832000pt;}
.y156{bottom:104.992000pt;}
.y12d{bottom:109.632000pt;}
.yc3{bottom:113.632000pt;}
.ye7{bottom:114.592000pt;}
.y108{bottom:114.752000pt;}
.y32{bottom:117.632000pt;}
.y6f{bottom:119.232000pt;}
.y144{bottom:119.872000pt;}
.y98{bottom:120.672000pt;}
.y155{bottom:122.112000pt;}
.y9a{bottom:125.914667pt;}
.y12c{bottom:128.192000pt;}
.yc2{bottom:132.192000pt;}
.ye6{bottom:133.312000pt;}
.y31{bottom:136.186667pt;}
.y192{bottom:136.506667pt;}
.y172{bottom:137.946667pt;}
.y154{bottom:139.386667pt;}
.y127{bottom:141.146667pt;}
.yfb{bottom:143.866667pt;}
.y12b{bottom:146.746667pt;}
.y6e{bottom:148.346667pt;}
.y143{bottom:148.986667pt;}
.yc1{bottom:150.746667pt;}
.ye5{bottom:151.866667pt;}
.y191{bottom:153.626667pt;}
.y99{bottom:153.914667pt;}
.y30{bottom:154.746667pt;}
.y153{bottom:156.506667pt;}
.y126{bottom:159.866667pt;}
.yfa{bottom:162.586667pt;}
.y5c{bottom:165.146667pt;}
.y12a{bottom:165.306667pt;}
.ye4{bottom:170.426667pt;}
.y171{bottom:171.066667pt;}
.y2f{bottom:173.306667pt;}
.y152{bottom:173.786667pt;}
.y6d{bottom:177.306667pt;}
.y142{bottom:178.266667pt;}
.y125{bottom:178.426667pt;}
.yc0{bottom:179.866667pt;}
.yf9{bottom:181.146667pt;}
.y5b{bottom:183.866667pt;}
.y190{bottom:186.906667pt;}
.y170{bottom:188.346667pt;}
.ye3{bottom:188.986667pt;}
.y151{bottom:190.906667pt;}
.y2e{bottom:191.866667pt;}
.y124{bottom:196.986667pt;}
.yf8{bottom:199.706667pt;}
.y5a{bottom:202.426667pt;}
.y6c{bottom:203.866667pt;}
.y18f{bottom:204.026667pt;}
.y95{bottom:204.826667pt;}
.y16f{bottom:205.466667pt;}
.y141{bottom:207.386667pt;}
.ye2{bottom:207.546667pt;}
.ybf{bottom:207.866667pt;}
.y150{bottom:208.186667pt;}
.y123{bottom:215.386667pt;}
.yf7{bottom:218.266667pt;}
.y2d{bottom:220.986667pt;}
.y14f{bottom:225.306667pt;}
.ye1{bottom:226.106667pt;}
.y122{bottom:233.946667pt;}
.ybe{bottom:235.706667pt;}
.y18e{bottom:237.306667pt;}
.y16e{bottom:238.746667pt;}
.y59{bottom:239.546667pt;}
.y14e{bottom:242.426667pt;}
.ye0{bottom:244.666667pt;}
.yf6{bottom:247.226667pt;}
.y6b{bottom:248.826667pt;}
.y2c{bottom:250.266667pt;}
.y121{bottom:252.506667pt;}
.y18d{bottom:254.426667pt;}
.y16d{bottom:255.866667pt;}
.y58{bottom:258.106667pt;}
.y14d{bottom:259.706667pt;}
.ydf{bottom:263.226667pt;}
.yf5{bottom:265.946667pt;}
.y6a{bottom:266.106667pt;}
.y120{bottom:271.066667pt;}
.y18c{bottom:271.706667pt;}
.ybd{bottom:272.026667pt;}
.y16c{bottom:272.986667pt;}
.y57{bottom:276.666667pt;}
.y14c{bottom:276.826667pt;}
.y2b{bottom:279.386667pt;}
.yde{bottom:281.826667pt;}
.yf4{bottom:284.546667pt;}
.ya3{bottom:286.786667pt;}
.y18b{bottom:288.866667pt;}
.y92{bottom:289.186667pt;}
.y140{bottom:292.386667pt;}
.y69{bottom:293.986667pt;}
.y14b{bottom:294.146667pt;}
.y56{bottom:295.266667pt;}
.y2a{bottom:298.146667pt;}
.y11f{bottom:300.226667pt;}
.ydd{bottom:300.386667pt;}
.yf3{bottom:303.106667pt;}
.y16b{bottom:306.306667pt;}
.y68{bottom:311.106667pt;}
.y14a{bottom:311.266667pt;}
.y55{bottom:313.826667pt;}
.y29{bottom:315.426667pt;}
.y107{bottom:318.946667pt;}
.yf2{bottom:321.666667pt;}
.y18a{bottom:322.146667pt;}
.y149{bottom:328.546667pt;}
.ydc{bottom:329.506667pt;}
.y54{bottom:332.386667pt;}
.y28{bottom:332.546667pt;}
.y106{bottom:337.506667pt;}
.y67{bottom:339.106667pt;}
.y189{bottom:339.266667pt;}
.y16a{bottom:339.426667pt;}
.y13f{bottom:340.066667pt;}
.yf1{bottom:340.226667pt;}
.y148{bottom:345.666667pt;}
.ydb{bottom:348.226667pt;}
.y27{bottom:349.826667pt;}
.y53{bottom:350.946667pt;}
.y105{bottom:356.066667pt;}
.y188{bottom:356.386667pt;}
.y169{bottom:356.706667pt;}
.y91{bottom:357.186667pt;}
.yf0{bottom:358.786667pt;}
.y147{bottom:362.946667pt;}
.yda{bottom:366.786667pt;}
.y26{bottom:366.946667pt;}
.y52{bottom:369.506667pt;}
.yba{bottom:370.946667pt;}
.y187{bottom:373.666667pt;}
.y168{bottom:373.826667pt;}
.y104{bottom:374.626667pt;}
.yef{bottom:377.346667pt;}
.y146{bottom:380.066667pt;}
.y25{bottom:384.066667pt;}
.yd9{bottom:385.346667pt;}
.y90{bottom:386.466667pt;}
.y13e{bottom:387.906667pt;}
.y51{bottom:388.066667pt;}
.y186{bottom:390.786667pt;}
.y11e{bottom:393.186667pt;}
.yee{bottom:395.906667pt;}
.y145{bottom:397.346667pt;}
.y24{bottom:401.346667pt;}
.y103{bottom:403.746667pt;}
.yd8{bottom:403.906667pt;}
.y50{bottom:406.626667pt;}
.y167{bottom:407.106667pt;}
.y8f{bottom:414.466667pt;}
.y23{bottom:418.466667pt;}
.y11d{bottom:422.306667pt;}
.yd7{bottom:422.466667pt;}
.y185{bottom:424.066667pt;}
.y166{bottom:424.226667pt;}
.yed{bottom:425.026667pt;}
.y4f{bottom:425.186667pt;}
.y8e{bottom:431.746667pt;}
.yb0{bottom:432.346667pt;}
.y102{bottom:432.866667pt;}
.y22{bottom:435.746667pt;}
.y11c{bottom:441.026667pt;}
.y184{bottom:441.186667pt;}
.y4e{bottom:443.746667pt;}
.y66{bottom:446.306667pt;}
.y8d{bottom:448.866667pt;}
.yaf{bottom:449.666667pt;}
.yd6{bottom:451.426667pt;}
.y101{bottom:451.586667pt;}
.y21{bottom:452.866667pt;}
.yb8{bottom:455.266667pt;}
.y165{bottom:457.506667pt;}
.y11b{bottom:459.586667pt;}
.y4d{bottom:462.306667pt;}
.y13d{bottom:464.866667pt;}
.y8c{bottom:466.146667pt;}
.yae{bottom:466.786667pt;}
.y20{bottom:470.146667pt;}
.y65{bottom:474.146667pt;}
.y183{bottom:474.466667pt;}
.y164{bottom:474.626667pt;}
.y11a{bottom:477.986667pt;}
.y4c{bottom:480.866667pt;}
.y8b{bottom:483.266667pt;}
.y13c{bottom:483.586667pt;}
.yad{bottom:484.066667pt;}
.y1f{bottom:487.266667pt;}
.yd5{bottom:488.706667pt;}
.y64{bottom:491.426667pt;}
.y182{bottom:491.586667pt;}
.y163{bottom:491.746667pt;}
.y119{bottom:496.546667pt;}
.y4b{bottom:499.426667pt;}
.y8a{bottom:500.386667pt;}
.yac{bottom:501.186667pt;}
.y13b{bottom:502.146667pt;}
.y1e{bottom:504.546667pt;}
.yd4{bottom:507.293333pt;}
.y63{bottom:508.573333pt;}
.y181{bottom:508.733333pt;}
.y118{bottom:515.133333pt;}
.y89{bottom:517.693333pt;}
.y4a{bottom:518.013333pt;}
.yab{bottom:518.466667pt;}
.y13a{bottom:520.733333pt;}
.y1d{bottom:521.693333pt;}
.y162{bottom:525.053333pt;}
.y62{bottom:525.853333pt;}
.y88{bottom:534.813333pt;}
.yaa{bottom:535.586667pt;}
.y49{bottom:536.573333pt;}
.y1c{bottom:538.973333pt;}
.y139{bottom:539.293333pt;}
.yb7{bottom:539.613333pt;}
.y180{bottom:542.013333pt;}
.y161{bottom:542.333333pt;}
.y117{bottom:544.253333pt;}
.yd3{bottom:544.413333pt;}
.y87{bottom:552.093333pt;}
.ya9{bottom:552.866667pt;}
.y61{bottom:553.693333pt;}
.y48{bottom:555.133333pt;}
.y1b{bottom:556.093333pt;}
.y138{bottom:557.853333pt;}
.y17f{bottom:559.293333pt;}
.y160{bottom:559.453333pt;}
.y116{bottom:562.973333pt;}
.y86{bottom:569.213333pt;}
.ya8{bottom:569.986667pt;}
.y1a{bottom:573.373333pt;}
.yd2{bottom:573.533333pt;}
.y47{bottom:573.693333pt;}
.y19c{bottom:574.973333pt;}
.y137{bottom:576.413333pt;}
.y60{bottom:581.533333pt;}
.yec{bottom:584.093333pt;}
.y85{bottom:586.493333pt;}
.ya7{bottom:587.266667pt;}
.y19{bottom:590.493333pt;}
.y46{bottom:592.253333pt;}
.y15f{bottom:592.573333pt;}
.y136{bottom:594.973333pt;}
.yb6{bottom:595.933333pt;}
.y115{bottom:600.093333pt;}
.yeb{bottom:602.813333pt;}
.y84{bottom:603.613333pt;}
.y19b{bottom:603.933333pt;}
.ya6{bottom:604.386667pt;}
.y17e{bottom:609.693333pt;}
.y15e{bottom:609.853333pt;}
.y5f{bottom:610.653333pt;}
.y45{bottom:610.813333pt;}
.y135{bottom:613.533333pt;}
.y114{bottom:618.653333pt;}
.y18{bottom:619.613333pt;}
.y83{bottom:620.893333pt;}
.yea{bottom:621.373333pt;}
.y17d{bottom:626.813333pt;}
.y15d{bottom:626.973333pt;}
.yd1{bottom:629.373333pt;}
.y134{bottom:632.093333pt;}
.ya5{bottom:632.226667pt;}
.y19a{bottom:633.213333pt;}
.y17{bottom:636.893333pt;}
.y113{bottom:637.213333pt;}
.y82{bottom:638.013333pt;}
.y44{bottom:639.773333pt;}
.ye9{bottom:639.933333pt;}
.y17c{bottom:643.933333pt;}
.yd0{bottom:647.933333pt;}
.y133{bottom:650.653333pt;}
.y16{bottom:654.173333pt;}
.y81{bottom:655.293333pt;}
.y112{bottom:655.773333pt;}
.y43{bottom:658.493333pt;}
.ya4{bottom:660.066667pt;}
.y15c{bottom:660.253333pt;}
.y199{bottom:661.213333pt;}
.ycf{bottom:666.493333pt;}
.y132{bottom:669.213333pt;}
.y15{bottom:671.293333pt;}
.y80{bottom:672.413333pt;}
.y111{bottom:674.333333pt;}
.y42{bottom:677.053333pt;}
.y17b{bottom:677.213333pt;}
.y15b{bottom:677.373333pt;}
.yb4{bottom:680.253333pt;}
.yce{bottom:685.053333pt;}
.y131{bottom:687.773333pt;}
.y14{bottom:688.573333pt;}
.y7f{bottom:689.693333pt;}
.y17a{bottom:694.333333pt;}
.y15a{bottom:694.653333pt;}
.y129{bottom:695.453333pt;}
.y41{bottom:695.613333pt;}
.y110{bottom:703.453333pt;}
.y100{bottom:703.613333pt;}
.y13{bottom:705.693333pt;}
.y130{bottom:706.333333pt;}
.y7e{bottom:706.813333pt;}
.y179{bottom:711.453333pt;}
.y159{bottom:711.773333pt;}
.ycd{bottom:714.013333pt;}
.y40{bottom:714.173333pt;}
.y10f{bottom:722.173333pt;}
.y12{bottom:722.973333pt;}
.y7d{bottom:724.093333pt;}
.y12f{bottom:724.893333pt;}
.yff{bottom:732.613333pt;}
.y3f{bottom:732.773333pt;}
.y11{bottom:740.133333pt;}
.y10e{bottom:740.613333pt;}
.y7c{bottom:741.253333pt;}
.ycc{bottom:743.333333pt;}
.y12e{bottom:743.493333pt;}
.y178{bottom:744.773333pt;}
.y198{bottom:744.933333pt;}
.y158{bottom:745.093333pt;}
.y3e{bottom:751.333333pt;}
.y10{bottom:757.253333pt;}
.y7b{bottom:758.373333pt;}
.y10d{bottom:759.173333pt;}
.ycb{bottom:762.053333pt;}
.yb3{bottom:764.453333pt;}
.y3d{bottom:769.893333pt;}
.y157{bottom:774.053333pt;}
.yf{bottom:774.533333pt;}
.y7a{bottom:775.653333pt;}
.y10c{bottom:777.733333pt;}
.y197{bottom:778.053333pt;}
.y177{bottom:779.173333pt;}
.ye8{bottom:780.453333pt;}
.yca{bottom:780.613333pt;}
.y3c{bottom:788.453333pt;}
.ye{bottom:791.653333pt;}
.y79{bottom:792.773333pt;}
.y196{bottom:795.173333pt;}
.y10b{bottom:796.293333pt;}
.yc9{bottom:799.173333pt;}
.y3b{bottom:807.013333pt;}
.yd{bottom:808.933333pt;}
.y78{bottom:810.053333pt;}
.y195{bottom:812.293333pt;}
.y10a{bottom:814.853333pt;}
.y128{bottom:817.573333pt;}
.yc8{bottom:817.733333pt;}
.y3a{bottom:825.573333pt;}
.yc{bottom:826.053333pt;}
.y77{bottom:827.173333pt;}
.y176{bottom:829.733333pt;}
.yc7{bottom:836.293333pt;}
.y109{bottom:843.973333pt;}
.y39{bottom:844.133333pt;}
.y76{bottom:844.453333pt;}
.y194{bottom:845.573333pt;}
.yb1{bottom:848.773333pt;}
.yc6{bottom:854.853333pt;}
.yb{bottom:856.613333pt;}
.y75{bottom:861.573333pt;}
.y38{bottom:862.693333pt;}
.y175{bottom:862.853333pt;}
.yc5{bottom:873.413333pt;}
.y74{bottom:878.853333pt;}
.y174{bottom:879.973333pt;}
.ya{bottom:880.133333pt;}
.y5e{bottom:881.253333pt;}
.y37{bottom:891.813333pt;}
.yc4{bottom:891.973333pt;}
.y73{bottom:895.973333pt;}
.y193{bottom:897.093333pt;}
.yfe{bottom:899.813333pt;}
.y9{bottom:903.813333pt;}
.y5d{bottom:910.373333pt;}
.y36{bottom:910.533333pt;}
.y72{bottom:913.253333pt;}
.yfd{bottom:918.373333pt;}
.y5{bottom:923.493333pt;}
.y35{bottom:929.093333pt;}
.y71{bottom:930.373333pt;}
.ya2{bottom:932.933333pt;}
.y4{bottom:935.333333pt;}
.yfc{bottom:947.493333pt;}
.y34{bottom:947.653333pt;}
.y3{bottom:955.200000pt;}
.y2{bottom:974.880000pt;}
.y1{bottom:994.720000pt;}
.h2{height:22.719375pt;}
.hb{height:27.872000pt;}
.h3{height:28.480000pt;}
.h7{height:44.960000pt;}
.h6{height:46.220625pt;}
.h5{height:49.852500pt;}
.h1{height:51.232500pt;}
.hf{height:55.680000pt;}
.h4{height:63.399375pt;}
.ha{height:83.520000pt;}
.he{height:83.552000pt;}
.hd{height:83.680000pt;}
.h8{height:83.712000pt;}
.h9{height:167.866667pt;}
.hc{height:674.013333pt;}
.h0{height:1056.000000pt;}
.w4{width:84.480000pt;}
.w5{width:169.466667pt;}
.w2{width:287.066667pt;}
.w3{width:348.706667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x4{left:9.600000pt;}
.x19{left:29.920000pt;}
.x18{left:33.920000pt;}
.x16{left:37.280000pt;}
.x3{left:97.152000pt;}
.x13{left:106.112000pt;}
.x1{left:113.471988pt;}
.x5{left:130.591988pt;}
.x11{left:137.466655pt;}
.x6{left:148.346655pt;}
.x12{left:161.466655pt;}
.xb{left:206.746655pt;}
.xa{left:240.186655pt;}
.x1b{left:247.226655pt;}
.x7{left:277.826655pt;}
.x8{left:284.546655pt;}
.x9{left:291.586655pt;}
.xd{left:294.466655pt;}
.xe{left:307.586655pt;}
.xc{left:316.386655pt;}
.x1c{left:353.826655pt;}
.x10{left:382.306655pt;}
.x1d{left:383.266655pt;}
.xf{left:408.066655pt;}
.x1a{left:432.093321pt;}
.x15{left:455.453333pt;}
.x17{left:540.573333pt;}
.x2{left:670.213321pt;}
}




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