
    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_8ebe153fb37f8d0e700b75c3.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_7d2745d48e5a2faab0356827.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_a20fb5060ff5d651997c733b.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_602f791a9493dc2a507abc64.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_9e3d67338c9218e370e07626.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_f5bdd1cdd678e02852e93a84.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;}
.m1{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,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);}
.m2{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;}
.ls24{letter-spacing:-0.508896px;}
.ls18{letter-spacing:-0.459648px;}
.ls1c{letter-spacing:-0.417312px;}
.lsd{letter-spacing:-0.381024px;}
.ls25{letter-spacing:-0.361152px;}
.ls16{letter-spacing:-0.338688px;}
.ls1b{letter-spacing:-0.320544px;}
.ls19{letter-spacing:-0.302400px;}
.ls23{letter-spacing:-0.273600px;}
.ls26{letter-spacing:-0.272160px;}
.ls15{letter-spacing:-0.260064px;}
.ls11{letter-spacing:-0.241920px;}
.ls17{letter-spacing:-0.223776px;}
.ls13{letter-spacing:-0.198720px;}
.ls10{letter-spacing:-0.175392px;}
.lsc{letter-spacing:-0.158976px;}
.ls1a{letter-spacing:-0.157248px;}
.lsb{letter-spacing:-0.152352px;}
.lsa{letter-spacing:-0.145728px;}
.lse{letter-spacing:-0.145152px;}
.ls12{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.120960px;}
.ls9{letter-spacing:-0.119232px;}
.ls8{letter-spacing:-0.079488px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.059904px;}
.ls1e{letter-spacing:0.123552px;}
.ls1f{letter-spacing:0.161568px;}
.ls3{letter-spacing:0.237600px;}
.ls0{letter-spacing:0.240480px;}
.ls20{letter-spacing:0.242352px;}
.ls27{letter-spacing:0.263808px;}
.ls1d{letter-spacing:0.285120px;}
.ls14{letter-spacing:0.359136px;}
.ls29{letter-spacing:1.945440px;}
.ls28{letter-spacing:6.049872px;}
.ls2a{letter-spacing:7.341120px;}
.ls4{letter-spacing:11.252160px;}
.ls2{letter-spacing:15.058800px;}
.ls5{letter-spacing:15.644160px;}
.ls6{letter-spacing:30.684960px;}
.ls2c{letter-spacing:35.986896px;}
.ls2d{letter-spacing:35.987040px;}
.ls21{letter-spacing:56.468160px;}
.ls22{letter-spacing:63.587520px;}
.ls2b{letter-spacing:65.986848px;}
.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;}
.ws7{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.974848px;}
.ws11{word-spacing:-14.962752px;}
.ws5{word-spacing:-14.944608px;}
.wsa{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.ws14{word-spacing:-14.859936px;}
.ws15{word-spacing:-14.847840px;}
.ws6{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws13{word-spacing:-14.817600px;}
.ws9{word-spacing:-14.781312px;}
.ws4{word-spacing:-14.738976px;}
.ws12{word-spacing:-14.702688px;}
.wsc{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.406400px;}
.wse{word-spacing:-13.318848px;}
.wsf{word-spacing:-0.060480px;}
.wsb{word-spacing:0.000000px;}
._a{margin-left:-3.963600px;}
._3{margin-left:-2.569680px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._5{width:2.710944px;}
._4{width:4.475520px;}
._b{width:6.229440px;}
._2{width:7.862400px;}
._1d{width:9.072000px;}
._7{width:10.584000px;}
._8{width:11.672640px;}
._6{width:13.184640px;}
._c{width:16.073280px;}
._10{width:17.918064px;}
._9{width:19.579536px;}
._1e{width:20.926080px;}
._28{width:22.559040px;}
._1f{width:23.647680px;}
._21{width:24.906672px;}
._13{width:26.369280px;}
._14{width:27.937440px;}
._25{width:28.969920px;}
._17{width:30.044736px;}
._16{width:31.147200px;}
._19{width:32.235840px;}
._18{width:33.445440px;}
._23{width:34.594560px;}
._1b{width:36.590400px;}
._12{width:38.283840px;}
._1a{width:40.098240px;}
._24{width:41.126400px;}
._32{width:42.243552px;}
._30{width:43.289424px;}
._29{width:44.532288px;}
._27{width:45.783360px;}
._31{width:48.988800px;}
._2b{width:50.258880px;}
._11{width:51.347520px;}
._26{width:53.282880px;}
._2c{width:54.716688px;}
._e{width:56.752704px;}
._d{width:58.000320px;}
._20{width:60.721920px;}
._22{width:62.072640px;}
._2d{width:64.051200px;}
._f{width:68.584320px;}
._1c{width:77.232960px;}
._33{width:78.744960px;}
._34{width:80.377920px;}
._2e{width:96.284160px;}
._2f{width:97.372800px;}
._15{width:107.654400px;}
._2a{width:233.392320px;}
.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;}
.y9a{bottom:3.600000px;}
.yb7{bottom:3.780000px;}
.ya6{bottom:3.840000px;}
.ya0{bottom:4.320000px;}
.ybe{bottom:4.500000px;}
.yaf{bottom:4.560000px;}
.y9d{bottom:21.600000px;}
.ya2{bottom:22.320000px;}
.y42{bottom:53.640000px;}
.y6{bottom:58.320000px;}
.y3e{bottom:64.500000px;}
.y5{bottom:86.400000px;}
.yc5{bottom:118.440000px;}
.ya4{bottom:121.320000px;}
.y3d{bottom:123.120000px;}
.yc4{bottom:132.480000px;}
.ya1{bottom:135.000000px;}
.y10a{bottom:138.240000px;}
.yf2{bottom:138.960000px;}
.y3c{bottom:140.400000px;}
.ya3{bottom:153.000000px;}
.y3b{bottom:157.680000px;}
.y109{bottom:164.520000px;}
.yf1{bottom:165.240000px;}
.y9f{bottom:171.000000px;}
.y3a{bottom:174.600000px;}
.y108{bottom:181.800000px;}
.yf0{bottom:182.520000px;}
.y39{bottom:191.880000px;}
.y107{bottom:199.080000px;}
.yef{bottom:199.800000px;}
.y9c{bottom:207.000000px;}
.y38{bottom:209.160000px;}
.y106{bottom:216.360000px;}
.yee{bottom:217.080000px;}
.y9e{bottom:225.000000px;}
.y37{bottom:226.440000px;}
.y105{bottom:233.280000px;}
.yed{bottom:234.360000px;}
.y9b{bottom:243.000000px;}
.y36{bottom:243.720000px;}
.yec{bottom:251.280000px;}
.y104{bottom:259.560000px;}
.y35{bottom:261.000000px;}
.yeb{bottom:268.560000px;}
.y103{bottom:276.840000px;}
.y34{bottom:278.280000px;}
.y99{bottom:282.600000px;}
.yea{bottom:285.840000px;}
.y102{bottom:294.120000px;}
.y33{bottom:295.560000px;}
.y98{bottom:299.880000px;}
.ye9{bottom:303.120000px;}
.y101{bottom:311.400000px;}
.y97{bottom:317.160000px;}
.ye8{bottom:320.400000px;}
.y32{bottom:321.840000px;}
.y6f{bottom:328.680000px;}
.ye7{bottom:337.680000px;}
.y96{bottom:343.440000px;}
.y100{bottom:345.960000px;}
.y31{bottom:349.200000px;}
.y6e{bottom:354.960000px;}
.y95{bottom:360.720000px;}
.yff{bottom:363.240000px;}
.y30{bottom:363.600000px;}
.y6d{bottom:372.240000px;}
.y2f{bottom:377.280000px;}
.y94{bottom:378.000000px;}
.yfe{bottom:380.520000px;}
.ye6{bottom:389.520000px;}
.y2e{bottom:390.960000px;}
.yc3{bottom:392.040000px;}
.y93{bottom:395.280000px;}
.yfd{bottom:397.800000px;}
.y6c{bottom:398.520000px;}
.y2d{bottom:406.080000px;}
.ye5{bottom:406.800000px;}
.yc2{bottom:409.320000px;}
.y92{bottom:412.200000px;}
.yfc{bottom:415.080000px;}
.y2c{bottom:423.360000px;}
.ye4{bottom:424.080000px;}
.y6b{bottom:424.800000px;}
.y91{bottom:429.480000px;}
.y10b{bottom:433.800000px;}
.y2b{bottom:440.640000px;}
.ye3{bottom:441.000000px;}
.y90{bottom:446.760000px;}
.y6a{bottom:451.080000px;}
.y2a{bottom:457.920000px;}
.ye2{bottom:458.280000px;}
.y8f{bottom:464.040000px;}
.yfb{bottom:467.280000px;}
.y69{bottom:468.000000px;}
.y29{bottom:475.200000px;}
.ye1{bottom:475.560000px;}
.y8e{bottom:481.320000px;}
.yfa{bottom:484.560000px;}
.y68{bottom:485.280000px;}
.y28{bottom:492.480000px;}
.ye0{bottom:492.840000px;}
.yf9{bottom:501.840000px;}
.y67{bottom:502.560000px;}
.y8d{bottom:507.600000px;}
.y27{bottom:509.760000px;}
.ydf{bottom:510.120000px;}
.yf8{bottom:519.120000px;}
.y66{bottom:519.840000px;}
.y8c{bottom:524.880000px;}
.y26{bottom:527.040000px;}
.yde{bottom:536.400000px;}
.y65{bottom:537.120000px;}
.y8b{bottom:542.160000px;}
.y25{bottom:544.320000px;}
.ydd{bottom:553.680000px;}
.y64{bottom:554.400000px;}
.y8a{bottom:559.440000px;}
.y24{bottom:561.600000px;}
.ydc{bottom:570.960000px;}
.y63{bottom:571.680000px;}
.y89{bottom:576.720000px;}
.y23{bottom:578.520000px;}
.ydb{bottom:588.240000px;}
.y62{bottom:588.960000px;}
.y88{bottom:594.000000px;}
.y22{bottom:595.800000px;}
.yda{bottom:605.520000px;}
.y61{bottom:606.240000px;}
.y87{bottom:611.280000px;}
.y21{bottom:613.080000px;}
.yd9{bottom:622.800000px;}
.y60{bottom:623.520000px;}
.y86{bottom:628.200000px;}
.y20{bottom:630.360000px;}
.yd8{bottom:640.080000px;}
.y5f{bottom:640.800000px;}
.y1f{bottom:647.640000px;}
.y85{bottom:654.480000px;}
.yd7{bottom:657.000000px;}
.y5e{bottom:658.080000px;}
.y1e{bottom:664.920000px;}
.y84{bottom:672.840000px;}
.yd6{bottom:674.280000px;}
.y5d{bottom:675.000000px;}
.y1d{bottom:682.200000px;}
.yc1{bottom:688.500000px;}
.y83{bottom:690.120000px;}
.yd5{bottom:691.560000px;}
.y5c{bottom:692.280000px;}
.y1c{bottom:699.480000px;}
.yf7{bottom:700.560000px;}
.yc0{bottom:706.500000px;}
.y82{bottom:708.480000px;}
.yd4{bottom:708.840000px;}
.y5b{bottom:709.560000px;}
.y1b{bottom:716.760000px;}
.yf6{bottom:717.840000px;}
.ybf{bottom:724.500000px;}
.y81{bottom:725.760000px;}
.yd3{bottom:726.120000px;}
.y5a{bottom:726.840000px;}
.y1a{bottom:734.040000px;}
.yf5{bottom:735.120000px;}
.ybd{bottom:742.500000px;}
.yd2{bottom:743.400000px;}
.y59{bottom:744.120000px;}
.y19{bottom:751.320000px;}
.yf4{bottom:752.400000px;}
.yd1{bottom:760.680000px;}
.y58{bottom:761.400000px;}
.y80{bottom:762.480000px;}
.ybc{bottom:765.000000px;}
.y18{bottom:768.240000px;}
.yf3{bottom:769.680000px;}
.y57{bottom:778.680000px;}
.ybb{bottom:782.280000px;}
.y17{bottom:785.520000px;}
.yd0{bottom:786.960000px;}
.y7f{bottom:789.840000px;}
.y56{bottom:795.960000px;}
.yba{bottom:796.500000px;}
.y16{bottom:802.800000px;}
.ycf{bottom:804.240000px;}
.y55{bottom:813.240000px;}
.yb9{bottom:814.500000px;}
.y7e{bottom:816.120000px;}
.y15{bottom:820.080000px;}
.yce{bottom:821.520000px;}
.y54{bottom:830.520000px;}
.yb8{bottom:832.500000px;}
.y7d{bottom:834.480000px;}
.y14{bottom:837.360000px;}
.ycd{bottom:838.800000px;}
.y53{bottom:847.800000px;}
.yb6{bottom:850.500000px;}
.y7c{bottom:852.480000px;}
.y13{bottom:854.640000px;}
.ycc{bottom:855.720000px;}
.y52{bottom:864.720000px;}
.y7b{bottom:870.840000px;}
.yb5{bottom:872.280000px;}
.ycb{bottom:873.000000px;}
.y12{bottom:874.080000px;}
.y51{bottom:882.000000px;}
.y7a{bottom:888.120000px;}
.yb4{bottom:889.560000px;}
.yca{bottom:890.280000px;}
.y11{bottom:891.360000px;}
.y50{bottom:899.280000px;}
.yb3{bottom:903.000000px;}
.yc9{bottom:907.560000px;}
.y10{bottom:908.640000px;}
.y79{bottom:915.480000px;}
.y4f{bottom:916.560000px;}
.yb2{bottom:921.000000px;}
.yc8{bottom:924.840000px;}
.yf{bottom:928.080000px;}
.y4e{bottom:933.840000px;}
.yb1{bottom:939.000000px;}
.y78{bottom:941.760000px;}
.yc7{bottom:942.120000px;}
.ye{bottom:950.760000px;}
.y4d{bottom:951.120000px;}
.yb0{bottom:957.000000px;}
.y77{bottom:959.040000px;}
.yc6{bottom:959.400000px;}
.yd{bottom:962.640000px;}
.y4c{bottom:968.400000px;}
.yae{bottom:975.000000px;}
.yc{bottom:985.320000px;}
.y4b{bottom:985.680000px;}
.yb{bottom:997.200000px;}
.yad{bottom:997.560000px;}
.y4a{bottom:1002.960000px;}
.y76{bottom:1003.680000px;}
.yac{bottom:1014.840000px;}
.ya{bottom:1019.880000px;}
.y49{bottom:1020.240000px;}
.y75{bottom:1022.040000px;}
.yab{bottom:1029.000000px;}
.y48{bottom:1037.520000px;}
.y74{bottom:1040.400000px;}
.y9{bottom:1041.480000px;}
.yaa{bottom:1047.000000px;}
.y47{bottom:1054.800000px;}
.y73{bottom:1058.400000px;}
.ya9{bottom:1065.000000px;}
.y8{bottom:1071.720000px;}
.y72{bottom:1076.760000px;}
.ya8{bottom:1083.000000px;}
.y46{bottom:1089.000000px;}
.y71{bottom:1095.120000px;}
.ya7{bottom:1101.000000px;}
.y45{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y70{bottom:1113.480000px;}
.ya5{bottom:1119.000000px;}
.y44{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.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;}
.he{height:18.000000px;}
.h11{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.hf{height:36.000000px;}
.hd{height:37.085625px;}
.h10{height:37.500000px;}
.h5{height:40.989375px;}
.ha{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h3{height:48.095156px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w6{width:63.000000px;}
.w11{width:64.500000px;}
.wd{width:66.000000px;}
.w9{width:117.000000px;}
.w5{width:127.500000px;}
.w10{width:130.500000px;}
.wc{width:135.000000px;}
.w14{width:147.000000px;}
.w4{width:192.000000px;}
.w12{width:231.000000px;}
.we{width:232.500000px;}
.w13{width:234.000000px;}
.wa{width:237.000000px;}
.wb{width:240.000000px;}
.wf{width:252.000000px;}
.w8{width:255.000000px;}
.w3{width:298.500000px;}
.w7{width:307.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x10{left:1.560048px;}
.x14{left:8.640036px;}
.x5{left:108.000000px;}
.x11{left:109.746108px;}
.x8{left:110.787588px;}
.xc{left:117.633564px;}
.x4{left:121.562640px;}
.xa{left:132.827652px;}
.x29{left:139.950072px;}
.xf{left:160.500000px;}
.x26{left:201.897216px;}
.x18{left:211.909428px;}
.x23{left:217.948248px;}
.x13{left:220.973148px;}
.x1f{left:224.811036px;}
.x9{left:262.216548px;}
.x28{left:265.852296px;}
.x1b{left:268.759980px;}
.x2{left:298.937628px;}
.x20{left:339.000000px;}
.x1c{left:343.500000px;}
.xb{left:352.307376px;}
.x15{left:405.000000px;}
.x19{left:414.000000px;}
.xd{left:432.096802px;}
.x3{left:446.474880px;}
.xe{left:473.040000px;}
.x12{left:500.040000px;}
.x2a{left:504.990360px;}
.x1{left:514.061640px;}
.x24{left:573.000000px;}
.x1d{left:583.500000px;}
.x21{left:591.000000px;}
.x16{left:595.500000px;}
.x7{left:603.506520px;}
.x27{left:644.654880px;}
.x25{left:651.134880px;}
.x1a{left:667.500000px;}
.x1e{left:718.500000px;}
.x22{left:720.000000px;}
.x17{left:721.500000px;}
.x6{left:759.861720px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls24{letter-spacing:-0.452352pt;}
.ls18{letter-spacing:-0.408576pt;}
.ls1c{letter-spacing:-0.370944pt;}
.lsd{letter-spacing:-0.338688pt;}
.ls25{letter-spacing:-0.321024pt;}
.ls16{letter-spacing:-0.301056pt;}
.ls1b{letter-spacing:-0.284928pt;}
.ls19{letter-spacing:-0.268800pt;}
.ls23{letter-spacing:-0.243200pt;}
.ls26{letter-spacing:-0.241920pt;}
.ls15{letter-spacing:-0.231168pt;}
.ls11{letter-spacing:-0.215040pt;}
.ls17{letter-spacing:-0.198912pt;}
.ls13{letter-spacing:-0.176640pt;}
.ls10{letter-spacing:-0.155904pt;}
.lsc{letter-spacing:-0.141312pt;}
.ls1a{letter-spacing:-0.139776pt;}
.lsb{letter-spacing:-0.135424pt;}
.lsa{letter-spacing:-0.129536pt;}
.lse{letter-spacing:-0.129024pt;}
.ls12{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.107520pt;}
.ls9{letter-spacing:-0.105984pt;}
.ls8{letter-spacing:-0.070656pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053248pt;}
.ls1e{letter-spacing:0.109824pt;}
.ls1f{letter-spacing:0.143616pt;}
.ls3{letter-spacing:0.211200pt;}
.ls0{letter-spacing:0.213760pt;}
.ls20{letter-spacing:0.215424pt;}
.ls27{letter-spacing:0.234496pt;}
.ls1d{letter-spacing:0.253440pt;}
.ls14{letter-spacing:0.319232pt;}
.ls29{letter-spacing:1.729280pt;}
.ls28{letter-spacing:5.377664pt;}
.ls2a{letter-spacing:6.525440pt;}
.ls4{letter-spacing:10.001920pt;}
.ls2{letter-spacing:13.385600pt;}
.ls5{letter-spacing:13.905920pt;}
.ls6{letter-spacing:27.275520pt;}
.ls2c{letter-spacing:31.988352pt;}
.ls2d{letter-spacing:31.988480pt;}
.ls21{letter-spacing:50.193920pt;}
.ls22{letter-spacing:56.522240pt;}
.ls2b{letter-spacing:58.654976pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws7{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.310976pt;}
.ws11{word-spacing:-13.300224pt;}
.ws5{word-spacing:-13.284096pt;}
.wsa{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.ws14{word-spacing:-13.208832pt;}
.ws15{word-spacing:-13.198080pt;}
.ws6{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws13{word-spacing:-13.171200pt;}
.ws9{word-spacing:-13.138944pt;}
.ws4{word-spacing:-13.101312pt;}
.ws12{word-spacing:-13.069056pt;}
.wsc{word-spacing:-12.160000pt;}
.wsd{word-spacing:-11.916800pt;}
.wse{word-spacing:-11.838976pt;}
.wsf{word-spacing:-0.053760pt;}
.wsb{word-spacing:0.000000pt;}
._a{margin-left:-3.523200pt;}
._3{margin-left:-2.284160pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._5{width:2.409728pt;}
._4{width:3.978240pt;}
._b{width:5.537280pt;}
._2{width:6.988800pt;}
._1d{width:8.064000pt;}
._7{width:9.408000pt;}
._8{width:10.375680pt;}
._6{width:11.719680pt;}
._c{width:14.287360pt;}
._10{width:15.927168pt;}
._9{width:17.404032pt;}
._1e{width:18.600960pt;}
._28{width:20.052480pt;}
._1f{width:21.020160pt;}
._21{width:22.139264pt;}
._13{width:23.439360pt;}
._14{width:24.833280pt;}
._25{width:25.751040pt;}
._17{width:26.706432pt;}
._16{width:27.686400pt;}
._19{width:28.654080pt;}
._18{width:29.729280pt;}
._23{width:30.750720pt;}
._1b{width:32.524800pt;}
._12{width:34.030080pt;}
._1a{width:35.642880pt;}
._24{width:36.556800pt;}
._32{width:37.549824pt;}
._30{width:38.479488pt;}
._29{width:39.584256pt;}
._27{width:40.696320pt;}
._31{width:43.545600pt;}
._2b{width:44.674560pt;}
._11{width:45.642240pt;}
._26{width:47.362560pt;}
._2c{width:48.637056pt;}
._e{width:50.446848pt;}
._d{width:51.555840pt;}
._20{width:53.975040pt;}
._22{width:55.175680pt;}
._2d{width:56.934400pt;}
._f{width:60.963840pt;}
._1c{width:68.651520pt;}
._33{width:69.995520pt;}
._34{width:71.447040pt;}
._2e{width:85.585920pt;}
._2f{width:86.553600pt;}
._15{width:95.692800pt;}
._2a{width:207.459840pt;}
.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;}
.y9a{bottom:3.200000pt;}
.yb7{bottom:3.360000pt;}
.ya6{bottom:3.413333pt;}
.ya0{bottom:3.840000pt;}
.ybe{bottom:4.000000pt;}
.yaf{bottom:4.053333pt;}
.y9d{bottom:19.200000pt;}
.ya2{bottom:19.840000pt;}
.y42{bottom:47.680000pt;}
.y6{bottom:51.840000pt;}
.y3e{bottom:57.333333pt;}
.y5{bottom:76.800000pt;}
.yc5{bottom:105.280000pt;}
.ya4{bottom:107.840000pt;}
.y3d{bottom:109.440000pt;}
.yc4{bottom:117.760000pt;}
.ya1{bottom:120.000000pt;}
.y10a{bottom:122.880000pt;}
.yf2{bottom:123.520000pt;}
.y3c{bottom:124.800000pt;}
.ya3{bottom:136.000000pt;}
.y3b{bottom:140.160000pt;}
.y109{bottom:146.240000pt;}
.yf1{bottom:146.880000pt;}
.y9f{bottom:152.000000pt;}
.y3a{bottom:155.200000pt;}
.y108{bottom:161.600000pt;}
.yf0{bottom:162.240000pt;}
.y39{bottom:170.560000pt;}
.y107{bottom:176.960000pt;}
.yef{bottom:177.600000pt;}
.y9c{bottom:184.000000pt;}
.y38{bottom:185.920000pt;}
.y106{bottom:192.320000pt;}
.yee{bottom:192.960000pt;}
.y9e{bottom:200.000000pt;}
.y37{bottom:201.280000pt;}
.y105{bottom:207.360000pt;}
.yed{bottom:208.320000pt;}
.y9b{bottom:216.000000pt;}
.y36{bottom:216.640000pt;}
.yec{bottom:223.360000pt;}
.y104{bottom:230.720000pt;}
.y35{bottom:232.000000pt;}
.yeb{bottom:238.720000pt;}
.y103{bottom:246.080000pt;}
.y34{bottom:247.360000pt;}
.y99{bottom:251.200000pt;}
.yea{bottom:254.080000pt;}
.y102{bottom:261.440000pt;}
.y33{bottom:262.720000pt;}
.y98{bottom:266.560000pt;}
.ye9{bottom:269.440000pt;}
.y101{bottom:276.800000pt;}
.y97{bottom:281.920000pt;}
.ye8{bottom:284.800000pt;}
.y32{bottom:286.080000pt;}
.y6f{bottom:292.160000pt;}
.ye7{bottom:300.160000pt;}
.y96{bottom:305.280000pt;}
.y100{bottom:307.520000pt;}
.y31{bottom:310.400000pt;}
.y6e{bottom:315.520000pt;}
.y95{bottom:320.640000pt;}
.yff{bottom:322.880000pt;}
.y30{bottom:323.200000pt;}
.y6d{bottom:330.880000pt;}
.y2f{bottom:335.360000pt;}
.y94{bottom:336.000000pt;}
.yfe{bottom:338.240000pt;}
.ye6{bottom:346.240000pt;}
.y2e{bottom:347.520000pt;}
.yc3{bottom:348.480000pt;}
.y93{bottom:351.360000pt;}
.yfd{bottom:353.600000pt;}
.y6c{bottom:354.240000pt;}
.y2d{bottom:360.960000pt;}
.ye5{bottom:361.600000pt;}
.yc2{bottom:363.840000pt;}
.y92{bottom:366.400000pt;}
.yfc{bottom:368.960000pt;}
.y2c{bottom:376.320000pt;}
.ye4{bottom:376.960000pt;}
.y6b{bottom:377.600000pt;}
.y91{bottom:381.760000pt;}
.y10b{bottom:385.600000pt;}
.y2b{bottom:391.680000pt;}
.ye3{bottom:392.000000pt;}
.y90{bottom:397.120000pt;}
.y6a{bottom:400.960000pt;}
.y2a{bottom:407.040000pt;}
.ye2{bottom:407.360000pt;}
.y8f{bottom:412.480000pt;}
.yfb{bottom:415.360000pt;}
.y69{bottom:416.000000pt;}
.y29{bottom:422.400000pt;}
.ye1{bottom:422.720000pt;}
.y8e{bottom:427.840000pt;}
.yfa{bottom:430.720000pt;}
.y68{bottom:431.360000pt;}
.y28{bottom:437.760000pt;}
.ye0{bottom:438.080000pt;}
.yf9{bottom:446.080000pt;}
.y67{bottom:446.720000pt;}
.y8d{bottom:451.200000pt;}
.y27{bottom:453.120000pt;}
.ydf{bottom:453.440000pt;}
.yf8{bottom:461.440000pt;}
.y66{bottom:462.080000pt;}
.y8c{bottom:466.560000pt;}
.y26{bottom:468.480000pt;}
.yde{bottom:476.800000pt;}
.y65{bottom:477.440000pt;}
.y8b{bottom:481.920000pt;}
.y25{bottom:483.840000pt;}
.ydd{bottom:492.160000pt;}
.y64{bottom:492.800000pt;}
.y8a{bottom:497.280000pt;}
.y24{bottom:499.200000pt;}
.ydc{bottom:507.520000pt;}
.y63{bottom:508.160000pt;}
.y89{bottom:512.640000pt;}
.y23{bottom:514.240000pt;}
.ydb{bottom:522.880000pt;}
.y62{bottom:523.520000pt;}
.y88{bottom:528.000000pt;}
.y22{bottom:529.600000pt;}
.yda{bottom:538.240000pt;}
.y61{bottom:538.880000pt;}
.y87{bottom:543.360000pt;}
.y21{bottom:544.960000pt;}
.yd9{bottom:553.600000pt;}
.y60{bottom:554.240000pt;}
.y86{bottom:558.400000pt;}
.y20{bottom:560.320000pt;}
.yd8{bottom:568.960000pt;}
.y5f{bottom:569.600000pt;}
.y1f{bottom:575.680000pt;}
.y85{bottom:581.760000pt;}
.yd7{bottom:584.000000pt;}
.y5e{bottom:584.960000pt;}
.y1e{bottom:591.040000pt;}
.y84{bottom:598.080000pt;}
.yd6{bottom:599.360000pt;}
.y5d{bottom:600.000000pt;}
.y1d{bottom:606.400000pt;}
.yc1{bottom:612.000000pt;}
.y83{bottom:613.440000pt;}
.yd5{bottom:614.720000pt;}
.y5c{bottom:615.360000pt;}
.y1c{bottom:621.760000pt;}
.yf7{bottom:622.720000pt;}
.yc0{bottom:628.000000pt;}
.y82{bottom:629.760000pt;}
.yd4{bottom:630.080000pt;}
.y5b{bottom:630.720000pt;}
.y1b{bottom:637.120000pt;}
.yf6{bottom:638.080000pt;}
.ybf{bottom:644.000000pt;}
.y81{bottom:645.120000pt;}
.yd3{bottom:645.440000pt;}
.y5a{bottom:646.080000pt;}
.y1a{bottom:652.480000pt;}
.yf5{bottom:653.440000pt;}
.ybd{bottom:660.000000pt;}
.yd2{bottom:660.800000pt;}
.y59{bottom:661.440000pt;}
.y19{bottom:667.840000pt;}
.yf4{bottom:668.800000pt;}
.yd1{bottom:676.160000pt;}
.y58{bottom:676.800000pt;}
.y80{bottom:677.760000pt;}
.ybc{bottom:680.000000pt;}
.y18{bottom:682.880000pt;}
.yf3{bottom:684.160000pt;}
.y57{bottom:692.160000pt;}
.ybb{bottom:695.360000pt;}
.y17{bottom:698.240000pt;}
.yd0{bottom:699.520000pt;}
.y7f{bottom:702.080000pt;}
.y56{bottom:707.520000pt;}
.yba{bottom:708.000000pt;}
.y16{bottom:713.600000pt;}
.ycf{bottom:714.880000pt;}
.y55{bottom:722.880000pt;}
.yb9{bottom:724.000000pt;}
.y7e{bottom:725.440000pt;}
.y15{bottom:728.960000pt;}
.yce{bottom:730.240000pt;}
.y54{bottom:738.240000pt;}
.yb8{bottom:740.000000pt;}
.y7d{bottom:741.760000pt;}
.y14{bottom:744.320000pt;}
.ycd{bottom:745.600000pt;}
.y53{bottom:753.600000pt;}
.yb6{bottom:756.000000pt;}
.y7c{bottom:757.760000pt;}
.y13{bottom:759.680000pt;}
.ycc{bottom:760.640000pt;}
.y52{bottom:768.640000pt;}
.y7b{bottom:774.080000pt;}
.yb5{bottom:775.360000pt;}
.ycb{bottom:776.000000pt;}
.y12{bottom:776.960000pt;}
.y51{bottom:784.000000pt;}
.y7a{bottom:789.440000pt;}
.yb4{bottom:790.720000pt;}
.yca{bottom:791.360000pt;}
.y11{bottom:792.320000pt;}
.y50{bottom:799.360000pt;}
.yb3{bottom:802.666667pt;}
.yc9{bottom:806.720000pt;}
.y10{bottom:807.680000pt;}
.y79{bottom:813.760000pt;}
.y4f{bottom:814.720000pt;}
.yb2{bottom:818.666667pt;}
.yc8{bottom:822.080000pt;}
.yf{bottom:824.960000pt;}
.y4e{bottom:830.080000pt;}
.yb1{bottom:834.666667pt;}
.y78{bottom:837.120000pt;}
.yc7{bottom:837.440000pt;}
.ye{bottom:845.120000pt;}
.y4d{bottom:845.440000pt;}
.yb0{bottom:850.666667pt;}
.y77{bottom:852.480000pt;}
.yc6{bottom:852.800000pt;}
.yd{bottom:855.680000pt;}
.y4c{bottom:860.800000pt;}
.yae{bottom:866.666667pt;}
.yc{bottom:875.840000pt;}
.y4b{bottom:876.160000pt;}
.yb{bottom:886.400000pt;}
.yad{bottom:886.720000pt;}
.y4a{bottom:891.520000pt;}
.y76{bottom:892.160000pt;}
.yac{bottom:902.080000pt;}
.ya{bottom:906.560000pt;}
.y49{bottom:906.880000pt;}
.y75{bottom:908.480000pt;}
.yab{bottom:914.666667pt;}
.y48{bottom:922.240000pt;}
.y74{bottom:924.800000pt;}
.y9{bottom:925.760000pt;}
.yaa{bottom:930.666667pt;}
.y47{bottom:937.600000pt;}
.y73{bottom:940.800000pt;}
.ya9{bottom:946.666667pt;}
.y8{bottom:952.640000pt;}
.y72{bottom:957.120000pt;}
.ya8{bottom:962.666667pt;}
.y46{bottom:968.000000pt;}
.y71{bottom:973.440000pt;}
.ya7{bottom:978.666667pt;}
.y45{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y70{bottom:989.760000pt;}
.ya5{bottom:994.666667pt;}
.y44{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.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;}
.he{height:16.000000pt;}
.h11{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.hf{height:32.000000pt;}
.hd{height:32.965000pt;}
.h10{height:33.333333pt;}
.h5{height:36.435000pt;}
.ha{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h3{height:42.751250pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w6{width:56.000000pt;}
.w11{width:57.333333pt;}
.wd{width:58.666667pt;}
.w9{width:104.000000pt;}
.w5{width:113.333333pt;}
.w10{width:116.000000pt;}
.wc{width:120.000000pt;}
.w14{width:130.666667pt;}
.w4{width:170.666667pt;}
.w12{width:205.333333pt;}
.we{width:206.666667pt;}
.w13{width:208.000000pt;}
.wa{width:210.666667pt;}
.wb{width:213.333333pt;}
.wf{width:224.000000pt;}
.w8{width:226.666667pt;}
.w3{width:265.333333pt;}
.w7{width:273.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x10{left:1.386709pt;}
.x14{left:7.680032pt;}
.x5{left:96.000000pt;}
.x11{left:97.552096pt;}
.x8{left:98.477856pt;}
.xc{left:104.563168pt;}
.x4{left:108.055680pt;}
.xa{left:118.069024pt;}
.x29{left:124.400064pt;}
.xf{left:142.666667pt;}
.x26{left:179.464192pt;}
.x18{left:188.363936pt;}
.x23{left:193.731776pt;}
.x13{left:196.420576pt;}
.x1f{left:199.832032pt;}
.x9{left:233.081376pt;}
.x28{left:236.313152pt;}
.x1b{left:238.897760pt;}
.x2{left:265.722336pt;}
.x20{left:301.333333pt;}
.x1c{left:305.333333pt;}
.xb{left:313.162112pt;}
.x15{left:360.000000pt;}
.x19{left:368.000000pt;}
.xd{left:384.086046pt;}
.x3{left:396.866560pt;}
.xe{left:420.480000pt;}
.x12{left:444.480000pt;}
.x2a{left:448.880320pt;}
.x1{left:456.943680pt;}
.x24{left:509.333333pt;}
.x1d{left:518.666667pt;}
.x21{left:525.333333pt;}
.x16{left:529.333333pt;}
.x7{left:536.450240pt;}
.x27{left:573.026560pt;}
.x25{left:578.786560pt;}
.x1a{left:593.333333pt;}
.x1e{left:638.666667pt;}
.x22{left:640.000000pt;}
.x17{left:641.333333pt;}
.x6{left:675.432640pt;}
}




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