
    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_a42824c24685ebaaca1b5432.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_962a02ff7afb05127cf48539.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_38c91a1c32e0f6571560003d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5bcdd3f7ffe82b98eddb06c2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_a62ad3e636900b25460c4fe9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c921894c66a8c5e227811221.woff')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_8e177cbc36e6575b8f6689a5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.977539;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_aec7563def6a4d0d14b55ad3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.800293;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_6222e0f2e466d461c5cd80c6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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.062000px;}
.ls6{letter-spacing:-0.696000px;}
.lsc{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.207600px;}
.ls7{letter-spacing:-0.162000px;}
.lse{letter-spacing:-0.150000px;}
.ls5{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.100800px;}
.ls10{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.126600px;}
.ls11{letter-spacing:0.138000px;}
.ls3{letter-spacing:0.220200px;}
.lsf{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.324000px;}
.ls8{letter-spacing:1.980000px;}
.lsd{letter-spacing:3.427200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.753000px;}
.wsc{word-spacing:-14.878200px;}
.wsd{word-spacing:-14.710800px;}
.ws4{word-spacing:-14.673600px;}
.ws1{word-spacing:-14.595840px;}
.ws2{word-spacing:-14.572800px;}
.wsb{word-spacing:-14.422800px;}
.ws9{word-spacing:-14.065800px;}
.ws8{word-spacing:-13.939200px;}
.ws3{word-spacing:-13.876800px;}
.ws6{word-spacing:-12.564000px;}
.wsa{word-spacing:-12.204000px;}
.ws5{word-spacing:-10.422000px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-3.944640px;}
._0{margin-left:-1.013040px;}
._1{width:1.081680px;}
._b{width:2.294640px;}
._e{width:3.309360px;}
._f{width:4.737360px;}
._11{width:5.909520px;}
._8{width:7.223040px;}
._7{width:8.299440px;}
._c{width:9.375840px;}
._1d{width:10.399680px;}
._d{width:11.405520px;}
._1a{width:12.519360px;}
._1c{width:13.571280px;}
._9{width:15.078960px;}
._14{width:16.302000px;}
._2{width:17.354880px;}
._3{width:18.935760px;}
._17{width:20.534400px;}
._5{width:21.542400px;}
._6{width:22.618080px;}
._1b{width:24.279120px;}
._a{width:25.533360px;}
._15{width:26.911920px;}
._10{width:28.050720px;}
._16{width:29.344320px;}
._1e{width:30.499680px;}
._1f{width:31.861440px;}
._19{width:33.335760px;}
._18{width:35.259120px;}
._13{width:37.000800px;}
._12{width:38.021760px;}
.fc5{color:rgb(54,96,145);}
.fc4{color:rgb(200,16,46);}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(0,51,102);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs0{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y20{bottom:0.719970px;}
.y29{bottom:2.196000px;}
.y115{bottom:9.180000px;}
.y145{bottom:9.360000px;}
.y55{bottom:9.540000px;}
.y114{bottom:18.000000px;}
.y7e{bottom:18.180000px;}
.ydd{bottom:18.360000px;}
.y16b{bottom:18.540000px;}
.y14d{bottom:18.720000px;}
.y190{bottom:18.900000px;}
.ya0{bottom:19.080000px;}
.y54{bottom:19.260000px;}
.yfe{bottom:19.440000px;}
.yc5{bottom:21.405000px;}
.yb6{bottom:21.420000px;}
.yd0{bottom:21.450000px;}
.yc3{bottom:21.585000px;}
.y124{bottom:21.586500px;}
.yb3{bottom:21.600000px;}
.yc1{bottom:21.630000px;}
.yfb{bottom:25.005000px;}
.ye8{bottom:32.580000px;}
.y100{bottom:32.760000px;}
.yfd{bottom:36.165000px;}
.y104{bottom:38.160000px;}
.y129{bottom:43.740000px;}
.ye9{bottom:43.770000px;}
.yf0{bottom:43.920000px;}
.yf3{bottom:43.950000px;}
.y2b{bottom:46.260000px;}
.y2{bottom:46.620000px;}
.yf8{bottom:47.325000px;}
.y102{bottom:49.140000px;}
.yec{bottom:54.900000px;}
.yf4{bottom:54.930000px;}
.yf9{bottom:58.485000px;}
.y103{bottom:60.300000px;}
.y1{bottom:65.196000px;}
.yed{bottom:66.060000px;}
.yf2{bottom:66.090000px;}
.yf7{bottom:69.465000px;}
.yeb{bottom:77.220000px;}
.yfc{bottom:80.625000px;}
.yef{bottom:88.380000px;}
.yf5{bottom:88.410000px;}
.y28{bottom:89.460000px;}
.yfa{bottom:91.785000px;}
.y22{bottom:94.176000px;}
.yee{bottom:110.520000px;}
.ydc{bottom:113.616000px;}
.y185{bottom:120.636000px;}
.y1f{bottom:121.356000px;}
.y24{bottom:124.560000px;}
.y21{bottom:127.476030px;}
.y144{bottom:128.916000px;}
.y125{bottom:131.256000px;}
.y53{bottom:132.156000px;}
.yc8{bottom:135.036000px;}
.yac{bottom:143.316000px;}
.y123{bottom:147.643500px;}
.ydb{bottom:150.870000px;}
.y143{bottom:151.050000px;}
.yc7{bottom:151.425000px;}
.y135{bottom:152.130000px;}
.y52{bottom:154.290000px;}
.y1e{bottom:155.370000px;}
.y16a{bottom:157.350000px;}
.y184{bottom:157.890000px;}
.y7d{bottom:158.790000px;}
.y9f{bottom:165.630000px;}
.yf6{bottom:166.545000px;}
.y134{bottom:174.270000px;}
.y51{bottom:176.430000px;}
.y169{bottom:179.670000px;}
.y183{bottom:180.030000px;}
.y14c{bottom:180.570000px;}
.y7c{bottom:181.110000px;}
.y122{bottom:185.625000px;}
.yab{bottom:187.770000px;}
.yda{bottom:188.130000px;}
.y142{bottom:188.310000px;}
.yc6{bottom:189.405000px;}
.y133{bottom:196.590000px;}
.y1d{bottom:196.950000px;}
.y50{bottom:197.670000px;}
.y182{bottom:202.350000px;}
.y9e{bottom:202.890000px;}
.y7b{bottom:203.430000px;}
.yd9{bottom:204.525000px;}
.yaa{bottom:210.090000px;}
.y141{bottom:210.630000px;}
.y168{bottom:216.750000px;}
.y14b{bottom:217.830000px;}
.y132{bottom:218.910000px;}
.y4f{bottom:221.970000px;}
.y121{bottom:223.605000px;}
.y9d{bottom:225.030000px;}
.y7a{bottom:225.570000px;}
.yc4{bottom:227.565000px;}
.y140{bottom:232.770000px;}
.y1c{bottom:234.210000px;}
.y167{bottom:239.070000px;}
.y181{bottom:239.610000px;}
.y131{bottom:241.050000px;}
.yd8{bottom:242.505000px;}
.y9c{bottom:247.350000px;}
.y79{bottom:247.890000px;}
.y13f{bottom:255.090000px;}
.y1b{bottom:256.530000px;}
.y166{bottom:261.390000px;}
.y120{bottom:261.585000px;}
.y180{bottom:261.750000px;}
.y4e{bottom:263.190000px;}
.y130{bottom:263.370000px;}
.yc2{bottom:265.545000px;}
.y9b{bottom:269.670000px;}
.y78{bottom:270.030000px;}
.y13e{bottom:277.410000px;}
.y1a{bottom:278.670000px;}
.yd7{bottom:280.485000px;}
.yf1{bottom:283.365000px;}
.y18f{bottom:283.530000px;}
.y17f{bottom:284.070000px;}
.y4d{bottom:284.610000px;}
.y9a{bottom:291.810000px;}
.y77{bottom:292.350000px;}
.y165{bottom:298.650000px;}
.y13d{bottom:299.550000px;}
.y12f{bottom:300.630000px;}
.yc0{bottom:303.525000px;}
.y4c{bottom:305.850000px;}
.ya9{bottom:306.750000px;}
.y99{bottom:314.175000px;}
.y14a{bottom:314.715000px;}
.yd6{bottom:318.495000px;}
.y19{bottom:319.035000px;}
.y164{bottom:320.835000px;}
.y11f{bottom:321.195000px;}
.y17e{bottom:321.375000px;}
.y4b{bottom:327.135000px;}
.ya8{bottom:329.115000px;}
.y76{bottom:329.655000px;}
.y98{bottom:336.315000px;}
.y13c{bottom:336.855000px;}
.y12e{bottom:337.935000px;}
.ybf{bottom:341.535000px;}
.y17d{bottom:343.695000px;}
.y4a{bottom:348.375000px;}
.ya7{bottom:351.435000px;}
.y75{bottom:351.795000px;}
.y12d{bottom:354.315000px;}
.yd5{bottom:356.475000px;}
.y18{bottom:357.735000px;}
.y163{bottom:358.095000px;}
.y11e{bottom:358.455000px;}
.y13b{bottom:359.175000px;}
.y17c{bottom:365.835000px;}
.y49{bottom:369.615000px;}
.y97{bottom:373.575000px;}
.y74{bottom:374.115000px;}
.ybe{bottom:379.515000px;}
.y162{bottom:380.415000px;}
.y11d{bottom:380.775000px;}
.y13a{bottom:381.315000px;}
.y48{bottom:390.855000px;}
.yea{bottom:393.375000px;}
.yd4{bottom:394.455000px;}
.y18e{bottom:395.355000px;}
.ya6{bottom:395.895000px;}
.y17{bottom:396.435000px;}
.y161{bottom:402.555000px;}
.y11c{bottom:402.915000px;}
.y17b{bottom:403.095000px;}
.y139{bottom:403.635000px;}
.y96{bottom:410.835000px;}
.y47{bottom:412.095000px;}
.y12c{bottom:414.435000px;}
.ybd{bottom:417.495000px;}
.ya5{bottom:418.035000px;}
.y73{bottom:418.575000px;}
.y11b{bottom:425.235000px;}
.y17a{bottom:425.415000px;}
.y138{bottom:425.775000px;}
.yd3{bottom:432.435000px;}
.y18d{bottom:432.615000px;}
.y95{bottom:433.155000px;}
.y16{bottom:436.575000px;}
.y160{bottom:439.815000px;}
.y72{bottom:440.895000px;}
.y11a{bottom:447.555000px;}
.y46{bottom:448.095000px;}
.y94{bottom:455.295000px;}
.ybc{bottom:455.475000px;}
.y15f{bottom:462.135000px;}
.y179{bottom:462.675000px;}
.y71{bottom:463.035000px;}
.y45{bottom:469.515000px;}
.y119{bottom:469.695000px;}
.y18c{bottom:469.875000px;}
.yd2{bottom:470.415000px;}
.y12b{bottom:474.735000px;}
.y15{bottom:476.895000px;}
.y93{bottom:477.615000px;}
.y15e{bottom:484.275000px;}
.y178{bottom:484.815000px;}
.y70{bottom:485.355000px;}
.y44{bottom:490.755000px;}
.y18b{bottom:492.015000px;}
.y149{bottom:492.555000px;}
.ybb{bottom:493.455000px;}
.y14{bottom:499.215000px;}
.y92{bottom:499.755000px;}
.y118{bottom:506.955000px;}
.y177{bottom:507.135000px;}
.y6f{bottom:507.675000px;}
.yd1{bottom:508.395000px;}
.y43{bottom:511.995000px;}
.y18a{bottom:514.335000px;}
.y148{bottom:514.875000px;}
.y113{bottom:517.755000px;}
.y15d{bottom:521.535000px;}
.y91{bottom:522.075000px;}
.ye7{bottom:525.675000px;}
.y176{bottom:529.275000px;}
.y6e{bottom:529.815000px;}
.yba{bottom:531.435000px;}
.y13{bottom:532.695000px;}
.y42{bottom:533.235000px;}
.y12a{bottom:535.035000px;}
.y147{bottom:537.015000px;}
.y112{bottom:540.075000px;}
.y15c{bottom:543.855000px;}
.y117{bottom:544.215000px;}
.y90{bottom:544.395000px;}
.ycf{bottom:546.555000px;}
.y175{bottom:551.595000px;}
.y137{bottom:552.135000px;}
.y41{bottom:554.475000px;}
.y12{bottom:554.835000px;}
.y146{bottom:559.335000px;}
.y111{bottom:562.245000px;}
.y15b{bottom:566.025000px;}
.y8f{bottom:566.565000px;}
.y6d{bottom:567.105000px;}
.yb9{bottom:569.445000px;}
.y128{bottom:573.045000px;}
.y174{bottom:573.765000px;}
.y136{bottom:574.305000px;}
.y40{bottom:575.745000px;}
.y116{bottom:577.725000px;}
.ya4{bottom:581.685000px;}
.y11{bottom:582.765000px;}
.yce{bottom:584.565000px;}
.y6c{bottom:589.425000px;}
.y173{bottom:596.085000px;}
.y3f{bottom:596.985000px;}
.y15a{bottom:603.285000px;}
.y8e{bottom:603.825000px;}
.y10{bottom:605.085000px;}
.y110{bottom:606.705000px;}
.yb8{bottom:607.425000px;}
.y6b{bottom:611.565000px;}
.y3e{bottom:618.225000px;}
.y172{bottom:618.405000px;}
.ya3{bottom:618.765000px;}
.ycd{bottom:622.545000px;}
.y159{bottom:625.605000px;}
.yf{bottom:627.225000px;}
.y10f{bottom:629.025000px;}
.y127{bottom:633.165000px;}
.y189{bottom:633.345000px;}
.y6a{bottom:633.885000px;}
.y3d{bottom:639.465000px;}
.y171{bottom:640.545000px;}
.y8d{bottom:641.085000px;}
.yb7{bottom:645.405000px;}
.ye6{bottom:648.825000px;}
.y10e{bottom:651.345000px;}
.y188{bottom:655.665000px;}
.y69{bottom:656.025000px;}
.ycc{bottom:660.525000px;}
.y158{bottom:662.865000px;}
.y8c{bottom:663.405000px;}
.ye{bottom:664.485000px;}
.ye5{bottom:671.145000px;}
.y10d{bottom:673.485000px;}
.y3c{bottom:675.465000px;}
.y170{bottom:677.805000px;}
.y68{bottom:678.345000px;}
.yb5{bottom:683.565000px;}
.y157{bottom:685.005000px;}
.y8b{bottom:685.545000px;}
.y126{bottom:692.745000px;}
.ye4{bottom:693.285000px;}
.y10c{bottom:695.805000px;}
.y3b{bottom:696.885000px;}
.yd{bottom:698.145000px;}
.ycb{bottom:698.505000px;}
.y16f{bottom:700.125000px;}
.y67{bottom:700.665000px;}
.y156{bottom:707.325000px;}
.y8a{bottom:707.865000px;}
.y187{bottom:715.065000px;}
.ye3{bottom:715.605000px;}
.y3a{bottom:718.125000px;}
.yb4{bottom:721.545000px;}
.y16e{bottom:722.265000px;}
.y66{bottom:722.805000px;}
.y89{bottom:730.005000px;}
.y10b{bottom:733.065000px;}
.yca{bottom:736.485000px;}
.y186{bottom:737.385000px;}
.ye2{bottom:737.745000px;}
.yc{bottom:737.925000px;}
.y39{bottom:739.365000px;}
.y155{bottom:744.585000px;}
.y65{bottom:745.125000px;}
.y88{bottom:752.325000px;}
.yb2{bottom:759.525000px;}
.ye1{bottom:760.065000px;}
.yb{bottom:760.245000px;}
.y38{bottom:760.605000px;}
.y154{bottom:766.725000px;}
.y64{bottom:767.265000px;}
.y10a{bottom:770.325000px;}
.yc9{bottom:774.465000px;}
.y87{bottom:774.645000px;}
.y37{bottom:781.845000px;}
.ye0{bottom:782.385000px;}
.y153{bottom:789.045000px;}
.y63{bottom:789.585000px;}
.y109{bottom:792.465000px;}
.ya{bottom:792.645000px;}
.y86{bottom:796.785000px;}
.y36{bottom:803.085000px;}
.ydf{bottom:804.525000px;}
.y62{bottom:811.770000px;}
.y108{bottom:814.830000px;}
.yb1{bottom:819.150000px;}
.y152{bottom:826.350000px;}
.yde{bottom:826.890000px;}
.y9{bottom:828.510000px;}
.y85{bottom:834.090000px;}
.y107{bottom:836.970000px;}
.y35{bottom:839.130000px;}
.y16d{bottom:841.290000px;}
.y151{bottom:848.670000px;}
.y61{bottom:849.030000px;}
.ya2{bottom:856.410000px;}
.y106{bottom:859.290000px;}
.y34{bottom:860.550000px;}
.y16c{bottom:863.610000px;}
.y150{bottom:870.810000px;}
.y60{bottom:871.350000px;}
.ya1{bottom:878.550000px;}
.y8{bottom:881.430000px;}
.y33{bottom:881.790000px;}
.y5f{bottom:893.670000px;}
.y105{bottom:896.550000px;}
.yb0{bottom:900.870000px;}
.y32{bottom:903.030000px;}
.y7{bottom:905.550000px;}
.y14f{bottom:908.070000px;}
.y84{bottom:908.610000px;}
.y5e{bottom:915.810000px;}
.y101{bottom:917.070000px;}
.yaf{bottom:923.010000px;}
.y31{bottom:924.270000px;}
.y14e{bottom:930.390000px;}
.y83{bottom:930.750000px;}
.y6{bottom:933.990000px;}
.y5d{bottom:938.130000px;}
.yae{bottom:945.330000px;}
.y30{bottom:945.510000px;}
.y82{bottom:953.070000px;}
.y5c{bottom:960.270000px;}
.yad{bottom:967.650000px;}
.y5{bottom:975.390000px;}
.y2f{bottom:978.810000px;}
.y5b{bottom:982.590000px;}
.y81{bottom:997.530000px;}
.y4{bottom:1004.190000px;}
.y5a{bottom:1004.730000px;}
.y2e{bottom:1005.270000px;}
.yff{bottom:1015.530000px;}
.y80{bottom:1019.850000px;}
.y59{bottom:1027.050000px;}
.y2d{bottom:1030.470000px;}
.y7f{bottom:1041.990000px;}
.y23{bottom:1045.440000px;}
.y3{bottom:1048.650000px;}
.y2c{bottom:1059.990000px;}
.y58{bottom:1064.340000px;}
.y57{bottom:1105.560000px;}
.y27{bottom:1113.840000px;}
.y56{bottom:1121.400000px;}
.y2a{bottom:1122.660000px;}
.y26{bottom:1133.280000px;}
.y25{bottom:1151.640000px;}
.hb{height:25.920000px;}
.he{height:26.280000px;}
.hf{height:26.460000px;}
.h15{height:37.065000px;}
.h11{height:37.080000px;}
.h17{height:37.110000px;}
.h13{height:37.245000px;}
.h1e{height:37.252500px;}
.h10{height:37.260000px;}
.h14{height:37.281000px;}
.h16{height:37.282500px;}
.h12{height:37.290000px;}
.h1{height:40.843828px;}
.h9{height:43.057617px;}
.h6{height:45.720703px;}
.hd{height:53.645625px;}
.h2{height:56.084062px;}
.h21{height:59.385000px;}
.h1f{height:59.400000px;}
.h18{height:59.430000px;}
.h20{height:59.565000px;}
.h1c{height:59.610000px;}
.hc{height:63.632461px;}
.h4{height:71.324297px;}
.h5{height:81.078047px;}
.h7{height:86.255508px;}
.h1d{height:92.505000px;}
.h1a{height:104.061000px;}
.h1b{height:110.865000px;}
.h3{height:111.558516px;}
.h19{height:126.165000px;}
.ha{height:137.700000px;}
.h8{height:140.760000px;}
.h0{height:1188.000000px;}
.w3{width:36.540000px;}
.w4{width:36.720000px;}
.w1{width:80.280000px;}
.wb{width:99.021000px;}
.w11{width:101.016000px;}
.w13{width:103.305000px;}
.w10{width:114.660000px;}
.wc{width:116.460000px;}
.w17{width:121.125000px;}
.wa{width:123.109500px;}
.w12{width:134.661000px;}
.w14{width:140.929500px;}
.w6{width:158.070000px;}
.we{width:167.595000px;}
.wd{width:183.090000px;}
.w9{width:188.835000px;}
.w16{width:208.515000px;}
.w5{width:225.739500px;}
.w15{width:229.515000px;}
.wf{width:242.299500px;}
.w7{width:316.815000px;}
.w8{width:512.164500px;}
.w2{width:626.400000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x22{left:1.069500px;}
.x1d{left:7.729500px;}
.x35{left:9.525000px;}
.x14{left:10.800000px;}
.x12{left:12.390000px;}
.x34{left:14.029500px;}
.x16{left:15.480000px;}
.x2d{left:17.449500px;}
.x33{left:22.860000px;}
.x36{left:24.870000px;}
.x37{left:26.449500px;}
.x3a{left:30.769500px;}
.x3d{left:32.029500px;}
.x3e{left:33.870000px;}
.x15{left:40.500000px;}
.x3b{left:45.883500px;}
.x39{left:49.710000px;}
.x38{left:69.330000px;}
.x31{left:78.150000px;}
.x17{left:94.680000px;}
.x2f{left:96.690000px;}
.x3c{left:102.630000px;}
.x21{left:106.966500px;}
.x1{left:108.036000px;}
.x28{left:110.386500px;}
.x7{left:111.636000px;}
.x3f{left:162.030000px;}
.x2{left:178.050000px;}
.x19{left:217.470000px;}
.x5{left:229.170000px;}
.xb{left:234.390000px;}
.xa{left:246.090000px;}
.x2e{left:249.885000px;}
.x1b{left:257.790000px;}
.xf{left:263.550000px;}
.xc{left:294.735000px;}
.x3{left:300.495000px;}
.xe{left:305.715000px;}
.x10{left:329.835000px;}
.x1e{left:334.515000px;}
.x23{left:336.675000px;}
.x6{left:340.635000px;}
.x9{left:347.655000px;}
.x29{left:353.055000px;}
.x27{left:388.155000px;}
.x18{left:454.965000px;}
.x24{left:456.915000px;}
.x4{left:459.075000px;}
.x2a{left:468.075000px;}
.x30{left:479.775000px;}
.x1f{left:492.960000px;}
.x2b{left:569.460000px;}
.xd{left:602.565000px;}
.x20{left:620.940000px;}
.x25{left:643.620000px;}
.x32{left:688.650000px;}
.x2c{left:704.490000px;}
.x26{left:793.770000px;}
.x8{left:810.150000px;}
.x11{left:837.000000px;}
.x1c{left:867.420000px;}
.x1a{left:869.220000px;}
.x13{left:877.320000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.944000pt;}
.ls6{letter-spacing:-0.618667pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.184533pt;}
.ls7{letter-spacing:-0.144000pt;}
.lse{letter-spacing:-0.133333pt;}
.ls5{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.089600pt;}
.ls10{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.112533pt;}
.ls11{letter-spacing:0.122667pt;}
.ls3{letter-spacing:0.195733pt;}
.lsf{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.288000pt;}
.ls8{letter-spacing:1.760000pt;}
.lsd{letter-spacing:3.046400pt;}
.ws0{word-spacing:-16.669333pt;}
.wsc{word-spacing:-13.225067pt;}
.wsd{word-spacing:-13.076267pt;}
.ws4{word-spacing:-13.043200pt;}
.ws1{word-spacing:-12.974080pt;}
.ws2{word-spacing:-12.953600pt;}
.wsb{word-spacing:-12.820267pt;}
.ws9{word-spacing:-12.502933pt;}
.ws8{word-spacing:-12.390400pt;}
.ws3{word-spacing:-12.334933pt;}
.ws6{word-spacing:-11.168000pt;}
.wsa{word-spacing:-10.848000pt;}
.ws5{word-spacing:-9.264000pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-3.506347pt;}
._0{margin-left:-0.900480pt;}
._1{width:0.961493pt;}
._b{width:2.039680pt;}
._e{width:2.941653pt;}
._f{width:4.210987pt;}
._11{width:5.252907pt;}
._8{width:6.420480pt;}
._7{width:7.377280pt;}
._c{width:8.334080pt;}
._1d{width:9.244160pt;}
._d{width:10.138240pt;}
._1a{width:11.128320pt;}
._1c{width:12.063360pt;}
._9{width:13.403520pt;}
._14{width:14.490667pt;}
._2{width:15.426560pt;}
._3{width:16.831787pt;}
._17{width:18.252800pt;}
._5{width:19.148800pt;}
._6{width:20.104960pt;}
._1b{width:21.581440pt;}
._a{width:22.696320pt;}
._15{width:23.921707pt;}
._10{width:24.933973pt;}
._16{width:26.083840pt;}
._1e{width:27.110827pt;}
._1f{width:28.321280pt;}
._19{width:29.631787pt;}
._18{width:31.341440pt;}
._13{width:32.889600pt;}
._12{width:33.797120pt;}
.fs0{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:0.639973pt;}
.y29{bottom:1.952000pt;}
.y115{bottom:8.160000pt;}
.y145{bottom:8.320000pt;}
.y55{bottom:8.480000pt;}
.y114{bottom:16.000000pt;}
.y7e{bottom:16.160000pt;}
.ydd{bottom:16.320000pt;}
.y16b{bottom:16.480000pt;}
.y14d{bottom:16.640000pt;}
.y190{bottom:16.800000pt;}
.ya0{bottom:16.960000pt;}
.y54{bottom:17.120000pt;}
.yfe{bottom:17.280000pt;}
.yc5{bottom:19.026667pt;}
.yb6{bottom:19.040000pt;}
.yd0{bottom:19.066667pt;}
.yc3{bottom:19.186667pt;}
.y124{bottom:19.188000pt;}
.yb3{bottom:19.200000pt;}
.yc1{bottom:19.226667pt;}
.yfb{bottom:22.226667pt;}
.ye8{bottom:28.960000pt;}
.y100{bottom:29.120000pt;}
.yfd{bottom:32.146667pt;}
.y104{bottom:33.920000pt;}
.y129{bottom:38.880000pt;}
.ye9{bottom:38.906667pt;}
.yf0{bottom:39.040000pt;}
.yf3{bottom:39.066667pt;}
.y2b{bottom:41.120000pt;}
.y2{bottom:41.440000pt;}
.yf8{bottom:42.066667pt;}
.y102{bottom:43.680000pt;}
.yec{bottom:48.800000pt;}
.yf4{bottom:48.826667pt;}
.yf9{bottom:51.986667pt;}
.y103{bottom:53.600000pt;}
.y1{bottom:57.952000pt;}
.yed{bottom:58.720000pt;}
.yf2{bottom:58.746667pt;}
.yf7{bottom:61.746667pt;}
.yeb{bottom:68.640000pt;}
.yfc{bottom:71.666667pt;}
.yef{bottom:78.560000pt;}
.yf5{bottom:78.586667pt;}
.y28{bottom:79.520000pt;}
.yfa{bottom:81.586667pt;}
.y22{bottom:83.712000pt;}
.yee{bottom:98.240000pt;}
.ydc{bottom:100.992000pt;}
.y185{bottom:107.232000pt;}
.y1f{bottom:107.872000pt;}
.y24{bottom:110.720000pt;}
.y21{bottom:113.312027pt;}
.y144{bottom:114.592000pt;}
.y125{bottom:116.672000pt;}
.y53{bottom:117.472000pt;}
.yc8{bottom:120.032000pt;}
.yac{bottom:127.392000pt;}
.y123{bottom:131.238667pt;}
.ydb{bottom:134.106667pt;}
.y143{bottom:134.266667pt;}
.yc7{bottom:134.600000pt;}
.y135{bottom:135.226667pt;}
.y52{bottom:137.146667pt;}
.y1e{bottom:138.106667pt;}
.y16a{bottom:139.866667pt;}
.y184{bottom:140.346667pt;}
.y7d{bottom:141.146667pt;}
.y9f{bottom:147.226667pt;}
.yf6{bottom:148.040000pt;}
.y134{bottom:154.906667pt;}
.y51{bottom:156.826667pt;}
.y169{bottom:159.706667pt;}
.y183{bottom:160.026667pt;}
.y14c{bottom:160.506667pt;}
.y7c{bottom:160.986667pt;}
.y122{bottom:165.000000pt;}
.yab{bottom:166.906667pt;}
.yda{bottom:167.226667pt;}
.y142{bottom:167.386667pt;}
.yc6{bottom:168.360000pt;}
.y133{bottom:174.746667pt;}
.y1d{bottom:175.066667pt;}
.y50{bottom:175.706667pt;}
.y182{bottom:179.866667pt;}
.y9e{bottom:180.346667pt;}
.y7b{bottom:180.826667pt;}
.yd9{bottom:181.800000pt;}
.yaa{bottom:186.746667pt;}
.y141{bottom:187.226667pt;}
.y168{bottom:192.666667pt;}
.y14b{bottom:193.626667pt;}
.y132{bottom:194.586667pt;}
.y4f{bottom:197.306667pt;}
.y121{bottom:198.760000pt;}
.y9d{bottom:200.026667pt;}
.y7a{bottom:200.506667pt;}
.yc4{bottom:202.280000pt;}
.y140{bottom:206.906667pt;}
.y1c{bottom:208.186667pt;}
.y167{bottom:212.506667pt;}
.y181{bottom:212.986667pt;}
.y131{bottom:214.266667pt;}
.yd8{bottom:215.560000pt;}
.y9c{bottom:219.866667pt;}
.y79{bottom:220.346667pt;}
.y13f{bottom:226.746667pt;}
.y1b{bottom:228.026667pt;}
.y166{bottom:232.346667pt;}
.y120{bottom:232.520000pt;}
.y180{bottom:232.666667pt;}
.y4e{bottom:233.946667pt;}
.y130{bottom:234.106667pt;}
.yc2{bottom:236.040000pt;}
.y9b{bottom:239.706667pt;}
.y78{bottom:240.026667pt;}
.y13e{bottom:246.586667pt;}
.y1a{bottom:247.706667pt;}
.yd7{bottom:249.320000pt;}
.yf1{bottom:251.880000pt;}
.y18f{bottom:252.026667pt;}
.y17f{bottom:252.506667pt;}
.y4d{bottom:252.986667pt;}
.y9a{bottom:259.386667pt;}
.y77{bottom:259.866667pt;}
.y165{bottom:265.466667pt;}
.y13d{bottom:266.266667pt;}
.y12f{bottom:267.226667pt;}
.yc0{bottom:269.800000pt;}
.y4c{bottom:271.866667pt;}
.ya9{bottom:272.666667pt;}
.y99{bottom:279.266667pt;}
.y14a{bottom:279.746667pt;}
.yd6{bottom:283.106667pt;}
.y19{bottom:283.586667pt;}
.y164{bottom:285.186667pt;}
.y11f{bottom:285.506667pt;}
.y17e{bottom:285.666667pt;}
.y4b{bottom:290.786667pt;}
.ya8{bottom:292.546667pt;}
.y76{bottom:293.026667pt;}
.y98{bottom:298.946667pt;}
.y13c{bottom:299.426667pt;}
.y12e{bottom:300.386667pt;}
.ybf{bottom:303.586667pt;}
.y17d{bottom:305.506667pt;}
.y4a{bottom:309.666667pt;}
.ya7{bottom:312.386667pt;}
.y75{bottom:312.706667pt;}
.y12d{bottom:314.946667pt;}
.yd5{bottom:316.866667pt;}
.y18{bottom:317.986667pt;}
.y163{bottom:318.306667pt;}
.y11e{bottom:318.626667pt;}
.y13b{bottom:319.266667pt;}
.y17c{bottom:325.186667pt;}
.y49{bottom:328.546667pt;}
.y97{bottom:332.066667pt;}
.y74{bottom:332.546667pt;}
.ybe{bottom:337.346667pt;}
.y162{bottom:338.146667pt;}
.y11d{bottom:338.466667pt;}
.y13a{bottom:338.946667pt;}
.y48{bottom:347.426667pt;}
.yea{bottom:349.666667pt;}
.yd4{bottom:350.626667pt;}
.y18e{bottom:351.426667pt;}
.ya6{bottom:351.906667pt;}
.y17{bottom:352.386667pt;}
.y161{bottom:357.826667pt;}
.y11c{bottom:358.146667pt;}
.y17b{bottom:358.306667pt;}
.y139{bottom:358.786667pt;}
.y96{bottom:365.186667pt;}
.y47{bottom:366.306667pt;}
.y12c{bottom:368.386667pt;}
.ybd{bottom:371.106667pt;}
.ya5{bottom:371.586667pt;}
.y73{bottom:372.066667pt;}
.y11b{bottom:377.986667pt;}
.y17a{bottom:378.146667pt;}
.y138{bottom:378.466667pt;}
.yd3{bottom:384.386667pt;}
.y18d{bottom:384.546667pt;}
.y95{bottom:385.026667pt;}
.y16{bottom:388.066667pt;}
.y160{bottom:390.946667pt;}
.y72{bottom:391.906667pt;}
.y11a{bottom:397.826667pt;}
.y46{bottom:398.306667pt;}
.y94{bottom:404.706667pt;}
.ybc{bottom:404.866667pt;}
.y15f{bottom:410.786667pt;}
.y179{bottom:411.266667pt;}
.y71{bottom:411.586667pt;}
.y45{bottom:417.346667pt;}
.y119{bottom:417.506667pt;}
.y18c{bottom:417.666667pt;}
.yd2{bottom:418.146667pt;}
.y12b{bottom:421.986667pt;}
.y15{bottom:423.906667pt;}
.y93{bottom:424.546667pt;}
.y15e{bottom:430.466667pt;}
.y178{bottom:430.946667pt;}
.y70{bottom:431.426667pt;}
.y44{bottom:436.226667pt;}
.y18b{bottom:437.346667pt;}
.y149{bottom:437.826667pt;}
.ybb{bottom:438.626667pt;}
.y14{bottom:443.746667pt;}
.y92{bottom:444.226667pt;}
.y118{bottom:450.626667pt;}
.y177{bottom:450.786667pt;}
.y6f{bottom:451.266667pt;}
.yd1{bottom:451.906667pt;}
.y43{bottom:455.106667pt;}
.y18a{bottom:457.186667pt;}
.y148{bottom:457.666667pt;}
.y113{bottom:460.226667pt;}
.y15d{bottom:463.586667pt;}
.y91{bottom:464.066667pt;}
.ye7{bottom:467.266667pt;}
.y176{bottom:470.466667pt;}
.y6e{bottom:470.946667pt;}
.yba{bottom:472.386667pt;}
.y13{bottom:473.506667pt;}
.y42{bottom:473.986667pt;}
.y12a{bottom:475.586667pt;}
.y147{bottom:477.346667pt;}
.y112{bottom:480.066667pt;}
.y15c{bottom:483.426667pt;}
.y117{bottom:483.746667pt;}
.y90{bottom:483.906667pt;}
.ycf{bottom:485.826667pt;}
.y175{bottom:490.306667pt;}
.y137{bottom:490.786667pt;}
.y41{bottom:492.866667pt;}
.y12{bottom:493.186667pt;}
.y146{bottom:497.186667pt;}
.y111{bottom:499.773333pt;}
.y15b{bottom:503.133333pt;}
.y8f{bottom:503.613333pt;}
.y6d{bottom:504.093333pt;}
.yb9{bottom:506.173333pt;}
.y128{bottom:509.373333pt;}
.y174{bottom:510.013333pt;}
.y136{bottom:510.493333pt;}
.y40{bottom:511.773333pt;}
.y116{bottom:513.533333pt;}
.ya4{bottom:517.053333pt;}
.y11{bottom:518.013333pt;}
.yce{bottom:519.613333pt;}
.y6c{bottom:523.933333pt;}
.y173{bottom:529.853333pt;}
.y3f{bottom:530.653333pt;}
.y15a{bottom:536.253333pt;}
.y8e{bottom:536.733333pt;}
.y10{bottom:537.853333pt;}
.y110{bottom:539.293333pt;}
.yb8{bottom:539.933333pt;}
.y6b{bottom:543.613333pt;}
.y3e{bottom:549.533333pt;}
.y172{bottom:549.693333pt;}
.ya3{bottom:550.013333pt;}
.ycd{bottom:553.373333pt;}
.y159{bottom:556.093333pt;}
.yf{bottom:557.533333pt;}
.y10f{bottom:559.133333pt;}
.y127{bottom:562.813333pt;}
.y189{bottom:562.973333pt;}
.y6a{bottom:563.453333pt;}
.y3d{bottom:568.413333pt;}
.y171{bottom:569.373333pt;}
.y8d{bottom:569.853333pt;}
.yb7{bottom:573.693333pt;}
.ye6{bottom:576.733333pt;}
.y10e{bottom:578.973333pt;}
.y188{bottom:582.813333pt;}
.y69{bottom:583.133333pt;}
.ycc{bottom:587.133333pt;}
.y158{bottom:589.213333pt;}
.y8c{bottom:589.693333pt;}
.ye{bottom:590.653333pt;}
.ye5{bottom:596.573333pt;}
.y10d{bottom:598.653333pt;}
.y3c{bottom:600.413333pt;}
.y170{bottom:602.493333pt;}
.y68{bottom:602.973333pt;}
.yb5{bottom:607.613333pt;}
.y157{bottom:608.893333pt;}
.y8b{bottom:609.373333pt;}
.y126{bottom:615.773333pt;}
.ye4{bottom:616.253333pt;}
.y10c{bottom:618.493333pt;}
.y3b{bottom:619.453333pt;}
.yd{bottom:620.573333pt;}
.ycb{bottom:620.893333pt;}
.y16f{bottom:622.333333pt;}
.y67{bottom:622.813333pt;}
.y156{bottom:628.733333pt;}
.y8a{bottom:629.213333pt;}
.y187{bottom:635.613333pt;}
.ye3{bottom:636.093333pt;}
.y3a{bottom:638.333333pt;}
.yb4{bottom:641.373333pt;}
.y16e{bottom:642.013333pt;}
.y66{bottom:642.493333pt;}
.y89{bottom:648.893333pt;}
.y10b{bottom:651.613333pt;}
.yca{bottom:654.653333pt;}
.y186{bottom:655.453333pt;}
.ye2{bottom:655.773333pt;}
.yc{bottom:655.933333pt;}
.y39{bottom:657.213333pt;}
.y155{bottom:661.853333pt;}
.y65{bottom:662.333333pt;}
.y88{bottom:668.733333pt;}
.yb2{bottom:675.133333pt;}
.ye1{bottom:675.613333pt;}
.yb{bottom:675.773333pt;}
.y38{bottom:676.093333pt;}
.y154{bottom:681.533333pt;}
.y64{bottom:682.013333pt;}
.y10a{bottom:684.733333pt;}
.yc9{bottom:688.413333pt;}
.y87{bottom:688.573333pt;}
.y37{bottom:694.973333pt;}
.ye0{bottom:695.453333pt;}
.y153{bottom:701.373333pt;}
.y63{bottom:701.853333pt;}
.y109{bottom:704.413333pt;}
.ya{bottom:704.573333pt;}
.y86{bottom:708.253333pt;}
.y36{bottom:713.853333pt;}
.ydf{bottom:715.133333pt;}
.y62{bottom:721.573333pt;}
.y108{bottom:724.293333pt;}
.yb1{bottom:728.133333pt;}
.y152{bottom:734.533333pt;}
.yde{bottom:735.013333pt;}
.y9{bottom:736.453333pt;}
.y85{bottom:741.413333pt;}
.y107{bottom:743.973333pt;}
.y35{bottom:745.893333pt;}
.y16d{bottom:747.813333pt;}
.y151{bottom:754.373333pt;}
.y61{bottom:754.693333pt;}
.ya2{bottom:761.253333pt;}
.y106{bottom:763.813333pt;}
.y34{bottom:764.933333pt;}
.y16c{bottom:767.653333pt;}
.y150{bottom:774.053333pt;}
.y60{bottom:774.533333pt;}
.ya1{bottom:780.933333pt;}
.y8{bottom:783.493333pt;}
.y33{bottom:783.813333pt;}
.y5f{bottom:794.373333pt;}
.y105{bottom:796.933333pt;}
.yb0{bottom:800.773333pt;}
.y32{bottom:802.693333pt;}
.y7{bottom:804.933333pt;}
.y14f{bottom:807.173333pt;}
.y84{bottom:807.653333pt;}
.y5e{bottom:814.053333pt;}
.y101{bottom:815.173333pt;}
.yaf{bottom:820.453333pt;}
.y31{bottom:821.573333pt;}
.y14e{bottom:827.013333pt;}
.y83{bottom:827.333333pt;}
.y6{bottom:830.213333pt;}
.y5d{bottom:833.893333pt;}
.yae{bottom:840.293333pt;}
.y30{bottom:840.453333pt;}
.y82{bottom:847.173333pt;}
.y5c{bottom:853.573333pt;}
.yad{bottom:860.133333pt;}
.y5{bottom:867.013333pt;}
.y2f{bottom:870.053333pt;}
.y5b{bottom:873.413333pt;}
.y81{bottom:886.693333pt;}
.y4{bottom:892.613333pt;}
.y5a{bottom:893.093333pt;}
.y2e{bottom:893.573333pt;}
.yff{bottom:902.693333pt;}
.y80{bottom:906.533333pt;}
.y59{bottom:912.933333pt;}
.y2d{bottom:915.973333pt;}
.y7f{bottom:926.213333pt;}
.y23{bottom:929.280000pt;}
.y3{bottom:932.133333pt;}
.y2c{bottom:942.213333pt;}
.y58{bottom:946.080000pt;}
.y57{bottom:982.720000pt;}
.y27{bottom:990.080000pt;}
.y56{bottom:996.800000pt;}
.y2a{bottom:997.920000pt;}
.y26{bottom:1007.360000pt;}
.y25{bottom:1023.680000pt;}
.hb{height:23.040000pt;}
.he{height:23.360000pt;}
.hf{height:23.520000pt;}
.h15{height:32.946667pt;}
.h11{height:32.960000pt;}
.h17{height:32.986667pt;}
.h13{height:33.106667pt;}
.h1e{height:33.113333pt;}
.h10{height:33.120000pt;}
.h14{height:33.138667pt;}
.h16{height:33.140000pt;}
.h12{height:33.146667pt;}
.h1{height:36.305625pt;}
.h9{height:38.273438pt;}
.h6{height:40.640625pt;}
.hd{height:47.685000pt;}
.h2{height:49.852500pt;}
.h21{height:52.786667pt;}
.h1f{height:52.800000pt;}
.h18{height:52.826667pt;}
.h20{height:52.946667pt;}
.h1c{height:52.986667pt;}
.hc{height:56.562187pt;}
.h4{height:63.399375pt;}
.h5{height:72.069375pt;}
.h7{height:76.671562pt;}
.h1d{height:82.226667pt;}
.h1a{height:92.498667pt;}
.h1b{height:98.546667pt;}
.h3{height:99.163125pt;}
.h19{height:112.146667pt;}
.ha{height:122.400000pt;}
.h8{height:125.120000pt;}
.h0{height:1056.000000pt;}
.w3{width:32.480000pt;}
.w4{width:32.640000pt;}
.w1{width:71.360000pt;}
.wb{width:88.018667pt;}
.w11{width:89.792000pt;}
.w13{width:91.826667pt;}
.w10{width:101.920000pt;}
.wc{width:103.520000pt;}
.w17{width:107.666667pt;}
.wa{width:109.430667pt;}
.w12{width:119.698667pt;}
.w14{width:125.270667pt;}
.w6{width:140.506667pt;}
.we{width:148.973333pt;}
.wd{width:162.746667pt;}
.w9{width:167.853333pt;}
.w16{width:185.346667pt;}
.w5{width:200.657333pt;}
.w15{width:204.013333pt;}
.wf{width:215.377333pt;}
.w7{width:281.613333pt;}
.w8{width:455.257333pt;}
.w2{width:556.800000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x22{left:0.950667pt;}
.x1d{left:6.870667pt;}
.x35{left:8.466667pt;}
.x14{left:9.600000pt;}
.x12{left:11.013333pt;}
.x34{left:12.470667pt;}
.x16{left:13.760000pt;}
.x2d{left:15.510667pt;}
.x33{left:20.320000pt;}
.x36{left:22.106667pt;}
.x37{left:23.510667pt;}
.x3a{left:27.350667pt;}
.x3d{left:28.470667pt;}
.x3e{left:30.106667pt;}
.x15{left:36.000000pt;}
.x3b{left:40.785333pt;}
.x39{left:44.186667pt;}
.x38{left:61.626667pt;}
.x31{left:69.466667pt;}
.x17{left:84.160000pt;}
.x2f{left:85.946667pt;}
.x3c{left:91.226667pt;}
.x21{left:95.081333pt;}
.x1{left:96.032000pt;}
.x28{left:98.121333pt;}
.x7{left:99.232000pt;}
.x3f{left:144.026667pt;}
.x2{left:158.266667pt;}
.x19{left:193.306667pt;}
.x5{left:203.706667pt;}
.xb{left:208.346667pt;}
.xa{left:218.746667pt;}
.x2e{left:222.120000pt;}
.x1b{left:229.146667pt;}
.xf{left:234.266667pt;}
.xc{left:261.986667pt;}
.x3{left:267.106667pt;}
.xe{left:271.746667pt;}
.x10{left:293.186667pt;}
.x1e{left:297.346667pt;}
.x23{left:299.266667pt;}
.x6{left:302.786667pt;}
.x9{left:309.026667pt;}
.x29{left:313.826667pt;}
.x27{left:345.026667pt;}
.x18{left:404.413333pt;}
.x24{left:406.146667pt;}
.x4{left:408.066667pt;}
.x2a{left:416.066667pt;}
.x30{left:426.466667pt;}
.x1f{left:438.186667pt;}
.x2b{left:506.186667pt;}
.xd{left:535.613333pt;}
.x20{left:551.946667pt;}
.x25{left:572.106667pt;}
.x32{left:612.133333pt;}
.x2c{left:626.213333pt;}
.x26{left:705.573333pt;}
.x8{left:720.133333pt;}
.x11{left:744.000000pt;}
.x1c{left:771.040000pt;}
.x1a{left:772.640000pt;}
.x13{left:779.840000pt;}
}




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