
    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_565562d1609f4c58c64b6dc6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_adae968010dc8ddf7be70933.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_61a640beca9e7f5788fbf74e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_ad25a8830cd7655d598d81cc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_17c9f77298f2e56ca6bc22da.woff')format("woff");}.ff5{font-family:ff5;line-height:1.030273;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_aa70790d0f843eb638c368e9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f7bb725808f7e45762f5c5e0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.098145;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_bbeba174573434698ba2dc24.woff')format("woff");}.ffa{font-family:ffa;line-height:1.098145;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;}
.lsa{letter-spacing:-1.440000px;}
.ls2{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.262200px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.109200px;}
.ls8{letter-spacing:0.152400px;}
.ls7{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.305400px;}
.ls3{letter-spacing:64.002720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-59.760000px;}
.ws0{word-spacing:-20.844000px;}
.ws3{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.822200px;}
.ws1{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.297800px;}
.ws7{word-spacing:-16.254600px;}
.ws9{word-spacing:-16.102200px;}
.ws5{word-spacing:-15.840000px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-10.031040px;}
._1a{margin-left:-7.937280px;}
._1c{margin-left:-6.914880px;}
._0{margin-left:-5.760000px;}
._2{margin-left:-4.320000px;}
._5{margin-left:-3.240000px;}
._4{margin-left:-1.391040px;}
._1{width:1.080000px;}
._15{width:2.085600px;}
._6{width:3.093120px;}
._14{width:4.173120px;}
._b{width:5.232960px;}
._c{width:6.353280px;}
._a{width:7.485120px;}
._13{width:8.556480px;}
._10{width:10.002240px;}
._12{width:11.373120px;}
._f{width:12.519360px;}
._d{width:13.910400px;}
._e{width:15.261120px;}
._9{width:17.884800px;}
._11{width:19.454400px;}
._7{width:21.130560px;}
._8{width:22.515840px;}
._1b{width:24.189120px;}
._31{width:25.230720px;}
._18{width:26.496000px;}
._17{width:27.688320px;}
._16{width:28.880640px;}
._1d{width:30.000000px;}
._3c{width:32.594880px;}
._3d{width:33.782400px;}
._36{width:38.286720px;}
._33{width:40.671360px;}
._35{width:41.863680px;}
._3a{width:43.300800px;}
._3b{width:44.369760px;}
._32{width:45.771840px;}
._34{width:47.551200px;}
._2e{width:53.190720px;}
._2f{width:54.550560px;}
._30{width:55.737120px;}
._2a{width:66.326880px;}
._29{width:68.425920px;}
._28{width:73.460160px;}
._39{width:77.382720px;}
._1f{width:89.569920px;}
._1e{width:90.609600px;}
._24{width:97.041600px;}
._26{width:98.853120px;}
._25{width:99.887040px;}
._27{width:100.972320px;}
._2b{width:118.834560px;}
._2c{width:120.438720px;}
._2d{width:121.467360px;}
._37{width:126.319680px;}
._38{width:127.592160px;}
._21{width:171.976800px;}
._20{width:173.813760px;}
._23{width:189.143040px;}
._22{width:191.452800px;}
._19{width:847.596000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs0{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:16.920000px;}
.yb5{bottom:16.950000px;}
.ya8{bottom:17.100000px;}
.y173{bottom:115.056000px;}
.y2b{bottom:118.296000px;}
.y59{bottom:121.176000px;}
.y135{bottom:121.536000px;}
.y99{bottom:124.416000px;}
.y1cf{bottom:126.396000px;}
.y164{bottom:127.116000px;}
.yf1{bottom:132.156000px;}
.y172{bottom:135.576000px;}
.y2a{bottom:138.636000px;}
.y153{bottom:140.616000px;}
.y58{bottom:141.696000px;}
.y1bc{bottom:141.876000px;}
.ye6{bottom:142.056000px;}
.y10a{bottom:144.036000px;}
.y19b{bottom:144.936000px;}
.y163{bottom:147.636000px;}
.y171{bottom:156.090000px;}
.y98{bottom:156.810000px;}
.y1ce{bottom:158.970000px;}
.y29{bottom:159.150000px;}
.y57{bottom:162.210000px;}
.ye5{bottom:162.390000px;}
.y134{bottom:162.570000px;}
.yf0{bottom:164.550000px;}
.y19a{bottom:165.270000px;}
.y162{bottom:167.970000px;}
.y152{bottom:173.010000px;}
.y170{bottom:176.610000px;}
.y97{bottom:177.330000px;}
.y28{bottom:179.670000px;}
.ye4{bottom:182.910000px;}
.y109{bottom:185.070000px;}
.y161{bottom:188.490000px;}
.y1cd{bottom:191.370000px;}
.yef{bottom:193.530000px;}
.y56{bottom:194.610000px;}
.y1bb{bottom:194.970000px;}
.y16f{bottom:196.950000px;}
.y96{bottom:197.850000px;}
.y27{bottom:200.190000px;}
.ye3{bottom:203.430000px;}
.y108{bottom:205.410000px;}
.y160{bottom:209.010000px;}
.y55{bottom:215.130000px;}
.y1ba{bottom:215.310000px;}
.y16e{bottom:217.470000px;}
.y199{bottom:218.370000px;}
.y26{bottom:220.530000px;}
.y1cc{bottom:223.770000px;}
.ye2{bottom:223.950000px;}
.y107{bottom:225.930000px;}
.y15f{bottom:229.530000px;}
.y95{bottom:230.250000px;}
.y54{bottom:235.650000px;}
.y1b9{bottom:235.830000px;}
.y151{bottom:237.990000px;}
.y198{bottom:238.710000px;}
.ye1{bottom:244.290000px;}
.y133{bottom:244.470000px;}
.y106{bottom:246.450000px;}
.y15e{bottom:249.870000px;}
.y94{bottom:250.770000px;}
.y25{bottom:253.110000px;}
.y53{bottom:255.990000px;}
.y1cb{bottom:256.350000px;}
.y16d{bottom:258.510000px;}
.y132{bottom:264.810000px;}
.y1b8{bottom:268.410000px;}
.y150{bottom:270.390000px;}
.y197{bottom:271.290000px;}
.y24{bottom:273.450000px;}
.y52{bottom:276.510000px;}
.ye0{bottom:276.870000px;}
.yc2{bottom:277.770000px;}
.y105{bottom:278.850000px;}
.y93{bottom:283.170000px;}
.y131{bottom:285.330000px;}
.y1b7{bottom:288.750000px;}
.y196{bottom:291.630000px;}
.y23{bottom:293.970000px;}
.ydf{bottom:297.210000px;}
.y104{bottom:299.370000px;}
.y14f{bottom:302.970000px;}
.y92{bottom:303.690000px;}
.y130{bottom:305.850000px;}
.y51{bottom:309.090000px;}
.yc1{bottom:310.350000px;}
.y22{bottom:314.490000px;}
.y103{bottom:319.890000px;}
.y1b6{bottom:321.330000px;}
.y14e{bottom:323.310000px;}
.y195{bottom:324.210000px;}
.y50{bottom:329.430000px;}
.yde{bottom:329.790000px;}
.y16c{bottom:331.770000px;}
.y21{bottom:335.010000px;}
.y91{bottom:336.270000px;}
.y12f{bottom:338.295000px;}
.y102{bottom:340.455000px;}
.y1b5{bottom:341.715000px;}
.yc0{bottom:342.795000px;}
.y14d{bottom:343.875000px;}
.y194{bottom:344.775000px;}
.y4f{bottom:349.995000px;}
.ydd{bottom:350.355000px;}
.y114{bottom:352.335000px;}
.y1ca{bottom:353.775000px;}
.y20{bottom:355.395000px;}
.y90{bottom:356.655000px;}
.y12e{bottom:358.815000px;}
.y101{bottom:360.795000px;}
.y1b4{bottom:362.235000px;}
.ybf{bottom:363.315000px;}
.y14c{bottom:364.395000px;}
.y193{bottom:365.115000px;}
.y4e{bottom:370.515000px;}
.ydc{bottom:370.695000px;}
.y113{bottom:372.855000px;}
.y1f{bottom:375.915000px;}
.y12d{bottom:379.335000px;}
.ybe{bottom:383.835000px;}
.y14b{bottom:384.915000px;}
.y1c9{bottom:386.355000px;}
.y8f{bottom:389.235000px;}
.y4d{bottom:391.035000px;}
.y100{bottom:393.375000px;}
.y1b3{bottom:394.815000px;}
.y1e{bottom:396.435000px;}
.y192{bottom:397.695000px;}
.y12c{bottom:399.675000px;}
.ydb{bottom:403.275000px;}
.ybd{bottom:404.175000px;}
.y15d{bottom:405.255000px;}
.y8e{bottom:409.575000px;}
.y4c{bottom:411.375000px;}
.yff{bottom:413.715000px;}
.y1b2{bottom:415.155000px;}
.y1d{bottom:416.955000px;}
.y14a{bottom:417.315000px;}
.y191{bottom:418.215000px;}
.y1c8{bottom:418.755000px;}
.y12b{bottom:420.195000px;}
.yda{bottom:423.795000px;}
.y15c{bottom:425.775000px;}
.y4b{bottom:431.895000px;}
.yfe{bottom:434.235000px;}
.y1b1{bottom:435.675000px;}
.ybc{bottom:436.755000px;}
.y1c{bottom:437.295000px;}
.y149{bottom:437.835000px;}
.y190{bottom:438.555000px;}
.y1c7{bottom:439.275000px;}
.y12a{bottom:440.715000px;}
.y8d{bottom:442.155000px;}
.yd9{bottom:444.135000px;}
.ycd{bottom:445.035000px;}
.y15b{bottom:446.295000px;}
.yfd{bottom:454.755000px;}
.ybb{bottom:457.275000px;}
.y1b{bottom:457.815000px;}
.y148{bottom:458.355000px;}
.y18f{bottom:459.075000px;}
.y1c6{bottom:459.615000px;}
.y129{bottom:461.235000px;}
.y4a{bottom:464.295000px;}
.y112{bottom:466.815000px;}
.y1b0{bottom:468.255000px;}
.y8c{bottom:474.555000px;}
.yfc{bottom:475.275000px;}
.yd8{bottom:476.715000px;}
.ycc{bottom:477.435000px;}
.yba{bottom:477.615000px;}
.y1a{bottom:478.335000px;}
.y147{bottom:478.695000px;}
.y1c5{bottom:480.135000px;}
.y128{bottom:481.575000px;}
.y49{bottom:484.815000px;}
.y111{bottom:487.155000px;}
.y1af{bottom:488.595000px;}
.y18e{bottom:491.475000px;}
.y8b{bottom:495.075000px;}
.yfb{bottom:495.615000px;}
.yd7{bottom:497.235000px;}
.yb9{bottom:498.135000px;}
.y19{bottom:498.855000px;}
.y146{bottom:499.215000px;}
.y127{bottom:502.095000px;}
.y48{bottom:505.335000px;}
.y110{bottom:507.675000px;}
.ycb{bottom:510.015000px;}
.y18d{bottom:511.995000px;}
.y1c4{bottom:512.715000px;}
.y16b{bottom:516.135000px;}
.yd6{bottom:517.575000px;}
.yb8{bottom:518.655000px;}
.y1ae{bottom:521.175000px;}
.y47{bottom:525.855000px;}
.y8a{bottom:527.475000px;}
.yfa{bottom:528.195000px;}
.y18{bottom:530.535000px;}
.y145{bottom:531.615000px;}
.y18c{bottom:532.515000px;}
.yee{bottom:533.055000px;}
.y126{bottom:534.675000px;}
.y16a{bottom:536.655000px;}
.yd5{bottom:538.095000px;}
.y15a{bottom:540.255000px;}
.y1ad{bottom:541.695000px;}
.yca{bottom:542.415000px;}
.y46{bottom:546.195000px;}
.y89{bottom:547.995000px;}
.y10f{bottom:548.715000px;}
.yb7{bottom:551.055000px;}
.y144{bottom:552.135000px;}
.yed{bottom:553.575000px;}
.y125{bottom:555.015000px;}
.yd4{bottom:558.615000px;}
.yf9{bottom:560.595000px;}
.y1ac{bottom:562.035000px;}
.yc9{bottom:562.935000px;}
.y18b{bottom:564.915000px;}
.y45{bottom:566.715000px;}
.yb6{bottom:567.435000px;}
.y88{bottom:568.515000px;}
.y10e{bottom:569.055000px;}
.y143{bottom:572.655000px;}
.y124{bottom:575.535000px;}
.yd3{bottom:579.135000px;}
.yf8{bottom:581.115000px;}
.yc8{bottom:583.455000px;}
.y18a{bottom:585.435000px;}
.yec{bottom:586.155000px;}
.y44{bottom:587.235000px;}
.y17{bottom:587.775000px;}
.y87{bottom:589.035000px;}
.y169{bottom:589.575000px;}
.y142{bottom:593.175000px;}
.y1ab{bottom:594.615000px;}
.y123{bottom:596.055000px;}
.ya4{bottom:598.035000px;}
.yd2{bottom:599.475000px;}
.yb4{bottom:599.835000px;}
.yf7{bottom:601.635000px;}
.yc7{bottom:603.825000px;}
.y1c3{bottom:606.525000px;}
.y16{bottom:608.325000px;}
.y86{bottom:609.405000px;}
.y168{bottom:610.125000px;}
.y141{bottom:613.725000px;}
.y1aa{bottom:614.985000px;}
.y43{bottom:616.605000px;}
.y189{bottom:618.045000px;}
.yeb{bottom:618.585000px;}
.yd1{bottom:620.025000px;}
.y6f{bottom:622.185000px;}
.yc6{bottom:624.345000px;}
.y1c2{bottom:627.045000px;}
.y15{bottom:628.845000px;}
.ya3{bottom:630.645000px;}
.yb3{bottom:632.265000px;}
.y140{bottom:634.065000px;}
.y122{bottom:636.945000px;}
.y188{bottom:638.385000px;}
.y85{bottom:641.985000px;}
.yf6{bottom:642.525000px;}
.yc5{bottom:644.865000px;}
.y1a9{bottom:647.565000px;}
.y14{bottom:649.365000px;}
.ya2{bottom:650.985000px;}
.yd0{bottom:652.425000px;}
.y42{bottom:653.325000px;}
.y6e{bottom:654.585000px;}
.y121{bottom:657.465000px;}
.y187{bottom:658.905000px;}
.yf5{bottom:663.045000px;}
.yb2{bottom:664.845000px;}
.y13f{bottom:666.645000px;}
.y1a8{bottom:668.085000px;}
.y13{bottom:669.705000px;}
.ya1{bottom:671.505000px;}
.y41{bottom:673.845000px;}
.y84{bottom:674.385000px;}
.y6d{bottom:675.105000px;}
.yc4{bottom:677.265000px;}
.y120{bottom:677.985000px;}
.y1c1{bottom:679.965000px;}
.ycf{bottom:681.765000px;}
.yf4{bottom:683.565000px;}
.y13e{bottom:686.985000px;}
.y1a7{bottom:688.425000px;}
.y186{bottom:691.485000px;}
.ya0{bottom:692.025000px;}
.y40{bottom:694.365000px;}
.y83{bottom:694.905000px;}
.y6c{bottom:695.625000px;}
.yb1{bottom:697.965000px;}
.y11f{bottom:698.505000px;}
.y1c0{bottom:700.485000px;}
.y12{bottom:702.285000px;}
.y10d{bottom:704.085000px;}
.yc3{bottom:706.425000px;}
.y13d{bottom:707.505000px;}
.y185{bottom:711.825000px;}
.y9f{bottom:712.545000px;}
.y3f{bottom:714.885000px;}
.yce{bottom:715.245000px;}
.y82{bottom:715.425000px;}
.y6b{bottom:715.965000px;}
.y11e{bottom:718.845000px;}
.y1a6{bottom:721.005000px;}
.y11{bottom:722.805000px;}
.y167{bottom:724.425000px;}
.y13c{bottom:728.025000px;}
.y184{bottom:732.345000px;}
.y9e{bottom:732.885000px;}
.y3e{bottom:735.225000px;}
.y81{bottom:735.945000px;}
.y6a{bottom:736.485000px;}
.y11d{bottom:739.365000px;}
.y1a5{bottom:741.525000px;}
.y10{bottom:743.145000px;}
.yea{bottom:744.945000px;}
.yb0{bottom:748.185000px;}
.y13b{bottom:748.545000px;}
.y9d{bottom:753.405000px;}
.y3d{bottom:755.745000px;}
.y69{bottom:757.005000px;}
.y11c{bottom:759.885000px;}
.y1a4{bottom:761.865000px;}
.yf{bottom:763.665000px;}
.y183{bottom:764.745000px;}
.y166{bottom:765.465000px;}
.y80{bottom:768.345000px;}
.y13a{bottom:768.885000px;}
.y1bf{bottom:773.925000px;}
.y3c{bottom:776.265000px;}
.ye9{bottom:777.525000px;}
.y11b{bottom:780.405000px;}
.yaf{bottom:780.765000px;}
.ye{bottom:784.185000px;}
.y182{bottom:785.265000px;}
.y9c{bottom:785.985000px;}
.y7f{bottom:788.865000px;}
.y68{bottom:789.405000px;}
.y1a3{bottom:794.445000px;}
.ye8{bottom:797.865000px;}
.y11a{bottom:800.745000px;}
.y181{bottom:805.785000px;}
.y3b{bottom:808.665000px;}
.y7e{bottom:809.385000px;}
.y67{bottom:809.925000px;}
.yae{bottom:813.165000px;}
.y1a2{bottom:814.785000px;}
.yd{bottom:816.585000px;}
.y9b{bottom:818.385000px;}
.y119{bottom:821.265000px;}
.y139{bottom:821.985000px;}
.y3a{bottom:829.185000px;}
.y7d{bottom:829.725000px;}
.y66{bottom:830.445000px;}
.yad{bottom:833.685000px;}
.y1a1{bottom:835.305000px;}
.yc{bottom:837.105000px;}
.y180{bottom:838.185000px;}
.ye7{bottom:838.905000px;}
.y118{bottom:841.785000px;}
.y138{bottom:842.325000px;}
.y1be{bottom:847.365000px;}
.y39{bottom:849.705000px;}
.y7c{bottom:850.245000px;}
.y65{bottom:850.785000px;}
.yb{bottom:857.625000px;}
.y17f{bottom:858.705000px;}
.yf3{bottom:859.425000px;}
.y117{bottom:862.305000px;}
.y137{bottom:862.845000px;}
.yac{bottom:866.085000px;}
.y1a0{bottom:867.885000px;}
.y38{bottom:870.225000px;}
.y7b{bottom:870.810000px;}
.y64{bottom:871.350000px;}
.ya{bottom:878.190000px;}
.y17e{bottom:879.270000px;}
.y165{bottom:879.810000px;}
.y116{bottom:882.690000px;}
.y136{bottom:883.410000px;}
.yab{bottom:885.750000px;}
.y19f{bottom:888.270000px;}
.y37{bottom:890.610000px;}
.y7a{bottom:891.330000px;}
.yf2{bottom:891.870000px;}
.y9{bottom:898.530000px;}
.y1bd{bottom:900.330000px;}
.y115{bottom:903.210000px;}
.y63{bottom:903.930000px;}
.y36{bottom:911.130000px;}
.y17d{bottom:911.670000px;}
.y10c{bottom:912.390000px;}
.y8{bottom:919.050000px;}
.y19e{bottom:920.850000px;}
.ya9{bottom:922.830000px;}
.y79{bottom:923.730000px;}
.y62{bottom:924.270000px;}
.y35{bottom:931.650000px;}
.y17c{bottom:932.190000px;}
.y10b{bottom:932.730000px;}
.y177{bottom:937.770000px;}
.y7{bottom:939.570000px;}
.y19d{bottom:941.370000px;}
.y61{bottom:944.790000px;}
.y34{bottom:952.170000px;}
.y17b{bottom:952.710000px;}
.y159{bottom:953.250000px;}
.y78{bottom:956.130000px;}
.ya7{bottom:960.450000px;}
.y19c{bottom:961.710000px;}
.y60{bottom:965.310000px;}
.y176{bottom:970.170000px;}
.y6{bottom:971.250000px;}
.y33{bottom:972.510000px;}
.y158{bottom:973.770000px;}
.y77{bottom:976.650000px;}
.y17a{bottom:985.110000px;}
.y5f{bottom:985.830000px;}
.y157{bottom:994.290000px;}
.y76{bottom:997.170000px;}
.y32{bottom:1001.850000px;}
.y175{bottom:1002.750000px;}
.y179{bottom:1005.630000px;}
.y5e{bottom:1006.170000px;}
.ya6{bottom:1014.090000px;}
.y156{bottom:1014.630000px;}
.y75{bottom:1017.690000px;}
.y174{bottom:1023.270000px;}
.y178{bottom:1026.150000px;}
.y5d{bottom:1026.690000px;}
.y5{bottom:1028.490000px;}
.y155{bottom:1035.150000px;}
.y74{bottom:1038.030000px;}
.y31{bottom:1038.750000px;}
.ya5{bottom:1046.490000px;}
.y5c{bottom:1047.210000px;}
.y4{bottom:1049.010000px;}
.y154{bottom:1055.670000px;}
.y73{bottom:1058.550000px;}
.y30{bottom:1059.270000px;}
.y5b{bottom:1067.730000px;}
.y3{bottom:1070.610000px;}
.y72{bottom:1079.070000px;}
.y2f{bottom:1079.610000px;}
.y5a{bottom:1088.070000px;}
.y71{bottom:1099.590000px;}
.y2e{bottom:1100.130000px;}
.y2{bottom:1107.510000px;}
.y9a{bottom:1108.590000px;}
.y2d{bottom:1120.650000px;}
.y70{bottom:1131.270000px;}
.y1{bottom:1135.590000px;}
.y2c{bottom:1141.200000px;}
.ha{height:32.400000px;}
.hb{height:32.436000px;}
.h9{height:32.580000px;}
.h7{height:46.736719px;}
.h8{height:58.445156px;}
.h4{height:59.383125px;}
.h2{height:63.500977px;}
.hc{height:64.546875px;}
.h3{height:69.710625px;}
.h6{height:71.200898px;}
.h5{height:91.283203px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:161.850000px;}
.w7{width:162.000000px;}
.w3{width:166.680000px;}
.w6{width:166.710000px;}
.w4{width:167.760000px;}
.w5{width:167.790000px;}
.w8{width:169.590000px;}
.wa{width:181.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.080000px;}
.xa{left:5.400000px;}
.x1{left:106.235987px;}
.x5{left:108.576000px;}
.x2{left:133.235987px;}
.x11{left:142.235987px;}
.x4{left:148.715987px;}
.x3{left:160.229987px;}
.xb{left:268.230000px;}
.x7{left:277.635000px;}
.xc{left:437.835000px;}
.x8{left:447.735000px;}
.xd{left:599.685000px;}
.x9{left:617.865000px;}
.x10{left:777.929987px;}
.xf{left:782.429987px;}
.xe{left:792.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls2{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.233067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.097067pt;}
.ls8{letter-spacing:0.135467pt;}
.ls7{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.271467pt;}
.ls3{letter-spacing:56.891307pt;}
.ws4{word-spacing:-53.120000pt;}
.ws0{word-spacing:-18.528000pt;}
.ws3{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.953067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.486933pt;}
.ws7{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.313067pt;}
.ws5{word-spacing:-14.080000pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-8.916480pt;}
._1a{margin-left:-7.055360pt;}
._1c{margin-left:-6.146560pt;}
._0{margin-left:-5.120000pt;}
._2{margin-left:-3.840000pt;}
._5{margin-left:-2.880000pt;}
._4{margin-left:-1.236480pt;}
._1{width:0.960000pt;}
._15{width:1.853867pt;}
._6{width:2.749440pt;}
._14{width:3.709440pt;}
._b{width:4.651520pt;}
._c{width:5.647360pt;}
._a{width:6.653440pt;}
._13{width:7.605760pt;}
._10{width:8.890880pt;}
._12{width:10.109440pt;}
._f{width:11.128320pt;}
._d{width:12.364800pt;}
._e{width:13.565440pt;}
._9{width:15.897600pt;}
._11{width:17.292800pt;}
._7{width:18.782720pt;}
._8{width:20.014080pt;}
._1b{width:21.501440pt;}
._31{width:22.427307pt;}
._18{width:23.552000pt;}
._17{width:24.611840pt;}
._16{width:25.671680pt;}
._1d{width:26.666667pt;}
._3c{width:28.973227pt;}
._3d{width:30.028800pt;}
._36{width:34.032640pt;}
._33{width:36.152320pt;}
._35{width:37.212160pt;}
._3a{width:38.489600pt;}
._3b{width:39.439787pt;}
._32{width:40.686080pt;}
._34{width:42.267733pt;}
._2e{width:47.280640pt;}
._2f{width:48.489387pt;}
._30{width:49.544107pt;}
._2a{width:58.957227pt;}
._29{width:60.823040pt;}
._28{width:65.297920pt;}
._39{width:68.784640pt;}
._1f{width:79.617707pt;}
._1e{width:80.541867pt;}
._24{width:86.259200pt;}
._26{width:87.869440pt;}
._25{width:88.788480pt;}
._27{width:89.753173pt;}
._2b{width:105.630720pt;}
._2c{width:107.056640pt;}
._2d{width:107.970987pt;}
._37{width:112.284160pt;}
._38{width:113.415253pt;}
._21{width:152.868267pt;}
._20{width:154.501120pt;}
._23{width:168.127147pt;}
._22{width:170.180267pt;}
._19{width:753.418667pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs0{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:15.040000pt;}
.yb5{bottom:15.066667pt;}
.ya8{bottom:15.200000pt;}
.y173{bottom:102.272000pt;}
.y2b{bottom:105.152000pt;}
.y59{bottom:107.712000pt;}
.y135{bottom:108.032000pt;}
.y99{bottom:110.592000pt;}
.y1cf{bottom:112.352000pt;}
.y164{bottom:112.992000pt;}
.yf1{bottom:117.472000pt;}
.y172{bottom:120.512000pt;}
.y2a{bottom:123.232000pt;}
.y153{bottom:124.992000pt;}
.y58{bottom:125.952000pt;}
.y1bc{bottom:126.112000pt;}
.ye6{bottom:126.272000pt;}
.y10a{bottom:128.032000pt;}
.y19b{bottom:128.832000pt;}
.y163{bottom:131.232000pt;}
.y171{bottom:138.746667pt;}
.y98{bottom:139.386667pt;}
.y1ce{bottom:141.306667pt;}
.y29{bottom:141.466667pt;}
.y57{bottom:144.186667pt;}
.ye5{bottom:144.346667pt;}
.y134{bottom:144.506667pt;}
.yf0{bottom:146.266667pt;}
.y19a{bottom:146.906667pt;}
.y162{bottom:149.306667pt;}
.y152{bottom:153.786667pt;}
.y170{bottom:156.986667pt;}
.y97{bottom:157.626667pt;}
.y28{bottom:159.706667pt;}
.ye4{bottom:162.586667pt;}
.y109{bottom:164.506667pt;}
.y161{bottom:167.546667pt;}
.y1cd{bottom:170.106667pt;}
.yef{bottom:172.026667pt;}
.y56{bottom:172.986667pt;}
.y1bb{bottom:173.306667pt;}
.y16f{bottom:175.066667pt;}
.y96{bottom:175.866667pt;}
.y27{bottom:177.946667pt;}
.ye3{bottom:180.826667pt;}
.y108{bottom:182.586667pt;}
.y160{bottom:185.786667pt;}
.y55{bottom:191.226667pt;}
.y1ba{bottom:191.386667pt;}
.y16e{bottom:193.306667pt;}
.y199{bottom:194.106667pt;}
.y26{bottom:196.026667pt;}
.y1cc{bottom:198.906667pt;}
.ye2{bottom:199.066667pt;}
.y107{bottom:200.826667pt;}
.y15f{bottom:204.026667pt;}
.y95{bottom:204.666667pt;}
.y54{bottom:209.466667pt;}
.y1b9{bottom:209.626667pt;}
.y151{bottom:211.546667pt;}
.y198{bottom:212.186667pt;}
.ye1{bottom:217.146667pt;}
.y133{bottom:217.306667pt;}
.y106{bottom:219.066667pt;}
.y15e{bottom:222.106667pt;}
.y94{bottom:222.906667pt;}
.y25{bottom:224.986667pt;}
.y53{bottom:227.546667pt;}
.y1cb{bottom:227.866667pt;}
.y16d{bottom:229.786667pt;}
.y132{bottom:235.386667pt;}
.y1b8{bottom:238.586667pt;}
.y150{bottom:240.346667pt;}
.y197{bottom:241.146667pt;}
.y24{bottom:243.066667pt;}
.y52{bottom:245.786667pt;}
.ye0{bottom:246.106667pt;}
.yc2{bottom:246.906667pt;}
.y105{bottom:247.866667pt;}
.y93{bottom:251.706667pt;}
.y131{bottom:253.626667pt;}
.y1b7{bottom:256.666667pt;}
.y196{bottom:259.226667pt;}
.y23{bottom:261.306667pt;}
.ydf{bottom:264.186667pt;}
.y104{bottom:266.106667pt;}
.y14f{bottom:269.306667pt;}
.y92{bottom:269.946667pt;}
.y130{bottom:271.866667pt;}
.y51{bottom:274.746667pt;}
.yc1{bottom:275.866667pt;}
.y22{bottom:279.546667pt;}
.y103{bottom:284.346667pt;}
.y1b6{bottom:285.626667pt;}
.y14e{bottom:287.386667pt;}
.y195{bottom:288.186667pt;}
.y50{bottom:292.826667pt;}
.yde{bottom:293.146667pt;}
.y16c{bottom:294.906667pt;}
.y21{bottom:297.786667pt;}
.y91{bottom:298.906667pt;}
.y12f{bottom:300.706667pt;}
.y102{bottom:302.626667pt;}
.y1b5{bottom:303.746667pt;}
.yc0{bottom:304.706667pt;}
.y14d{bottom:305.666667pt;}
.y194{bottom:306.466667pt;}
.y4f{bottom:311.106667pt;}
.ydd{bottom:311.426667pt;}
.y114{bottom:313.186667pt;}
.y1ca{bottom:314.466667pt;}
.y20{bottom:315.906667pt;}
.y90{bottom:317.026667pt;}
.y12e{bottom:318.946667pt;}
.y101{bottom:320.706667pt;}
.y1b4{bottom:321.986667pt;}
.ybf{bottom:322.946667pt;}
.y14c{bottom:323.906667pt;}
.y193{bottom:324.546667pt;}
.y4e{bottom:329.346667pt;}
.ydc{bottom:329.506667pt;}
.y113{bottom:331.426667pt;}
.y1f{bottom:334.146667pt;}
.y12d{bottom:337.186667pt;}
.ybe{bottom:341.186667pt;}
.y14b{bottom:342.146667pt;}
.y1c9{bottom:343.426667pt;}
.y8f{bottom:345.986667pt;}
.y4d{bottom:347.586667pt;}
.y100{bottom:349.666667pt;}
.y1b3{bottom:350.946667pt;}
.y1e{bottom:352.386667pt;}
.y192{bottom:353.506667pt;}
.y12c{bottom:355.266667pt;}
.ydb{bottom:358.466667pt;}
.ybd{bottom:359.266667pt;}
.y15d{bottom:360.226667pt;}
.y8e{bottom:364.066667pt;}
.y4c{bottom:365.666667pt;}
.yff{bottom:367.746667pt;}
.y1b2{bottom:369.026667pt;}
.y1d{bottom:370.626667pt;}
.y14a{bottom:370.946667pt;}
.y191{bottom:371.746667pt;}
.y1c8{bottom:372.226667pt;}
.y12b{bottom:373.506667pt;}
.yda{bottom:376.706667pt;}
.y15c{bottom:378.466667pt;}
.y4b{bottom:383.906667pt;}
.yfe{bottom:385.986667pt;}
.y1b1{bottom:387.266667pt;}
.ybc{bottom:388.226667pt;}
.y1c{bottom:388.706667pt;}
.y149{bottom:389.186667pt;}
.y190{bottom:389.826667pt;}
.y1c7{bottom:390.466667pt;}
.y12a{bottom:391.746667pt;}
.y8d{bottom:393.026667pt;}
.yd9{bottom:394.786667pt;}
.ycd{bottom:395.586667pt;}
.y15b{bottom:396.706667pt;}
.yfd{bottom:404.226667pt;}
.ybb{bottom:406.466667pt;}
.y1b{bottom:406.946667pt;}
.y148{bottom:407.426667pt;}
.y18f{bottom:408.066667pt;}
.y1c6{bottom:408.546667pt;}
.y129{bottom:409.986667pt;}
.y4a{bottom:412.706667pt;}
.y112{bottom:414.946667pt;}
.y1b0{bottom:416.226667pt;}
.y8c{bottom:421.826667pt;}
.yfc{bottom:422.466667pt;}
.yd8{bottom:423.746667pt;}
.ycc{bottom:424.386667pt;}
.yba{bottom:424.546667pt;}
.y1a{bottom:425.186667pt;}
.y147{bottom:425.506667pt;}
.y1c5{bottom:426.786667pt;}
.y128{bottom:428.066667pt;}
.y49{bottom:430.946667pt;}
.y111{bottom:433.026667pt;}
.y1af{bottom:434.306667pt;}
.y18e{bottom:436.866667pt;}
.y8b{bottom:440.066667pt;}
.yfb{bottom:440.546667pt;}
.yd7{bottom:441.986667pt;}
.yb9{bottom:442.786667pt;}
.y19{bottom:443.426667pt;}
.y146{bottom:443.746667pt;}
.y127{bottom:446.306667pt;}
.y48{bottom:449.186667pt;}
.y110{bottom:451.266667pt;}
.ycb{bottom:453.346667pt;}
.y18d{bottom:455.106667pt;}
.y1c4{bottom:455.746667pt;}
.y16b{bottom:458.786667pt;}
.yd6{bottom:460.066667pt;}
.yb8{bottom:461.026667pt;}
.y1ae{bottom:463.266667pt;}
.y47{bottom:467.426667pt;}
.y8a{bottom:468.866667pt;}
.yfa{bottom:469.506667pt;}
.y18{bottom:471.586667pt;}
.y145{bottom:472.546667pt;}
.y18c{bottom:473.346667pt;}
.yee{bottom:473.826667pt;}
.y126{bottom:475.266667pt;}
.y16a{bottom:477.026667pt;}
.yd5{bottom:478.306667pt;}
.y15a{bottom:480.226667pt;}
.y1ad{bottom:481.506667pt;}
.yca{bottom:482.146667pt;}
.y46{bottom:485.506667pt;}
.y89{bottom:487.106667pt;}
.y10f{bottom:487.746667pt;}
.yb7{bottom:489.826667pt;}
.y144{bottom:490.786667pt;}
.yed{bottom:492.066667pt;}
.y125{bottom:493.346667pt;}
.yd4{bottom:496.546667pt;}
.yf9{bottom:498.306667pt;}
.y1ac{bottom:499.586667pt;}
.yc9{bottom:500.386667pt;}
.y18b{bottom:502.146667pt;}
.y45{bottom:503.746667pt;}
.yb6{bottom:504.386667pt;}
.y88{bottom:505.346667pt;}
.y10e{bottom:505.826667pt;}
.y143{bottom:509.026667pt;}
.y124{bottom:511.586667pt;}
.yd3{bottom:514.786667pt;}
.yf8{bottom:516.546667pt;}
.yc8{bottom:518.626667pt;}
.y18a{bottom:520.386667pt;}
.yec{bottom:521.026667pt;}
.y44{bottom:521.986667pt;}
.y17{bottom:522.466667pt;}
.y87{bottom:523.586667pt;}
.y169{bottom:524.066667pt;}
.y142{bottom:527.266667pt;}
.y1ab{bottom:528.546667pt;}
.y123{bottom:529.826667pt;}
.ya4{bottom:531.586667pt;}
.yd2{bottom:532.866667pt;}
.yb4{bottom:533.186667pt;}
.yf7{bottom:534.786667pt;}
.yc7{bottom:536.733333pt;}
.y1c3{bottom:539.133333pt;}
.y16{bottom:540.733333pt;}
.y86{bottom:541.693333pt;}
.y168{bottom:542.333333pt;}
.y141{bottom:545.533333pt;}
.y1aa{bottom:546.653333pt;}
.y43{bottom:548.093333pt;}
.y189{bottom:549.373333pt;}
.yeb{bottom:549.853333pt;}
.yd1{bottom:551.133333pt;}
.y6f{bottom:553.053333pt;}
.yc6{bottom:554.973333pt;}
.y1c2{bottom:557.373333pt;}
.y15{bottom:558.973333pt;}
.ya3{bottom:560.573333pt;}
.yb3{bottom:562.013333pt;}
.y140{bottom:563.613333pt;}
.y122{bottom:566.173333pt;}
.y188{bottom:567.453333pt;}
.y85{bottom:570.653333pt;}
.yf6{bottom:571.133333pt;}
.yc5{bottom:573.213333pt;}
.y1a9{bottom:575.613333pt;}
.y14{bottom:577.213333pt;}
.ya2{bottom:578.653333pt;}
.yd0{bottom:579.933333pt;}
.y42{bottom:580.733333pt;}
.y6e{bottom:581.853333pt;}
.y121{bottom:584.413333pt;}
.y187{bottom:585.693333pt;}
.yf5{bottom:589.373333pt;}
.yb2{bottom:590.973333pt;}
.y13f{bottom:592.573333pt;}
.y1a8{bottom:593.853333pt;}
.y13{bottom:595.293333pt;}
.ya1{bottom:596.893333pt;}
.y41{bottom:598.973333pt;}
.y84{bottom:599.453333pt;}
.y6d{bottom:600.093333pt;}
.yc4{bottom:602.013333pt;}
.y120{bottom:602.653333pt;}
.y1c1{bottom:604.413333pt;}
.ycf{bottom:606.013333pt;}
.yf4{bottom:607.613333pt;}
.y13e{bottom:610.653333pt;}
.y1a7{bottom:611.933333pt;}
.y186{bottom:614.653333pt;}
.ya0{bottom:615.133333pt;}
.y40{bottom:617.213333pt;}
.y83{bottom:617.693333pt;}
.y6c{bottom:618.333333pt;}
.yb1{bottom:620.413333pt;}
.y11f{bottom:620.893333pt;}
.y1c0{bottom:622.653333pt;}
.y12{bottom:624.253333pt;}
.y10d{bottom:625.853333pt;}
.yc3{bottom:627.933333pt;}
.y13d{bottom:628.893333pt;}
.y185{bottom:632.733333pt;}
.y9f{bottom:633.373333pt;}
.y3f{bottom:635.453333pt;}
.yce{bottom:635.773333pt;}
.y82{bottom:635.933333pt;}
.y6b{bottom:636.413333pt;}
.y11e{bottom:638.973333pt;}
.y1a6{bottom:640.893333pt;}
.y11{bottom:642.493333pt;}
.y167{bottom:643.933333pt;}
.y13c{bottom:647.133333pt;}
.y184{bottom:650.973333pt;}
.y9e{bottom:651.453333pt;}
.y3e{bottom:653.533333pt;}
.y81{bottom:654.173333pt;}
.y6a{bottom:654.653333pt;}
.y11d{bottom:657.213333pt;}
.y1a5{bottom:659.133333pt;}
.y10{bottom:660.573333pt;}
.yea{bottom:662.173333pt;}
.yb0{bottom:665.053333pt;}
.y13b{bottom:665.373333pt;}
.y9d{bottom:669.693333pt;}
.y3d{bottom:671.773333pt;}
.y69{bottom:672.893333pt;}
.y11c{bottom:675.453333pt;}
.y1a4{bottom:677.213333pt;}
.yf{bottom:678.813333pt;}
.y183{bottom:679.773333pt;}
.y166{bottom:680.413333pt;}
.y80{bottom:682.973333pt;}
.y13a{bottom:683.453333pt;}
.y1bf{bottom:687.933333pt;}
.y3c{bottom:690.013333pt;}
.ye9{bottom:691.133333pt;}
.y11b{bottom:693.693333pt;}
.yaf{bottom:694.013333pt;}
.ye{bottom:697.053333pt;}
.y182{bottom:698.013333pt;}
.y9c{bottom:698.653333pt;}
.y7f{bottom:701.213333pt;}
.y68{bottom:701.693333pt;}
.y1a3{bottom:706.173333pt;}
.ye8{bottom:709.213333pt;}
.y11a{bottom:711.773333pt;}
.y181{bottom:716.253333pt;}
.y3b{bottom:718.813333pt;}
.y7e{bottom:719.453333pt;}
.y67{bottom:719.933333pt;}
.yae{bottom:722.813333pt;}
.y1a2{bottom:724.253333pt;}
.yd{bottom:725.853333pt;}
.y9b{bottom:727.453333pt;}
.y119{bottom:730.013333pt;}
.y139{bottom:730.653333pt;}
.y3a{bottom:737.053333pt;}
.y7d{bottom:737.533333pt;}
.y66{bottom:738.173333pt;}
.yad{bottom:741.053333pt;}
.y1a1{bottom:742.493333pt;}
.yc{bottom:744.093333pt;}
.y180{bottom:745.053333pt;}
.ye7{bottom:745.693333pt;}
.y118{bottom:748.253333pt;}
.y138{bottom:748.733333pt;}
.y1be{bottom:753.213333pt;}
.y39{bottom:755.293333pt;}
.y7c{bottom:755.773333pt;}
.y65{bottom:756.253333pt;}
.yb{bottom:762.333333pt;}
.y17f{bottom:763.293333pt;}
.yf3{bottom:763.933333pt;}
.y117{bottom:766.493333pt;}
.y137{bottom:766.973333pt;}
.yac{bottom:769.853333pt;}
.y1a0{bottom:771.453333pt;}
.y38{bottom:773.533333pt;}
.y7b{bottom:774.053333pt;}
.y64{bottom:774.533333pt;}
.ya{bottom:780.613333pt;}
.y17e{bottom:781.573333pt;}
.y165{bottom:782.053333pt;}
.y116{bottom:784.613333pt;}
.y136{bottom:785.253333pt;}
.yab{bottom:787.333333pt;}
.y19f{bottom:789.573333pt;}
.y37{bottom:791.653333pt;}
.y7a{bottom:792.293333pt;}
.yf2{bottom:792.773333pt;}
.y9{bottom:798.693333pt;}
.y1bd{bottom:800.293333pt;}
.y115{bottom:802.853333pt;}
.y63{bottom:803.493333pt;}
.y36{bottom:809.893333pt;}
.y17d{bottom:810.373333pt;}
.y10c{bottom:811.013333pt;}
.y8{bottom:816.933333pt;}
.y19e{bottom:818.533333pt;}
.ya9{bottom:820.293333pt;}
.y79{bottom:821.093333pt;}
.y62{bottom:821.573333pt;}
.y35{bottom:828.133333pt;}
.y17c{bottom:828.613333pt;}
.y10b{bottom:829.093333pt;}
.y177{bottom:833.573333pt;}
.y7{bottom:835.173333pt;}
.y19d{bottom:836.773333pt;}
.y61{bottom:839.813333pt;}
.y34{bottom:846.373333pt;}
.y17b{bottom:846.853333pt;}
.y159{bottom:847.333333pt;}
.y78{bottom:849.893333pt;}
.ya7{bottom:853.733333pt;}
.y19c{bottom:854.853333pt;}
.y60{bottom:858.053333pt;}
.y176{bottom:862.373333pt;}
.y6{bottom:863.333333pt;}
.y33{bottom:864.453333pt;}
.y158{bottom:865.573333pt;}
.y77{bottom:868.133333pt;}
.y17a{bottom:875.653333pt;}
.y5f{bottom:876.293333pt;}
.y157{bottom:883.813333pt;}
.y76{bottom:886.373333pt;}
.y32{bottom:890.533333pt;}
.y175{bottom:891.333333pt;}
.y179{bottom:893.893333pt;}
.y5e{bottom:894.373333pt;}
.ya6{bottom:901.413333pt;}
.y156{bottom:901.893333pt;}
.y75{bottom:904.613333pt;}
.y174{bottom:909.573333pt;}
.y178{bottom:912.133333pt;}
.y5d{bottom:912.613333pt;}
.y5{bottom:914.213333pt;}
.y155{bottom:920.133333pt;}
.y74{bottom:922.693333pt;}
.y31{bottom:923.333333pt;}
.ya5{bottom:930.213333pt;}
.y5c{bottom:930.853333pt;}
.y4{bottom:932.453333pt;}
.y154{bottom:938.373333pt;}
.y73{bottom:940.933333pt;}
.y30{bottom:941.573333pt;}
.y5b{bottom:949.093333pt;}
.y3{bottom:951.653333pt;}
.y72{bottom:959.173333pt;}
.y2f{bottom:959.653333pt;}
.y5a{bottom:967.173333pt;}
.y71{bottom:977.413333pt;}
.y2e{bottom:977.893333pt;}
.y2{bottom:984.453333pt;}
.y9a{bottom:985.413333pt;}
.y2d{bottom:996.133333pt;}
.y70{bottom:1005.573333pt;}
.y1{bottom:1009.413333pt;}
.y2c{bottom:1014.400000pt;}
.ha{height:28.800000pt;}
.hb{height:28.832000pt;}
.h9{height:28.960000pt;}
.h7{height:41.543750pt;}
.h8{height:51.951250pt;}
.h4{height:52.785000pt;}
.h2{height:56.445312pt;}
.hc{height:57.375000pt;}
.h3{height:61.965000pt;}
.h6{height:63.289687pt;}
.h5{height:81.140625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:143.866667pt;}
.w7{width:144.000000pt;}
.w3{width:148.160000pt;}
.w6{width:148.186667pt;}
.w4{width:149.120000pt;}
.w5{width:149.146667pt;}
.w8{width:150.746667pt;}
.wa{width:160.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:0.960000pt;}
.xa{left:4.800000pt;}
.x1{left:94.431988pt;}
.x5{left:96.512000pt;}
.x2{left:118.431988pt;}
.x11{left:126.431988pt;}
.x4{left:132.191988pt;}
.x3{left:142.426655pt;}
.xb{left:238.426667pt;}
.x7{left:246.786667pt;}
.xc{left:389.186667pt;}
.x8{left:397.986667pt;}
.xd{left:533.053333pt;}
.x9{left:549.213333pt;}
.x10{left:691.493322pt;}
.xf{left:695.493322pt;}
.xe{left:704.453322pt;}
}




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