
    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_677ba10a86241e2aa0a1ac73.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;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_347d732aa01c513622c1921f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_5466c6f64a0cc899f1284a30.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_1b8072d4591abb91d0533428.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_bdca58d3eb12796eff4287c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.156738;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_13d877c2f4064d37cbaa8ab2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_0ae0615e099a2d42a130e15f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972656;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_904a47a67657d01ccf7bc153.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_f356736bee441a09a5e594f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_131070eba90544ad1d4f9afd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_192ab3e359d5d0e631e0b3cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.972656;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:ffd;src:url('chunks/assets/font_a0e5e88bcc8adbd054007f99.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.783691;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:ffe;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.850586;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;}
.ls3a{letter-spacing:-2.988000px;}
.ls7{letter-spacing:-1.548000px;}
.ls1d{letter-spacing:-1.026000px;}
.ls1b{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.612000px;}
.ls23{letter-spacing:-0.504000px;}
.ls21{letter-spacing:-0.457800px;}
.ls13{letter-spacing:-0.414600px;}
.ls4{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.097800px;}
.ls6{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.070560px;}
.ls8{letter-spacing:0.097800px;}
.ls1f{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.228000px;}
.ls38{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.262080px;}
.ls22{letter-spacing:0.262200px;}
.ls9{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.336000px;}
.ls3b{letter-spacing:0.360000px;}
.ls39{letter-spacing:0.397200px;}
.ls11{letter-spacing:0.442080px;}
.ls33{letter-spacing:0.666720px;}
.ls1{letter-spacing:0.720000px;}
.ls36{letter-spacing:0.979920px;}
.ls34{letter-spacing:2.106720px;}
.lsb{letter-spacing:3.396000px;}
.ls18{letter-spacing:4.085280px;}
.ls1c{letter-spacing:4.625280px;}
.ls1a{letter-spacing:6.065280px;}
.lsd{letter-spacing:6.588000px;}
.ls2e{letter-spacing:7.505280px;}
.lsc{letter-spacing:7.920000px;}
.ls19{letter-spacing:8.945280px;}
.ls16{letter-spacing:9.065280px;}
.ls37{letter-spacing:11.466720px;}
.ls2a{letter-spacing:13.265280px;}
.ls2d{letter-spacing:13.985280px;}
.ls30{letter-spacing:14.705280px;}
.lsf{letter-spacing:19.745280px;}
.ls17{letter-spacing:22.625280px;}
.ls2f{letter-spacing:26.225280px;}
.ls35{letter-spacing:27.486720px;}
.ls2b{letter-spacing:31.265280px;}
.ls31{letter-spacing:35.946720px;}
.ls28{letter-spacing:36.305280px;}
.ls14{letter-spacing:37.025280px;}
.ls29{letter-spacing:37.745280px;}
.ls26{letter-spacing:38.465280px;}
.ls25{letter-spacing:39.905280px;}
.ls32{letter-spacing:44.586720px;}
.lsa{letter-spacing:57.305280px;}
.ls12{letter-spacing:59.345280px;}
.ls2{letter-spacing:62.225280px;}
.ls27{letter-spacing:63.785280px;}
.ls24{letter-spacing:193.985280px;}
.ls2c{letter-spacing:237.185280px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws1{word-spacing:-20.016000px;}
.wsd{word-spacing:-18.676920px;}
.ws5{word-spacing:-18.512520px;}
.ws7{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.316920px;}
.wsc{word-spacing:-17.956920px;}
.wsb{word-spacing:-17.694720px;}
.ws10{word-spacing:-17.010480px;}
.ws12{word-spacing:-16.973280px;}
.ws4{word-spacing:-16.613280px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.812640px;}
.wse{word-spacing:-15.228000px;}
.ws8{word-spacing:-15.012000px;}
.ws11{word-spacing:-13.625280px;}
.wsf{word-spacing:-13.410720px;}
.ws6{word-spacing:0.000000px;}
._31{margin-left:-5.564160px;}
._16{margin-left:-4.371840px;}
._26{margin-left:-3.363840px;}
._17{margin-left:-2.355840px;}
._0{margin-left:-1.008000px;}
._1{width:1.167840px;}
._6{width:2.265360px;}
._7{width:3.771360px;}
._8{width:4.830480px;}
._a{width:5.916240px;}
._12{width:7.102080px;}
._5{width:9.083520px;}
._4{width:10.876320px;}
._35{width:11.885760px;}
._21{width:12.920640px;}
._2d{width:14.252160px;}
._1d{width:16.096320px;}
._28{width:17.118000px;}
._29{width:18.159360px;}
._24{width:19.672560px;}
._9{width:20.975760px;}
._2c{width:22.028400px;}
._14{width:23.073840px;}
._37{width:24.153120px;}
._1b{width:25.171200px;}
._f{width:26.628480px;}
._1c{width:27.792000px;}
._2e{width:29.557440px;}
._e{width:31.553280px;}
._27{width:32.662080px;}
._13{width:34.709760px;}
._b{width:36.632880px;}
._1a{width:37.712880px;}
._c{width:39.604560px;}
._30{width:41.382720px;}
._23{width:43.320960px;}
._3{width:44.879760px;}
._2{width:46.194480px;}
._38{width:47.340720px;}
._2f{width:48.355200px;}
._39{width:49.415040px;}
._33{width:52.197120px;}
._34{width:53.426880px;}
._d{width:54.740160px;}
._22{width:56.408160px;}
._36{width:57.705120px;}
._11{width:58.754880px;}
._10{width:59.762880px;}
._15{width:61.948800px;}
._25{width:64.252800px;}
._2b{width:71.936640px;}
._2a{width:73.166400px;}
._3b{width:79.156800px;}
._3a{width:80.363520px;}
._1e{width:84.669120px;}
._1f{width:86.149440px;}
._20{width:102.355200px;}
._32{width:109.704240px;}
._3c{width:130.360320px;}
._3d{width:132.053760px;}
._18{width:148.576320px;}
._19{width:150.071040px;}
._3e{width:1323.063360px;}
.fc3{color:rgb(36,31,31);}
.fc2{color:rgb(33,37,41);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yad{bottom:2.880000px;}
.yb4{bottom:3.060000px;}
.y3{bottom:3.420000px;}
.yab{bottom:3.600000px;}
.ybe{bottom:18.360000px;}
.yac{bottom:18.540000px;}
.yaa{bottom:21.960000px;}
.y2{bottom:22.500000px;}
.yb3{bottom:34.020000px;}
.ybd{bottom:34.050000px;}
.ya9{bottom:37.440000px;}
.y1{bottom:41.040000px;}
.yb2{bottom:49.500000px;}
.ybc{bottom:49.530000px;}
.yc1{bottom:64.980000px;}
.ybb{bottom:65.010000px;}
.yb1{bottom:65.160000px;}
.yba{bottom:80.490000px;}
.yc0{bottom:80.640000px;}
.yb0{bottom:80.685000px;}
.yb9{bottom:95.970000px;}
.yaf{bottom:96.165000px;}
.y4e{bottom:109.476000px;}
.yb8{bottom:111.630000px;}
.y7f{bottom:112.716000px;}
.yca{bottom:117.036000px;}
.ya3{bottom:119.556000px;}
.ya6{bottom:122.076000px;}
.yf6{bottom:122.976000px;}
.yb7{bottom:127.110000px;}
.y28{bottom:127.116000px;}
.y7e{bottom:132.876000px;}
.y110{bottom:133.776000px;}
.yc9{bottom:135.936000px;}
.y4d{bottom:136.476000px;}
.ya2{bottom:138.456000px;}
.y5a{bottom:138.636000px;}
.ya5{bottom:140.976000px;}
.yf5{bottom:141.876000px;}
.yb6{bottom:142.590000px;}
.yf8{bottom:143.496000px;}
.y27{bottom:146.196000px;}
.y10f{bottom:151.050000px;}
.yea{bottom:151.950000px;}
.y7d{bottom:153.210000px;}
.y4c{bottom:154.830000px;}
.yc8{bottom:155.010000px;}
.ya1{bottom:157.350000px;}
.y59{bottom:158.790000px;}
.ya4{bottom:159.870000px;}
.yf4{bottom:160.950000px;}
.y26{bottom:165.090000px;}
.y10e{bottom:168.330000px;}
.yf7{bottom:169.950000px;}
.y4b{bottom:170.310000px;}
.ye9{bottom:170.850000px;}
.y7c{bottom:173.370000px;}
.yc7{bottom:173.910000px;}
.ya0{bottom:176.430000px;}
.y58{bottom:178.950000px;}
.yf3{bottom:179.850000px;}
.y25{bottom:184.170000px;}
.y10d{bottom:185.610000px;}
.y4a{bottom:185.790000px;}
.ye8{bottom:189.930000px;}
.y7b{bottom:192.270000px;}
.yc6{bottom:192.810000px;}
.y9f{bottom:195.330000px;}
.y57{bottom:197.850000px;}
.yf2{bottom:198.930000px;}
.y49{bottom:201.270000px;}
.y10c{bottom:202.890000px;}
.y24{bottom:203.070000px;}
.ye7{bottom:208.830000px;}
.y7a{bottom:211.350000px;}
.yc5{bottom:211.890000px;}
.y9e{bottom:214.410000px;}
.y48{bottom:216.930000px;}
.yf1{bottom:217.830000px;}
.y10b{bottom:219.990000px;}
.y23{bottom:221.970000px;}
.ye6{bottom:227.910000px;}
.y79{bottom:230.250000px;}
.yc4{bottom:230.790000px;}
.y47{bottom:232.455000px;}
.y9d{bottom:233.355000px;}
.y56{bottom:235.875000px;}
.yf0{bottom:236.955000px;}
.y10a{bottom:237.315000px;}
.y22{bottom:241.095000px;}
.ye5{bottom:246.855000px;}
.y46{bottom:247.935000px;}
.y78{bottom:249.375000px;}
.yc3{bottom:249.915000px;}
.y9c{bottom:252.255000px;}
.y109{bottom:254.595000px;}
.y55{bottom:254.955000px;}
.yef{bottom:255.855000px;}
.y21{bottom:259.995000px;}
.y45{bottom:263.415000px;}
.ye4{bottom:265.755000px;}
.y77{bottom:268.275000px;}
.yc2{bottom:268.815000px;}
.y9b{bottom:271.335000px;}
.y108{bottom:271.875000px;}
.y54{bottom:273.855000px;}
.yee{bottom:274.755000px;}
.y20{bottom:279.075000px;}
.ye3{bottom:284.835000px;}
.y76{bottom:287.175000px;}
.y107{bottom:289.155000px;}
.y9a{bottom:290.235000px;}
.y53{bottom:292.755000px;}
.yed{bottom:293.835000px;}
.ybf{bottom:294.015000px;}
.y44{bottom:294.555000px;}
.y1f{bottom:297.975000px;}
.y75{bottom:306.255000px;}
.y106{bottom:306.435000px;}
.y99{bottom:309.315000px;}
.y43{bottom:311.115000px;}
.y52{bottom:311.835000px;}
.ye2{bottom:312.735000px;}
.y1e{bottom:316.875000px;}
.y42{bottom:317.955000px;}
.y105{bottom:323.535000px;}
.y74{bottom:325.155000px;}
.y98{bottom:328.215000px;}
.y51{bottom:330.735000px;}
.y41{bottom:331.815000px;}
.y1d{bottom:335.955000px;}
.ye1{bottom:340.815000px;}
.y73{bottom:344.235000px;}
.y97{bottom:347.115000px;}
.y50{bottom:349.815000px;}
.yec{bottom:350.715000px;}
.y1c{bottom:355.395000px;}
.y104{bottom:358.095000px;}
.ye0{bottom:359.715000px;}
.y72{bottom:363.135000px;}
.y96{bottom:366.195000px;}
.y4f{bottom:368.715000px;}
.yeb{bottom:369.615000px;}
.y1b{bottom:375.375000px;}
.ydf{bottom:378.615000px;}
.y71{bottom:382.035000px;}
.y95{bottom:385.095000px;}
.y40{bottom:387.615000px;}
.yb5{bottom:387.975000px;}
.y1a{bottom:392.655000px;}
.yde{bottom:397.695000px;}
.y70{bottom:401.115000px;}
.y94{bottom:404.175000px;}
.y3f{bottom:406.695000px;}
.y19{bottom:409.935000px;}
.ydd{bottom:416.595000px;}
.y6f{bottom:420.015000px;}
.y93{bottom:423.105000px;}
.y3e{bottom:425.625000px;}
.y18{bottom:427.065000px;}
.ydc{bottom:435.705000px;}
.y6e{bottom:439.125000px;}
.y92{bottom:442.185000px;}
.y17{bottom:444.345000px;}
.y3d{bottom:444.705000px;}
.ydb{bottom:454.605000px;}
.y6d{bottom:458.025000px;}
.y91{bottom:461.085000px;}
.y16{bottom:461.625000px;}
.y3c{bottom:463.605000px;}
.yda{bottom:473.505000px;}
.y6c{bottom:477.105000px;}
.y15{bottom:478.905000px;}
.y90{bottom:479.985000px;}
.y3b{bottom:482.505000px;}
.yd9{bottom:492.585000px;}
.y6b{bottom:496.005000px;}
.y14{bottom:496.185000px;}
.y8f{bottom:499.065000px;}
.y39{bottom:501.585000px;}
.y3a{bottom:507.525000px;}
.yd8{bottom:511.485000px;}
.y13{bottom:513.285000px;}
.y6a{bottom:514.905000px;}
.y8e{bottom:517.965000px;}
.y38{bottom:520.485000px;}
.y12{bottom:530.565000px;}
.y69{bottom:533.985000px;}
.y8d{bottom:537.045000px;}
.y37{bottom:539.565000px;}
.yae{bottom:543.885000px;}
.y11{bottom:547.845000px;}
.yd7{bottom:549.465000px;}
.y68{bottom:552.885000px;}
.y8c{bottom:555.945000px;}
.y36{bottom:558.465000px;}
.y10{bottom:565.125000px;}
.yd6{bottom:568.365000px;}
.y67{bottom:571.965000px;}
.y8b{bottom:574.845000px;}
.y35{bottom:577.365000px;}
.yf{bottom:582.405000px;}
.yd5{bottom:587.445000px;}
.y66{bottom:590.865000px;}
.y8a{bottom:593.925000px;}
.y34{bottom:596.445000px;}
.ye{bottom:599.685000px;}
.yd4{bottom:606.345000px;}
.y65{bottom:609.810000px;}
.y89{bottom:612.870000px;}
.y33{bottom:615.390000px;}
.y103{bottom:616.830000px;}
.yd{bottom:617.370000px;}
.yd3{bottom:625.470000px;}
.y64{bottom:628.890000px;}
.y88{bottom:631.950000px;}
.y102{bottom:634.110000px;}
.y32{bottom:634.470000px;}
.yc{bottom:638.070000px;}
.yd2{bottom:644.370000px;}
.y63{bottom:647.790000px;}
.y87{bottom:650.850000px;}
.y101{bottom:651.390000px;}
.y31{bottom:653.370000px;}
.yb{bottom:658.770000px;}
.yd1{bottom:663.270000px;}
.y62{bottom:666.690000px;}
.y100{bottom:668.670000px;}
.y86{bottom:669.750000px;}
.y30{bottom:672.270000px;}
.ya{bottom:679.470000px;}
.yd0{bottom:682.350000px;}
.yff{bottom:685.950000px;}
.ya8{bottom:686.670000px;}
.y61{bottom:686.850000px;}
.y85{bottom:688.830000px;}
.y2f{bottom:691.350000px;}
.y9{bottom:700.170000px;}
.ycf{bottom:701.250000px;}
.yfe{bottom:703.230000px;}
.y60{bottom:705.930000px;}
.y84{bottom:707.730000px;}
.y2e{bottom:710.250000px;}
.yce{bottom:720.330000px;}
.y8{bottom:720.870000px;}
.y5f{bottom:724.830000px;}
.y83{bottom:726.810000px;}
.y2d{bottom:729.330000px;}
.yfd{bottom:737.610000px;}
.ycd{bottom:739.230000px;}
.ya7{bottom:740.670000px;}
.y7{bottom:741.570000px;}
.y5e{bottom:744.810000px;}
.y82{bottom:745.710000px;}
.y2c{bottom:748.230000px;}
.yfc{bottom:754.890000px;}
.ycc{bottom:758.310000px;}
.y6{bottom:762.270000px;}
.y81{bottom:764.610000px;}
.y5d{bottom:764.970000px;}
.y2b{bottom:767.310000px;}
.yfb{bottom:772.170000px;}
.ycb{bottom:777.210000px;}
.y5{bottom:782.970000px;}
.y80{bottom:784.950000px;}
.y5c{bottom:785.130000px;}
.y2a{bottom:786.210000px;}
.yfa{bottom:789.450000px;}
.y4{bottom:803.700000px;}
.y5b{bottom:804.060000px;}
.y29{bottom:805.140000px;}
.yf9{bottom:806.760000px;}
.h15{height:31.140000px;}
.hf{height:33.683203px;}
.hc{height:37.457578px;}
.h16{height:39.840820px;}
.h14{height:41.159180px;}
.h11{height:41.726953px;}
.h6{height:44.090508px;}
.h7{height:45.549492px;}
.h3{height:46.251562px;}
.h10{height:48.436523px;}
.hd{height:48.871406px;}
.h13{height:50.040000px;}
.he{height:50.273438px;}
.h8{height:50.488594px;}
.h2{height:53.603086px;}
.h1a{height:54.390938px;}
.h9{height:59.343750px;}
.ha{height:59.415469px;}
.hb{height:60.288750px;}
.h5{height:64.582031px;}
.h4{height:65.531250px;}
.h12{height:70.995234px;}
.h19{height:93.240000px;}
.h17{height:108.756000px;}
.h18{height:155.190000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w4{width:147.816000px;}
.w6{width:158.790000px;}
.w5{width:169.410000px;}
.w1{width:629.250000px;}
.w3{width:629.279981px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x2{left:80.855991px;}
.xf{left:86.975991px;}
.x8{left:98.675991px;}
.x14{left:102.095991px;}
.x3{left:107.315991px;}
.x4{left:114.155991px;}
.xb{left:123.335991px;}
.x10{left:134.855991px;}
.x9{left:159.149991px;}
.x7{left:227.774991px;}
.xa{left:231.014991px;}
.x5{left:266.114991px;}
.x11{left:276.914991px;}
.xe{left:296.894991px;}
.x1{left:306.434991px;}
.x6{left:314.714991px;}
.x13{left:400.245000px;}
.xc{left:473.369981px;}
.xd{left:479.129991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3a{letter-spacing:-2.656000pt;}
.ls7{letter-spacing:-1.376000pt;}
.ls1d{letter-spacing:-0.912000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls23{letter-spacing:-0.448000pt;}
.ls21{letter-spacing:-0.406933pt;}
.ls13{letter-spacing:-0.368533pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.086933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.062720pt;}
.ls8{letter-spacing:0.086933pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.202667pt;}
.ls38{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.232960pt;}
.ls22{letter-spacing:0.233067pt;}
.ls9{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.298667pt;}
.ls3b{letter-spacing:0.320000pt;}
.ls39{letter-spacing:0.353067pt;}
.ls11{letter-spacing:0.392960pt;}
.ls33{letter-spacing:0.592640pt;}
.ls1{letter-spacing:0.640000pt;}
.ls36{letter-spacing:0.871040pt;}
.ls34{letter-spacing:1.872640pt;}
.lsb{letter-spacing:3.018667pt;}
.ls18{letter-spacing:3.631360pt;}
.ls1c{letter-spacing:4.111360pt;}
.ls1a{letter-spacing:5.391360pt;}
.lsd{letter-spacing:5.856000pt;}
.ls2e{letter-spacing:6.671360pt;}
.lsc{letter-spacing:7.040000pt;}
.ls19{letter-spacing:7.951360pt;}
.ls16{letter-spacing:8.058027pt;}
.ls37{letter-spacing:10.192640pt;}
.ls2a{letter-spacing:11.791360pt;}
.ls2d{letter-spacing:12.431360pt;}
.ls30{letter-spacing:13.071360pt;}
.lsf{letter-spacing:17.551360pt;}
.ls17{letter-spacing:20.111360pt;}
.ls2f{letter-spacing:23.311360pt;}
.ls35{letter-spacing:24.432640pt;}
.ls2b{letter-spacing:27.791360pt;}
.ls31{letter-spacing:31.952640pt;}
.ls28{letter-spacing:32.271360pt;}
.ls14{letter-spacing:32.911360pt;}
.ls29{letter-spacing:33.551360pt;}
.ls26{letter-spacing:34.191360pt;}
.ls25{letter-spacing:35.471360pt;}
.ls32{letter-spacing:39.632640pt;}
.lsa{letter-spacing:50.938027pt;}
.ls12{letter-spacing:52.751360pt;}
.ls2{letter-spacing:55.311360pt;}
.ls27{letter-spacing:56.698027pt;}
.ls24{letter-spacing:172.431360pt;}
.ls2c{letter-spacing:210.831360pt;}
.ws9{word-spacing:-58.880000pt;}
.ws1{word-spacing:-17.792000pt;}
.wsd{word-spacing:-16.601707pt;}
.ws5{word-spacing:-16.455573pt;}
.ws7{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.281707pt;}
.wsc{word-spacing:-15.961707pt;}
.wsb{word-spacing:-15.728640pt;}
.ws10{word-spacing:-15.120427pt;}
.ws12{word-spacing:-15.087360pt;}
.ws4{word-spacing:-14.767360pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.672427pt;}
.ws2{word-spacing:-14.055680pt;}
.wse{word-spacing:-13.536000pt;}
.ws8{word-spacing:-13.344000pt;}
.ws11{word-spacing:-12.111360pt;}
.wsf{word-spacing:-11.920640pt;}
.ws6{word-spacing:0.000000pt;}
._31{margin-left:-4.945920pt;}
._16{margin-left:-3.886080pt;}
._26{margin-left:-2.990080pt;}
._17{margin-left:-2.094080pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.038080pt;}
._6{width:2.013653pt;}
._7{width:3.352320pt;}
._8{width:4.293760pt;}
._a{width:5.258880pt;}
._12{width:6.312960pt;}
._5{width:8.074240pt;}
._4{width:9.667840pt;}
._35{width:10.565120pt;}
._21{width:11.485013pt;}
._2d{width:12.668587pt;}
._1d{width:14.307840pt;}
._28{width:15.216000pt;}
._29{width:16.141653pt;}
._24{width:17.486720pt;}
._9{width:18.645120pt;}
._2c{width:19.580800pt;}
._14{width:20.510080pt;}
._37{width:21.469440pt;}
._1b{width:22.374400pt;}
._f{width:23.669760pt;}
._1c{width:24.704000pt;}
._2e{width:26.273280pt;}
._e{width:28.047360pt;}
._27{width:29.032960pt;}
._13{width:30.853120pt;}
._b{width:32.562560pt;}
._1a{width:33.522560pt;}
._c{width:35.204053pt;}
._30{width:36.784640pt;}
._23{width:38.507520pt;}
._3{width:39.893120pt;}
._2{width:41.061760pt;}
._38{width:42.080640pt;}
._2f{width:42.982400pt;}
._39{width:43.924480pt;}
._33{width:46.397440pt;}
._34{width:47.490560pt;}
._d{width:48.657920pt;}
._22{width:50.140587pt;}
._36{width:51.293440pt;}
._11{width:52.226560pt;}
._10{width:53.122560pt;}
._15{width:55.065600pt;}
._25{width:57.113600pt;}
._2b{width:63.943680pt;}
._2a{width:65.036800pt;}
._3b{width:70.361600pt;}
._3a{width:71.434240pt;}
._1e{width:75.261440pt;}
._1f{width:76.577280pt;}
._20{width:90.982400pt;}
._32{width:97.514880pt;}
._3c{width:115.875840pt;}
._3d{width:117.381120pt;}
._18{width:132.067840pt;}
._19{width:133.396480pt;}
._3e{width:1176.056320pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:2.560000pt;}
.yb4{bottom:2.720000pt;}
.y3{bottom:3.040000pt;}
.yab{bottom:3.200000pt;}
.ybe{bottom:16.320000pt;}
.yac{bottom:16.480000pt;}
.yaa{bottom:19.520000pt;}
.y2{bottom:20.000000pt;}
.yb3{bottom:30.240000pt;}
.ybd{bottom:30.266667pt;}
.ya9{bottom:33.280000pt;}
.y1{bottom:36.480000pt;}
.yb2{bottom:44.000000pt;}
.ybc{bottom:44.026667pt;}
.yc1{bottom:57.760000pt;}
.ybb{bottom:57.786667pt;}
.yb1{bottom:57.920000pt;}
.yba{bottom:71.546667pt;}
.yc0{bottom:71.680000pt;}
.yb0{bottom:71.720000pt;}
.yb9{bottom:85.306667pt;}
.yaf{bottom:85.480000pt;}
.y4e{bottom:97.312000pt;}
.yb8{bottom:99.226667pt;}
.y7f{bottom:100.192000pt;}
.yca{bottom:104.032000pt;}
.ya3{bottom:106.272000pt;}
.ya6{bottom:108.512000pt;}
.yf6{bottom:109.312000pt;}
.yb7{bottom:112.986667pt;}
.y28{bottom:112.992000pt;}
.y7e{bottom:118.112000pt;}
.y110{bottom:118.912000pt;}
.yc9{bottom:120.832000pt;}
.y4d{bottom:121.312000pt;}
.ya2{bottom:123.072000pt;}
.y5a{bottom:123.232000pt;}
.ya5{bottom:125.312000pt;}
.yf5{bottom:126.112000pt;}
.yb6{bottom:126.746667pt;}
.yf8{bottom:127.552000pt;}
.y27{bottom:129.952000pt;}
.y10f{bottom:134.266667pt;}
.yea{bottom:135.066667pt;}
.y7d{bottom:136.186667pt;}
.y4c{bottom:137.626667pt;}
.yc8{bottom:137.786667pt;}
.ya1{bottom:139.866667pt;}
.y59{bottom:141.146667pt;}
.ya4{bottom:142.106667pt;}
.yf4{bottom:143.066667pt;}
.y26{bottom:146.746667pt;}
.y10e{bottom:149.626667pt;}
.yf7{bottom:151.066667pt;}
.y4b{bottom:151.386667pt;}
.ye9{bottom:151.866667pt;}
.y7c{bottom:154.106667pt;}
.yc7{bottom:154.586667pt;}
.ya0{bottom:156.826667pt;}
.y58{bottom:159.066667pt;}
.yf3{bottom:159.866667pt;}
.y25{bottom:163.706667pt;}
.y10d{bottom:164.986667pt;}
.y4a{bottom:165.146667pt;}
.ye8{bottom:168.826667pt;}
.y7b{bottom:170.906667pt;}
.yc6{bottom:171.386667pt;}
.y9f{bottom:173.626667pt;}
.y57{bottom:175.866667pt;}
.yf2{bottom:176.826667pt;}
.y49{bottom:178.906667pt;}
.y10c{bottom:180.346667pt;}
.y24{bottom:180.506667pt;}
.ye7{bottom:185.626667pt;}
.y7a{bottom:187.866667pt;}
.yc5{bottom:188.346667pt;}
.y9e{bottom:190.586667pt;}
.y48{bottom:192.826667pt;}
.yf1{bottom:193.626667pt;}
.y10b{bottom:195.546667pt;}
.y23{bottom:197.306667pt;}
.ye6{bottom:202.586667pt;}
.y79{bottom:204.666667pt;}
.yc4{bottom:205.146667pt;}
.y47{bottom:206.626667pt;}
.y9d{bottom:207.426667pt;}
.y56{bottom:209.666667pt;}
.yf0{bottom:210.626667pt;}
.y10a{bottom:210.946667pt;}
.y22{bottom:214.306667pt;}
.ye5{bottom:219.426667pt;}
.y46{bottom:220.386667pt;}
.y78{bottom:221.666667pt;}
.yc3{bottom:222.146667pt;}
.y9c{bottom:224.226667pt;}
.y109{bottom:226.306667pt;}
.y55{bottom:226.626667pt;}
.yef{bottom:227.426667pt;}
.y21{bottom:231.106667pt;}
.y45{bottom:234.146667pt;}
.ye4{bottom:236.226667pt;}
.y77{bottom:238.466667pt;}
.yc2{bottom:238.946667pt;}
.y9b{bottom:241.186667pt;}
.y108{bottom:241.666667pt;}
.y54{bottom:243.426667pt;}
.yee{bottom:244.226667pt;}
.y20{bottom:248.066667pt;}
.ye3{bottom:253.186667pt;}
.y76{bottom:255.266667pt;}
.y107{bottom:257.026667pt;}
.y9a{bottom:257.986667pt;}
.y53{bottom:260.226667pt;}
.yed{bottom:261.186667pt;}
.ybf{bottom:261.346667pt;}
.y44{bottom:261.826667pt;}
.y1f{bottom:264.866667pt;}
.y75{bottom:272.226667pt;}
.y106{bottom:272.386667pt;}
.y99{bottom:274.946667pt;}
.y43{bottom:276.546667pt;}
.y52{bottom:277.186667pt;}
.ye2{bottom:277.986667pt;}
.y1e{bottom:281.666667pt;}
.y42{bottom:282.626667pt;}
.y105{bottom:287.586667pt;}
.y74{bottom:289.026667pt;}
.y98{bottom:291.746667pt;}
.y51{bottom:293.986667pt;}
.y41{bottom:294.946667pt;}
.y1d{bottom:298.626667pt;}
.ye1{bottom:302.946667pt;}
.y73{bottom:305.986667pt;}
.y97{bottom:308.546667pt;}
.y50{bottom:310.946667pt;}
.yec{bottom:311.746667pt;}
.y1c{bottom:315.906667pt;}
.y104{bottom:318.306667pt;}
.ye0{bottom:319.746667pt;}
.y72{bottom:322.786667pt;}
.y96{bottom:325.506667pt;}
.y4f{bottom:327.746667pt;}
.yeb{bottom:328.546667pt;}
.y1b{bottom:333.666667pt;}
.ydf{bottom:336.546667pt;}
.y71{bottom:339.586667pt;}
.y95{bottom:342.306667pt;}
.y40{bottom:344.546667pt;}
.yb5{bottom:344.866667pt;}
.y1a{bottom:349.026667pt;}
.yde{bottom:353.506667pt;}
.y70{bottom:356.546667pt;}
.y94{bottom:359.266667pt;}
.y3f{bottom:361.506667pt;}
.y19{bottom:364.386667pt;}
.ydd{bottom:370.306667pt;}
.y6f{bottom:373.346667pt;}
.y93{bottom:376.093333pt;}
.y3e{bottom:378.333333pt;}
.y18{bottom:379.613333pt;}
.ydc{bottom:387.293333pt;}
.y6e{bottom:390.333333pt;}
.y92{bottom:393.053333pt;}
.y17{bottom:394.973333pt;}
.y3d{bottom:395.293333pt;}
.ydb{bottom:404.093333pt;}
.y6d{bottom:407.133333pt;}
.y91{bottom:409.853333pt;}
.y16{bottom:410.333333pt;}
.y3c{bottom:412.093333pt;}
.yda{bottom:420.893333pt;}
.y6c{bottom:424.093333pt;}
.y15{bottom:425.693333pt;}
.y90{bottom:426.653333pt;}
.y3b{bottom:428.893333pt;}
.yd9{bottom:437.853333pt;}
.y6b{bottom:440.893333pt;}
.y14{bottom:441.053333pt;}
.y8f{bottom:443.613333pt;}
.y39{bottom:445.853333pt;}
.y3a{bottom:451.133333pt;}
.yd8{bottom:454.653333pt;}
.y13{bottom:456.253333pt;}
.y6a{bottom:457.693333pt;}
.y8e{bottom:460.413333pt;}
.y38{bottom:462.653333pt;}
.y12{bottom:471.613333pt;}
.y69{bottom:474.653333pt;}
.y8d{bottom:477.373333pt;}
.y37{bottom:479.613333pt;}
.yae{bottom:483.453333pt;}
.y11{bottom:486.973333pt;}
.yd7{bottom:488.413333pt;}
.y68{bottom:491.453333pt;}
.y8c{bottom:494.173333pt;}
.y36{bottom:496.413333pt;}
.y10{bottom:502.333333pt;}
.yd6{bottom:505.213333pt;}
.y67{bottom:508.413333pt;}
.y8b{bottom:510.973333pt;}
.y35{bottom:513.213333pt;}
.yf{bottom:517.693333pt;}
.yd5{bottom:522.173333pt;}
.y66{bottom:525.213333pt;}
.y8a{bottom:527.933333pt;}
.y34{bottom:530.173333pt;}
.ye{bottom:533.053333pt;}
.yd4{bottom:538.973333pt;}
.y65{bottom:542.053333pt;}
.y89{bottom:544.773333pt;}
.y33{bottom:547.013333pt;}
.y103{bottom:548.293333pt;}
.yd{bottom:548.773333pt;}
.yd3{bottom:555.973333pt;}
.y64{bottom:559.013333pt;}
.y88{bottom:561.733333pt;}
.y102{bottom:563.653333pt;}
.y32{bottom:563.973333pt;}
.yc{bottom:567.173333pt;}
.yd2{bottom:572.773333pt;}
.y63{bottom:575.813333pt;}
.y87{bottom:578.533333pt;}
.y101{bottom:579.013333pt;}
.y31{bottom:580.773333pt;}
.yb{bottom:585.573333pt;}
.yd1{bottom:589.573333pt;}
.y62{bottom:592.613333pt;}
.y100{bottom:594.373333pt;}
.y86{bottom:595.333333pt;}
.y30{bottom:597.573333pt;}
.ya{bottom:603.973333pt;}
.yd0{bottom:606.533333pt;}
.yff{bottom:609.733333pt;}
.ya8{bottom:610.373333pt;}
.y61{bottom:610.533333pt;}
.y85{bottom:612.293333pt;}
.y2f{bottom:614.533333pt;}
.y9{bottom:622.373333pt;}
.ycf{bottom:623.333333pt;}
.yfe{bottom:625.093333pt;}
.y60{bottom:627.493333pt;}
.y84{bottom:629.093333pt;}
.y2e{bottom:631.333333pt;}
.yce{bottom:640.293333pt;}
.y8{bottom:640.773333pt;}
.y5f{bottom:644.293333pt;}
.y83{bottom:646.053333pt;}
.y2d{bottom:648.293333pt;}
.yfd{bottom:655.653333pt;}
.ycd{bottom:657.093333pt;}
.ya7{bottom:658.373333pt;}
.y7{bottom:659.173333pt;}
.y5e{bottom:662.053333pt;}
.y82{bottom:662.853333pt;}
.y2c{bottom:665.093333pt;}
.yfc{bottom:671.013333pt;}
.ycc{bottom:674.053333pt;}
.y6{bottom:677.573333pt;}
.y81{bottom:679.653333pt;}
.y5d{bottom:679.973333pt;}
.y2b{bottom:682.053333pt;}
.yfb{bottom:686.373333pt;}
.ycb{bottom:690.853333pt;}
.y5{bottom:695.973333pt;}
.y80{bottom:697.733333pt;}
.y5c{bottom:697.893333pt;}
.y2a{bottom:698.853333pt;}
.yfa{bottom:701.733333pt;}
.y4{bottom:714.400000pt;}
.y5b{bottom:714.720000pt;}
.y29{bottom:715.680000pt;}
.yf9{bottom:717.120000pt;}
.h15{height:27.680000pt;}
.hf{height:29.940625pt;}
.hc{height:33.295625pt;}
.h16{height:35.414062pt;}
.h14{height:36.585938pt;}
.h11{height:37.090625pt;}
.h6{height:39.191562pt;}
.h7{height:40.488438pt;}
.h3{height:41.112500pt;}
.h10{height:43.054688pt;}
.hd{height:43.441250pt;}
.h13{height:44.480000pt;}
.he{height:44.687500pt;}
.h8{height:44.878750pt;}
.h2{height:47.647188pt;}
.h1a{height:48.347500pt;}
.h9{height:52.750000pt;}
.ha{height:52.813750pt;}
.hb{height:53.590000pt;}
.h5{height:57.406250pt;}
.h4{height:58.250000pt;}
.h12{height:63.106875pt;}
.h19{height:82.880000pt;}
.h17{height:96.672000pt;}
.h18{height:137.946667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w4{width:131.392000pt;}
.w6{width:141.146667pt;}
.w5{width:150.586667pt;}
.w1{width:559.333333pt;}
.w3{width:559.359983pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x2{left:71.871992pt;}
.xf{left:77.311992pt;}
.x8{left:87.711992pt;}
.x14{left:90.751992pt;}
.x3{left:95.391992pt;}
.x4{left:101.471992pt;}
.xb{left:109.631992pt;}
.x10{left:119.871992pt;}
.x9{left:141.466658pt;}
.x7{left:202.466658pt;}
.xa{left:205.346658pt;}
.x5{left:236.546658pt;}
.x11{left:246.146658pt;}
.xe{left:263.906658pt;}
.x1{left:272.386658pt;}
.x6{left:279.746658pt;}
.x13{left:355.773333pt;}
.xc{left:420.773317pt;}
.xd{left:425.893325pt;}
}




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