
    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_fc2e39d5df137f96ada41834.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_9096ac4c17c881e5c31a7d77.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_829a616afd7b93f46da0e575.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_7bbad3ab5b3ed8b653f9ecbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975586;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_8ebc9203eafc6df42984f3f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_863efcf46242436d5af3bbaf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a26da4193f90821ebf75042b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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_b31545007f8ad123de13974c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls19{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.324000px;}
.ls10{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.131760px;}
.ls29{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.065880px;}
.ls14{letter-spacing:-0.063000px;}
.lsc{letter-spacing:0.000000px;}
.lse{letter-spacing:0.036000px;}
.ls3f{letter-spacing:0.065880px;}
.ls8{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.131760px;}
.lsa{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.179280px;}
.ls12{letter-spacing:0.189000px;}
.ls23{letter-spacing:0.197640px;}
.ls35{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.329400px;}
.ls13{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.395280px;}
.ls26{letter-spacing:0.432000px;}
.ls31{letter-spacing:0.461160px;}
.ls2e{letter-spacing:0.500688px;}
.ls3e{letter-spacing:28.008000px;}
.lsb{letter-spacing:32.184000px;}
.ls28{letter-spacing:32.256000px;}
.ls27{letter-spacing:38.304000px;}
.ls22{letter-spacing:56.898000px;}
.ls9{letter-spacing:65.314800px;}
.ls3b{letter-spacing:71.064000px;}
.ls45{letter-spacing:73.728000px;}
.ls36{letter-spacing:122.040000px;}
.ls1e{letter-spacing:182.520000px;}
.ls40{letter-spacing:208.008000px;}
.ls43{letter-spacing:218.808000px;}
.ls37{letter-spacing:322.488000px;}
.ls2{letter-spacing:385.704240px;}
.ls2c{letter-spacing:398.244600px;}
.ls25{letter-spacing:408.128040px;}
.ls4{letter-spacing:536.616240px;}
.ls44{letter-spacing:552.312000px;}
.ls38{letter-spacing:581.472000px;}
.ls2d{letter-spacing:591.075360px;}
.ls3{letter-spacing:635.214960px;}
.ls0{letter-spacing:657.545640px;}
.ls20{letter-spacing:677.773440px;}
.ls1d{letter-spacing:684.295560px;}
.ls2a{letter-spacing:707.328000px;}
.ls24{letter-spacing:746.757840px;}
.ls1c{letter-spacing:748.604640px;}
.ls1b{letter-spacing:758.042640px;}
.ls17{letter-spacing:849.111120px;}
.ls1{letter-spacing:986.945640px;}
.ls21{letter-spacing:1108.234440px;}
.ls1f{letter-spacing:1127.274240px;}
.ls5{letter-spacing:1151.513640px;}
.ls39{letter-spacing:1223.928000px;}
.ls3c{letter-spacing:1253.520000px;}
.ls42{letter-spacing:1304.208000px;}
.ls16{letter-spacing:1312.272000px;}
.ls33{letter-spacing:1394.208000px;}
.ls41{letter-spacing:1685.952000px;}
.ls2b{letter-spacing:1715.938440px;}
.ls3d{letter-spacing:1717.848000px;}
.ls1a{letter-spacing:2080.800000px;}
.ls6{letter-spacing:2097.000000px;}
.ls3a{letter-spacing:2257.200000px;}
.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;}
}
.ws1{word-spacing:-16.416000px;}
.ws12{word-spacing:-16.344000px;}
.ws0{word-spacing:-16.272000px;}
.ws1c{word-spacing:-16.200000px;}
.ws14{word-spacing:-16.128000px;}
.ws15{word-spacing:-15.020640px;}
.ws16{word-spacing:-14.823000px;}
.ws13{word-spacing:-14.238000px;}
.ws2{word-spacing:-7.812000px;}
.ws19{word-spacing:-0.576000px;}
.ws18{word-spacing:-0.504000px;}
.wse{word-spacing:-0.432000px;}
.ws17{word-spacing:-0.329400px;}
.ws4{word-spacing:-0.263520px;}
.ws6{word-spacing:-0.216000px;}
.ws7{word-spacing:-0.197640px;}
.ws9{word-spacing:-0.144000px;}
.wsb{word-spacing:-0.131760px;}
.ws5{word-spacing:-0.072000px;}
.wsa{word-spacing:-0.065880px;}
.ws8{word-spacing:-0.036000px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.065880px;}
.ws11{word-spacing:0.072000px;}
.wsd{word-spacing:0.144000px;}
.wsf{word-spacing:0.189000px;}
.ws10{word-spacing:0.252000px;}
.wsc{word-spacing:0.263520px;}
.ws1b{word-spacing:0.432000px;}
._52{margin-left:-89.712000px;}
._3e{margin-left:-54.432000px;}
._4f{margin-left:-43.632000px;}
._2{margin-left:-18.413460px;}
._7{margin-left:-17.223840px;}
._4{margin-left:-16.200000px;}
._5{margin-left:-15.192000px;}
._e{margin-left:-13.464000px;}
._4b{margin-left:-3.744000px;}
._1{margin-left:-1.087020px;}
._3{width:1.008000px;}
._41{width:61.920000px;}
._30{width:110.856276px;}
._1f{width:115.135020px;}
._a{width:119.880000px;}
._6{width:131.421060px;}
._1a{width:167.346900px;}
._1d{width:168.751800px;}
._1e{width:173.520000px;}
._31{width:227.160828px;}
._46{width:232.200648px;}
._4c{width:248.007600px;}
._29{width:277.881840px;}
._12{width:302.047200px;}
._b{width:311.760000px;}
._3d{width:313.061760px;}
._9{width:318.960000px;}
._36{width:319.979160px;}
._17{width:330.127200px;}
._20{width:331.560000px;}
._39{width:335.526840px;}
._44{width:339.545520px;}
._2a{width:340.929000px;}
._38{width:345.935880px;}
._4d{width:347.040000px;}
._2e{width:348.505200px;}
._47{width:349.559280px;}
._3b{width:363.987000px;}
._37{width:365.765760px;}
._13{width:371.512800px;}
._50{width:378.720000px;}
._2c{width:387.308520px;}
._8{width:393.840000px;}
._14{width:412.920000px;}
._3f{width:440.631000px;}
._2b{width:449.960400px;}
._27{width:463.694400px;}
._1c{width:555.849000px;}
._1b{width:576.368100px;}
._22{width:663.840000px;}
._10{width:678.960000px;}
._3a{width:687.918960px;}
._16{width:696.960000px;}
._34{width:706.628880px;}
._24{width:743.040000px;}
._45{width:795.171600px;}
._48{width:799.585560px;}
._33{width:819.678960px;}
._11{width:822.600000px;}
._28{width:933.058440px;}
._23{width:949.320000px;}
._2d{width:1004.735880px;}
._49{width:1075.680000px;}
._15{width:1122.120000px;}
._18{width:1166.392800px;}
._32{width:1178.329680px;}
._35{width:1182.809520px;}
._2f{width:1215.354240px;}
._25{width:1291.680000px;}
._0{width:1358.208000px;}
._4e{width:1371.600000px;}
._26{width:1398.698280px;}
._51{width:1419.120000px;}
._19{width:1443.240000px;}
._43{width:1562.344200px;}
._f{width:1625.760000px;}
._40{width:1800.720000px;}
._21{width:1918.800000px;}
._42{width:1950.840000px;}
._3c{width:1967.703840px;}
._d{width:1974.240000px;}
._4a{width:2109.240000px;}
._c{width:2216.160000px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(46,41,37);}
.fc1{color:rgb(33,86,139);}
.fc0{color:transparent;}
.fs5{font-size:29.880000px;}
.fs3{font-size:36.000000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.504840px;}
.y27{bottom:57.504870px;}
.y1{bottom:76.494750px;}
.y26{bottom:76.494780px;}
.yec{bottom:76.498680px;}
.y95{bottom:76.501170px;}
.y69{bottom:119.160000px;}
.y122{bottom:121.410000px;}
.y127{bottom:125.820000px;}
.ybc{bottom:127.260000px;}
.yee{bottom:132.120000px;}
.y25{bottom:132.210000px;}
.y50{bottom:134.460000px;}
.y89{bottom:138.510720px;}
.y10a{bottom:143.370000px;}
.y126{bottom:147.870000px;}
.ybb{bottom:149.220000px;}
.y24{bottom:154.170000px;}
.y4f{bottom:156.420000px;}
.y88{bottom:158.670000px;}
.y68{bottom:162.090000px;}
.yeb{bottom:164.876700px;}
.y109{bottom:165.420000px;}
.y13a{bottom:169.830000px;}
.yba{bottom:171.180000px;}
.yed{bottom:176.130000px;}
.y23{bottom:176.220000px;}
.yd7{bottom:176.670000px;}
.y4e{bottom:178.380000px;}
.y67{bottom:184.050000px;}
.yea{bottom:185.035980px;}
.y87{bottom:189.992160px;}
.y125{bottom:190.800000px;}
.yb9{bottom:193.140000px;}
.y22{bottom:198.180000px;}
.yd6{bottom:198.630000px;}
.y4d{bottom:200.340000px;}
.ye9{bottom:205.195260px;}
.y66{bottom:206.010000px;}
.y121{bottom:208.350000px;}
.y86{bottom:210.151440px;}
.y124{bottom:212.760000px;}
.yb8{bottom:215.190000px;}
.y108{bottom:219.060000px;}
.y21{bottom:220.140000px;}
.yd5{bottom:220.590000px;}
.y4c{bottom:222.390000px;}
.ye8{bottom:225.354540px;}
.y65{bottom:228.060000px;}
.y120{bottom:230.310000px;}
.y85{bottom:230.310720px;}
.y123{bottom:234.720000px;}
.yb7{bottom:237.150000px;}
.y107{bottom:241.020000px;}
.yd4{bottom:242.550000px;}
.y4b{bottom:244.350000px;}
.ye7{bottom:245.513820px;}
.y64{bottom:250.020000px;}
.y84{bottom:250.470000px;}
.y11f{bottom:252.270000px;}
.y20{bottom:253.350000px;}
.yb6{bottom:259.110000px;}
.y106{bottom:262.980000px;}
.yd3{bottom:264.510000px;}
.ye5{bottom:265.590720px;}
.ye6{bottom:265.590750px;}
.y4a{bottom:266.310000px;}
.y63{bottom:271.980000px;}
.y11e{bottom:274.230000px;}
.y137{bottom:277.740000px;}
.yb5{bottom:281.070000px;}
.y105{bottom:285.030000px;}
.ye1{bottom:285.750000px;}
.yd2{bottom:286.470000px;}
.y49{bottom:288.270000px;}
.y83{bottom:292.050000px;}
.y62{bottom:293.940000px;}
.y11d{bottom:296.280000px;}
.yd{bottom:299.610000px;}
.y136{bottom:299.700000px;}
.y104{bottom:306.990000px;}
.yd1{bottom:308.430000px;}
.y48{bottom:310.230000px;}
.yb4{bottom:314.280000px;}
.ye0{bottom:317.155230px;}
.y11c{bottom:318.240000px;}
.y135{bottom:321.660000px;}
.y82{bottom:324.804510px;}
.y6f{bottom:327.150000px;}
.y103{bottom:328.950000px;}
.yd0{bottom:330.480000px;}
.y47{bottom:332.190000px;}
.ydf{bottom:337.314510px;}
.yc{bottom:342.630000px;}
.y134{bottom:343.620000px;}
.y81{bottom:344.963790px;}
.y46{bottom:354.150000px;}
.yb3{bottom:357.300000px;}
.yde{bottom:357.473790px;}
.y11b{bottom:361.170000px;}
.y102{bottom:362.160000px;}
.ycf{bottom:363.690000px;}
.y1f{bottom:364.590000px;}
.y139{bottom:364.680000px;}
.y80{bottom:365.123070px;}
.y133{bottom:365.580000px;}
.y61{bottom:369.447750px;}
.ydd{bottom:377.550720px;}
.yb2{bottom:379.260000px;}
.y11a{bottom:383.130000px;}
.y7f{bottom:385.200000px;}
.y1e{bottom:386.550000px;}
.y45{bottom:387.450000px;}
.y132{bottom:387.540000px;}
.y60{bottom:388.710000px;}
.ydc{bottom:397.710000px;}
.yb1{bottom:401.220000px;}
.y101{bottom:405.180000px;}
.yc1{bottom:406.620000px;}
.y138{bottom:407.610000px;}
.yb{bottom:408.510000px;}
.y7e{bottom:416.605950px;}
.yb0{bottom:423.180000px;}
.y100{bottom:427.140000px;}
.yce{bottom:428.580000px;}
.y6e{bottom:429.570000px;}
.y44{bottom:429.745500px;}
.ya{bottom:430.470000px;}
.y131{bottom:430.560000px;}
.y7d{bottom:436.765230px;}
.ye4{bottom:439.290000px;}
.yaf{bottom:445.140000px;}
.y43{bottom:449.007750px;}
.yff{bottom:449.100000px;}
.yc0{bottom:450.540000px;}
.y6d{bottom:451.530000px;}
.y130{bottom:452.520000px;}
.y7c{bottom:456.924510px;}
.ye3{bottom:461.340000px;}
.yae{bottom:467.100000px;}
.y42{bottom:468.175500px;}
.yfe{bottom:471.060000px;}
.ybf{bottom:472.590000px;}
.y9{bottom:473.490000px;}
.y12f{bottom:474.480000px;}
.y7b{bottom:477.083790px;}
.ye2{bottom:483.300000px;}
.y41{bottom:487.437750px;}
.yfd{bottom:493.020000px;}
.ybe{bottom:494.550000px;}
.y6c{bottom:495.540000px;}
.y12e{bottom:496.440000px;}
.y7a{bottom:497.160720px;}
.y119{bottom:504.270000px;}
.y40{bottom:506.605500px;}
.yad{bottom:510.120000px;}
.yfc{bottom:514.980000px;}
.y1d{bottom:516.420000px;}
.ybd{bottom:516.510000px;}
.y79{bottom:517.320000px;}
.y12d{bottom:518.490000px;}
.y3f{bottom:525.867750px;}
.yac{bottom:532.080000px;}
.yfb{bottom:536.940000px;}
.y1c{bottom:538.380000px;}
.y5f{bottom:538.470000px;}
.y3e{bottom:545.130000px;}
.y118{bottom:547.290000px;}
.yab{bottom:554.040000px;}
.y78{bottom:558.990000px;}
.ydb{bottom:559.440000px;}
.y1b{bottom:560.340000px;}
.y6b{bottom:560.430000px;}
.y12c{bottom:561.420000px;}
.y3d{bottom:564.297750px;}
.y117{bottom:569.250000px;}
.yaa{bottom:576.000000px;}
.y77{bottom:580.950000px;}
.ycd{bottom:581.490000px;}
.y1a{bottom:582.390000px;}
.y12b{bottom:583.380000px;}
.y3c{bottom:583.560000px;}
.y116{bottom:591.210000px;}
.ya9{bottom:597.960000px;}
.yfa{bottom:602.910000px;}
.ycc{bottom:603.450000px;}
.y19{bottom:604.350000px;}
.y12a{bottom:605.340000px;}
.y115{bottom:613.170000px;}
.ya8{bottom:620.010000px;}
.y94{bottom:623.880000px;}
.y3b{bottom:624.420000px;}
.yf9{bottom:624.870000px;}
.ycb{bottom:625.410000px;}
.y5e{bottom:626.400000px;}
.y114{bottom:635.130000px;}
.ya7{bottom:641.970000px;}
.y93{bottom:645.840000px;}
.y3a{bottom:646.380000px;}
.yf8{bottom:646.830000px;}
.y18{bottom:647.280000px;}
.yda{bottom:647.370000px;}
.y5d{bottom:648.360000px;}
.y113{bottom:657.090000px;}
.ya6{bottom:663.930000px;}
.y92{bottom:667.800000px;}
.y39{bottom:668.340000px;}
.yf7{bottom:668.790000px;}
.y17{bottom:669.240000px;}
.yd9{bottom:669.330000px;}
.y5c{bottom:670.320000px;}
.y112{bottom:679.050000px;}
.y91{bottom:689.850000px;}
.y38{bottom:690.300000px;}
.yf6{bottom:690.750000px;}
.y16{bottom:691.200000px;}
.yd8{bottom:691.290000px;}
.y5b{bottom:692.280000px;}
.y111{bottom:701.100000px;}
.ya5{bottom:706.860000px;}
.y90{bottom:711.810000px;}
.yca{bottom:712.350000px;}
.y15{bottom:713.250000px;}
.y5a{bottom:714.240000px;}
.y110{bottom:723.060000px;}
.yf5{bottom:724.050000px;}
.ya4{bottom:728.820000px;}
.y34{bottom:733.320000px;}
.y8f{bottom:733.770000px;}
.yc9{bottom:734.310000px;}
.y14{bottom:735.210000px;}
.y129{bottom:735.300000px;}
.y59{bottom:736.200000px;}
.y10f{bottom:745.020000px;}
.ya3{bottom:750.870000px;}
.y33{bottom:755.280000px;}
.y8e{bottom:755.730000px;}
.yc8{bottom:756.270000px;}
.y13{bottom:757.170000px;}
.y128{bottom:757.260000px;}
.yf4{bottom:766.980000px;}
.ya2{bottom:772.830000px;}
.y32{bottom:777.240000px;}
.yc7{bottom:778.230000px;}
.y12{bottom:779.130000px;}
.y58{bottom:779.220000px;}
.y8d{bottom:788.940000px;}
.ya1{bottom:794.790000px;}
.y31{bottom:799.200000px;}
.yc6{bottom:800.190000px;}
.y57{bottom:801.180000px;}
.y8{bottom:810.000000px;}
.yf3{bottom:810.900000px;}
.ya0{bottom:816.750000px;}
.y30{bottom:821.160000px;}
.yc5{bottom:822.150000px;}
.y56{bottom:823.140000px;}
.y76{bottom:831.960000px;}
.yf2{bottom:832.860000px;}
.y9f{bottom:838.710000px;}
.y7{bottom:842.760000px;}
.y2f{bottom:843.210000px;}
.yc4{bottom:844.110000px;}
.y55{bottom:845.100000px;}
.y75{bottom:853.920000px;}
.yf1{bottom:854.910000px;}
.y9e{bottom:860.670000px;}
.y37{bottom:865.170000px;}
.yc3{bottom:866.160000px;}
.y54{bottom:867.060000px;}
.y6{bottom:874.170000px;}
.y8c{bottom:875.880000px;}
.yf0{bottom:876.870000px;}
.y9d{bottom:882.630000px;}
.y2e{bottom:887.130000px;}
.yc2{bottom:888.120000px;}
.y74{bottom:897.840000px;}
.yef{bottom:898.830000px;}
.y9c{bottom:904.680000px;}
.y5{bottom:905.580000px;}
.y2d{bottom:909.090000px;}
.y53{bottom:910.080000px;}
.y73{bottom:919.800000px;}
.y10e{bottom:920.790000px;}
.y9b{bottom:926.640000px;}
.y36{bottom:931.050000px;}
.y6a{bottom:932.040000px;}
.y4{bottom:936.900000px;}
.y72{bottom:941.760000px;}
.y10d{bottom:942.750000px;}
.y2c{bottom:953.010000px;}
.y52{bottom:954.000000px;}
.y9a{bottom:959.850000px;}
.y8b{bottom:963.720000px;}
.y10c{bottom:964.710000px;}
.y3{bottom:968.310000px;}
.y2b{bottom:974.970000px;}
.y51{bottom:975.960000px;}
.y71{bottom:985.770000px;}
.y99{bottom:992.610720px;}
.y2a{bottom:997.020000px;}
.y10b{bottom:997.920000px;}
.y70{bottom:1007.730000px;}
.y11{bottom:1009.980000px;}
.y98{bottom:1012.770000px;}
.y35{bottom:1018.980000px;}
.y8a{bottom:1029.690000px;}
.y10{bottom:1031.940000px;}
.y29{bottom:1040.940000px;}
.y97{bottom:1044.090720px;}
.yf{bottom:1053.900000px;}
.y28{bottom:1062.900000px;}
.y96{bottom:1064.250000px;}
.ye{bottom:1116.180000px;}
.h8{height:43.211250px;}
.h7{height:43.650879px;}
.h2{height:47.286914px;}
.h1{height:47.351250px;}
.h5{height:48.766641px;}
.h3{height:50.062500px;}
.h4{height:51.679688px;}
.h6{height:59.004492px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:107.996340px;}
.xe{left:135.000000px;}
.x3{left:141.928800px;}
.xf{left:158.940000px;}
.x11{left:162.000000px;}
.x5{left:187.470000px;}
.x50{left:189.000000px;}
.x24{left:192.151650px;}
.x42{left:198.003000px;}
.x79{left:207.545700px;}
.x2c{left:211.411650px;}
.x22{left:212.940000px;}
.x81{left:214.745700px;}
.x51{left:216.000000px;}
.x10{left:231.300000px;}
.x2f{left:243.271650px;}
.x9{left:244.350000px;}
.x1a{left:245.790450px;}
.x39{left:247.139850px;}
.x6c{left:249.210000px;}
.x8{left:257.310000px;}
.x88{left:270.002100px;}
.x38{left:271.620000px;}
.x86{left:278.912100px;}
.xc{left:292.410000px;}
.x72{left:295.919550px;}
.x1d{left:298.170450px;}
.x68{left:299.246040px;}
.x46{left:301.601100px;}
.x74{left:307.979550px;}
.x7d{left:311.405700px;}
.x7a{left:312.665700px;}
.x61{left:315.630150px;}
.x3c{left:317.160000px;}
.x5e{left:319.860150px;}
.x34{left:322.477050px;}
.x71{left:325.349550px;}
.x7c{left:334.355700px;}
.x3d{left:335.790000px;}
.x58{left:337.050000px;}
.x1f{left:341.280450px;}
.x43{left:345.493650px;}
.x3f{left:349.200000px;}
.x64{left:351.702150px;}
.x56{left:352.980000px;}
.x7b{left:354.695700px;}
.x21{left:361.890000px;}
.x33{left:363.521550px;}
.x4a{left:365.490000px;}
.x6e{left:368.100000px;}
.x45{left:371.335080px;}
.x20{left:373.944900px;}
.x77{left:378.095700px;}
.x52{left:382.595730px;}
.x26{left:386.821650px;}
.x4b{left:392.031420px;}
.x3b{left:407.610000px;}
.x87{left:409.952100px;}
.x27{left:412.741650px;}
.x6f{left:419.670000px;}
.x30{left:423.721650px;}
.x28{left:425.071650px;}
.x40{left:429.030000px;}
.x6b{left:436.500000px;}
.x55{left:437.940000px;}
.x4{left:441.270000px;}
.x67{left:444.017340px;}
.x62{left:454.140150px;}
.xd{left:455.850000px;}
.x76{left:467.549550px;}
.x31{left:468.721650px;}
.x60{left:470.880150px;}
.x7f{left:475.745700px;}
.x47{left:477.187770px;}
.x4d{left:483.555090px;}
.x3a{left:493.201650px;}
.x8a{left:496.172100px;}
.x6a{left:508.590000px;}
.x2a{left:509.941650px;}
.x29{left:511.021650px;}
.x5f{left:512.910150px;}
.x2e{left:515.071650px;}
.x1c{left:516.510450px;}
.x63{left:522.162150px;}
.x5b{left:530.550000px;}
.x8c{left:542.432100px;}
.x69{left:549.257400px;}
.x48{left:564.112140px;}
.x82{left:565.835700px;}
.x44{left:571.478520px;}
.x59{left:574.650000px;}
.xa{left:583.650000px;}
.x19{left:589.410450px;}
.x3e{left:594.090000px;}
.x75{left:595.529550px;}
.x2b{left:597.871650px;}
.x4e{left:599.310000px;}
.x18{left:601.920450px;}
.x5d{left:604.530000px;}
.x57{left:605.610000px;}
.x83{left:610.385700px;}
.x4c{left:611.971800px;}
.x5c{left:617.400000px;}
.x7e{left:625.415700px;}
.x65{left:628.920000px;}
.x70{left:631.530000px;}
.x4f{left:638.730000px;}
.x53{left:642.869490px;}
.x66{left:663.002460px;}
.x8b{left:672.302100px;}
.x32{left:674.281650px;}
.x6d{left:678.780000px;}
.x16{left:684.000450px;}
.x17{left:685.350450px;}
.x35{left:687.420000px;}
.x41{left:688.770000px;}
.x85{left:692.732100px;}
.x54{left:694.890000px;}
.x12{left:706.052700px;}
.x5a{left:722.970000px;}
.x80{left:725.045700px;}
.x89{left:728.912100px;}
.xb{left:733.050000px;}
.x8d{left:740.072100px;}
.x8e{left:746.912100px;}
.x2d{left:762.121650px;}
.x1b{left:765.180450px;}
.x1e{left:770.310450px;}
.x49{left:772.095300px;}
.x7{left:776.790000px;}
.x84{left:780.572100px;}
.x15{left:781.830450px;}
.x6{left:785.250000px;}
.x25{left:787.231650px;}
.x78{left:789.665700px;}
.x14{left:792.180450px;}
.x37{left:793.350000px;}
.x73{left:797.399550px;}
.x13{left:800.823450px;}
.x36{left:804.240000px;}
.x23{left:806.851650px;}
.x1{left:809.997150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls19{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.288000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.117120pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.058560pt;}
.ls14{letter-spacing:-0.056000pt;}
.lsc{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.032000pt;}
.ls3f{letter-spacing:0.058560pt;}
.ls8{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.117120pt;}
.lsa{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.159360pt;}
.ls12{letter-spacing:0.168000pt;}
.ls23{letter-spacing:0.175680pt;}
.ls35{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.292800pt;}
.ls13{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.351360pt;}
.ls26{letter-spacing:0.384000pt;}
.ls31{letter-spacing:0.409920pt;}
.ls2e{letter-spacing:0.445056pt;}
.ls3e{letter-spacing:24.896000pt;}
.lsb{letter-spacing:28.608000pt;}
.ls28{letter-spacing:28.672000pt;}
.ls27{letter-spacing:34.048000pt;}
.ls22{letter-spacing:50.576000pt;}
.ls9{letter-spacing:58.057600pt;}
.ls3b{letter-spacing:63.168000pt;}
.ls45{letter-spacing:65.536000pt;}
.ls36{letter-spacing:108.480000pt;}
.ls1e{letter-spacing:162.240000pt;}
.ls40{letter-spacing:184.896000pt;}
.ls43{letter-spacing:194.496000pt;}
.ls37{letter-spacing:286.656000pt;}
.ls2{letter-spacing:342.848213pt;}
.ls2c{letter-spacing:353.995200pt;}
.ls25{letter-spacing:362.780480pt;}
.ls4{letter-spacing:476.992213pt;}
.ls44{letter-spacing:490.944000pt;}
.ls38{letter-spacing:516.864000pt;}
.ls2d{letter-spacing:525.400320pt;}
.ls3{letter-spacing:564.635520pt;}
.ls0{letter-spacing:584.485013pt;}
.ls20{letter-spacing:602.465280pt;}
.ls1d{letter-spacing:608.262720pt;}
.ls2a{letter-spacing:628.736000pt;}
.ls24{letter-spacing:663.784747pt;}
.ls1c{letter-spacing:665.426347pt;}
.ls1b{letter-spacing:673.815680pt;}
.ls17{letter-spacing:754.765440pt;}
.ls1{letter-spacing:877.285013pt;}
.ls21{letter-spacing:985.097280pt;}
.ls1f{letter-spacing:1002.021547pt;}
.ls5{letter-spacing:1023.567680pt;}
.ls39{letter-spacing:1087.936000pt;}
.ls3c{letter-spacing:1114.240000pt;}
.ls42{letter-spacing:1159.296000pt;}
.ls16{letter-spacing:1166.464000pt;}
.ls33{letter-spacing:1239.296000pt;}
.ls41{letter-spacing:1498.624000pt;}
.ls2b{letter-spacing:1525.278613pt;}
.ls3d{letter-spacing:1526.976000pt;}
.ls1a{letter-spacing:1849.600000pt;}
.ls6{letter-spacing:1864.000000pt;}
.ls3a{letter-spacing:2006.400000pt;}
.ws1{word-spacing:-14.592000pt;}
.ws12{word-spacing:-14.528000pt;}
.ws0{word-spacing:-14.464000pt;}
.ws1c{word-spacing:-14.400000pt;}
.ws14{word-spacing:-14.336000pt;}
.ws15{word-spacing:-13.351680pt;}
.ws16{word-spacing:-13.176000pt;}
.ws13{word-spacing:-12.656000pt;}
.ws2{word-spacing:-6.944000pt;}
.ws19{word-spacing:-0.512000pt;}
.ws18{word-spacing:-0.448000pt;}
.wse{word-spacing:-0.384000pt;}
.ws17{word-spacing:-0.292800pt;}
.ws4{word-spacing:-0.234240pt;}
.ws6{word-spacing:-0.192000pt;}
.ws7{word-spacing:-0.175680pt;}
.ws9{word-spacing:-0.128000pt;}
.wsb{word-spacing:-0.117120pt;}
.ws5{word-spacing:-0.064000pt;}
.wsa{word-spacing:-0.058560pt;}
.ws8{word-spacing:-0.032000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.058560pt;}
.ws11{word-spacing:0.064000pt;}
.wsd{word-spacing:0.128000pt;}
.wsf{word-spacing:0.168000pt;}
.ws10{word-spacing:0.224000pt;}
.wsc{word-spacing:0.234240pt;}
.ws1b{word-spacing:0.384000pt;}
._52{margin-left:-79.744000pt;}
._3e{margin-left:-48.384000pt;}
._4f{margin-left:-38.784000pt;}
._2{margin-left:-16.367520pt;}
._7{margin-left:-15.310080pt;}
._4{margin-left:-14.400000pt;}
._5{margin-left:-13.504000pt;}
._e{margin-left:-11.968000pt;}
._4b{margin-left:-3.328000pt;}
._1{margin-left:-0.966240pt;}
._3{width:0.896000pt;}
._41{width:55.040000pt;}
._30{width:98.538912pt;}
._1f{width:102.342240pt;}
._a{width:106.560000pt;}
._6{width:116.818720pt;}
._1a{width:148.752800pt;}
._1d{width:150.001600pt;}
._1e{width:154.240000pt;}
._31{width:201.920736pt;}
._46{width:206.400576pt;}
._4c{width:220.451200pt;}
._29{width:247.006080pt;}
._12{width:268.486400pt;}
._b{width:277.120000pt;}
._3d{width:278.277120pt;}
._9{width:283.520000pt;}
._36{width:284.425920pt;}
._17{width:293.446400pt;}
._20{width:294.720000pt;}
._39{width:298.246080pt;}
._44{width:301.818240pt;}
._2a{width:303.048000pt;}
._38{width:307.498560pt;}
._4d{width:308.480000pt;}
._2e{width:309.782400pt;}
._47{width:310.719360pt;}
._3b{width:323.544000pt;}
._37{width:325.125120pt;}
._13{width:330.233600pt;}
._50{width:336.640000pt;}
._2c{width:344.274240pt;}
._8{width:350.080000pt;}
._14{width:367.040000pt;}
._3f{width:391.672000pt;}
._2b{width:399.964800pt;}
._27{width:412.172800pt;}
._1c{width:494.088000pt;}
._1b{width:512.327200pt;}
._22{width:590.080000pt;}
._10{width:603.520000pt;}
._3a{width:611.483520pt;}
._16{width:619.520000pt;}
._34{width:628.114560pt;}
._24{width:660.480000pt;}
._45{width:706.819200pt;}
._48{width:710.742720pt;}
._33{width:728.603520pt;}
._11{width:731.200000pt;}
._28{width:829.385280pt;}
._23{width:843.840000pt;}
._2d{width:893.098560pt;}
._49{width:956.160000pt;}
._15{width:997.440000pt;}
._18{width:1036.793600pt;}
._32{width:1047.404160pt;}
._35{width:1051.386240pt;}
._2f{width:1080.314880pt;}
._25{width:1148.160000pt;}
._0{width:1207.296000pt;}
._4e{width:1219.200000pt;}
._26{width:1243.287360pt;}
._51{width:1261.440000pt;}
._19{width:1282.880000pt;}
._43{width:1388.750400pt;}
._f{width:1445.120000pt;}
._40{width:1600.640000pt;}
._21{width:1705.600000pt;}
._42{width:1734.080000pt;}
._3c{width:1749.070080pt;}
._d{width:1754.880000pt;}
._4a{width:1874.880000pt;}
._c{width:1969.920000pt;}
.fs5{font-size:26.560000pt;}
.fs3{font-size:32.000000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.115413pt;}
.y27{bottom:51.115440pt;}
.y1{bottom:67.995333pt;}
.y26{bottom:67.995360pt;}
.yec{bottom:67.998827pt;}
.y95{bottom:68.001040pt;}
.y69{bottom:105.920000pt;}
.y122{bottom:107.920000pt;}
.y127{bottom:111.840000pt;}
.ybc{bottom:113.120000pt;}
.yee{bottom:117.440000pt;}
.y25{bottom:117.520000pt;}
.y50{bottom:119.520000pt;}
.y89{bottom:123.120640pt;}
.y10a{bottom:127.440000pt;}
.y126{bottom:131.440000pt;}
.ybb{bottom:132.640000pt;}
.y24{bottom:137.040000pt;}
.y4f{bottom:139.040000pt;}
.y88{bottom:141.040000pt;}
.y68{bottom:144.080000pt;}
.yeb{bottom:146.557067pt;}
.y109{bottom:147.040000pt;}
.y13a{bottom:150.960000pt;}
.yba{bottom:152.160000pt;}
.yed{bottom:156.560000pt;}
.y23{bottom:156.640000pt;}
.yd7{bottom:157.040000pt;}
.y4e{bottom:158.560000pt;}
.y67{bottom:163.600000pt;}
.yea{bottom:164.476427pt;}
.y87{bottom:168.881920pt;}
.y125{bottom:169.600000pt;}
.yb9{bottom:171.680000pt;}
.y22{bottom:176.160000pt;}
.yd6{bottom:176.560000pt;}
.y4d{bottom:178.080000pt;}
.ye9{bottom:182.395787pt;}
.y66{bottom:183.120000pt;}
.y121{bottom:185.200000pt;}
.y86{bottom:186.801280pt;}
.y124{bottom:189.120000pt;}
.yb8{bottom:191.280000pt;}
.y108{bottom:194.720000pt;}
.y21{bottom:195.680000pt;}
.yd5{bottom:196.080000pt;}
.y4c{bottom:197.680000pt;}
.ye8{bottom:200.315147pt;}
.y65{bottom:202.720000pt;}
.y120{bottom:204.720000pt;}
.y85{bottom:204.720640pt;}
.y123{bottom:208.640000pt;}
.yb7{bottom:210.800000pt;}
.y107{bottom:214.240000pt;}
.yd4{bottom:215.600000pt;}
.y4b{bottom:217.200000pt;}
.ye7{bottom:218.234507pt;}
.y64{bottom:222.240000pt;}
.y84{bottom:222.640000pt;}
.y11f{bottom:224.240000pt;}
.y20{bottom:225.200000pt;}
.yb6{bottom:230.320000pt;}
.y106{bottom:233.760000pt;}
.yd3{bottom:235.120000pt;}
.ye5{bottom:236.080640pt;}
.ye6{bottom:236.080667pt;}
.y4a{bottom:236.720000pt;}
.y63{bottom:241.760000pt;}
.y11e{bottom:243.760000pt;}
.y137{bottom:246.880000pt;}
.yb5{bottom:249.840000pt;}
.y105{bottom:253.360000pt;}
.ye1{bottom:254.000000pt;}
.yd2{bottom:254.640000pt;}
.y49{bottom:256.240000pt;}
.y83{bottom:259.600000pt;}
.y62{bottom:261.280000pt;}
.y11d{bottom:263.360000pt;}
.yd{bottom:266.320000pt;}
.y136{bottom:266.400000pt;}
.y104{bottom:272.880000pt;}
.yd1{bottom:274.160000pt;}
.y48{bottom:275.760000pt;}
.yb4{bottom:279.360000pt;}
.ye0{bottom:281.915760pt;}
.y11c{bottom:282.880000pt;}
.y135{bottom:285.920000pt;}
.y82{bottom:288.715120pt;}
.y6f{bottom:290.800000pt;}
.y103{bottom:292.400000pt;}
.yd0{bottom:293.760000pt;}
.y47{bottom:295.280000pt;}
.ydf{bottom:299.835120pt;}
.yc{bottom:304.560000pt;}
.y134{bottom:305.440000pt;}
.y81{bottom:306.634480pt;}
.y46{bottom:314.800000pt;}
.yb3{bottom:317.600000pt;}
.yde{bottom:317.754480pt;}
.y11b{bottom:321.040000pt;}
.y102{bottom:321.920000pt;}
.ycf{bottom:323.280000pt;}
.y1f{bottom:324.080000pt;}
.y139{bottom:324.160000pt;}
.y80{bottom:324.553840pt;}
.y133{bottom:324.960000pt;}
.y61{bottom:328.398000pt;}
.ydd{bottom:335.600640pt;}
.yb2{bottom:337.120000pt;}
.y11a{bottom:340.560000pt;}
.y7f{bottom:342.400000pt;}
.y1e{bottom:343.600000pt;}
.y45{bottom:344.400000pt;}
.y132{bottom:344.480000pt;}
.y60{bottom:345.520000pt;}
.ydc{bottom:353.520000pt;}
.yb1{bottom:356.640000pt;}
.y101{bottom:360.160000pt;}
.yc1{bottom:361.440000pt;}
.y138{bottom:362.320000pt;}
.yb{bottom:363.120000pt;}
.y7e{bottom:370.316400pt;}
.yb0{bottom:376.160000pt;}
.y100{bottom:379.680000pt;}
.yce{bottom:380.960000pt;}
.y6e{bottom:381.840000pt;}
.y44{bottom:381.996000pt;}
.ya{bottom:382.640000pt;}
.y131{bottom:382.720000pt;}
.y7d{bottom:388.235760pt;}
.ye4{bottom:390.480000pt;}
.yaf{bottom:395.680000pt;}
.y43{bottom:399.118000pt;}
.yff{bottom:399.200000pt;}
.yc0{bottom:400.480000pt;}
.y6d{bottom:401.360000pt;}
.y130{bottom:402.240000pt;}
.y7c{bottom:406.155120pt;}
.ye3{bottom:410.080000pt;}
.yae{bottom:415.200000pt;}
.y42{bottom:416.156000pt;}
.yfe{bottom:418.720000pt;}
.ybf{bottom:420.080000pt;}
.y9{bottom:420.880000pt;}
.y12f{bottom:421.760000pt;}
.y7b{bottom:424.074480pt;}
.ye2{bottom:429.600000pt;}
.y41{bottom:433.278000pt;}
.yfd{bottom:438.240000pt;}
.ybe{bottom:439.600000pt;}
.y6c{bottom:440.480000pt;}
.y12e{bottom:441.280000pt;}
.y7a{bottom:441.920640pt;}
.y119{bottom:448.240000pt;}
.y40{bottom:450.316000pt;}
.yad{bottom:453.440000pt;}
.yfc{bottom:457.760000pt;}
.y1d{bottom:459.040000pt;}
.ybd{bottom:459.120000pt;}
.y79{bottom:459.840000pt;}
.y12d{bottom:460.880000pt;}
.y3f{bottom:467.438000pt;}
.yac{bottom:472.960000pt;}
.yfb{bottom:477.280000pt;}
.y1c{bottom:478.560000pt;}
.y5f{bottom:478.640000pt;}
.y3e{bottom:484.560000pt;}
.y118{bottom:486.480000pt;}
.yab{bottom:492.480000pt;}
.y78{bottom:496.880000pt;}
.ydb{bottom:497.280000pt;}
.y1b{bottom:498.080000pt;}
.y6b{bottom:498.160000pt;}
.y12c{bottom:499.040000pt;}
.y3d{bottom:501.598000pt;}
.y117{bottom:506.000000pt;}
.yaa{bottom:512.000000pt;}
.y77{bottom:516.400000pt;}
.ycd{bottom:516.880000pt;}
.y1a{bottom:517.680000pt;}
.y12b{bottom:518.560000pt;}
.y3c{bottom:518.720000pt;}
.y116{bottom:525.520000pt;}
.ya9{bottom:531.520000pt;}
.yfa{bottom:535.920000pt;}
.ycc{bottom:536.400000pt;}
.y19{bottom:537.200000pt;}
.y12a{bottom:538.080000pt;}
.y115{bottom:545.040000pt;}
.ya8{bottom:551.120000pt;}
.y94{bottom:554.560000pt;}
.y3b{bottom:555.040000pt;}
.yf9{bottom:555.440000pt;}
.ycb{bottom:555.920000pt;}
.y5e{bottom:556.800000pt;}
.y114{bottom:564.560000pt;}
.ya7{bottom:570.640000pt;}
.y93{bottom:574.080000pt;}
.y3a{bottom:574.560000pt;}
.yf8{bottom:574.960000pt;}
.y18{bottom:575.360000pt;}
.yda{bottom:575.440000pt;}
.y5d{bottom:576.320000pt;}
.y113{bottom:584.080000pt;}
.ya6{bottom:590.160000pt;}
.y92{bottom:593.600000pt;}
.y39{bottom:594.080000pt;}
.yf7{bottom:594.480000pt;}
.y17{bottom:594.880000pt;}
.yd9{bottom:594.960000pt;}
.y5c{bottom:595.840000pt;}
.y112{bottom:603.600000pt;}
.y91{bottom:613.200000pt;}
.y38{bottom:613.600000pt;}
.yf6{bottom:614.000000pt;}
.y16{bottom:614.400000pt;}
.yd8{bottom:614.480000pt;}
.y5b{bottom:615.360000pt;}
.y111{bottom:623.200000pt;}
.ya5{bottom:628.320000pt;}
.y90{bottom:632.720000pt;}
.yca{bottom:633.200000pt;}
.y15{bottom:634.000000pt;}
.y5a{bottom:634.880000pt;}
.y110{bottom:642.720000pt;}
.yf5{bottom:643.600000pt;}
.ya4{bottom:647.840000pt;}
.y34{bottom:651.840000pt;}
.y8f{bottom:652.240000pt;}
.yc9{bottom:652.720000pt;}
.y14{bottom:653.520000pt;}
.y129{bottom:653.600000pt;}
.y59{bottom:654.400000pt;}
.y10f{bottom:662.240000pt;}
.ya3{bottom:667.440000pt;}
.y33{bottom:671.360000pt;}
.y8e{bottom:671.760000pt;}
.yc8{bottom:672.240000pt;}
.y13{bottom:673.040000pt;}
.y128{bottom:673.120000pt;}
.yf4{bottom:681.760000pt;}
.ya2{bottom:686.960000pt;}
.y32{bottom:690.880000pt;}
.yc7{bottom:691.760000pt;}
.y12{bottom:692.560000pt;}
.y58{bottom:692.640000pt;}
.y8d{bottom:701.280000pt;}
.ya1{bottom:706.480000pt;}
.y31{bottom:710.400000pt;}
.yc6{bottom:711.280000pt;}
.y57{bottom:712.160000pt;}
.y8{bottom:720.000000pt;}
.yf3{bottom:720.800000pt;}
.ya0{bottom:726.000000pt;}
.y30{bottom:729.920000pt;}
.yc5{bottom:730.800000pt;}
.y56{bottom:731.680000pt;}
.y76{bottom:739.520000pt;}
.yf2{bottom:740.320000pt;}
.y9f{bottom:745.520000pt;}
.y7{bottom:749.120000pt;}
.y2f{bottom:749.520000pt;}
.yc4{bottom:750.320000pt;}
.y55{bottom:751.200000pt;}
.y75{bottom:759.040000pt;}
.yf1{bottom:759.920000pt;}
.y9e{bottom:765.040000pt;}
.y37{bottom:769.040000pt;}
.yc3{bottom:769.920000pt;}
.y54{bottom:770.720000pt;}
.y6{bottom:777.040000pt;}
.y8c{bottom:778.560000pt;}
.yf0{bottom:779.440000pt;}
.y9d{bottom:784.560000pt;}
.y2e{bottom:788.560000pt;}
.yc2{bottom:789.440000pt;}
.y74{bottom:798.080000pt;}
.yef{bottom:798.960000pt;}
.y9c{bottom:804.160000pt;}
.y5{bottom:804.960000pt;}
.y2d{bottom:808.080000pt;}
.y53{bottom:808.960000pt;}
.y73{bottom:817.600000pt;}
.y10e{bottom:818.480000pt;}
.y9b{bottom:823.680000pt;}
.y36{bottom:827.600000pt;}
.y6a{bottom:828.480000pt;}
.y4{bottom:832.800000pt;}
.y72{bottom:837.120000pt;}
.y10d{bottom:838.000000pt;}
.y2c{bottom:847.120000pt;}
.y52{bottom:848.000000pt;}
.y9a{bottom:853.200000pt;}
.y8b{bottom:856.640000pt;}
.y10c{bottom:857.520000pt;}
.y3{bottom:860.720000pt;}
.y2b{bottom:866.640000pt;}
.y51{bottom:867.520000pt;}
.y71{bottom:876.240000pt;}
.y99{bottom:882.320640pt;}
.y2a{bottom:886.240000pt;}
.y10b{bottom:887.040000pt;}
.y70{bottom:895.760000pt;}
.y11{bottom:897.760000pt;}
.y98{bottom:900.240000pt;}
.y35{bottom:905.760000pt;}
.y8a{bottom:915.280000pt;}
.y10{bottom:917.280000pt;}
.y29{bottom:925.280000pt;}
.y97{bottom:928.080640pt;}
.yf{bottom:936.800000pt;}
.y28{bottom:944.800000pt;}
.y96{bottom:946.000000pt;}
.ye{bottom:992.160000pt;}
.h8{height:38.410000pt;}
.h7{height:38.800781pt;}
.h2{height:42.032812pt;}
.h1{height:42.090000pt;}
.h5{height:43.348125pt;}
.h3{height:44.500000pt;}
.h4{height:45.937500pt;}
.h6{height:52.448437pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:95.996747pt;}
.xe{left:120.000000pt;}
.x3{left:126.158933pt;}
.xf{left:141.280000pt;}
.x11{left:144.000000pt;}
.x5{left:166.640000pt;}
.x50{left:168.000000pt;}
.x24{left:170.801467pt;}
.x42{left:176.002667pt;}
.x79{left:184.485067pt;}
.x2c{left:187.921467pt;}
.x22{left:189.280000pt;}
.x81{left:190.885067pt;}
.x51{left:192.000000pt;}
.x10{left:205.600000pt;}
.x2f{left:216.241467pt;}
.x9{left:217.200000pt;}
.x1a{left:218.480400pt;}
.x39{left:219.679867pt;}
.x6c{left:221.520000pt;}
.x8{left:228.720000pt;}
.x88{left:240.001867pt;}
.x38{left:241.440000pt;}
.x86{left:247.921867pt;}
.xc{left:259.920000pt;}
.x72{left:263.039600pt;}
.x1d{left:265.040400pt;}
.x68{left:265.996480pt;}
.x46{left:268.089867pt;}
.x74{left:273.759600pt;}
.x7d{left:276.805067pt;}
.x7a{left:277.925067pt;}
.x61{left:280.560133pt;}
.x3c{left:281.920000pt;}
.x5e{left:284.320133pt;}
.x34{left:286.646267pt;}
.x71{left:289.199600pt;}
.x7c{left:297.205067pt;}
.x3d{left:298.480000pt;}
.x58{left:299.600000pt;}
.x1f{left:303.360400pt;}
.x43{left:307.105467pt;}
.x3f{left:310.400000pt;}
.x64{left:312.624133pt;}
.x56{left:313.760000pt;}
.x7b{left:315.285067pt;}
.x21{left:321.680000pt;}
.x33{left:323.130267pt;}
.x4a{left:324.880000pt;}
.x6e{left:327.200000pt;}
.x45{left:330.075627pt;}
.x20{left:332.395467pt;}
.x77{left:336.085067pt;}
.x52{left:340.085093pt;}
.x26{left:343.841467pt;}
.x4b{left:348.472373pt;}
.x3b{left:362.320000pt;}
.x87{left:364.401867pt;}
.x27{left:366.881467pt;}
.x6f{left:373.040000pt;}
.x30{left:376.641467pt;}
.x28{left:377.841467pt;}
.x40{left:381.360000pt;}
.x6b{left:388.000000pt;}
.x55{left:389.280000pt;}
.x4{left:392.240000pt;}
.x67{left:394.682080pt;}
.x62{left:403.680133pt;}
.xd{left:405.200000pt;}
.x76{left:415.599600pt;}
.x31{left:416.641467pt;}
.x60{left:418.560133pt;}
.x7f{left:422.885067pt;}
.x47{left:424.166907pt;}
.x4d{left:429.826747pt;}
.x3a{left:438.401467pt;}
.x8a{left:441.041867pt;}
.x6a{left:452.080000pt;}
.x2a{left:453.281467pt;}
.x29{left:454.241467pt;}
.x5f{left:455.920133pt;}
.x2e{left:457.841467pt;}
.x1c{left:459.120400pt;}
.x63{left:464.144133pt;}
.x5b{left:471.600000pt;}
.x8c{left:482.161867pt;}
.x69{left:488.228800pt;}
.x48{left:501.433013pt;}
.x82{left:502.965067pt;}
.x44{left:507.980907pt;}
.x59{left:510.800000pt;}
.xa{left:518.800000pt;}
.x19{left:523.920400pt;}
.x3e{left:528.080000pt;}
.x75{left:529.359600pt;}
.x2b{left:531.441467pt;}
.x4e{left:532.720000pt;}
.x18{left:535.040400pt;}
.x5d{left:537.360000pt;}
.x57{left:538.320000pt;}
.x83{left:542.565067pt;}
.x4c{left:543.974933pt;}
.x5c{left:548.800000pt;}
.x7e{left:555.925067pt;}
.x65{left:559.040000pt;}
.x70{left:561.360000pt;}
.x4f{left:567.760000pt;}
.x53{left:571.439547pt;}
.x66{left:589.335520pt;}
.x8b{left:597.601867pt;}
.x32{left:599.361467pt;}
.x6d{left:603.360000pt;}
.x16{left:608.000400pt;}
.x17{left:609.200400pt;}
.x35{left:611.040000pt;}
.x41{left:612.240000pt;}
.x85{left:615.761867pt;}
.x54{left:617.680000pt;}
.x12{left:627.602400pt;}
.x5a{left:642.640000pt;}
.x80{left:644.485067pt;}
.x89{left:647.921867pt;}
.xb{left:651.600000pt;}
.x8d{left:657.841867pt;}
.x8e{left:663.921867pt;}
.x2d{left:677.441467pt;}
.x1b{left:680.160400pt;}
.x1e{left:684.720400pt;}
.x49{left:686.306933pt;}
.x7{left:690.480000pt;}
.x84{left:693.841867pt;}
.x15{left:694.960400pt;}
.x6{left:698.000000pt;}
.x25{left:699.761467pt;}
.x78{left:701.925067pt;}
.x14{left:704.160400pt;}
.x37{left:705.200000pt;}
.x73{left:708.799600pt;}
.x13{left:711.843067pt;}
.x36{left:714.880000pt;}
.x23{left:717.201467pt;}
.x1{left:719.997467pt;}
}




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