
    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_a0312cba58629c05f6f00160.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_910633ca2e13b92e51ea2b88.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_84c925a3f8e404efbb721799.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_50990a5f3a2216eb718b6a88.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_d2f0e166faf5613d57102aa1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.982910;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;}
.v1{vertical-align:38.903040px;}
.ls12{letter-spacing:-0.696960px;}
.ls10{letter-spacing:-0.570240px;}
.ls1f{letter-spacing:-0.331200px;}
.lsd{letter-spacing:-0.316800px;}
.ls13{letter-spacing:-0.190080px;}
.ls31{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.119520px;}
.ls18{letter-spacing:-0.084240px;}
.ls25{letter-spacing:-0.063360px;}
.lsc{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.051840px;}
.ls8{letter-spacing:0.063360px;}
.lse{letter-spacing:0.120240px;}
.ls2a{letter-spacing:0.126720px;}
.ls24{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.190080px;}
.ls29{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.218880px;}
.ls0{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.316800px;}
.ls1c{letter-spacing:0.331200px;}
.ls1b{letter-spacing:0.336960px;}
.ls1e{letter-spacing:0.421200px;}
.ls2d{letter-spacing:1.077120px;}
.ls21{letter-spacing:3.294720px;}
.ls27{letter-spacing:4.688640px;}
.ls2e{letter-spacing:5.860800px;}
.ls2f{letter-spacing:7.603200px;}
.ls23{letter-spacing:9.757440px;}
.ls2b{letter-spacing:11.271744px;}
.ls26{letter-spacing:16.220160px;}
.ls4{letter-spacing:29.905920px;}
.ls28{letter-spacing:37.825920px;}
.ls22{letter-spacing:52.208640px;}
.ls20{letter-spacing:52.704000px;}
.ls9{letter-spacing:135.717120px;}
.ls14{letter-spacing:142.153920px;}
.ls2c{letter-spacing:160.237440px;}
.ls15{letter-spacing:385.516800px;}
.ls7{letter-spacing:541.837440px;}
.ls6{letter-spacing:545.402880px;}
.ls5{letter-spacing:583.591680px;}
.ls16{letter-spacing:634.656960px;}
.ls2{letter-spacing:667.797120px;}
.lsb{letter-spacing:846.362880px;}
.ls1d{letter-spacing:846.385920px;}
.ls1{letter-spacing:867.254400px;}
.ls3{letter-spacing:888.163200px;}
.lsa{letter-spacing:1468.494720px;}
.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;}
}
.ws2c{word-spacing:-63.360000px;}
.ws1{word-spacing:-33.546960px;}
.ws2a{word-spacing:-23.334480px;}
.ws0{word-spacing:-20.304000px;}
.ws2b{word-spacing:-20.160000px;}
.ws23{word-spacing:-18.745920px;}
.ws15{word-spacing:-18.282240px;}
.ws4d{word-spacing:-17.930880px;}
.ws4{word-spacing:-17.804160px;}
.ws2{word-spacing:-17.677440px;}
.ws5{word-spacing:-17.614080px;}
.ws6{word-spacing:-17.424000px;}
.ws8{word-spacing:-17.297280px;}
.ws3{word-spacing:-17.043840px;}
.ws7{word-spacing:-16.917120px;}
.ws3b{word-spacing:-15.012000px;}
.ws1d{word-spacing:-4.688640px;}
.ws20{word-spacing:-3.991680px;}
.ws22{word-spacing:-3.294720px;}
.ws1c{word-spacing:-2.534400px;}
.ws31{word-spacing:-1.837440px;}
.ws19{word-spacing:-1.330560px;}
.ws14{word-spacing:-1.203840px;}
.ws18{word-spacing:-1.077120px;}
.ws32{word-spacing:-0.864000px;}
.ws24{word-spacing:-0.758160px;}
.ws50{word-spacing:-0.633600px;}
.ws4f{word-spacing:-0.506880px;}
.wsf{word-spacing:-0.380160px;}
.wsd{word-spacing:-0.360720px;}
.ws25{word-spacing:-0.331200px;}
.ws3d{word-spacing:-0.316800px;}
.ws53{word-spacing:-0.288000px;}
.ws26{word-spacing:-0.264960px;}
.ws29{word-spacing:-0.252720px;}
.wse{word-spacing:-0.240480px;}
.ws44{word-spacing:-0.190080px;}
.ws30{word-spacing:-0.144000px;}
.ws52{word-spacing:-0.126720px;}
.ws42{word-spacing:-0.108000px;}
.wsa{word-spacing:-0.063360px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:0.059760px;}
.ws35{word-spacing:0.063360px;}
.ws28{word-spacing:0.132480px;}
.ws51{word-spacing:0.190080px;}
.ws55{word-spacing:0.288000px;}
.wsb{word-spacing:0.316800px;}
.ws54{word-spacing:0.336960px;}
.ws3f{word-spacing:0.380160px;}
.ws16{word-spacing:0.421200px;}
.ws17{word-spacing:0.463680px;}
.ws45{word-spacing:0.506880px;}
.ws4e{word-spacing:0.570240px;}
.ws27{word-spacing:0.662400px;}
.ws11{word-spacing:0.696960px;}
.ws4c{word-spacing:1.077120px;}
.ws1b{word-spacing:1.774080px;}
.ws3c{word-spacing:2.471040px;}
.ws2f{word-spacing:3.928320px;}
.ws2e{word-spacing:4.625280px;}
.ws40{word-spacing:5.005440px;}
.ws34{word-spacing:5.385600px;}
.ws4b{word-spacing:6.082560px;}
.ws47{word-spacing:6.842880px;}
.ws4a{word-spacing:7.539840px;}
.ws21{word-spacing:8.236800px;}
.ws33{word-spacing:8.997120px;}
.ws39{word-spacing:9.694080px;}
.ws3a{word-spacing:10.391040px;}
.ws43{word-spacing:11.151360px;}
.ws3e{word-spacing:11.848320px;}
.ws1a{word-spacing:12.545280px;}
.ws59{word-spacing:13.305600px;}
.ws41{word-spacing:14.002560px;}
.ws58{word-spacing:14.762880px;}
.ws1e{word-spacing:16.156800px;}
.ws36{word-spacing:18.311040px;}
.ws1f{word-spacing:20.465280px;}
.ws2d{word-spacing:21.225600px;}
.ws37{word-spacing:22.682880px;}
.ws10{word-spacing:29.145600px;}
.ws13{word-spacing:32.757120px;}
.ws38{word-spacing:35.608320px;}
.ws46{word-spacing:37.762560px;}
.ws57{word-spacing:42.071040px;}
.ws56{word-spacing:56.517120px;}
.ws12{word-spacing:57.214080px;}
.ws49{word-spacing:160.174080px;}
.ws48{word-spacing:161.631360px;}
._6{margin-left:-19.275840px;}
._8{margin-left:-18.251712px;}
._4{margin-left:-16.626240px;}
._7{margin-left:-13.711680px;}
._c{margin-left:-12.400416px;}
._d{margin-left:-11.304288px;}
._b{margin-left:-9.924480px;}
._5{margin-left:-7.948800px;}
._a{margin-left:-6.480000px;}
._9{margin-left:-3.775680px;}
._2{margin-left:-2.204928px;}
._0{margin-left:-1.203840px;}
._1{width:1.541808px;}
._f{width:3.548160px;}
._e{width:59.304960px;}
._10{width:160.554240px;}
._3{width:846.886608px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(74,134,232);}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(51,90,147);}
.fc4{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:3.420000px;}
.y10f{bottom:19.440000px;}
.y34{bottom:21.420000px;}
.ye9{bottom:21.600000px;}
.y21{bottom:25.920000px;}
.y1a{bottom:26.100000px;}
.y2f{bottom:39.600000px;}
.yeb{bottom:39.780000px;}
.y11c{bottom:43.020000px;}
.y6{bottom:56.527200px;}
.ye4{bottom:57.780000px;}
.y5{bottom:75.064320px;}
.y129{bottom:75.780000px;}
.y154{bottom:75.960000px;}
.y163{bottom:93.960000px;}
.y11a{bottom:112.140000px;}
.y148{bottom:122.040000px;}
.yf2{bottom:123.300000px;}
.y13a{bottom:130.140000px;}
.y159{bottom:130.320000px;}
.yf7{bottom:131.220000px;}
.yf6{bottom:132.840000px;}
.y171{bottom:133.380000px;}
.y125{bottom:133.920000px;}
.y8b{bottom:134.844480px;}
.y14a{bottom:143.645760px;}
.yd6{bottom:151.200000px;}
.y103{bottom:151.920000px;}
.y100{bottom:153.720000px;}
.y8a{bottom:154.818720px;}
.y126{bottom:155.520000px;}
.y29{bottom:160.014240px;}
.y149{bottom:161.640000px;}
.y16f{bottom:167.940000px;}
.y9e{bottom:171.000000px;}
.y10d{bottom:174.420000px;}
.y89{bottom:174.792960px;}
.yf0{bottom:176.040000px;}
.y28{bottom:179.814240px;}
.yc0{bottom:184.691520px;}
.yd5{bottom:186.660000px;}
.y170{bottom:189.540000px;}
.y88{bottom:194.592960px;}
.yf1{bottom:197.460000px;}
.y123{bottom:204.660000px;}
.y27{bottom:207.360000px;}
.y9d{bottom:208.991520px;}
.y141{bottom:210.960000px;}
.ybf{bottom:212.237280px;}
.y87{bottom:214.567200px;}
.yd4{bottom:221.940000px;}
.y124{bottom:226.260000px;}
.y9c{bottom:228.965760px;}
.y26{bottom:230.574240px;}
.ybe{bottom:232.037280px;}
.y147{bottom:232.562880px;}
.y86{bottom:234.541440px;}
.y169{bottom:238.860000px;}
.yef{bottom:246.780000px;}
.y9b{bottom:248.765760px;}
.y146{bottom:250.557120px;}
.ybd{bottom:252.011520px;}
.y25{bottom:253.257120px;}
.y85{bottom:254.341440px;}
.y16e{bottom:260.277120px;}
.yd3{bottom:262.447200px;}
.y9a{bottom:268.740000px;}
.y145{bottom:268.741440px;}
.ybc{bottom:271.985760px;}
.y119{bottom:275.580000px;}
.y24{bottom:275.940000px;}
.y16d{bottom:278.461440px;}
.y65{bottom:280.984320px;}
.yd2{bottom:282.421440px;}
.y143{bottom:286.920000px;}
.y144{bottom:286.925760px;}
.ybb{bottom:291.785760px;}
.y84{bottom:292.325760px;}
.y20{bottom:295.920000px;}
.y16b{bottom:296.640000px;}
.y16c{bottom:296.645760px;}
.y122{bottom:297.182880px;}
.yee{bottom:299.520000px;}
.y22{bottom:303.660000px;}
.y142{bottom:304.920000px;}
.y99{bottom:307.260000px;}
.yd1{bottom:309.777120px;}
.y11d{bottom:311.400000px;}
.yba{bottom:311.760000px;}
.y83{bottom:312.300000px;}
.y16a{bottom:314.640000px;}
.y121{bottom:315.177120px;}
.y64{bottom:316.260000px;}
.y11b{bottom:318.960000px;}
.y23{bottom:321.840000px;}
.y82{bottom:332.111520px;}
.yb9{bottom:332.280000px;}
.y120{bottom:333.361440px;}
.yed{bottom:334.260000px;}
.yd0{bottom:342.360000px;}
.y98{bottom:345.060000px;}
.y1f{bottom:349.740000px;}
.y11f{bottom:351.355680px;}
.y81{bottom:352.085760px;}
.y63{bottom:354.060000px;}
.y139{bottom:354.240000px;}
.y162{bottom:363.960000px;}
.ycf{bottom:364.330080px;}
.y48{bottom:367.434720px;}
.y11e{bottom:369.540000px;}
.y80{bottom:372.060000px;}
.yb8{bottom:372.414240px;}
.y140{bottom:375.838560px;}
.y185{bottom:376.050240px;}
.y1e{bottom:377.640000px;}
.y97{bottom:377.686080px;}
.y62{bottom:383.220000px;}
.y168{bottom:385.557120px;}
.yea{bottom:386.820000px;}
.y47{bottom:387.408960px;}
.y13f{bottom:393.832800px;}
.yb7{bottom:399.960000px;}
.y184{bottom:403.405920px;}
.y167{bottom:403.551360px;}
.y1d{bottom:405.360000px;}
.y46{bottom:407.383200px;}
.yec{bottom:408.420000px;}
.y7f{bottom:411.660000px;}
.y13e{bottom:412.017120px;}
.y10c{bottom:418.860000px;}
.yb6{bottom:419.760000px;}
.y166{bottom:421.735680px;}
.y165{bottom:421.740000px;}
.y61{bottom:426.061440px;}
.y45{bottom:427.183200px;}
.y13d{bottom:430.201440px;}
.y183{bottom:430.761600px;}
.y1c{bottom:433.260000px;}
.y164{bottom:439.920000px;}
.y118{bottom:440.444160px;}
.yb5{bottom:447.305760px;}
.y13c{bottom:448.195680px;}
.y19{bottom:453.240000px;}
.y7e{bottom:454.537440px;}
.y44{bottom:454.728960px;}
.ye8{bottom:457.740000px;}
.y60{bottom:457.915680px;}
.y182{bottom:458.307360px;}
.y117{bottom:459.531360px;}
.y1b{bottom:461.160000px;}
.y13b{bottom:466.380000px;}
.yb4{bottom:467.105760px;}
.y7d{bottom:474.511680px;}
.y43{bottom:474.528960px;}
.y18{bottom:479.335680px;}
.y116{bottom:480.234240px;}
.y181{bottom:485.663040px;}
.yb3{bottom:487.080000px;}
.y158{bottom:489.060000px;}
.y5f{bottom:489.960000px;}
.y42{bottom:494.503200px;}
.y17{bottom:497.340000px;}
.y115{bottom:500.937120px;}
.y7c{bottom:501.867360px;}
.y180{bottom:505.637280px;}
.yb2{bottom:507.600000px;}
.ye7{bottom:510.480000px;}
.y161{bottom:510.658560px;}
.y41{bottom:514.477440px;}
.y136{bottom:515.700000px;}
.y5e{bottom:518.940000px;}
.y114{bottom:520.737120px;}
.y7b{bottom:521.841600px;}
.y16{bottom:525.240000px;}
.y17f{bottom:525.437280px;}
.y160{bottom:528.842880px;}
.y138{bottom:537.115680px;}
.y113{bottom:538.921440px;}
.y110{bottom:540.720000px;}
.y7a{bottom:541.641600px;}
.y40{bottom:541.833120px;}
.y17e{bottom:545.411520px;}
.y15f{bottom:546.837120px;}
.y15e{bottom:546.840000px;}
.y10e{bottom:548.280000px;}
.yb1{bottom:549.360000px;}
.y15{bottom:554.580000px;}
.y137{bottom:555.300000px;}
.y112{bottom:557.105760px;}
.y79{bottom:561.615840px;}
.y3f{bottom:561.807360px;}
.y5d{bottom:561.958560px;}
.ye3{bottom:563.220000px;}
.y15c{bottom:565.020000px;}
.y15d{bottom:565.021440px;}
.y17d{bottom:565.385760px;}
.y111{bottom:575.100000px;}
.y5c{bottom:581.035680px;}
.y78{bottom:581.590080px;}
.y3e{bottom:581.607360px;}
.y15b{bottom:583.205760px;}
.ye6{bottom:584.635680px;}
.y17c{bottom:585.185760px;}
.y14{bottom:586.440000px;}
.yb0{bottom:592.408800px;}
.y15a{bottom:601.200000px;}
.y77{bottom:601.390080px;}
.y3d{bottom:601.581600px;}
.ye5{bottom:602.820000px;}
.y5b{bottom:604.617120px;}
.y133{bottom:604.620000px;}
.y17b{bottom:605.160000px;}
.yaf{bottom:612.208800px;}
.y13{bottom:618.687900px;}
.y3c{bottom:621.555840px;}
.yff{bottom:624.420000px;}
.y135{bottom:626.225760px;}
.y5a{bottom:628.016400px;}
.y76{bottom:628.935840px;}
.yae{bottom:632.183040px;}
.y17a{bottom:634.320000px;}
.y134{bottom:644.220000px;}
.y10b{bottom:646.007040px;}
.y3b{bottom:648.911520px;}
.y153{bottom:650.520000px;}
.y59{bottom:651.415680px;}
.ye2{bottom:652.140000px;}
.yad{bottom:652.157280px;}
.y75{bottom:656.291520px;}
.y12{bottom:656.473320px;}
.y10a{bottom:664.001280px;}
.y3a{bottom:668.885760px;}
.yac{bottom:671.957280px;}
.y157{bottom:672.121440px;}
.y58{bottom:674.997120px;}
.y74{bottom:676.265760px;}
.y179{bottom:677.160000px;}
.y109{bottom:683.088480px;}
.y39{bottom:688.860000px;}
.y156{bottom:690.115680px;}
.yab{bottom:691.931520px;}
.y132{bottom:693.540000px;}
.y11{bottom:694.439100px;}
.y73{bottom:696.065760px;}
.y178{bottom:697.140000px;}
.y57{bottom:698.396400px;}
.y108{bottom:702.888480px;}
.ye1{bottom:704.880000px;}
.y155{bottom:708.300000px;}
.y38{bottom:708.660000px;}
.yaa{bottom:711.905760px;}
.yce{bottom:712.445760px;}
.y72{bottom:716.040000px;}
.y177{bottom:716.940000px;}
.y106{bottom:721.081440px;}
.y107{bottom:721.975680px;}
.y56{bottom:721.977840px;}
.ya9{bottom:731.705760px;}
.ycd{bottom:732.245760px;}
.y71{bottom:736.560000px;}
.y176{bottom:737.460000px;}
.y37{bottom:737.820000px;}
.y105{bottom:739.265760px;}
.y10{bottom:739.980000px;}
.y102{bottom:741.775680px;}
.y55{bottom:745.377120px;}
.y131{bottom:751.508640px;}
.ya8{bottom:751.680000px;}
.ycc{bottom:752.220000px;}
.y104{bottom:757.260000px;}
.ye0{bottom:757.620000px;}
.y101{bottom:759.960000px;}
.y54{bottom:768.776400px;}
.ya7{bottom:772.380000px;}
.ycb{bottom:772.740000px;}
.y70{bottom:776.711520px;}
.y130{bottom:778.864320px;}
.y152{bottom:779.032800px;}
.y175{bottom:779.400000px;}
.yf{bottom:780.654240px;}
.y36{bottom:780.664320px;}
.y53{bottom:792.357840px;}
.y6f{bottom:796.685760px;}
.y151{bottom:797.217120px;}
.y96{bottom:801.231840px;}
.y12f{bottom:806.220000px;}
.y35{bottom:808.020000px;}
.ye{bottom:808.200000px;}
.yf5{bottom:809.280000px;}
.ya6{bottom:812.351520px;}
.yca{bottom:812.890080px;}
.y150{bottom:815.401440px;}
.ydf{bottom:815.410080px;}
.y52{bottom:815.757120px;}
.y6e{bottom:816.660000px;}
.y95{bottom:821.206080px;}
.y174{bottom:822.238560px;}
.y33{bottom:823.680000px;}
.y12d{bottom:829.980000px;}
.yfe{bottom:830.880000px;}
.ya5{bottom:832.325760px;}
.y14f{bottom:833.395680px;}
.yd{bottom:835.380000px;}
.y6d{bottom:836.460000px;}
.y51{bottom:839.338560px;}
.yc9{bottom:840.245760px;}
.y94{bottom:841.180320px;}
.yde{bottom:842.955840px;}
.yfd{bottom:848.874240px;}
.y173{bottom:849.594240px;}
.y12e{bottom:851.580000px;}
.y6c{bottom:856.980000px;}
.yc8{bottom:860.220000px;}
.y31{bottom:860.580000px;}
.y93{bottom:860.980320px;}
.y50{bottom:862.737840px;}
.ydd{bottom:862.755840px;}
.yfc{bottom:867.058560px;}
.ya4{bottom:870.310080px;}
.yc{bottom:873.522000px;}
.y172{bottom:877.140000px;}
.yc7{bottom:880.740000px;}
.y92{bottom:880.954560px;}
.y32{bottom:882.180000px;}
.ydc{bottom:882.730080px;}
.yfb{bottom:886.145760px;}
.y4f{bottom:886.319280px;}
.ya3{bottom:890.110080px;}
.y6b{bottom:897.321600px;}
.y128{bottom:900.900000px;}
.y91{bottom:900.928800px;}
.ydb{bottom:902.704320px;}
.yfa{bottom:905.945760px;}
.yb{bottom:908.091000px;}
.y4e{bottom:909.718560px;}
.ya2{bottom:910.084320px;}
.y2e{bottom:915.660000px;}
.y6a{bottom:917.121600px;}
.yc6{bottom:920.868480px;}
.yf8{bottom:921.420000px;}
.y12c{bottom:922.311360px;}
.y14e{bottom:922.315680px;}
.yf9{bottom:923.940000px;}
.yda{bottom:930.060000px;}
.ya1{bottom:931.151520px;}
.y4d{bottom:933.117840px;}
.y69{bottom:937.095840px;}
.y30{bottom:937.260000px;}
.y90{bottom:938.723040px;}
.y12b{bottom:940.495680px;}
.y14d{bottom:940.500000px;}
.ya{bottom:942.660000px;}
.yc5{bottom:948.414240px;}
.ya0{bottom:954.008640px;}
.yd9{bottom:954.540000px;}
.y4c{bottom:956.699280px;}
.y12a{bottom:958.680000px;}
.y8f{bottom:958.697280px;}
.y68{bottom:964.451520px;}
.yc4{bottom:968.214240px;}
.y2c{bottom:970.740000px;}
.yf4{bottom:973.260000px;}
.y9f{bottom:976.865760px;}
.y8e{bottom:978.671520px;}
.y4b{bottom:980.098560px;}
.y9{bottom:983.518560px;}
.y67{bottom:984.425760px;}
.y14b{bottom:989.820000px;}
.yd8{bottom:990.000000px;}
.yc3{bottom:995.760000px;}
.y8d{bottom:998.471520px;}
.y2b{bottom:999.180000px;}
.y4a{bottom:1003.680000px;}
.y66{bottom:1004.400000px;}
.y127{bottom:1008.000000px;}
.y8{bottom:1010.874240px;}
.y14c{bottom:1011.420000px;}
.yc2{bottom:1015.560000px;}
.y8c{bottom:1018.445760px;}
.yd7{bottom:1025.280000px;}
.yf3{bottom:1026.000000px;}
.y49{bottom:1033.380000px;}
.y2a{bottom:1033.560000px;}
.yc1{bottom:1036.080000px;}
.y7{bottom:1038.420000px;}
.y4{bottom:1056.605760px;}
.y3{bottom:1074.600000px;}
.y2{bottom:1092.784320px;}
.y1{bottom:1120.140000px;}
.h20{height:2.098125px;}
.h16{height:18.000000px;}
.h17{height:18.001500px;}
.hd{height:18.178500px;}
.h15{height:18.180000px;}
.h1f{height:34.020000px;}
.hf{height:36.180000px;}
.h1a{height:36.360000px;}
.h1b{height:36.361500px;}
.h5{height:43.536094px;}
.h9{height:45.180000px;}
.h6{height:46.127812px;}
.h1{height:46.158750px;}
.h7{height:46.878750px;}
.hc{height:48.224531px;}
.h11{height:48.256875px;}
.h14{height:49.407187px;}
.h2{height:52.400689px;}
.h13{height:52.453125px;}
.he{height:54.358500px;}
.h19{height:54.360000px;}
.h22{height:57.780000px;}
.h10{height:61.329023px;}
.hb{height:61.370156px;}
.h8{height:63.361500px;}
.h12{height:69.698618px;}
.h18{height:72.360000px;}
.h26{height:72.540000px;}
.ha{height:85.061790px;}
.h4{height:87.538008px;}
.h3{height:87.596719px;}
.h27{height:90.538500px;}
.h23{height:90.540000px;}
.h29{height:108.540000px;}
.h28{height:108.720000px;}
.h21{height:126.720000px;}
.h25{height:126.900000px;}
.h24{height:144.900000px;}
.h1c{height:147.600000px;}
.h1d{height:168.300000px;}
.h1e{height:189.000000px;}
.h0{height:1188.000000px;}
.w4{width:84.240000px;}
.w3{width:137.880000px;}
.wb{width:147.420000px;}
.wa{width:163.260000px;}
.w9{width:217.260000px;}
.w7{width:217.261500px;}
.w8{width:217.438500px;}
.w6{width:233.820000px;}
.w5{width:243.721500px;}
.w2{width:297.000000px;}
.w1{width:403.561500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:6.300000px;}
.x10{left:8.100000px;}
.x1e{left:9.900000px;}
.x1c{left:12.600000px;}
.x22{left:15.660000px;}
.x1b{left:17.820000px;}
.x1a{left:20.340000px;}
.x21{left:25.020000px;}
.x14{left:29.700000px;}
.x16{left:31.140000px;}
.x1d{left:35.280000px;}
.x18{left:37.080000px;}
.x20{left:52.380000px;}
.x1f{left:60.300000px;}
.x23{left:73.080000px;}
.x24{left:91.260000px;}
.x5{left:108.002880px;}
.x9{left:111.240000px;}
.xc{left:116.100000px;}
.x13{left:135.720000px;}
.xf{left:151.740000px;}
.x28{left:153.540000px;}
.x2f{left:159.480000px;}
.x25{left:161.982720px;}
.x1{left:174.060000px;}
.x26{left:216.900000px;}
.x7{left:218.517120px;}
.x11{left:219.957120px;}
.x27{left:236.880000px;}
.x15{left:246.600000px;}
.x12{left:275.032800px;}
.x2c{left:317.340000px;}
.xb{left:322.191540px;}
.x17{left:331.740000px;}
.x8{left:339.661800px;}
.xa{left:341.460000px;}
.x2a{left:372.960000px;}
.xe{left:405.720000px;}
.xd{left:413.460000px;}
.x6{left:459.000000px;}
.x2d{left:482.040000px;}
.x31{left:488.880000px;}
.x19{left:576.180000px;}
.x2b{left:592.740000px;}
.x2e{left:646.740000px;}
.x30{left:653.580000px;}
.x2{left:696.415680px;}
.x32{left:706.854240px;}
.x4{left:716.928480px;}
.x3{left:809.988480px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.580480pt;}
.ls12{letter-spacing:-0.619520pt;}
.ls10{letter-spacing:-0.506880pt;}
.ls1f{letter-spacing:-0.294400pt;}
.lsd{letter-spacing:-0.281600pt;}
.ls13{letter-spacing:-0.168960pt;}
.ls31{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.106240pt;}
.ls18{letter-spacing:-0.074880pt;}
.ls25{letter-spacing:-0.056320pt;}
.lsc{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.046080pt;}
.ls8{letter-spacing:0.056320pt;}
.lse{letter-spacing:0.106880pt;}
.ls2a{letter-spacing:0.112640pt;}
.ls24{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.168960pt;}
.ls29{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.194560pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.281600pt;}
.ls1c{letter-spacing:0.294400pt;}
.ls1b{letter-spacing:0.299520pt;}
.ls1e{letter-spacing:0.374400pt;}
.ls2d{letter-spacing:0.957440pt;}
.ls21{letter-spacing:2.928640pt;}
.ls27{letter-spacing:4.167680pt;}
.ls2e{letter-spacing:5.209600pt;}
.ls2f{letter-spacing:6.758400pt;}
.ls23{letter-spacing:8.673280pt;}
.ls2b{letter-spacing:10.019328pt;}
.ls26{letter-spacing:14.417920pt;}
.ls4{letter-spacing:26.583040pt;}
.ls28{letter-spacing:33.623040pt;}
.ls22{letter-spacing:46.407680pt;}
.ls20{letter-spacing:46.848000pt;}
.ls9{letter-spacing:120.637440pt;}
.ls14{letter-spacing:126.359040pt;}
.ls2c{letter-spacing:142.433280pt;}
.ls15{letter-spacing:342.681600pt;}
.ls7{letter-spacing:481.633280pt;}
.ls6{letter-spacing:484.802560pt;}
.ls5{letter-spacing:518.748160pt;}
.ls16{letter-spacing:564.139520pt;}
.ls2{letter-spacing:593.597440pt;}
.lsb{letter-spacing:752.322560pt;}
.ls1d{letter-spacing:752.343040pt;}
.ls1{letter-spacing:770.892800pt;}
.ls3{letter-spacing:789.478400pt;}
.lsa{letter-spacing:1305.328640pt;}
.ws2c{word-spacing:-56.320000pt;}
.ws1{word-spacing:-29.819520pt;}
.ws2a{word-spacing:-20.741760pt;}
.ws0{word-spacing:-18.048000pt;}
.ws2b{word-spacing:-17.920000pt;}
.ws23{word-spacing:-16.663040pt;}
.ws15{word-spacing:-16.250880pt;}
.ws4d{word-spacing:-15.938560pt;}
.ws4{word-spacing:-15.825920pt;}
.ws2{word-spacing:-15.713280pt;}
.ws5{word-spacing:-15.656960pt;}
.ws6{word-spacing:-15.488000pt;}
.ws8{word-spacing:-15.375360pt;}
.ws3{word-spacing:-15.150080pt;}
.ws7{word-spacing:-15.037440pt;}
.ws3b{word-spacing:-13.344000pt;}
.ws1d{word-spacing:-4.167680pt;}
.ws20{word-spacing:-3.548160pt;}
.ws22{word-spacing:-2.928640pt;}
.ws1c{word-spacing:-2.252800pt;}
.ws31{word-spacing:-1.633280pt;}
.ws19{word-spacing:-1.182720pt;}
.ws14{word-spacing:-1.070080pt;}
.ws18{word-spacing:-0.957440pt;}
.ws32{word-spacing:-0.768000pt;}
.ws24{word-spacing:-0.673920pt;}
.ws50{word-spacing:-0.563200pt;}
.ws4f{word-spacing:-0.450560pt;}
.wsf{word-spacing:-0.337920pt;}
.wsd{word-spacing:-0.320640pt;}
.ws25{word-spacing:-0.294400pt;}
.ws3d{word-spacing:-0.281600pt;}
.ws53{word-spacing:-0.256000pt;}
.ws26{word-spacing:-0.235520pt;}
.ws29{word-spacing:-0.224640pt;}
.wse{word-spacing:-0.213760pt;}
.ws44{word-spacing:-0.168960pt;}
.ws30{word-spacing:-0.128000pt;}
.ws52{word-spacing:-0.112640pt;}
.ws42{word-spacing:-0.096000pt;}
.wsa{word-spacing:-0.056320pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:0.053120pt;}
.ws35{word-spacing:0.056320pt;}
.ws28{word-spacing:0.117760pt;}
.ws51{word-spacing:0.168960pt;}
.ws55{word-spacing:0.256000pt;}
.wsb{word-spacing:0.281600pt;}
.ws54{word-spacing:0.299520pt;}
.ws3f{word-spacing:0.337920pt;}
.ws16{word-spacing:0.374400pt;}
.ws17{word-spacing:0.412160pt;}
.ws45{word-spacing:0.450560pt;}
.ws4e{word-spacing:0.506880pt;}
.ws27{word-spacing:0.588800pt;}
.ws11{word-spacing:0.619520pt;}
.ws4c{word-spacing:0.957440pt;}
.ws1b{word-spacing:1.576960pt;}
.ws3c{word-spacing:2.196480pt;}
.ws2f{word-spacing:3.491840pt;}
.ws2e{word-spacing:4.111360pt;}
.ws40{word-spacing:4.449280pt;}
.ws34{word-spacing:4.787200pt;}
.ws4b{word-spacing:5.406720pt;}
.ws47{word-spacing:6.082560pt;}
.ws4a{word-spacing:6.702080pt;}
.ws21{word-spacing:7.321600pt;}
.ws33{word-spacing:7.997440pt;}
.ws39{word-spacing:8.616960pt;}
.ws3a{word-spacing:9.236480pt;}
.ws43{word-spacing:9.912320pt;}
.ws3e{word-spacing:10.531840pt;}
.ws1a{word-spacing:11.151360pt;}
.ws59{word-spacing:11.827200pt;}
.ws41{word-spacing:12.446720pt;}
.ws58{word-spacing:13.122560pt;}
.ws1e{word-spacing:14.361600pt;}
.ws36{word-spacing:16.276480pt;}
.ws1f{word-spacing:18.191360pt;}
.ws2d{word-spacing:18.867200pt;}
.ws37{word-spacing:20.162560pt;}
.ws10{word-spacing:25.907200pt;}
.ws13{word-spacing:29.117440pt;}
.ws38{word-spacing:31.651840pt;}
.ws46{word-spacing:33.566720pt;}
.ws57{word-spacing:37.396480pt;}
.ws56{word-spacing:50.237440pt;}
.ws12{word-spacing:50.856960pt;}
.ws49{word-spacing:142.376960pt;}
.ws48{word-spacing:143.672320pt;}
._6{margin-left:-17.134080pt;}
._8{margin-left:-16.223744pt;}
._4{margin-left:-14.778880pt;}
._7{margin-left:-12.188160pt;}
._c{margin-left:-11.022592pt;}
._d{margin-left:-10.048256pt;}
._b{margin-left:-8.821760pt;}
._5{margin-left:-7.065600pt;}
._a{margin-left:-5.760000pt;}
._9{margin-left:-3.356160pt;}
._2{margin-left:-1.959936pt;}
._0{margin-left:-1.070080pt;}
._1{width:1.370496pt;}
._f{width:3.153920pt;}
._e{width:52.715520pt;}
._10{width:142.714880pt;}
._3{width:752.788096pt;}
.fs8{font-size:2.560000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:3.040000pt;}
.y10f{bottom:17.280000pt;}
.y34{bottom:19.040000pt;}
.ye9{bottom:19.200000pt;}
.y21{bottom:23.040000pt;}
.y1a{bottom:23.200000pt;}
.y2f{bottom:35.200000pt;}
.yeb{bottom:35.360000pt;}
.y11c{bottom:38.240000pt;}
.y6{bottom:50.246400pt;}
.ye4{bottom:51.360000pt;}
.y5{bottom:66.723840pt;}
.y129{bottom:67.360000pt;}
.y154{bottom:67.520000pt;}
.y163{bottom:83.520000pt;}
.y11a{bottom:99.680000pt;}
.y148{bottom:108.480000pt;}
.yf2{bottom:109.600000pt;}
.y13a{bottom:115.680000pt;}
.y159{bottom:115.840000pt;}
.yf7{bottom:116.640000pt;}
.yf6{bottom:118.080000pt;}
.y171{bottom:118.560000pt;}
.y125{bottom:119.040000pt;}
.y8b{bottom:119.861760pt;}
.y14a{bottom:127.685120pt;}
.yd6{bottom:134.400000pt;}
.y103{bottom:135.040000pt;}
.y100{bottom:136.640000pt;}
.y8a{bottom:137.616640pt;}
.y126{bottom:138.240000pt;}
.y29{bottom:142.234880pt;}
.y149{bottom:143.680000pt;}
.y16f{bottom:149.280000pt;}
.y9e{bottom:152.000000pt;}
.y10d{bottom:155.040000pt;}
.y89{bottom:155.371520pt;}
.yf0{bottom:156.480000pt;}
.y28{bottom:159.834880pt;}
.yc0{bottom:164.170240pt;}
.yd5{bottom:165.920000pt;}
.y170{bottom:168.480000pt;}
.y88{bottom:172.971520pt;}
.yf1{bottom:175.520000pt;}
.y123{bottom:181.920000pt;}
.y27{bottom:184.320000pt;}
.y9d{bottom:185.770240pt;}
.y141{bottom:187.520000pt;}
.ybf{bottom:188.655360pt;}
.y87{bottom:190.726400pt;}
.yd4{bottom:197.280000pt;}
.y124{bottom:201.120000pt;}
.y9c{bottom:203.525120pt;}
.y26{bottom:204.954880pt;}
.ybe{bottom:206.255360pt;}
.y147{bottom:206.722560pt;}
.y86{bottom:208.481280pt;}
.y169{bottom:212.320000pt;}
.yef{bottom:219.360000pt;}
.y9b{bottom:221.125120pt;}
.y146{bottom:222.717440pt;}
.ybd{bottom:224.010240pt;}
.y25{bottom:225.117440pt;}
.y85{bottom:226.081280pt;}
.y16e{bottom:231.357440pt;}
.yd3{bottom:233.286400pt;}
.y9a{bottom:238.880000pt;}
.y145{bottom:238.881280pt;}
.ybc{bottom:241.765120pt;}
.y119{bottom:244.960000pt;}
.y24{bottom:245.280000pt;}
.y16d{bottom:247.521280pt;}
.y65{bottom:249.763840pt;}
.yd2{bottom:251.041280pt;}
.y143{bottom:255.040000pt;}
.y144{bottom:255.045120pt;}
.ybb{bottom:259.365120pt;}
.y84{bottom:259.845120pt;}
.y20{bottom:263.040000pt;}
.y16b{bottom:263.680000pt;}
.y16c{bottom:263.685120pt;}
.y122{bottom:264.162560pt;}
.yee{bottom:266.240000pt;}
.y22{bottom:269.920000pt;}
.y142{bottom:271.040000pt;}
.y99{bottom:273.120000pt;}
.yd1{bottom:275.357440pt;}
.y11d{bottom:276.800000pt;}
.yba{bottom:277.120000pt;}
.y83{bottom:277.600000pt;}
.y16a{bottom:279.680000pt;}
.y121{bottom:280.157440pt;}
.y64{bottom:281.120000pt;}
.y11b{bottom:283.520000pt;}
.y23{bottom:286.080000pt;}
.y82{bottom:295.210240pt;}
.yb9{bottom:295.360000pt;}
.y120{bottom:296.321280pt;}
.yed{bottom:297.120000pt;}
.yd0{bottom:304.320000pt;}
.y98{bottom:306.720000pt;}
.y1f{bottom:310.880000pt;}
.y11f{bottom:312.316160pt;}
.y81{bottom:312.965120pt;}
.y63{bottom:314.720000pt;}
.y139{bottom:314.880000pt;}
.y162{bottom:323.520000pt;}
.ycf{bottom:323.848960pt;}
.y48{bottom:326.608640pt;}
.y11e{bottom:328.480000pt;}
.y80{bottom:330.720000pt;}
.yb8{bottom:331.034880pt;}
.y140{bottom:334.078720pt;}
.y185{bottom:334.266880pt;}
.y1e{bottom:335.680000pt;}
.y97{bottom:335.720960pt;}
.y62{bottom:340.640000pt;}
.y168{bottom:342.717440pt;}
.yea{bottom:343.840000pt;}
.y47{bottom:344.363520pt;}
.y13f{bottom:350.073600pt;}
.yb7{bottom:355.520000pt;}
.y184{bottom:358.583040pt;}
.y167{bottom:358.712320pt;}
.y1d{bottom:360.320000pt;}
.y46{bottom:362.118400pt;}
.yec{bottom:363.040000pt;}
.y7f{bottom:365.920000pt;}
.y13e{bottom:366.237440pt;}
.y10c{bottom:372.320000pt;}
.yb6{bottom:373.120000pt;}
.y166{bottom:374.876160pt;}
.y165{bottom:374.880000pt;}
.y61{bottom:378.721280pt;}
.y45{bottom:379.718400pt;}
.y13d{bottom:382.401280pt;}
.y183{bottom:382.899200pt;}
.y1c{bottom:385.120000pt;}
.y164{bottom:391.040000pt;}
.y118{bottom:391.505920pt;}
.yb5{bottom:397.605120pt;}
.y13c{bottom:398.396160pt;}
.y19{bottom:402.880000pt;}
.y7e{bottom:404.033280pt;}
.y44{bottom:404.203520pt;}
.ye8{bottom:406.880000pt;}
.y60{bottom:407.036160pt;}
.y182{bottom:407.384320pt;}
.y117{bottom:408.472320pt;}
.y1b{bottom:409.920000pt;}
.y13b{bottom:414.560000pt;}
.yb4{bottom:415.205120pt;}
.y7d{bottom:421.788160pt;}
.y43{bottom:421.803520pt;}
.y18{bottom:426.076160pt;}
.y116{bottom:426.874880pt;}
.y181{bottom:431.700480pt;}
.yb3{bottom:432.960000pt;}
.y158{bottom:434.720000pt;}
.y5f{bottom:435.520000pt;}
.y42{bottom:439.558400pt;}
.y17{bottom:442.080000pt;}
.y115{bottom:445.277440pt;}
.y7c{bottom:446.104320pt;}
.y180{bottom:449.455360pt;}
.yb2{bottom:451.200000pt;}
.ye7{bottom:453.760000pt;}
.y161{bottom:453.918720pt;}
.y41{bottom:457.313280pt;}
.y136{bottom:458.400000pt;}
.y5e{bottom:461.280000pt;}
.y114{bottom:462.877440pt;}
.y7b{bottom:463.859200pt;}
.y16{bottom:466.880000pt;}
.y17f{bottom:467.055360pt;}
.y160{bottom:470.082560pt;}
.y138{bottom:477.436160pt;}
.y113{bottom:479.041280pt;}
.y110{bottom:480.640000pt;}
.y7a{bottom:481.459200pt;}
.y40{bottom:481.629440pt;}
.y17e{bottom:484.810240pt;}
.y15f{bottom:486.077440pt;}
.y15e{bottom:486.080000pt;}
.y10e{bottom:487.360000pt;}
.yb1{bottom:488.320000pt;}
.y15{bottom:492.960000pt;}
.y137{bottom:493.600000pt;}
.y112{bottom:495.205120pt;}
.y79{bottom:499.214080pt;}
.y3f{bottom:499.384320pt;}
.y5d{bottom:499.518720pt;}
.ye3{bottom:500.640000pt;}
.y15c{bottom:502.240000pt;}
.y15d{bottom:502.241280pt;}
.y17d{bottom:502.565120pt;}
.y111{bottom:511.200000pt;}
.y5c{bottom:516.476160pt;}
.y78{bottom:516.968960pt;}
.y3e{bottom:516.984320pt;}
.y15b{bottom:518.405120pt;}
.ye6{bottom:519.676160pt;}
.y17c{bottom:520.165120pt;}
.y14{bottom:521.280000pt;}
.yb0{bottom:526.585600pt;}
.y15a{bottom:534.400000pt;}
.y77{bottom:534.568960pt;}
.y3d{bottom:534.739200pt;}
.ye5{bottom:535.840000pt;}
.y5b{bottom:537.437440pt;}
.y133{bottom:537.440000pt;}
.y17b{bottom:537.920000pt;}
.yaf{bottom:544.185600pt;}
.y13{bottom:549.944800pt;}
.y3c{bottom:552.494080pt;}
.yff{bottom:555.040000pt;}
.y135{bottom:556.645120pt;}
.y5a{bottom:558.236800pt;}
.y76{bottom:559.054080pt;}
.yae{bottom:561.940480pt;}
.y17a{bottom:563.840000pt;}
.y134{bottom:572.640000pt;}
.y10b{bottom:574.228480pt;}
.y3b{bottom:576.810240pt;}
.y153{bottom:578.240000pt;}
.y59{bottom:579.036160pt;}
.ye2{bottom:579.680000pt;}
.yad{bottom:579.695360pt;}
.y75{bottom:583.370240pt;}
.y12{bottom:583.531840pt;}
.y10a{bottom:590.223360pt;}
.y3a{bottom:594.565120pt;}
.yac{bottom:597.295360pt;}
.y157{bottom:597.441280pt;}
.y58{bottom:599.997440pt;}
.y74{bottom:601.125120pt;}
.y179{bottom:601.920000pt;}
.y109{bottom:607.189760pt;}
.y39{bottom:612.320000pt;}
.y156{bottom:613.436160pt;}
.yab{bottom:615.050240pt;}
.y132{bottom:616.480000pt;}
.y11{bottom:617.279200pt;}
.y73{bottom:618.725120pt;}
.y178{bottom:619.680000pt;}
.y57{bottom:620.796800pt;}
.y108{bottom:624.789760pt;}
.ye1{bottom:626.560000pt;}
.y155{bottom:629.600000pt;}
.y38{bottom:629.920000pt;}
.yaa{bottom:632.805120pt;}
.yce{bottom:633.285120pt;}
.y72{bottom:636.480000pt;}
.y177{bottom:637.280000pt;}
.y106{bottom:640.961280pt;}
.y107{bottom:641.756160pt;}
.y56{bottom:641.758080pt;}
.ya9{bottom:650.405120pt;}
.ycd{bottom:650.885120pt;}
.y71{bottom:654.720000pt;}
.y176{bottom:655.520000pt;}
.y37{bottom:655.840000pt;}
.y105{bottom:657.125120pt;}
.y10{bottom:657.760000pt;}
.y102{bottom:659.356160pt;}
.y55{bottom:662.557440pt;}
.y131{bottom:668.007680pt;}
.ya8{bottom:668.160000pt;}
.ycc{bottom:668.640000pt;}
.y104{bottom:673.120000pt;}
.ye0{bottom:673.440000pt;}
.y101{bottom:675.520000pt;}
.y54{bottom:683.356800pt;}
.ya7{bottom:686.560000pt;}
.ycb{bottom:686.880000pt;}
.y70{bottom:690.410240pt;}
.y130{bottom:692.323840pt;}
.y152{bottom:692.473600pt;}
.y175{bottom:692.800000pt;}
.yf{bottom:693.914880pt;}
.y36{bottom:693.923840pt;}
.y53{bottom:704.318080pt;}
.y6f{bottom:708.165120pt;}
.y151{bottom:708.637440pt;}
.y96{bottom:712.206080pt;}
.y12f{bottom:716.640000pt;}
.y35{bottom:718.240000pt;}
.ye{bottom:718.400000pt;}
.yf5{bottom:719.360000pt;}
.ya6{bottom:722.090240pt;}
.yca{bottom:722.568960pt;}
.y150{bottom:724.801280pt;}
.ydf{bottom:724.808960pt;}
.y52{bottom:725.117440pt;}
.y6e{bottom:725.920000pt;}
.y95{bottom:729.960960pt;}
.y174{bottom:730.878720pt;}
.y33{bottom:732.160000pt;}
.y12d{bottom:737.760000pt;}
.yfe{bottom:738.560000pt;}
.ya5{bottom:739.845120pt;}
.y14f{bottom:740.796160pt;}
.yd{bottom:742.560000pt;}
.y6d{bottom:743.520000pt;}
.y51{bottom:746.078720pt;}
.yc9{bottom:746.885120pt;}
.y94{bottom:747.715840pt;}
.yde{bottom:749.294080pt;}
.yfd{bottom:754.554880pt;}
.y173{bottom:755.194880pt;}
.y12e{bottom:756.960000pt;}
.y6c{bottom:761.760000pt;}
.yc8{bottom:764.640000pt;}
.y31{bottom:764.960000pt;}
.y93{bottom:765.315840pt;}
.y50{bottom:766.878080pt;}
.ydd{bottom:766.894080pt;}
.yfc{bottom:770.718720pt;}
.ya4{bottom:773.608960pt;}
.yc{bottom:776.464000pt;}
.y172{bottom:779.680000pt;}
.yc7{bottom:782.880000pt;}
.y92{bottom:783.070720pt;}
.y32{bottom:784.160000pt;}
.ydc{bottom:784.648960pt;}
.yfb{bottom:787.685120pt;}
.y4f{bottom:787.839360pt;}
.ya3{bottom:791.208960pt;}
.y6b{bottom:797.619200pt;}
.y128{bottom:800.800000pt;}
.y91{bottom:800.825600pt;}
.ydb{bottom:802.403840pt;}
.yfa{bottom:805.285120pt;}
.yb{bottom:807.192000pt;}
.y4e{bottom:808.638720pt;}
.ya2{bottom:808.963840pt;}
.y2e{bottom:813.920000pt;}
.y6a{bottom:815.219200pt;}
.yc6{bottom:818.549760pt;}
.yf8{bottom:819.040000pt;}
.y12c{bottom:819.832320pt;}
.y14e{bottom:819.836160pt;}
.yf9{bottom:821.280000pt;}
.yda{bottom:826.720000pt;}
.ya1{bottom:827.690240pt;}
.y4d{bottom:829.438080pt;}
.y69{bottom:832.974080pt;}
.y30{bottom:833.120000pt;}
.y90{bottom:834.420480pt;}
.y12b{bottom:835.996160pt;}
.y14d{bottom:836.000000pt;}
.ya{bottom:837.920000pt;}
.yc5{bottom:843.034880pt;}
.ya0{bottom:848.007680pt;}
.yd9{bottom:848.480000pt;}
.y4c{bottom:850.399360pt;}
.y12a{bottom:852.160000pt;}
.y8f{bottom:852.175360pt;}
.y68{bottom:857.290240pt;}
.yc4{bottom:860.634880pt;}
.y2c{bottom:862.880000pt;}
.yf4{bottom:865.120000pt;}
.y9f{bottom:868.325120pt;}
.y8e{bottom:869.930240pt;}
.y4b{bottom:871.198720pt;}
.y9{bottom:874.238720pt;}
.y67{bottom:875.045120pt;}
.y14b{bottom:879.840000pt;}
.yd8{bottom:880.000000pt;}
.yc3{bottom:885.120000pt;}
.y8d{bottom:887.530240pt;}
.y2b{bottom:888.160000pt;}
.y4a{bottom:892.160000pt;}
.y66{bottom:892.800000pt;}
.y127{bottom:896.000000pt;}
.y8{bottom:898.554880pt;}
.y14c{bottom:899.040000pt;}
.yc2{bottom:902.720000pt;}
.y8c{bottom:905.285120pt;}
.yd7{bottom:911.360000pt;}
.yf3{bottom:912.000000pt;}
.y49{bottom:918.560000pt;}
.y2a{bottom:918.720000pt;}
.yc1{bottom:920.960000pt;}
.y7{bottom:923.040000pt;}
.y4{bottom:939.205120pt;}
.y3{bottom:955.200000pt;}
.y2{bottom:971.363840pt;}
.y1{bottom:995.680000pt;}
.h20{height:1.865000pt;}
.h16{height:16.000000pt;}
.h17{height:16.001333pt;}
.hd{height:16.158667pt;}
.h15{height:16.160000pt;}
.h1f{height:30.240000pt;}
.hf{height:32.160000pt;}
.h1a{height:32.320000pt;}
.h1b{height:32.321333pt;}
.h5{height:38.698750pt;}
.h9{height:40.160000pt;}
.h6{height:41.002500pt;}
.h1{height:41.030000pt;}
.h7{height:41.670000pt;}
.hc{height:42.866250pt;}
.h11{height:42.895000pt;}
.h14{height:43.917500pt;}
.h2{height:46.578390pt;}
.h13{height:46.625000pt;}
.he{height:48.318667pt;}
.h19{height:48.320000pt;}
.h22{height:51.360000pt;}
.h10{height:54.514687pt;}
.hb{height:54.551250pt;}
.h8{height:56.321333pt;}
.h12{height:61.954328pt;}
.h18{height:64.320000pt;}
.h26{height:64.480000pt;}
.ha{height:75.610480pt;}
.h4{height:77.811562pt;}
.h3{height:77.863750pt;}
.h27{height:80.478667pt;}
.h23{height:80.480000pt;}
.h29{height:96.480000pt;}
.h28{height:96.640000pt;}
.h21{height:112.640000pt;}
.h25{height:112.800000pt;}
.h24{height:128.800000pt;}
.h1c{height:131.200000pt;}
.h1d{height:149.600000pt;}
.h1e{height:168.000000pt;}
.h0{height:1056.000000pt;}
.w4{width:74.880000pt;}
.w3{width:122.560000pt;}
.wb{width:131.040000pt;}
.wa{width:145.120000pt;}
.w9{width:193.120000pt;}
.w7{width:193.121333pt;}
.w8{width:193.278667pt;}
.w6{width:207.840000pt;}
.w5{width:216.641333pt;}
.w2{width:264.000000pt;}
.w1{width:358.721333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:5.600000pt;}
.x10{left:7.200000pt;}
.x1e{left:8.800000pt;}
.x1c{left:11.200000pt;}
.x22{left:13.920000pt;}
.x1b{left:15.840000pt;}
.x1a{left:18.080000pt;}
.x21{left:22.240000pt;}
.x14{left:26.400000pt;}
.x16{left:27.680000pt;}
.x1d{left:31.360000pt;}
.x18{left:32.960000pt;}
.x20{left:46.560000pt;}
.x1f{left:53.600000pt;}
.x23{left:64.960000pt;}
.x24{left:81.120000pt;}
.x5{left:96.002560pt;}
.x9{left:98.880000pt;}
.xc{left:103.200000pt;}
.x13{left:120.640000pt;}
.xf{left:134.880000pt;}
.x28{left:136.480000pt;}
.x2f{left:141.760000pt;}
.x25{left:143.984640pt;}
.x1{left:154.720000pt;}
.x26{left:192.800000pt;}
.x7{left:194.237440pt;}
.x11{left:195.517440pt;}
.x27{left:210.560000pt;}
.x15{left:219.200000pt;}
.x12{left:244.473600pt;}
.x2c{left:282.080000pt;}
.xb{left:286.392480pt;}
.x17{left:294.880000pt;}
.x8{left:301.921600pt;}
.xa{left:303.520000pt;}
.x2a{left:331.520000pt;}
.xe{left:360.640000pt;}
.xd{left:367.520000pt;}
.x6{left:408.000000pt;}
.x2d{left:428.480000pt;}
.x31{left:434.560000pt;}
.x19{left:512.160000pt;}
.x2b{left:526.880000pt;}
.x2e{left:574.880000pt;}
.x30{left:580.960000pt;}
.x2{left:619.036160pt;}
.x32{left:628.314880pt;}
.x4{left:637.269760pt;}
.x3{left:719.989760pt;}
}




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