
    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_3cab9cba45e912c8587c138e.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_9de03ebd3f83eb84a2e94f46.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_90cf0a6e53a1f20a24213855.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_59048c490f47d0b331abdfb5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab69666d777d770ad9523d00.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_19a6cd2de5a0104688de73d0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4b2c7f0468b0efd8764ec17f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_b5a0de3d6e653fb12d2e7eb0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.051758;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_ea90d14958eb38dc3203a413.woff')format("woff");}.ff9{font-family:ff9;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1e955f7c5ba7b6f9ee7002fe.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v4{vertical-align:36.000000px;}
.v3{vertical-align:42.480000px;}
.ls9{letter-spacing:-0.648000px;}
.ls22{letter-spacing:-0.495600px;}
.lsa{letter-spacing:-0.370200px;}
.lse{letter-spacing:-0.334200px;}
.lsb{letter-spacing:-0.326400px;}
.ls1d{letter-spacing:-0.256800px;}
.ls1e{letter-spacing:-0.157200px;}
.ls2a{letter-spacing:-0.052560px;}
.ls13{letter-spacing:-0.038880px;}
.ls2b{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.010800px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.006480px;}
.lsf{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.013200px;}
.ls21{letter-spacing:0.015840px;}
.ls30{letter-spacing:0.063600px;}
.lsc{letter-spacing:0.102000px;}
.ls12{letter-spacing:0.123000px;}
.ls2c{letter-spacing:0.131760px;}
.ls8{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.192000px;}
.ls5{letter-spacing:0.211200px;}
.ls10{letter-spacing:0.211680px;}
.ls1{letter-spacing:0.220320px;}
.ls24{letter-spacing:0.224400px;}
.ls27{letter-spacing:0.308880px;}
.ls1f{letter-spacing:0.317400px;}
.ls26{letter-spacing:0.319680px;}
.ls28{letter-spacing:0.347760px;}
.ls6{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.459360px;}
.ls15{letter-spacing:0.466560px;}
.ls23{letter-spacing:0.666000px;}
.ls11{letter-spacing:0.666720px;}
.ls2f{letter-spacing:0.708000px;}
.ls1a{letter-spacing:0.711360px;}
.ls0{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.732000px;}
.ls4{letter-spacing:0.732960px;}
.ls14{letter-spacing:0.741600px;}
.ls1b{letter-spacing:0.853920px;}
.ls17{letter-spacing:0.858240px;}
.ls19{letter-spacing:0.953280px;}
.ls1c{letter-spacing:1.038240px;}
.ls18{letter-spacing:1.052640px;}
.ls2d{letter-spacing:4.132800px;}
.ls29{letter-spacing:47.466720px;}
.ls25{letter-spacing:81.306720px;}
.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;}
}
.wse{word-spacing:-51.120000px;}
.ws3{word-spacing:-18.532800px;}
.ws7{word-spacing:-14.572800px;}
.wsd{word-spacing:-14.238600px;}
.ws17{word-spacing:-13.879200px;}
.ws12{word-spacing:-13.464600px;}
.ws13{word-spacing:-13.339200px;}
.ws14{word-spacing:-13.163040px;}
.ws4{word-spacing:-13.160400px;}
.wsc{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws16{word-spacing:-13.111200px;}
.ws15{word-spacing:-13.094640px;}
.ws11{word-spacing:-12.990000px;}
.ws10{word-spacing:-12.890400px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.wsb{word-spacing:-0.240000px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.712040px;}
.wsa{word-spacing:5.484000px;}
.ws9{word-spacing:6.204000px;}
.wsf{word-spacing:65.855880px;}
._f{margin-left:-3.585600px;}
._7{margin-left:-2.390400px;}
._0{margin-left:-1.159200px;}
._1{width:1.218000px;}
._6{width:2.741959px;}
._8{width:4.190440px;}
._3{width:5.551773px;}
._4{width:6.747731px;}
._e{width:7.769039px;}
._9{width:8.808940px;}
._a{width:10.577400px;}
._b{width:11.908320px;}
._10{width:14.222870px;}
._2{width:15.480084px;}
._5{width:17.209652px;}
._d{width:20.536121px;}
._c{width:21.573360px;}
._11{width:23.363471px;}
.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;}
.fs8{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yae{bottom:7.725000px;}
.y39{bottom:7.740000px;}
.yab{bottom:7.905000px;}
.yeb{bottom:7.911000px;}
.y3b{bottom:7.920000px;}
.y2{bottom:73.296000px;}
.y9f{bottom:74.160000px;}
.y23{bottom:74.196000px;}
.ydd{bottom:78.330000px;}
.yb1{bottom:100.290000px;}
.ya7{bottom:100.305000px;}
.ydc{bottom:100.470000px;}
.y1{bottom:101.556000px;}
.y47{bottom:115.236000px;}
.ye5{bottom:122.385000px;}
.yb0{bottom:122.430000px;}
.ya6{bottom:122.445000px;}
.ydb{bottom:122.610000px;}
.y74{bottom:123.336000px;}
.yec{bottom:124.056000px;}
.ye3{bottom:136.125000px;}
.y9d{bottom:141.696000px;}
.y113{bottom:142.956000px;}
.ye4{bottom:144.525000px;}
.ya4{bottom:144.570000px;}
.y46{bottom:147.456000px;}
.y73{bottom:158.970000px;}
.y112{bottom:160.590000px;}
.yea{bottom:163.485000px;}
.y9c{bottom:177.330000px;}
.y111{bottom:187.230000px;}
.ye9{bottom:190.845000px;}
.y72{bottom:194.610000px;}
.y110{bottom:204.690000px;}
.y71{bottom:212.070000px;}
.y9b{bottom:212.790000px;}
.ye8{bottom:218.205000px;}
.y70{bottom:229.710000px;}
.y10f{bottom:231.330000px;}
.ye7{bottom:245.385000px;}
.y6f{bottom:247.350000px;}
.y9a{bottom:248.430000px;}
.y10e{bottom:248.970000px;}
.y21{bottom:264.090000px;}
.y6e{bottom:264.990000px;}
.y99{bottom:266.070000px;}
.ye6{bottom:272.745000px;}
.y10d{bottom:275.610000px;}
.y20{bottom:281.730000px;}
.y6d{bottom:282.450000px;}
.y98{bottom:283.710000px;}
.y10c{bottom:293.070000px;}
.y1f{bottom:299.370000px;}
.y6c{bottom:300.090000px;}
.yda{bottom:300.105000px;}
.y97{bottom:301.170000px;}
.yba{bottom:303.870000px;}
.y1e{bottom:316.830000px;}
.y6b{bottom:317.730000px;}
.y96{bottom:318.810000px;}
.y10b{bottom:319.710000px;}
.ye2{bottom:327.465000px;}
.y1d{bottom:334.470000px;}
.yb9{bottom:335.955000px;}
.y95{bottom:336.495000px;}
.y10a{bottom:337.395000px;}
.y6a{bottom:344.235000px;}
.y1c{bottom:352.155000px;}
.y94{bottom:353.955000px;}
.ye1{bottom:354.855000px;}
.y109{bottom:363.855000px;}
.yb8{bottom:367.995000px;}
.y93{bottom:371.595000px;}
.y45{bottom:378.075000px;}
.y69{bottom:379.875000px;}
.y108{bottom:381.495000px;}
.yb7{bottom:382.035000px;}
.ye0{bottom:382.215000px;}
.y1b{bottom:387.615000px;}
.y92{bottom:389.235000px;}
.yaf{bottom:394.275000px;}
.y44{bottom:395.535000px;}
.y68{bottom:397.515000px;}
.y107{bottom:399.135000px;}
.y1a{bottom:405.255000px;}
.y91{bottom:406.695000px;}
.ydf{bottom:409.575000px;}
.y67{bottom:414.975000px;}
.yb6{bottom:421.455000px;}
.y43{bottom:422.175000px;}
.y19{bottom:422.895000px;}
.y90{bottom:424.335000px;}
.y106{bottom:425.595000px;}
.yde{bottom:436.935000px;}
.y66{bottom:441.615000px;}
.y8f{bottom:441.975000px;}
.y105{bottom:443.235000px;}
.yb5{bottom:448.815000px;}
.y18{bottom:449.895000px;}
.y42{bottom:452.235000px;}
.y8e{bottom:459.615000px;}
.yd9{bottom:464.115000px;}
.y104{bottom:469.875000px;}
.yb4{bottom:476.175000px;}
.y8d{bottom:477.075000px;}
.y65{bottom:477.255000px;}
.y41{bottom:477.975000px;}
.y103{bottom:487.515000px;}
.yd8{bottom:491.475000px;}
.y64{bottom:494.715000px;}
.y17{bottom:498.315000px;}
.yb3{bottom:503.565000px;}
.y40{bottom:503.895000px;}
.y63{bottom:512.355000px;}
.y102{bottom:513.975000px;}
.y3f{bottom:529.635000px;}
.y62{bottom:529.995000px;}
.yb2{bottom:530.925000px;}
.y101{bottom:531.615000px;}
.y16{bottom:535.395000px;}
.y8c{bottom:538.815000px;}
.yd7{bottom:540.255000px;}
.y100{bottom:549.255000px;}
.y15{bottom:553.035000px;}
.y3e{bottom:555.555000px;}
.y61{bottom:556.635000px;}
.ya5{bottom:558.285000px;}
.ya3{bottom:558.300000px;}
.y14{bottom:570.495000px;}
.y8b{bottom:574.815000px;}
.yd6{bottom:575.715000px;}
.y3d{bottom:581.295000px;}
.yad{bottom:585.660000px;}
.y13{bottom:588.135000px;}
.y60{bottom:592.095000px;}
.yd5{bottom:593.355000px;}
.y12{bottom:605.805000px;}
.y3c{bottom:607.245000px;}
.y5f{bottom:609.765000px;}
.yd4{bottom:611.025000px;}
.yac{bottom:612.825000px;}
.y8a{bottom:623.085000px;}
.y11{bottom:623.265000px;}
.y5e{bottom:627.405000px;}
.yd3{bottom:628.665000px;}
.y3a{bottom:632.985000px;}
.yff{bottom:637.485000px;}
.yaa{bottom:640.200000px;}
.y89{bottom:640.725000px;}
.y10{bottom:640.905000px;}
.yd2{bottom:646.125000px;}
.y5d{bottom:653.865000px;}
.yfe{bottom:655.125000px;}
.y88{bottom:658.185000px;}
.yf{bottom:658.545000px;}
.y38{bottom:658.905000px;}
.yd1{bottom:663.765000px;}
.ya9{bottom:667.590000px;}
.yfd{bottom:672.765000px;}
.y87{bottom:675.825000px;}
.ye{bottom:676.005000px;}
.yd0{bottom:681.405000px;}
.y5c{bottom:689.505000px;}
.yd{bottom:693.645000px;}
.ya8{bottom:694.950000px;}
.ycf{bottom:698.865000px;}
.yfc{bottom:699.405000px;}
.y86{bottom:702.465000px;}
.y37{bottom:706.065000px;}
.y123{bottom:716.505000px;}
.yfb{bottom:716.865000px;}
.yc{bottom:720.645000px;}
.ya2{bottom:722.310000px;}
.y5b{bottom:725.145000px;}
.y122{bottom:734.145000px;}
.yce{bottom:734.505000px;}
.y85{bottom:734.865000px;}
.y36{bottom:741.705000px;}
.y5a{bottom:742.605000px;}
.yfa{bottom:743.505000px;}
.y84{bottom:743.865000px;}
.ya1{bottom:749.670000px;}
.y121{bottom:751.605000px;}
.ycd{bottom:752.145000px;}
.y35{bottom:759.345000px;}
.y59{bottom:760.245000px;}
.yf9{bottom:761.145000px;}
.yb{bottom:768.885000px;}
.ycc{bottom:769.605000px;}
.y34{bottom:776.805000px;}
.y58{bottom:777.885000px;}
.y120{bottom:778.245000px;}
.y83{bottom:786.885000px;}
.ycb{bottom:787.245000px;}
.yf8{bottom:788.145000px;}
.y33{bottom:794.445000px;}
.y57{bottom:795.525000px;}
.y11f{bottom:795.885000px;}
.ya0{bottom:798.270000px;}
.y82{bottom:804.525000px;}
.ya{bottom:804.705000px;}
.yca{bottom:804.885000px;}
.y32{bottom:812.085000px;}
.y56{bottom:812.985000px;}
.y11e{bottom:813.525000px;}
.y81{bottom:821.985000px;}
.yc9{bottom:822.525000px;}
.y9e{bottom:824.940000px;}
.y31{bottom:829.545000px;}
.yf7{bottom:836.205000px;}
.y55{bottom:839.625000px;}
.y11d{bottom:839.985000px;}
.y9{bottom:840.705000px;}
.y30{bottom:847.185000px;}
.y80{bottom:857.265000px;}
.y11c{bottom:857.625000px;}
.yc8{bottom:857.985000px;}
.yf6{bottom:863.205000px;}
.y2f{bottom:864.825000px;}
.y54{bottom:875.310000px;}
.yc7{bottom:875.670000px;}
.y8{bottom:876.570000px;}
.y2e{bottom:882.330000px;}
.y7f{bottom:883.770000px;}
.y11b{bottom:884.310000px;}
.y53{bottom:892.770000px;}
.yc6{bottom:893.310000px;}
.y7{bottom:897.342000px;}
.y2d{bottom:899.970000px;}
.yf5{bottom:900.150000px;}
.y11a{bottom:901.770000px;}
.y52{bottom:910.410000px;}
.yc5{bottom:910.770000px;}
.y2c{bottom:917.610000px;}
.y7e{bottom:919.410000px;}
.yf4{bottom:927.150000px;}
.y51{bottom:928.050000px;}
.yc4{bottom:928.410000px;}
.y6{bottom:930.030000px;}
.y2b{bottom:935.250000px;}
.y50{bottom:945.510000px;}
.yc3{bottom:946.050000px;}
.y5{bottom:949.290000px;}
.y7d{bottom:955.050000px;}
.y2a{bottom:961.710000px;}
.y4f{bottom:963.150000px;}
.yc2{bottom:963.510000px;}
.yf3{bottom:964.590000px;}
.y119{bottom:972.510000px;}
.y4e{bottom:980.790000px;}
.yc1{bottom:981.150000px;}
.y4{bottom:987.810000px;}
.y118{bottom:990.150000px;}
.y7c{bottom:990.510000px;}
.y29{bottom:994.290000px;}
.yc0{bottom:998.790000px;}
.y4d{bottom:1007.430000px;}
.y7b{bottom:1008.150000px;}
.y3{bottom:1012.470000px;}
.yf2{bottom:1012.830000px;}
.ybf{bottom:1016.430000px;}
.y117{bottom:1016.790000px;}
.y7a{bottom:1025.790000px;}
.y28{bottom:1029.930000px;}
.yf1{bottom:1030.290000px;}
.ybe{bottom:1033.890000px;}
.y116{bottom:1034.430000px;}
.y4c{bottom:1042.890000px;}
.y79{bottom:1043.430000px;}
.y27{bottom:1047.570000px;}
.yf0{bottom:1047.930000px;}
.ybd{bottom:1051.530000px;}
.y115{bottom:1051.890000px;}
.y4b{bottom:1060.530000px;}
.y78{bottom:1060.890000px;}
.y26{bottom:1065.030000px;}
.yef{bottom:1065.570000px;}
.y4a{bottom:1078.170000px;}
.y77{bottom:1078.530000px;}
.yee{bottom:1083.030000px;}
.ybc{bottom:1087.170000px;}
.y25{bottom:1091.670000px;}
.y76{bottom:1096.170000px;}
.yed{bottom:1100.670000px;}
.y49{bottom:1104.630000px;}
.y75{bottom:1113.630000px;}
.y114{bottom:1122.630000px;}
.y24{bottom:1127.670000px;}
.ybb{bottom:1131.300000px;}
.y48{bottom:1140.300000px;}
.y22{bottom:1194.300000px;}
.hf{height:25.005000px;}
.hb{height:25.020000px;}
.h10{height:25.185000px;}
.hd{height:25.200000px;}
.he{height:25.230000px;}
.h15{height:26.445000px;}
.h1d{height:26.460000px;}
.h16{height:26.625000px;}
.h21{height:26.631000px;}
.h1a{height:26.640000px;}
.h19{height:26.661000px;}
.h1c{height:26.670000px;}
.h2{height:29.717578px;}
.h3{height:39.468516px;}
.h1e{height:41.974453px;}
.hc{height:50.597578px;}
.h6{height:51.998203px;}
.h7{height:56.084062px;}
.h5{height:57.636562px;}
.ha{height:59.614102px;}
.h22{height:61.423863px;}
.h9{height:62.211094px;}
.h8{height:68.956875px;}
.h4{height:73.298672px;}
.h11{height:85.562578px;}
.h12{height:87.998203px;}
.h1f{height:163.245000px;}
.h20{height:163.260000px;}
.h17{height:163.275000px;}
.h18{height:163.290000px;}
.h1b{height:163.305000px;}
.h13{height:893.160000px;}
.h14{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w17{width:50.025000px;}
.wb{width:50.565000px;}
.w5{width:51.645000px;}
.w6{width:59.385000px;}
.wf{width:67.860000px;}
.wc{width:70.191000px;}
.w18{width:70.200000px;}
.w16{width:76.845000px;}
.w15{width:76.881000px;}
.w7{width:77.961000px;}
.w14{width:85.125000px;}
.w11{width:85.140000px;}
.we{width:85.161000px;}
.w10{width:85.320000px;}
.w12{width:91.116000px;}
.w13{width:93.405000px;}
.wd{width:113.025000px;}
.w2{width:113.061000px;}
.w1b{width:129.801000px;}
.w3{width:133.956000px;}
.w4{width:138.081000px;}
.w1c{width:138.810000px;}
.w1a{width:203.790000px;}
.w19{width:658.575000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.wa{width:938.070000px;}
.w9{width:1262.250000px;}
.w8{width:1262.520000px;}
.x0{left:0.000000px;}
.x5{left:7.725000px;}
.x1{left:68.040000px;}
.x26{left:72.180000px;}
.x12{left:108.000000px;}
.x27{left:111.276000px;}
.x1f{left:117.720000px;}
.x13{left:137.025000px;}
.x23{left:188.325000px;}
.x16{left:207.945000px;}
.x2{left:209.730000px;}
.x4{left:227.205000px;}
.x22{left:288.930000px;}
.x24{left:302.115000px;}
.x17{left:321.705000px;}
.xe{left:339.375000px;}
.x6{left:340.995000px;}
.xb{left:353.055000px;}
.x14{left:358.050000px;}
.x10{left:394.410000px;}
.xd{left:404.355000px;}
.x18{left:407.775000px;}
.xc{left:411.585000px;}
.x7{left:475.680000px;}
.xf{left:505.905000px;}
.x9{left:535.800000px;}
.x20{left:556.995000px;}
.x19{left:562.395000px;}
.xa{left:591.810000px;}
.x8{left:614.490000px;}
.x21{left:631.335000px;}
.x25{left:637.170000px;}
.x1a{left:648.255000px;}
.x1b{left:740.100000px;}
.x3{left:800.460000px;}
.x1c{left:834.420000px;}
.x1d{left:920.280000px;}
.x1e{left:997.890000px;}
.x15{left:1075.110000px;}
.x11{left:1129.830000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:32.000000pt;}
.v3{vertical-align:37.760000pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls22{letter-spacing:-0.440533pt;}
.lsa{letter-spacing:-0.329067pt;}
.lse{letter-spacing:-0.297067pt;}
.lsb{letter-spacing:-0.290133pt;}
.ls1d{letter-spacing:-0.228267pt;}
.ls1e{letter-spacing:-0.139733pt;}
.ls2a{letter-spacing:-0.046720pt;}
.ls13{letter-spacing:-0.034560pt;}
.ls2b{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.009600pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.005760pt;}
.lsf{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.011733pt;}
.ls21{letter-spacing:0.014080pt;}
.ls30{letter-spacing:0.056533pt;}
.lsc{letter-spacing:0.090667pt;}
.ls12{letter-spacing:0.109333pt;}
.ls2c{letter-spacing:0.117120pt;}
.ls8{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.170667pt;}
.ls5{letter-spacing:0.187733pt;}
.ls10{letter-spacing:0.188160pt;}
.ls1{letter-spacing:0.195840pt;}
.ls24{letter-spacing:0.199467pt;}
.ls27{letter-spacing:0.274560pt;}
.ls1f{letter-spacing:0.282133pt;}
.ls26{letter-spacing:0.284160pt;}
.ls28{letter-spacing:0.309120pt;}
.ls6{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.408320pt;}
.ls15{letter-spacing:0.414720pt;}
.ls23{letter-spacing:0.592000pt;}
.ls11{letter-spacing:0.592640pt;}
.ls2f{letter-spacing:0.629333pt;}
.ls1a{letter-spacing:0.632320pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.650667pt;}
.ls4{letter-spacing:0.651520pt;}
.ls14{letter-spacing:0.659200pt;}
.ls1b{letter-spacing:0.759040pt;}
.ls17{letter-spacing:0.762880pt;}
.ls19{letter-spacing:0.847360pt;}
.ls1c{letter-spacing:0.922880pt;}
.ls18{letter-spacing:0.935680pt;}
.ls2d{letter-spacing:3.673600pt;}
.ls29{letter-spacing:42.192640pt;}
.ls25{letter-spacing:72.272640pt;}
.wse{word-spacing:-45.440000pt;}
.ws3{word-spacing:-16.473600pt;}
.ws7{word-spacing:-12.953600pt;}
.wsd{word-spacing:-12.656533pt;}
.ws17{word-spacing:-12.337067pt;}
.ws12{word-spacing:-11.968533pt;}
.ws13{word-spacing:-11.857067pt;}
.ws14{word-spacing:-11.700480pt;}
.ws4{word-spacing:-11.698133pt;}
.wsc{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws16{word-spacing:-11.654400pt;}
.ws15{word-spacing:-11.639680pt;}
.ws11{word-spacing:-11.546667pt;}
.ws10{word-spacing:-11.458133pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.wsb{word-spacing:-0.213333pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:4.188480pt;}
.wsa{word-spacing:4.874667pt;}
.ws9{word-spacing:5.514667pt;}
.wsf{word-spacing:58.538560pt;}
._f{margin-left:-3.187200pt;}
._7{margin-left:-2.124800pt;}
._0{margin-left:-1.030400pt;}
._1{width:1.082667pt;}
._6{width:2.437297pt;}
._8{width:3.724836pt;}
._3{width:4.934909pt;}
._4{width:5.997983pt;}
._e{width:6.905812pt;}
._9{width:7.830169pt;}
._a{width:9.402134pt;}
._b{width:10.585173pt;}
._10{width:12.642551pt;}
._2{width:13.760075pt;}
._5{width:15.297468pt;}
._d{width:18.254330pt;}
._c{width:19.176320pt;}
._11{width:20.767530pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:6.866667pt;}
.y39{bottom:6.880000pt;}
.yab{bottom:7.026667pt;}
.yeb{bottom:7.032000pt;}
.y3b{bottom:7.040000pt;}
.y2{bottom:65.152000pt;}
.y9f{bottom:65.920000pt;}
.y23{bottom:65.952000pt;}
.ydd{bottom:69.626667pt;}
.yb1{bottom:89.146667pt;}
.ya7{bottom:89.160000pt;}
.ydc{bottom:89.306667pt;}
.y1{bottom:90.272000pt;}
.y47{bottom:102.432000pt;}
.ye5{bottom:108.786667pt;}
.yb0{bottom:108.826667pt;}
.ya6{bottom:108.840000pt;}
.ydb{bottom:108.986667pt;}
.y74{bottom:109.632000pt;}
.yec{bottom:110.272000pt;}
.ye3{bottom:121.000000pt;}
.y9d{bottom:125.952000pt;}
.y113{bottom:127.072000pt;}
.ye4{bottom:128.466667pt;}
.ya4{bottom:128.506667pt;}
.y46{bottom:131.072000pt;}
.y73{bottom:141.306667pt;}
.y112{bottom:142.746667pt;}
.yea{bottom:145.320000pt;}
.y9c{bottom:157.626667pt;}
.y111{bottom:166.426667pt;}
.ye9{bottom:169.640000pt;}
.y72{bottom:172.986667pt;}
.y110{bottom:181.946667pt;}
.y71{bottom:188.506667pt;}
.y9b{bottom:189.146667pt;}
.ye8{bottom:193.960000pt;}
.y70{bottom:204.186667pt;}
.y10f{bottom:205.626667pt;}
.ye7{bottom:218.120000pt;}
.y6f{bottom:219.866667pt;}
.y9a{bottom:220.826667pt;}
.y10e{bottom:221.306667pt;}
.y21{bottom:234.746667pt;}
.y6e{bottom:235.546667pt;}
.y99{bottom:236.506667pt;}
.ye6{bottom:242.440000pt;}
.y10d{bottom:244.986667pt;}
.y20{bottom:250.426667pt;}
.y6d{bottom:251.066667pt;}
.y98{bottom:252.186667pt;}
.y10c{bottom:260.506667pt;}
.y1f{bottom:266.106667pt;}
.y6c{bottom:266.746667pt;}
.yda{bottom:266.760000pt;}
.y97{bottom:267.706667pt;}
.yba{bottom:270.106667pt;}
.y1e{bottom:281.626667pt;}
.y6b{bottom:282.426667pt;}
.y96{bottom:283.386667pt;}
.y10b{bottom:284.186667pt;}
.ye2{bottom:291.080000pt;}
.y1d{bottom:297.306667pt;}
.yb9{bottom:298.626667pt;}
.y95{bottom:299.106667pt;}
.y10a{bottom:299.906667pt;}
.y6a{bottom:305.986667pt;}
.y1c{bottom:313.026667pt;}
.y94{bottom:314.626667pt;}
.ye1{bottom:315.426667pt;}
.y109{bottom:323.426667pt;}
.yb8{bottom:327.106667pt;}
.y93{bottom:330.306667pt;}
.y45{bottom:336.066667pt;}
.y69{bottom:337.666667pt;}
.y108{bottom:339.106667pt;}
.yb7{bottom:339.586667pt;}
.ye0{bottom:339.746667pt;}
.y1b{bottom:344.546667pt;}
.y92{bottom:345.986667pt;}
.yaf{bottom:350.466667pt;}
.y44{bottom:351.586667pt;}
.y68{bottom:353.346667pt;}
.y107{bottom:354.786667pt;}
.y1a{bottom:360.226667pt;}
.y91{bottom:361.506667pt;}
.ydf{bottom:364.066667pt;}
.y67{bottom:368.866667pt;}
.yb6{bottom:374.626667pt;}
.y43{bottom:375.266667pt;}
.y19{bottom:375.906667pt;}
.y90{bottom:377.186667pt;}
.y106{bottom:378.306667pt;}
.yde{bottom:388.386667pt;}
.y66{bottom:392.546667pt;}
.y8f{bottom:392.866667pt;}
.y105{bottom:393.986667pt;}
.yb5{bottom:398.946667pt;}
.y18{bottom:399.906667pt;}
.y42{bottom:401.986667pt;}
.y8e{bottom:408.546667pt;}
.yd9{bottom:412.546667pt;}
.y104{bottom:417.666667pt;}
.yb4{bottom:423.266667pt;}
.y8d{bottom:424.066667pt;}
.y65{bottom:424.226667pt;}
.y41{bottom:424.866667pt;}
.y103{bottom:433.346667pt;}
.yd8{bottom:436.866667pt;}
.y64{bottom:439.746667pt;}
.y17{bottom:442.946667pt;}
.yb3{bottom:447.613333pt;}
.y40{bottom:447.906667pt;}
.y63{bottom:455.426667pt;}
.y102{bottom:456.866667pt;}
.y3f{bottom:470.786667pt;}
.y62{bottom:471.106667pt;}
.yb2{bottom:471.933333pt;}
.y101{bottom:472.546667pt;}
.y16{bottom:475.906667pt;}
.y8c{bottom:478.946667pt;}
.yd7{bottom:480.226667pt;}
.y100{bottom:488.226667pt;}
.y15{bottom:491.586667pt;}
.y3e{bottom:493.826667pt;}
.y61{bottom:494.786667pt;}
.ya5{bottom:496.253333pt;}
.ya3{bottom:496.266667pt;}
.y14{bottom:507.106667pt;}
.y8b{bottom:510.946667pt;}
.yd6{bottom:511.746667pt;}
.y3d{bottom:516.706667pt;}
.yad{bottom:520.586667pt;}
.y13{bottom:522.786667pt;}
.y60{bottom:526.306667pt;}
.yd5{bottom:527.426667pt;}
.y12{bottom:538.493333pt;}
.y3c{bottom:539.773333pt;}
.y5f{bottom:542.013333pt;}
.yd4{bottom:543.133333pt;}
.yac{bottom:544.733333pt;}
.y8a{bottom:553.853333pt;}
.y11{bottom:554.013333pt;}
.y5e{bottom:557.693333pt;}
.yd3{bottom:558.813333pt;}
.y3a{bottom:562.653333pt;}
.yff{bottom:566.653333pt;}
.yaa{bottom:569.066667pt;}
.y89{bottom:569.533333pt;}
.y10{bottom:569.693333pt;}
.yd2{bottom:574.333333pt;}
.y5d{bottom:581.213333pt;}
.yfe{bottom:582.333333pt;}
.y88{bottom:585.053333pt;}
.yf{bottom:585.373333pt;}
.y38{bottom:585.693333pt;}
.yd1{bottom:590.013333pt;}
.ya9{bottom:593.413333pt;}
.yfd{bottom:598.013333pt;}
.y87{bottom:600.733333pt;}
.ye{bottom:600.893333pt;}
.yd0{bottom:605.693333pt;}
.y5c{bottom:612.893333pt;}
.yd{bottom:616.573333pt;}
.ya8{bottom:617.733333pt;}
.ycf{bottom:621.213333pt;}
.yfc{bottom:621.693333pt;}
.y86{bottom:624.413333pt;}
.y37{bottom:627.613333pt;}
.y123{bottom:636.893333pt;}
.yfb{bottom:637.213333pt;}
.yc{bottom:640.573333pt;}
.ya2{bottom:642.053333pt;}
.y5b{bottom:644.573333pt;}
.y122{bottom:652.573333pt;}
.yce{bottom:652.893333pt;}
.y85{bottom:653.213333pt;}
.y36{bottom:659.293333pt;}
.y5a{bottom:660.093333pt;}
.yfa{bottom:660.893333pt;}
.y84{bottom:661.213333pt;}
.ya1{bottom:666.373333pt;}
.y121{bottom:668.093333pt;}
.ycd{bottom:668.573333pt;}
.y35{bottom:674.973333pt;}
.y59{bottom:675.773333pt;}
.yf9{bottom:676.573333pt;}
.yb{bottom:683.453333pt;}
.ycc{bottom:684.093333pt;}
.y34{bottom:690.493333pt;}
.y58{bottom:691.453333pt;}
.y120{bottom:691.773333pt;}
.y83{bottom:699.453333pt;}
.ycb{bottom:699.773333pt;}
.yf8{bottom:700.573333pt;}
.y33{bottom:706.173333pt;}
.y57{bottom:707.133333pt;}
.y11f{bottom:707.453333pt;}
.ya0{bottom:709.573333pt;}
.y82{bottom:715.133333pt;}
.ya{bottom:715.293333pt;}
.yca{bottom:715.453333pt;}
.y32{bottom:721.853333pt;}
.y56{bottom:722.653333pt;}
.y11e{bottom:723.133333pt;}
.y81{bottom:730.653333pt;}
.yc9{bottom:731.133333pt;}
.y9e{bottom:733.280000pt;}
.y31{bottom:737.373333pt;}
.yf7{bottom:743.293333pt;}
.y55{bottom:746.333333pt;}
.y11d{bottom:746.653333pt;}
.y9{bottom:747.293333pt;}
.y30{bottom:753.053333pt;}
.y80{bottom:762.013333pt;}
.y11c{bottom:762.333333pt;}
.yc8{bottom:762.653333pt;}
.yf6{bottom:767.293333pt;}
.y2f{bottom:768.733333pt;}
.y54{bottom:778.053333pt;}
.yc7{bottom:778.373333pt;}
.y8{bottom:779.173333pt;}
.y2e{bottom:784.293333pt;}
.y7f{bottom:785.573333pt;}
.y11b{bottom:786.053333pt;}
.y53{bottom:793.573333pt;}
.yc6{bottom:794.053333pt;}
.y7{bottom:797.637333pt;}
.y2d{bottom:799.973333pt;}
.yf5{bottom:800.133333pt;}
.y11a{bottom:801.573333pt;}
.y52{bottom:809.253333pt;}
.yc5{bottom:809.573333pt;}
.y2c{bottom:815.653333pt;}
.y7e{bottom:817.253333pt;}
.yf4{bottom:824.133333pt;}
.y51{bottom:824.933333pt;}
.yc4{bottom:825.253333pt;}
.y6{bottom:826.693333pt;}
.y2b{bottom:831.333333pt;}
.y50{bottom:840.453333pt;}
.yc3{bottom:840.933333pt;}
.y5{bottom:843.813333pt;}
.y7d{bottom:848.933333pt;}
.y2a{bottom:854.853333pt;}
.y4f{bottom:856.133333pt;}
.yc2{bottom:856.453333pt;}
.yf3{bottom:857.413333pt;}
.y119{bottom:864.453333pt;}
.y4e{bottom:871.813333pt;}
.yc1{bottom:872.133333pt;}
.y4{bottom:878.053333pt;}
.y118{bottom:880.133333pt;}
.y7c{bottom:880.453333pt;}
.y29{bottom:883.813333pt;}
.yc0{bottom:887.813333pt;}
.y4d{bottom:895.493333pt;}
.y7b{bottom:896.133333pt;}
.y3{bottom:899.973333pt;}
.yf2{bottom:900.293333pt;}
.ybf{bottom:903.493333pt;}
.y117{bottom:903.813333pt;}
.y7a{bottom:911.813333pt;}
.y28{bottom:915.493333pt;}
.yf1{bottom:915.813333pt;}
.ybe{bottom:919.013333pt;}
.y116{bottom:919.493333pt;}
.y4c{bottom:927.013333pt;}
.y79{bottom:927.493333pt;}
.y27{bottom:931.173333pt;}
.yf0{bottom:931.493333pt;}
.ybd{bottom:934.693333pt;}
.y115{bottom:935.013333pt;}
.y4b{bottom:942.693333pt;}
.y78{bottom:943.013333pt;}
.y26{bottom:946.693333pt;}
.yef{bottom:947.173333pt;}
.y4a{bottom:958.373333pt;}
.y77{bottom:958.693333pt;}
.yee{bottom:962.693333pt;}
.ybc{bottom:966.373333pt;}
.y25{bottom:970.373333pt;}
.y76{bottom:974.373333pt;}
.yed{bottom:978.373333pt;}
.y49{bottom:981.893333pt;}
.y75{bottom:989.893333pt;}
.y114{bottom:997.893333pt;}
.y24{bottom:1002.373333pt;}
.ybb{bottom:1005.600000pt;}
.y48{bottom:1013.600000pt;}
.y22{bottom:1061.600000pt;}
.hf{height:22.226667pt;}
.hb{height:22.240000pt;}
.h10{height:22.386667pt;}
.hd{height:22.400000pt;}
.he{height:22.426667pt;}
.h15{height:23.506667pt;}
.h1d{height:23.520000pt;}
.h16{height:23.666667pt;}
.h21{height:23.672000pt;}
.h1a{height:23.680000pt;}
.h19{height:23.698667pt;}
.h1c{height:23.706667pt;}
.h2{height:26.415625pt;}
.h3{height:35.083125pt;}
.h1e{height:37.310625pt;}
.hc{height:44.975625pt;}
.h6{height:46.220625pt;}
.h7{height:49.852500pt;}
.h5{height:51.232500pt;}
.ha{height:52.990313pt;}
.h22{height:54.598989pt;}
.h9{height:55.298750pt;}
.h8{height:61.295000pt;}
.h4{height:65.154375pt;}
.h11{height:76.055625pt;}
.h12{height:78.220625pt;}
.h1f{height:145.106667pt;}
.h20{height:145.120000pt;}
.h17{height:145.133333pt;}
.h18{height:145.146667pt;}
.h1b{height:145.160000pt;}
.h13{height:793.920000pt;}
.h14{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w17{width:44.466667pt;}
.wb{width:44.946667pt;}
.w5{width:45.906667pt;}
.w6{width:52.786667pt;}
.wf{width:60.320000pt;}
.wc{width:62.392000pt;}
.w18{width:62.400000pt;}
.w16{width:68.306667pt;}
.w15{width:68.338667pt;}
.w7{width:69.298667pt;}
.w14{width:75.666667pt;}
.w11{width:75.680000pt;}
.we{width:75.698667pt;}
.w10{width:75.840000pt;}
.w12{width:80.992000pt;}
.w13{width:83.026667pt;}
.wd{width:100.466667pt;}
.w2{width:100.498667pt;}
.w1b{width:115.378667pt;}
.w3{width:119.072000pt;}
.w4{width:122.738667pt;}
.w1c{width:123.386667pt;}
.w1a{width:181.146667pt;}
.w19{width:585.400000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.wa{width:833.840000pt;}
.w9{width:1122.000000pt;}
.w8{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x5{left:6.866667pt;}
.x1{left:60.480000pt;}
.x26{left:64.160000pt;}
.x12{left:96.000000pt;}
.x27{left:98.912000pt;}
.x1f{left:104.640000pt;}
.x13{left:121.800000pt;}
.x23{left:167.400000pt;}
.x16{left:184.840000pt;}
.x2{left:186.426667pt;}
.x4{left:201.960000pt;}
.x22{left:256.826667pt;}
.x24{left:268.546667pt;}
.x17{left:285.960000pt;}
.xe{left:301.666667pt;}
.x6{left:303.106667pt;}
.xb{left:313.826667pt;}
.x14{left:318.266667pt;}
.x10{left:350.586667pt;}
.xd{left:359.426667pt;}
.x18{left:362.466667pt;}
.xc{left:365.853333pt;}
.x7{left:422.826667pt;}
.xf{left:449.693333pt;}
.x9{left:476.266667pt;}
.x20{left:495.106667pt;}
.x19{left:499.906667pt;}
.xa{left:526.053333pt;}
.x8{left:546.213333pt;}
.x21{left:561.186667pt;}
.x25{left:566.373333pt;}
.x1a{left:576.226667pt;}
.x1b{left:657.866667pt;}
.x3{left:711.520000pt;}
.x1c{left:741.706667pt;}
.x1d{left:818.026667pt;}
.x1e{left:887.013333pt;}
.x15{left:955.653333pt;}
.x11{left:1004.293333pt;}
}




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