
    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_f46aa89984fd9313a13f3781.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_6798c6470fa37d3e4341db75.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_42d958d73cfee6b5a90706cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_7a64581e6a726f1c8e37a506.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_c9dc2c16333cbbf1116188fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_da499426f170ebac787d807c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_c655788af93a8c543ce96dab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_456922c0509a7c94552c053d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_ee3ba9bb4631c5900acfccbd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_71ee1b461d15aaf57e3cc5b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_a2665ceac7e95178f898a41e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_900610ef622517a51229d8f3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_a1bb9234b1434e53c2235d11.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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:fff;src:url('chunks/assets/font_73ad7bde7cfb92be42fa2aeb.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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:ff10;src:url('chunks/assets/font_70eb3c6322d2e9c172ba8fbe.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e17c6592a961b402331db2de.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_b1a5afaf2333d48308269ee5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;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:ff13;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_1af776634398fcb000d4361f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_da912e4cb1e3704a52d13496.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.758789;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);}
.v3{vertical-align:-69.120000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-4.680000px;}
.ls10{letter-spacing:-4.266000px;}
.lsb{letter-spacing:-3.960000px;}
.ls8{letter-spacing:-2.304000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.127200px;}
.ls1f{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.070560px;}
.lsc{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.306600px;}
.ls12{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls20{letter-spacing:0.828000px;}
.ls13{letter-spacing:0.900000px;}
.ls1d{letter-spacing:15.786720px;}
.ls1b{letter-spacing:18.900000px;}
.ls19{letter-spacing:43.866720px;}
.ls1c{letter-spacing:45.306720px;}
.ls1a{letter-spacing:46.026720px;}
.lsd{letter-spacing:64.026720px;}
.ls16{letter-spacing:509.340000px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.626360px;}
.ws1{word-spacing:-16.493760px;}
.ws4{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.wsf{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.199800px;}
.wsa{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.833200px;}
.ws8{word-spacing:-13.505760px;}
.ws7{word-spacing:-10.980000px;}
.ws6{word-spacing:-10.260000px;}
.ws2{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._6{margin-left:-7.924560px;}
._1f{margin-left:-6.035760px;}
._5{margin-left:-4.794720px;}
._2{margin-left:-3.222480px;}
._3{margin-left:-2.179680px;}
._0{margin-left:-1.158000px;}
._1{width:1.134000px;}
._4{width:2.449680px;}
._8{width:3.510240px;}
._b{width:4.576560px;}
._7{width:5.881440px;}
._f{width:7.564560px;}
._9{width:9.382320px;}
._a{width:10.597680px;}
._15{width:11.928720px;}
._13{width:13.326480px;}
._17{width:16.088880px;}
._22{width:17.138880px;}
._23{width:18.216240px;}
._16{width:19.541520px;}
._d{width:20.590320px;}
._c{width:21.600000px;}
._14{width:23.188320px;}
._1d{width:25.398000px;}
._1e{width:26.772480px;}
._21{width:27.987360px;}
._12{width:29.632800px;}
._20{width:30.771840px;}
._11{width:33.525360px;}
._e{width:36.334080px;}
._10{width:42.967440px;}
._19{width:45.738960px;}
._18{width:46.851840px;}
._1a{width:47.965200px;}
._1c{width:74.190480px;}
._1b{width:188.179680px;}
.fc5{color:rgb(227,108,10);}
.fc6{color:rgb(47,84,150);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y93{bottom:3.240000px;}
.yc5{bottom:3.420000px;}
.y3{bottom:3.780000px;}
.ye{bottom:4.140000px;}
.y41{bottom:10.620000px;}
.yf2{bottom:11.880000px;}
.y96{bottom:12.240000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.yf3{bottom:20.514000px;}
.yf5{bottom:20.520000px;}
.yf7{bottom:20.700000px;}
.y3e{bottom:20.880000px;}
.y95{bottom:20.910000px;}
.y9b{bottom:21.060000px;}
.y42{bottom:22.500000px;}
.y19{bottom:23.940000px;}
.y40{bottom:25.380000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.500000px;}
.y3d{bottom:38.160000px;}
.y9a{bottom:38.340000px;}
.y18{bottom:40.500000px;}
.ya{bottom:46.620000px;}
.y1{bottom:54.000000px;}
.y3c{bottom:55.440000px;}
.y17{bottom:57.105000px;}
.y3b{bottom:72.720000px;}
.y9{bottom:73.260000px;}
.y16{bottom:73.485000px;}
.y15{bottom:86.625000px;}
.y3a{bottom:90.000000px;}
.y8{bottom:93.090000px;}
.yf4{bottom:99.216000px;}
.y14{bottom:104.985000px;}
.y110{bottom:106.056000px;}
.y39{bottom:107.280000px;}
.y91{bottom:108.756000px;}
.y53{bottom:110.016000px;}
.y7{bottom:111.450000px;}
.y123{bottom:111.636000px;}
.yd0{bottom:112.716000px;}
.y2a{bottom:115.920000px;}
.y13{bottom:123.165000px;}
.y10f{bottom:123.336000px;}
.y38{bottom:124.380000px;}
.y90{bottom:126.036000px;}
.y52{bottom:127.296000px;}
.y122{bottom:128.916000px;}
.y127{bottom:129.276000px;}
.ycf{bottom:129.816000px;}
.y29{bottom:131.400000px;}
.yf1{bottom:134.496000px;}
.y10e{bottom:140.436000px;}
.y37{bottom:141.660000px;}
.y12{bottom:141.705000px;}
.y8f{bottom:143.316000px;}
.y51{bottom:144.576000px;}
.y121{bottom:146.556000px;}
.yce{bottom:147.096000px;}
.y28{bottom:149.400000px;}
.y10d{bottom:157.710000px;}
.y36{bottom:158.940000px;}
.y8e{bottom:160.230000px;}
.y50{bottom:161.850000px;}
.y120{bottom:163.830000px;}
.ycd{bottom:164.370000px;}
.y27{bottom:166.710000px;}
.y11{bottom:167.445000px;}
.yf0{bottom:173.370000px;}
.y10c{bottom:174.990000px;}
.y35{bottom:176.250000px;}
.y8d{bottom:177.510000px;}
.y4f{bottom:179.130000px;}
.y11f{bottom:180.930000px;}
.ycc{bottom:181.290000px;}
.y26{bottom:183.990000px;}
.yef{bottom:190.290000px;}
.y10{bottom:192.105000px;}
.y10b{bottom:192.270000px;}
.y34{bottom:193.530000px;}
.y8c{bottom:194.970000px;}
.y4e{bottom:196.230000px;}
.y11e{bottom:198.210000px;}
.ycb{bottom:198.930000px;}
.y25{bottom:201.270000px;}
.yee{bottom:207.570000px;}
.y10a{bottom:209.190000px;}
.y33{bottom:210.810000px;}
.y8b{bottom:212.250000px;}
.yca{bottom:213.150000px;}
.y4d{bottom:213.510000px;}
.y11d{bottom:215.490000px;}
.y24{bottom:218.730000px;}
.y109{bottom:223.050000px;}
.yed{bottom:225.210000px;}
.y32{bottom:227.910000px;}
.y8a{bottom:229.530000px;}
.y4c{bottom:230.790000px;}
.yc9{bottom:231.150000px;}
.y11c{bottom:232.770000px;}
.y23{bottom:236.190000px;}
.yec{bottom:242.310000px;}
.y31{bottom:245.190000px;}
.y89{bottom:246.810000px;}
.y4b{bottom:248.070000px;}
.yc8{bottom:249.150000px;}
.y11b{bottom:249.690000px;}
.y126{bottom:250.050000px;}
.y22{bottom:253.470000px;}
.yeb{bottom:259.230000px;}
.y30{bottom:262.470000px;}
.y88{bottom:265.170000px;}
.y4a{bottom:265.350000px;}
.yc7{bottom:267.150000px;}
.y11a{bottom:267.330000px;}
.y21{bottom:270.930000px;}
.yea{bottom:276.510000px;}
.y2f{bottom:279.750000px;}
.y49{bottom:282.630000px;}
.y87{bottom:283.350000px;}
.y119{bottom:284.430000px;}
.yc6{bottom:285.150000px;}
.y20{bottom:288.210000px;}
.ye9{bottom:290.370000px;}
.y2e{bottom:297.030000px;}
.y48{bottom:299.730000px;}
.y86{bottom:301.710000px;}
.yc4{bottom:303.150000px;}
.y1f{bottom:305.850000px;}
.y2d{bottom:314.310000px;}
.y47{bottom:317.010000px;}
.y85{bottom:318.990000px;}
.yc3{bottom:324.570000px;}
.y2c{bottom:331.410000px;}
.y1e{bottom:333.390000px;}
.y46{bottom:334.290000px;}
.y84{bottom:335.910000px;}
.y118{bottom:336.270000px;}
.yc2{bottom:341.715000px;}
.y2b{bottom:348.690000px;}
.y1d{bottom:350.850000px;}
.y45{bottom:351.615000px;}
.y83{bottom:353.235000px;}
.y117{bottom:353.595000px;}
.yc1{bottom:359.355000px;}
.y44{bottom:368.535000px;}
.y82{bottom:370.875000px;}
.yc0{bottom:376.635000px;}
.y43{bottom:386.355000px;}
.y81{bottom:387.975000px;}
.ybf{bottom:393.915000px;}
.y3f{bottom:400.575000px;}
.y80{bottom:405.255000px;}
.ybe{bottom:411.195000px;}
.y7f{bottom:422.535000px;}
.ybd{bottom:428.475000px;}
.y1c{bottom:437.295000px;}
.y7e{bottom:439.815000px;}
.ybc{bottom:445.575000px;}
.y7d{bottom:456.735000px;}
.y116{bottom:457.095000px;}
.ybb{bottom:462.495000px;}
.y7c{bottom:473.835000px;}
.y115{bottom:474.195000px;}
.yba{bottom:479.775000px;}
.y7b{bottom:491.475000px;}
.yb9{bottom:497.415000px;}
.y108{bottom:505.875000px;}
.y7a{bottom:508.755000px;}
.yb8{bottom:514.695000px;}
.y107{bottom:522.975000px;}
.y79{bottom:526.035000px;}
.yb7{bottom:531.975000px;}
.y106{bottom:540.255000px;}
.y78{bottom:543.315000px;}
.yb6{bottom:550.155000px;}
.y105{bottom:557.535000px;}
.y77{bottom:560.595000px;}
.ye8{bottom:566.355000px;}
.yb5{bottom:568.515000px;}
.y104{bottom:575.895000px;}
.y76{bottom:577.695000px;}
.ye7{bottom:583.635000px;}
.yb4{bottom:585.795000px;}
.y103{bottom:594.255000px;}
.y75{bottom:594.975000px;}
.ye6{bottom:601.995000px;}
.yb3{bottom:603.075000px;}
.y74{bottom:612.285000px;}
.y102{bottom:612.465000px;}
.yb2{bottom:620.385000px;}
.y101{bottom:629.385000px;}
.y73{bottom:629.565000px;}
.yb1{bottom:637.125000px;}
.ye5{bottom:638.565000px;}
.y72{bottom:646.485000px;}
.y100{bottom:646.665000px;}
.y114{bottom:646.845000px;}
.yb0{bottom:654.405000px;}
.ye4{bottom:656.925000px;}
.y71{bottom:663.765000px;}
.y113{bottom:664.125000px;}
.yff{bottom:664.305000px;}
.yaf{bottom:672.045000px;}
.ye3{bottom:675.285000px;}
.y70{bottom:681.225000px;}
.yfe{bottom:681.585000px;}
.yae{bottom:689.325000px;}
.ye2{bottom:692.565000px;}
.yfd{bottom:695.265000px;}
.y6f{bottom:698.505000px;}
.yad{bottom:707.685000px;}
.ye1{bottom:709.485000px;}
.y6e{bottom:715.785000px;}
.yac{bottom:724.965000px;}
.ye0{bottom:726.765000px;}
.y6d{bottom:733.065000px;}
.yab{bottom:743.145000px;}
.ydf{bottom:744.225000px;}
.y6c{bottom:750.345000px;}
.yaa{bottom:760.425000px;}
.yde{bottom:761.505000px;}
.y6b{bottom:767.625000px;}
.ya9{bottom:778.785000px;}
.y6a{bottom:784.725000px;}
.ya8{bottom:795.705000px;}
.y1a{bottom:799.485000px;}
.y69{bottom:802.005000px;}
.ya7{bottom:812.985000px;}
.y68{bottom:819.285000px;}
.yf{bottom:829.005000px;}
.ya6{bottom:830.445000px;}
.y67{bottom:836.565000px;}
.ya5{bottom:847.725000px;}
.y66{bottom:853.845000px;}
.ydd{bottom:864.645000px;}
.ya4{bottom:865.005000px;}
.y65{bottom:870.990000px;}
.ya3{bottom:882.330000px;}
.y64{bottom:888.270000px;}
.ya2{bottom:899.610000px;}
.y63{bottom:905.550000px;}
.ya1{bottom:916.890000px;}
.y62{bottom:922.830000px;}
.ydc{bottom:933.630000px;}
.ya0{bottom:933.990000px;}
.y125{bottom:939.750000px;}
.y61{bottom:940.110000px;}
.y9f{bottom:950.910000px;}
.ydb{bottom:951.270000px;}
.y124{bottom:957.030000px;}
.y60{bottom:957.390000px;}
.y9e{bottom:968.550000px;}
.yfc{bottom:969.990000px;}
.y5f{bottom:974.490000px;}
.y9d{bottom:982.770000px;}
.yda{bottom:985.470000px;}
.yfb{bottom:987.270000px;}
.y5e{bottom:991.770000px;}
.yfa{bottom:1001.490000px;}
.yd9{bottom:1003.110000px;}
.y5d{bottom:1009.050000px;}
.yd8{bottom:1017.330000px;}
.y9c{bottom:1018.050000px;}
.y5c{bottom:1026.330000px;}
.yd7{bottom:1035.330000px;}
.y99{bottom:1036.050000px;}
.yd{bottom:1036.410000px;}
.yf9{bottom:1036.770000px;}
.y5b{bottom:1043.610000px;}
.yd6{bottom:1053.330000px;}
.y6{bottom:1056.390000px;}
.y112{bottom:1060.530000px;}
.y5a{bottom:1060.890000px;}
.yd5{bottom:1071.330000px;}
.yf8{bottom:1072.050000px;}
.y111{bottom:1077.630000px;}
.y59{bottom:1077.990000px;}
.y98{bottom:1088.610000px;}
.yd4{bottom:1089.330000px;}
.y58{bottom:1095.270000px;}
.y97{bottom:1106.610000px;}
.yd3{bottom:1107.330000px;}
.y57{bottom:1112.550000px;}
.y94{bottom:1124.610000px;}
.yd2{bottom:1125.330000px;}
.y56{bottom:1129.830000px;}
.yf6{bottom:1142.640000px;}
.y55{bottom:1147.140000px;}
.y92{bottom:1159.920000px;}
.yd1{bottom:1164.060000px;}
.y54{bottom:1164.420000px;}
.h22{height:17.100000px;}
.h24{height:17.280000px;}
.h27{height:17.316000px;}
.hb{height:19.440000px;}
.h11{height:28.968750px;}
.h13{height:29.520000px;}
.h2{height:32.976000px;}
.h28{height:34.380000px;}
.h23{height:34.416000px;}
.h26{height:34.560000px;}
.h29{height:34.596000px;}
.h8{height:36.180000px;}
.h1e{height:36.720000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h12{height:43.453125px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1f{height:48.088125px;}
.h2a{height:49.255313px;}
.h25{height:51.840000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h19{height:58.621992px;}
.h1d{height:58.651172px;}
.hf{height:59.439023px;}
.h20{height:60.226875px;}
.h10{height:61.189805px;}
.h21{height:61.423863px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:207.390000px;}
.h15{height:362.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.wb{width:95.400000px;}
.w10{width:101.916000px;}
.w18{width:103.500000px;}
.w16{width:103.536000px;}
.w17{width:103.680000px;}
.w15{width:103.716000px;}
.w13{width:126.756000px;}
.w14{width:134.460000px;}
.w5{width:151.950000px;}
.wc{width:153.390000px;}
.w12{width:174.630000px;}
.w11{width:188.670000px;}
.wa{width:200.595000px;}
.w8{width:223.455000px;}
.wf{width:242.670000px;}
.we{width:242.895000px;}
.wd{width:278.130000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.560000px;}
.x2{left:8.676000px;}
.x14{left:12.600000px;}
.x11{left:14.616000px;}
.xb{left:41.796000px;}
.x10{left:43.236000px;}
.xc{left:71.850000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x15{left:108.035987px;}
.xd{left:119.730000px;}
.xe{left:129.450000px;}
.xf{left:130.710000px;}
.x19{left:135.035987px;}
.x23{left:178.409987px;}
.x1d{left:184.350000px;}
.x24{left:186.150000px;}
.x12{left:215.175000px;}
.x5{left:232.950000px;}
.x8{left:272.235000px;}
.x16{left:283.035000px;}
.x1a{left:285.194987px;}
.x25{left:290.415000px;}
.x13{left:304.455000px;}
.x1b{left:325.335000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x1e{left:373.935000px;}
.x17{left:379.155000px;}
.x26{left:394.815000px;}
.x2d{left:396.074987px;}
.x2c{left:417.314987px;}
.x9{left:439.500000px;}
.x27{left:499.065000px;}
.x18{left:533.265000px;}
.x1f{left:549.285000px;}
.x1c{left:568.725000px;}
.x28{left:603.465000px;}
.x2b{left:654.944987px;}
.x20{left:676.950000px;}
.x2a{left:686.129987px;}
.x22{left:687.389987px;}
.x29{left:707.910000px;}
.x3{left:739.050000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-4.160000pt;}
.ls10{letter-spacing:-3.792000pt;}
.lsb{letter-spacing:-3.520000pt;}
.ls8{letter-spacing:-2.048000pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.113067pt;}
.ls1f{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.062720pt;}
.lsc{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.272533pt;}
.ls12{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls20{letter-spacing:0.736000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:14.032640pt;}
.ls1b{letter-spacing:16.800000pt;}
.ls19{letter-spacing:38.992640pt;}
.ls1c{letter-spacing:40.272640pt;}
.ls1a{letter-spacing:40.912640pt;}
.lsd{letter-spacing:56.912640pt;}
.ls16{letter-spacing:452.746667pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.778987pt;}
.ws1{word-spacing:-14.661120pt;}
.ws4{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.wsf{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.005120pt;}
.ws7{word-spacing:-9.760000pt;}
.ws6{word-spacing:-9.120000pt;}
.ws2{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._6{margin-left:-7.044053pt;}
._1f{margin-left:-5.365120pt;}
._5{margin-left:-4.261973pt;}
._2{margin-left:-2.864427pt;}
._3{margin-left:-1.937493pt;}
._0{margin-left:-1.029333pt;}
._1{width:1.008000pt;}
._4{width:2.177493pt;}
._8{width:3.120213pt;}
._b{width:4.068053pt;}
._7{width:5.227947pt;}
._f{width:6.724053pt;}
._9{width:8.339840pt;}
._a{width:9.420160pt;}
._15{width:10.603307pt;}
._13{width:11.845760pt;}
._17{width:14.301227pt;}
._22{width:15.234560pt;}
._23{width:16.192213pt;}
._16{width:17.370240pt;}
._d{width:18.302507pt;}
._c{width:19.200000pt;}
._14{width:20.611840pt;}
._1d{width:22.576000pt;}
._1e{width:23.797760pt;}
._21{width:24.877653pt;}
._12{width:26.340267pt;}
._20{width:27.352747pt;}
._11{width:29.800320pt;}
._e{width:32.296960pt;}
._10{width:38.193280pt;}
._19{width:40.656853pt;}
._18{width:41.646080pt;}
._1a{width:42.635733pt;}
._1c{width:65.947093pt;}
._1b{width:167.270827pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:2.880000pt;}
.yc5{bottom:3.040000pt;}
.y3{bottom:3.360000pt;}
.ye{bottom:3.680000pt;}
.y41{bottom:9.440000pt;}
.yf2{bottom:10.560000pt;}
.y96{bottom:10.880000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.yf3{bottom:18.234667pt;}
.yf5{bottom:18.240000pt;}
.yf7{bottom:18.400000pt;}
.y3e{bottom:18.560000pt;}
.y95{bottom:18.586667pt;}
.y9b{bottom:18.720000pt;}
.y42{bottom:20.000000pt;}
.y19{bottom:21.280000pt;}
.y40{bottom:22.560000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:28.000000pt;}
.y3d{bottom:33.920000pt;}
.y9a{bottom:34.080000pt;}
.y18{bottom:36.000000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:48.000000pt;}
.y3c{bottom:49.280000pt;}
.y17{bottom:50.760000pt;}
.y3b{bottom:64.640000pt;}
.y9{bottom:65.120000pt;}
.y16{bottom:65.320000pt;}
.y15{bottom:77.000000pt;}
.y3a{bottom:80.000000pt;}
.y8{bottom:82.746667pt;}
.yf4{bottom:88.192000pt;}
.y14{bottom:93.320000pt;}
.y110{bottom:94.272000pt;}
.y39{bottom:95.360000pt;}
.y91{bottom:96.672000pt;}
.y53{bottom:97.792000pt;}
.y7{bottom:99.066667pt;}
.y123{bottom:99.232000pt;}
.yd0{bottom:100.192000pt;}
.y2a{bottom:103.040000pt;}
.y13{bottom:109.480000pt;}
.y10f{bottom:109.632000pt;}
.y38{bottom:110.560000pt;}
.y90{bottom:112.032000pt;}
.y52{bottom:113.152000pt;}
.y122{bottom:114.592000pt;}
.y127{bottom:114.912000pt;}
.ycf{bottom:115.392000pt;}
.y29{bottom:116.800000pt;}
.yf1{bottom:119.552000pt;}
.y10e{bottom:124.832000pt;}
.y37{bottom:125.920000pt;}
.y12{bottom:125.960000pt;}
.y8f{bottom:127.392000pt;}
.y51{bottom:128.512000pt;}
.y121{bottom:130.272000pt;}
.yce{bottom:130.752000pt;}
.y28{bottom:132.800000pt;}
.y10d{bottom:140.186667pt;}
.y36{bottom:141.280000pt;}
.y8e{bottom:142.426667pt;}
.y50{bottom:143.866667pt;}
.y120{bottom:145.626667pt;}
.ycd{bottom:146.106667pt;}
.y27{bottom:148.186667pt;}
.y11{bottom:148.840000pt;}
.yf0{bottom:154.106667pt;}
.y10c{bottom:155.546667pt;}
.y35{bottom:156.666667pt;}
.y8d{bottom:157.786667pt;}
.y4f{bottom:159.226667pt;}
.y11f{bottom:160.826667pt;}
.ycc{bottom:161.146667pt;}
.y26{bottom:163.546667pt;}
.yef{bottom:169.146667pt;}
.y10{bottom:170.760000pt;}
.y10b{bottom:170.906667pt;}
.y34{bottom:172.026667pt;}
.y8c{bottom:173.306667pt;}
.y4e{bottom:174.426667pt;}
.y11e{bottom:176.186667pt;}
.ycb{bottom:176.826667pt;}
.y25{bottom:178.906667pt;}
.yee{bottom:184.506667pt;}
.y10a{bottom:185.946667pt;}
.y33{bottom:187.386667pt;}
.y8b{bottom:188.666667pt;}
.yca{bottom:189.466667pt;}
.y4d{bottom:189.786667pt;}
.y11d{bottom:191.546667pt;}
.y24{bottom:194.426667pt;}
.y109{bottom:198.266667pt;}
.yed{bottom:200.186667pt;}
.y32{bottom:202.586667pt;}
.y8a{bottom:204.026667pt;}
.y4c{bottom:205.146667pt;}
.yc9{bottom:205.466667pt;}
.y11c{bottom:206.906667pt;}
.y23{bottom:209.946667pt;}
.yec{bottom:215.386667pt;}
.y31{bottom:217.946667pt;}
.y89{bottom:219.386667pt;}
.y4b{bottom:220.506667pt;}
.yc8{bottom:221.466667pt;}
.y11b{bottom:221.946667pt;}
.y126{bottom:222.266667pt;}
.y22{bottom:225.306667pt;}
.yeb{bottom:230.426667pt;}
.y30{bottom:233.306667pt;}
.y88{bottom:235.706667pt;}
.y4a{bottom:235.866667pt;}
.yc7{bottom:237.466667pt;}
.y11a{bottom:237.626667pt;}
.y21{bottom:240.826667pt;}
.yea{bottom:245.786667pt;}
.y2f{bottom:248.666667pt;}
.y49{bottom:251.226667pt;}
.y87{bottom:251.866667pt;}
.y119{bottom:252.826667pt;}
.yc6{bottom:253.466667pt;}
.y20{bottom:256.186667pt;}
.ye9{bottom:258.106667pt;}
.y2e{bottom:264.026667pt;}
.y48{bottom:266.426667pt;}
.y86{bottom:268.186667pt;}
.yc4{bottom:269.466667pt;}
.y1f{bottom:271.866667pt;}
.y2d{bottom:279.386667pt;}
.y47{bottom:281.786667pt;}
.y85{bottom:283.546667pt;}
.yc3{bottom:288.506667pt;}
.y2c{bottom:294.586667pt;}
.y1e{bottom:296.346667pt;}
.y46{bottom:297.146667pt;}
.y84{bottom:298.586667pt;}
.y118{bottom:298.906667pt;}
.yc2{bottom:303.746667pt;}
.y2b{bottom:309.946667pt;}
.y1d{bottom:311.866667pt;}
.y45{bottom:312.546667pt;}
.y83{bottom:313.986667pt;}
.y117{bottom:314.306667pt;}
.yc1{bottom:319.426667pt;}
.y44{bottom:327.586667pt;}
.y82{bottom:329.666667pt;}
.yc0{bottom:334.786667pt;}
.y43{bottom:343.426667pt;}
.y81{bottom:344.866667pt;}
.ybf{bottom:350.146667pt;}
.y3f{bottom:356.066667pt;}
.y80{bottom:360.226667pt;}
.ybe{bottom:365.506667pt;}
.y7f{bottom:375.586667pt;}
.ybd{bottom:380.866667pt;}
.y1c{bottom:388.706667pt;}
.y7e{bottom:390.946667pt;}
.ybc{bottom:396.066667pt;}
.y7d{bottom:405.986667pt;}
.y116{bottom:406.306667pt;}
.ybb{bottom:411.106667pt;}
.y7c{bottom:421.186667pt;}
.y115{bottom:421.506667pt;}
.yba{bottom:426.466667pt;}
.y7b{bottom:436.866667pt;}
.yb9{bottom:442.146667pt;}
.y108{bottom:449.666667pt;}
.y7a{bottom:452.226667pt;}
.yb8{bottom:457.506667pt;}
.y107{bottom:464.866667pt;}
.y79{bottom:467.586667pt;}
.yb7{bottom:472.866667pt;}
.y106{bottom:480.226667pt;}
.y78{bottom:482.946667pt;}
.yb6{bottom:489.026667pt;}
.y105{bottom:495.586667pt;}
.y77{bottom:498.306667pt;}
.ye8{bottom:503.426667pt;}
.yb5{bottom:505.346667pt;}
.y104{bottom:511.906667pt;}
.y76{bottom:513.506667pt;}
.ye7{bottom:518.786667pt;}
.yb4{bottom:520.706667pt;}
.y103{bottom:528.226667pt;}
.y75{bottom:528.866667pt;}
.ye6{bottom:535.106667pt;}
.yb3{bottom:536.066667pt;}
.y74{bottom:544.253333pt;}
.y102{bottom:544.413333pt;}
.yb2{bottom:551.453333pt;}
.y101{bottom:559.453333pt;}
.y73{bottom:559.613333pt;}
.yb1{bottom:566.333333pt;}
.ye5{bottom:567.613333pt;}
.y72{bottom:574.653333pt;}
.y100{bottom:574.813333pt;}
.y114{bottom:574.973333pt;}
.yb0{bottom:581.693333pt;}
.ye4{bottom:583.933333pt;}
.y71{bottom:590.013333pt;}
.y113{bottom:590.333333pt;}
.yff{bottom:590.493333pt;}
.yaf{bottom:597.373333pt;}
.ye3{bottom:600.253333pt;}
.y70{bottom:605.533333pt;}
.yfe{bottom:605.853333pt;}
.yae{bottom:612.733333pt;}
.ye2{bottom:615.613333pt;}
.yfd{bottom:618.013333pt;}
.y6f{bottom:620.893333pt;}
.yad{bottom:629.053333pt;}
.ye1{bottom:630.653333pt;}
.y6e{bottom:636.253333pt;}
.yac{bottom:644.413333pt;}
.ye0{bottom:646.013333pt;}
.y6d{bottom:651.613333pt;}
.yab{bottom:660.573333pt;}
.ydf{bottom:661.533333pt;}
.y6c{bottom:666.973333pt;}
.yaa{bottom:675.933333pt;}
.yde{bottom:676.893333pt;}
.y6b{bottom:682.333333pt;}
.ya9{bottom:692.253333pt;}
.y6a{bottom:697.533333pt;}
.ya8{bottom:707.293333pt;}
.y1a{bottom:710.653333pt;}
.y69{bottom:712.893333pt;}
.ya7{bottom:722.653333pt;}
.y68{bottom:728.253333pt;}
.yf{bottom:736.893333pt;}
.ya6{bottom:738.173333pt;}
.y67{bottom:743.613333pt;}
.ya5{bottom:753.533333pt;}
.y66{bottom:758.973333pt;}
.ydd{bottom:768.573333pt;}
.ya4{bottom:768.893333pt;}
.y65{bottom:774.213333pt;}
.ya3{bottom:784.293333pt;}
.y64{bottom:789.573333pt;}
.ya2{bottom:799.653333pt;}
.y63{bottom:804.933333pt;}
.ya1{bottom:815.013333pt;}
.y62{bottom:820.293333pt;}
.ydc{bottom:829.893333pt;}
.ya0{bottom:830.213333pt;}
.y125{bottom:835.333333pt;}
.y61{bottom:835.653333pt;}
.y9f{bottom:845.253333pt;}
.ydb{bottom:845.573333pt;}
.y124{bottom:850.693333pt;}
.y60{bottom:851.013333pt;}
.y9e{bottom:860.933333pt;}
.yfc{bottom:862.213333pt;}
.y5f{bottom:866.213333pt;}
.y9d{bottom:873.573333pt;}
.yda{bottom:875.973333pt;}
.yfb{bottom:877.573333pt;}
.y5e{bottom:881.573333pt;}
.yfa{bottom:890.213333pt;}
.yd9{bottom:891.653333pt;}
.y5d{bottom:896.933333pt;}
.yd8{bottom:904.293333pt;}
.y9c{bottom:904.933333pt;}
.y5c{bottom:912.293333pt;}
.yd7{bottom:920.293333pt;}
.y99{bottom:920.933333pt;}
.yd{bottom:921.253333pt;}
.yf9{bottom:921.573333pt;}
.y5b{bottom:927.653333pt;}
.yd6{bottom:936.293333pt;}
.y6{bottom:939.013333pt;}
.y112{bottom:942.693333pt;}
.y5a{bottom:943.013333pt;}
.yd5{bottom:952.293333pt;}
.yf8{bottom:952.933333pt;}
.y111{bottom:957.893333pt;}
.y59{bottom:958.213333pt;}
.y98{bottom:967.653333pt;}
.yd4{bottom:968.293333pt;}
.y58{bottom:973.573333pt;}
.y97{bottom:983.653333pt;}
.yd3{bottom:984.293333pt;}
.y57{bottom:988.933333pt;}
.y94{bottom:999.653333pt;}
.yd2{bottom:1000.293333pt;}
.y56{bottom:1004.293333pt;}
.yf6{bottom:1015.680000pt;}
.y55{bottom:1019.680000pt;}
.y92{bottom:1031.040000pt;}
.yd1{bottom:1034.720000pt;}
.y54{bottom:1035.040000pt;}
.h22{height:15.200000pt;}
.h24{height:15.360000pt;}
.h27{height:15.392000pt;}
.hb{height:17.280000pt;}
.h11{height:25.750000pt;}
.h13{height:26.240000pt;}
.h2{height:29.312000pt;}
.h28{height:30.560000pt;}
.h23{height:30.592000pt;}
.h26{height:30.720000pt;}
.h29{height:30.752000pt;}
.h8{height:32.160000pt;}
.h1e{height:32.640000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h12{height:38.625000pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1f{height:42.745000pt;}
.h2a{height:43.782500pt;}
.h25{height:46.080000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h19{height:52.108438pt;}
.h1d{height:52.134375pt;}
.hf{height:52.834688pt;}
.h20{height:53.535000pt;}
.h10{height:54.390938pt;}
.h21{height:54.598989pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:184.346667pt;}
.h15{height:321.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.wb{width:84.800000pt;}
.w10{width:90.592000pt;}
.w18{width:92.000000pt;}
.w16{width:92.032000pt;}
.w17{width:92.160000pt;}
.w15{width:92.192000pt;}
.w13{width:112.672000pt;}
.w14{width:119.520000pt;}
.w5{width:135.066667pt;}
.wc{width:136.346667pt;}
.w12{width:155.226667pt;}
.w11{width:167.706667pt;}
.wa{width:178.306667pt;}
.w8{width:198.626667pt;}
.wf{width:215.706667pt;}
.we{width:215.906667pt;}
.wd{width:247.226667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.720000pt;}
.x2{left:7.712000pt;}
.x14{left:11.200000pt;}
.x11{left:12.992000pt;}
.xb{left:37.152000pt;}
.x10{left:38.432000pt;}
.xc{left:63.866667pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x15{left:96.031988pt;}
.xd{left:106.426667pt;}
.xe{left:115.066667pt;}
.xf{left:116.186667pt;}
.x19{left:120.031988pt;}
.x23{left:158.586655pt;}
.x1d{left:163.866667pt;}
.x24{left:165.466667pt;}
.x12{left:191.266667pt;}
.x5{left:207.066667pt;}
.x8{left:241.986667pt;}
.x16{left:251.586667pt;}
.x1a{left:253.506655pt;}
.x25{left:258.146667pt;}
.x13{left:270.626667pt;}
.x1b{left:289.186667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x1e{left:332.386667pt;}
.x17{left:337.026667pt;}
.x26{left:350.946667pt;}
.x2d{left:352.066655pt;}
.x2c{left:370.946655pt;}
.x9{left:390.666667pt;}
.x27{left:443.613333pt;}
.x18{left:474.013333pt;}
.x1f{left:488.253333pt;}
.x1c{left:505.533333pt;}
.x28{left:536.413333pt;}
.x2b{left:582.173322pt;}
.x20{left:601.733333pt;}
.x2a{left:609.893322pt;}
.x22{left:611.013322pt;}
.x29{left:629.253333pt;}
.x3{left:656.933333pt;}
}




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