
    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_7339b0729b178373244743d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.016113;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_999c777faae783e71bb7fcee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666000;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_e317a50f2114689ac06bf071.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_82bc7dd9c274353531f9c985.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_76592151158e0d84414881b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_586808d18dcc920ea90b59ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_447ea9106dde9e20e29a8d74.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.909668;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_4bf0099c714e0e2e0ec3fba3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.701660;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_b342f3340fcd852114950dd6.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bff2badee334ed430f841edf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.882324;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;}
.m1{transform:matrix(0.241956,0.000000,-0.062908,0.241956,0,0);-ms-transform:matrix(0.241956,0.000000,-0.062908,0.241956,0,0);-webkit-transform:matrix(0.241956,0.000000,-0.062908,0.241956,0,0);}
.m2{transform:matrix(0.248117,-0.030623,0.030623,0.248117,0,0);-ms-transform:matrix(0.248117,-0.030623,0.030623,0.248117,0,0);-webkit-transform:matrix(0.248117,-0.030623,0.030623,0.248117,0,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);}
.v1{vertical-align:-46.530000px;}
.v2{vertical-align:-23.688060px;}
.v5{vertical-align:-21.150000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:25.199816px;}
.v4{vertical-align:58.799940px;}
.ls10{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.001200px;}
.lsa{letter-spacing:0.016320px;}
.ls2{letter-spacing:0.017520px;}
.ls3{letter-spacing:0.059399px;}
.lsd{letter-spacing:0.087780px;}
.ls7{letter-spacing:0.089280px;}
.ls9{letter-spacing:0.129720px;}
.ls8{letter-spacing:0.139020px;}
.ls0{letter-spacing:0.188280px;}
.ls4{letter-spacing:16.316242px;}
.lsc{letter-spacing:28.423020px;}
.ls1{letter-spacing:30.720000px;}
.lsb{letter-spacing:39.000000px;}
.ls5{letter-spacing:46.674600px;}
.lse{letter-spacing:46.762800px;}
.lsf{letter-spacing:77.395020px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(84,130,53),0 0.015em rgb(84,130,53),0.015em 0 rgb(84,130,53),0 -0.015em  rgb(84,130,53);}
.sc1{text-shadow:-0.015em 0 rgb(31,79,121),0 0.015em rgb(31,79,121),0.015em 0 rgb(31,79,121),0 -0.015em  rgb(31,79,121);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(84,130,53);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(31,79,121);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-330.000000px;}
.ws1a{word-spacing:-168.000000px;}
.ws12{word-spacing:-151.440000px;}
.ws0{word-spacing:-122.479144px;}
.ws2{word-spacing:-122.459169px;}
.wsb{word-spacing:-121.323760px;}
.ws28{word-spacing:-121.299684px;}
.ws1c{word-spacing:-121.273236px;}
.ws3d{word-spacing:-121.106897px;}
.ws19{word-spacing:-121.029923px;}
.ws11{word-spacing:-89.082653px;}
.ws14{word-spacing:-89.081897px;}
.ws6{word-spacing:-89.062111px;}
.ws10{word-spacing:-89.058122px;}
.ws46{word-spacing:-89.049034px;}
.ws13{word-spacing:-88.876423px;}
.ws15{word-spacing:-88.866840px;}
.ws1d{word-spacing:-80.134810px;}
.ws20{word-spacing:-74.295326px;}
.ws21{word-spacing:-74.245229px;}
.ws2c{word-spacing:-71.725134px;}
.ws32{word-spacing:-59.832000px;}
.ws4a{word-spacing:-58.197900px;}
.ws30{word-spacing:-46.536000px;}
.ws43{word-spacing:-44.874000px;}
.wsd{word-spacing:-44.545644px;}
.wsf{word-spacing:-44.449909px;}
.wse{word-spacing:-44.449739px;}
.ws33{word-spacing:-33.240000px;}
.ws16{word-spacing:-31.578000px;}
.ws37{word-spacing:-27.423000px;}
.ws1f{word-spacing:-22.152529px;}
.ws22{word-spacing:-22.148220px;}
.ws23{word-spacing:-17.748246px;}
.ws24{word-spacing:-13.312161px;}
.ws25{word-spacing:-6.263470px;}
.ws4c{word-spacing:0.000000px;}
.ws3b{word-spacing:0.043625px;}
.ws1e{word-spacing:0.093846px;}
.ws18{word-spacing:0.095338px;}
.ws17{word-spacing:0.111336px;}
.ws34{word-spacing:0.116882px;}
.ws38{word-spacing:0.123675px;}
.ws41{word-spacing:0.133256px;}
.ws8{word-spacing:0.138217px;}
.ws9{word-spacing:0.138387px;}
.ws7{word-spacing:0.139408px;}
.ws1b{word-spacing:0.140240px;}
.ws35{word-spacing:0.146655px;}
.ws4{word-spacing:0.150124px;}
.ws40{word-spacing:0.157747px;}
.ws42{word-spacing:0.157918px;}
.wsa{word-spacing:0.164316px;}
.wsc{word-spacing:0.164485px;}
.ws31{word-spacing:0.166337px;}
.ws3a{word-spacing:0.168869px;}
.ws39{word-spacing:0.169039px;}
.ws5{word-spacing:0.176429px;}
.ws2f{word-spacing:0.215149px;}
.ws3e{word-spacing:0.218212px;}
.ws4b{word-spacing:0.219450px;}
.ws36{word-spacing:0.249468px;}
.ws49{word-spacing:0.278097px;}
.ws44{word-spacing:0.278268px;}
.ws47{word-spacing:0.279288px;}
.ws3{word-spacing:0.298885px;}
.ws3f{word-spacing:0.303779px;}
.ws48{word-spacing:0.382382px;}
.ws45{word-spacing:0.405792px;}
.ws3c{word-spacing:0.462031px;}
.ws27{word-spacing:5.934066px;}
.ws2e{word-spacing:7.788095px;}
.ws26{word-spacing:8.055798px;}
.ws29{word-spacing:13.053222px;}
.ws2a{word-spacing:35.744448px;}
.ws2b{word-spacing:49.712769px;}
.ws2d{word-spacing:49.738866px;}
._0{width:1.173658px;}
._3{width:47.809738px;}
._2{width:51.019598px;}
._1{width:86.911719px;}
.fce{color:rgb(0,0,0);}
.fcd{color:rgb(0,112,192);}
.fc0{color:rgb(31,79,121);}
.fc1{color:rgb(47,84,150);}
.fc3{color:rgb(46,117,181);}
.fc2{color:rgb(91,155,213);}
.fc5{color:rgb(209,207,207);}
.fc6{color:rgb(89,89,89);}
.fc4{color:rgb(84,130,53);}
.fc7{color:rgb(255,0,0);}
.fcf{color:transparent;}
.fca{color:rgb(128,96,0);}
.fc8{color:rgb(0,0,255);}
.fc9{color:rgb(112,48,160);}
.fcb{color:rgb(132,60,12);}
.fcc{color:rgb(56,87,36);}
.fsb{font-size:47.999536px;}
.fsf{font-size:54.000000px;}
.fsa{font-size:71.999303px;}
.fs9{font-size:86.792774px;}
.fs8{font-size:96.000000px;}
.fsd{font-size:99.000000px;}
.fse{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:114.000000px;}
.fs5{font-size:120.000000px;}
.fsc{font-size:150.000000px;}
.fs10{font-size:162.000000px;}
.fs4{font-size:168.000000px;}
.fs2{font-size:180.000000px;}
.fs1{font-size:216.000000px;}
.fs3{font-size:240.000000px;}
.fs0{font-size:330.000000px;}
.y3e{bottom:-865.692720px;}
.yb6{bottom:-163.972380px;}
.yb5{bottom:-108.432105px;}
.yb4{bottom:-52.891830px;}
.y93{bottom:-35.892840px;}
.y0{bottom:0.000000px;}
.y86{bottom:4.680345px;}
.y30{bottom:5.764170px;}
.y82{bottom:9.120975px;}
.yd5{bottom:9.192465px;}
.ya1{bottom:9.299085px;}
.yc6{bottom:9.299130px;}
.yab{bottom:9.299340px;}
.yc0{bottom:9.299385px;}
.y3b{bottom:9.299475px;}
.y3d{bottom:9.299520px;}
.y67{bottom:9.933720px;}
.y62{bottom:9.933795px;}
.y64{bottom:9.933840px;}
.y37{bottom:10.073700px;}
.y69{bottom:10.576305px;}
.y6e{bottom:10.576440px;}
.y70{bottom:10.805580px;}
.y20{bottom:11.158305px;}
.y1e{bottom:11.400990px;}
.y84{bottom:12.767175px;}
.y42{bottom:13.118175px;}
.y29{bottom:13.779975px;}
.y25{bottom:13.885725px;}
.y60{bottom:13.952205px;}
.ya9{bottom:14.170830px;}
.yc4{bottom:14.304300px;}
.yc2{bottom:14.304420px;}
.y89{bottom:16.179750px;}
.y56{bottom:16.566855px;}
.y95{bottom:17.525370px;}
.y9b{bottom:17.525385px;}
.y98{bottom:17.525430px;}
.yb3{bottom:17.648460px;}
.y6b{bottom:18.161205px;}
.y2b{bottom:19.028400px;}
.y92{bottom:19.647435px;}
.ybe{bottom:21.762585px;}
.y22{bottom:21.831975px;}
.y4c{bottom:21.961638px;}
.y46{bottom:24.697230px;}
.y73{bottom:25.473870px;}
.y27{bottom:27.161865px;}
.y10{bottom:29.180610px;}
.y4a{bottom:29.189475px;}
.y48{bottom:30.015195px;}
.yce{bottom:32.062635px;}
.yd0{bottom:33.857190px;}
.yd3{bottom:37.664610px;}
.y41{bottom:40.118130px;}
.y2f{bottom:43.452210px;}
.y39{bottom:45.659595px;}
.y45{bottom:53.994105px;}
.y81{bottom:58.710495px;}
.y7e{bottom:63.999885px;}
.y36{bottom:65.613975px;}
.y97{bottom:65.821290px;}
.y1d{bottom:66.941265px;}
.y40{bottom:67.118130px;}
.ya8{bottom:67.727520px;}
.y88{bottom:71.720070px;}
.y55{bottom:72.107130px;}
.yb2{bottom:73.188780px;}
.y9a{bottom:74.446275px;}
.y91{bottom:75.187710px;}
.ybd{bottom:77.302905px;}
.y5{bottom:80.070435px;}
.y72{bottom:81.014145px;}
.y2e{bottom:81.140250px;}
.yf{bottom:84.720885px;}
.y44{bottom:84.902295px;}
.yd2{bottom:93.545175px;}
.ycd{bottom:102.602925px;}
.y24{bottom:107.851080px;}
.y80{bottom:108.300060px;}
.y5f{bottom:117.637515px;}
.yb7{bottom:118.053570px;}
.y2d{bottom:118.828290px;}
.y35{bottom:121.154250px;}
.ya7{bottom:121.284255px;}
.y1c{bottom:122.481540px;}
.y54{bottom:127.647405px;}
.yb1{bottom:128.729055px;}
.y90{bottom:130.728030px;}
.ybc{bottom:132.843180px;}
.y71{bottom:136.554465px;}
.ye{bottom:140.261160px;}
.yac{bottom:144.052395px;}
.y7d{bottom:145.989405px;}
.y4{bottom:154.577880px;}
.ycc{bottom:158.143200px;}
.y5e{bottom:160.137900px;}
.ya6{bottom:174.840945px;}
.y34{bottom:176.694525px;}
.y1b{bottom:178.021815px;}
.y53{bottom:183.187725px;}
.yb0{bottom:184.269330px;}
.y8f{bottom:186.268305px;}
.ybb{bottom:188.383455px;}
.y7c{bottom:195.578970px;}
.yd{bottom:195.801480px;}
.ycb{bottom:213.683475px;}
.y5d{bottom:217.758285px;}
.ya5{bottom:228.397635px;}
.y3{bottom:229.085340px;}
.y1a{bottom:232.334595px;}
.y33{bottom:232.575090px;}
.y52{bottom:238.728000px;}
.yaf{bottom:239.809605px;}
.y8e{bottom:241.808580px;}
.yba{bottom:243.923730px;}
.y7b{bottom:245.168490px;}
.yc{bottom:251.341755px;}
.yca{bottom:269.223750px;}
.y5c{bottom:278.633640px;}
.ya4{bottom:281.954325px;}
.y51{bottom:294.268275px;}
.yae{bottom:295.349880px;}
.y8d{bottom:297.348855px;}
.yb9{bottom:299.464005px;}
.y19{bottom:302.144775px;}
.y32{bottom:305.383890px;}
.yb{bottom:306.882030px;}
.y7a{bottom:311.487840px;}
.yaa{bottom:323.289705px;}
.yc9{bottom:324.764025px;}
.ya3{bottom:335.511060px;}
.y5b{bottom:339.509025px;}
.y50{bottom:349.808550px;}
.yad{bottom:350.890200px;}
.y8c{bottom:352.889130px;}
.y18{bottom:357.685050px;}
.ya{bottom:362.422305px;}
.y79{bottom:367.028115px;}
.yc8{bottom:380.304345px;}
.yb8{bottom:383.694015px;}
.y2{bottom:384.601605px;}
.y5a{bottom:400.384380px;}
.y4f{bottom:405.348825px;}
.y8b{bottom:408.429450px;}
.y17{bottom:413.225370px;}
.y9{bottom:417.962580px;}
.y78{bottom:422.568390px;}
.y4e{bottom:460.889145px;}
.y59{bottom:461.259735px;}
.y16{bottom:467.538105px;}
.y8{bottom:473.502900px;}
.y77{bottom:478.108665px;}
.y15{bottom:537.348285px;}
.y76{bottom:548.648955px;}
.y7{bottom:563.282880px;}
.y58{bottom:573.700830px;}
.y14{bottom:591.661065px;}
.y75{bottom:604.189275px;}
.y8a{bottom:628.627620px;}
.y9e{bottom:639.752025px;}
.y13{bottom:661.471245px;}
.y9f{bottom:663.899985px;}
.y12{bottom:717.011565px;}
.ya2{bottom:723.173910px;}
.y9d{bottom:754.343820px;}
.y9c{bottom:820.639695px;}
.y99{bottom:886.935630px;}
.y96{bottom:891.248100px;}
.y94{bottom:1010.152410px;}
.ya0{bottom:1068.472620px;}
.y87{bottom:1224.438315px;}
.y31{bottom:1276.901565px;}
.y2c{bottom:1354.114800px;}
.ybf{bottom:1481.995515px;}
.y3a{bottom:1552.083435px;}
.yc1{bottom:1609.815480px;}
.yc3{bottom:1609.815600px;}
.y74{bottom:1647.974085px;}
.y3c{bottom:1768.765950px;}
.y7f{bottom:1782.115785px;}
.yc7{bottom:1807.593825px;}
.y83{bottom:2008.772025px;}
.yc5{bottom:2187.414015px;}
.y85{bottom:2238.843795px;}
.y26{bottom:2312.483880px;}
.y28{bottom:2325.865770px;}
.y6a{bottom:2526.708855px;}
.y11{bottom:2544.652545px;}
.y57{bottom:2561.262225px;}
.y63{bottom:2607.224175px;}
.y61{bottom:2731.526730px;}
.y65{bottom:2846.223450px;}
.y66{bottom:2846.223570px;}
.y68{bottom:2849.096505px;}
.y6c{bottom:2994.883110px;}
.y6d{bottom:2998.094670px;}
.y6f{bottom:3142.189830px;}
.y23{bottom:3220.843650px;}
.y2a{bottom:3239.649585px;}
.y21{bottom:3306.862755px;}
.y4d{bottom:3411.948285px;}
.yd1{bottom:3496.594725px;}
.y38{bottom:3507.742410px;}
.yd4{bottom:3526.411995px;}
.ycf{bottom:3629.928300px;}
.y6{bottom:3821.858880px;}
.y49{bottom:3944.604450px;}
.y47{bottom:4028.948385px;}
.y4b{bottom:4140.467819px;}
.y43{bottom:4223.826720px;}
.y3f{bottom:4237.281870px;}
.y1f{bottom:4373.983455px;}
.y1{bottom:4520.296335px;}
.h18{height:-836.377905px;}
.h36{height:24.146280px;}
.h42{height:38.613945px;}
.h45{height:38.614200px;}
.h16{height:38.614335px;}
.h37{height:39.366211px;}
.h34{height:43.488960px;}
.h28{height:44.876475px;}
.h26{height:44.876595px;}
.h29{height:45.519015px;}
.h2e{height:45.519150px;}
.h2f{height:45.748335px;}
.h1d{height:59.669910px;}
.h49{height:60.502875px;}
.h48{height:60.502995px;}
.h22{height:60.754160px;}
.h2b{height:64.359825px;}
.h1b{height:66.656250px;}
.h3b{height:66.670860px;}
.h40{height:66.670905px;}
.h3f{height:66.670920px;}
.h1f{height:67.092840px;}
.h4d{height:67.241010px;}
.h20{height:69.417267px;}
.h17{height:69.890625px;}
.h1e{height:71.109375px;}
.h35{height:74.358398px;}
.ha{height:82.092240px;}
.h12{height:82.995117px;}
.h11{height:83.106445px;}
.he{height:84.713910px;}
.h2a{height:87.363281px;}
.h27{height:87.480469px;}
.h1a{height:88.886719px;}
.hf{height:89.962380px;}
.hb{height:92.765955px;}
.h9{height:93.105469px;}
.h19{height:94.981320px;}
.hd{height:98.095800px;}
.h4b{height:98.378085px;}
.h21{height:107.844795px;}
.h32{height:109.350586px;}
.h3a{height:111.888000px;}
.h41{height:114.966780px;}
.h3d{height:114.966810px;}
.h38{height:117.918735px;}
.h44{height:118.098633px;}
.h1c{height:120.269910px;}
.h3c{height:122.308594px;}
.h7{height:122.472656px;}
.h3e{height:123.591795px;}
.h4{height:131.220703px;}
.h2c{height:137.426893px;}
.h2d{height:137.532362px;}
.h4c{height:142.012260px;}
.h33{height:150.277740px;}
.h10{height:152.364075px;}
.h25{height:157.253906px;}
.h15{height:167.589844px;}
.hc{height:178.785060px;}
.h30{height:182.753085px;}
.h6{height:186.210938px;}
.h14{height:228.374850px;}
.h3{height:256.040039px;}
.h13{height:351.582465px;}
.h43{height:380.302695px;}
.h46{height:397.088865px;}
.h4a{height:426.502965px;}
.h47{height:454.627995px;}
.h39{height:454.628070px;}
.h2{height:479.584665px;}
.h23{height:507.087720px;}
.h24{height:631.155345px;}
.h5{height:634.216860px;}
.h31{height:650.387895px;}
.h8{height:763.210185px;}
.h0{height:5055.450075px;}
.h1{height:5055.750000px;}
.w19{width:52.605900px;}
.w1c{width:52.606155px;}
.w2e{width:142.874730px;}
.w2d{width:142.874805px;}
.w1d{width:157.820610px;}
.w18{width:157.914840px;}
.w1a{width:168.267735px;}
.wb{width:173.230335px;}
.w1b{width:181.124625px;}
.w23{width:186.747855px;}
.w24{width:186.747900px;}
.w22{width:186.747945px;}
.w17{width:197.752590px;}
.w10{width:219.703800px;}
.w29{width:223.199985px;}
.w13{width:292.052370px;}
.w11{width:308.376270px;}
.w2f{width:310.499835px;}
.wf{width:318.374940px;}
.we{width:318.374985px;}
.w28{width:372.075015px;}
.w2a{width:382.126740px;}
.w27{width:393.299985px;}
.w20{width:442.249110px;}
.w32{width:445.756260px;}
.w2c{width:507.612840px;}
.w12{width:514.789695px;}
.w14{width:521.632782px;}
.w16{width:580.437960px;}
.w2b{width:646.756935px;}
.w3{width:666.969300px;}
.w7{width:672.534075px;}
.w26{width:704.548155px;}
.w1f{width:793.900815px;}
.w21{width:848.804910px;}
.w1e{width:868.486200px;}
.wc{width:911.145525px;}
.w6{width:916.023390px;}
.w4{width:1056.775965px;}
.w31{width:1097.439870px;}
.w25{width:1426.915575px;}
.w15{width:1444.909635px;}
.wa{width:1467.314310px;}
.w5{width:1473.034665px;}
.w9{width:1679.410380px;}
.w8{width:1699.999635px;}
.w30{width:1831.951875px;}
.wd{width:1891.546350px;}
.w2{width:3493.524510px;}
.w0{width:3575.849850px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x44{left:9.451140px;}
.xb{left:12.299970px;}
.x23{left:14.733632px;}
.x2b{left:17.014710px;}
.x27{left:20.285535px;}
.x2d{left:22.024470px;}
.x45{left:23.308830px;}
.x43{left:25.273020px;}
.x1a{left:27.026460px;}
.x29{left:28.681950px;}
.x58{left:31.782360px;}
.x1b{left:33.365340px;}
.x1{left:35.505000px;}
.x8{left:38.474970px;}
.x25{left:42.305595px;}
.x2{left:45.010710px;}
.x46{left:48.882075px;}
.x34{left:55.316790px;}
.x19{left:58.699110px;}
.xd{left:60.257625px;}
.x15{left:62.668695px;}
.x9{left:65.474970px;}
.x1c{left:71.063400px;}
.x4b{left:75.434775px;}
.x24{left:92.354160px;}
.x36{left:109.035480px;}
.xc{left:118.499925px;}
.x42{left:121.335450px;}
.x48{left:139.320900px;}
.x40{left:140.612730px;}
.x7{left:143.800815px;}
.x47{left:149.933340px;}
.x49{left:161.612520px;}
.x4a{left:162.679215px;}
.x4c{left:173.291655px;}
.x12{left:191.948655px;}
.x10{left:226.931265px;}
.x39{left:254.880465px;}
.x16{left:258.162645px;}
.x1f{left:297.482130px;}
.x3f{left:344.535435px;}
.xe{left:363.318300px;}
.x17{left:402.074310px;}
.x37{left:508.928745px;}
.x14{left:585.316170px;}
.x22{left:665.671035px;}
.x4f{left:703.038930px;}
.x1e{left:726.649980px;}
.x41{left:737.835420px;}
.x21{left:837.673080px;}
.x38{left:881.275065px;}
.x3c{left:965.598450px;}
.x1d{left:1052.689605px;}
.x5{left:1109.527125px;}
.x20{left:1112.562255px;}
.x3e{left:1126.724070px;}
.x4{left:1178.004180px;}
.x3{left:1189.517790px;}
.x3b{left:1244.917785px;}
.x3a{left:1532.167215px;}
.x18{left:1546.954965px;}
.x6{left:1625.606820px;}
.x11{left:1631.677305px;}
.x57{left:1663.417320px;}
.x2a{left:1675.556310px;}
.x32{left:1719.933255px;}
.x28{left:1731.538065px;}
.x13{left:1829.029755px;}
.x26{left:1873.940655px;}
.x33{left:1891.027875px;}
.x2f{left:1893.859590px;}
.x56{left:1956.083025px;}
.x3d{left:2000.393505px;}
.x31{left:2053.415400px;}
.x2e{left:2056.180965px;}
.x30{left:2059.791090px;}
.x2c{left:2114.038215px;}
.x54{left:2154.710550px;}
.x52{left:2303.086440px;}
.x59{left:2390.081415px;}
.xa{left:2438.593230px;}
.x4d{left:2470.029360px;}
.x35{left:2483.716560px;}
.xf{left:2518.824135px;}
.x50{left:2943.104640px;}
.x53{left:2955.405510px;}
.x5a{left:2987.655060px;}
.x55{left:3009.167940px;}
.x4e{left:3071.179125px;}
.x51{left:3097.155510px;}
@media print{
.v1{vertical-align:-41.360000pt;}
.v2{vertical-align:-21.056053pt;}
.v5{vertical-align:-18.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:22.399837pt;}
.v4{vertical-align:52.266613pt;}
.ls10{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.001067pt;}
.lsa{letter-spacing:0.014507pt;}
.ls2{letter-spacing:0.015573pt;}
.ls3{letter-spacing:0.052799pt;}
.lsd{letter-spacing:0.078027pt;}
.ls7{letter-spacing:0.079360pt;}
.ls9{letter-spacing:0.115307pt;}
.ls8{letter-spacing:0.123573pt;}
.ls0{letter-spacing:0.167360pt;}
.ls4{letter-spacing:14.503326pt;}
.lsc{letter-spacing:25.264907pt;}
.ls1{letter-spacing:27.306667pt;}
.lsb{letter-spacing:34.666667pt;}
.ls5{letter-spacing:41.488533pt;}
.lse{letter-spacing:41.566933pt;}
.lsf{letter-spacing:68.795573pt;}
.ws1{word-spacing:-293.333333pt;}
.ws1a{word-spacing:-149.333333pt;}
.ws12{word-spacing:-134.613333pt;}
.ws0{word-spacing:-108.870350pt;}
.ws2{word-spacing:-108.852594pt;}
.wsb{word-spacing:-107.843343pt;}
.ws28{word-spacing:-107.821942pt;}
.ws1c{word-spacing:-107.798432pt;}
.ws3d{word-spacing:-107.650575pt;}
.ws19{word-spacing:-107.582154pt;}
.ws11{word-spacing:-79.184580pt;}
.ws14{word-spacing:-79.183908pt;}
.ws6{word-spacing:-79.166321pt;}
.ws10{word-spacing:-79.162775pt;}
.ws46{word-spacing:-79.154697pt;}
.ws13{word-spacing:-79.001265pt;}
.ws15{word-spacing:-78.992747pt;}
.ws1d{word-spacing:-71.230942pt;}
.ws20{word-spacing:-66.040290pt;}
.ws21{word-spacing:-65.995759pt;}
.ws2c{word-spacing:-63.755674pt;}
.ws32{word-spacing:-53.184000pt;}
.ws4a{word-spacing:-51.731467pt;}
.ws30{word-spacing:-41.365333pt;}
.ws43{word-spacing:-39.888000pt;}
.wsd{word-spacing:-39.596128pt;}
.wsf{word-spacing:-39.511030pt;}
.wse{word-spacing:-39.510879pt;}
.ws33{word-spacing:-29.546667pt;}
.ws16{word-spacing:-28.069333pt;}
.ws37{word-spacing:-24.376000pt;}
.ws1f{word-spacing:-19.691137pt;}
.ws22{word-spacing:-19.687307pt;}
.ws23{word-spacing:-15.776218pt;}
.ws24{word-spacing:-11.833032pt;}
.ws25{word-spacing:-5.567529pt;}
.ws4c{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.038778pt;}
.ws1e{word-spacing:0.083418pt;}
.ws18{word-spacing:0.084745pt;}
.ws17{word-spacing:0.098965pt;}
.ws34{word-spacing:0.103895pt;}
.ws38{word-spacing:0.109933pt;}
.ws41{word-spacing:0.118450pt;}
.ws8{word-spacing:0.122860pt;}
.ws9{word-spacing:0.123010pt;}
.ws7{word-spacing:0.123918pt;}
.ws1b{word-spacing:0.124657pt;}
.ws35{word-spacing:0.130360pt;}
.ws4{word-spacing:0.133443pt;}
.ws40{word-spacing:0.140220pt;}
.ws42{word-spacing:0.140371pt;}
.wsa{word-spacing:0.146058pt;}
.wsc{word-spacing:0.146209pt;}
.ws31{word-spacing:0.147855pt;}
.ws3a{word-spacing:0.150106pt;}
.ws39{word-spacing:0.150257pt;}
.ws5{word-spacing:0.156826pt;}
.ws2f{word-spacing:0.191244pt;}
.ws3e{word-spacing:0.193966pt;}
.ws4b{word-spacing:0.195066pt;}
.ws36{word-spacing:0.221749pt;}
.ws49{word-spacing:0.247197pt;}
.ws44{word-spacing:0.247350pt;}
.ws47{word-spacing:0.248256pt;}
.ws3{word-spacing:0.265675pt;}
.ws3f{word-spacing:0.270026pt;}
.ws48{word-spacing:0.339895pt;}
.ws45{word-spacing:0.360704pt;}
.ws3c{word-spacing:0.410695pt;}
.ws27{word-spacing:5.274725pt;}
.ws2e{word-spacing:6.922751pt;}
.ws26{word-spacing:7.160710pt;}
.ws29{word-spacing:11.602864pt;}
.ws2a{word-spacing:31.772842pt;}
.ws2b{word-spacing:44.189128pt;}
.ws2d{word-spacing:44.212326pt;}
._0{width:1.043252pt;}
._3{width:42.497545pt;}
._2{width:45.350754pt;}
._1{width:77.254862pt;}
.fsb{font-size:42.666254pt;}
.fsf{font-size:48.000000pt;}
.fsa{font-size:63.999381pt;}
.fs9{font-size:77.149132pt;}
.fs8{font-size:85.333333pt;}
.fsd{font-size:88.000000pt;}
.fse{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:101.333333pt;}
.fs5{font-size:106.666667pt;}
.fsc{font-size:133.333333pt;}
.fs10{font-size:144.000000pt;}
.fs4{font-size:149.333333pt;}
.fs2{font-size:160.000000pt;}
.fs1{font-size:192.000000pt;}
.fs3{font-size:213.333333pt;}
.fs0{font-size:293.333333pt;}
.y3e{bottom:-769.504640pt;}
.yb6{bottom:-145.753227pt;}
.yb5{bottom:-96.384093pt;}
.yb4{bottom:-47.014960pt;}
.y93{bottom:-31.904747pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:4.160307pt;}
.y30{bottom:5.123707pt;}
.y82{bottom:8.107533pt;}
.yd5{bottom:8.171080pt;}
.ya1{bottom:8.265853pt;}
.yc6{bottom:8.265893pt;}
.yab{bottom:8.266080pt;}
.yc0{bottom:8.266120pt;}
.y3b{bottom:8.266200pt;}
.y3d{bottom:8.266240pt;}
.y67{bottom:8.829973pt;}
.y62{bottom:8.830040pt;}
.y64{bottom:8.830080pt;}
.y37{bottom:8.954400pt;}
.y69{bottom:9.401160pt;}
.y6e{bottom:9.401280pt;}
.y70{bottom:9.604960pt;}
.y20{bottom:9.918493pt;}
.y1e{bottom:10.134213pt;}
.y84{bottom:11.348600pt;}
.y42{bottom:11.660600pt;}
.y29{bottom:12.248867pt;}
.y25{bottom:12.342867pt;}
.y60{bottom:12.401960pt;}
.ya9{bottom:12.596293pt;}
.yc4{bottom:12.714933pt;}
.yc2{bottom:12.715040pt;}
.y89{bottom:14.382000pt;}
.y56{bottom:14.726093pt;}
.y95{bottom:15.578107pt;}
.y9b{bottom:15.578120pt;}
.y98{bottom:15.578160pt;}
.yb3{bottom:15.687520pt;}
.y6b{bottom:16.143293pt;}
.y2b{bottom:16.914133pt;}
.y92{bottom:17.464387pt;}
.ybe{bottom:19.344520pt;}
.y22{bottom:19.406200pt;}
.y4c{bottom:19.521456pt;}
.y46{bottom:21.953093pt;}
.y73{bottom:22.643440pt;}
.y27{bottom:24.143880pt;}
.y10{bottom:25.938320pt;}
.y4a{bottom:25.946200pt;}
.y48{bottom:26.680173pt;}
.yce{bottom:28.500120pt;}
.yd0{bottom:30.095280pt;}
.yd3{bottom:33.479653pt;}
.y41{bottom:35.660560pt;}
.y2f{bottom:38.624187pt;}
.y39{bottom:40.586307pt;}
.y45{bottom:47.994760pt;}
.y81{bottom:52.187107pt;}
.y7e{bottom:56.888787pt;}
.y36{bottom:58.323533pt;}
.y97{bottom:58.507813pt;}
.y1d{bottom:59.503347pt;}
.y40{bottom:59.660560pt;}
.ya8{bottom:60.202240pt;}
.y88{bottom:63.751173pt;}
.y55{bottom:64.095227pt;}
.yb2{bottom:65.056693pt;}
.y9a{bottom:66.174467pt;}
.y91{bottom:66.833520pt;}
.ybd{bottom:68.713693pt;}
.y5{bottom:71.173720pt;}
.y72{bottom:72.012573pt;}
.y2e{bottom:72.124667pt;}
.yf{bottom:75.307453pt;}
.y44{bottom:75.468707pt;}
.yd2{bottom:83.151267pt;}
.ycd{bottom:91.202600pt;}
.y24{bottom:95.867627pt;}
.y80{bottom:96.266720pt;}
.y5f{bottom:104.566680pt;}
.yb7{bottom:104.936507pt;}
.y2d{bottom:105.625147pt;}
.y35{bottom:107.692667pt;}
.ya7{bottom:107.808227pt;}
.y1c{bottom:108.872480pt;}
.y54{bottom:113.464360pt;}
.yb1{bottom:114.425827pt;}
.y90{bottom:116.202693pt;}
.ybc{bottom:118.082827pt;}
.y71{bottom:121.381747pt;}
.ye{bottom:124.676587pt;}
.yac{bottom:128.046573pt;}
.y7d{bottom:129.768360pt;}
.y4{bottom:137.402560pt;}
.ycc{bottom:140.571733pt;}
.y5e{bottom:142.344800pt;}
.ya6{bottom:155.414173pt;}
.y34{bottom:157.061800pt;}
.y1b{bottom:158.241613pt;}
.y53{bottom:162.833533pt;}
.yb0{bottom:163.794960pt;}
.y8f{bottom:165.571827pt;}
.ybb{bottom:167.451960pt;}
.y7c{bottom:173.847973pt;}
.yd{bottom:174.045760pt;}
.ycb{bottom:189.940867pt;}
.y5d{bottom:193.562920pt;}
.ya5{bottom:203.020120pt;}
.y3{bottom:203.631413pt;}
.y1a{bottom:206.519640pt;}
.y33{bottom:206.733413pt;}
.y52{bottom:212.202667pt;}
.yaf{bottom:213.164093pt;}
.y8e{bottom:214.940960pt;}
.yba{bottom:216.821093pt;}
.y7b{bottom:217.927547pt;}
.yc{bottom:223.414893pt;}
.yca{bottom:239.310000pt;}
.y5c{bottom:247.674347pt;}
.ya4{bottom:250.626067pt;}
.y51{bottom:261.571800pt;}
.yae{bottom:262.533227pt;}
.y8d{bottom:264.310093pt;}
.yb9{bottom:266.190227pt;}
.y19{bottom:268.573133pt;}
.y32{bottom:271.452347pt;}
.yb{bottom:272.784027pt;}
.y7a{bottom:276.878080pt;}
.yaa{bottom:287.368627pt;}
.yc9{bottom:288.679133pt;}
.ya3{bottom:298.232053pt;}
.y5b{bottom:301.785800pt;}
.y50{bottom:310.940933pt;}
.yad{bottom:311.902400pt;}
.y8c{bottom:313.679227pt;}
.y18{bottom:317.942267pt;}
.ya{bottom:322.153160pt;}
.y79{bottom:326.247213pt;}
.yc8{bottom:338.048307pt;}
.yb8{bottom:341.061347pt;}
.y2{bottom:341.868093pt;}
.y5a{bottom:355.897227pt;}
.y4f{bottom:360.310067pt;}
.y8b{bottom:363.048400pt;}
.y17{bottom:367.311440pt;}
.y9{bottom:371.522293pt;}
.y78{bottom:375.616347pt;}
.y4e{bottom:409.679240pt;}
.y59{bottom:410.008653pt;}
.y16{bottom:415.589427pt;}
.y8{bottom:420.891467pt;}
.y77{bottom:424.985480pt;}
.y15{bottom:477.642920pt;}
.y76{bottom:487.687960pt;}
.y7{bottom:500.695893pt;}
.y58{bottom:509.956293pt;}
.y14{bottom:525.920947pt;}
.y75{bottom:537.057133pt;}
.y8a{bottom:558.780107pt;}
.y9e{bottom:568.668467pt;}
.y13{bottom:587.974440pt;}
.y9f{bottom:590.133320pt;}
.y12{bottom:637.343613pt;}
.ya2{bottom:642.821253pt;}
.y9d{bottom:670.527840pt;}
.y9c{bottom:729.457507pt;}
.y99{bottom:788.387227pt;}
.y96{bottom:792.220533pt;}
.y94{bottom:897.913253pt;}
.ya0{bottom:949.753440pt;}
.y87{bottom:1088.389613pt;}
.y31{bottom:1135.023613pt;}
.y2c{bottom:1203.657600pt;}
.ybf{bottom:1317.329347pt;}
.y3a{bottom:1379.629720pt;}
.yc1{bottom:1430.947093pt;}
.yc3{bottom:1430.947200pt;}
.y74{bottom:1464.865853pt;}
.y3c{bottom:1572.236400pt;}
.y7f{bottom:1584.102920pt;}
.yc7{bottom:1606.750067pt;}
.y83{bottom:1785.575133pt;}
.yc5{bottom:1944.368013pt;}
.y85{bottom:1990.083373pt;}
.y26{bottom:2055.541227pt;}
.y28{bottom:2067.436240pt;}
.y6a{bottom:2245.963427pt;}
.y11{bottom:2261.913373pt;}
.y57{bottom:2276.677533pt;}
.y63{bottom:2317.532600pt;}
.y61{bottom:2428.023760pt;}
.y65{bottom:2529.976400pt;}
.y66{bottom:2529.976507pt;}
.y68{bottom:2532.530227pt;}
.y6c{bottom:2662.118320pt;}
.y6d{bottom:2664.973040pt;}
.y6f{bottom:2793.057627pt;}
.y23{bottom:2862.972133pt;}
.y2a{bottom:2879.688520pt;}
.y21{bottom:2939.433560pt;}
.y4d{bottom:3032.842920pt;}
.yd1{bottom:3108.084200pt;}
.y38{bottom:3117.993253pt;}
.yd4{bottom:3134.588440pt;}
.ycf{bottom:3226.602933pt;}
.y6{bottom:3397.207893pt;}
.y49{bottom:3506.315067pt;}
.y47{bottom:3581.287453pt;}
.y4b{bottom:3680.415839pt;}
.y43{bottom:3754.512640pt;}
.y3f{bottom:3766.472773pt;}
.y1f{bottom:3887.985293pt;}
.y1{bottom:4018.041187pt;}
.h18{height:-743.447027pt;}
.h36{height:21.463360pt;}
.h42{height:34.323507pt;}
.h45{height:34.323733pt;}
.h16{height:34.323853pt;}
.h37{height:34.992188pt;}
.h34{height:38.656853pt;}
.h28{height:39.890200pt;}
.h26{height:39.890307pt;}
.h29{height:40.461347pt;}
.h2e{height:40.461467pt;}
.h2f{height:40.665187pt;}
.h1d{height:53.039920pt;}
.h49{height:53.780333pt;}
.h48{height:53.780440pt;}
.h22{height:54.003698pt;}
.h2b{height:57.208733pt;}
.h1b{height:59.250000pt;}
.h3b{height:59.262987pt;}
.h40{height:59.263027pt;}
.h3f{height:59.263040pt;}
.h1f{height:59.638080pt;}
.h4d{height:59.769787pt;}
.h20{height:61.704238pt;}
.h17{height:62.125000pt;}
.h1e{height:63.208333pt;}
.h35{height:66.096354pt;}
.ha{height:72.970880pt;}
.h12{height:73.773438pt;}
.h11{height:73.872396pt;}
.he{height:75.301253pt;}
.h2a{height:77.656250pt;}
.h27{height:77.760417pt;}
.h1a{height:79.010417pt;}
.hf{height:79.966560pt;}
.hb{height:82.458627pt;}
.h9{height:82.760417pt;}
.h19{height:84.427840pt;}
.hd{height:87.196267pt;}
.h4b{height:87.447187pt;}
.h21{height:95.862040pt;}
.h32{height:97.200521pt;}
.h3a{height:99.456000pt;}
.h41{height:102.192693pt;}
.h3d{height:102.192720pt;}
.h38{height:104.816653pt;}
.h44{height:104.976562pt;}
.h1c{height:106.906587pt;}
.h3c{height:108.718750pt;}
.h7{height:108.864583pt;}
.h3e{height:109.859373pt;}
.h4{height:116.640625pt;}
.h2c{height:122.157238pt;}
.h2d{height:122.250988pt;}
.h4c{height:126.233120pt;}
.h33{height:133.580213pt;}
.h10{height:135.434733pt;}
.h25{height:139.781250pt;}
.h15{height:148.968750pt;}
.hc{height:158.920053pt;}
.h30{height:162.447187pt;}
.h6{height:165.520833pt;}
.h14{height:202.999867pt;}
.h3{height:227.591146pt;}
.h13{height:312.517747pt;}
.h43{height:338.046840pt;}
.h46{height:352.967880pt;}
.h4a{height:379.113747pt;}
.h47{height:404.113773pt;}
.h39{height:404.113840pt;}
.h2{height:426.297480pt;}
.h23{height:450.744640pt;}
.h24{height:561.026973pt;}
.h5{height:563.748320pt;}
.h31{height:578.122573pt;}
.h8{height:678.409053pt;}
.h0{height:4493.733400pt;}
.h1{height:4494.000000pt;}
.w19{width:46.760800pt;}
.w1c{width:46.761027pt;}
.w2e{width:126.999760pt;}
.w2d{width:126.999827pt;}
.w1d{width:140.284987pt;}
.w18{width:140.368747pt;}
.w1a{width:149.571320pt;}
.wb{width:153.982520pt;}
.w1b{width:160.999667pt;}
.w23{width:165.998093pt;}
.w24{width:165.998133pt;}
.w22{width:165.998173pt;}
.w17{width:175.780080pt;}
.w10{width:195.292267pt;}
.w29{width:198.399987pt;}
.w13{width:259.602107pt;}
.w11{width:274.112240pt;}
.w2f{width:275.999853pt;}
.wf{width:282.999947pt;}
.we{width:282.999987pt;}
.w28{width:330.733347pt;}
.w2a{width:339.668213pt;}
.w27{width:349.599987pt;}
.w20{width:393.110320pt;}
.w32{width:396.227787pt;}
.w2c{width:451.211413pt;}
.w12{width:457.590840pt;}
.w14{width:463.673584pt;}
.w16{width:515.944853pt;}
.w2b{width:574.895053pt;}
.w3{width:592.861600pt;}
.w7{width:597.808067pt;}
.w26{width:626.265027pt;}
.w1f{width:705.689613pt;}
.w21{width:754.493253pt;}
.w1e{width:771.987733pt;}
.wc{width:809.907133pt;}
.w6{width:814.243013pt;}
.w4{width:939.356413pt;}
.w31{width:975.502107pt;}
.w25{width:1268.369400pt;}
.w15{width:1284.364120pt;}
.wa{width:1304.279387pt;}
.w5{width:1309.364147pt;}
.w9{width:1492.809227pt;}
.w8{width:1511.110787pt;}
.w30{width:1628.401667pt;}
.wd{width:1681.374533pt;}
.w2{width:3105.355120pt;}
.w0{width:3178.533200pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x44{left:8.401013pt;}
.xb{left:10.933307pt;}
.x23{left:13.096562pt;}
.x2b{left:15.124187pt;}
.x27{left:18.031587pt;}
.x2d{left:19.577307pt;}
.x45{left:20.718960pt;}
.x43{left:22.464907pt;}
.x1a{left:24.023520pt;}
.x29{left:25.495067pt;}
.x58{left:28.250987pt;}
.x1b{left:29.658080pt;}
.x1{left:31.560000pt;}
.x8{left:34.199973pt;}
.x25{left:37.604973pt;}
.x2{left:40.009520pt;}
.x46{left:43.450733pt;}
.x34{left:49.170480pt;}
.x19{left:52.176987pt;}
.xd{left:53.562333pt;}
.x15{left:55.705507pt;}
.x9{left:58.199973pt;}
.x1c{left:63.167467pt;}
.x4b{left:67.053133pt;}
.x24{left:82.092587pt;}
.x36{left:96.920427pt;}
.xc{left:105.333267pt;}
.x42{left:107.853733pt;}
.x48{left:123.840800pt;}
.x40{left:124.989093pt;}
.x7{left:127.822947pt;}
.x47{left:133.274080pt;}
.x49{left:143.655573pt;}
.x4a{left:144.603747pt;}
.x4c{left:154.037027pt;}
.x12{left:170.621027pt;}
.x10{left:201.716680pt;}
.x39{left:226.560413pt;}
.x16{left:229.477907pt;}
.x1f{left:264.428560pt;}
.x3f{left:306.253720pt;}
.xe{left:322.949600pt;}
.x17{left:357.399387pt;}
.x37{left:452.381107pt;}
.x14{left:520.281040pt;}
.x22{left:591.707586pt;}
.x4f{left:624.923493pt;}
.x1e{left:645.911093pt;}
.x41{left:655.853707pt;}
.x21{left:744.598293pt;}
.x38{left:783.355613pt;}
.x3c{left:858.309733pt;}
.x1d{left:935.724093pt;}
.x5{left:986.246333pt;}
.x20{left:988.944227pt;}
.x3e{left:1001.532507pt;}
.x4{left:1047.114827pt;}
.x3{left:1057.349147pt;}
.x3b{left:1106.593587pt;}
.x3a{left:1361.926413pt;}
.x18{left:1375.071080pt;}
.x6{left:1444.983840pt;}
.x11{left:1450.379827pt;}
.x57{left:1478.593173pt;}
.x2a{left:1489.383387pt;}
.x32{left:1528.829560pt;}
.x28{left:1539.144947pt;}
.x13{left:1625.804227pt;}
.x26{left:1665.725027pt;}
.x33{left:1680.913667pt;}
.x2f{left:1683.430747pt;}
.x56{left:1738.740467pt;}
.x3d{left:1778.127560pt;}
.x31{left:1825.258133pt;}
.x2e{left:1827.716413pt;}
.x30{left:1830.925413pt;}
.x2c{left:1879.145080pt;}
.x54{left:1915.298267pt;}
.x52{left:2047.187947pt;}
.x59{left:2124.516813pt;}
.xa{left:2167.638427pt;}
.x4d{left:2195.581653pt;}
.x35{left:2207.748053pt;}
.xf{left:2238.954787pt;}
.x50{left:2616.093013pt;}
.x53{left:2627.027120pt;}
.x5a{left:2655.693387pt;}
.x55{left:2674.815947pt;}
.x4e{left:2729.937000pt;}
.x51{left:2753.027120pt;}
}




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