
    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_8870cb8d561f1610e6f601f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_004bdc6d7dc191b93c69b76d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_5656530c5290f940ac6e0e0b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_5562e7128db9e27bfb0a2c09.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_4a2ffc17262655511c4a92d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_4e982d60f814e13a44ecbc13.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.389000;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_7a5f1f32741f5a215f246ecd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_dffd6f356f0e9b9a5c82b40c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:29.323661px;}
.ls1{letter-spacing:32.727300px;}
.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;}
}
.ws53{word-spacing:-18.183288px;}
.ws79{word-spacing:-16.730196px;}
.ws4f{word-spacing:-3.521457px;}
.ws1f{word-spacing:-3.390548px;}
.ws3{word-spacing:-3.215927px;}
.ws2a{word-spacing:-2.866911px;}
.ws18{word-spacing:-1.950547px;}
.ws39{word-spacing:-1.819638px;}
.ws88{word-spacing:-1.793456px;}
.ws52{word-spacing:-1.688729px;}
.wsa4{word-spacing:-1.623274px;}
.ws89{word-spacing:-1.557819px;}
.ws70{word-spacing:-1.400728px;}
.ws36{word-spacing:-1.361456px;}
.ws1b{word-spacing:-1.165092px;}
.ws54{word-spacing:-1.099637px;}
.ws47{word-spacing:-0.903273px;}
.ws51{word-spacing:-0.772364px;}
.ws86{word-spacing:-0.576000px;}
.wsbc{word-spacing:-0.314182px;}
.ws21{word-spacing:0.000000px;}
.ws43{word-spacing:0.013091px;}
.ws20{word-spacing:0.078546px;}
.ws9d{word-spacing:0.144000px;}
.wsaf{word-spacing:0.274909px;}
.ws96{word-spacing:0.340364px;}
.ws2b{word-spacing:0.405819px;}
.wsa9{word-spacing:0.667637px;}
.ws31{word-spacing:0.733092px;}
.wsa8{word-spacing:0.864001px;}
.ws75{word-spacing:0.890183px;}
.ws9{word-spacing:0.968365px;}
.ws3b{word-spacing:0.994910px;}
.wsb7{word-spacing:1.060365px;}
.ws22{word-spacing:1.125819px;}
.ws45{word-spacing:1.256728px;}
.ws3a{word-spacing:1.322183px;}
.ws19{word-spacing:1.387638px;}
.ws6b{word-spacing:1.518547px;}
.ws6a{word-spacing:1.741092px;}
.ws91{word-spacing:1.780365px;}
.ws1a{word-spacing:1.845820px;}
.ws2d{word-spacing:1.911274px;}
.ws6c{word-spacing:1.976729px;}
.ws24{word-spacing:2.042184px;}
.ws9c{word-spacing:2.068365px;}
.ws1c{word-spacing:2.107638px;}
.ws40{word-spacing:2.173093px;}
.ws4b{word-spacing:2.369457px;}
.ws6e{word-spacing:2.565820px;}
.ws4{word-spacing:2.701857px;}
.ws2e{word-spacing:2.762184px;}
.ws27{word-spacing:2.827639px;}
.wsb3{word-spacing:2.893093px;}
.wsb6{word-spacing:2.958548px;}
.ws50{word-spacing:3.154912px;}
.ws68{word-spacing:3.285821px;}
.ws14{word-spacing:3.299613px;}
.wsad{word-spacing:3.482185px;}
.ws35{word-spacing:3.547639px;}
.wsb0{word-spacing:3.560730px;}
.ws1d{word-spacing:3.613094px;}
.ws66{word-spacing:3.678549px;}
.ws44{word-spacing:3.744003px;}
.ws5{word-spacing:3.777818px;}
.ws69{word-spacing:3.874912px;}
.ws5a{word-spacing:3.940367px;}
.ws28{word-spacing:4.162913px;}
.wsb8{word-spacing:4.280731px;}
.ws38{word-spacing:4.398549px;}
.ws6{word-spacing:4.435350px;}
.ws3c{word-spacing:4.529458px;}
.wsba{word-spacing:4.542549px;}
.ws13{word-spacing:4.973330px;}
.ws58{word-spacing:4.987641px;}
.ws23{word-spacing:5.053095px;}
.ws55{word-spacing:5.118550px;}
.ws34{word-spacing:5.184004px;}
.ws29{word-spacing:5.249459px;}
.wsb4{word-spacing:5.393459px;}
.ws83{word-spacing:5.472005px;}
.wsa2{word-spacing:5.576732px;}
.ws5c{word-spacing:5.642187px;}
.ws8a{word-spacing:5.707641px;}
.wsb2{word-spacing:5.720732px;}
.wsb{word-spacing:5.869964px;}
.ws3f{word-spacing:5.904005px;}
.ws57{word-spacing:5.969460px;}
.wsf{word-spacing:5.989515px;}
.ws8e{word-spacing:6.061096px;}
.wsbd{word-spacing:6.100369px;}
.wsc{word-spacing:6.288393px;}
.ws7{word-spacing:6.348169px;}
.ws2c{word-spacing:6.362187px;}
.ws6f{word-spacing:6.493096px;}
.ws4c{word-spacing:6.558551px;}
.ws11{word-spacing:6.587271px;}
.wsa6{word-spacing:6.624006px;}
.wsbb{word-spacing:6.637096px;}
.ws93{word-spacing:6.689460px;}
.wsac{word-spacing:6.702551px;}
.ws7f{word-spacing:6.846551px;}
.ws1e{word-spacing:6.885824px;}
.wsd{word-spacing:6.886149px;}
.ws59{word-spacing:6.951279px;}
.ws49{word-spacing:7.016733px;}
.ws4e{word-spacing:7.082188px;}
.ws12{word-spacing:7.125252px;}
.wsb1{word-spacing:7.213097px;}
.ws76{word-spacing:7.409461px;}
.ws26{word-spacing:7.474915px;}
.ws97{word-spacing:7.501097px;}
.ws37{word-spacing:7.540370px;}
.wsb9{word-spacing:7.605825px;}
.ws32{word-spacing:7.867643px;}
.ws56{word-spacing:7.998552px;}
.ws25{word-spacing:8.129461px;}
.wsa5{word-spacing:8.260371px;}
.ws9f{word-spacing:8.325825px;}
.wse{word-spacing:8.380539px;}
.ws61{word-spacing:8.391280px;}
.ws42{word-spacing:8.456734px;}
.ws4a{word-spacing:8.522189px;}
.ws7a{word-spacing:8.587644px;}
.ws67{word-spacing:8.613825px;}
.ws3e{word-spacing:8.718553px;}
.wsa1{word-spacing:8.784007px;}
.wsbe{word-spacing:8.993462px;}
.wsa{word-spacing:9.038071px;}
.ws6d{word-spacing:9.111280px;}
.ws10{word-spacing:9.217398px;}
.ws99{word-spacing:9.438553px;}
.ws73{word-spacing:9.464735px;}
.ws7d{word-spacing:9.569463px;}
.ws85{word-spacing:9.634917px;}
.ws41{word-spacing:9.700372px;}
.wsb5{word-spacing:9.778917px;}
.ws71{word-spacing:9.792008px;}
.ws92{word-spacing:9.857463px;}
.ws8{word-spacing:9.874929px;}
.ws7b{word-spacing:10.040736px;}
.wsa0{word-spacing:10.119281px;}
.ws95{word-spacing:10.158554px;}
.ws77{word-spacing:10.171645px;}
.ws3d{word-spacing:10.224009px;}
.ws63{word-spacing:10.289463px;}
.ws5d{word-spacing:10.485827px;}
.wsaa{word-spacing:10.551282px;}
.ws62{word-spacing:10.616736px;}
.ws17{word-spacing:10.682191px;}
.ws30{word-spacing:10.747645px;}
.ws78{word-spacing:10.813100px;}
.ws4d{word-spacing:11.074918px;}
.wsae{word-spacing:11.088009px;}
.ws84{word-spacing:11.101100px;}
.ws8d{word-spacing:11.140373px;}
.ws2f{word-spacing:11.205828px;}
.ws98{word-spacing:11.794919px;}
.ws60{word-spacing:11.925828px;}
.ws5f{word-spacing:11.991283px;}
.ws8c{word-spacing:12.122192px;}
.ws74{word-spacing:12.187647px;}
.ws90{word-spacing:12.384010px;}
.ws72{word-spacing:12.514920px;}
.ws64{word-spacing:12.711283px;}
.ws48{word-spacing:12.776738px;}
.wsa7{word-spacing:12.973102px;}
.wsab{word-spacing:13.051647px;}
.wsa3{word-spacing:13.300375px;}
.ws46{word-spacing:13.562193px;}
.ws82{word-spacing:13.627648px;}
.ws8b{word-spacing:13.981103px;}
.ws5e{word-spacing:14.347648px;}
.ws8f{word-spacing:14.936740px;}
.ws80{word-spacing:15.617468px;}
.ws81{word-spacing:15.682922px;}
.ws94{word-spacing:16.704014px;}
.ws87{word-spacing:17.541833px;}
.ws9e{word-spacing:18.261833px;}
.ws7e{word-spacing:21.796382px;}
.ws1{word-spacing:23.312640px;}
.ws2{word-spacing:23.384371px;}
.ws33{word-spacing:23.642202px;}
.ws9a{word-spacing:24.681329px;}
.ws16{word-spacing:26.827469px;}
.ws9b{word-spacing:27.556387px;}
.ws65{word-spacing:30.894571px;}
.ws0{word-spacing:31.091012px;}
.ws5b{word-spacing:32.192873px;}
.ws7c{word-spacing:54.366591px;}
.ws15{word-spacing:96.750773px;}
._3{margin-left:-10.845702px;}
._26{margin-left:-8.179861px;}
._a{margin-left:-7.120926px;}
._5{margin-left:-5.810227px;}
._4{margin-left:-3.873485px;}
._0{margin-left:-2.685602px;}
._6{margin-left:-1.187882px;}
._7{width:1.128107px;}
._1{width:2.582310px;}
._16{width:4.160423px;}
._1f{width:16.234705px;}
._13{width:17.476378px;}
._17{width:19.334063px;}
._27{width:20.344719px;}
._14{width:21.394260px;}
._c{width:23.618992px;}
._e{width:25.253591px;}
._f{width:26.846844px;}
._8{width:27.855430px;}
._15{width:29.395007px;}
._9{width:30.612772px;}
._1b{width:32.057375px;}
._19{width:33.352478px;}
._d{width:35.105605px;}
._11{width:38.017282px;}
._21{width:40.239200px;}
._2{width:42.040007px;}
._b{width:43.636188px;}
._10{width:44.868682px;}
._1d{width:47.258221px;}
._24{width:48.989723px;}
._1c{width:50.632592px;}
._23{width:54.000045px;}
._25{width:55.864933px;}
._20{width:57.340193px;}
._1e{width:58.778231px;}
._1a{width:75.272790px;}
._12{width:80.697600px;}
._22{width:96.836850px;}
._18{width:676.036472px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y29{bottom:60.777000px;}
.y53{bottom:105.609000px;}
.y11b{bottom:106.930500px;}
.yfd{bottom:111.655500px;}
.y103{bottom:122.251500px;}
.y52{bottom:125.932500px;}
.y28{bottom:126.549000px;}
.y11a{bottom:127.254000px;}
.yc1{bottom:130.540500px;}
.y80{bottom:143.935500px;}
.yfc{bottom:145.428000px;}
.y51{bottom:146.256000px;}
.y27{bottom:146.872500px;}
.y119{bottom:147.577500px;}
.yc0{bottom:150.864000px;}
.y7f{bottom:164.259000px;}
.y50{bottom:166.581000px;}
.ybf{bottom:171.187500px;}
.y26{bottom:177.765000px;}
.ye4{bottom:178.980000px;}
.yfb{bottom:179.202000px;}
.y118{bottom:181.351500px;}
.y7e{bottom:184.582500px;}
.y4f{bottom:186.904500px;}
.ye3{bottom:199.303500px;}
.y117{bottom:201.675000px;}
.y7d{bottom:204.906000px;}
.ybe{bottom:204.961500px;}
.y4e{bottom:207.228000px;}
.yfa{bottom:212.974500px;}
.ye2{bottom:219.627000px;}
.y25{bottom:221.584500px;}
.y116{bottom:221.998500px;}
.y7c{bottom:225.229500px;}
.ybd{bottom:225.285000px;}
.y4d{bottom:227.551500px;}
.ye1{bottom:239.950500px;}
.y24{bottom:241.908000px;}
.y7b{bottom:245.554500px;}
.ybc{bottom:245.608500px;}
.yf9{bottom:246.748500px;}
.y4c{bottom:247.875000px;}
.y115{bottom:255.772500px;}
.y23{bottom:262.231500px;}
.y7a{bottom:265.878000px;}
.ybb{bottom:265.932000px;}
.y4b{bottom:268.200000px;}
.ye0{bottom:272.673000px;}
.y114{bottom:276.096000px;}
.yf8{bottom:277.641000px;}
.y22{bottom:282.555000px;}
.y79{bottom:286.201500px;}
.y4a{bottom:288.523500px;}
.ydf{bottom:292.998000px;}
.y113{bottom:296.419500px;}
.y21{bottom:302.880000px;}
.yba{bottom:304.188000px;}
.y78{bottom:306.525000px;}
.y49{bottom:308.847000px;}
.yde{bottom:313.321500px;}
.yf7{bottom:321.459000px;}
.y20{bottom:323.203500px;}
.yb9{bottom:324.513000px;}
.y77{bottom:326.848500px;}
.y48{bottom:329.170500px;}
.y112{bottom:332.947500px;}
.ydd{bottom:333.645000px;}
.y8b{bottom:339.739500px;}
.y1f{bottom:343.527000px;}
.y76{bottom:347.173500px;}
.yaa{bottom:348.774000px;}
.y47{bottom:349.494000px;}
.yb8{bottom:355.404000px;}
.yf6{bottom:357.988500px;}
.y1e{bottom:363.850500px;}
.ydc{bottom:368.749500px;}
.ya9{bottom:369.099000px;}
.y46{bottom:369.819000px;}
.y75{bottom:378.064500px;}
.y1d{bottom:384.174000px;}
.y8a{bottom:384.202500px;}
.y111{bottom:384.505500px;}
.ydb{bottom:389.073000px;}
.y45{bottom:390.142500px;}
.y102{bottom:393.697500px;}
.yb7{bottom:398.626500px;}
.ya8{bottom:399.990000px;}
.y1c{bottom:404.499000px;}
.yda{bottom:409.396500px;}
.yf5{bottom:409.546500px;}
.y110{bottom:418.279500px;}
.yb6{bottom:418.950000px;}
.y44{bottom:421.033500px;}
.y74{bottom:421.287000px;}
.yd9{bottom:429.721500px;}
.y1b{bottom:435.390000px;}
.y73{bottom:441.610500px;}
.ya7{bottom:443.212500px;}
.yf4{bottom:443.319000px;}
.y43{bottom:451.926000px;}
.y10f{bottom:452.052000px;}
.yb5{bottom:452.722500px;}
.yd8{bottom:460.612500px;}
.y72{bottom:461.934000px;}
.ya6{bottom:463.536000px;}
.y1a{bottom:472.516500px;}
.yb4{bottom:473.047500px;}
.yf3{bottom:474.211500px;}
.y71{bottom:482.257500px;}
.ya5{bottom:483.859500px;}
.y10e{bottom:485.826000px;}
.y42{bottom:494.643000px;}
.y70{bottom:502.581000px;}
.yd7{bottom:503.338500px;}
.ya4{bottom:504.183000px;}
.yb3{bottom:506.820000px;}
.yf2{bottom:517.432500px;}
.y10d{bottom:519.598500px;}
.y6f{bottom:522.904500px;}
.y19{bottom:524.074500px;}
.ya3{bottom:524.506500px;}
.y41{bottom:526.080000px;}
.yb2{bottom:527.143500px;}
.yd6{bottom:536.061000px;}
.yf1{bottom:537.756000px;}
.y18{bottom:542.007000px;}
.y6e{bottom:543.229500px;}
.ya2{bottom:544.831500px;}
.y10c{bottom:556.128000px;}
.yd5{bottom:556.386000px;}
.y40{bottom:557.515500px;}
.y17{bottom:559.939500px;}
.yb1{bottom:560.917500px;}
.y6d{bottom:563.553000px;}
.ya1{bottom:565.155000px;}
.yf0{bottom:571.530000px;}
.y16{bottom:577.873500px;}
.yb0{bottom:581.241000px;}
.y6c{bottom:583.876500px;}
.ya0{bottom:585.478500px;}
.y3f{bottom:588.951000px;}
.yd4{bottom:589.108500px;}
.y15{bottom:595.806000px;}
.yef{bottom:602.422500px;}
.y6b{bottom:604.200000px;}
.y9f{bottom:605.802000px;}
.y10b{bottom:607.686000px;}
.y3e{bottom:609.274500px;}
.yd3{bottom:609.432000px;}
.y14{bottom:613.738500px;}
.yaf{bottom:615.015000px;}
.y6a{bottom:624.523500px;}
.y9e{bottom:626.125500px;}
.y10a{bottom:628.009500px;}
.y13{bottom:631.671000px;}
.yae{bottom:635.338500px;}
.y3d{bottom:637.204500px;}
.yd2{bottom:642.154500px;}
.y69{bottom:644.848500px;}
.yee{bottom:645.643500px;}
.y9d{bottom:646.450500px;}
.y109{bottom:648.333000px;}
.y12{bottom:649.603500px;}
.y3c{bottom:657.529500px;}
.yed{bottom:665.967000px;}
.y11{bottom:667.536000px;}
.y108{bottom:668.656500px;}
.yad{bottom:669.111000px;}
.y68{bottom:675.739500px;}
.yd1{bottom:677.259000px;}
.y9c{bottom:677.341500px;}
.y3b{bottom:677.853000px;}
.y10{bottom:685.470000px;}
.y107{bottom:688.981500px;}
.y3a{bottom:698.176500px;}
.yec{bottom:699.741000px;}
.yac{bottom:700.003500px;}
.y12b{bottom:702.930000px;}
.yf{bottom:703.402500px;}
.yd0{bottom:708.151500px;}
.y106{bottom:709.305000px;}
.y39{bottom:718.500000px;}
.y67{bottom:718.962000px;}
.y9b{bottom:721.161000px;}
.ye{bottom:721.335000px;}
.y12a{bottom:723.253500px;}
.y89{bottom:725.503500px;}
.yeb{bottom:730.632000px;}
.y38{bottom:738.823500px;}
.yd{bottom:739.267500px;}
.y66{bottom:739.285500px;}
.y9a{bottom:741.484500px;}
.y129{bottom:743.577000px;}
.y105{bottom:745.833000px;}
.yab{bottom:749.322000px;}
.ycf{bottom:751.474500px;}
.yc{bottom:757.200000px;}
.y37{bottom:759.148500px;}
.y65{bottom:759.609000px;}
.y99{bottom:761.808000px;}
.yea{bottom:773.853000px;}
.yb{bottom:775.132500px;}
.y101{bottom:775.780500px;}
.y88{bottom:776.832000px;}
.y128{bottom:777.351000px;}
.y36{bottom:779.472000px;}
.y64{bottom:779.932500px;}
.y98{bottom:782.133000px;}
.yce{bottom:784.197000px;}
.ya{bottom:793.066500px;}
.ye9{bottom:794.178000px;}
.y87{bottom:797.155500px;}
.y127{bottom:797.674500px;}
.y63{bottom:800.256000px;}
.y97{bottom:802.456500px;}
.y104{bottom:803.488500px;}
.y35{bottom:810.363000px;}
.y9{bottom:810.999000px;}
.ycd{bottom:816.921000px;}
.y126{bottom:817.998000px;}
.y62{bottom:820.581000px;}
.y96{bottom:822.780000px;}
.ye8{bottom:827.950500px;}
.y8{bottom:828.931500px;}
.y86{bottom:830.440500px;}
.y125{bottom:838.321500px;}
.y61{bottom:840.904500px;}
.y7{bottom:846.864000px;}
.ycc{bottom:849.643500px;}
.y34{bottom:853.081500px;}
.y95{bottom:856.552500px;}
.ye7{bottom:858.843000px;}
.y60{bottom:861.228000px;}
.y85{bottom:863.725500px;}
.y124{bottom:872.095500px;}
.y6{bottom:874.137000px;}
.y94{bottom:876.877500px;}
.y5f{bottom:881.551500px;}
.ycb{bottom:882.366000px;}
.y84{bottom:884.049000px;}
.y33{bottom:884.517000px;}
.ye6{bottom:889.735500px;}
.y123{bottom:892.419000px;}
.y93{bottom:897.201000px;}
.y5e{bottom:901.875000px;}
.y122{bottom:912.742500px;}
.yca{bottom:915.088500px;}
.y32{bottom:915.952500px;}
.y83{bottom:917.334000px;}
.y92{bottom:917.524500px;}
.y5d{bottom:922.198500px;}
.y5{bottom:934.548000px;}
.y82{bottom:937.657500px;}
.y91{bottom:937.848000px;}
.ye5{bottom:939.651000px;}
.y5c{bottom:942.523500px;}
.yc9{bottom:946.236000px;}
.y121{bottom:946.516500px;}
.y31{bottom:947.389500px;}
.y5b{bottom:962.847000px;}
.y120{bottom:966.840000px;}
.y81{bottom:970.942500px;}
.y4{bottom:971.136000px;}
.y90{bottom:976.105500px;}
.y30{bottom:978.825000px;}
.yc8{bottom:981.340500px;}
.y5a{bottom:983.170500px;}
.y11f{bottom:987.163500px;}
.y3{bottom:992.058000px;}
.yc7{bottom:1001.664000px;}
.y59{bottom:1003.494000px;}
.y100{bottom:1003.794000px;}
.y2f{bottom:1010.260500px;}
.y8f{bottom:1014.361500px;}
.y11e{bottom:1020.937500px;}
.yc6{bottom:1021.987500px;}
.y58{bottom:1023.817500px;}
.y2{bottom:1037.524500px;}
.yff{bottom:1037.566500px;}
.y11d{bottom:1041.261000px;}
.y2e{bottom:1041.697500px;}
.y57{bottom:1044.142500px;}
.y8e{bottom:1048.135500px;}
.yc5{bottom:1054.710000px;}
.y11c{bottom:1061.584500px;}
.y56{bottom:1064.466000px;}
.y1{bottom:1070.401500px;}
.yfe{bottom:1071.340500px;}
.y2d{bottom:1073.133000px;}
.yc4{bottom:1075.033500px;}
.y8d{bottom:1081.908000px;}
.y55{bottom:1084.789500px;}
.yc3{bottom:1095.357000px;}
.y8c{bottom:1102.231500px;}
.y2c{bottom:1104.568500px;}
.y54{bottom:1105.113000px;}
.yc2{bottom:1115.682000px;}
.y2b{bottom:1136.005500px;}
.y2a{bottom:1195.900500px;}
.h4{height:41.842920px;}
.h5{height:44.831700px;}
.h9{height:45.818220px;}
.h8{height:49.090950px;}
.h7{height:50.211840px;}
.h3{height:51.216077px;}
.h6{height:60.254040px;}
.h2{height:73.027727px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x13{left:116.182500px;}
.x2{left:126.499500px;}
.xc{left:127.999500px;}
.xa{left:133.404000px;}
.x14{left:141.636000px;}
.x1{left:145.819500px;}
.x8{left:148.909500px;}
.x7{left:171.325500px;}
.x12{left:238.434000px;}
.x4{left:257.658000px;}
.x10{left:261.252000px;}
.x11{left:266.728500px;}
.xf{left:279.433500px;}
.xd{left:301.434000px;}
.xe{left:336.525000px;}
.x3{left:384.148500px;}
.x5{left:387.442500px;}
.x6{left:413.578500px;}
.x15{left:438.274500px;}
.xb{left:442.366500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:26.065476pt;}
.ls1{letter-spacing:29.090933pt;}
.ws53{word-spacing:-16.162923pt;}
.ws79{word-spacing:-14.871285pt;}
.ws4f{word-spacing:-3.130184pt;}
.ws1f{word-spacing:-3.013821pt;}
.ws3{word-spacing:-2.858602pt;}
.ws2a{word-spacing:-2.548366pt;}
.ws18{word-spacing:-1.733820pt;}
.ws39{word-spacing:-1.617456pt;}
.ws88{word-spacing:-1.594183pt;}
.ws52{word-spacing:-1.501092pt;}
.wsa4{word-spacing:-1.442910pt;}
.ws89{word-spacing:-1.384728pt;}
.ws70{word-spacing:-1.245092pt;}
.ws36{word-spacing:-1.210183pt;}
.ws1b{word-spacing:-1.035637pt;}
.ws54{word-spacing:-0.977455pt;}
.ws47{word-spacing:-0.802910pt;}
.ws51{word-spacing:-0.686546pt;}
.ws86{word-spacing:-0.512000pt;}
.wsbc{word-spacing:-0.279273pt;}
.ws21{word-spacing:0.000000pt;}
.ws43{word-spacing:0.011636pt;}
.ws20{word-spacing:0.069818pt;}
.ws9d{word-spacing:0.128000pt;}
.wsaf{word-spacing:0.244364pt;}
.ws96{word-spacing:0.302546pt;}
.ws2b{word-spacing:0.360728pt;}
.wsa9{word-spacing:0.593455pt;}
.ws31{word-spacing:0.651637pt;}
.wsa8{word-spacing:0.768001pt;}
.ws75{word-spacing:0.791273pt;}
.ws9{word-spacing:0.860769pt;}
.ws3b{word-spacing:0.884364pt;}
.wsb7{word-spacing:0.942546pt;}
.ws22{word-spacing:1.000728pt;}
.ws45{word-spacing:1.117092pt;}
.ws3a{word-spacing:1.175274pt;}
.ws19{word-spacing:1.233456pt;}
.ws6b{word-spacing:1.349819pt;}
.ws6a{word-spacing:1.547638pt;}
.ws91{word-spacing:1.582547pt;}
.ws1a{word-spacing:1.640729pt;}
.ws2d{word-spacing:1.698911pt;}
.ws6c{word-spacing:1.757092pt;}
.ws24{word-spacing:1.815274pt;}
.ws9c{word-spacing:1.838547pt;}
.ws1c{word-spacing:1.873456pt;}
.ws40{word-spacing:1.931638pt;}
.ws4b{word-spacing:2.106184pt;}
.ws6e{word-spacing:2.280729pt;}
.ws4{word-spacing:2.401651pt;}
.ws2e{word-spacing:2.455275pt;}
.ws27{word-spacing:2.513457pt;}
.wsb3{word-spacing:2.571639pt;}
.wsb6{word-spacing:2.629820pt;}
.ws50{word-spacing:2.804366pt;}
.ws68{word-spacing:2.920730pt;}
.ws14{word-spacing:2.932989pt;}
.wsad{word-spacing:3.095275pt;}
.ws35{word-spacing:3.153457pt;}
.wsb0{word-spacing:3.165094pt;}
.ws1d{word-spacing:3.211639pt;}
.ws66{word-spacing:3.269821pt;}
.ws44{word-spacing:3.328003pt;}
.ws5{word-spacing:3.358060pt;}
.ws69{word-spacing:3.444367pt;}
.ws5a{word-spacing:3.502548pt;}
.ws28{word-spacing:3.700367pt;}
.wsb8{word-spacing:3.805094pt;}
.ws38{word-spacing:3.909821pt;}
.ws6{word-spacing:3.942533pt;}
.ws3c{word-spacing:4.026185pt;}
.wsba{word-spacing:4.037822pt;}
.ws13{word-spacing:4.420738pt;}
.ws58{word-spacing:4.433458pt;}
.ws23{word-spacing:4.491640pt;}
.ws55{word-spacing:4.549822pt;}
.ws34{word-spacing:4.608004pt;}
.ws29{word-spacing:4.666186pt;}
.wsb4{word-spacing:4.794186pt;}
.ws83{word-spacing:4.864004pt;}
.wsa2{word-spacing:4.957095pt;}
.ws5c{word-spacing:5.015277pt;}
.ws8a{word-spacing:5.073459pt;}
.wsb2{word-spacing:5.085095pt;}
.wsb{word-spacing:5.217746pt;}
.ws3f{word-spacing:5.248004pt;}
.ws57{word-spacing:5.306186pt;}
.wsf{word-spacing:5.324013pt;}
.ws8e{word-spacing:5.387641pt;}
.wsbd{word-spacing:5.422550pt;}
.wsc{word-spacing:5.589683pt;}
.ws7{word-spacing:5.642817pt;}
.ws2c{word-spacing:5.655277pt;}
.ws6f{word-spacing:5.771641pt;}
.ws4c{word-spacing:5.829823pt;}
.ws11{word-spacing:5.855352pt;}
.wsa6{word-spacing:5.888005pt;}
.wsbb{word-spacing:5.899641pt;}
.ws93{word-spacing:5.946187pt;}
.wsac{word-spacing:5.957823pt;}
.ws7f{word-spacing:6.085823pt;}
.ws1e{word-spacing:6.120732pt;}
.wsd{word-spacing:6.121021pt;}
.ws59{word-spacing:6.178914pt;}
.ws49{word-spacing:6.237096pt;}
.ws4e{word-spacing:6.295278pt;}
.ws12{word-spacing:6.333557pt;}
.wsb1{word-spacing:6.411642pt;}
.ws76{word-spacing:6.586187pt;}
.ws26{word-spacing:6.644369pt;}
.ws97{word-spacing:6.667642pt;}
.ws37{word-spacing:6.702551pt;}
.wsb9{word-spacing:6.760733pt;}
.ws32{word-spacing:6.993460pt;}
.ws56{word-spacing:7.109824pt;}
.ws25{word-spacing:7.226188pt;}
.wsa5{word-spacing:7.342552pt;}
.ws9f{word-spacing:7.400733pt;}
.wse{word-spacing:7.449368pt;}
.ws61{word-spacing:7.458915pt;}
.ws42{word-spacing:7.517097pt;}
.ws4a{word-spacing:7.575279pt;}
.ws7a{word-spacing:7.633461pt;}
.ws67{word-spacing:7.656734pt;}
.ws3e{word-spacing:7.749825pt;}
.wsa1{word-spacing:7.808007pt;}
.wsbe{word-spacing:7.994188pt;}
.wsa{word-spacing:8.033841pt;}
.ws6d{word-spacing:8.098916pt;}
.ws10{word-spacing:8.193242pt;}
.ws99{word-spacing:8.389825pt;}
.ws73{word-spacing:8.413098pt;}
.ws7d{word-spacing:8.506189pt;}
.ws85{word-spacing:8.564371pt;}
.ws41{word-spacing:8.622553pt;}
.wsb5{word-spacing:8.692371pt;}
.ws71{word-spacing:8.704007pt;}
.ws92{word-spacing:8.762189pt;}
.ws8{word-spacing:8.777715pt;}
.ws7b{word-spacing:8.925098pt;}
.wsa0{word-spacing:8.994917pt;}
.ws95{word-spacing:9.029826pt;}
.ws77{word-spacing:9.041462pt;}
.ws3d{word-spacing:9.088008pt;}
.ws63{word-spacing:9.146189pt;}
.ws5d{word-spacing:9.320735pt;}
.wsaa{word-spacing:9.378917pt;}
.ws62{word-spacing:9.437099pt;}
.ws17{word-spacing:9.495281pt;}
.ws30{word-spacing:9.553463pt;}
.ws78{word-spacing:9.611644pt;}
.ws4d{word-spacing:9.844372pt;}
.wsae{word-spacing:9.856008pt;}
.ws84{word-spacing:9.867645pt;}
.ws8d{word-spacing:9.902554pt;}
.ws2f{word-spacing:9.960736pt;}
.ws98{word-spacing:10.484372pt;}
.ws60{word-spacing:10.600736pt;}
.ws5f{word-spacing:10.658918pt;}
.ws8c{word-spacing:10.775282pt;}
.ws74{word-spacing:10.833464pt;}
.ws90{word-spacing:11.008009pt;}
.ws72{word-spacing:11.124373pt;}
.ws64{word-spacing:11.298919pt;}
.ws48{word-spacing:11.357100pt;}
.wsa7{word-spacing:11.531646pt;}
.wsab{word-spacing:11.601464pt;}
.wsa3{word-spacing:11.822555pt;}
.ws46{word-spacing:12.055283pt;}
.ws82{word-spacing:12.113465pt;}
.ws8b{word-spacing:12.427647pt;}
.ws5e{word-spacing:12.753465pt;}
.ws8f{word-spacing:13.277102pt;}
.ws80{word-spacing:13.882193pt;}
.ws81{word-spacing:13.940375pt;}
.ws94{word-spacing:14.848012pt;}
.ws87{word-spacing:15.592740pt;}
.ws9e{word-spacing:16.232741pt;}
.ws7e{word-spacing:19.374562pt;}
.ws1{word-spacing:20.722347pt;}
.ws2{word-spacing:20.786108pt;}
.ws33{word-spacing:21.015290pt;}
.ws9a{word-spacing:21.938959pt;}
.ws16{word-spacing:23.846639pt;}
.ws9b{word-spacing:24.494566pt;}
.ws65{word-spacing:27.461841pt;}
.ws0{word-spacing:27.636455pt;}
.ws5b{word-spacing:28.615887pt;}
.ws7c{word-spacing:48.325858pt;}
.ws15{word-spacing:86.000687pt;}
._3{margin-left:-9.640624pt;}
._26{margin-left:-7.270988pt;}
._a{margin-left:-6.329712pt;}
._5{margin-left:-5.164646pt;}
._4{margin-left:-3.443098pt;}
._0{margin-left:-2.387202pt;}
._6{margin-left:-1.055895pt;}
._7{width:1.002762pt;}
._1{width:2.295387pt;}
._16{width:3.698154pt;}
._1f{width:14.430849pt;}
._13{width:15.534558pt;}
._17{width:17.185834pt;}
._27{width:18.084195pt;}
._14{width:19.017120pt;}
._c{width:20.994659pt;}
._e{width:22.447636pt;}
._f{width:23.863861pt;}
._8{width:24.760382pt;}
._15{width:26.128895pt;}
._9{width:27.211353pt;}
._1b{width:28.495445pt;}
._19{width:29.646647pt;}
._d{width:31.204982pt;}
._11{width:33.793139pt;}
._21{width:35.768178pt;}
._2{width:37.368895pt;}
._b{width:38.787723pt;}
._10{width:39.883273pt;}
._1d{width:42.007308pt;}
._24{width:43.546421pt;}
._1c{width:45.006749pt;}
._23{width:48.000040pt;}
._25{width:49.657718pt;}
._20{width:50.969061pt;}
._1e{width:52.247316pt;}
._1a{width:66.909147pt;}
._12{width:71.731200pt;}
._22{width:86.077200pt;}
._18{width:600.921308pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:54.024000pt;}
.y53{bottom:93.874667pt;}
.y11b{bottom:95.049333pt;}
.yfd{bottom:99.249333pt;}
.y103{bottom:108.668000pt;}
.y52{bottom:111.940000pt;}
.y28{bottom:112.488000pt;}
.y11a{bottom:113.114667pt;}
.yc1{bottom:116.036000pt;}
.y80{bottom:127.942667pt;}
.yfc{bottom:129.269333pt;}
.y51{bottom:130.005333pt;}
.y27{bottom:130.553333pt;}
.y119{bottom:131.180000pt;}
.yc0{bottom:134.101333pt;}
.y7f{bottom:146.008000pt;}
.y50{bottom:148.072000pt;}
.ybf{bottom:152.166667pt;}
.y26{bottom:158.013333pt;}
.ye4{bottom:159.093333pt;}
.yfb{bottom:159.290667pt;}
.y118{bottom:161.201333pt;}
.y7e{bottom:164.073333pt;}
.y4f{bottom:166.137333pt;}
.ye3{bottom:177.158667pt;}
.y117{bottom:179.266667pt;}
.y7d{bottom:182.138667pt;}
.ybe{bottom:182.188000pt;}
.y4e{bottom:184.202667pt;}
.yfa{bottom:189.310667pt;}
.ye2{bottom:195.224000pt;}
.y25{bottom:196.964000pt;}
.y116{bottom:197.332000pt;}
.y7c{bottom:200.204000pt;}
.ybd{bottom:200.253333pt;}
.y4d{bottom:202.268000pt;}
.ye1{bottom:213.289333pt;}
.y24{bottom:215.029333pt;}
.y7b{bottom:218.270667pt;}
.ybc{bottom:218.318667pt;}
.yf9{bottom:219.332000pt;}
.y4c{bottom:220.333333pt;}
.y115{bottom:227.353333pt;}
.y23{bottom:233.094667pt;}
.y7a{bottom:236.336000pt;}
.ybb{bottom:236.384000pt;}
.y4b{bottom:238.400000pt;}
.ye0{bottom:242.376000pt;}
.y114{bottom:245.418667pt;}
.yf8{bottom:246.792000pt;}
.y22{bottom:251.160000pt;}
.y79{bottom:254.401333pt;}
.y4a{bottom:256.465333pt;}
.ydf{bottom:260.442667pt;}
.y113{bottom:263.484000pt;}
.y21{bottom:269.226667pt;}
.yba{bottom:270.389333pt;}
.y78{bottom:272.466667pt;}
.y49{bottom:274.530667pt;}
.yde{bottom:278.508000pt;}
.yf7{bottom:285.741333pt;}
.y20{bottom:287.292000pt;}
.yb9{bottom:288.456000pt;}
.y77{bottom:290.532000pt;}
.y48{bottom:292.596000pt;}
.y112{bottom:295.953333pt;}
.ydd{bottom:296.573333pt;}
.y8b{bottom:301.990667pt;}
.y1f{bottom:305.357333pt;}
.y76{bottom:308.598667pt;}
.yaa{bottom:310.021333pt;}
.y47{bottom:310.661333pt;}
.yb8{bottom:315.914667pt;}
.yf6{bottom:318.212000pt;}
.y1e{bottom:323.422667pt;}
.ydc{bottom:327.777333pt;}
.ya9{bottom:328.088000pt;}
.y46{bottom:328.728000pt;}
.y75{bottom:336.057333pt;}
.y1d{bottom:341.488000pt;}
.y8a{bottom:341.513333pt;}
.y111{bottom:341.782667pt;}
.ydb{bottom:345.842667pt;}
.y45{bottom:346.793333pt;}
.y102{bottom:349.953333pt;}
.yb7{bottom:354.334667pt;}
.ya8{bottom:355.546667pt;}
.y1c{bottom:359.554667pt;}
.yda{bottom:363.908000pt;}
.yf5{bottom:364.041333pt;}
.y110{bottom:371.804000pt;}
.yb6{bottom:372.400000pt;}
.y44{bottom:374.252000pt;}
.y74{bottom:374.477333pt;}
.yd9{bottom:381.974667pt;}
.y1b{bottom:387.013333pt;}
.y73{bottom:392.542667pt;}
.ya7{bottom:393.966667pt;}
.yf4{bottom:394.061333pt;}
.y43{bottom:401.712000pt;}
.y10f{bottom:401.824000pt;}
.yb5{bottom:402.420000pt;}
.yd8{bottom:409.433333pt;}
.y72{bottom:410.608000pt;}
.ya6{bottom:412.032000pt;}
.y1a{bottom:420.014667pt;}
.yb4{bottom:420.486667pt;}
.yf3{bottom:421.521333pt;}
.y71{bottom:428.673333pt;}
.ya5{bottom:430.097333pt;}
.y10e{bottom:431.845333pt;}
.y42{bottom:439.682667pt;}
.y70{bottom:446.738667pt;}
.yd7{bottom:447.412000pt;}
.ya4{bottom:448.162667pt;}
.yb3{bottom:450.506667pt;}
.yf2{bottom:459.940000pt;}
.y10d{bottom:461.865333pt;}
.y6f{bottom:464.804000pt;}
.y19{bottom:465.844000pt;}
.ya3{bottom:466.228000pt;}
.y41{bottom:467.626667pt;}
.yb2{bottom:468.572000pt;}
.yd6{bottom:476.498667pt;}
.yf1{bottom:478.005333pt;}
.y18{bottom:481.784000pt;}
.y6e{bottom:482.870667pt;}
.ya2{bottom:484.294667pt;}
.y10c{bottom:494.336000pt;}
.yd5{bottom:494.565333pt;}
.y40{bottom:495.569333pt;}
.y17{bottom:497.724000pt;}
.yb1{bottom:498.593333pt;}
.y6d{bottom:500.936000pt;}
.ya1{bottom:502.360000pt;}
.yf0{bottom:508.026667pt;}
.y16{bottom:513.665333pt;}
.yb0{bottom:516.658667pt;}
.y6c{bottom:519.001333pt;}
.ya0{bottom:520.425333pt;}
.y3f{bottom:523.512000pt;}
.yd4{bottom:523.652000pt;}
.y15{bottom:529.605333pt;}
.yef{bottom:535.486667pt;}
.y6b{bottom:537.066667pt;}
.y9f{bottom:538.490667pt;}
.y10b{bottom:540.165333pt;}
.y3e{bottom:541.577333pt;}
.yd3{bottom:541.717333pt;}
.y14{bottom:545.545333pt;}
.yaf{bottom:546.680000pt;}
.y6a{bottom:555.132000pt;}
.y9e{bottom:556.556000pt;}
.y10a{bottom:558.230667pt;}
.y13{bottom:561.485333pt;}
.yae{bottom:564.745333pt;}
.y3d{bottom:566.404000pt;}
.yd2{bottom:570.804000pt;}
.y69{bottom:573.198667pt;}
.yee{bottom:573.905333pt;}
.y9d{bottom:574.622667pt;}
.y109{bottom:576.296000pt;}
.y12{bottom:577.425333pt;}
.y3c{bottom:584.470667pt;}
.yed{bottom:591.970667pt;}
.y11{bottom:593.365333pt;}
.y108{bottom:594.361333pt;}
.yad{bottom:594.765333pt;}
.y68{bottom:600.657333pt;}
.yd1{bottom:602.008000pt;}
.y9c{bottom:602.081333pt;}
.y3b{bottom:602.536000pt;}
.y10{bottom:609.306667pt;}
.y107{bottom:612.428000pt;}
.y3a{bottom:620.601333pt;}
.yec{bottom:621.992000pt;}
.yac{bottom:622.225333pt;}
.y12b{bottom:624.826667pt;}
.yf{bottom:625.246667pt;}
.yd0{bottom:629.468000pt;}
.y106{bottom:630.493333pt;}
.y39{bottom:638.666667pt;}
.y67{bottom:639.077333pt;}
.y9b{bottom:641.032000pt;}
.ye{bottom:641.186667pt;}
.y12a{bottom:642.892000pt;}
.y89{bottom:644.892000pt;}
.yeb{bottom:649.450667pt;}
.y38{bottom:656.732000pt;}
.yd{bottom:657.126667pt;}
.y66{bottom:657.142667pt;}
.y9a{bottom:659.097333pt;}
.y129{bottom:660.957333pt;}
.y105{bottom:662.962667pt;}
.yab{bottom:666.064000pt;}
.ycf{bottom:667.977333pt;}
.yc{bottom:673.066667pt;}
.y37{bottom:674.798667pt;}
.y65{bottom:675.208000pt;}
.y99{bottom:677.162667pt;}
.yea{bottom:687.869333pt;}
.yb{bottom:689.006667pt;}
.y101{bottom:689.582667pt;}
.y88{bottom:690.517333pt;}
.y128{bottom:690.978667pt;}
.y36{bottom:692.864000pt;}
.y64{bottom:693.273333pt;}
.y98{bottom:695.229333pt;}
.yce{bottom:697.064000pt;}
.ya{bottom:704.948000pt;}
.ye9{bottom:705.936000pt;}
.y87{bottom:708.582667pt;}
.y127{bottom:709.044000pt;}
.y63{bottom:711.338667pt;}
.y97{bottom:713.294667pt;}
.y104{bottom:714.212000pt;}
.y35{bottom:720.322667pt;}
.y9{bottom:720.888000pt;}
.ycd{bottom:726.152000pt;}
.y126{bottom:727.109333pt;}
.y62{bottom:729.405333pt;}
.y96{bottom:731.360000pt;}
.ye8{bottom:735.956000pt;}
.y8{bottom:736.828000pt;}
.y86{bottom:738.169333pt;}
.y125{bottom:745.174667pt;}
.y61{bottom:747.470667pt;}
.y7{bottom:752.768000pt;}
.ycc{bottom:755.238667pt;}
.y34{bottom:758.294667pt;}
.y95{bottom:761.380000pt;}
.ye7{bottom:763.416000pt;}
.y60{bottom:765.536000pt;}
.y85{bottom:767.756000pt;}
.y124{bottom:775.196000pt;}
.y6{bottom:777.010667pt;}
.y94{bottom:779.446667pt;}
.y5f{bottom:783.601333pt;}
.ycb{bottom:784.325333pt;}
.y84{bottom:785.821333pt;}
.y33{bottom:786.237333pt;}
.ye6{bottom:790.876000pt;}
.y123{bottom:793.261333pt;}
.y93{bottom:797.512000pt;}
.y5e{bottom:801.666667pt;}
.y122{bottom:811.326667pt;}
.yca{bottom:813.412000pt;}
.y32{bottom:814.180000pt;}
.y83{bottom:815.408000pt;}
.y92{bottom:815.577333pt;}
.y5d{bottom:819.732000pt;}
.y5{bottom:830.709333pt;}
.y82{bottom:833.473333pt;}
.y91{bottom:833.642667pt;}
.ye5{bottom:835.245333pt;}
.y5c{bottom:837.798667pt;}
.yc9{bottom:841.098667pt;}
.y121{bottom:841.348000pt;}
.y31{bottom:842.124000pt;}
.y5b{bottom:855.864000pt;}
.y120{bottom:859.413333pt;}
.y81{bottom:863.060000pt;}
.y4{bottom:863.232000pt;}
.y90{bottom:867.649333pt;}
.y30{bottom:870.066667pt;}
.yc8{bottom:872.302667pt;}
.y5a{bottom:873.929333pt;}
.y11f{bottom:877.478667pt;}
.y3{bottom:881.829333pt;}
.yc7{bottom:890.368000pt;}
.y59{bottom:891.994667pt;}
.y100{bottom:892.261333pt;}
.y2f{bottom:898.009333pt;}
.y8f{bottom:901.654667pt;}
.y11e{bottom:907.500000pt;}
.yc6{bottom:908.433333pt;}
.y58{bottom:910.060000pt;}
.y2{bottom:922.244000pt;}
.yff{bottom:922.281333pt;}
.y11d{bottom:925.565333pt;}
.y2e{bottom:925.953333pt;}
.y57{bottom:928.126667pt;}
.y8e{bottom:931.676000pt;}
.yc5{bottom:937.520000pt;}
.y11c{bottom:943.630667pt;}
.y56{bottom:946.192000pt;}
.y1{bottom:951.468000pt;}
.yfe{bottom:952.302667pt;}
.y2d{bottom:953.896000pt;}
.yc4{bottom:955.585333pt;}
.y8d{bottom:961.696000pt;}
.y55{bottom:964.257333pt;}
.yc3{bottom:973.650667pt;}
.y8c{bottom:979.761333pt;}
.y2c{bottom:981.838667pt;}
.y54{bottom:982.322667pt;}
.yc2{bottom:991.717333pt;}
.y2b{bottom:1009.782667pt;}
.y2a{bottom:1063.022667pt;}
.h4{height:37.193707pt;}
.h5{height:39.850400pt;}
.h9{height:40.727307pt;}
.h8{height:43.636400pt;}
.h7{height:44.632747pt;}
.h3{height:45.525402pt;}
.h6{height:53.559147pt;}
.h2{height:64.913535pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x13{left:103.273333pt;}
.x2{left:112.444000pt;}
.xc{left:113.777333pt;}
.xa{left:118.581333pt;}
.x14{left:125.898667pt;}
.x1{left:129.617333pt;}
.x8{left:132.364000pt;}
.x7{left:152.289333pt;}
.x12{left:211.941333pt;}
.x4{left:229.029333pt;}
.x10{left:232.224000pt;}
.x11{left:237.092000pt;}
.xf{left:248.385333pt;}
.xd{left:267.941333pt;}
.xe{left:299.133333pt;}
.x3{left:341.465333pt;}
.x5{left:344.393333pt;}
.x6{left:367.625333pt;}
.x15{left:389.577333pt;}
.xb{left:393.214667pt;}
}




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