
    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_401804f76525cd0422ee938d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_148009ee516976b43fb68a28.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8965a8cd97bc01290657a45c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_4fcd4f9c6f983f86f88bd65d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_0cf5a43bc1172285b6c0ddbb.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_408021510b79d06cfc02494e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dca41147758cc1d668ae8ed6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.944824;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_05ce7c6503b743421e29b5b5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_ac688067b6f3c64220ff113e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.892578;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffe{font-family:ffe;line-height:1.035156;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9a23c011a0565eb6be3a0ed1.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff11{font-family:ff11;line-height:1.003906;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_929efe54756cd457bce39dc6.woff')format("woff");}.ff12{font-family:ff12;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_721901ffc2c4ad5e5279a1df.woff')format("woff");}.ff13{font-family:ff13;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c8b6440a799fe7b95397ca00.woff')format("woff");}.ff14{font-family:ff14;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.457800px;}
.ls16{letter-spacing:-0.414600px;}
.ls1d{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.190200px;}
.lsa{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.114000px;}
.lsb{letter-spacing:-0.017280px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.078000px;}
.ls1c{letter-spacing:0.109440px;}
.lse{letter-spacing:0.149760px;}
.lsd{letter-spacing:0.153600px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls1b{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.414600px;}
.ls3{letter-spacing:0.576000px;}
.ls14{letter-spacing:6.785280px;}
.ls1a{letter-spacing:15.840000px;}
.ls18{letter-spacing:18.180000px;}
.ls17{letter-spacing:22.320000px;}
.ls19{letter-spacing:24.480000px;}
.ls13{letter-spacing:39.905280px;}
.lsf{letter-spacing:64.002720px;}
.ls6{letter-spacing:64.026720px;}
.ls5{letter-spacing:199.416000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-59.760000px;}
.wsc{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws8{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.wse{word-spacing:-16.974600px;}
.wsf{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.254600px;}
.wsd{word-spacing:-16.102200px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws7{word-spacing:-15.093600px;}
.ws3{word-spacing:-14.650800px;}
.wsb{word-spacing:0.000000px;}
._3f{margin-left:-2.115360px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._5{width:2.070000px;}
._c{width:3.841920px;}
._d{width:5.104800px;}
._3{width:6.425280px;}
._4{width:8.019840px;}
._f{width:9.666240px;}
._10{width:11.097360px;}
._11{width:12.315120px;}
._12{width:13.777920px;}
._36{width:14.906880px;}
._a{width:18.149760px;}
._b{width:19.607040px;}
._13{width:21.329280px;}
._14{width:22.525920px;}
._19{width:24.045120px;}
._1b{width:26.106480px;}
._1a{width:27.624960px;}
._2f{width:28.883520px;}
._39{width:30.708000px;}
._27{width:32.175360px;}
._e{width:33.186240px;}
._18{width:34.643520px;}
._17{width:35.772480px;}
._6{width:37.292160px;}
._7{width:38.348880px;}
._2d{width:39.692400px;}
._16{width:41.270400px;}
._4b{width:42.516000px;}
._37{width:43.721280px;}
._45{width:44.778240px;}
._9{width:46.699200px;}
._15{width:48.059280px;}
._8{width:49.918080px;}
._3e{width:51.570000px;}
._24{width:52.632720px;}
._42{width:53.982720px;}
._1d{width:55.473840px;}
._1c{width:56.670480px;}
._2a{width:58.953600px;}
._2b{width:60.278400px;}
._29{width:62.236080px;}
._26{width:63.656640px;}
._44{width:64.848960px;}
._32{width:68.955840px;}
._33{width:69.984720px;}
._25{width:71.472960px;}
._4a{width:72.681120px;}
._30{width:74.091600px;}
._31{width:75.416400px;}
._23{width:77.138640px;}
._35{width:78.166080px;}
._34{width:83.332800px;}
._49{width:86.257440px;}
._48{width:87.300000px;}
._4f{width:88.387200px;}
._4e{width:89.622720px;}
._2e{width:92.644560px;}
._2c{width:95.225040px;}
._47{width:98.568000px;}
._22{width:101.912400px;}
._21{width:103.634640px;}
._50{width:104.838480px;}
._3d{width:106.050240px;}
._43{width:109.560960px;}
._46{width:110.623680px;}
._41{width:125.064000px;}
._20{width:152.893440px;}
._3c{width:170.303040px;}
._3b{width:171.398160px;}
._51{width:175.206240px;}
._4c{width:180.849600px;}
._4d{width:182.167680px;}
._1e{width:189.617520px;}
._28{width:194.281920px;}
._1f{width:197.647200px;}
._2{width:199.416000px;}
._52{width:210.375360px;}
._38{width:221.305680px;}
._40{width:233.312160px;}
._3a{width:287.525280px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y15{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y14{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y13{bottom:70.380000px;}
.y3c{bottom:75.240000px;}
.y56{bottom:120.420000px;}
.y8a{bottom:120.780000px;}
.yb5{bottom:125.640000px;}
.yec{bottom:126.180000px;}
.ye6{bottom:126.540000px;}
.y55{bottom:141.480000px;}
.y89{bottom:141.840000px;}
.yb4{bottom:149.220000px;}
.yeb{bottom:149.940000px;}
.ye5{bottom:150.300000px;}
.y39{bottom:168.300000px;}
.yb3{bottom:172.980000px;}
.yea{bottom:173.520000px;}
.ye4{bottom:173.880000px;}
.y37{bottom:193.320000px;}
.yb2{bottom:196.740000px;}
.ye3{bottom:197.640000px;}
.y36{bottom:218.010000px;}
.yb1{bottom:220.170000px;}
.ybb{bottom:220.530000px;}
.ye2{bottom:221.430000px;}
.y35{bottom:242.670000px;}
.yb0{bottom:243.750000px;}
.yba{bottom:244.110000px;}
.ye1{bottom:245.190000px;}
.y34{bottom:267.330000px;}
.yaf{bottom:267.510000px;}
.yb9{bottom:267.870000px;}
.ye0{bottom:268.770000px;}
.yae{bottom:291.630000px;}
.y33{bottom:291.990000px;}
.ydf{bottom:292.530000px;}
.y88{bottom:306.750000px;}
.yad{bottom:315.390000px;}
.yde{bottom:316.290000px;}
.y32{bottom:316.650000px;}
.y79{bottom:331.050000px;}
.y87{bottom:331.410000px;}
.yac{bottom:338.970000px;}
.ydd{bottom:340.050000px;}
.y31{bottom:341.310000px;}
.y78{bottom:355.710000px;}
.y86{bottom:356.070000px;}
.yab{bottom:362.730000px;}
.ydc{bottom:363.630000px;}
.y30{bottom:365.970000px;}
.y77{bottom:380.370000px;}
.y85{bottom:380.730000px;}
.yaa{bottom:386.490000px;}
.ydb{bottom:387.390000px;}
.y2f{bottom:390.630000px;}
.y54{bottom:401.970000px;}
.y76{bottom:405.030000px;}
.y84{bottom:405.390000px;}
.ya9{bottom:410.250000px;}
.yda{bottom:411.150000px;}
.y2e{bottom:415.290000px;}
.y53{bottom:426.630000px;}
.y75{bottom:430.050000px;}
.ya8{bottom:434.010000px;}
.yd9{bottom:434.910000px;}
.y2d{bottom:439.950000px;}
.y4f{bottom:451.695000px;}
.y83{bottom:454.395000px;}
.y74{bottom:454.755000px;}
.ya7{bottom:457.635000px;}
.yd8{bottom:458.715000px;}
.y2c{bottom:464.655000px;}
.y4e{bottom:476.355000px;}
.y82{bottom:479.235000px;}
.y73{bottom:479.595000px;}
.ya6{bottom:481.395000px;}
.yd7{bottom:482.295000px;}
.y2b{bottom:489.315000px;}
.y4d{bottom:501.015000px;}
.y81{bottom:503.895000px;}
.y72{bottom:504.255000px;}
.ya5{bottom:505.155000px;}
.yd6{bottom:506.055000px;}
.y2a{bottom:513.975000px;}
.y4c{bottom:525.675000px;}
.ya4{bottom:528.555000px;}
.y71{bottom:528.915000px;}
.yd5{bottom:529.815000px;}
.y29{bottom:538.635000px;}
.y4b{bottom:550.335000px;}
.ya3{bottom:552.135000px;}
.yb8{bottom:552.495000px;}
.y70{bottom:553.575000px;}
.y28{bottom:563.295000px;}
.y4a{bottom:574.995000px;}
.ya2{bottom:576.255000px;}
.yd4{bottom:577.155000px;}
.y6f{bottom:578.235000px;}
.y27{bottom:587.955000px;}
.y52{bottom:599.295000px;}
.y49{bottom:599.655000px;}
.ya1{bottom:600.015000px;}
.yd3{bottom:600.915000px;}
.y6e{bottom:602.895000px;}
.y26{bottom:612.615000px;}
.ya0{bottom:623.775000px;}
.y48{bottom:623.955000px;}
.yd2{bottom:624.315000px;}
.ye9{bottom:624.675000px;}
.y6d{bottom:627.555000px;}
.y38{bottom:637.095000px;}
.y25{bottom:637.455000px;}
.y9f{bottom:647.355000px;}
.yd1{bottom:648.075000px;}
.ye8{bottom:648.435000px;}
.y47{bottom:648.615000px;}
.y6c{bottom:652.215000px;}
.y24{bottom:661.755000px;}
.y9e{bottom:671.115000px;}
.yd0{bottom:671.655000px;}
.ye7{bottom:672.015000px;}
.y46{bottom:673.635000px;}
.y6b{bottom:676.905000px;}
.y23{bottom:686.445000px;}
.y9d{bottom:694.905000px;}
.ycf{bottom:695.805000px;}
.y45{bottom:698.325000px;}
.y6a{bottom:701.565000px;}
.y22{bottom:710.385000px;}
.y9c{bottom:718.665000px;}
.yce{bottom:719.565000px;}
.y44{bottom:722.985000px;}
.y80{bottom:725.865000px;}
.y69{bottom:726.225000px;}
.y21{bottom:732.345000px;}
.y9b{bottom:742.245000px;}
.ycd{bottom:743.325000px;}
.y43{bottom:747.285000px;}
.y51{bottom:747.645000px;}
.y68{bottom:750.885000px;}
.y20{bottom:756.645000px;}
.y9a{bottom:766.005000px;}
.ycc{bottom:766.905000px;}
.y42{bottom:772.305000px;}
.y67{bottom:775.545000px;}
.y1f{bottom:778.425000px;}
.y99{bottom:789.765000px;}
.yf5{bottom:790.305000px;}
.ycb{bottom:790.665000px;}
.y41{bottom:796.965000px;}
.y66{bottom:799.845000px;}
.y7f{bottom:800.205000px;}
.y1e{bottom:800.385000px;}
.y98{bottom:813.525000px;}
.yf4{bottom:814.065000px;}
.yca{bottom:814.425000px;}
.y40{bottom:821.265000px;}
.y50{bottom:821.625000px;}
.y1d{bottom:822.165000px;}
.y65{bottom:824.505000px;}
.y7e{bottom:824.865000px;}
.y97{bottom:837.105000px;}
.yc9{bottom:838.185000px;}
.y1c{bottom:843.945000px;}
.y3f{bottom:846.285000px;}
.y64{bottom:849.525000px;}
.yb7{bottom:860.505000px;}
.y96{bottom:860.865000px;}
.yc8{bottom:861.765000px;}
.y1b{bottom:865.725000px;}
.y3e{bottom:870.945000px;}
.y63{bottom:874.185000px;}
.yb6{bottom:884.265000px;}
.y95{bottom:884.625000px;}
.yc7{bottom:885.525000px;}
.y1a{bottom:887.325000px;}
.y3d{bottom:895.605000px;}
.y62{bottom:898.845000px;}
.y19{bottom:906.585000px;}
.y94{bottom:908.385000px;}
.yc6{bottom:909.285000px;}
.y17{bottom:915.270000px;}
.y12{bottom:922.470000px;}
.y61{bottom:923.550000px;}
.y16{bottom:926.396347px;}
.y93{bottom:932.010000px;}
.yc5{bottom:933.090000px;}
.y7d{bottom:947.850000px;}
.y60{bottom:948.210000px;}
.y92{bottom:955.770000px;}
.yc4{bottom:956.850000px;}
.y7c{bottom:972.510000px;}
.y5f{bottom:972.870000px;}
.y91{bottom:979.530000px;}
.yc3{bottom:980.430000px;}
.y5e{bottom:997.530000px;}
.y90{bottom:1003.290000px;}
.yf3{bottom:1003.830000px;}
.yc2{bottom:1004.190000px;}
.y10{bottom:1018.590000px;}
.y5d{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y8f{bottom:1027.050000px;}
.yc1{bottom:1027.950000px;}
.y5c{bottom:1046.850000px;}
.y8e{bottom:1050.630000px;}
.yf2{bottom:1051.350000px;}
.yc0{bottom:1051.710000px;}
.y5b{bottom:1071.510000px;}
.y8d{bottom:1074.390000px;}
.yf1{bottom:1074.930000px;}
.ybf{bottom:1075.290000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y5a{bottom:1096.170000px;}
.y8c{bottom:1098.150000px;}
.yf0{bottom:1098.690000px;}
.ybe{bottom:1099.050000px;}
.y2{bottom:1106.250000px;}
.y7b{bottom:1120.470000px;}
.y59{bottom:1120.830000px;}
.y8b{bottom:1121.910000px;}
.yef{bottom:1122.450000px;}
.ybd{bottom:1122.810000px;}
.y7{bottom:1128.570000px;}
.y7a{bottom:1145.130000px;}
.y58{bottom:1145.520000px;}
.yee{bottom:1146.240000px;}
.ybc{bottom:1146.600000px;}
.y4{bottom:1156.860000px;}
.yed{bottom:1169.820000px;}
.y57{bottom:1170.180000px;}
.y3b{bottom:1187.280000px;}
.y3a{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1c{height:30.480469px;}
.h18{height:36.861328px;}
.h1f{height:46.251562px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1b{height:65.010937px;}
.h1d{height:65.884219px;}
.h20{height:66.078281px;}
.h1a{height:66.757500px;}
.h14{height:67.803750px;}
.h1e{height:68.084282px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h12{height:96.105000px;}
.h3{height:103.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.x13{left:23.029500px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1d{left:123.516000px;}
.x23{left:135.036000px;}
.x1e{left:150.510000px;}
.x1c{left:162.030000px;}
.x4{left:168.885000px;}
.x15{left:185.608500px;}
.x6{left:209.010000px;}
.x14{left:245.548500px;}
.x16{left:324.965515px;}
.x12{left:335.578500px;}
.x26{left:395.355000px;}
.x1b{left:417.855000px;}
.xa{left:445.620000px;}
.x18{left:473.505000px;}
.x19{left:478.545000px;}
.x1f{left:488.985000px;}
.x24{left:500.505000px;}
.x1a{left:505.545000px;}
.x20{left:515.985000px;}
.x21{left:527.505000px;}
.x25{left:575.565000px;}
.x22{left:706.110000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.406933pt;}
.ls16{letter-spacing:-0.368533pt;}
.ls1d{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.169067pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.101333pt;}
.lsb{letter-spacing:-0.015360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.069333pt;}
.ls1c{letter-spacing:0.097280pt;}
.lse{letter-spacing:0.133120pt;}
.lsd{letter-spacing:0.136533pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.368533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls14{letter-spacing:6.031360pt;}
.ls1a{letter-spacing:14.080000pt;}
.ls18{letter-spacing:16.160000pt;}
.ls17{letter-spacing:19.840000pt;}
.ls19{letter-spacing:21.760000pt;}
.ls13{letter-spacing:35.471360pt;}
.lsf{letter-spacing:56.891307pt;}
.ls6{letter-spacing:56.912640pt;}
.ls5{letter-spacing:177.258667pt;}
.wsa{word-spacing:-53.120000pt;}
.wsc{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws8{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.088533pt;}
.wsf{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.313067pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws7{word-spacing:-13.416533pt;}
.ws3{word-spacing:-13.022933pt;}
.wsb{word-spacing:0.000000pt;}
._3f{margin-left:-1.880320pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._5{width:1.840000pt;}
._c{width:3.415040pt;}
._d{width:4.537600pt;}
._3{width:5.711360pt;}
._4{width:7.128747pt;}
._f{width:8.592213pt;}
._10{width:9.864320pt;}
._11{width:10.946773pt;}
._12{width:12.247040pt;}
._36{width:13.250560pt;}
._a{width:16.133120pt;}
._b{width:17.428480pt;}
._13{width:18.959360pt;}
._14{width:20.023040pt;}
._19{width:21.373440pt;}
._1b{width:23.205760pt;}
._1a{width:24.555520pt;}
._2f{width:25.674240pt;}
._39{width:27.296000pt;}
._27{width:28.600320pt;}
._e{width:29.498880pt;}
._18{width:30.794240pt;}
._17{width:31.797760pt;}
._6{width:33.148587pt;}
._7{width:34.087893pt;}
._2d{width:35.282133pt;}
._16{width:36.684800pt;}
._4b{width:37.792000pt;}
._37{width:38.863360pt;}
._45{width:39.802880pt;}
._9{width:41.510400pt;}
._15{width:42.719360pt;}
._8{width:44.371627pt;}
._3e{width:45.840000pt;}
._24{width:46.784640pt;}
._42{width:47.984640pt;}
._1d{width:49.310080pt;}
._1c{width:50.373760pt;}
._2a{width:52.403200pt;}
._2b{width:53.580800pt;}
._29{width:55.320960pt;}
._26{width:56.583680pt;}
._44{width:57.643520pt;}
._32{width:61.294080pt;}
._33{width:62.208640pt;}
._25{width:63.531520pt;}
._4a{width:64.605440pt;}
._30{width:65.859200pt;}
._31{width:67.036800pt;}
._23{width:68.567680pt;}
._35{width:69.480960pt;}
._34{width:74.073600pt;}
._49{width:76.673280pt;}
._48{width:77.600000pt;}
._4f{width:78.566400pt;}
._4e{width:79.664640pt;}
._2e{width:82.350720pt;}
._2c{width:84.644480pt;}
._47{width:87.616000pt;}
._22{width:90.588800pt;}
._21{width:92.119680pt;}
._50{width:93.189760pt;}
._3d{width:94.266880pt;}
._43{width:97.387520pt;}
._46{width:98.332160pt;}
._41{width:111.168000pt;}
._20{width:135.905280pt;}
._3c{width:151.380480pt;}
._3b{width:152.353920pt;}
._51{width:155.738880pt;}
._4c{width:160.755200pt;}
._4d{width:161.926827pt;}
._1e{width:168.548907pt;}
._28{width:172.695040pt;}
._1f{width:175.686400pt;}
._2{width:177.258667pt;}
._52{width:187.000320pt;}
._38{width:196.716160pt;}
._40{width:207.388587pt;}
._3a{width:255.578027pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y15{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y14{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y13{bottom:62.560000pt;}
.y3c{bottom:66.880000pt;}
.y56{bottom:107.040000pt;}
.y8a{bottom:107.360000pt;}
.yb5{bottom:111.680000pt;}
.yec{bottom:112.160000pt;}
.ye6{bottom:112.480000pt;}
.y55{bottom:125.760000pt;}
.y89{bottom:126.080000pt;}
.yb4{bottom:132.640000pt;}
.yeb{bottom:133.280000pt;}
.ye5{bottom:133.600000pt;}
.y39{bottom:149.600000pt;}
.yb3{bottom:153.760000pt;}
.yea{bottom:154.240000pt;}
.ye4{bottom:154.560000pt;}
.y37{bottom:171.840000pt;}
.yb2{bottom:174.880000pt;}
.ye3{bottom:175.680000pt;}
.y36{bottom:193.786667pt;}
.yb1{bottom:195.706667pt;}
.ybb{bottom:196.026667pt;}
.ye2{bottom:196.826667pt;}
.y35{bottom:215.706667pt;}
.yb0{bottom:216.666667pt;}
.yba{bottom:216.986667pt;}
.ye1{bottom:217.946667pt;}
.y34{bottom:237.626667pt;}
.yaf{bottom:237.786667pt;}
.yb9{bottom:238.106667pt;}
.ye0{bottom:238.906667pt;}
.yae{bottom:259.226667pt;}
.y33{bottom:259.546667pt;}
.ydf{bottom:260.026667pt;}
.y88{bottom:272.666667pt;}
.yad{bottom:280.346667pt;}
.yde{bottom:281.146667pt;}
.y32{bottom:281.466667pt;}
.y79{bottom:294.266667pt;}
.y87{bottom:294.586667pt;}
.yac{bottom:301.306667pt;}
.ydd{bottom:302.266667pt;}
.y31{bottom:303.386667pt;}
.y78{bottom:316.186667pt;}
.y86{bottom:316.506667pt;}
.yab{bottom:322.426667pt;}
.ydc{bottom:323.226667pt;}
.y30{bottom:325.306667pt;}
.y77{bottom:338.106667pt;}
.y85{bottom:338.426667pt;}
.yaa{bottom:343.546667pt;}
.ydb{bottom:344.346667pt;}
.y2f{bottom:347.226667pt;}
.y54{bottom:357.306667pt;}
.y76{bottom:360.026667pt;}
.y84{bottom:360.346667pt;}
.ya9{bottom:364.666667pt;}
.yda{bottom:365.466667pt;}
.y2e{bottom:369.146667pt;}
.y53{bottom:379.226667pt;}
.y75{bottom:382.266667pt;}
.ya8{bottom:385.786667pt;}
.yd9{bottom:386.586667pt;}
.y2d{bottom:391.066667pt;}
.y4f{bottom:401.506667pt;}
.y83{bottom:403.906667pt;}
.y74{bottom:404.226667pt;}
.ya7{bottom:406.786667pt;}
.yd8{bottom:407.746667pt;}
.y2c{bottom:413.026667pt;}
.y4e{bottom:423.426667pt;}
.y82{bottom:425.986667pt;}
.y73{bottom:426.306667pt;}
.ya6{bottom:427.906667pt;}
.yd7{bottom:428.706667pt;}
.y2b{bottom:434.946667pt;}
.y4d{bottom:445.346667pt;}
.y81{bottom:447.906667pt;}
.y72{bottom:448.226667pt;}
.ya5{bottom:449.026667pt;}
.yd6{bottom:449.826667pt;}
.y2a{bottom:456.866667pt;}
.y4c{bottom:467.266667pt;}
.ya4{bottom:469.826667pt;}
.y71{bottom:470.146667pt;}
.yd5{bottom:470.946667pt;}
.y29{bottom:478.786667pt;}
.y4b{bottom:489.186667pt;}
.ya3{bottom:490.786667pt;}
.yb8{bottom:491.106667pt;}
.y70{bottom:492.066667pt;}
.y28{bottom:500.706667pt;}
.y4a{bottom:511.106667pt;}
.ya2{bottom:512.226667pt;}
.yd4{bottom:513.026667pt;}
.y6f{bottom:513.986667pt;}
.y27{bottom:522.626667pt;}
.y52{bottom:532.706667pt;}
.y49{bottom:533.026667pt;}
.ya1{bottom:533.346667pt;}
.yd3{bottom:534.146667pt;}
.y6e{bottom:535.906667pt;}
.y26{bottom:544.546667pt;}
.ya0{bottom:554.466667pt;}
.y48{bottom:554.626667pt;}
.yd2{bottom:554.946667pt;}
.ye9{bottom:555.266667pt;}
.y6d{bottom:557.826667pt;}
.y38{bottom:566.306667pt;}
.y25{bottom:566.626667pt;}
.y9f{bottom:575.426667pt;}
.yd1{bottom:576.066667pt;}
.ye8{bottom:576.386667pt;}
.y47{bottom:576.546667pt;}
.y6c{bottom:579.746667pt;}
.y24{bottom:588.226667pt;}
.y9e{bottom:596.546667pt;}
.yd0{bottom:597.026667pt;}
.ye7{bottom:597.346667pt;}
.y46{bottom:598.786667pt;}
.y6b{bottom:601.693333pt;}
.y23{bottom:610.173333pt;}
.y9d{bottom:617.693333pt;}
.ycf{bottom:618.493333pt;}
.y45{bottom:620.733333pt;}
.y6a{bottom:623.613333pt;}
.y22{bottom:631.453333pt;}
.y9c{bottom:638.813333pt;}
.yce{bottom:639.613333pt;}
.y44{bottom:642.653333pt;}
.y80{bottom:645.213333pt;}
.y69{bottom:645.533333pt;}
.y21{bottom:650.973333pt;}
.y9b{bottom:659.773333pt;}
.ycd{bottom:660.733333pt;}
.y43{bottom:664.253333pt;}
.y51{bottom:664.573333pt;}
.y68{bottom:667.453333pt;}
.y20{bottom:672.573333pt;}
.y9a{bottom:680.893333pt;}
.ycc{bottom:681.693333pt;}
.y42{bottom:686.493333pt;}
.y67{bottom:689.373333pt;}
.y1f{bottom:691.933333pt;}
.y99{bottom:702.013333pt;}
.yf5{bottom:702.493333pt;}
.ycb{bottom:702.813333pt;}
.y41{bottom:708.413333pt;}
.y66{bottom:710.973333pt;}
.y7f{bottom:711.293333pt;}
.y1e{bottom:711.453333pt;}
.y98{bottom:723.133333pt;}
.yf4{bottom:723.613333pt;}
.yca{bottom:723.933333pt;}
.y40{bottom:730.013333pt;}
.y50{bottom:730.333333pt;}
.y1d{bottom:730.813333pt;}
.y65{bottom:732.893333pt;}
.y7e{bottom:733.213333pt;}
.y97{bottom:744.093333pt;}
.yc9{bottom:745.053333pt;}
.y1c{bottom:750.173333pt;}
.y3f{bottom:752.253333pt;}
.y64{bottom:755.133333pt;}
.yb7{bottom:764.893333pt;}
.y96{bottom:765.213333pt;}
.yc8{bottom:766.013333pt;}
.y1b{bottom:769.533333pt;}
.y3e{bottom:774.173333pt;}
.y63{bottom:777.053333pt;}
.yb6{bottom:786.013333pt;}
.y95{bottom:786.333333pt;}
.yc7{bottom:787.133333pt;}
.y1a{bottom:788.733333pt;}
.y3d{bottom:796.093333pt;}
.y62{bottom:798.973333pt;}
.y19{bottom:805.853333pt;}
.y94{bottom:807.453333pt;}
.yc6{bottom:808.253333pt;}
.y17{bottom:813.573333pt;}
.y12{bottom:819.973333pt;}
.y61{bottom:820.933333pt;}
.y16{bottom:823.463420pt;}
.y93{bottom:828.453333pt;}
.yc5{bottom:829.413333pt;}
.y7d{bottom:842.533333pt;}
.y60{bottom:842.853333pt;}
.y92{bottom:849.573333pt;}
.yc4{bottom:850.533333pt;}
.y7c{bottom:864.453333pt;}
.y5f{bottom:864.773333pt;}
.y91{bottom:870.693333pt;}
.yc3{bottom:871.493333pt;}
.y5e{bottom:886.693333pt;}
.y90{bottom:891.813333pt;}
.yf3{bottom:892.293333pt;}
.yc2{bottom:892.613333pt;}
.y10{bottom:905.413333pt;}
.y5d{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y8f{bottom:912.933333pt;}
.yc1{bottom:913.733333pt;}
.y5c{bottom:930.533333pt;}
.y8e{bottom:933.893333pt;}
.yf2{bottom:934.533333pt;}
.yc0{bottom:934.853333pt;}
.y5b{bottom:952.453333pt;}
.y8d{bottom:955.013333pt;}
.yf1{bottom:955.493333pt;}
.ybf{bottom:955.813333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y5a{bottom:974.373333pt;}
.y8c{bottom:976.133333pt;}
.yf0{bottom:976.613333pt;}
.ybe{bottom:976.933333pt;}
.y2{bottom:983.333333pt;}
.y7b{bottom:995.973333pt;}
.y59{bottom:996.293333pt;}
.y8b{bottom:997.253333pt;}
.yef{bottom:997.733333pt;}
.ybd{bottom:998.053333pt;}
.y7{bottom:1003.173333pt;}
.y7a{bottom:1017.893333pt;}
.y58{bottom:1018.240000pt;}
.yee{bottom:1018.880000pt;}
.ybc{bottom:1019.200000pt;}
.y4{bottom:1028.320000pt;}
.yed{bottom:1039.840000pt;}
.y57{bottom:1040.160000pt;}
.y3b{bottom:1055.360000pt;}
.y3a{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1c{height:27.093750pt;}
.h18{height:32.765625pt;}
.h1f{height:41.112500pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h1d{height:58.563750pt;}
.h20{height:58.736250pt;}
.h1a{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1e{height:60.519362pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h12{height:85.426667pt;}
.h3{height:92.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.x13{left:20.470667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1d{left:109.792000pt;}
.x23{left:120.032000pt;}
.x1e{left:133.786667pt;}
.x1c{left:144.026667pt;}
.x4{left:150.120000pt;}
.x15{left:164.985333pt;}
.x6{left:185.786667pt;}
.x14{left:218.265333pt;}
.x16{left:288.858236pt;}
.x12{left:298.292000pt;}
.x26{left:351.426667pt;}
.x1b{left:371.426667pt;}
.xa{left:396.106667pt;}
.x18{left:420.893333pt;}
.x19{left:425.373333pt;}
.x1f{left:434.653333pt;}
.x24{left:444.893333pt;}
.x1a{left:449.373333pt;}
.x20{left:458.653333pt;}
.x21{left:468.893333pt;}
.x25{left:511.613333pt;}
.x22{left:627.653333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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