
    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_57b7338a16e30fea3c52b6e5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_4f5e7b337611780d9ff8bf66.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_af10fa790fce1fe8731b2deb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_2f88a3a425f05090b93f56d4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.044434;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_89ddeba3b5512249b6424195.woff')format("woff");}.ff5{font-family:ff5;line-height:1.044434;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_3e1ae7253774ceb25eb265e0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.907715;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_02eb09eca8085cbc92103e88.woff')format("woff");}.ff7{font-family:ff7;line-height:0.907715;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_a640cac13e48527cceab288d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9c72e2d7bef0bc51e56d2413.woff')format("woff");}.ff9{font-family:ff9;line-height:0.897949;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_e9fa358a38bec1aef2bc4000.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls39{letter-spacing:-2.232000px;}
.ls54{letter-spacing:-1.230000px;}
.ls47{letter-spacing:-1.008000px;}
.ls4d{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.504000px;}
.ls53{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.299400px;}
.ls3a{letter-spacing:-0.297600px;}
.ls2d{letter-spacing:-0.295200px;}
.ls8{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.144000px;}
.ls3f{letter-spacing:-0.105600px;}
.ls7{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.000003px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000001px;}
.ls1f{letter-spacing:0.015840px;}
.lsc{letter-spacing:0.054000px;}
.ls2b{letter-spacing:0.063600px;}
.ls17{letter-spacing:0.072000px;}
.ls50{letter-spacing:0.108000px;}
.ls2e{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.150000px;}
.ls6{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.259800px;}
.ls38{letter-spacing:0.259920px;}
.ls30{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.322800px;}
.ls26{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.424800px;}
.ls4f{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.468000px;}
.ls1d{letter-spacing:0.487440px;}
.ls52{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.647280px;}
.ls3{letter-spacing:0.648000px;}
.ls29{letter-spacing:0.726000px;}
.lsf{letter-spacing:0.768000px;}
.ls15{letter-spacing:0.786000px;}
.ls37{letter-spacing:1.207440px;}
.ls16{letter-spacing:1.368000px;}
.ls2{letter-spacing:2.088000px;}
.ls1e{letter-spacing:2.647440px;}
.ls10{letter-spacing:2.808000px;}
.ls31{letter-spacing:3.096000px;}
.ls25{letter-spacing:3.367440px;}
.ls27{letter-spacing:3.528000px;}
.lsd{letter-spacing:3.648000px;}
.ls1b{letter-spacing:4.087440px;}
.ls40{letter-spacing:4.248000px;}
.ls1c{letter-spacing:4.807440px;}
.ls4c{letter-spacing:4.968000px;}
.ls42{letter-spacing:5.688000px;}
.ls36{letter-spacing:5.976000px;}
.ls4{letter-spacing:7.128000px;}
.ls1{letter-spacing:8.568000px;}
.ls13{letter-spacing:10.567440px;}
.ls3d{letter-spacing:10.728000px;}
.ls43{letter-spacing:11.448000px;}
.ls35{letter-spacing:11.736000px;}
.ls33{letter-spacing:12.168000px;}
.ls12{letter-spacing:12.727440px;}
.ls34{letter-spacing:12.888000px;}
.ls22{letter-spacing:13.608000px;}
.ls4e{letter-spacing:15.768000px;}
.ls2f{letter-spacing:16.776000px;}
.ls41{letter-spacing:17.208000px;}
.ls18{letter-spacing:19.368000px;}
.ls45{letter-spacing:20.376000px;}
.ls49{letter-spacing:20.808000px;}
.ls44{letter-spacing:21.528000px;}
.ls51{letter-spacing:22.968000px;}
.ls3e{letter-spacing:23.688000px;}
.ls4b{letter-spacing:25.248000px;}
.lse{letter-spacing:25.308000px;}
.ls48{letter-spacing:25.848000px;}
.ls32{letter-spacing:31.608000px;}
.ls46{letter-spacing:32.328000px;}
.ls1a{letter-spacing:35.208000px;}
.ls4a{letter-spacing:42.408000px;}
.ls3c{letter-spacing:43.416000px;}
.ls3b{letter-spacing:44.568000px;}
.ls19{letter-spacing:46.008000px;}
.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;}
}
.ws1a{word-spacing:-20.736000px;}
.ws1{word-spacing:-20.448000px;}
.wsc{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232001px;}
.ws0{word-spacing:-20.232000px;}
.ws3{word-spacing:-20.231997px;}
.ws9{word-spacing:-20.088000px;}
.ws2{word-spacing:-20.016000px;}
.ws18{word-spacing:-19.944000px;}
.ws5{word-spacing:-19.728000px;}
.ws17{word-spacing:-19.584000px;}
.ws16{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.wse{word-spacing:-17.115360px;}
.wsb{word-spacing:-17.052360px;}
.ws8{word-spacing:-16.792560px;}
.ws15{word-spacing:-16.686960px;}
.wsf{word-spacing:-16.497360px;}
.ws12{word-spacing:-16.494960px;}
.wsd{word-spacing:-16.493160px;}
.ws14{word-spacing:-15.534000px;}
.ws1b{word-spacing:-14.814000px;}
.wsa{word-spacing:-14.760720px;}
.ws1d{word-spacing:-10.504560px;}
.ws19{word-spacing:-8.160000px;}
.ws1c{word-spacing:-6.120000px;}
.ws10{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-5.136000px;}
._b{margin-left:-3.876000px;}
._a{margin-left:-2.160000px;}
._3{margin-left:-1.010880px;}
._0{width:1.135440px;}
._7{width:2.352000px;}
._10{width:3.400560px;}
._11{width:4.486320px;}
._6{width:5.832000px;}
._8{width:7.317120px;}
._4{width:8.400000px;}
._5{width:9.624000px;}
._16{width:11.256000px;}
._15{width:12.960000px;}
._14{width:14.472000px;}
._e{width:15.636000px;}
._d{width:16.920000px;}
._f{width:18.576000px;}
._28{width:20.052000px;}
._1b{width:21.304560px;}
._23{width:22.627440px;}
._13{width:24.192000px;}
._12{width:25.392000px;}
._17{width:26.608560px;}
._1f{width:27.830880px;}
._29{width:29.162880px;}
._9{width:30.168000px;}
._24{width:31.248000px;}
._18{width:32.976000px;}
._19{width:34.320000px;}
._1e{width:35.376000px;}
._20{width:36.460560px;}
._26{width:38.520000px;}
._2a{width:39.540000px;}
._1c{width:41.592000px;}
._1d{width:42.972000px;}
._25{width:44.380560px;}
._1a{width:45.792000px;}
._21{width:47.880000px;}
._22{width:48.888000px;}
._1{width:387.642000px;}
._2{width:521.868720px;}
._2b{width:843.924000px;}
._27{width:1906.044000px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:47.016000px;}
.y2e{bottom:66.816000px;}
.y4{bottom:67.176000px;}
.y2d{bottom:83.556000px;}
.y3{bottom:86.796000px;}
.y2c{bottom:102.996000px;}
.y2{bottom:103.716000px;}
.y2b{bottom:120.276000px;}
.y1{bottom:123.156000px;}
.y52{bottom:139.896000px;}
.y26{bottom:150.330000px;}
.yc2{bottom:150.510000px;}
.y51{bottom:156.630000px;}
.y6f{bottom:156.810000px;}
.ycd{bottom:161.670000px;}
.y7d{bottom:162.570000px;}
.y116{bottom:166.710000px;}
.y10b{bottom:169.410000px;}
.y50{bottom:173.370000px;}
.y6e{bottom:173.730000px;}
.y7c{bottom:173.910000px;}
.y126{bottom:179.310000px;}
.y25{bottom:180.390000px;}
.yc1{bottom:180.750000px;}
.y11f{bottom:183.450000px;}
.y16a{bottom:183.630000px;}
.y143{bottom:183.990000px;}
.y4f{bottom:190.290000px;}
.y6d{bottom:190.650000px;}
.y125{bottom:190.830000px;}
.ycc{bottom:191.730000px;}
.y11d{bottom:195.870000px;}
.y4e{bottom:196.230000px;}
.y6c{bottom:196.590000px;}
.y115{bottom:196.950000px;}
.y10a{bottom:199.470000px;}
.y6b{bottom:207.390000px;}
.y4d{bottom:207.570000px;}
.y9d{bottom:209.550000px;}
.y24{bottom:210.630000px;}
.yc0{bottom:210.810000px;}
.yb0{bottom:211.170000px;}
.y7a{bottom:213.690000px;}
.y169{bottom:213.870000px;}
.y142{bottom:214.410000px;}
.y9e{bottom:217.110000px;}
.y7b{bottom:221.250000px;}
.ycb{bottom:222.330000px;}
.y6a{bottom:224.310000px;}
.y11c{bottom:226.110000px;}
.y114{bottom:227.190000px;}
.y109{bottom:229.710000px;}
.y69{bottom:230.250000px;}
.y9c{bottom:239.790000px;}
.y23{bottom:241.050000px;}
.y68{bottom:241.230000px;}
.yaf{bottom:241.590000px;}
.y4c{bottom:243.390000px;}
.y124{bottom:243.750000px;}
.y79{bottom:243.930000px;}
.y168{bottom:244.110000px;}
.y141{bottom:245.010000px;}
.ydf{bottom:245.190000px;}
.yca{bottom:247.350000px;}
.y11b{bottom:256.350000px;}
.y113{bottom:257.430000px;}
.y67{bottom:257.970000px;}
.y108{bottom:259.950000px;}
.y66{bottom:263.910000px;}
.y9b{bottom:270.030000px;}
.ybf{bottom:271.290000px;}
.y22{bottom:271.650000px;}
.yae{bottom:272.010000px;}
.y4b{bottom:273.675000px;}
.y123{bottom:274.035000px;}
.y78{bottom:274.215000px;}
.y167{bottom:274.395000px;}
.y140{bottom:275.115000px;}
.y65{bottom:275.295000px;}
.y11a{bottom:286.635000px;}
.y112{bottom:287.715000px;}
.y107{bottom:290.235000px;}
.y9a{bottom:300.315000px;}
.ybe{bottom:301.575000px;}
.y21{bottom:301.935000px;}
.yad{bottom:302.655000px;}
.y4a{bottom:303.915000px;}
.y122{bottom:304.095000px;}
.y77{bottom:304.455000px;}
.y166{bottom:304.635000px;}
.yeb{bottom:304.815000px;}
.yde{bottom:305.715000px;}
.y119{bottom:316.875000px;}
.y111{bottom:317.955000px;}
.y106{bottom:320.295000px;}
.y99{bottom:330.555000px;}
.ybd{bottom:331.815000px;}
.y20{bottom:331.995000px;}
.yac{bottom:333.075000px;}
.y49{bottom:333.975000px;}
.y64{bottom:334.155000px;}
.y121{bottom:334.335000px;}
.y76{bottom:334.515000px;}
.y11e{bottom:334.695000px;}
.y165{bottom:334.875000px;}
.yea{bottom:335.055000px;}
.y13f{bottom:335.775000px;}
.ydd{bottom:335.955000px;}
.y118{bottom:342.075000px;}
.y110{bottom:348.195000px;}
.y105{bottom:350.895000px;}
.y98{bottom:360.615000px;}
.ybc{bottom:362.055000px;}
.y1f{bottom:362.235000px;}
.yab{bottom:363.315000px;}
.y48{bottom:364.395000px;}
.y75{bottom:364.575000px;}
.y7f{bottom:364.755000px;}
.y164{bottom:365.115000px;}
.ye9{bottom:365.295000px;}
.ydc{bottom:366.015000px;}
.yf7{bottom:375.195000px;}
.y10f{bottom:378.435000px;}
.y104{bottom:380.955000px;}
.y97{bottom:391.035000px;}
.ydb{bottom:391.575000px;}
.ybb{bottom:392.295000px;}
.y1e{bottom:392.475000px;}
.yaa{bottom:393.555000px;}
.y63{bottom:394.635000px;}
.y47{bottom:394.995000px;}
.y163{bottom:395.175000px;}
.ye8{bottom:395.535000px;}
.y13e{bottom:396.435000px;}
.yf6{bottom:405.435000px;}
.y10e{bottom:408.495000px;}
.y103{bottom:411.375000px;}
.yda{bottom:411.735000px;}
.y96{bottom:421.635000px;}
.yba{bottom:422.535000px;}
.y1d{bottom:422.715000px;}
.ya9{bottom:423.615000px;}
.y62{bottom:424.875000px;}
.y46{bottom:425.235000px;}
.y162{bottom:425.415000px;}
.ye7{bottom:425.775000px;}
.y13d{bottom:426.855000px;}
.yf5{bottom:435.675000px;}
.y10d{bottom:438.735000px;}
.y102{bottom:441.795000px;}
.y95{bottom:451.875000px;}
.yb9{bottom:452.595000px;}
.y1c{bottom:452.955000px;}
.ya8{bottom:454.035000px;}
.y61{bottom:455.115000px;}
.y45{bottom:455.295000px;}
.y74{bottom:455.475000px;}
.y161{bottom:455.655000px;}
.ye6{bottom:456.015000px;}
.y13c{bottom:457.275000px;}
.y10c{bottom:463.935000px;}
.yf4{bottom:465.915000px;}
.y101{bottom:472.395000px;}
.y94{bottom:482.115000px;}
.yb8{bottom:482.835000px;}
.y1b{bottom:483.195000px;}
.ya7{bottom:484.635000px;}
.y60{bottom:485.175000px;}
.y44{bottom:485.535000px;}
.y73{bottom:485.715000px;}
.ye5{bottom:486.255000px;}
.y13b{bottom:487.695000px;}
.yf3{bottom:495.975000px;}
.y100{bottom:502.635000px;}
.yc9{bottom:503.355000px;}
.y93{bottom:512.355000px;}
.yb7{bottom:513.075000px;}
.y1a{bottom:513.435000px;}
.ya5{bottom:515.055000px;}
.y5f{bottom:515.415000px;}
.y43{bottom:515.775000px;}
.y72{bottom:515.955000px;}
.ye4{bottom:516.315000px;}
.y13a{bottom:518.115000px;}
.ya6{bottom:522.615000px;}
.yf2{bottom:526.215000px;}
.yff{bottom:532.875000px;}
.yc8{bottom:533.595000px;}
.y92{bottom:542.415000px;}
.yb6{bottom:543.315000px;}
.y19{bottom:543.495000px;}
.y5e{bottom:545.655000px;}
.y42{bottom:546.015000px;}
.y71{bottom:546.195000px;}
.ye3{bottom:546.555000px;}
.y139{bottom:548.535000px;}
.yf1{bottom:556.485000px;}
.yfe{bottom:563.145000px;}
.yc7{bottom:563.865000px;}
.y91{bottom:572.685000px;}
.yb5{bottom:573.585000px;}
.y18{bottom:573.765000px;}
.y5d{bottom:575.925000px;}
.y41{bottom:576.285000px;}
.y70{bottom:576.465000px;}
.ye2{bottom:576.825000px;}
.y138{bottom:579.165000px;}
.yf0{bottom:586.725000px;}
.yfd{bottom:593.385000px;}
.yc6{bottom:594.105000px;}
.yb4{bottom:598.785000px;}
.y90{bottom:602.925000px;}
.y17{bottom:604.005000px;}
.y152{bottom:604.545000px;}
.y5b{bottom:605.985000px;}
.y40{bottom:606.525000px;}
.ye1{bottom:607.065000px;}
.y137{bottom:609.585000px;}
.y5c{bottom:613.545000px;}
.yef{bottom:616.965000px;}
.yfc{bottom:623.625000px;}
.yc5{bottom:624.165000px;}
.ye0{bottom:632.265000px;}
.y8f{bottom:633.165000px;}
.y16{bottom:634.245000px;}
.y151{bottom:634.785000px;}
.ya4{bottom:636.225000px;}
.y5a{bottom:636.405000px;}
.y3f{bottom:636.765000px;}
.y160{bottom:637.305000px;}
.y136{bottom:639.825000px;}
.y120{bottom:644.325000px;}
.yee{bottom:647.205000px;}
.yfb{bottom:653.865000px;}
.yc4{bottom:654.765000px;}
.y8e{bottom:663.405000px;}
.y15{bottom:664.485000px;}
.y150{bottom:665.025000px;}
.ya3{bottom:666.285000px;}
.y3e{bottom:666.825000px;}
.y59{bottom:667.005000px;}
.y15f{bottom:667.545000px;}
.y135{bottom:670.245000px;}
.yed{bottom:677.445000px;}
.yc3{bottom:679.785000px;}
.yfa{bottom:683.925000px;}
.y8d{bottom:693.645000px;}
.y14{bottom:694.725000px;}
.y14f{bottom:695.265000px;}
.ya2{bottom:696.885000px;}
.y7e{bottom:697.065000px;}
.y3d{bottom:697.245000px;}
.y15e{bottom:697.605000px;}
.y134{bottom:700.485000px;}
.yec{bottom:702.465000px;}
.yf9{bottom:714.165000px;}
.y8c{bottom:723.885000px;}
.y13{bottom:724.965000px;}
.y14e{bottom:725.325000px;}
.ya1{bottom:727.125000px;}
.y3c{bottom:727.305000px;}
.y58{bottom:727.485000px;}
.y15d{bottom:727.845000px;}
.y133{bottom:730.725000px;}
.yd9{bottom:732.345000px;}
.yf8{bottom:739.365000px;}
.y8b{bottom:754.125000px;}
.y12{bottom:755.205000px;}
.y14d{bottom:755.925000px;}
.ya0{bottom:757.185000px;}
.yd8{bottom:757.545000px;}
.y3b{bottom:757.725000px;}
.y15c{bottom:758.085000px;}
.y132{bottom:760.785000px;}
.y8a{bottom:784.185000px;}
.y11{bottom:785.265000px;}
.y14c{bottom:786.165000px;}
.yd7{bottom:787.605000px;}
.y3a{bottom:787.785000px;}
.y56{bottom:787.965000px;}
.y15b{bottom:788.325000px;}
.y131{bottom:791.385000px;}
.y57{bottom:795.525000px;}
.y89{bottom:814.425000px;}
.y10{bottom:815.505000px;}
.y14b{bottom:816.225000px;}
.y9f{bottom:817.845000px;}
.y39{bottom:818.025000px;}
.y55{bottom:818.205000px;}
.y15a{bottom:818.565000px;}
.y130{bottom:821.445000px;}
.y88{bottom:844.710000px;}
.yf{bottom:845.790000px;}
.y14a{bottom:846.510000px;}
.y38{bottom:848.130000px;}
.y53{bottom:848.310000px;}
.y159{bottom:848.850000px;}
.y12f{bottom:852.090000px;}
.y54{bottom:855.870000px;}
.ye{bottom:874.590000px;}
.y87{bottom:874.950000px;}
.y149{bottom:876.930000px;}
.yd5{bottom:878.370000px;}
.y37{bottom:878.550000px;}
.y158{bottom:879.090000px;}
.y12e{bottom:882.330000px;}
.yd6{bottom:885.930000px;}
.yd{bottom:902.310000px;}
.y86{bottom:905.190000px;}
.y148{bottom:907.530000px;}
.yd4{bottom:908.610000px;}
.y36{bottom:908.790000px;}
.y157{bottom:909.330000px;}
.y12d{bottom:912.570000px;}
.yc{bottom:930.030000px;}
.y85{bottom:935.430000px;}
.y147{bottom:937.590000px;}
.yd3{bottom:938.850000px;}
.y35{bottom:939.030000px;}
.y156{bottom:939.390000px;}
.y12c{bottom:942.630000px;}
.yb{bottom:961.530000px;}
.y84{bottom:965.670000px;}
.y146{bottom:968.010000px;}
.yd2{bottom:969.090000px;}
.y34{bottom:969.270000px;}
.y155{bottom:969.630000px;}
.y12b{bottom:973.230000px;}
.y83{bottom:995.910000px;}
.ya{bottom:996.810000px;}
.y145{bottom:998.430000px;}
.yd1{bottom:999.150000px;}
.y32{bottom:999.510000px;}
.y154{bottom:999.870000px;}
.y12a{bottom:1003.470000px;}
.y33{bottom:1007.070000px;}
.y82{bottom:1026.150000px;}
.y144{bottom:1028.850000px;}
.yd0{bottom:1029.390000px;}
.y117{bottom:1029.570000px;}
.y31{bottom:1029.750000px;}
.y153{bottom:1030.110000px;}
.y129{bottom:1031.190000px;}
.y9{bottom:1031.910000px;}
.y81{bottom:1056.210000px;}
.y128{bottom:1057.830000px;}
.yb3{bottom:1059.450000px;}
.ycf{bottom:1059.630000px;}
.y30{bottom:1059.990000px;}
.y8{bottom:1062.330000px;}
.y80{bottom:1086.630000px;}
.yb2{bottom:1089.510000px;}
.yce{bottom:1089.690000px;}
.y127{bottom:1089.870000px;}
.y7{bottom:1090.050000px;}
.yb1{bottom:1119.930000px;}
.y6{bottom:1120.110000px;}
.y2f{bottom:1120.290000px;}
.y2a{bottom:1156.500000px;}
.y29{bottom:1175.940000px;}
.y28{bottom:1192.680000px;}
.y27{bottom:1209.240000px;}
.hb{height:30.568359px;}
.ha{height:35.459297px;}
.hd{height:40.961602px;}
.h3{height:45.184219px;}
.h8{height:45.852539px;}
.h10{height:47.988281px;}
.h2{height:50.743477px;}
.h7{height:56.245781px;}
.h4{height:58.218750px;}
.h5{height:61.136719px;}
.hc{height:61.423863px;}
.hf{height:65.699297px;}
.h6{height:71.529961px;}
.he{height:74.004654px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x2d{left:129.636000px;}
.x1c{left:136.836000px;}
.x33{left:138.276000px;}
.x1a{left:163.470000px;}
.x2f{left:165.090000px;}
.x2e{left:166.530000px;}
.x6{left:170.130000px;}
.x1e{left:174.090000px;}
.x2{left:180.750000px;}
.x8{left:185.250000px;}
.x15{left:191.550000px;}
.xe{left:202.170000px;}
.x2c{left:204.150000px;}
.x26{left:213.870000px;}
.x28{left:215.310000px;}
.x29{left:223.050000px;}
.x23{left:224.490000px;}
.x2a{left:229.890000px;}
.x31{left:256.147500px;}
.x32{left:261.570000px;}
.x11{left:268.567500px;}
.x12{left:273.990000px;}
.x27{left:288.975000px;}
.xa{left:295.432500px;}
.x24{left:297.795000px;}
.xb{left:300.855000px;}
.x30{left:323.715000px;}
.x1d{left:331.635000px;}
.x7{left:343.695000px;}
.x17{left:353.415000px;}
.x22{left:382.935000px;}
.x18{left:462.495000px;}
.x25{left:483.765000px;}
.x38{left:523.905000px;}
.x13{left:529.462500px;}
.x14{left:534.705000px;}
.x21{left:558.465000px;}
.x4{left:586.702500px;}
.x5{left:591.945000px;}
.x37{left:614.085000px;}
.x36{left:643.425000px;}
.xf{left:644.482500px;}
.x10{left:649.725000px;}
.x35{left:656.385000px;}
.x1f{left:662.662500px;}
.x34{left:663.945000px;}
.x20{left:667.950000px;}
.xc{left:677.827500px;}
.xd{left:683.070000px;}
.x16{left:775.770000px;}
.x19{left:780.270000px;}
.x1b{left:782.070000px;}
.x9{left:792.307500px;}
.x3{left:797.550000px;}
.x2b{left:828.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls39{letter-spacing:-1.984000pt;}
.ls54{letter-spacing:-1.093333pt;}
.ls47{letter-spacing:-0.896000pt;}
.ls4d{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls53{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.266133pt;}
.ls3a{letter-spacing:-0.264533pt;}
.ls2d{letter-spacing:-0.262400pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls3f{letter-spacing:-0.093867pt;}
.ls7{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.000003pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000001pt;}
.ls1f{letter-spacing:0.014080pt;}
.lsc{letter-spacing:0.048000pt;}
.ls2b{letter-spacing:0.056533pt;}
.ls17{letter-spacing:0.064000pt;}
.ls50{letter-spacing:0.096000pt;}
.ls2e{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.133333pt;}
.ls6{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.230933pt;}
.ls38{letter-spacing:0.231040pt;}
.ls30{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.286933pt;}
.ls26{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.377600pt;}
.ls4f{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.416000pt;}
.ls1d{letter-spacing:0.433280pt;}
.ls52{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.575360pt;}
.ls3{letter-spacing:0.576000pt;}
.ls29{letter-spacing:0.645333pt;}
.lsf{letter-spacing:0.682667pt;}
.ls15{letter-spacing:0.698667pt;}
.ls37{letter-spacing:1.073280pt;}
.ls16{letter-spacing:1.216000pt;}
.ls2{letter-spacing:1.856000pt;}
.ls1e{letter-spacing:2.353280pt;}
.ls10{letter-spacing:2.496000pt;}
.ls31{letter-spacing:2.752000pt;}
.ls25{letter-spacing:2.993280pt;}
.ls27{letter-spacing:3.136000pt;}
.lsd{letter-spacing:3.242667pt;}
.ls1b{letter-spacing:3.633280pt;}
.ls40{letter-spacing:3.776000pt;}
.ls1c{letter-spacing:4.273280pt;}
.ls4c{letter-spacing:4.416000pt;}
.ls42{letter-spacing:5.056000pt;}
.ls36{letter-spacing:5.312000pt;}
.ls4{letter-spacing:6.336000pt;}
.ls1{letter-spacing:7.616000pt;}
.ls13{letter-spacing:9.393280pt;}
.ls3d{letter-spacing:9.536000pt;}
.ls43{letter-spacing:10.176000pt;}
.ls35{letter-spacing:10.432000pt;}
.ls33{letter-spacing:10.816000pt;}
.ls12{letter-spacing:11.313280pt;}
.ls34{letter-spacing:11.456000pt;}
.ls22{letter-spacing:12.096000pt;}
.ls4e{letter-spacing:14.016000pt;}
.ls2f{letter-spacing:14.912000pt;}
.ls41{letter-spacing:15.296000pt;}
.ls18{letter-spacing:17.216000pt;}
.ls45{letter-spacing:18.112000pt;}
.ls49{letter-spacing:18.496000pt;}
.ls44{letter-spacing:19.136000pt;}
.ls51{letter-spacing:20.416000pt;}
.ls3e{letter-spacing:21.056000pt;}
.ls4b{letter-spacing:22.442667pt;}
.lse{letter-spacing:22.496000pt;}
.ls48{letter-spacing:22.976000pt;}
.ls32{letter-spacing:28.096000pt;}
.ls46{letter-spacing:28.736000pt;}
.ls1a{letter-spacing:31.296000pt;}
.ls4a{letter-spacing:37.696000pt;}
.ls3c{letter-spacing:38.592000pt;}
.ls3b{letter-spacing:39.616000pt;}
.ls19{letter-spacing:40.896000pt;}
.ws1a{word-spacing:-18.432000pt;}
.ws1{word-spacing:-18.176000pt;}
.wsc{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984001pt;}
.ws0{word-spacing:-17.984000pt;}
.ws3{word-spacing:-17.983997pt;}
.ws9{word-spacing:-17.856000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws18{word-spacing:-17.728000pt;}
.ws5{word-spacing:-17.536000pt;}
.ws17{word-spacing:-17.408000pt;}
.ws16{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.213653pt;}
.wsb{word-spacing:-15.157653pt;}
.ws8{word-spacing:-14.926720pt;}
.ws15{word-spacing:-14.832853pt;}
.wsf{word-spacing:-14.664320pt;}
.ws12{word-spacing:-14.662187pt;}
.wsd{word-spacing:-14.660587pt;}
.ws14{word-spacing:-13.808000pt;}
.ws1b{word-spacing:-13.168000pt;}
.wsa{word-spacing:-13.120640pt;}
.ws1d{word-spacing:-9.337387pt;}
.ws19{word-spacing:-7.253333pt;}
.ws1c{word-spacing:-5.440000pt;}
.ws10{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-4.565333pt;}
._b{margin-left:-3.445333pt;}
._a{margin-left:-1.920000pt;}
._3{margin-left:-0.898560pt;}
._0{width:1.009280pt;}
._7{width:2.090667pt;}
._10{width:3.022720pt;}
._11{width:3.987840pt;}
._6{width:5.184000pt;}
._8{width:6.504107pt;}
._4{width:7.466667pt;}
._5{width:8.554667pt;}
._16{width:10.005333pt;}
._15{width:11.520000pt;}
._14{width:12.864000pt;}
._e{width:13.898667pt;}
._d{width:15.040000pt;}
._f{width:16.512000pt;}
._28{width:17.824000pt;}
._1b{width:18.937387pt;}
._23{width:20.113280pt;}
._13{width:21.504000pt;}
._12{width:22.570667pt;}
._17{width:23.652053pt;}
._1f{width:24.738560pt;}
._29{width:25.922560pt;}
._9{width:26.816000pt;}
._24{width:27.776000pt;}
._18{width:29.312000pt;}
._19{width:30.506667pt;}
._1e{width:31.445333pt;}
._20{width:32.409387pt;}
._26{width:34.240000pt;}
._2a{width:35.146667pt;}
._1c{width:36.970667pt;}
._1d{width:38.197333pt;}
._25{width:39.449387pt;}
._1a{width:40.704000pt;}
._21{width:42.560000pt;}
._22{width:43.456000pt;}
._1{width:344.570667pt;}
._2{width:463.883307pt;}
._2b{width:750.154667pt;}
._27{width:1694.261333pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:41.792000pt;}
.y2e{bottom:59.392000pt;}
.y4{bottom:59.712000pt;}
.y2d{bottom:74.272000pt;}
.y3{bottom:77.152000pt;}
.y2c{bottom:91.552000pt;}
.y2{bottom:92.192000pt;}
.y2b{bottom:106.912000pt;}
.y1{bottom:109.472000pt;}
.y52{bottom:124.352000pt;}
.y26{bottom:133.626667pt;}
.yc2{bottom:133.786667pt;}
.y51{bottom:139.226667pt;}
.y6f{bottom:139.386667pt;}
.ycd{bottom:143.706667pt;}
.y7d{bottom:144.506667pt;}
.y116{bottom:148.186667pt;}
.y10b{bottom:150.586667pt;}
.y50{bottom:154.106667pt;}
.y6e{bottom:154.426667pt;}
.y7c{bottom:154.586667pt;}
.y126{bottom:159.386667pt;}
.y25{bottom:160.346667pt;}
.yc1{bottom:160.666667pt;}
.y11f{bottom:163.066667pt;}
.y16a{bottom:163.226667pt;}
.y143{bottom:163.546667pt;}
.y4f{bottom:169.146667pt;}
.y6d{bottom:169.466667pt;}
.y125{bottom:169.626667pt;}
.ycc{bottom:170.426667pt;}
.y11d{bottom:174.106667pt;}
.y4e{bottom:174.426667pt;}
.y6c{bottom:174.746667pt;}
.y115{bottom:175.066667pt;}
.y10a{bottom:177.306667pt;}
.y6b{bottom:184.346667pt;}
.y4d{bottom:184.506667pt;}
.y9d{bottom:186.266667pt;}
.y24{bottom:187.226667pt;}
.yc0{bottom:187.386667pt;}
.yb0{bottom:187.706667pt;}
.y7a{bottom:189.946667pt;}
.y169{bottom:190.106667pt;}
.y142{bottom:190.586667pt;}
.y9e{bottom:192.986667pt;}
.y7b{bottom:196.666667pt;}
.ycb{bottom:197.626667pt;}
.y6a{bottom:199.386667pt;}
.y11c{bottom:200.986667pt;}
.y114{bottom:201.946667pt;}
.y109{bottom:204.186667pt;}
.y69{bottom:204.666667pt;}
.y9c{bottom:213.146667pt;}
.y23{bottom:214.266667pt;}
.y68{bottom:214.426667pt;}
.yaf{bottom:214.746667pt;}
.y4c{bottom:216.346667pt;}
.y124{bottom:216.666667pt;}
.y79{bottom:216.826667pt;}
.y168{bottom:216.986667pt;}
.y141{bottom:217.786667pt;}
.ydf{bottom:217.946667pt;}
.yca{bottom:219.866667pt;}
.y11b{bottom:227.866667pt;}
.y113{bottom:228.826667pt;}
.y67{bottom:229.306667pt;}
.y108{bottom:231.066667pt;}
.y66{bottom:234.586667pt;}
.y9b{bottom:240.026667pt;}
.ybf{bottom:241.146667pt;}
.y22{bottom:241.466667pt;}
.yae{bottom:241.786667pt;}
.y4b{bottom:243.266667pt;}
.y123{bottom:243.586667pt;}
.y78{bottom:243.746667pt;}
.y167{bottom:243.906667pt;}
.y140{bottom:244.546667pt;}
.y65{bottom:244.706667pt;}
.y11a{bottom:254.786667pt;}
.y112{bottom:255.746667pt;}
.y107{bottom:257.986667pt;}
.y9a{bottom:266.946667pt;}
.ybe{bottom:268.066667pt;}
.y21{bottom:268.386667pt;}
.yad{bottom:269.026667pt;}
.y4a{bottom:270.146667pt;}
.y122{bottom:270.306667pt;}
.y77{bottom:270.626667pt;}
.y166{bottom:270.786667pt;}
.yeb{bottom:270.946667pt;}
.yde{bottom:271.746667pt;}
.y119{bottom:281.666667pt;}
.y111{bottom:282.626667pt;}
.y106{bottom:284.706667pt;}
.y99{bottom:293.826667pt;}
.ybd{bottom:294.946667pt;}
.y20{bottom:295.106667pt;}
.yac{bottom:296.066667pt;}
.y49{bottom:296.866667pt;}
.y64{bottom:297.026667pt;}
.y121{bottom:297.186667pt;}
.y76{bottom:297.346667pt;}
.y11e{bottom:297.506667pt;}
.y165{bottom:297.666667pt;}
.yea{bottom:297.826667pt;}
.y13f{bottom:298.466667pt;}
.ydd{bottom:298.626667pt;}
.y118{bottom:304.066667pt;}
.y110{bottom:309.506667pt;}
.y105{bottom:311.906667pt;}
.y98{bottom:320.546667pt;}
.ybc{bottom:321.826667pt;}
.y1f{bottom:321.986667pt;}
.yab{bottom:322.946667pt;}
.y48{bottom:323.906667pt;}
.y75{bottom:324.066667pt;}
.y7f{bottom:324.226667pt;}
.y164{bottom:324.546667pt;}
.ye9{bottom:324.706667pt;}
.ydc{bottom:325.346667pt;}
.yf7{bottom:333.506667pt;}
.y10f{bottom:336.386667pt;}
.y104{bottom:338.626667pt;}
.y97{bottom:347.586667pt;}
.ydb{bottom:348.066667pt;}
.ybb{bottom:348.706667pt;}
.y1e{bottom:348.866667pt;}
.yaa{bottom:349.826667pt;}
.y63{bottom:350.786667pt;}
.y47{bottom:351.106667pt;}
.y163{bottom:351.266667pt;}
.ye8{bottom:351.586667pt;}
.y13e{bottom:352.386667pt;}
.yf6{bottom:360.386667pt;}
.y10e{bottom:363.106667pt;}
.y103{bottom:365.666667pt;}
.yda{bottom:365.986667pt;}
.y96{bottom:374.786667pt;}
.yba{bottom:375.586667pt;}
.y1d{bottom:375.746667pt;}
.ya9{bottom:376.546667pt;}
.y62{bottom:377.666667pt;}
.y46{bottom:377.986667pt;}
.y162{bottom:378.146667pt;}
.ye7{bottom:378.466667pt;}
.y13d{bottom:379.426667pt;}
.yf5{bottom:387.266667pt;}
.y10d{bottom:389.986667pt;}
.y102{bottom:392.706667pt;}
.y95{bottom:401.666667pt;}
.yb9{bottom:402.306667pt;}
.y1c{bottom:402.626667pt;}
.ya8{bottom:403.586667pt;}
.y61{bottom:404.546667pt;}
.y45{bottom:404.706667pt;}
.y74{bottom:404.866667pt;}
.y161{bottom:405.026667pt;}
.ye6{bottom:405.346667pt;}
.y13c{bottom:406.466667pt;}
.y10c{bottom:412.386667pt;}
.yf4{bottom:414.146667pt;}
.y101{bottom:419.906667pt;}
.y94{bottom:428.546667pt;}
.yb8{bottom:429.186667pt;}
.y1b{bottom:429.506667pt;}
.ya7{bottom:430.786667pt;}
.y60{bottom:431.266667pt;}
.y44{bottom:431.586667pt;}
.y73{bottom:431.746667pt;}
.ye5{bottom:432.226667pt;}
.y13b{bottom:433.506667pt;}
.yf3{bottom:440.866667pt;}
.y100{bottom:446.786667pt;}
.yc9{bottom:447.426667pt;}
.y93{bottom:455.426667pt;}
.yb7{bottom:456.066667pt;}
.y1a{bottom:456.386667pt;}
.ya5{bottom:457.826667pt;}
.y5f{bottom:458.146667pt;}
.y43{bottom:458.466667pt;}
.y72{bottom:458.626667pt;}
.ye4{bottom:458.946667pt;}
.y13a{bottom:460.546667pt;}
.ya6{bottom:464.546667pt;}
.yf2{bottom:467.746667pt;}
.yff{bottom:473.666667pt;}
.yc8{bottom:474.306667pt;}
.y92{bottom:482.146667pt;}
.yb6{bottom:482.946667pt;}
.y19{bottom:483.106667pt;}
.y5e{bottom:485.026667pt;}
.y42{bottom:485.346667pt;}
.y71{bottom:485.506667pt;}
.ye3{bottom:485.826667pt;}
.y139{bottom:487.586667pt;}
.yf1{bottom:494.653333pt;}
.yfe{bottom:500.573333pt;}
.yc7{bottom:501.213333pt;}
.y91{bottom:509.053333pt;}
.yb5{bottom:509.853333pt;}
.y18{bottom:510.013333pt;}
.y5d{bottom:511.933333pt;}
.y41{bottom:512.253333pt;}
.y70{bottom:512.413333pt;}
.ye2{bottom:512.733333pt;}
.y138{bottom:514.813333pt;}
.yf0{bottom:521.533333pt;}
.yfd{bottom:527.453333pt;}
.yc6{bottom:528.093333pt;}
.yb4{bottom:532.253333pt;}
.y90{bottom:535.933333pt;}
.y17{bottom:536.893333pt;}
.y152{bottom:537.373333pt;}
.y5b{bottom:538.653333pt;}
.y40{bottom:539.133333pt;}
.ye1{bottom:539.613333pt;}
.y137{bottom:541.853333pt;}
.y5c{bottom:545.373333pt;}
.yef{bottom:548.413333pt;}
.yfc{bottom:554.333333pt;}
.yc5{bottom:554.813333pt;}
.ye0{bottom:562.013333pt;}
.y8f{bottom:562.813333pt;}
.y16{bottom:563.773333pt;}
.y151{bottom:564.253333pt;}
.ya4{bottom:565.533333pt;}
.y5a{bottom:565.693333pt;}
.y3f{bottom:566.013333pt;}
.y160{bottom:566.493333pt;}
.y136{bottom:568.733333pt;}
.y120{bottom:572.733333pt;}
.yee{bottom:575.293333pt;}
.yfb{bottom:581.213333pt;}
.yc4{bottom:582.013333pt;}
.y8e{bottom:589.693333pt;}
.y15{bottom:590.653333pt;}
.y150{bottom:591.133333pt;}
.ya3{bottom:592.253333pt;}
.y3e{bottom:592.733333pt;}
.y59{bottom:592.893333pt;}
.y15f{bottom:593.373333pt;}
.y135{bottom:595.773333pt;}
.yed{bottom:602.173333pt;}
.yc3{bottom:604.253333pt;}
.yfa{bottom:607.933333pt;}
.y8d{bottom:616.573333pt;}
.y14{bottom:617.533333pt;}
.y14f{bottom:618.013333pt;}
.ya2{bottom:619.453333pt;}
.y7e{bottom:619.613333pt;}
.y3d{bottom:619.773333pt;}
.y15e{bottom:620.093333pt;}
.y134{bottom:622.653333pt;}
.yec{bottom:624.413333pt;}
.yf9{bottom:634.813333pt;}
.y8c{bottom:643.453333pt;}
.y13{bottom:644.413333pt;}
.y14e{bottom:644.733333pt;}
.ya1{bottom:646.333333pt;}
.y3c{bottom:646.493333pt;}
.y58{bottom:646.653333pt;}
.y15d{bottom:646.973333pt;}
.y133{bottom:649.533333pt;}
.yd9{bottom:650.973333pt;}
.yf8{bottom:657.213333pt;}
.y8b{bottom:670.333333pt;}
.y12{bottom:671.293333pt;}
.y14d{bottom:671.933333pt;}
.ya0{bottom:673.053333pt;}
.yd8{bottom:673.373333pt;}
.y3b{bottom:673.533333pt;}
.y15c{bottom:673.853333pt;}
.y132{bottom:676.253333pt;}
.y8a{bottom:697.053333pt;}
.y11{bottom:698.013333pt;}
.y14c{bottom:698.813333pt;}
.yd7{bottom:700.093333pt;}
.y3a{bottom:700.253333pt;}
.y56{bottom:700.413333pt;}
.y15b{bottom:700.733333pt;}
.y131{bottom:703.453333pt;}
.y57{bottom:707.133333pt;}
.y89{bottom:723.933333pt;}
.y10{bottom:724.893333pt;}
.y14b{bottom:725.533333pt;}
.y9f{bottom:726.973333pt;}
.y39{bottom:727.133333pt;}
.y55{bottom:727.293333pt;}
.y15a{bottom:727.613333pt;}
.y130{bottom:730.173333pt;}
.y88{bottom:750.853333pt;}
.yf{bottom:751.813333pt;}
.y14a{bottom:752.453333pt;}
.y38{bottom:753.893333pt;}
.y53{bottom:754.053333pt;}
.y159{bottom:754.533333pt;}
.y12f{bottom:757.413333pt;}
.y54{bottom:760.773333pt;}
.ye{bottom:777.413333pt;}
.y87{bottom:777.733333pt;}
.y149{bottom:779.493333pt;}
.yd5{bottom:780.773333pt;}
.y37{bottom:780.933333pt;}
.y158{bottom:781.413333pt;}
.y12e{bottom:784.293333pt;}
.yd6{bottom:787.493333pt;}
.yd{bottom:802.053333pt;}
.y86{bottom:804.613333pt;}
.y148{bottom:806.693333pt;}
.yd4{bottom:807.653333pt;}
.y36{bottom:807.813333pt;}
.y157{bottom:808.293333pt;}
.y12d{bottom:811.173333pt;}
.yc{bottom:826.693333pt;}
.y85{bottom:831.493333pt;}
.y147{bottom:833.413333pt;}
.yd3{bottom:834.533333pt;}
.y35{bottom:834.693333pt;}
.y156{bottom:835.013333pt;}
.y12c{bottom:837.893333pt;}
.yb{bottom:854.693333pt;}
.y84{bottom:858.373333pt;}
.y146{bottom:860.453333pt;}
.yd2{bottom:861.413333pt;}
.y34{bottom:861.573333pt;}
.y155{bottom:861.893333pt;}
.y12b{bottom:865.093333pt;}
.y83{bottom:885.253333pt;}
.ya{bottom:886.053333pt;}
.y145{bottom:887.493333pt;}
.yd1{bottom:888.133333pt;}
.y32{bottom:888.453333pt;}
.y154{bottom:888.773333pt;}
.y12a{bottom:891.973333pt;}
.y33{bottom:895.173333pt;}
.y82{bottom:912.133333pt;}
.y144{bottom:914.533333pt;}
.yd0{bottom:915.013333pt;}
.y117{bottom:915.173333pt;}
.y31{bottom:915.333333pt;}
.y153{bottom:915.653333pt;}
.y129{bottom:916.613333pt;}
.y9{bottom:917.253333pt;}
.y81{bottom:938.853333pt;}
.y128{bottom:940.293333pt;}
.yb3{bottom:941.733333pt;}
.ycf{bottom:941.893333pt;}
.y30{bottom:942.213333pt;}
.y8{bottom:944.293333pt;}
.y80{bottom:965.893333pt;}
.yb2{bottom:968.453333pt;}
.yce{bottom:968.613333pt;}
.y127{bottom:968.773333pt;}
.y7{bottom:968.933333pt;}
.yb1{bottom:995.493333pt;}
.y6{bottom:995.653333pt;}
.y2f{bottom:995.813333pt;}
.y2a{bottom:1028.000000pt;}
.y29{bottom:1045.280000pt;}
.y28{bottom:1060.160000pt;}
.y27{bottom:1074.880000pt;}
.hb{height:27.171875pt;}
.ha{height:31.519375pt;}
.hd{height:36.410312pt;}
.h3{height:40.163750pt;}
.h8{height:40.757812pt;}
.h10{height:42.656250pt;}
.h2{height:45.105313pt;}
.h7{height:49.996250pt;}
.h4{height:51.750000pt;}
.h5{height:54.343750pt;}
.hc{height:54.598989pt;}
.hf{height:58.399375pt;}
.h6{height:63.582187pt;}
.he{height:65.781915pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x2d{left:115.232000pt;}
.x1c{left:121.632000pt;}
.x33{left:122.912000pt;}
.x1a{left:145.306667pt;}
.x2f{left:146.746667pt;}
.x2e{left:148.026667pt;}
.x6{left:151.226667pt;}
.x1e{left:154.746667pt;}
.x2{left:160.666667pt;}
.x8{left:164.666667pt;}
.x15{left:170.266667pt;}
.xe{left:179.706667pt;}
.x2c{left:181.466667pt;}
.x26{left:190.106667pt;}
.x28{left:191.386667pt;}
.x29{left:198.266667pt;}
.x23{left:199.546667pt;}
.x2a{left:204.346667pt;}
.x31{left:227.686667pt;}
.x32{left:232.506667pt;}
.x11{left:238.726667pt;}
.x12{left:243.546667pt;}
.x27{left:256.866667pt;}
.xa{left:262.606667pt;}
.x24{left:264.706667pt;}
.xb{left:267.426667pt;}
.x30{left:287.746667pt;}
.x1d{left:294.786667pt;}
.x7{left:305.506667pt;}
.x17{left:314.146667pt;}
.x22{left:340.386667pt;}
.x18{left:411.106667pt;}
.x25{left:430.013333pt;}
.x38{left:465.693333pt;}
.x13{left:470.633333pt;}
.x14{left:475.293333pt;}
.x21{left:496.413333pt;}
.x4{left:521.513333pt;}
.x5{left:526.173333pt;}
.x37{left:545.853333pt;}
.x36{left:571.933333pt;}
.xf{left:572.873333pt;}
.x10{left:577.533333pt;}
.x35{left:583.453333pt;}
.x1f{left:589.033333pt;}
.x34{left:590.173333pt;}
.x20{left:593.733333pt;}
.xc{left:602.513333pt;}
.xd{left:607.173333pt;}
.x16{left:689.573333pt;}
.x19{left:693.573333pt;}
.x1b{left:695.173333pt;}
.x9{left:704.273333pt;}
.x3{left:708.933333pt;}
.x2b{left:736.773333pt;}
}




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