
    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_8548a761b8cce594525daf33.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_2e67913d6d016e5d4ae6e066.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_c50f8a74d58b00c8c5b2eb64.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_2ff43d505e2eca17a39480b1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_28dd48459c8490eb78d3fa08.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6d32ab56b0570807191cd83c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.675781;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_1d809ea17bdcb1e9249e48e7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_3b475c401788465ceda3b55c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_abbb8409fbfff6e6967fc785.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_c902ebbec0e64c200b52e7e9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.689941;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_f895d376c65506d986f80d5a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.689941;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_a2664f26bf108313f085638a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_a01d2f6db25ee1033442b72b.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ebeda0bf8ac3815260c0d361.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_2b3a62ba712e2a975b4c0048.woff')format("woff");}.fff{font-family:fff;line-height:0.891602;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_f78a149eea6a145d10c8ff2e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_21045bf4cbedfb1f542589de.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_9ad204d9a1d1737151507ad7.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_d322a91c26f4936e84275c1c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls26{letter-spacing:-1.838592px;}
.ls29{letter-spacing:-1.741824px;}
.ls28{letter-spacing:-1.536192px;}
.ls2b{letter-spacing:-1.518048px;}
.ls2c{letter-spacing:-1.499904px;}
.ls2a{letter-spacing:-1.439424px;}
.ls31{letter-spacing:-0.985824px;}
.ls30{letter-spacing:-0.937440px;}
.ls27{letter-spacing:-0.919296px;}
.ls2e{letter-spacing:-0.901152px;}
.ls2d{letter-spacing:-0.858816px;}
.ls2f{letter-spacing:-0.840672px;}
.ls1a{letter-spacing:-0.459648px;}
.ls25{letter-spacing:-0.417312px;}
.ls18{letter-spacing:-0.381024px;}
.ls24{letter-spacing:-0.361152px;}
.ls14{letter-spacing:-0.338688px;}
.lsb{letter-spacing:-0.320544px;}
.ls19{letter-spacing:-0.302400px;}
.ls23{letter-spacing:-0.273600px;}
.ls13{letter-spacing:-0.260064px;}
.ls16{letter-spacing:-0.241920px;}
.lsc{letter-spacing:-0.223776px;}
.ls10{letter-spacing:-0.198720px;}
.lse{letter-spacing:-0.175392px;}
.ls15{letter-spacing:-0.157248px;}
.lsa{letter-spacing:-0.152352px;}
.ls9{letter-spacing:-0.145728px;}
.ls17{letter-spacing:-0.145152px;}
.lsf{letter-spacing:-0.132480px;}
.lsd{letter-spacing:-0.120960px;}
.ls8{letter-spacing:-0.119232px;}
.ls7{letter-spacing:-0.079488px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.059904px;}
.ls2{letter-spacing:0.060048px;}
.ls1c{letter-spacing:0.123552px;}
.ls1d{letter-spacing:0.161568px;}
.ls4{letter-spacing:0.194832px;}
.ls0{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.240480px;}
.ls12{letter-spacing:0.242208px;}
.ls1e{letter-spacing:0.242352px;}
.ls1b{letter-spacing:0.285120px;}
.ls11{letter-spacing:0.359136px;}
.ls1f{letter-spacing:4.851648px;}
.ls36{letter-spacing:15.661440px;}
.ls35{letter-spacing:16.185600px;}
.ls20{letter-spacing:18.806400px;}
.ls5{letter-spacing:31.511520px;}
.ls34{letter-spacing:46.186560px;}
.ls32{letter-spacing:56.822976px;}
.ls22{letter-spacing:63.587520px;}
.ls21{letter-spacing:63.588960px;}
.ls33{letter-spacing:64.385856px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.480512px;}
.ws2{word-spacing:-16.440768px;}
.ws6{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.974848px;}
.wse{word-spacing:-14.962752px;}
.ws9{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.ws10{word-spacing:-14.859936px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws1c{word-spacing:-14.817600px;}
.ws4{word-spacing:-14.799456px;}
.ws7{word-spacing:-14.781312px;}
.ws1a{word-spacing:-14.279328px;}
.ws18{word-spacing:-14.261184px;}
.ws19{word-spacing:-14.218848px;}
.ws12{word-spacing:-14.200704px;}
.ws1b{word-spacing:-14.182560px;}
.ws1d{word-spacing:-14.134176px;}
.ws15{word-spacing:-13.680576px;}
.wsb{word-spacing:-13.680000px;}
.ws17{word-spacing:-13.620096px;}
.ws16{word-spacing:-13.601952px;}
.ws13{word-spacing:-13.583808px;}
.ws14{word-spacing:-13.378176px;}
.wsc{word-spacing:-13.318848px;}
.ws11{word-spacing:-13.281408px;}
.wsd{word-spacing:-0.060480px;}
.wsa{word-spacing:0.000000px;}
._1f{margin-left:-3.336480px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._9{width:2.544912px;}
._6{width:4.152240px;}
._5{width:5.191776px;}
._4{width:6.964704px;}
._d{width:8.335584px;}
._10{width:9.374400px;}
._2{width:10.429776px;}
._3{width:11.612160px;}
._e{width:13.547520px;}
._19{width:16.273296px;}
._8{width:18.021888px;}
._7{width:19.423584px;}
._11{width:20.544192px;}
._c{width:21.591360px;}
._b{width:23.224320px;}
._12{width:25.099200px;}
._14{width:26.308800px;}
._15{width:27.699840px;}
._a{width:28.728000px;}
._21{width:29.937600px;}
._20{width:31.207680px;}
._16{width:32.235840px;}
._1e{width:33.747840px;}
._23{width:34.896960px;}
._2d{width:36.046080px;}
._2a{width:37.486944px;}
._24{width:42.456960px;}
._f{width:43.787520px;}
._13{width:45.662400px;}
._1b{width:46.900512px;}
._28{width:51.718032px;}
._29{width:52.983360px;}
._18{width:56.730240px;}
._2b{width:60.182352px;}
._17{width:61.205760px;}
._2e{width:62.717760px;}
._25{width:65.257920px;}
._1d{width:68.947200px;}
._27{width:70.156800px;}
._1a{width:71.245440px;}
._30{width:78.981120px;}
._2f{width:80.202240px;}
._26{width:86.546880px;}
._22{width:87.640272px;}
._1c{width:89.087040px;}
._2c{width:114.065280px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y40{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:0.180000px;}
.yd9{bottom:0.240000px;}
.ydd{bottom:0.360000px;}
.yce{bottom:0.660000px;}
.yd6{bottom:1.020000px;}
.y3f{bottom:1.740000px;}
.yd5{bottom:2.100000px;}
.ydb{bottom:3.480000px;}
.ydf{bottom:3.600000px;}
.ya0{bottom:3.840000px;}
.y8b{bottom:4.260000px;}
.yc0{bottom:4.560000px;}
.y9e{bottom:21.840000px;}
.y89{bottom:22.260000px;}
.yc2{bottom:22.560000px;}
.ya2{bottom:39.840000px;}
.y8d{bottom:40.260000px;}
.y42{bottom:53.640000px;}
.y6{bottom:58.320000px;}
.y3e{bottom:64.500000px;}
.yb0{bottom:75.840000px;}
.y5{bottom:86.400000px;}
.ya6{bottom:93.840000px;}
.y3d{bottom:118.800000px;}
.ycb{bottom:121.500000px;}
.yf9{bottom:122.040000px;}
.y155{bottom:123.120000px;}
.y9c{bottom:123.480000px;}
.y3c{bottom:136.080000px;}
.yf8{bottom:139.320000px;}
.y12f{bottom:140.400000px;}
.y9b{bottom:140.760000px;}
.y3b{bottom:153.360000px;}
.y9a{bottom:154.500000px;}
.yf7{bottom:156.600000px;}
.y12e{bottom:157.680000px;}
.y3a{bottom:170.640000px;}
.y99{bottom:172.500000px;}
.yf6{bottom:173.880000px;}
.y12d{bottom:174.960000px;}
.yd7{bottom:181.500000px;}
.y39{bottom:187.920000px;}
.y98{bottom:190.500000px;}
.yf5{bottom:191.160000px;}
.y12c{bottom:192.240000px;}
.yd4{bottom:199.500000px;}
.y38{bottom:205.200000px;}
.yf4{bottom:208.440000px;}
.y97{bottom:208.500000px;}
.y12b{bottom:209.520000px;}
.y37{bottom:222.480000px;}
.yf3{bottom:225.360000px;}
.y96{bottom:226.500000px;}
.y12a{bottom:226.800000px;}
.y36{bottom:239.760000px;}
.yf2{bottom:242.640000px;}
.y129{bottom:244.080000px;}
.y95{bottom:244.500000px;}
.y35{bottom:257.040000px;}
.yf1{bottom:259.920000px;}
.y128{bottom:261.360000px;}
.y94{bottom:262.500000px;}
.y34{bottom:274.320000px;}
.y127{bottom:276.840000px;}
.yf0{bottom:277.200000px;}
.y154{bottom:278.280000px;}
.y92{bottom:280.500000px;}
.y126{bottom:288.720000px;}
.yef{bottom:294.480000px;}
.y153{bottom:295.560000px;}
.y93{bottom:298.500000px;}
.y33{bottom:300.240000px;}
.y125{bottom:304.560000px;}
.yee{bottom:311.760000px;}
.y152{bottom:312.840000px;}
.y124{bottom:316.440000px;}
.y90{bottom:316.500000px;}
.y32{bottom:327.960000px;}
.yed{bottom:329.040000px;}
.y151{bottom:330.120000px;}
.y123{bottom:333.720000px;}
.y91{bottom:334.500000px;}
.y31{bottom:342.000000px;}
.yec{bottom:346.320000px;}
.y150{bottom:347.400000px;}
.y122{bottom:351.000000px;}
.y8c{bottom:352.500000px;}
.y30{bottom:356.040000px;}
.yeb{bottom:363.600000px;}
.y14f{bottom:364.680000px;}
.y121{bottom:368.280000px;}
.y2f{bottom:369.720000px;}
.y8f{bottom:370.500000px;}
.yea{bottom:380.880000px;}
.y14e{bottom:381.960000px;}
.y2e{bottom:384.840000px;}
.y120{bottom:385.560000px;}
.y8e{bottom:388.500000px;}
.ye9{bottom:398.160000px;}
.y14d{bottom:399.240000px;}
.y2d{bottom:402.120000px;}
.y11f{bottom:402.480000px;}
.y88{bottom:406.500000px;}
.ye8{bottom:415.440000px;}
.y14c{bottom:416.520000px;}
.y2c{bottom:419.400000px;}
.y11e{bottom:419.760000px;}
.y8a{bottom:424.500000px;}
.ye7{bottom:432.360000px;}
.y14b{bottom:433.800000px;}
.y2b{bottom:436.680000px;}
.y11d{bottom:437.040000px;}
.yca{bottom:439.560000px;}
.y87{bottom:446.760000px;}
.ye6{bottom:449.640000px;}
.y14a{bottom:451.080000px;}
.yc8{bottom:453.000000px;}
.y2a{bottom:453.960000px;}
.y11c{bottom:454.320000px;}
.y86{bottom:464.040000px;}
.ye5{bottom:466.920000px;}
.y149{bottom:468.000000px;}
.y11b{bottom:470.160000px;}
.yc9{bottom:471.000000px;}
.y29{bottom:471.240000px;}
.y64{bottom:481.320000px;}
.y11a{bottom:482.040000px;}
.ye4{bottom:484.200000px;}
.yd3{bottom:484.560000px;}
.y148{bottom:485.280000px;}
.y28{bottom:488.520000px;}
.yc6{bottom:489.000000px;}
.y85{bottom:495.720000px;}
.y119{bottom:497.880000px;}
.yd2{bottom:501.480000px;}
.y147{bottom:502.560000px;}
.y27{bottom:505.800000px;}
.yc7{bottom:507.000000px;}
.y63{bottom:508.680000px;}
.y118{bottom:509.400000px;}
.yd1{bottom:515.520000px;}
.ye3{bottom:518.760000px;}
.y146{bottom:519.840000px;}
.y84{bottom:522.000000px;}
.y26{bottom:522.720000px;}
.yc4{bottom:525.000000px;}
.y117{bottom:526.680000px;}
.y62{bottom:534.960000px;}
.ye2{bottom:536.040000px;}
.y145{bottom:537.120000px;}
.y83{bottom:539.280000px;}
.y25{bottom:540.000000px;}
.yc5{bottom:543.000000px;}
.y116{bottom:543.960000px;}
.y61{bottom:552.240000px;}
.ye1{bottom:553.320000px;}
.y144{bottom:554.400000px;}
.y82{bottom:556.560000px;}
.y24{bottom:557.280000px;}
.yc1{bottom:561.000000px;}
.y115{bottom:561.240000px;}
.ye0{bottom:570.600000px;}
.y143{bottom:571.680000px;}
.y81{bottom:573.840000px;}
.y23{bottom:574.560000px;}
.y60{bottom:578.520000px;}
.yc3{bottom:579.000000px;}
.yde{bottom:585.000000px;}
.y142{bottom:588.960000px;}
.y80{bottom:591.120000px;}
.y22{bottom:591.840000px;}
.y5f{bottom:595.800000px;}
.ybf{bottom:597.000000px;}
.ydc{bottom:603.000000px;}
.y141{bottom:606.240000px;}
.y7f{bottom:608.400000px;}
.y21{bottom:609.120000px;}
.y5e{bottom:613.080000px;}
.ybe{bottom:619.560000px;}
.y140{bottom:623.520000px;}
.y7e{bottom:625.320000px;}
.y20{bottom:626.400000px;}
.y5d{bottom:630.000000px;}
.y114{bottom:630.360000px;}
.ybd{bottom:636.840000px;}
.y13f{bottom:640.800000px;}
.y7d{bottom:642.600000px;}
.y1f{bottom:643.680000px;}
.y5c{bottom:647.280000px;}
.y113{bottom:647.640000px;}
.ybc{bottom:651.000000px;}
.y13e{bottom:658.080000px;}
.y7c{bottom:659.880000px;}
.y1e{bottom:660.960000px;}
.y5b{bottom:664.560000px;}
.y112{bottom:664.920000px;}
.ybb{bottom:669.000000px;}
.y13d{bottom:675.000000px;}
.y7b{bottom:677.160000px;}
.y1d{bottom:678.240000px;}
.y5a{bottom:681.840000px;}
.y111{bottom:682.200000px;}
.yba{bottom:687.000000px;}
.y13c{bottom:692.280000px;}
.y1c{bottom:695.520000px;}
.y59{bottom:699.120000px;}
.y110{bottom:699.480000px;}
.y7a{bottom:703.440000px;}
.yb8{bottom:705.000000px;}
.y13b{bottom:709.560000px;}
.y1b{bottom:712.440000px;}
.y58{bottom:716.400000px;}
.y79{bottom:720.720000px;}
.yb9{bottom:723.000000px;}
.y13a{bottom:726.840000px;}
.y1a{bottom:729.720000px;}
.y57{bottom:733.680000px;}
.y78{bottom:738.000000px;}
.yb5{bottom:741.000000px;}
.y139{bottom:744.120000px;}
.y19{bottom:747.000000px;}
.y56{bottom:750.960000px;}
.y77{bottom:755.280000px;}
.yb7{bottom:759.000000px;}
.y138{bottom:761.400000px;}
.y18{bottom:764.280000px;}
.y10f{bottom:768.240000px;}
.y76{bottom:772.560000px;}
.yb6{bottom:777.000000px;}
.y55{bottom:777.240000px;}
.y137{bottom:778.680000px;}
.y17{bottom:781.560000px;}
.y10e{bottom:785.520000px;}
.y54{bottom:794.520000px;}
.yaf{bottom:795.000000px;}
.y136{bottom:795.960000px;}
.y16{bottom:798.840000px;}
.y10d{bottom:802.800000px;}
.yd0{bottom:807.120000px;}
.yb4{bottom:813.000000px;}
.y135{bottom:813.240000px;}
.y15{bottom:816.120000px;}
.y75{bottom:817.200000px;}
.y10c{bottom:820.080000px;}
.y53{bottom:820.800000px;}
.ycf{bottom:824.400000px;}
.y134{bottom:830.520000px;}
.yb3{bottom:831.000000px;}
.y14{bottom:833.400000px;}
.y74{bottom:835.200000px;}
.y10b{bottom:837.360000px;}
.y52{bottom:837.720000px;}
.ycd{bottom:838.500000px;}
.y133{bottom:847.800000px;}
.yb2{bottom:849.000000px;}
.y13{bottom:852.840000px;}
.y10a{bottom:854.640000px;}
.yda{bottom:858.000000px;}
.y73{bottom:862.560000px;}
.y51{bottom:864.000000px;}
.y132{bottom:864.720000px;}
.yb1{bottom:867.000000px;}
.y12{bottom:870.120000px;}
.y109{bottom:871.920000px;}
.yd8{bottom:876.000000px;}
.y131{bottom:882.000000px;}
.yac{bottom:885.000000px;}
.y11{bottom:887.400000px;}
.y72{bottom:888.840000px;}
.y108{bottom:889.200000px;}
.y50{bottom:890.280000px;}
.y130{bottom:899.280000px;}
.yae{bottom:903.000000px;}
.y107{bottom:906.120000px;}
.y10{bottom:906.840000px;}
.y71{bottom:907.200000px;}
.y4f{bottom:916.560000px;}
.yad{bottom:921.000000px;}
.y106{bottom:923.400000px;}
.y70{bottom:925.560000px;}
.yf{bottom:929.520000px;}
.y4e{bottom:933.840000px;}
.ya5{bottom:939.000000px;}
.y105{bottom:940.680000px;}
.ye{bottom:941.400000px;}
.y6f{bottom:943.920000px;}
.y4d{bottom:951.120000px;}
.yab{bottom:957.000000px;}
.y104{bottom:957.960000px;}
.y6e{bottom:962.280000px;}
.yd{bottom:964.080000px;}
.y4c{bottom:968.400000px;}
.yaa{bottom:975.000000px;}
.y103{bottom:975.240000px;}
.yc{bottom:975.960000px;}
.y6d{bottom:980.640000px;}
.y4b{bottom:985.680000px;}
.y102{bottom:992.520000px;}
.ya9{bottom:993.000000px;}
.yb{bottom:998.640000px;}
.y4a{bottom:1002.960000px;}
.y6c{bottom:1008.000000px;}
.y101{bottom:1009.800000px;}
.ya8{bottom:1011.000000px;}
.ya{bottom:1020.240000px;}
.y100{bottom:1027.080000px;}
.ya7{bottom:1029.000000px;}
.y6b{bottom:1034.280000px;}
.y49{bottom:1037.520000px;}
.yff{bottom:1044.360000px;}
.ya1{bottom:1047.000000px;}
.y9{bottom:1050.480000px;}
.y6a{bottom:1051.560000px;}
.y48{bottom:1054.800000px;}
.yfe{bottom:1061.640000px;}
.ya4{bottom:1065.000000px;}
.y69{bottom:1068.480000px;}
.y47{bottom:1071.720000px;}
.y8{bottom:1074.600000px;}
.yfd{bottom:1078.920000px;}
.ya3{bottom:1083.000000px;}
.y68{bottom:1086.840000px;}
.y46{bottom:1089.000000px;}
.yfc{bottom:1096.200000px;}
.y9d{bottom:1101.000000px;}
.y67{bottom:1104.120000px;}
.y45{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.yfb{bottom:1113.120000px;}
.y9f{bottom:1119.000000px;}
.y66{bottom:1121.400000px;}
.y44{bottom:1123.560000px;}
.yfa{bottom:1128.960000px;}
.y4{bottom:1134.720000px;}
.y65{bottom:1139.760000px;}
.y43{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y41{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hc{height:4.500000px;}
.h12{height:18.000000px;}
.hf{height:19.500000px;}
.h1b{height:23.994141px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.h11{height:36.000000px;}
.hd{height:37.085625px;}
.he{height:37.500000px;}
.h5{height:40.989375px;}
.ha{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h3{height:48.095156px;}
.h13{height:54.000000px;}
.h10{height:55.500000px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h15{height:90.000000px;}
.h14{height:108.000000px;}
.h1a{height:255.000000px;}
.h19{height:279.000000px;}
.h18{height:282.000000px;}
.h16{height:315.000000px;}
.h17{height:316.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.we{width:54.000000px;}
.wd{width:63.000000px;}
.wc{width:73.500000px;}
.w5{width:88.500000px;}
.w6{width:90.000000px;}
.w17{width:91.500000px;}
.w13{width:106.500000px;}
.w14{width:111.000000px;}
.wb{width:115.500000px;}
.w15{width:117.000000px;}
.w12{width:123.000000px;}
.wa{width:135.000000px;}
.w16{width:148.500000px;}
.w7{width:154.500000px;}
.w4{width:178.500000px;}
.w8{width:183.000000px;}
.w10{width:211.500000px;}
.wf{width:232.500000px;}
.w11{width:240.000000px;}
.w1a{width:336.000000px;}
.w3{width:337.500000px;}
.w19{width:357.000000px;}
.w9{width:444.000000px;}
.w18{width:561.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xf{left:1.560048px;}
.x14{left:7.500000px;}
.x17{left:8.520000px;}
.x2f{left:26.435676px;}
.x31{left:31.214712px;}
.x30{left:59.856000px;}
.x32{left:87.805320px;}
.x34{left:97.769760px;}
.x13{left:100.500000px;}
.x5{left:108.000000px;}
.x10{left:109.746108px;}
.x8{left:113.048568px;}
.xc{left:118.018080px;}
.x4{left:129.812616px;}
.x36{left:135.000000px;}
.xe{left:160.500000px;}
.x26{left:166.500000px;}
.xa{left:227.205324px;}
.x9{left:229.512456px;}
.x25{left:249.000000px;}
.x1a{left:255.000000px;}
.x2b{left:257.923836px;}
.x20{left:260.831520px;}
.xb{left:281.885004px;}
.x2{left:298.937628px;}
.x29{left:309.171384px;}
.x12{left:312.079104px;}
.x1b{left:318.956544px;}
.x1f{left:333.000000px;}
.x21{left:339.000000px;}
.x2e{left:341.700000px;}
.x33{left:358.500000px;}
.x2c{left:361.020000px;}
.x35{left:417.108240px;}
.x15{left:438.000000px;}
.x3{left:446.474880px;}
.x2d{left:457.500000px;}
.x22{left:460.500000px;}
.xd{left:473.040000px;}
.x11{left:500.040000px;}
.x1{left:514.061640px;}
.x18{left:526.500000px;}
.x1c{left:543.000000px;}
.x27{left:548.009640px;}
.x28{left:552.149640px;}
.x23{left:565.500000px;}
.x7{left:603.506520px;}
.x16{left:615.000000px;}
.x24{left:676.500000px;}
.x1d{left:678.000000px;}
.x19{left:703.500000px;}
.x1e{left:739.500000px;}
.x2a{left:741.134880px;}
.x6{left:768.224520px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls26{letter-spacing:-1.634304pt;}
.ls29{letter-spacing:-1.548288pt;}
.ls28{letter-spacing:-1.365504pt;}
.ls2b{letter-spacing:-1.349376pt;}
.ls2c{letter-spacing:-1.333248pt;}
.ls2a{letter-spacing:-1.279488pt;}
.ls31{letter-spacing:-0.876288pt;}
.ls30{letter-spacing:-0.833280pt;}
.ls27{letter-spacing:-0.817152pt;}
.ls2e{letter-spacing:-0.801024pt;}
.ls2d{letter-spacing:-0.763392pt;}
.ls2f{letter-spacing:-0.747264pt;}
.ls1a{letter-spacing:-0.408576pt;}
.ls25{letter-spacing:-0.370944pt;}
.ls18{letter-spacing:-0.338688pt;}
.ls24{letter-spacing:-0.321024pt;}
.ls14{letter-spacing:-0.301056pt;}
.lsb{letter-spacing:-0.284928pt;}
.ls19{letter-spacing:-0.268800pt;}
.ls23{letter-spacing:-0.243200pt;}
.ls13{letter-spacing:-0.231168pt;}
.ls16{letter-spacing:-0.215040pt;}
.lsc{letter-spacing:-0.198912pt;}
.ls10{letter-spacing:-0.176640pt;}
.lse{letter-spacing:-0.155904pt;}
.ls15{letter-spacing:-0.139776pt;}
.lsa{letter-spacing:-0.135424pt;}
.ls9{letter-spacing:-0.129536pt;}
.ls17{letter-spacing:-0.129024pt;}
.lsf{letter-spacing:-0.117760pt;}
.lsd{letter-spacing:-0.107520pt;}
.ls8{letter-spacing:-0.105984pt;}
.ls7{letter-spacing:-0.070656pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.053248pt;}
.ls2{letter-spacing:0.053376pt;}
.ls1c{letter-spacing:0.109824pt;}
.ls1d{letter-spacing:0.143616pt;}
.ls4{letter-spacing:0.173184pt;}
.ls0{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.213760pt;}
.ls12{letter-spacing:0.215296pt;}
.ls1e{letter-spacing:0.215424pt;}
.ls1b{letter-spacing:0.253440pt;}
.ls11{letter-spacing:0.319232pt;}
.ls1f{letter-spacing:4.312576pt;}
.ls36{letter-spacing:13.921280pt;}
.ls35{letter-spacing:14.387200pt;}
.ls20{letter-spacing:16.716800pt;}
.ls5{letter-spacing:28.010240pt;}
.ls34{letter-spacing:41.054720pt;}
.ls32{letter-spacing:50.509312pt;}
.ls22{letter-spacing:56.522240pt;}
.ls21{letter-spacing:56.523520pt;}
.ls33{letter-spacing:57.231872pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws6{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.310976pt;}
.wse{word-spacing:-13.300224pt;}
.ws9{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.ws10{word-spacing:-13.208832pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws1c{word-spacing:-13.171200pt;}
.ws4{word-spacing:-13.155072pt;}
.ws7{word-spacing:-13.138944pt;}
.ws1a{word-spacing:-12.692736pt;}
.ws18{word-spacing:-12.676608pt;}
.ws19{word-spacing:-12.638976pt;}
.ws12{word-spacing:-12.622848pt;}
.ws1b{word-spacing:-12.606720pt;}
.ws1d{word-spacing:-12.563712pt;}
.ws15{word-spacing:-12.160512pt;}
.wsb{word-spacing:-12.160000pt;}
.ws17{word-spacing:-12.106752pt;}
.ws16{word-spacing:-12.090624pt;}
.ws13{word-spacing:-12.074496pt;}
.ws14{word-spacing:-11.891712pt;}
.wsc{word-spacing:-11.838976pt;}
.ws11{word-spacing:-11.805696pt;}
.wsd{word-spacing:-0.053760pt;}
.wsa{word-spacing:0.000000pt;}
._1f{margin-left:-2.965760pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._9{width:2.262144pt;}
._6{width:3.690880pt;}
._5{width:4.614912pt;}
._4{width:6.190848pt;}
._d{width:7.409408pt;}
._10{width:8.332800pt;}
._2{width:9.270912pt;}
._3{width:10.321920pt;}
._e{width:12.042240pt;}
._19{width:14.465152pt;}
._8{width:16.019456pt;}
._7{width:17.265408pt;}
._11{width:18.261504pt;}
._c{width:19.192320pt;}
._b{width:20.643840pt;}
._12{width:22.310400pt;}
._14{width:23.385600pt;}
._15{width:24.622080pt;}
._a{width:25.536000pt;}
._21{width:26.611200pt;}
._20{width:27.740160pt;}
._16{width:28.654080pt;}
._1e{width:29.998080pt;}
._23{width:31.019520pt;}
._2d{width:32.040960pt;}
._2a{width:33.321728pt;}
._24{width:37.739520pt;}
._f{width:38.922240pt;}
._13{width:40.588800pt;}
._1b{width:41.689344pt;}
._28{width:45.971584pt;}
._29{width:47.096320pt;}
._18{width:50.426880pt;}
._2b{width:53.495424pt;}
._17{width:54.405120pt;}
._2e{width:55.749120pt;}
._25{width:58.007040pt;}
._1d{width:61.286400pt;}
._27{width:62.361600pt;}
._1a{width:63.329280pt;}
._30{width:70.205440pt;}
._2f{width:71.290880pt;}
._26{width:76.930560pt;}
._22{width:77.902464pt;}
._1c{width:79.188480pt;}
._2c{width:101.391360pt;}
.fs1{font-size:5.120000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y40{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:0.160000pt;}
.yd9{bottom:0.213333pt;}
.ydd{bottom:0.320000pt;}
.yce{bottom:0.586667pt;}
.yd6{bottom:0.906667pt;}
.y3f{bottom:1.546667pt;}
.yd5{bottom:1.866667pt;}
.ydb{bottom:3.093333pt;}
.ydf{bottom:3.200000pt;}
.ya0{bottom:3.413333pt;}
.y8b{bottom:3.786667pt;}
.yc0{bottom:4.053333pt;}
.y9e{bottom:19.413333pt;}
.y89{bottom:19.786667pt;}
.yc2{bottom:20.053333pt;}
.ya2{bottom:35.413333pt;}
.y8d{bottom:35.786667pt;}
.y42{bottom:47.680000pt;}
.y6{bottom:51.840000pt;}
.y3e{bottom:57.333333pt;}
.yb0{bottom:67.413333pt;}
.y5{bottom:76.800000pt;}
.ya6{bottom:83.413333pt;}
.y3d{bottom:105.600000pt;}
.ycb{bottom:108.000000pt;}
.yf9{bottom:108.480000pt;}
.y155{bottom:109.440000pt;}
.y9c{bottom:109.760000pt;}
.y3c{bottom:120.960000pt;}
.yf8{bottom:123.840000pt;}
.y12f{bottom:124.800000pt;}
.y9b{bottom:125.120000pt;}
.y3b{bottom:136.320000pt;}
.y9a{bottom:137.333333pt;}
.yf7{bottom:139.200000pt;}
.y12e{bottom:140.160000pt;}
.y3a{bottom:151.680000pt;}
.y99{bottom:153.333333pt;}
.yf6{bottom:154.560000pt;}
.y12d{bottom:155.520000pt;}
.yd7{bottom:161.333333pt;}
.y39{bottom:167.040000pt;}
.y98{bottom:169.333333pt;}
.yf5{bottom:169.920000pt;}
.y12c{bottom:170.880000pt;}
.yd4{bottom:177.333333pt;}
.y38{bottom:182.400000pt;}
.yf4{bottom:185.280000pt;}
.y97{bottom:185.333333pt;}
.y12b{bottom:186.240000pt;}
.y37{bottom:197.760000pt;}
.yf3{bottom:200.320000pt;}
.y96{bottom:201.333333pt;}
.y12a{bottom:201.600000pt;}
.y36{bottom:213.120000pt;}
.yf2{bottom:215.680000pt;}
.y129{bottom:216.960000pt;}
.y95{bottom:217.333333pt;}
.y35{bottom:228.480000pt;}
.yf1{bottom:231.040000pt;}
.y128{bottom:232.320000pt;}
.y94{bottom:233.333333pt;}
.y34{bottom:243.840000pt;}
.y127{bottom:246.080000pt;}
.yf0{bottom:246.400000pt;}
.y154{bottom:247.360000pt;}
.y92{bottom:249.333333pt;}
.y126{bottom:256.640000pt;}
.yef{bottom:261.760000pt;}
.y153{bottom:262.720000pt;}
.y93{bottom:265.333333pt;}
.y33{bottom:266.880000pt;}
.y125{bottom:270.720000pt;}
.yee{bottom:277.120000pt;}
.y152{bottom:278.080000pt;}
.y124{bottom:281.280000pt;}
.y90{bottom:281.333333pt;}
.y32{bottom:291.520000pt;}
.yed{bottom:292.480000pt;}
.y151{bottom:293.440000pt;}
.y123{bottom:296.640000pt;}
.y91{bottom:297.333333pt;}
.y31{bottom:304.000000pt;}
.yec{bottom:307.840000pt;}
.y150{bottom:308.800000pt;}
.y122{bottom:312.000000pt;}
.y8c{bottom:313.333333pt;}
.y30{bottom:316.480000pt;}
.yeb{bottom:323.200000pt;}
.y14f{bottom:324.160000pt;}
.y121{bottom:327.360000pt;}
.y2f{bottom:328.640000pt;}
.y8f{bottom:329.333333pt;}
.yea{bottom:338.560000pt;}
.y14e{bottom:339.520000pt;}
.y2e{bottom:342.080000pt;}
.y120{bottom:342.720000pt;}
.y8e{bottom:345.333333pt;}
.ye9{bottom:353.920000pt;}
.y14d{bottom:354.880000pt;}
.y2d{bottom:357.440000pt;}
.y11f{bottom:357.760000pt;}
.y88{bottom:361.333333pt;}
.ye8{bottom:369.280000pt;}
.y14c{bottom:370.240000pt;}
.y2c{bottom:372.800000pt;}
.y11e{bottom:373.120000pt;}
.y8a{bottom:377.333333pt;}
.ye7{bottom:384.320000pt;}
.y14b{bottom:385.600000pt;}
.y2b{bottom:388.160000pt;}
.y11d{bottom:388.480000pt;}
.yca{bottom:390.720000pt;}
.y87{bottom:397.120000pt;}
.ye6{bottom:399.680000pt;}
.y14a{bottom:400.960000pt;}
.yc8{bottom:402.666667pt;}
.y2a{bottom:403.520000pt;}
.y11c{bottom:403.840000pt;}
.y86{bottom:412.480000pt;}
.ye5{bottom:415.040000pt;}
.y149{bottom:416.000000pt;}
.y11b{bottom:417.920000pt;}
.yc9{bottom:418.666667pt;}
.y29{bottom:418.880000pt;}
.y64{bottom:427.840000pt;}
.y11a{bottom:428.480000pt;}
.ye4{bottom:430.400000pt;}
.yd3{bottom:430.720000pt;}
.y148{bottom:431.360000pt;}
.y28{bottom:434.240000pt;}
.yc6{bottom:434.666667pt;}
.y85{bottom:440.640000pt;}
.y119{bottom:442.560000pt;}
.yd2{bottom:445.760000pt;}
.y147{bottom:446.720000pt;}
.y27{bottom:449.600000pt;}
.yc7{bottom:450.666667pt;}
.y63{bottom:452.160000pt;}
.y118{bottom:452.800000pt;}
.yd1{bottom:458.240000pt;}
.ye3{bottom:461.120000pt;}
.y146{bottom:462.080000pt;}
.y84{bottom:464.000000pt;}
.y26{bottom:464.640000pt;}
.yc4{bottom:466.666667pt;}
.y117{bottom:468.160000pt;}
.y62{bottom:475.520000pt;}
.ye2{bottom:476.480000pt;}
.y145{bottom:477.440000pt;}
.y83{bottom:479.360000pt;}
.y25{bottom:480.000000pt;}
.yc5{bottom:482.666667pt;}
.y116{bottom:483.520000pt;}
.y61{bottom:490.880000pt;}
.ye1{bottom:491.840000pt;}
.y144{bottom:492.800000pt;}
.y82{bottom:494.720000pt;}
.y24{bottom:495.360000pt;}
.yc1{bottom:498.666667pt;}
.y115{bottom:498.880000pt;}
.ye0{bottom:507.200000pt;}
.y143{bottom:508.160000pt;}
.y81{bottom:510.080000pt;}
.y23{bottom:510.720000pt;}
.y60{bottom:514.240000pt;}
.yc3{bottom:514.666667pt;}
.yde{bottom:520.000000pt;}
.y142{bottom:523.520000pt;}
.y80{bottom:525.440000pt;}
.y22{bottom:526.080000pt;}
.y5f{bottom:529.600000pt;}
.ybf{bottom:530.666667pt;}
.ydc{bottom:536.000000pt;}
.y141{bottom:538.880000pt;}
.y7f{bottom:540.800000pt;}
.y21{bottom:541.440000pt;}
.y5e{bottom:544.960000pt;}
.ybe{bottom:550.720000pt;}
.y140{bottom:554.240000pt;}
.y7e{bottom:555.840000pt;}
.y20{bottom:556.800000pt;}
.y5d{bottom:560.000000pt;}
.y114{bottom:560.320000pt;}
.ybd{bottom:566.080000pt;}
.y13f{bottom:569.600000pt;}
.y7d{bottom:571.200000pt;}
.y1f{bottom:572.160000pt;}
.y5c{bottom:575.360000pt;}
.y113{bottom:575.680000pt;}
.ybc{bottom:578.666667pt;}
.y13e{bottom:584.960000pt;}
.y7c{bottom:586.560000pt;}
.y1e{bottom:587.520000pt;}
.y5b{bottom:590.720000pt;}
.y112{bottom:591.040000pt;}
.ybb{bottom:594.666667pt;}
.y13d{bottom:600.000000pt;}
.y7b{bottom:601.920000pt;}
.y1d{bottom:602.880000pt;}
.y5a{bottom:606.080000pt;}
.y111{bottom:606.400000pt;}
.yba{bottom:610.666667pt;}
.y13c{bottom:615.360000pt;}
.y1c{bottom:618.240000pt;}
.y59{bottom:621.440000pt;}
.y110{bottom:621.760000pt;}
.y7a{bottom:625.280000pt;}
.yb8{bottom:626.666667pt;}
.y13b{bottom:630.720000pt;}
.y1b{bottom:633.280000pt;}
.y58{bottom:636.800000pt;}
.y79{bottom:640.640000pt;}
.yb9{bottom:642.666667pt;}
.y13a{bottom:646.080000pt;}
.y1a{bottom:648.640000pt;}
.y57{bottom:652.160000pt;}
.y78{bottom:656.000000pt;}
.yb5{bottom:658.666667pt;}
.y139{bottom:661.440000pt;}
.y19{bottom:664.000000pt;}
.y56{bottom:667.520000pt;}
.y77{bottom:671.360000pt;}
.yb7{bottom:674.666667pt;}
.y138{bottom:676.800000pt;}
.y18{bottom:679.360000pt;}
.y10f{bottom:682.880000pt;}
.y76{bottom:686.720000pt;}
.yb6{bottom:690.666667pt;}
.y55{bottom:690.880000pt;}
.y137{bottom:692.160000pt;}
.y17{bottom:694.720000pt;}
.y10e{bottom:698.240000pt;}
.y54{bottom:706.240000pt;}
.yaf{bottom:706.666667pt;}
.y136{bottom:707.520000pt;}
.y16{bottom:710.080000pt;}
.y10d{bottom:713.600000pt;}
.yd0{bottom:717.440000pt;}
.yb4{bottom:722.666667pt;}
.y135{bottom:722.880000pt;}
.y15{bottom:725.440000pt;}
.y75{bottom:726.400000pt;}
.y10c{bottom:728.960000pt;}
.y53{bottom:729.600000pt;}
.ycf{bottom:732.800000pt;}
.y134{bottom:738.240000pt;}
.yb3{bottom:738.666667pt;}
.y14{bottom:740.800000pt;}
.y74{bottom:742.400000pt;}
.y10b{bottom:744.320000pt;}
.y52{bottom:744.640000pt;}
.ycd{bottom:745.333333pt;}
.y133{bottom:753.600000pt;}
.yb2{bottom:754.666667pt;}
.y13{bottom:758.080000pt;}
.y10a{bottom:759.680000pt;}
.yda{bottom:762.666667pt;}
.y73{bottom:766.720000pt;}
.y51{bottom:768.000000pt;}
.y132{bottom:768.640000pt;}
.yb1{bottom:770.666667pt;}
.y12{bottom:773.440000pt;}
.y109{bottom:775.040000pt;}
.yd8{bottom:778.666667pt;}
.y131{bottom:784.000000pt;}
.yac{bottom:786.666667pt;}
.y11{bottom:788.800000pt;}
.y72{bottom:790.080000pt;}
.y108{bottom:790.400000pt;}
.y50{bottom:791.360000pt;}
.y130{bottom:799.360000pt;}
.yae{bottom:802.666667pt;}
.y107{bottom:805.440000pt;}
.y10{bottom:806.080000pt;}
.y71{bottom:806.400000pt;}
.y4f{bottom:814.720000pt;}
.yad{bottom:818.666667pt;}
.y106{bottom:820.800000pt;}
.y70{bottom:822.720000pt;}
.yf{bottom:826.240000pt;}
.y4e{bottom:830.080000pt;}
.ya5{bottom:834.666667pt;}
.y105{bottom:836.160000pt;}
.ye{bottom:836.800000pt;}
.y6f{bottom:839.040000pt;}
.y4d{bottom:845.440000pt;}
.yab{bottom:850.666667pt;}
.y104{bottom:851.520000pt;}
.y6e{bottom:855.360000pt;}
.yd{bottom:856.960000pt;}
.y4c{bottom:860.800000pt;}
.yaa{bottom:866.666667pt;}
.y103{bottom:866.880000pt;}
.yc{bottom:867.520000pt;}
.y6d{bottom:871.680000pt;}
.y4b{bottom:876.160000pt;}
.y102{bottom:882.240000pt;}
.ya9{bottom:882.666667pt;}
.yb{bottom:887.680000pt;}
.y4a{bottom:891.520000pt;}
.y6c{bottom:896.000000pt;}
.y101{bottom:897.600000pt;}
.ya8{bottom:898.666667pt;}
.ya{bottom:906.880000pt;}
.y100{bottom:912.960000pt;}
.ya7{bottom:914.666667pt;}
.y6b{bottom:919.360000pt;}
.y49{bottom:922.240000pt;}
.yff{bottom:928.320000pt;}
.ya1{bottom:930.666667pt;}
.y9{bottom:933.760000pt;}
.y6a{bottom:934.720000pt;}
.y48{bottom:937.600000pt;}
.yfe{bottom:943.680000pt;}
.ya4{bottom:946.666667pt;}
.y69{bottom:949.760000pt;}
.y47{bottom:952.640000pt;}
.y8{bottom:955.200000pt;}
.yfd{bottom:959.040000pt;}
.ya3{bottom:962.666667pt;}
.y68{bottom:966.080000pt;}
.y46{bottom:968.000000pt;}
.yfc{bottom:974.400000pt;}
.y9d{bottom:978.666667pt;}
.y67{bottom:981.440000pt;}
.y45{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.yfb{bottom:989.440000pt;}
.y9f{bottom:994.666667pt;}
.y66{bottom:996.800000pt;}
.y44{bottom:998.720000pt;}
.yfa{bottom:1003.520000pt;}
.y4{bottom:1008.640000pt;}
.y65{bottom:1013.120000pt;}
.y43{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y41{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hc{height:4.000000pt;}
.h12{height:16.000000pt;}
.hf{height:17.333333pt;}
.h1b{height:21.328125pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.h11{height:32.000000pt;}
.hd{height:32.965000pt;}
.he{height:33.333333pt;}
.h5{height:36.435000pt;}
.ha{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h3{height:42.751250pt;}
.h13{height:48.000000pt;}
.h10{height:49.333333pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h15{height:80.000000pt;}
.h14{height:96.000000pt;}
.h1a{height:226.666667pt;}
.h19{height:248.000000pt;}
.h18{height:250.666667pt;}
.h16{height:280.000000pt;}
.h17{height:281.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.we{width:48.000000pt;}
.wd{width:56.000000pt;}
.wc{width:65.333333pt;}
.w5{width:78.666667pt;}
.w6{width:80.000000pt;}
.w17{width:81.333333pt;}
.w13{width:94.666667pt;}
.w14{width:98.666667pt;}
.wb{width:102.666667pt;}
.w15{width:104.000000pt;}
.w12{width:109.333333pt;}
.wa{width:120.000000pt;}
.w16{width:132.000000pt;}
.w7{width:137.333333pt;}
.w4{width:158.666667pt;}
.w8{width:162.666667pt;}
.w10{width:188.000000pt;}
.wf{width:206.666667pt;}
.w11{width:213.333333pt;}
.w1a{width:298.666667pt;}
.w3{width:300.000000pt;}
.w19{width:317.333333pt;}
.w9{width:394.666667pt;}
.w18{width:498.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xf{left:1.386709pt;}
.x14{left:6.666667pt;}
.x17{left:7.573333pt;}
.x2f{left:23.498379pt;}
.x31{left:27.746411pt;}
.x30{left:53.205333pt;}
.x32{left:78.049173pt;}
.x34{left:86.906453pt;}
.x13{left:89.333333pt;}
.x5{left:96.000000pt;}
.x10{left:97.552096pt;}
.x8{left:100.487616pt;}
.xc{left:104.904960pt;}
.x4{left:115.388992pt;}
.x36{left:120.000000pt;}
.xe{left:142.666667pt;}
.x26{left:148.000000pt;}
.xa{left:201.960288pt;}
.x9{left:204.011072pt;}
.x25{left:221.333333pt;}
.x1a{left:226.666667pt;}
.x2b{left:229.265632pt;}
.x20{left:231.850240pt;}
.xb{left:250.564448pt;}
.x2{left:265.722336pt;}
.x29{left:274.819008pt;}
.x12{left:277.403648pt;}
.x1b{left:283.516928pt;}
.x1f{left:296.000000pt;}
.x21{left:301.333333pt;}
.x2e{left:303.733333pt;}
.x33{left:318.666667pt;}
.x2c{left:320.906667pt;}
.x35{left:370.762880pt;}
.x15{left:389.333333pt;}
.x3{left:396.866560pt;}
.x2d{left:406.666667pt;}
.x22{left:409.333333pt;}
.xd{left:420.480000pt;}
.x11{left:444.480000pt;}
.x1{left:456.943680pt;}
.x18{left:468.000000pt;}
.x1c{left:482.666667pt;}
.x27{left:487.119680pt;}
.x28{left:490.799680pt;}
.x23{left:502.666667pt;}
.x7{left:536.450240pt;}
.x16{left:546.666667pt;}
.x24{left:601.333333pt;}
.x1d{left:602.666667pt;}
.x19{left:625.333333pt;}
.x1e{left:657.333333pt;}
.x2a{left:658.786560pt;}
.x6{left:682.866240pt;}
}




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