
    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_9d51991073af1d25f97003fb.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_421578d8ffdcc50a86055be8.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_75e740571b66ac518dd780de.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_4d5cef9c8e81cc139c3be2de.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_293ae031a201d6ae24b0bb14.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_d65695bc5a4682c695432732.woff')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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_7a07d4a824ccb43f46d00866.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_5a4a16e53ef8de473c83d94a.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;}
.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;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls15{letter-spacing:-0.459648px;}
.ls26{letter-spacing:-0.417312px;}
.ls18{letter-spacing:-0.381024px;}
.ls23{letter-spacing:-0.361152px;}
.lse{letter-spacing:-0.338688px;}
.ls24{letter-spacing:-0.320544px;}
.ls1a{letter-spacing:-0.302400px;}
.ls22{letter-spacing:-0.273600px;}
.ls25{letter-spacing:-0.272160px;}
.ls16{letter-spacing:-0.260064px;}
.ls17{letter-spacing:-0.241920px;}
.lsf{letter-spacing:-0.223776px;}
.ls13{letter-spacing:-0.198720px;}
.ls11{letter-spacing:-0.175392px;}
.ls1b{letter-spacing:-0.157248px;}
.lsd{letter-spacing:-0.152352px;}
.lsc{letter-spacing:-0.145728px;}
.ls19{letter-spacing:-0.145152px;}
.ls12{letter-spacing:-0.132480px;}
.ls10{letter-spacing:-0.120960px;}
.lsb{letter-spacing:-0.119232px;}
.lsa{letter-spacing:-0.079488px;}
.ls9{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.029952px;}
.ls6{letter-spacing:0.060048px;}
.ls1{letter-spacing:0.119520px;}
.ls1d{letter-spacing:0.123552px;}
.ls1e{letter-spacing:0.161568px;}
.ls8{letter-spacing:0.194832px;}
.ls0{letter-spacing:0.233856px;}
.ls5{letter-spacing:0.239040px;}
.ls3{letter-spacing:0.240336px;}
.ls4{letter-spacing:0.240480px;}
.ls1f{letter-spacing:0.242352px;}
.ls2{letter-spacing:0.275616px;}
.ls1c{letter-spacing:0.285120px;}
.ls14{letter-spacing:0.476064px;}
.ls7{letter-spacing:4.399200px;}
.ls2a{letter-spacing:4.426560px;}
.ls29{letter-spacing:16.185600px;}
.ls2b{letter-spacing:16.186608px;}
.ls27{letter-spacing:40.123728px;}
.ls28{letter-spacing:46.186560px;}
.ls21{letter-spacing:63.587520px;}
.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;}
}
.ws6{word-spacing:-21.155616px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.480512px;}
.ws2{word-spacing:-16.440768px;}
.ws7{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.974848px;}
.wsf{word-spacing:-14.944608px;}
.wse{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.ws11{word-spacing:-14.859936px;}
.ws10{word-spacing:-14.847840px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws13{word-spacing:-14.817600px;}
.ws14{word-spacing:-14.799456px;}
.ws4{word-spacing:-14.781312px;}
.ws12{word-spacing:-14.702688px;}
.wsb{word-spacing:-13.680000px;}
.wsc{word-spacing:-13.318848px;}
.wsd{word-spacing:-0.060480px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._7{width:2.600640px;}
._c{width:3.659904px;}
._6{width:4.968864px;}
._a{width:6.510240px;}
._5{width:7.722576px;}
._4{width:9.453744px;}
._2{width:10.504656px;}
._3{width:11.672640px;}
._13{width:12.719664px;}
._9{width:13.789440px;}
._b{width:16.390080px;}
._1c{width:17.539200px;}
._10{width:19.237392px;}
._8{width:20.260800px;}
._f{width:21.349440px;}
._11{width:22.740480px;}
._14{width:24.010560px;}
._1e{width:25.220160px;}
._1f{width:26.792640px;}
._19{width:28.486080px;}
._22{width:30.184272px;}
._16{width:31.933440px;}
._1d{width:33.143040px;}
._26{width:35.199360px;}
._12{width:36.556416px;}
._25{width:37.993680px;}
._1b{width:40.098240px;}
._e{width:41.731200px;}
._2d{width:42.819840px;}
._1a{width:44.210880px;}
._21{width:45.243792px;}
._30{width:47.174400px;}
._27{width:51.287040px;}
._2f{width:52.501392px;}
._15{width:53.766720px;}
._2b{width:55.702080px;}
._20{width:57.340368px;}
._31{width:59.091840px;}
._d{width:63.504000px;}
._23{width:64.653120px;}
._2a{width:66.225600px;}
._2c{width:72.455040px;}
._17{width:73.543680px;}
._34{width:75.604752px;}
._2e{width:76.628160px;}
._18{width:82.373760px;}
._32{width:89.026560px;}
._33{width:92.907792px;}
._24{width:96.707520px;}
._28{width:116.552160px;}
._29{width:845.880048px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.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;}
.y3f{bottom:1.740000px;}
.yae{bottom:3.780000px;}
.ya0{bottom:3.840000px;}
.y92{bottom:4.080000px;}
.yb4{bottom:4.500000px;}
.ya8{bottom:4.560000px;}
.y42{bottom:53.640000px;}
.y94{bottom:58.080000px;}
.y6{bottom:58.320000px;}
.y3e{bottom:64.500000px;}
.y99{bottom:76.080000px;}
.y5{bottom:86.400000px;}
.y3d{bottom:118.800000px;}
.yf6{bottom:120.960000px;}
.y98{bottom:123.000000px;}
.yc0{bottom:128.160000px;}
.y3c{bottom:136.080000px;}
.yf5{bottom:138.240000px;}
.y9d{bottom:141.000000px;}
.ybf{bottom:145.440000px;}
.y3b{bottom:153.360000px;}
.yf4{bottom:155.520000px;}
.y11d{bottom:156.960000px;}
.y9c{bottom:159.000000px;}
.ybe{bottom:162.720000px;}
.y3a{bottom:170.640000px;}
.y11c{bottom:174.240000px;}
.y9b{bottom:177.000000px;}
.yf3{bottom:181.800000px;}
.y39{bottom:187.920000px;}
.ybd{bottom:189.000000px;}
.y11b{bottom:191.520000px;}
.y9a{bottom:195.000000px;}
.ybc{bottom:203.040000px;}
.y38{bottom:205.200000px;}
.yf2{bottom:208.080000px;}
.y11a{bottom:208.800000px;}
.y93{bottom:213.000000px;}
.y37{bottom:222.480000px;}
.yf1{bottom:225.360000px;}
.y119{bottom:226.080000px;}
.y97{bottom:231.000000px;}
.y36{bottom:239.760000px;}
.yf0{bottom:242.280000px;}
.y118{bottom:243.360000px;}
.y96{bottom:249.000000px;}
.y35{bottom:257.040000px;}
.yef{bottom:259.560000px;}
.y117{bottom:260.280000px;}
.y95{bottom:267.000000px;}
.y34{bottom:274.320000px;}
.yee{bottom:276.840000px;}
.y116{bottom:277.560000px;}
.y91{bottom:285.000000px;}
.y33{bottom:291.600000px;}
.yed{bottom:294.120000px;}
.y115{bottom:294.840000px;}
.y90{bottom:307.080000px;}
.y32{bottom:308.520000px;}
.yec{bottom:311.400000px;}
.y114{bottom:312.120000px;}
.y8f{bottom:324.360000px;}
.y31{bottom:325.800000px;}
.yeb{bottom:328.680000px;}
.y113{bottom:329.400000px;}
.y30{bottom:343.080000px;}
.yea{bottom:345.960000px;}
.y112{bottom:346.680000px;}
.y6e{bottom:350.640000px;}
.y2f{bottom:360.360000px;}
.ye9{bottom:363.240000px;}
.y111{bottom:363.960000px;}
.y6d{bottom:367.920000px;}
.y2e{bottom:377.640000px;}
.ye8{bottom:380.520000px;}
.y110{bottom:381.240000px;}
.y6c{bottom:385.200000px;}
.ye7{bottom:397.800000px;}
.y10f{bottom:398.520000px;}
.y8e{bottom:402.120000px;}
.y2d{bottom:403.920000px;}
.y6b{bottom:411.480000px;}
.ye6{bottom:415.080000px;}
.y10e{bottom:415.800000px;}
.y8d{bottom:419.400000px;}
.y6a{bottom:428.760000px;}
.y2c{bottom:431.640000px;}
.ye5{bottom:432.000000px;}
.y10d{bottom:433.080000px;}
.y8c{bottom:436.680000px;}
.y2b{bottom:445.680000px;}
.ye4{bottom:449.280000px;}
.y10c{bottom:450.000000px;}
.y8b{bottom:453.960000px;}
.y2a{bottom:459.360000px;}
.y69{bottom:462.960000px;}
.ye3{bottom:466.560000px;}
.y10b{bottom:467.280000px;}
.y8a{bottom:471.240000px;}
.y29{bottom:473.400000px;}
.ybb{bottom:476.640000px;}
.ye2{bottom:483.840000px;}
.y10a{bottom:484.560000px;}
.y28{bottom:488.520000px;}
.y68{bottom:489.240000px;}
.yba{bottom:490.680000px;}
.ye1{bottom:501.120000px;}
.y109{bottom:501.840000px;}
.y27{bottom:505.800000px;}
.y67{bottom:515.520000px;}
.ye0{bottom:518.400000px;}
.y108{bottom:519.120000px;}
.y26{bottom:522.720000px;}
.y89{bottom:523.080000px;}
.y66{bottom:532.800000px;}
.ydf{bottom:535.680000px;}
.y107{bottom:536.400000px;}
.y25{bottom:540.000000px;}
.y88{bottom:540.360000px;}
.y65{bottom:550.080000px;}
.yde{bottom:552.960000px;}
.y106{bottom:553.680000px;}
.y24{bottom:557.280000px;}
.y87{bottom:557.640000px;}
.y64{bottom:567.360000px;}
.ydd{bottom:570.240000px;}
.y105{bottom:570.960000px;}
.y23{bottom:574.560000px;}
.y86{bottom:574.920000px;}
.y63{bottom:584.640000px;}
.ydc{bottom:587.520000px;}
.y104{bottom:588.240000px;}
.y22{bottom:591.840000px;}
.y85{bottom:592.200000px;}
.y62{bottom:601.920000px;}
.y103{bottom:605.520000px;}
.y21{bottom:609.120000px;}
.ydb{bottom:613.800000px;}
.y61{bottom:619.200000px;}
.y102{bottom:622.800000px;}
.y20{bottom:626.400000px;}
.y60{bottom:636.480000px;}
.yda{bottom:640.080000px;}
.y1f{bottom:643.680000px;}
.y5f{bottom:653.400000px;}
.yd9{bottom:657.000000px;}
.y1e{bottom:660.960000px;}
.y84{bottom:669.960000px;}
.y5e{bottom:670.680000px;}
.yd8{bottom:674.280000px;}
.y1d{bottom:678.240000px;}
.y83{bottom:687.240000px;}
.y5d{bottom:687.960000px;}
.yd7{bottom:691.560000px;}
.y1c{bottom:695.520000px;}
.y5c{bottom:705.240000px;}
.yd6{bottom:708.840000px;}
.y1b{bottom:712.440000px;}
.y82{bottom:713.520000px;}
.y5b{bottom:722.520000px;}
.yd5{bottom:726.120000px;}
.yb9{bottom:729.000000px;}
.y1a{bottom:729.720000px;}
.y81{bottom:730.800000px;}
.y5a{bottom:739.800000px;}
.yb8{bottom:742.500000px;}
.yd4{bottom:743.400000px;}
.y19{bottom:747.000000px;}
.y80{bottom:748.080000px;}
.y59{bottom:757.080000px;}
.yb7{bottom:760.500000px;}
.yd3{bottom:760.680000px;}
.y18{bottom:764.280000px;}
.y7f{bottom:766.440000px;}
.yd2{bottom:777.960000px;}
.yb6{bottom:778.500000px;}
.y17{bottom:781.560000px;}
.y58{bottom:783.360000px;}
.y7e{bottom:783.720000px;}
.yd1{bottom:795.240000px;}
.yb5{bottom:796.500000px;}
.y16{bottom:798.840000px;}
.y57{bottom:800.640000px;}
.y7d{bottom:801.000000px;}
.y101{bottom:812.520000px;}
.yb3{bottom:814.500000px;}
.y15{bottom:816.120000px;}
.y56{bottom:817.920000px;}
.yd0{bottom:821.520000px;}
.y100{bottom:829.800000px;}
.y14{bottom:833.400000px;}
.y55{bottom:835.200000px;}
.y7c{bottom:836.280000px;}
.yb2{bottom:837.000000px;}
.ycf{bottom:838.800000px;}
.yff{bottom:846.720000px;}
.y54{bottom:852.120000px;}
.y13{bottom:852.840000px;}
.y7b{bottom:853.560000px;}
.yb1{bottom:854.280000px;}
.yce{bottom:855.720000px;}
.yfe{bottom:864.000000px;}
.yb0{bottom:868.500000px;}
.y53{bottom:869.400000px;}
.y12{bottom:870.120000px;}
.y7a{bottom:871.920000px;}
.ycd{bottom:873.000000px;}
.yfd{bottom:881.280000px;}
.yaf{bottom:886.500000px;}
.y52{bottom:886.680000px;}
.y11{bottom:887.400000px;}
.y79{bottom:889.200000px;}
.ycc{bottom:890.280000px;}
.yfc{bottom:898.560000px;}
.y51{bottom:903.960000px;}
.yad{bottom:904.500000px;}
.y10{bottom:906.840000px;}
.yfb{bottom:915.840000px;}
.y78{bottom:916.560000px;}
.y50{bottom:921.240000px;}
.yac{bottom:926.280000px;}
.yf{bottom:929.520000px;}
.yfa{bottom:933.120000px;}
.ycb{bottom:933.840000px;}
.y4f{bottom:938.520000px;}
.ye{bottom:941.400000px;}
.y77{bottom:942.840000px;}
.yab{bottom:943.560000px;}
.yf9{bottom:950.400000px;}
.yca{bottom:951.120000px;}
.y4e{bottom:955.800000px;}
.yaa{bottom:957.000000px;}
.y76{bottom:960.120000px;}
.yd{bottom:964.080000px;}
.yf8{bottom:967.680000px;}
.yc9{bottom:968.400000px;}
.y4d{bottom:973.080000px;}
.ya9{bottom:975.000000px;}
.yc{bottom:975.960000px;}
.y75{bottom:978.480000px;}
.yc8{bottom:985.680000px;}
.y4c{bottom:990.360000px;}
.ya7{bottom:993.000000px;}
.yf7{bottom:993.960000px;}
.y74{bottom:995.760000px;}
.yb{bottom:998.640000px;}
.yc7{bottom:1002.960000px;}
.y4b{bottom:1007.640000px;}
.y73{bottom:1014.120000px;}
.ya6{bottom:1015.560000px;}
.ya{bottom:1020.240000px;}
.y4a{bottom:1024.920000px;}
.ya5{bottom:1032.840000px;}
.yc6{bottom:1037.520000px;}
.y72{bottom:1041.120000px;}
.ya4{bottom:1047.000000px;}
.y9{bottom:1050.480000px;}
.y49{bottom:1051.200000px;}
.yc5{bottom:1054.800000px;}
.ya3{bottom:1065.000000px;}
.y71{bottom:1067.400000px;}
.y48{bottom:1068.120000px;}
.yc4{bottom:1071.720000px;}
.y8{bottom:1074.600000px;}
.ya2{bottom:1083.000000px;}
.y47{bottom:1085.400000px;}
.yc3{bottom:1089.000000px;}
.y70{bottom:1093.680000px;}
.ya1{bottom:1101.000000px;}
.y46{bottom:1102.680000px;}
.yc2{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y6f{bottom:1110.960000px;}
.y9f{bottom:1119.000000px;}
.y45{bottom:1119.960000px;}
.yc1{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.y44{bottom:1137.240000px;}
.y9e{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y43{bottom:1154.520000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y41{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hc{height:4.500000px;}
.hf{height:18.000000px;}
.h12{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.hd{height:37.085625px;}
.h5{height:40.989375px;}
.ha{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.he{height:47.874375px;}
.h3{height:48.095156px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h10{height:72.000000px;}
.h11{height:90.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w13{width:73.500000px;}
.wc{width:117.000000px;}
.w5{width:118.500000px;}
.w9{width:142.500000px;}
.w11{width:144.000000px;}
.w12{width:150.000000px;}
.w6{width:154.500000px;}
.wf{width:163.500000px;}
.w10{width:165.000000px;}
.wb{width:184.500000px;}
.we{width:187.500000px;}
.w3{width:192.000000px;}
.w4{width:229.500000px;}
.w7{width:276.000000px;}
.w8{width:277.500000px;}
.wd{width:391.500000px;}
.wa{width:394.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x13{left:1.560048px;}
.x18{left:7.500000px;}
.x1c{left:8.640000px;}
.x17{left:100.500000px;}
.x5{left:108.000000px;}
.x14{left:109.746108px;}
.xd{left:118.435536px;}
.xf{left:126.569088px;}
.x4{left:129.812616px;}
.x8{left:132.659172px;}
.xb{left:135.936756px;}
.x12{left:160.500000px;}
.xc{left:238.130100px;}
.x2b{left:244.421640px;}
.x1d{left:247.329324px;}
.xa{left:255.194100px;}
.x16{left:258.564672px;}
.x26{left:264.000000px;}
.x25{left:265.032000px;}
.xe{left:281.885004px;}
.x19{left:292.500000px;}
.x2{left:298.937628px;}
.x9{left:314.363520px;}
.x23{left:328.573224px;}
.x20{left:331.480944px;}
.x10{left:351.054936px;}
.x1e{left:375.000000px;}
.x27{left:427.500000px;}
.x3{left:446.474880px;}
.x11{left:473.040000px;}
.x24{left:490.500000px;}
.x21{left:493.500000px;}
.x15{left:500.040000px;}
.x1{left:514.061640px;}
.x1a{left:522.000000px;}
.x28{left:571.500000px;}
.x7{left:603.506520px;}
.x1b{left:639.000000px;}
.x2a{left:642.314880px;}
.x1f{left:651.000000px;}
.x2c{left:656.894880px;}
.x22{left:676.500000px;}
.x29{left:720.000000px;}
.x6{left:768.224520px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls15{letter-spacing:-0.408576pt;}
.ls26{letter-spacing:-0.370944pt;}
.ls18{letter-spacing:-0.338688pt;}
.ls23{letter-spacing:-0.321024pt;}
.lse{letter-spacing:-0.301056pt;}
.ls24{letter-spacing:-0.284928pt;}
.ls1a{letter-spacing:-0.268800pt;}
.ls22{letter-spacing:-0.243200pt;}
.ls25{letter-spacing:-0.241920pt;}
.ls16{letter-spacing:-0.231168pt;}
.ls17{letter-spacing:-0.215040pt;}
.lsf{letter-spacing:-0.198912pt;}
.ls13{letter-spacing:-0.176640pt;}
.ls11{letter-spacing:-0.155904pt;}
.ls1b{letter-spacing:-0.139776pt;}
.lsd{letter-spacing:-0.135424pt;}
.lsc{letter-spacing:-0.129536pt;}
.ls19{letter-spacing:-0.129024pt;}
.ls12{letter-spacing:-0.117760pt;}
.ls10{letter-spacing:-0.107520pt;}
.lsb{letter-spacing:-0.105984pt;}
.lsa{letter-spacing:-0.070656pt;}
.ls9{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.026624pt;}
.ls6{letter-spacing:0.053376pt;}
.ls1{letter-spacing:0.106240pt;}
.ls1d{letter-spacing:0.109824pt;}
.ls1e{letter-spacing:0.143616pt;}
.ls8{letter-spacing:0.173184pt;}
.ls0{letter-spacing:0.207872pt;}
.ls5{letter-spacing:0.212480pt;}
.ls3{letter-spacing:0.213632pt;}
.ls4{letter-spacing:0.213760pt;}
.ls1f{letter-spacing:0.215424pt;}
.ls2{letter-spacing:0.244992pt;}
.ls1c{letter-spacing:0.253440pt;}
.ls14{letter-spacing:0.423168pt;}
.ls7{letter-spacing:3.910400pt;}
.ls2a{letter-spacing:3.934720pt;}
.ls29{letter-spacing:14.387200pt;}
.ls2b{letter-spacing:14.388096pt;}
.ls27{letter-spacing:35.665536pt;}
.ls28{letter-spacing:41.054720pt;}
.ls21{letter-spacing:56.522240pt;}
.ws6{word-spacing:-18.804992pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws7{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.310976pt;}
.wsf{word-spacing:-13.284096pt;}
.wse{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.ws11{word-spacing:-13.208832pt;}
.ws10{word-spacing:-13.198080pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws13{word-spacing:-13.171200pt;}
.ws14{word-spacing:-13.155072pt;}
.ws4{word-spacing:-13.138944pt;}
.ws12{word-spacing:-13.069056pt;}
.wsb{word-spacing:-12.160000pt;}
.wsc{word-spacing:-11.838976pt;}
.wsd{word-spacing:-0.053760pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._7{width:2.311680pt;}
._c{width:3.253248pt;}
._6{width:4.416768pt;}
._a{width:5.786880pt;}
._5{width:6.864512pt;}
._4{width:8.403328pt;}
._2{width:9.337472pt;}
._3{width:10.375680pt;}
._13{width:11.306368pt;}
._9{width:12.257280pt;}
._b{width:14.568960pt;}
._1c{width:15.590400pt;}
._10{width:17.099904pt;}
._8{width:18.009600pt;}
._f{width:18.977280pt;}
._11{width:20.213760pt;}
._14{width:21.342720pt;}
._1e{width:22.417920pt;}
._1f{width:23.815680pt;}
._19{width:25.320960pt;}
._22{width:26.830464pt;}
._16{width:28.385280pt;}
._1d{width:29.460480pt;}
._26{width:31.288320pt;}
._12{width:32.494592pt;}
._25{width:33.772160pt;}
._1b{width:35.642880pt;}
._e{width:37.094400pt;}
._2d{width:38.062080pt;}
._1a{width:39.298560pt;}
._21{width:40.216704pt;}
._30{width:41.932800pt;}
._27{width:45.588480pt;}
._2f{width:46.667904pt;}
._15{width:47.792640pt;}
._2b{width:49.512960pt;}
._20{width:50.969216pt;}
._31{width:52.526080pt;}
._d{width:56.448000pt;}
._23{width:57.469440pt;}
._2a{width:58.867200pt;}
._2c{width:64.404480pt;}
._17{width:65.372160pt;}
._34{width:67.204224pt;}
._2e{width:68.113920pt;}
._18{width:73.221120pt;}
._32{width:79.134720pt;}
._33{width:82.584704pt;}
._24{width:85.962240pt;}
._28{width:103.601920pt;}
._29{width:751.893376pt;}
.fs1{font-size:5.120000pt;}
.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;}
.y3f{bottom:1.546667pt;}
.yae{bottom:3.360000pt;}
.ya0{bottom:3.413333pt;}
.y92{bottom:3.626667pt;}
.yb4{bottom:4.000000pt;}
.ya8{bottom:4.053333pt;}
.y42{bottom:47.680000pt;}
.y94{bottom:51.626667pt;}
.y6{bottom:51.840000pt;}
.y3e{bottom:57.333333pt;}
.y99{bottom:67.626667pt;}
.y5{bottom:76.800000pt;}
.y3d{bottom:105.600000pt;}
.yf6{bottom:107.520000pt;}
.y98{bottom:109.333333pt;}
.yc0{bottom:113.920000pt;}
.y3c{bottom:120.960000pt;}
.yf5{bottom:122.880000pt;}
.y9d{bottom:125.333333pt;}
.ybf{bottom:129.280000pt;}
.y3b{bottom:136.320000pt;}
.yf4{bottom:138.240000pt;}
.y11d{bottom:139.520000pt;}
.y9c{bottom:141.333333pt;}
.ybe{bottom:144.640000pt;}
.y3a{bottom:151.680000pt;}
.y11c{bottom:154.880000pt;}
.y9b{bottom:157.333333pt;}
.yf3{bottom:161.600000pt;}
.y39{bottom:167.040000pt;}
.ybd{bottom:168.000000pt;}
.y11b{bottom:170.240000pt;}
.y9a{bottom:173.333333pt;}
.ybc{bottom:180.480000pt;}
.y38{bottom:182.400000pt;}
.yf2{bottom:184.960000pt;}
.y11a{bottom:185.600000pt;}
.y93{bottom:189.333333pt;}
.y37{bottom:197.760000pt;}
.yf1{bottom:200.320000pt;}
.y119{bottom:200.960000pt;}
.y97{bottom:205.333333pt;}
.y36{bottom:213.120000pt;}
.yf0{bottom:215.360000pt;}
.y118{bottom:216.320000pt;}
.y96{bottom:221.333333pt;}
.y35{bottom:228.480000pt;}
.yef{bottom:230.720000pt;}
.y117{bottom:231.360000pt;}
.y95{bottom:237.333333pt;}
.y34{bottom:243.840000pt;}
.yee{bottom:246.080000pt;}
.y116{bottom:246.720000pt;}
.y91{bottom:253.333333pt;}
.y33{bottom:259.200000pt;}
.yed{bottom:261.440000pt;}
.y115{bottom:262.080000pt;}
.y90{bottom:272.960000pt;}
.y32{bottom:274.240000pt;}
.yec{bottom:276.800000pt;}
.y114{bottom:277.440000pt;}
.y8f{bottom:288.320000pt;}
.y31{bottom:289.600000pt;}
.yeb{bottom:292.160000pt;}
.y113{bottom:292.800000pt;}
.y30{bottom:304.960000pt;}
.yea{bottom:307.520000pt;}
.y112{bottom:308.160000pt;}
.y6e{bottom:311.680000pt;}
.y2f{bottom:320.320000pt;}
.ye9{bottom:322.880000pt;}
.y111{bottom:323.520000pt;}
.y6d{bottom:327.040000pt;}
.y2e{bottom:335.680000pt;}
.ye8{bottom:338.240000pt;}
.y110{bottom:338.880000pt;}
.y6c{bottom:342.400000pt;}
.ye7{bottom:353.600000pt;}
.y10f{bottom:354.240000pt;}
.y8e{bottom:357.440000pt;}
.y2d{bottom:359.040000pt;}
.y6b{bottom:365.760000pt;}
.ye6{bottom:368.960000pt;}
.y10e{bottom:369.600000pt;}
.y8d{bottom:372.800000pt;}
.y6a{bottom:381.120000pt;}
.y2c{bottom:383.680000pt;}
.ye5{bottom:384.000000pt;}
.y10d{bottom:384.960000pt;}
.y8c{bottom:388.160000pt;}
.y2b{bottom:396.160000pt;}
.ye4{bottom:399.360000pt;}
.y10c{bottom:400.000000pt;}
.y8b{bottom:403.520000pt;}
.y2a{bottom:408.320000pt;}
.y69{bottom:411.520000pt;}
.ye3{bottom:414.720000pt;}
.y10b{bottom:415.360000pt;}
.y8a{bottom:418.880000pt;}
.y29{bottom:420.800000pt;}
.ybb{bottom:423.680000pt;}
.ye2{bottom:430.080000pt;}
.y10a{bottom:430.720000pt;}
.y28{bottom:434.240000pt;}
.y68{bottom:434.880000pt;}
.yba{bottom:436.160000pt;}
.ye1{bottom:445.440000pt;}
.y109{bottom:446.080000pt;}
.y27{bottom:449.600000pt;}
.y67{bottom:458.240000pt;}
.ye0{bottom:460.800000pt;}
.y108{bottom:461.440000pt;}
.y26{bottom:464.640000pt;}
.y89{bottom:464.960000pt;}
.y66{bottom:473.600000pt;}
.ydf{bottom:476.160000pt;}
.y107{bottom:476.800000pt;}
.y25{bottom:480.000000pt;}
.y88{bottom:480.320000pt;}
.y65{bottom:488.960000pt;}
.yde{bottom:491.520000pt;}
.y106{bottom:492.160000pt;}
.y24{bottom:495.360000pt;}
.y87{bottom:495.680000pt;}
.y64{bottom:504.320000pt;}
.ydd{bottom:506.880000pt;}
.y105{bottom:507.520000pt;}
.y23{bottom:510.720000pt;}
.y86{bottom:511.040000pt;}
.y63{bottom:519.680000pt;}
.ydc{bottom:522.240000pt;}
.y104{bottom:522.880000pt;}
.y22{bottom:526.080000pt;}
.y85{bottom:526.400000pt;}
.y62{bottom:535.040000pt;}
.y103{bottom:538.240000pt;}
.y21{bottom:541.440000pt;}
.ydb{bottom:545.600000pt;}
.y61{bottom:550.400000pt;}
.y102{bottom:553.600000pt;}
.y20{bottom:556.800000pt;}
.y60{bottom:565.760000pt;}
.yda{bottom:568.960000pt;}
.y1f{bottom:572.160000pt;}
.y5f{bottom:580.800000pt;}
.yd9{bottom:584.000000pt;}
.y1e{bottom:587.520000pt;}
.y84{bottom:595.520000pt;}
.y5e{bottom:596.160000pt;}
.yd8{bottom:599.360000pt;}
.y1d{bottom:602.880000pt;}
.y83{bottom:610.880000pt;}
.y5d{bottom:611.520000pt;}
.yd7{bottom:614.720000pt;}
.y1c{bottom:618.240000pt;}
.y5c{bottom:626.880000pt;}
.yd6{bottom:630.080000pt;}
.y1b{bottom:633.280000pt;}
.y82{bottom:634.240000pt;}
.y5b{bottom:642.240000pt;}
.yd5{bottom:645.440000pt;}
.yb9{bottom:648.000000pt;}
.y1a{bottom:648.640000pt;}
.y81{bottom:649.600000pt;}
.y5a{bottom:657.600000pt;}
.yb8{bottom:660.000000pt;}
.yd4{bottom:660.800000pt;}
.y19{bottom:664.000000pt;}
.y80{bottom:664.960000pt;}
.y59{bottom:672.960000pt;}
.yb7{bottom:676.000000pt;}
.yd3{bottom:676.160000pt;}
.y18{bottom:679.360000pt;}
.y7f{bottom:681.280000pt;}
.yd2{bottom:691.520000pt;}
.yb6{bottom:692.000000pt;}
.y17{bottom:694.720000pt;}
.y58{bottom:696.320000pt;}
.y7e{bottom:696.640000pt;}
.yd1{bottom:706.880000pt;}
.yb5{bottom:708.000000pt;}
.y16{bottom:710.080000pt;}
.y57{bottom:711.680000pt;}
.y7d{bottom:712.000000pt;}
.y101{bottom:722.240000pt;}
.yb3{bottom:724.000000pt;}
.y15{bottom:725.440000pt;}
.y56{bottom:727.040000pt;}
.yd0{bottom:730.240000pt;}
.y100{bottom:737.600000pt;}
.y14{bottom:740.800000pt;}
.y55{bottom:742.400000pt;}
.y7c{bottom:743.360000pt;}
.yb2{bottom:744.000000pt;}
.ycf{bottom:745.600000pt;}
.yff{bottom:752.640000pt;}
.y54{bottom:757.440000pt;}
.y13{bottom:758.080000pt;}
.y7b{bottom:758.720000pt;}
.yb1{bottom:759.360000pt;}
.yce{bottom:760.640000pt;}
.yfe{bottom:768.000000pt;}
.yb0{bottom:772.000000pt;}
.y53{bottom:772.800000pt;}
.y12{bottom:773.440000pt;}
.y7a{bottom:775.040000pt;}
.ycd{bottom:776.000000pt;}
.yfd{bottom:783.360000pt;}
.yaf{bottom:788.000000pt;}
.y52{bottom:788.160000pt;}
.y11{bottom:788.800000pt;}
.y79{bottom:790.400000pt;}
.ycc{bottom:791.360000pt;}
.yfc{bottom:798.720000pt;}
.y51{bottom:803.520000pt;}
.yad{bottom:804.000000pt;}
.y10{bottom:806.080000pt;}
.yfb{bottom:814.080000pt;}
.y78{bottom:814.720000pt;}
.y50{bottom:818.880000pt;}
.yac{bottom:823.360000pt;}
.yf{bottom:826.240000pt;}
.yfa{bottom:829.440000pt;}
.ycb{bottom:830.080000pt;}
.y4f{bottom:834.240000pt;}
.ye{bottom:836.800000pt;}
.y77{bottom:838.080000pt;}
.yab{bottom:838.720000pt;}
.yf9{bottom:844.800000pt;}
.yca{bottom:845.440000pt;}
.y4e{bottom:849.600000pt;}
.yaa{bottom:850.666667pt;}
.y76{bottom:853.440000pt;}
.yd{bottom:856.960000pt;}
.yf8{bottom:860.160000pt;}
.yc9{bottom:860.800000pt;}
.y4d{bottom:864.960000pt;}
.ya9{bottom:866.666667pt;}
.yc{bottom:867.520000pt;}
.y75{bottom:869.760000pt;}
.yc8{bottom:876.160000pt;}
.y4c{bottom:880.320000pt;}
.ya7{bottom:882.666667pt;}
.yf7{bottom:883.520000pt;}
.y74{bottom:885.120000pt;}
.yb{bottom:887.680000pt;}
.yc7{bottom:891.520000pt;}
.y4b{bottom:895.680000pt;}
.y73{bottom:901.440000pt;}
.ya6{bottom:902.720000pt;}
.ya{bottom:906.880000pt;}
.y4a{bottom:911.040000pt;}
.ya5{bottom:918.080000pt;}
.yc6{bottom:922.240000pt;}
.y72{bottom:925.440000pt;}
.ya4{bottom:930.666667pt;}
.y9{bottom:933.760000pt;}
.y49{bottom:934.400000pt;}
.yc5{bottom:937.600000pt;}
.ya3{bottom:946.666667pt;}
.y71{bottom:948.800000pt;}
.y48{bottom:949.440000pt;}
.yc4{bottom:952.640000pt;}
.y8{bottom:955.200000pt;}
.ya2{bottom:962.666667pt;}
.y47{bottom:964.800000pt;}
.yc3{bottom:968.000000pt;}
.y70{bottom:972.160000pt;}
.ya1{bottom:978.666667pt;}
.y46{bottom:980.160000pt;}
.yc2{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y6f{bottom:987.520000pt;}
.y9f{bottom:994.666667pt;}
.y45{bottom:995.520000pt;}
.yc1{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.y44{bottom:1010.880000pt;}
.y9e{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y43{bottom:1026.240000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y41{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hc{height:4.000000pt;}
.hf{height:16.000000pt;}
.h12{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.hd{height:32.965000pt;}
.h5{height:36.435000pt;}
.ha{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.he{height:42.555000pt;}
.h3{height:42.751250pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h10{height:64.000000pt;}
.h11{height:80.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w13{width:65.333333pt;}
.wc{width:104.000000pt;}
.w5{width:105.333333pt;}
.w9{width:126.666667pt;}
.w11{width:128.000000pt;}
.w12{width:133.333333pt;}
.w6{width:137.333333pt;}
.wf{width:145.333333pt;}
.w10{width:146.666667pt;}
.wb{width:164.000000pt;}
.we{width:166.666667pt;}
.w3{width:170.666667pt;}
.w4{width:204.000000pt;}
.w7{width:245.333333pt;}
.w8{width:246.666667pt;}
.wd{width:348.000000pt;}
.wa{width:350.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x13{left:1.386709pt;}
.x18{left:6.666667pt;}
.x1c{left:7.680000pt;}
.x17{left:89.333333pt;}
.x5{left:96.000000pt;}
.x14{left:97.552096pt;}
.xd{left:105.276032pt;}
.xf{left:112.505856pt;}
.x4{left:115.388992pt;}
.x8{left:117.919264pt;}
.xb{left:120.832672pt;}
.x12{left:142.666667pt;}
.xc{left:211.671200pt;}
.x2b{left:217.263680pt;}
.x1d{left:219.848288pt;}
.xa{left:226.839200pt;}
.x16{left:229.835264pt;}
.x26{left:234.666667pt;}
.x25{left:235.584000pt;}
.xe{left:250.564448pt;}
.x19{left:260.000000pt;}
.x2{left:265.722336pt;}
.x9{left:279.434240pt;}
.x23{left:292.065088pt;}
.x20{left:294.649728pt;}
.x10{left:312.048832pt;}
.x1e{left:333.333333pt;}
.x27{left:380.000000pt;}
.x3{left:396.866560pt;}
.x11{left:420.480000pt;}
.x24{left:436.000000pt;}
.x21{left:438.666667pt;}
.x15{left:444.480000pt;}
.x1{left:456.943680pt;}
.x1a{left:464.000000pt;}
.x28{left:508.000000pt;}
.x7{left:536.450240pt;}
.x1b{left:568.000000pt;}
.x2a{left:570.946560pt;}
.x1f{left:578.666667pt;}
.x2c{left:583.906560pt;}
.x22{left:601.333333pt;}
.x29{left:640.000000pt;}
.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; }
  