
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3b5739d37e515b09e6905c90.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_b2ac7202b3afaa2199f6c0ea.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_059189a8d2d28862a2b2ba6a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_09d965994671669bc9cf7075.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_fd828f2f34ae125724989b26.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a8a8b2bff7fe038b50d60077.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_11429b8e76a868e48e849a41.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_10bfa08b70221c4fb25460db.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls4{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.370200px;}
.ls6{letter-spacing:-0.326400px;}
.lsf{letter-spacing:-0.223200px;}
.ls12{letter-spacing:-0.157200px;}
.lse{letter-spacing:-0.121200px;}
.ls13{letter-spacing:-0.097800px;}
.ls1c{letter-spacing:-0.036000px;}
.lsc{letter-spacing:-0.010800px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012960px;}
.lsd{letter-spacing:0.038880px;}
.ls1d{letter-spacing:0.126600px;}
.ls15{letter-spacing:0.126720px;}
.ls3{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.168480px;}
.lsa{letter-spacing:0.211680px;}
.ls17{letter-spacing:0.246720px;}
.lsb{letter-spacing:0.303000px;}
.ls19{letter-spacing:0.316800px;}
.ls11{letter-spacing:0.323400px;}
.ls1b{letter-spacing:0.343200px;}
.ls16{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.385800px;}
.ls10{letter-spacing:0.666720px;}
.ls7{letter-spacing:0.708000px;}
.ls0{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.846720px;}
.ls18{letter-spacing:47.466720px;}
.ls14{letter-spacing:81.450720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8{word-spacing:-14.958600px;}
.ws5{word-spacing:-14.572800px;}
.ws10{word-spacing:-13.490400px;}
.wsd{word-spacing:-13.470600px;}
.ws9{word-spacing:-13.450200px;}
.ws12{word-spacing:-13.273800px;}
.wsa{word-spacing:-13.186080px;}
.ws7{word-spacing:-13.160160px;}
.ws3{word-spacing:-13.147200px;}
.ws11{word-spacing:-13.111200px;}
.wsf{word-spacing:-13.049400px;}
.wsb{word-spacing:-13.026000px;}
.wse{word-spacing:-12.990000px;}
.wsc{word-spacing:-12.924000px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:2.408040px;}
._4{margin-left:-3.107400px;}
._0{margin-left:-1.159200px;}
._1{width:1.164000px;}
._2{width:2.790960px;}
._3{width:4.284000px;}
._9{width:6.246001px;}
._7{width:7.321800px;}
._8{width:8.592358px;}
._c{width:9.741981px;}
._5{width:10.876200px;}
._6{width:12.141831px;}
._a{width:14.402399px;}
._b{width:15.690486px;}
._f{width:16.941114px;}
._d{width:18.645120px;}
._e{width:19.981440px;}
._10{width:21.567600px;}
._1b{width:24.860160px;}
._1a{width:26.300160px;}
._16{width:35.957760px;}
._15{width:37.040400px;}
._17{width:38.671680px;}
._1f{width:66.393360px;}
._19{width:68.371680px;}
._18{width:69.500880px;}
._1c{width:72.249840px;}
._14{width:96.429360px;}
._12{width:97.528320px;}
._13{width:98.534400px;}
._1d{width:114.144480px;}
._1e{width:115.154640px;}
._11{width:260.022000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:7.740000px;}
.y5c{bottom:7.770000px;}
.y42{bottom:7.920000px;}
.y44{bottom:7.950000px;}
.y51{bottom:7.965000px;}
.y7b{bottom:33.480000px;}
.y6e{bottom:33.660000px;}
.y75{bottom:33.690000px;}
.y83{bottom:33.705000px;}
.y46{bottom:35.100000px;}
.y59{bottom:35.130000px;}
.y4a{bottom:35.280000px;}
.y40{bottom:35.310000px;}
.y4e{bottom:35.325000px;}
.y2{bottom:73.260000px;}
.y2b{bottom:74.160000px;}
.y1{bottom:101.340000px;}
.ybb{bottom:115.020000px;}
.y13b{bottom:116.460000px;}
.y8e{bottom:119.880000px;}
.y5d{bottom:128.700000px;}
.yba{bottom:132.660000px;}
.y29{bottom:133.380000px;}
.y13a{bottom:134.100000px;}
.y88{bottom:134.820000px;}
.y79{bottom:136.980000px;}
.y71{bottom:137.010000px;}
.y81{bottom:137.025000px;}
.y112{bottom:140.580000px;}
.yb9{bottom:150.120000px;}
.y28{bottom:150.840000px;}
.y58{bottom:156.060000px;}
.y111{bottom:158.220000px;}
.y139{bottom:160.590000px;}
.y8d{bottom:160.770000px;}
.ye5{bottom:165.990000px;}
.yb8{bottom:167.790000px;}
.y27{bottom:168.510000px;}
.y138{bottom:178.230000px;}
.y5b{bottom:183.270000px;}
.y110{bottom:184.710000px;}
.yb7{bottom:185.430000px;}
.y26{bottom:186.150000px;}
.y8b{bottom:186.510000px;}
.y137{bottom:195.870000px;}
.ye4{bottom:201.630000px;}
.y10f{bottom:202.350000px;}
.yb6{bottom:202.890000px;}
.y25{bottom:203.790000px;}
.y5a{bottom:210.630000px;}
.y8c{bottom:212.430000px;}
.ye3{bottom:219.270000px;}
.y10e{bottom:219.990000px;}
.yb5{bottom:220.530000px;}
.y24{bottom:221.250000px;}
.y136{bottom:222.330000px;}
.ye2{bottom:236.910000px;}
.y55{bottom:237.990000px;}
.y89{bottom:238.170000px;}
.y23{bottom:238.890000px;}
.y135{bottom:239.970000px;}
.y10d{bottom:246.630000px;}
.ye1{bottom:254.370000px;}
.yb4{bottom:255.630000px;}
.y22{bottom:256.530000px;}
.y134{bottom:257.610000px;}
.y8a{bottom:264.090000px;}
.y10c{bottom:264.270000px;}
.y57{bottom:265.350000px;}
.ye0{bottom:272.010000px;}
.yb3{bottom:273.270000px;}
.y21{bottom:273.990000px;}
.y10b{bottom:281.730000px;}
.y133{bottom:284.070000px;}
.ydf{bottom:289.650000px;}
.y80{bottom:289.830000px;}
.y56{bottom:292.710000px;}
.yb2{bottom:299.730000px;}
.y132{bottom:301.710000px;}
.yde{bottom:307.110000px;}
.y10a{bottom:308.370000px;}
.y20{bottom:309.630000px;}
.y87{bottom:315.750000px;}
.y52{bottom:320.070000px;}
.y109{bottom:326.010000px;}
.y1f{bottom:327.270000px;}
.y131{bottom:328.350000px;}
.ydd{bottom:333.930000px;}
.yb1{bottom:335.370000px;}
.y85{bottom:341.490000px;}
.y1e{bottom:344.730000px;}
.y130{bottom:345.990000px;}
.y54{bottom:347.430000px;}
.y108{bottom:352.470000px;}
.yb0{bottom:353.010000px;}
.y1d{bottom:362.370000px;}
.y12f{bottom:363.630000px;}
.y86{bottom:367.410000px;}
.y107{bottom:370.110000px;}
.yaf{bottom:370.650000px;}
.y53{bottom:374.790000px;}
.y1c{bottom:380.010000px;}
.ydc{bottom:382.350000px;}
.yae{bottom:388.290000px;}
.y12e{bottom:390.090000px;}
.y82{bottom:393.150000px;}
.y106{bottom:396.570000px;}
.y1b{bottom:397.650000px;}
.ydb{bottom:399.990000px;}
.y4d{bottom:401.970000px;}
.yad{bottom:405.750000px;}
.y12d{bottom:407.775000px;}
.y105{bottom:414.255000px;}
.y1a{bottom:415.155000px;}
.yda{bottom:417.675000px;}
.y84{bottom:419.115000px;}
.yac{bottom:423.435000px;}
.y50{bottom:429.375000px;}
.y104{bottom:431.895000px;}
.y19{bottom:432.795000px;}
.y12c{bottom:434.235000px;}
.yd9{bottom:435.135000px;}
.yab{bottom:441.075000px;}
.y78{bottom:444.855000px;}
.y18{bottom:450.435000px;}
.y12b{bottom:451.875000px;}
.yd8{bottom:452.775000px;}
.y4f{bottom:456.735000px;}
.y103{bottom:458.355000px;}
.y12a{bottom:469.515000px;}
.yd7{bottom:470.415000px;}
.y7f{bottom:470.775000px;}
.y102{bottom:475.995000px;}
.yaa{bottom:476.535000px;}
.y17{bottom:477.075000px;}
.y49{bottom:484.095000px;}
.y129{bottom:487.155000px;}
.yd6{bottom:487.875000px;}
.ya9{bottom:494.175000px;}
.y7d{bottom:496.695000px;}
.y101{bottom:502.635000px;}
.yd5{bottom:505.515000px;}
.y4c{bottom:511.455000px;}
.ya8{bottom:511.815000px;}
.y128{bottom:513.615000px;}
.y100{bottom:520.275000px;}
.y7e{bottom:522.435000px;}
.yd4{bottom:523.155000px;}
.y16{bottom:525.855000px;}
.ya7{bottom:529.275000px;}
.y127{bottom:531.255000px;}
.y4b{bottom:538.815000px;}
.yd3{bottom:540.615000px;}
.yff{bottom:546.735000px;}
.ya6{bottom:546.915000px;}
.y7a{bottom:548.355000px;}
.y126{bottom:548.895000px;}
.yd2{bottom:558.255000px;}
.y15{bottom:562.755000px;}
.yfe{bottom:564.375000px;}
.y45{bottom:566.175000px;}
.ya5{bottom:573.555000px;}
.y7c{bottom:574.095000px;}
.y125{bottom:575.355000px;}
.yd1{bottom:575.895000px;}
.y14{bottom:580.395000px;}
.yfd{bottom:591.015000px;}
.ya4{bottom:591.195000px;}
.y124{bottom:592.995000px;}
.y48{bottom:593.355000px;}
.y13{bottom:598.035000px;}
.y70{bottom:600.015000px;}
.yfc{bottom:608.655000px;}
.y123{bottom:610.635000px;}
.yd0{bottom:610.995000px;}
.y12{bottom:615.675000px;}
.y47{bottom:620.715000px;}
.y77{bottom:625.755000px;}
.ya3{bottom:626.835000px;}
.y11{bottom:633.315000px;}
.yfb{bottom:635.115000px;}
.y122{bottom:637.095000px;}
.ycf{bottom:637.635000px;}
.y3f{bottom:648.075000px;}
.y10{bottom:650.775000px;}
.y74{bottom:651.675000px;}
.yfa{bottom:652.755000px;}
.y121{bottom:654.765000px;}
.yf{bottom:668.445000px;}
.yce{bottom:673.125000px;}
.ya2{bottom:675.285000px;}
.y43{bottom:675.465000px;}
.y76{bottom:677.445000px;}
.yf9{bottom:679.245000px;}
.y120{bottom:681.405000px;}
.ye{bottom:686.085000px;}
.ycd{bottom:690.765000px;}
.ya1{bottom:692.925000px;}
.yf8{bottom:696.885000px;}
.y11f{bottom:699.045000px;}
.y41{bottom:702.825000px;}
.y72{bottom:703.365000px;}
.yd{bottom:703.545000px;}
.ycc{bottom:708.405000px;}
.ya0{bottom:710.565000px;}
.yf7{bottom:714.525000px;}
.yc{bottom:721.185000px;}
.y11e{bottom:725.505000px;}
.ycb{bottom:726.045000px;}
.y9f{bottom:728.025000px;}
.y73{bottom:729.105000px;}
.y3d{bottom:730.185000px;}
.y147{bottom:734.505000px;}
.yb{bottom:738.825000px;}
.yf6{bottom:741.165000px;}
.y11d{bottom:743.145000px;}
.yca{bottom:743.505000px;}
.y9e{bottom:745.665000px;}
.y146{bottom:752.145000px;}
.y6d{bottom:755.025000px;}
.yf5{bottom:758.805000px;}
.y11c{bottom:760.785000px;}
.yc9{bottom:761.145000px;}
.ya{bottom:765.465000px;}
.y145{bottom:769.785000px;}
.y9d{bottom:778.605000px;}
.y3c{bottom:778.785000px;}
.y6f{bottom:780.765000px;}
.yf4{bottom:785.265000px;}
.y11b{bottom:787.245000px;}
.y144{bottom:796.245000px;}
.y3b{bottom:796.425000px;}
.yc8{bottom:796.605000px;}
.yf3{bottom:802.905000px;}
.y11a{bottom:804.885000px;}
.y9c{bottom:805.965000px;}
.y9{bottom:812.445000px;}
.y143{bottom:813.885000px;}
.yc7{bottom:814.245000px;}
.yf2{bottom:820.545000px;}
.y119{bottom:822.525000px;}
.y3a{bottom:823.245000px;}
.y6c{bottom:828.105000px;}
.y142{bottom:831.525000px;}
.yc6{bottom:831.885000px;}
.y9b{bottom:833.325000px;}
.y6b{bottom:845.745000px;}
.yf1{bottom:847.005000px;}
.y8{bottom:847.905000px;}
.y118{bottom:848.985000px;}
.yc5{bottom:849.525000px;}
.y141{bottom:857.985000px;}
.y9a{bottom:860.505000px;}
.yf0{bottom:864.645000px;}
.y117{bottom:866.625000px;}
.yc4{bottom:867.165000px;}
.y39{bottom:871.665000px;}
.y140{bottom:875.625000px;}
.y6a{bottom:881.205000px;}
.yef{bottom:882.285000px;}
.y7{bottom:883.725000px;}
.yc3{bottom:884.625000px;}
.y98{bottom:887.865000px;}
.y38{bottom:889.305000px;}
.y116{bottom:893.265000px;}
.y69{bottom:898.845000px;}
.yc2{bottom:902.310000px;}
.y37{bottom:906.810000px;}
.yee{bottom:908.790000px;}
.y115{bottom:910.950000px;}
.y99{bottom:915.270000px;}
.y68{bottom:916.530000px;}
.y6{bottom:919.770000px;}
.yc1{bottom:919.950000px;}
.y36{bottom:924.450000px;}
.yed{bottom:926.430000px;}
.y67{bottom:933.990000px;}
.yc0{bottom:937.410000px;}
.y5{bottom:937.770000px;}
.y35{bottom:942.090000px;}
.y66{bottom:951.630000px;}
.yec{bottom:953.070000px;}
.ybf{bottom:955.050000px;}
.y34{bottom:959.550000px;}
.y97{bottom:964.050000px;}
.y65{bottom:969.270000px;}
.yeb{bottom:970.710000px;}
.ybe{bottom:972.690000px;}
.y4{bottom:973.950000px;}
.y33{bottom:977.190000px;}
.y13f{bottom:981.510000px;}
.y96{bottom:981.690000px;}
.y64{bottom:986.730000px;}
.yea{bottom:988.170000px;}
.y32{bottom:994.830000px;}
.ybd{bottom:999.150000px;}
.y63{bottom:1004.370000px;}
.y3{bottom:1012.290000px;}
.y31{bottom:1012.470000px;}
.ye9{bottom:1014.990000px;}
.ybc{bottom:1016.790000px;}
.y95{bottom:1017.150000px;}
.y62{bottom:1022.010000px;}
.y30{bottom:1029.930000px;}
.y13e{bottom:1034.430000px;}
.y94{bottom:1034.790000px;}
.y61{bottom:1039.650000px;}
.y114{bottom:1043.430000px;}
.y2f{bottom:1047.570000px;}
.y93{bottom:1052.430000px;}
.y13d{bottom:1060.890000px;}
.y113{bottom:1061.070000px;}
.ye8{bottom:1063.410000px;}
.y92{bottom:1070.070000px;}
.y60{bottom:1072.410000px;}
.y2e{bottom:1074.390000px;}
.y13c{bottom:1078.530000px;}
.y91{bottom:1087.530000px;}
.ye7{bottom:1090.230000px;}
.y5f{bottom:1099.770000px;}
.y90{bottom:1105.170000px;}
.y2d{bottom:1122.630000px;}
.y8f{bottom:1122.810000px;}
.y5e{bottom:1127.130000px;}
.ye6{bottom:1127.490000px;}
.y2c{bottom:1140.270000px;}
.y2a{bottom:1194.300000px;}
.h12{height:25.020000px;}
.h15{height:25.056000px;}
.h11{height:25.200000px;}
.h18{height:25.236000px;}
.h8{height:26.460000px;}
.hf{height:26.496000px;}
.ha{height:26.640000px;}
.hb{height:26.676000px;}
.h2{height:29.717578px;}
.h3{height:38.405391px;}
.h6{height:50.597578px;}
.h17{height:50.760000px;}
.h10{height:50.940000px;}
.h14{height:50.976000px;}
.h19{height:54.036000px;}
.h5{height:56.084062px;}
.h1b{height:61.423863px;}
.h1a{height:62.211094px;}
.h7{height:68.956875px;}
.h4{height:71.324297px;}
.hc{height:81.180000px;}
.he{height:81.216000px;}
.hd{height:81.360000px;}
.h9{height:81.396000px;}
.h16{height:154.260000px;}
.h13{height:154.290000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:21.276000px;}
.w12{width:21.816000px;}
.w5{width:32.760000px;}
.w10{width:44.100000px;}
.wd{width:46.260000px;}
.wf{width:49.140000px;}
.w11{width:52.380000px;}
.w13{width:55.440000px;}
.wa{width:57.960000px;}
.wb{width:67.176000px;}
.w15{width:67.680000px;}
.w16{width:68.796000px;}
.w6{width:85.320000px;}
.wc{width:88.380000px;}
.w7{width:129.240000px;}
.w4{width:129.276000px;}
.w3{width:131.436000px;}
.we{width:131.616000px;}
.w14{width:137.196000px;}
.w8{width:203.430000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.960000px;}
.x1{left:68.040000px;}
.x1a{left:111.275987px;}
.x10{left:131.975987px;}
.x9{left:173.550000px;}
.x11{left:176.250000px;}
.x2{left:192.449987px;}
.x4{left:256.170000px;}
.xa{left:305.715000px;}
.x12{left:308.595000px;}
.x13{left:358.455000px;}
.x6{left:388.335000px;}
.x14{left:403.275000px;}
.xb{left:435.675000px;}
.x15{left:456.375000px;}
.x16{left:478.905000px;}
.xe{left:503.745000px;}
.x7{left:518.325000px;}
.x17{left:523.725000px;}
.x8{left:551.805000px;}
.x18{left:579.885000px;}
.xf{left:592.845000px;}
.xc{left:639.825000px;}
.x19{left:648.285000px;}
.xd{left:661.830000px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls4{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.329067pt;}
.ls6{letter-spacing:-0.290133pt;}
.lsf{letter-spacing:-0.198400pt;}
.ls12{letter-spacing:-0.139733pt;}
.lse{letter-spacing:-0.107733pt;}
.ls13{letter-spacing:-0.086933pt;}
.ls1c{letter-spacing:-0.032000pt;}
.lsc{letter-spacing:-0.009600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011520pt;}
.lsd{letter-spacing:0.034560pt;}
.ls1d{letter-spacing:0.112533pt;}
.ls15{letter-spacing:0.112640pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.149760pt;}
.lsa{letter-spacing:0.188160pt;}
.ls17{letter-spacing:0.219307pt;}
.lsb{letter-spacing:0.269333pt;}
.ls19{letter-spacing:0.281600pt;}
.ls11{letter-spacing:0.287467pt;}
.ls1b{letter-spacing:0.305067pt;}
.ls16{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.342933pt;}
.ls10{letter-spacing:0.592640pt;}
.ls7{letter-spacing:0.629333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.752640pt;}
.ls18{letter-spacing:42.192640pt;}
.ls14{letter-spacing:72.400640pt;}
.ws8{word-spacing:-13.296533pt;}
.ws5{word-spacing:-12.953600pt;}
.ws10{word-spacing:-11.991467pt;}
.wsd{word-spacing:-11.973867pt;}
.ws9{word-spacing:-11.955733pt;}
.ws12{word-spacing:-11.798933pt;}
.wsa{word-spacing:-11.720960pt;}
.ws7{word-spacing:-11.697920pt;}
.ws3{word-spacing:-11.686400pt;}
.ws11{word-spacing:-11.654400pt;}
.wsf{word-spacing:-11.599467pt;}
.wsb{word-spacing:-11.578667pt;}
.wse{word-spacing:-11.546667pt;}
.wsc{word-spacing:-11.488000pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:2.140480pt;}
._4{margin-left:-2.762134pt;}
._0{margin-left:-1.030400pt;}
._1{width:1.034667pt;}
._2{width:2.480853pt;}
._3{width:3.808000pt;}
._9{width:5.552001pt;}
._7{width:6.508267pt;}
._8{width:7.637651pt;}
._c{width:8.659538pt;}
._5{width:9.667734pt;}
._6{width:10.792739pt;}
._a{width:12.802132pt;}
._b{width:13.947098pt;}
._f{width:15.058768pt;}
._d{width:16.573440pt;}
._e{width:17.761280pt;}
._10{width:19.171200pt;}
._1b{width:22.097920pt;}
._1a{width:23.377920pt;}
._16{width:31.962453pt;}
._15{width:32.924800pt;}
._17{width:34.374827pt;}
._1f{width:59.016320pt;}
._19{width:60.774827pt;}
._18{width:61.778560pt;}
._1c{width:64.222080pt;}
._14{width:85.714987pt;}
._12{width:86.691840pt;}
._13{width:87.586133pt;}
._1d{width:101.461760pt;}
._1e{width:102.359680pt;}
._11{width:231.130667pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:6.880000pt;}
.y5c{bottom:6.906667pt;}
.y42{bottom:7.040000pt;}
.y44{bottom:7.066667pt;}
.y51{bottom:7.080000pt;}
.y7b{bottom:29.760000pt;}
.y6e{bottom:29.920000pt;}
.y75{bottom:29.946667pt;}
.y83{bottom:29.960000pt;}
.y46{bottom:31.200000pt;}
.y59{bottom:31.226667pt;}
.y4a{bottom:31.360000pt;}
.y40{bottom:31.386667pt;}
.y4e{bottom:31.400000pt;}
.y2{bottom:65.120000pt;}
.y2b{bottom:65.920000pt;}
.y1{bottom:90.080000pt;}
.ybb{bottom:102.240000pt;}
.y13b{bottom:103.520000pt;}
.y8e{bottom:106.560000pt;}
.y5d{bottom:114.400000pt;}
.yba{bottom:117.920000pt;}
.y29{bottom:118.560000pt;}
.y13a{bottom:119.200000pt;}
.y88{bottom:119.840000pt;}
.y79{bottom:121.760000pt;}
.y71{bottom:121.786667pt;}
.y81{bottom:121.800000pt;}
.y112{bottom:124.960000pt;}
.yb9{bottom:133.440000pt;}
.y28{bottom:134.080000pt;}
.y58{bottom:138.720000pt;}
.y111{bottom:140.640000pt;}
.y139{bottom:142.746667pt;}
.y8d{bottom:142.906667pt;}
.ye5{bottom:147.546667pt;}
.yb8{bottom:149.146667pt;}
.y27{bottom:149.786667pt;}
.y138{bottom:158.426667pt;}
.y5b{bottom:162.906667pt;}
.y110{bottom:164.186667pt;}
.yb7{bottom:164.826667pt;}
.y26{bottom:165.466667pt;}
.y8b{bottom:165.786667pt;}
.y137{bottom:174.106667pt;}
.ye4{bottom:179.226667pt;}
.y10f{bottom:179.866667pt;}
.yb6{bottom:180.346667pt;}
.y25{bottom:181.146667pt;}
.y5a{bottom:187.226667pt;}
.y8c{bottom:188.826667pt;}
.ye3{bottom:194.906667pt;}
.y10e{bottom:195.546667pt;}
.yb5{bottom:196.026667pt;}
.y24{bottom:196.666667pt;}
.y136{bottom:197.626667pt;}
.ye2{bottom:210.586667pt;}
.y55{bottom:211.546667pt;}
.y89{bottom:211.706667pt;}
.y23{bottom:212.346667pt;}
.y135{bottom:213.306667pt;}
.y10d{bottom:219.226667pt;}
.ye1{bottom:226.106667pt;}
.yb4{bottom:227.226667pt;}
.y22{bottom:228.026667pt;}
.y134{bottom:228.986667pt;}
.y8a{bottom:234.746667pt;}
.y10c{bottom:234.906667pt;}
.y57{bottom:235.866667pt;}
.ye0{bottom:241.786667pt;}
.yb3{bottom:242.906667pt;}
.y21{bottom:243.546667pt;}
.y10b{bottom:250.426667pt;}
.y133{bottom:252.506667pt;}
.ydf{bottom:257.466667pt;}
.y80{bottom:257.626667pt;}
.y56{bottom:260.186667pt;}
.yb2{bottom:266.426667pt;}
.y132{bottom:268.186667pt;}
.yde{bottom:272.986667pt;}
.y10a{bottom:274.106667pt;}
.y20{bottom:275.226667pt;}
.y87{bottom:280.666667pt;}
.y52{bottom:284.506667pt;}
.y109{bottom:289.786667pt;}
.y1f{bottom:290.906667pt;}
.y131{bottom:291.866667pt;}
.ydd{bottom:296.826667pt;}
.yb1{bottom:298.106667pt;}
.y85{bottom:303.546667pt;}
.y1e{bottom:306.426667pt;}
.y130{bottom:307.546667pt;}
.y54{bottom:308.826667pt;}
.y108{bottom:313.306667pt;}
.yb0{bottom:313.786667pt;}
.y1d{bottom:322.106667pt;}
.y12f{bottom:323.226667pt;}
.y86{bottom:326.586667pt;}
.y107{bottom:328.986667pt;}
.yaf{bottom:329.466667pt;}
.y53{bottom:333.146667pt;}
.y1c{bottom:337.786667pt;}
.ydc{bottom:339.866667pt;}
.yae{bottom:345.146667pt;}
.y12e{bottom:346.746667pt;}
.y82{bottom:349.466667pt;}
.y106{bottom:352.506667pt;}
.y1b{bottom:353.466667pt;}
.ydb{bottom:355.546667pt;}
.y4d{bottom:357.306667pt;}
.yad{bottom:360.666667pt;}
.y12d{bottom:362.466667pt;}
.y105{bottom:368.226667pt;}
.y1a{bottom:369.026667pt;}
.yda{bottom:371.266667pt;}
.y84{bottom:372.546667pt;}
.yac{bottom:376.386667pt;}
.y50{bottom:381.666667pt;}
.y104{bottom:383.906667pt;}
.y19{bottom:384.706667pt;}
.y12c{bottom:385.986667pt;}
.yd9{bottom:386.786667pt;}
.yab{bottom:392.066667pt;}
.y78{bottom:395.426667pt;}
.y18{bottom:400.386667pt;}
.y12b{bottom:401.666667pt;}
.yd8{bottom:402.466667pt;}
.y4f{bottom:405.986667pt;}
.y103{bottom:407.426667pt;}
.y12a{bottom:417.346667pt;}
.yd7{bottom:418.146667pt;}
.y7f{bottom:418.466667pt;}
.y102{bottom:423.106667pt;}
.yaa{bottom:423.586667pt;}
.y17{bottom:424.066667pt;}
.y49{bottom:430.306667pt;}
.y129{bottom:433.026667pt;}
.yd6{bottom:433.666667pt;}
.ya9{bottom:439.266667pt;}
.y7d{bottom:441.506667pt;}
.y101{bottom:446.786667pt;}
.yd5{bottom:449.346667pt;}
.y4c{bottom:454.626667pt;}
.ya8{bottom:454.946667pt;}
.y128{bottom:456.546667pt;}
.y100{bottom:462.466667pt;}
.y7e{bottom:464.386667pt;}
.yd4{bottom:465.026667pt;}
.y16{bottom:467.426667pt;}
.ya7{bottom:470.466667pt;}
.y127{bottom:472.226667pt;}
.y4b{bottom:478.946667pt;}
.yd3{bottom:480.546667pt;}
.yff{bottom:485.986667pt;}
.ya6{bottom:486.146667pt;}
.y7a{bottom:487.426667pt;}
.y126{bottom:487.906667pt;}
.yd2{bottom:496.226667pt;}
.y15{bottom:500.226667pt;}
.yfe{bottom:501.666667pt;}
.y45{bottom:503.266667pt;}
.ya5{bottom:509.826667pt;}
.y7c{bottom:510.306667pt;}
.y125{bottom:511.426667pt;}
.yd1{bottom:511.906667pt;}
.y14{bottom:515.906667pt;}
.yfd{bottom:525.346667pt;}
.ya4{bottom:525.506667pt;}
.y124{bottom:527.106667pt;}
.y48{bottom:527.426667pt;}
.y13{bottom:531.586667pt;}
.y70{bottom:533.346667pt;}
.yfc{bottom:541.026667pt;}
.y123{bottom:542.786667pt;}
.yd0{bottom:543.106667pt;}
.y12{bottom:547.266667pt;}
.y47{bottom:551.746667pt;}
.y77{bottom:556.226667pt;}
.ya3{bottom:557.186667pt;}
.y11{bottom:562.946667pt;}
.yfb{bottom:564.546667pt;}
.y122{bottom:566.306667pt;}
.ycf{bottom:566.786667pt;}
.y3f{bottom:576.066667pt;}
.y10{bottom:578.466667pt;}
.y74{bottom:579.266667pt;}
.yfa{bottom:580.226667pt;}
.y121{bottom:582.013333pt;}
.yf{bottom:594.173333pt;}
.yce{bottom:598.333333pt;}
.ya2{bottom:600.253333pt;}
.y43{bottom:600.413333pt;}
.y76{bottom:602.173333pt;}
.yf9{bottom:603.773333pt;}
.y120{bottom:605.693333pt;}
.ye{bottom:609.853333pt;}
.ycd{bottom:614.013333pt;}
.ya1{bottom:615.933333pt;}
.yf8{bottom:619.453333pt;}
.y11f{bottom:621.373333pt;}
.y41{bottom:624.733333pt;}
.y72{bottom:625.213333pt;}
.yd{bottom:625.373333pt;}
.ycc{bottom:629.693333pt;}
.ya0{bottom:631.613333pt;}
.yf7{bottom:635.133333pt;}
.yc{bottom:641.053333pt;}
.y11e{bottom:644.893333pt;}
.ycb{bottom:645.373333pt;}
.y9f{bottom:647.133333pt;}
.y73{bottom:648.093333pt;}
.y3d{bottom:649.053333pt;}
.y147{bottom:652.893333pt;}
.yb{bottom:656.733333pt;}
.yf6{bottom:658.813333pt;}
.y11d{bottom:660.573333pt;}
.yca{bottom:660.893333pt;}
.y9e{bottom:662.813333pt;}
.y146{bottom:668.573333pt;}
.y6d{bottom:671.133333pt;}
.yf5{bottom:674.493333pt;}
.y11c{bottom:676.253333pt;}
.yc9{bottom:676.573333pt;}
.ya{bottom:680.413333pt;}
.y145{bottom:684.253333pt;}
.y9d{bottom:692.093333pt;}
.y3c{bottom:692.253333pt;}
.y6f{bottom:694.013333pt;}
.yf4{bottom:698.013333pt;}
.y11b{bottom:699.773333pt;}
.y144{bottom:707.773333pt;}
.y3b{bottom:707.933333pt;}
.yc8{bottom:708.093333pt;}
.yf3{bottom:713.693333pt;}
.y11a{bottom:715.453333pt;}
.y9c{bottom:716.413333pt;}
.y9{bottom:722.173333pt;}
.y143{bottom:723.453333pt;}
.yc7{bottom:723.773333pt;}
.yf2{bottom:729.373333pt;}
.y119{bottom:731.133333pt;}
.y3a{bottom:731.773333pt;}
.y6c{bottom:736.093333pt;}
.y142{bottom:739.133333pt;}
.yc6{bottom:739.453333pt;}
.y9b{bottom:740.733333pt;}
.y6b{bottom:751.773333pt;}
.yf1{bottom:752.893333pt;}
.y8{bottom:753.693333pt;}
.y118{bottom:754.653333pt;}
.yc5{bottom:755.133333pt;}
.y141{bottom:762.653333pt;}
.y9a{bottom:764.893333pt;}
.yf0{bottom:768.573333pt;}
.y117{bottom:770.333333pt;}
.yc4{bottom:770.813333pt;}
.y39{bottom:774.813333pt;}
.y140{bottom:778.333333pt;}
.y6a{bottom:783.293333pt;}
.yef{bottom:784.253333pt;}
.y7{bottom:785.533333pt;}
.yc3{bottom:786.333333pt;}
.y98{bottom:789.213333pt;}
.y38{bottom:790.493333pt;}
.y116{bottom:794.013333pt;}
.y69{bottom:798.973333pt;}
.yc2{bottom:802.053333pt;}
.y37{bottom:806.053333pt;}
.yee{bottom:807.813333pt;}
.y115{bottom:809.733333pt;}
.y99{bottom:813.573333pt;}
.y68{bottom:814.693333pt;}
.y6{bottom:817.573333pt;}
.yc1{bottom:817.733333pt;}
.y36{bottom:821.733333pt;}
.yed{bottom:823.493333pt;}
.y67{bottom:830.213333pt;}
.yc0{bottom:833.253333pt;}
.y5{bottom:833.573333pt;}
.y35{bottom:837.413333pt;}
.y66{bottom:845.893333pt;}
.yec{bottom:847.173333pt;}
.ybf{bottom:848.933333pt;}
.y34{bottom:852.933333pt;}
.y97{bottom:856.933333pt;}
.y65{bottom:861.573333pt;}
.yeb{bottom:862.853333pt;}
.ybe{bottom:864.613333pt;}
.y4{bottom:865.733333pt;}
.y33{bottom:868.613333pt;}
.y13f{bottom:872.453333pt;}
.y96{bottom:872.613333pt;}
.y64{bottom:877.093333pt;}
.yea{bottom:878.373333pt;}
.y32{bottom:884.293333pt;}
.ybd{bottom:888.133333pt;}
.y63{bottom:892.773333pt;}
.y3{bottom:899.813333pt;}
.y31{bottom:899.973333pt;}
.ye9{bottom:902.213333pt;}
.ybc{bottom:903.813333pt;}
.y95{bottom:904.133333pt;}
.y62{bottom:908.453333pt;}
.y30{bottom:915.493333pt;}
.y13e{bottom:919.493333pt;}
.y94{bottom:919.813333pt;}
.y61{bottom:924.133333pt;}
.y114{bottom:927.493333pt;}
.y2f{bottom:931.173333pt;}
.y93{bottom:935.493333pt;}
.y13d{bottom:943.013333pt;}
.y113{bottom:943.173333pt;}
.ye8{bottom:945.253333pt;}
.y92{bottom:951.173333pt;}
.y60{bottom:953.253333pt;}
.y2e{bottom:955.013333pt;}
.y13c{bottom:958.693333pt;}
.y91{bottom:966.693333pt;}
.ye7{bottom:969.093333pt;}
.y5f{bottom:977.573333pt;}
.y90{bottom:982.373333pt;}
.y2d{bottom:997.893333pt;}
.y8f{bottom:998.053333pt;}
.y5e{bottom:1001.893333pt;}
.ye6{bottom:1002.213333pt;}
.y2c{bottom:1013.573333pt;}
.y2a{bottom:1061.600000pt;}
.h12{height:22.240000pt;}
.h15{height:22.272000pt;}
.h11{height:22.400000pt;}
.h18{height:22.432000pt;}
.h8{height:23.520000pt;}
.hf{height:23.552000pt;}
.ha{height:23.680000pt;}
.hb{height:23.712000pt;}
.h2{height:26.415625pt;}
.h3{height:34.138125pt;}
.h6{height:44.975625pt;}
.h17{height:45.120000pt;}
.h10{height:45.280000pt;}
.h14{height:45.312000pt;}
.h19{height:48.032000pt;}
.h5{height:49.852500pt;}
.h1b{height:54.598989pt;}
.h1a{height:55.298750pt;}
.h7{height:61.295000pt;}
.h4{height:63.399375pt;}
.hc{height:72.160000pt;}
.he{height:72.192000pt;}
.hd{height:72.320000pt;}
.h9{height:72.352000pt;}
.h16{height:137.120000pt;}
.h13{height:137.146667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:18.912000pt;}
.w12{width:19.392000pt;}
.w5{width:29.120000pt;}
.w10{width:39.200000pt;}
.wd{width:41.120000pt;}
.wf{width:43.680000pt;}
.w11{width:46.560000pt;}
.w13{width:49.280000pt;}
.wa{width:51.520000pt;}
.wb{width:59.712000pt;}
.w15{width:60.160000pt;}
.w16{width:61.152000pt;}
.w6{width:75.840000pt;}
.wc{width:78.560000pt;}
.w7{width:114.880000pt;}
.w4{width:114.912000pt;}
.w3{width:116.832000pt;}
.we{width:116.992000pt;}
.w14{width:121.952000pt;}
.w8{width:180.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.520000pt;}
.x1{left:60.480000pt;}
.x1a{left:98.911988pt;}
.x10{left:117.311988pt;}
.x9{left:154.266667pt;}
.x11{left:156.666667pt;}
.x2{left:171.066655pt;}
.x4{left:227.706667pt;}
.xa{left:271.746667pt;}
.x12{left:274.306667pt;}
.x13{left:318.626667pt;}
.x6{left:345.186667pt;}
.x14{left:358.466667pt;}
.xb{left:387.266667pt;}
.x15{left:405.666667pt;}
.x16{left:425.693333pt;}
.xe{left:447.773333pt;}
.x7{left:460.733333pt;}
.x17{left:465.533333pt;}
.x8{left:490.493333pt;}
.x18{left:515.453333pt;}
.xf{left:526.973333pt;}
.xc{left:568.733333pt;}
.x19{left:576.253333pt;}
.xd{left:588.293333pt;}
.x3{left:711.493322pt;}
}




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