
    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_dab109b290c45085d384a908.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_4a189aa8a69ff4d274db8f50.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_c6e9ff62494914ecc04c2012.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_118f092778aa44e70fdead72.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_9363bf750025d674d89055c3.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_3405293b9ca2f1f3793715c9.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_420337b4116dce7ba41b8400.woff')format("woff");}.ffc{font-family:ffc;line-height:1.093262;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_c11719df733c312485968275.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_94b42d9b249953294adf9327.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;}
.v1{vertical-align:24.480000px;}
.ls12{letter-spacing:-0.459648px;}
.ls1e{letter-spacing:-0.417312px;}
.ls13{letter-spacing:-0.381024px;}
.ls23{letter-spacing:-0.361152px;}
.lsb{letter-spacing:-0.338688px;}
.ls1d{letter-spacing:-0.320544px;}
.ls17{letter-spacing:-0.302400px;}
.ls22{letter-spacing:-0.273600px;}
.ls24{letter-spacing:-0.272160px;}
.ls18{letter-spacing:-0.260064px;}
.ls14{letter-spacing:-0.241920px;}
.lsc{letter-spacing:-0.223776px;}
.ls10{letter-spacing:-0.198720px;}
.lse{letter-spacing:-0.175392px;}
.ls16{letter-spacing:-0.157248px;}
.lsa{letter-spacing:-0.152352px;}
.ls9{letter-spacing:-0.145728px;}
.ls15{letter-spacing:-0.145152px;}
.lsf{letter-spacing:-0.132480px;}
.lsd{letter-spacing:-0.120960px;}
.ls8{letter-spacing:-0.119232px;}
.ls7{letter-spacing:-0.079488px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.059904px;}
.ls1{letter-spacing:0.060048px;}
.ls1a{letter-spacing:0.123552px;}
.ls1b{letter-spacing:0.161568px;}
.ls5{letter-spacing:0.194832px;}
.ls0{letter-spacing:0.240480px;}
.ls1c{letter-spacing:0.242352px;}
.ls11{letter-spacing:0.275616px;}
.ls19{letter-spacing:0.285120px;}
.ls3{letter-spacing:0.825120px;}
.ls29{letter-spacing:3.564000px;}
.ls4{letter-spacing:5.447952px;}
.ls27{letter-spacing:5.556960px;}
.ls28{letter-spacing:16.185600px;}
.ls2a{letter-spacing:16.186608px;}
.ls2b{letter-spacing:16.202880px;}
.ls26{letter-spacing:21.290400px;}
.ls20{letter-spacing:23.538240px;}
.ls25{letter-spacing:37.049040px;}
.ls21{letter-spacing:46.186560px;}
.ls1f{letter-spacing:51.063840px;}
.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;}
.ws15{word-spacing:-14.999040px;}
.ws14{word-spacing:-14.974848px;}
.ws13{word-spacing:-14.962752px;}
.ws10{word-spacing:-14.944608px;}
.ws9{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.ws11{word-spacing:-14.859936px;}
.ws12{word-spacing:-14.847840px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.wsa{word-spacing:-14.817600px;}
.wsb{word-spacing:-14.799456px;}
.ws4{word-spacing:-14.781312px;}
.ws16{word-spacing:-14.738976px;}
.wsc{word-spacing:-14.702688px;}
.ws6{word-spacing:-14.660352px;}
.wse{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.318848px;}
.wsd{word-spacing:0.000000px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._4{width:2.419200px;}
._5{width:3.426048px;}
._6{width:4.968864px;}
._7{width:6.152112px;}
._17{width:7.455888px;}
._1f{width:9.236592px;}
._21{width:10.507824px;}
._e{width:11.540592px;}
._9{width:13.529376px;}
._8{width:16.059456px;}
._2{width:17.270784px;}
._3{width:18.627840px;}
._20{width:19.716480px;}
._1a{width:21.228480px;}
._a{width:22.256640px;}
._b{width:23.416416px;}
._19{width:24.433920px;}
._12{width:25.764480px;}
._11{width:27.276480px;}
._d{width:29.030400px;}
._c{width:30.119040px;}
._2a{width:32.004576px;}
._24{width:33.253344px;}
._27{width:34.681104px;}
._16{width:36.232272px;}
._1d{width:37.482192px;}
._2d{width:38.525760px;}
._35{width:39.614400px;}
._25{width:40.626288px;}
._2b{width:42.396480px;}
._10{width:43.424640px;}
._f{width:44.513280px;}
._2f{width:45.662400px;}
._32{width:46.811520px;}
._31{width:49.835520px;}
._26{width:50.924160px;}
._33{width:52.254720px;}
._14{width:53.343360px;}
._15{width:54.438192px;}
._1c{width:56.437344px;}
._1e{width:58.353696px;}
._22{width:60.187104px;}
._30{width:62.103456px;}
._29{width:64.169280px;}
._18{width:65.767680px;}
._34{width:73.004112px;}
._2e{width:78.986880px;}
._13{width:87.454080px;}
._1b{width:103.783680px;}
._2c{width:116.552160px;}
._23{width:158.155200px;}
._28{width:196.123248px;}
.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;}
.y100{bottom:3.780000px;}
.yd7{bottom:3.840000px;}
.yeb{bottom:4.560000px;}
.yc1{bottom:4.680000px;}
.yae{bottom:4.740000px;}
.ye4{bottom:5.280000px;}
.ycf{bottom:6.840000px;}
.yd6{bottom:21.120000px;}
.y103{bottom:22.500000px;}
.ye0{bottom:22.560000px;}
.yee{bottom:23.280000px;}
.yc5{bottom:23.400000px;}
.ybb{bottom:23.460000px;}
.yce{bottom:24.120000px;}
.y102{bottom:39.780000px;}
.yd9{bottom:39.840000px;}
.yed{bottom:40.560000px;}
.yc3{bottom:40.680000px;}
.yb9{bottom:40.740000px;}
.ycd{bottom:41.400000px;}
.y42{bottom:53.640000px;}
.y6{bottom:58.320000px;}
.ycb{bottom:58.680000px;}
.y3e{bottom:64.500000px;}
.yb2{bottom:77.460000px;}
.y5{bottom:86.400000px;}
.yb1{bottom:94.740000px;}
.y7e{bottom:114.120000px;}
.y158{bottom:121.680000px;}
.y131{bottom:122.400000px;}
.y3d{bottom:126.000000px;}
.yab{bottom:126.360000px;}
.y7d{bottom:131.400000px;}
.y10c{bottom:135.720000px;}
.y16d{bottom:138.240000px;}
.y157{bottom:138.960000px;}
.y130{bottom:139.680000px;}
.y3c{bottom:143.280000px;}
.y7c{bottom:148.680000px;}
.y10b{bottom:149.760000px;}
.y16c{bottom:155.520000px;}
.y156{bottom:156.240000px;}
.y12f{bottom:156.960000px;}
.y3b{bottom:160.200000px;}
.yaa{bottom:160.560000px;}
.y7b{bottom:165.960000px;}
.y16b{bottom:172.800000px;}
.y155{bottom:173.520000px;}
.y12e{bottom:174.240000px;}
.y3a{bottom:177.480000px;}
.ya9{bottom:177.840000px;}
.y7a{bottom:183.240000px;}
.y16a{bottom:190.080000px;}
.y154{bottom:190.800000px;}
.y12d{bottom:191.520000px;}
.ye7{bottom:192.000000px;}
.y39{bottom:194.760000px;}
.ya8{bottom:195.120000px;}
.y79{bottom:200.520000px;}
.y169{bottom:207.360000px;}
.y153{bottom:208.080000px;}
.y12c{bottom:208.800000px;}
.ye9{bottom:210.000000px;}
.y38{bottom:212.040000px;}
.ya7{bottom:212.400000px;}
.y78{bottom:217.800000px;}
.y168{bottom:224.280000px;}
.y152{bottom:225.360000px;}
.y12b{bottom:226.080000px;}
.ye8{bottom:228.000000px;}
.y37{bottom:229.320000px;}
.ya6{bottom:229.680000px;}
.y77{bottom:235.080000px;}
.y167{bottom:241.560000px;}
.y151{bottom:242.280000px;}
.y12a{bottom:243.360000px;}
.ye3{bottom:246.000000px;}
.y36{bottom:246.600000px;}
.ya5{bottom:246.960000px;}
.y76{bottom:252.360000px;}
.y150{bottom:259.560000px;}
.y129{bottom:260.280000px;}
.y35{bottom:263.880000px;}
.ye6{bottom:264.000000px;}
.ya4{bottom:264.240000px;}
.y166{bottom:267.840000px;}
.y75{bottom:269.280000px;}
.y14f{bottom:276.840000px;}
.y128{bottom:277.560000px;}
.y34{bottom:281.160000px;}
.ya3{bottom:281.520000px;}
.ye5{bottom:282.000000px;}
.y165{bottom:285.120000px;}
.y74{bottom:286.560000px;}
.y14e{bottom:294.120000px;}
.y127{bottom:294.840000px;}
.y33{bottom:298.440000px;}
.ydf{bottom:300.000000px;}
.y164{bottom:302.400000px;}
.y73{bottom:303.840000px;}
.ya2{bottom:307.800000px;}
.y14d{bottom:311.400000px;}
.y126{bottom:312.120000px;}
.y32{bottom:315.720000px;}
.ye2{bottom:318.000000px;}
.y163{bottom:319.680000px;}
.y72{bottom:321.120000px;}
.ya1{bottom:325.080000px;}
.y14c{bottom:328.680000px;}
.y125{bottom:329.400000px;}
.y31{bottom:333.000000px;}
.ye1{bottom:336.000000px;}
.y162{bottom:336.960000px;}
.y71{bottom:338.400000px;}
.ya0{bottom:342.000000px;}
.y14b{bottom:345.960000px;}
.y124{bottom:346.680000px;}
.y30{bottom:349.920000px;}
.ydc{bottom:354.000000px;}
.y161{bottom:354.240000px;}
.y70{bottom:355.680000px;}
.y14a{bottom:363.240000px;}
.y123{bottom:363.960000px;}
.y2f{bottom:367.200000px;}
.y9f{bottom:368.280000px;}
.yde{bottom:372.000000px;}
.y6f{bottom:372.960000px;}
.y10a{bottom:380.520000px;}
.y122{bottom:381.240000px;}
.y2e{bottom:384.480000px;}
.ydd{bottom:390.000000px;}
.y6e{bottom:390.240000px;}
.y9e{bottom:394.560000px;}
.y109{bottom:397.800000px;}
.y121{bottom:398.520000px;}
.y6d{bottom:407.520000px;}
.yd8{bottom:408.000000px;}
.y2d{bottom:410.760000px;}
.y9d{bottom:411.840000px;}
.y108{bottom:415.080000px;}
.y120{bottom:415.800000px;}
.y6c{bottom:424.800000px;}
.ydb{bottom:426.000000px;}
.y107{bottom:429.120000px;}
.y149{bottom:432.000000px;}
.y11f{bottom:433.080000px;}
.y9c{bottom:438.120000px;}
.y2c{bottom:438.480000px;}
.y6b{bottom:442.080000px;}
.yda{bottom:444.000000px;}
.y148{bottom:449.280000px;}
.y182{bottom:450.000000px;}
.y2b{bottom:452.520000px;}
.y9b{bottom:455.400000px;}
.y6a{bottom:459.000000px;}
.yd5{bottom:462.000000px;}
.y2a{bottom:466.200000px;}
.y147{bottom:466.560000px;}
.y181{bottom:467.280000px;}
.y9a{bottom:472.680000px;}
.y11e{bottom:476.280000px;}
.y29{bottom:480.240000px;}
.y146{bottom:483.840000px;}
.y180{bottom:484.560000px;}
.y69{bottom:485.280000px;}
.y99{bottom:489.960000px;}
.y11d{bottom:493.560000px;}
.y28{bottom:495.360000px;}
.yd4{bottom:501.120000px;}
.y17f{bottom:501.840000px;}
.y68{bottom:502.560000px;}
.y98{bottom:507.240000px;}
.y145{bottom:510.120000px;}
.y11c{bottom:510.840000px;}
.y27{bottom:512.640000px;}
.yd3{bottom:518.400000px;}
.y17e{bottom:519.120000px;}
.y67{bottom:519.840000px;}
.y97{bottom:524.520000px;}
.y11b{bottom:528.120000px;}
.y26{bottom:529.920000px;}
.yd2{bottom:535.680000px;}
.y144{bottom:536.400000px;}
.y66{bottom:537.120000px;}
.y96{bottom:541.800000px;}
.y160{bottom:544.680000px;}
.y11a{bottom:545.400000px;}
.y25{bottom:547.200000px;}
.yca{bottom:549.000000px;}
.y143{bottom:553.680000px;}
.y65{bottom:554.400000px;}
.y119{bottom:562.680000px;}
.y24{bottom:564.120000px;}
.yd1{bottom:567.000000px;}
.y95{bottom:567.720000px;}
.y142{bottom:570.960000px;}
.y64{bottom:571.680000px;}
.y118{bottom:579.960000px;}
.y23{bottom:581.400000px;}
.yd0{bottom:585.000000px;}
.y141{bottom:588.240000px;}
.y63{bottom:588.960000px;}
.y94{bottom:594.000000px;}
.y117{bottom:597.240000px;}
.y22{bottom:598.680000px;}
.ycc{bottom:603.000000px;}
.y140{bottom:605.520000px;}
.y62{bottom:606.240000px;}
.y93{bottom:611.280000px;}
.y116{bottom:614.520000px;}
.y21{bottom:615.960000px;}
.yc7{bottom:621.000000px;}
.y13f{bottom:622.800000px;}
.y61{bottom:623.520000px;}
.y92{bottom:628.560000px;}
.y115{bottom:631.800000px;}
.y20{bottom:633.240000px;}
.yc9{bottom:639.000000px;}
.y13e{bottom:640.080000px;}
.y60{bottom:640.800000px;}
.y91{bottom:645.840000px;}
.y114{bottom:649.080000px;}
.y1f{bottom:650.520000px;}
.yc8{bottom:657.000000px;}
.y5f{bottom:658.080000px;}
.y90{bottom:663.120000px;}
.y113{bottom:666.000000px;}
.y1e{bottom:667.800000px;}
.y15f{bottom:674.280000px;}
.y5e{bottom:675.000000px;}
.y8f{bottom:680.400000px;}
.y112{bottom:683.280000px;}
.y1d{bottom:685.080000px;}
.y15e{bottom:691.560000px;}
.y5d{bottom:692.280000px;}
.yc6{bottom:693.000000px;}
.y111{bottom:700.560000px;}
.y1c{bottom:702.360000px;}
.y8e{bottom:706.680000px;}
.y15d{bottom:708.840000px;}
.y5c{bottom:709.560000px;}
.y106{bottom:710.280000px;}
.yc4{bottom:711.000000px;}
.y110{bottom:717.840000px;}
.y1b{bottom:719.640000px;}
.y8d{bottom:723.960000px;}
.y101{bottom:724.500000px;}
.y15c{bottom:726.120000px;}
.y5b{bottom:726.840000px;}
.yc2{bottom:729.000000px;}
.y10f{bottom:735.120000px;}
.y1a{bottom:736.920000px;}
.y105{bottom:742.500000px;}
.y15b{bottom:743.400000px;}
.y5a{bottom:744.120000px;}
.yc0{bottom:747.000000px;}
.y8c{bottom:750.240000px;}
.y10e{bottom:752.400000px;}
.y19{bottom:753.840000px;}
.y104{bottom:760.500000px;}
.y15a{bottom:760.680000px;}
.y59{bottom:761.400000px;}
.y8b{bottom:767.520000px;}
.ybf{bottom:769.680000px;}
.y18{bottom:771.120000px;}
.y159{bottom:777.960000px;}
.yff{bottom:778.500000px;}
.y58{bottom:778.680000px;}
.ybe{bottom:786.960000px;}
.y17{bottom:788.400000px;}
.y8a{bottom:793.800000px;}
.y17d{bottom:795.240000px;}
.y57{bottom:795.960000px;}
.yfe{bottom:800.280000px;}
.ybd{bottom:804.240000px;}
.y16{bottom:805.680000px;}
.y89{bottom:810.720000px;}
.y17c{bottom:812.520000px;}
.y56{bottom:813.240000px;}
.yb8{bottom:817.500000px;}
.yfd{bottom:817.560000px;}
.y10d{bottom:821.520000px;}
.y15{bottom:822.960000px;}
.y17b{bottom:829.800000px;}
.y55{bottom:830.520000px;}
.yfa{bottom:831.000000px;}
.ybc{bottom:835.500000px;}
.y88{bottom:837.000000px;}
.y13d{bottom:838.800000px;}
.y14{bottom:840.240000px;}
.y17a{bottom:846.720000px;}
.y54{bottom:847.800000px;}
.yfc{bottom:849.000000px;}
.yba{bottom:853.500000px;}
.y87{bottom:854.280000px;}
.y13c{bottom:855.720000px;}
.y13{bottom:857.520000px;}
.y179{bottom:864.000000px;}
.y53{bottom:864.720000px;}
.yfb{bottom:867.000000px;}
.yb0{bottom:871.500000px;}
.y13b{bottom:873.000000px;}
.y12{bottom:876.960000px;}
.y86{bottom:880.560000px;}
.y178{bottom:881.280000px;}
.y52{bottom:882.000000px;}
.yf7{bottom:885.000000px;}
.yb7{bottom:889.500000px;}
.y13a{bottom:890.280000px;}
.y11{bottom:894.240000px;}
.y85{bottom:897.840000px;}
.y177{bottom:898.560000px;}
.y51{bottom:899.280000px;}
.yf9{bottom:903.000000px;}
.yb6{bottom:907.500000px;}
.y139{bottom:907.560000px;}
.y10{bottom:911.520000px;}
.y176{bottom:915.840000px;}
.y50{bottom:916.560000px;}
.yf8{bottom:921.000000px;}
.y84{bottom:924.120000px;}
.y138{bottom:924.840000px;}
.yb5{bottom:925.500000px;}
.yf{bottom:930.960000px;}
.y175{bottom:933.120000px;}
.y4f{bottom:933.840000px;}
.yf4{bottom:939.000000px;}
.y83{bottom:941.400000px;}
.y137{bottom:942.120000px;}
.yb4{bottom:943.500000px;}
.y174{bottom:950.400000px;}
.y4e{bottom:951.120000px;}
.ye{bottom:953.640000px;}
.yf6{bottom:957.000000px;}
.y82{bottom:958.680000px;}
.y136{bottom:959.400000px;}
.yb3{bottom:961.500000px;}
.yd{bottom:965.520000px;}
.y173{bottom:967.680000px;}
.y4d{bottom:968.400000px;}
.yf5{bottom:975.000000px;}
.y135{bottom:976.680000px;}
.yaf{bottom:979.500000px;}
.y81{bottom:984.960000px;}
.y4c{bottom:985.680000px;}
.yc{bottom:988.200000px;}
.yf1{bottom:993.000000px;}
.y134{bottom:993.960000px;}
.yad{bottom:997.500000px;}
.yb{bottom:1000.080000px;}
.y80{bottom:1002.240000px;}
.y4b{bottom:1002.960000px;}
.yf3{bottom:1011.000000px;}
.y133{bottom:1011.240000px;}
.y172{bottom:1019.520000px;}
.y4a{bottom:1020.240000px;}
.ya{bottom:1022.760000px;}
.y7f{bottom:1028.520000px;}
.yf2{bottom:1029.000000px;}
.y171{bottom:1036.800000px;}
.y49{bottom:1037.520000px;}
.y9{bottom:1044.360000px;}
.y132{bottom:1045.800000px;}
.yec{bottom:1047.000000px;}
.y170{bottom:1053.720000px;}
.y48{bottom:1054.800000px;}
.yf0{bottom:1065.000000px;}
.y16f{bottom:1071.000000px;}
.y47{bottom:1071.720000px;}
.y8{bottom:1074.600000px;}
.yac{bottom:1080.000000px;}
.yef{bottom:1083.000000px;}
.y46{bottom:1089.000000px;}
.y16e{bottom:1097.280000px;}
.yea{bottom:1101.000000px;}
.y45{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.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;}
.h14{height:18.000000px;}
.he{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.h12{height:36.000000px;}
.hd{height:37.085625px;}
.h5{height:40.989375px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h15{height:47.988281px;}
.h3{height:48.095156px;}
.ha{height:53.067656px;}
.h13{height:54.000000px;}
.h10{height:55.500000px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h11{height:73.500000px;}
.hf{height:109.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w15{width:57.000000px;}
.w10{width:66.000000px;}
.w14{width:67.500000px;}
.w13{width:70.500000px;}
.w19{width:73.500000px;}
.w17{width:75.000000px;}
.wa{width:78.000000px;}
.w4{width:81.000000px;}
.w5{width:82.500000px;}
.wd{width:84.000000px;}
.wf{width:88.500000px;}
.w18{width:96.000000px;}
.we{width:99.000000px;}
.w16{width:100.500000px;}
.w12{width:103.500000px;}
.w9{width:105.000000px;}
.w6{width:109.500000px;}
.w11{width:114.000000px;}
.w8{width:115.500000px;}
.w7{width:130.500000px;}
.wb{width:139.500000px;}
.wc{width:141.000000px;}
.w3{width:693.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x10{left:1.560048px;}
.x17{left:7.500000px;}
.x19{left:8.640036px;}
.x15{left:100.500000px;}
.x5{left:108.000000px;}
.x11{left:109.746108px;}
.x4{left:113.312628px;}
.x27{left:116.310060px;}
.x13{left:117.932364px;}
.x3d{left:120.847428px;}
.x1f{left:123.755148px;}
.xa{left:128.074212px;}
.xc{left:132.435792px;}
.x3f{left:135.000000px;}
.x8{left:140.211180px;}
.xf{left:160.500000px;}
.x18{left:180.000000px;}
.x2f{left:183.000000px;}
.x36{left:189.000000px;}
.x29{left:214.500000px;}
.x35{left:217.307376px;}
.x9{left:225.961668px;}
.x21{left:238.500000px;}
.xb{left:256.869144px;}
.x1a{left:261.000000px;}
.x28{left:263.973636px;}
.x16{left:266.181240px;}
.x30{left:283.500000px;}
.xd{left:285.832764px;}
.x2{left:298.937628px;}
.x2a{left:318.000000px;}
.x20{left:337.955544px;}
.x31{left:351.000000px;}
.x37{left:354.000000px;}
.x1b{left:369.000000px;}
.x22{left:378.000000px;}
.x14{left:395.025840px;}
.x32{left:424.500000px;}
.x38{left:426.000000px;}
.x3{left:446.474880px;}
.x23{left:462.000000px;}
.xe{left:473.040000px;}
.x39{left:490.500000px;}
.x1c{left:498.000000px;}
.x12{left:500.040000px;}
.x1{left:514.061640px;}
.x2b{left:543.000000px;}
.x24{left:559.500000px;}
.x3a{left:571.500000px;}
.x33{left:579.000000px;}
.x7{left:603.506520px;}
.x2c{left:610.500000px;}
.x1d{left:612.000000px;}
.x25{left:646.500000px;}
.x3b{left:654.000000px;}
.x34{left:661.500000px;}
.x3c{left:671.654880px;}
.x3e{left:679.394880px;}
.x2d{left:681.000000px;}
.x1e{left:715.500000px;}
.x26{left:727.500000px;}
.x2e{left:736.500000px;}
.x6{left:751.498920px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls12{letter-spacing:-0.408576pt;}
.ls1e{letter-spacing:-0.370944pt;}
.ls13{letter-spacing:-0.338688pt;}
.ls23{letter-spacing:-0.321024pt;}
.lsb{letter-spacing:-0.301056pt;}
.ls1d{letter-spacing:-0.284928pt;}
.ls17{letter-spacing:-0.268800pt;}
.ls22{letter-spacing:-0.243200pt;}
.ls24{letter-spacing:-0.241920pt;}
.ls18{letter-spacing:-0.231168pt;}
.ls14{letter-spacing:-0.215040pt;}
.lsc{letter-spacing:-0.198912pt;}
.ls10{letter-spacing:-0.176640pt;}
.lse{letter-spacing:-0.155904pt;}
.ls16{letter-spacing:-0.139776pt;}
.lsa{letter-spacing:-0.135424pt;}
.ls9{letter-spacing:-0.129536pt;}
.ls15{letter-spacing:-0.129024pt;}
.lsf{letter-spacing:-0.117760pt;}
.lsd{letter-spacing:-0.107520pt;}
.ls8{letter-spacing:-0.105984pt;}
.ls7{letter-spacing:-0.070656pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053248pt;}
.ls1{letter-spacing:0.053376pt;}
.ls1a{letter-spacing:0.109824pt;}
.ls1b{letter-spacing:0.143616pt;}
.ls5{letter-spacing:0.173184pt;}
.ls0{letter-spacing:0.213760pt;}
.ls1c{letter-spacing:0.215424pt;}
.ls11{letter-spacing:0.244992pt;}
.ls19{letter-spacing:0.253440pt;}
.ls3{letter-spacing:0.733440pt;}
.ls29{letter-spacing:3.168000pt;}
.ls4{letter-spacing:4.842624pt;}
.ls27{letter-spacing:4.939520pt;}
.ls28{letter-spacing:14.387200pt;}
.ls2a{letter-spacing:14.388096pt;}
.ls2b{letter-spacing:14.402560pt;}
.ls26{letter-spacing:18.924800pt;}
.ls20{letter-spacing:20.922880pt;}
.ls25{letter-spacing:32.932480pt;}
.ls21{letter-spacing:41.054720pt;}
.ls1f{letter-spacing:45.390080pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws7{word-spacing:-13.440000pt;}
.ws15{word-spacing:-13.332480pt;}
.ws14{word-spacing:-13.310976pt;}
.ws13{word-spacing:-13.300224pt;}
.ws10{word-spacing:-13.284096pt;}
.ws9{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.ws11{word-spacing:-13.208832pt;}
.ws12{word-spacing:-13.198080pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.wsa{word-spacing:-13.171200pt;}
.wsb{word-spacing:-13.155072pt;}
.ws4{word-spacing:-13.138944pt;}
.ws16{word-spacing:-13.101312pt;}
.wsc{word-spacing:-13.069056pt;}
.ws6{word-spacing:-13.031424pt;}
.wse{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.838976pt;}
.wsd{word-spacing:0.000000pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._4{width:2.150400pt;}
._5{width:3.045376pt;}
._6{width:4.416768pt;}
._7{width:5.468544pt;}
._17{width:6.627456pt;}
._1f{width:8.210304pt;}
._21{width:9.340288pt;}
._e{width:10.258304pt;}
._9{width:12.026112pt;}
._8{width:14.275072pt;}
._2{width:15.351808pt;}
._3{width:16.558080pt;}
._20{width:17.525760pt;}
._1a{width:18.869760pt;}
._a{width:19.783680pt;}
._b{width:20.814592pt;}
._19{width:21.719040pt;}
._12{width:22.901760pt;}
._11{width:24.245760pt;}
._d{width:25.804800pt;}
._c{width:26.772480pt;}
._2a{width:28.448512pt;}
._24{width:29.558528pt;}
._27{width:30.827648pt;}
._16{width:32.206464pt;}
._1d{width:33.317504pt;}
._2d{width:34.245120pt;}
._35{width:35.212800pt;}
._25{width:36.112256pt;}
._2b{width:37.685760pt;}
._10{width:38.599680pt;}
._f{width:39.567360pt;}
._2f{width:40.588800pt;}
._32{width:41.610240pt;}
._31{width:44.298240pt;}
._26{width:45.265920pt;}
._33{width:46.448640pt;}
._14{width:47.416320pt;}
._15{width:48.389504pt;}
._1c{width:50.166528pt;}
._1e{width:51.869952pt;}
._22{width:53.499648pt;}
._30{width:55.203072pt;}
._29{width:57.039360pt;}
._18{width:58.460160pt;}
._34{width:64.892544pt;}
._2e{width:70.210560pt;}
._13{width:77.736960pt;}
._1b{width:92.252160pt;}
._2c{width:103.601920pt;}
._23{width:140.582400pt;}
._28{width:174.331776pt;}
.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;}
.y100{bottom:3.360000pt;}
.yd7{bottom:3.413333pt;}
.yeb{bottom:4.053333pt;}
.yc1{bottom:4.160000pt;}
.yae{bottom:4.213333pt;}
.ye4{bottom:4.693333pt;}
.ycf{bottom:6.080000pt;}
.yd6{bottom:18.773333pt;}
.y103{bottom:20.000000pt;}
.ye0{bottom:20.053333pt;}
.yee{bottom:20.693333pt;}
.yc5{bottom:20.800000pt;}
.ybb{bottom:20.853333pt;}
.yce{bottom:21.440000pt;}
.y102{bottom:35.360000pt;}
.yd9{bottom:35.413333pt;}
.yed{bottom:36.053333pt;}
.yc3{bottom:36.160000pt;}
.yb9{bottom:36.213333pt;}
.ycd{bottom:36.800000pt;}
.y42{bottom:47.680000pt;}
.y6{bottom:51.840000pt;}
.ycb{bottom:52.160000pt;}
.y3e{bottom:57.333333pt;}
.yb2{bottom:68.853333pt;}
.y5{bottom:76.800000pt;}
.yb1{bottom:84.213333pt;}
.y7e{bottom:101.440000pt;}
.y158{bottom:108.160000pt;}
.y131{bottom:108.800000pt;}
.y3d{bottom:112.000000pt;}
.yab{bottom:112.320000pt;}
.y7d{bottom:116.800000pt;}
.y10c{bottom:120.640000pt;}
.y16d{bottom:122.880000pt;}
.y157{bottom:123.520000pt;}
.y130{bottom:124.160000pt;}
.y3c{bottom:127.360000pt;}
.y7c{bottom:132.160000pt;}
.y10b{bottom:133.120000pt;}
.y16c{bottom:138.240000pt;}
.y156{bottom:138.880000pt;}
.y12f{bottom:139.520000pt;}
.y3b{bottom:142.400000pt;}
.yaa{bottom:142.720000pt;}
.y7b{bottom:147.520000pt;}
.y16b{bottom:153.600000pt;}
.y155{bottom:154.240000pt;}
.y12e{bottom:154.880000pt;}
.y3a{bottom:157.760000pt;}
.ya9{bottom:158.080000pt;}
.y7a{bottom:162.880000pt;}
.y16a{bottom:168.960000pt;}
.y154{bottom:169.600000pt;}
.y12d{bottom:170.240000pt;}
.ye7{bottom:170.666667pt;}
.y39{bottom:173.120000pt;}
.ya8{bottom:173.440000pt;}
.y79{bottom:178.240000pt;}
.y169{bottom:184.320000pt;}
.y153{bottom:184.960000pt;}
.y12c{bottom:185.600000pt;}
.ye9{bottom:186.666667pt;}
.y38{bottom:188.480000pt;}
.ya7{bottom:188.800000pt;}
.y78{bottom:193.600000pt;}
.y168{bottom:199.360000pt;}
.y152{bottom:200.320000pt;}
.y12b{bottom:200.960000pt;}
.ye8{bottom:202.666667pt;}
.y37{bottom:203.840000pt;}
.ya6{bottom:204.160000pt;}
.y77{bottom:208.960000pt;}
.y167{bottom:214.720000pt;}
.y151{bottom:215.360000pt;}
.y12a{bottom:216.320000pt;}
.ye3{bottom:218.666667pt;}
.y36{bottom:219.200000pt;}
.ya5{bottom:219.520000pt;}
.y76{bottom:224.320000pt;}
.y150{bottom:230.720000pt;}
.y129{bottom:231.360000pt;}
.y35{bottom:234.560000pt;}
.ye6{bottom:234.666667pt;}
.ya4{bottom:234.880000pt;}
.y166{bottom:238.080000pt;}
.y75{bottom:239.360000pt;}
.y14f{bottom:246.080000pt;}
.y128{bottom:246.720000pt;}
.y34{bottom:249.920000pt;}
.ya3{bottom:250.240000pt;}
.ye5{bottom:250.666667pt;}
.y165{bottom:253.440000pt;}
.y74{bottom:254.720000pt;}
.y14e{bottom:261.440000pt;}
.y127{bottom:262.080000pt;}
.y33{bottom:265.280000pt;}
.ydf{bottom:266.666667pt;}
.y164{bottom:268.800000pt;}
.y73{bottom:270.080000pt;}
.ya2{bottom:273.600000pt;}
.y14d{bottom:276.800000pt;}
.y126{bottom:277.440000pt;}
.y32{bottom:280.640000pt;}
.ye2{bottom:282.666667pt;}
.y163{bottom:284.160000pt;}
.y72{bottom:285.440000pt;}
.ya1{bottom:288.960000pt;}
.y14c{bottom:292.160000pt;}
.y125{bottom:292.800000pt;}
.y31{bottom:296.000000pt;}
.ye1{bottom:298.666667pt;}
.y162{bottom:299.520000pt;}
.y71{bottom:300.800000pt;}
.ya0{bottom:304.000000pt;}
.y14b{bottom:307.520000pt;}
.y124{bottom:308.160000pt;}
.y30{bottom:311.040000pt;}
.ydc{bottom:314.666667pt;}
.y161{bottom:314.880000pt;}
.y70{bottom:316.160000pt;}
.y14a{bottom:322.880000pt;}
.y123{bottom:323.520000pt;}
.y2f{bottom:326.400000pt;}
.y9f{bottom:327.360000pt;}
.yde{bottom:330.666667pt;}
.y6f{bottom:331.520000pt;}
.y10a{bottom:338.240000pt;}
.y122{bottom:338.880000pt;}
.y2e{bottom:341.760000pt;}
.ydd{bottom:346.666667pt;}
.y6e{bottom:346.880000pt;}
.y9e{bottom:350.720000pt;}
.y109{bottom:353.600000pt;}
.y121{bottom:354.240000pt;}
.y6d{bottom:362.240000pt;}
.yd8{bottom:362.666667pt;}
.y2d{bottom:365.120000pt;}
.y9d{bottom:366.080000pt;}
.y108{bottom:368.960000pt;}
.y120{bottom:369.600000pt;}
.y6c{bottom:377.600000pt;}
.ydb{bottom:378.666667pt;}
.y107{bottom:381.440000pt;}
.y149{bottom:384.000000pt;}
.y11f{bottom:384.960000pt;}
.y9c{bottom:389.440000pt;}
.y2c{bottom:389.760000pt;}
.y6b{bottom:392.960000pt;}
.yda{bottom:394.666667pt;}
.y148{bottom:399.360000pt;}
.y182{bottom:400.000000pt;}
.y2b{bottom:402.240000pt;}
.y9b{bottom:404.800000pt;}
.y6a{bottom:408.000000pt;}
.yd5{bottom:410.666667pt;}
.y2a{bottom:414.400000pt;}
.y147{bottom:414.720000pt;}
.y181{bottom:415.360000pt;}
.y9a{bottom:420.160000pt;}
.y11e{bottom:423.360000pt;}
.y29{bottom:426.880000pt;}
.y146{bottom:430.080000pt;}
.y180{bottom:430.720000pt;}
.y69{bottom:431.360000pt;}
.y99{bottom:435.520000pt;}
.y11d{bottom:438.720000pt;}
.y28{bottom:440.320000pt;}
.yd4{bottom:445.440000pt;}
.y17f{bottom:446.080000pt;}
.y68{bottom:446.720000pt;}
.y98{bottom:450.880000pt;}
.y145{bottom:453.440000pt;}
.y11c{bottom:454.080000pt;}
.y27{bottom:455.680000pt;}
.yd3{bottom:460.800000pt;}
.y17e{bottom:461.440000pt;}
.y67{bottom:462.080000pt;}
.y97{bottom:466.240000pt;}
.y11b{bottom:469.440000pt;}
.y26{bottom:471.040000pt;}
.yd2{bottom:476.160000pt;}
.y144{bottom:476.800000pt;}
.y66{bottom:477.440000pt;}
.y96{bottom:481.600000pt;}
.y160{bottom:484.160000pt;}
.y11a{bottom:484.800000pt;}
.y25{bottom:486.400000pt;}
.yca{bottom:488.000000pt;}
.y143{bottom:492.160000pt;}
.y65{bottom:492.800000pt;}
.y119{bottom:500.160000pt;}
.y24{bottom:501.440000pt;}
.yd1{bottom:504.000000pt;}
.y95{bottom:504.640000pt;}
.y142{bottom:507.520000pt;}
.y64{bottom:508.160000pt;}
.y118{bottom:515.520000pt;}
.y23{bottom:516.800000pt;}
.yd0{bottom:520.000000pt;}
.y141{bottom:522.880000pt;}
.y63{bottom:523.520000pt;}
.y94{bottom:528.000000pt;}
.y117{bottom:530.880000pt;}
.y22{bottom:532.160000pt;}
.ycc{bottom:536.000000pt;}
.y140{bottom:538.240000pt;}
.y62{bottom:538.880000pt;}
.y93{bottom:543.360000pt;}
.y116{bottom:546.240000pt;}
.y21{bottom:547.520000pt;}
.yc7{bottom:552.000000pt;}
.y13f{bottom:553.600000pt;}
.y61{bottom:554.240000pt;}
.y92{bottom:558.720000pt;}
.y115{bottom:561.600000pt;}
.y20{bottom:562.880000pt;}
.yc9{bottom:568.000000pt;}
.y13e{bottom:568.960000pt;}
.y60{bottom:569.600000pt;}
.y91{bottom:574.080000pt;}
.y114{bottom:576.960000pt;}
.y1f{bottom:578.240000pt;}
.yc8{bottom:584.000000pt;}
.y5f{bottom:584.960000pt;}
.y90{bottom:589.440000pt;}
.y113{bottom:592.000000pt;}
.y1e{bottom:593.600000pt;}
.y15f{bottom:599.360000pt;}
.y5e{bottom:600.000000pt;}
.y8f{bottom:604.800000pt;}
.y112{bottom:607.360000pt;}
.y1d{bottom:608.960000pt;}
.y15e{bottom:614.720000pt;}
.y5d{bottom:615.360000pt;}
.yc6{bottom:616.000000pt;}
.y111{bottom:622.720000pt;}
.y1c{bottom:624.320000pt;}
.y8e{bottom:628.160000pt;}
.y15d{bottom:630.080000pt;}
.y5c{bottom:630.720000pt;}
.y106{bottom:631.360000pt;}
.yc4{bottom:632.000000pt;}
.y110{bottom:638.080000pt;}
.y1b{bottom:639.680000pt;}
.y8d{bottom:643.520000pt;}
.y101{bottom:644.000000pt;}
.y15c{bottom:645.440000pt;}
.y5b{bottom:646.080000pt;}
.yc2{bottom:648.000000pt;}
.y10f{bottom:653.440000pt;}
.y1a{bottom:655.040000pt;}
.y105{bottom:660.000000pt;}
.y15b{bottom:660.800000pt;}
.y5a{bottom:661.440000pt;}
.yc0{bottom:664.000000pt;}
.y8c{bottom:666.880000pt;}
.y10e{bottom:668.800000pt;}
.y19{bottom:670.080000pt;}
.y104{bottom:676.000000pt;}
.y15a{bottom:676.160000pt;}
.y59{bottom:676.800000pt;}
.y8b{bottom:682.240000pt;}
.ybf{bottom:684.160000pt;}
.y18{bottom:685.440000pt;}
.y159{bottom:691.520000pt;}
.yff{bottom:692.000000pt;}
.y58{bottom:692.160000pt;}
.ybe{bottom:699.520000pt;}
.y17{bottom:700.800000pt;}
.y8a{bottom:705.600000pt;}
.y17d{bottom:706.880000pt;}
.y57{bottom:707.520000pt;}
.yfe{bottom:711.360000pt;}
.ybd{bottom:714.880000pt;}
.y16{bottom:716.160000pt;}
.y89{bottom:720.640000pt;}
.y17c{bottom:722.240000pt;}
.y56{bottom:722.880000pt;}
.yb8{bottom:726.666667pt;}
.yfd{bottom:726.720000pt;}
.y10d{bottom:730.240000pt;}
.y15{bottom:731.520000pt;}
.y17b{bottom:737.600000pt;}
.y55{bottom:738.240000pt;}
.yfa{bottom:738.666667pt;}
.ybc{bottom:742.666667pt;}
.y88{bottom:744.000000pt;}
.y13d{bottom:745.600000pt;}
.y14{bottom:746.880000pt;}
.y17a{bottom:752.640000pt;}
.y54{bottom:753.600000pt;}
.yfc{bottom:754.666667pt;}
.yba{bottom:758.666667pt;}
.y87{bottom:759.360000pt;}
.y13c{bottom:760.640000pt;}
.y13{bottom:762.240000pt;}
.y179{bottom:768.000000pt;}
.y53{bottom:768.640000pt;}
.yfb{bottom:770.666667pt;}
.yb0{bottom:774.666667pt;}
.y13b{bottom:776.000000pt;}
.y12{bottom:779.520000pt;}
.y86{bottom:782.720000pt;}
.y178{bottom:783.360000pt;}
.y52{bottom:784.000000pt;}
.yf7{bottom:786.666667pt;}
.yb7{bottom:790.666667pt;}
.y13a{bottom:791.360000pt;}
.y11{bottom:794.880000pt;}
.y85{bottom:798.080000pt;}
.y177{bottom:798.720000pt;}
.y51{bottom:799.360000pt;}
.yf9{bottom:802.666667pt;}
.yb6{bottom:806.666667pt;}
.y139{bottom:806.720000pt;}
.y10{bottom:810.240000pt;}
.y176{bottom:814.080000pt;}
.y50{bottom:814.720000pt;}
.yf8{bottom:818.666667pt;}
.y84{bottom:821.440000pt;}
.y138{bottom:822.080000pt;}
.yb5{bottom:822.666667pt;}
.yf{bottom:827.520000pt;}
.y175{bottom:829.440000pt;}
.y4f{bottom:830.080000pt;}
.yf4{bottom:834.666667pt;}
.y83{bottom:836.800000pt;}
.y137{bottom:837.440000pt;}
.yb4{bottom:838.666667pt;}
.y174{bottom:844.800000pt;}
.y4e{bottom:845.440000pt;}
.ye{bottom:847.680000pt;}
.yf6{bottom:850.666667pt;}
.y82{bottom:852.160000pt;}
.y136{bottom:852.800000pt;}
.yb3{bottom:854.666667pt;}
.yd{bottom:858.240000pt;}
.y173{bottom:860.160000pt;}
.y4d{bottom:860.800000pt;}
.yf5{bottom:866.666667pt;}
.y135{bottom:868.160000pt;}
.yaf{bottom:870.666667pt;}
.y81{bottom:875.520000pt;}
.y4c{bottom:876.160000pt;}
.yc{bottom:878.400000pt;}
.yf1{bottom:882.666667pt;}
.y134{bottom:883.520000pt;}
.yad{bottom:886.666667pt;}
.yb{bottom:888.960000pt;}
.y80{bottom:890.880000pt;}
.y4b{bottom:891.520000pt;}
.yf3{bottom:898.666667pt;}
.y133{bottom:898.880000pt;}
.y172{bottom:906.240000pt;}
.y4a{bottom:906.880000pt;}
.ya{bottom:909.120000pt;}
.y7f{bottom:914.240000pt;}
.yf2{bottom:914.666667pt;}
.y171{bottom:921.600000pt;}
.y49{bottom:922.240000pt;}
.y9{bottom:928.320000pt;}
.y132{bottom:929.600000pt;}
.yec{bottom:930.666667pt;}
.y170{bottom:936.640000pt;}
.y48{bottom:937.600000pt;}
.yf0{bottom:946.666667pt;}
.y16f{bottom:952.000000pt;}
.y47{bottom:952.640000pt;}
.y8{bottom:955.200000pt;}
.yac{bottom:960.000000pt;}
.yef{bottom:962.666667pt;}
.y46{bottom:968.000000pt;}
.y16e{bottom:975.360000pt;}
.yea{bottom:978.666667pt;}
.y45{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.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;}
.h14{height:16.000000pt;}
.he{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.h12{height:32.000000pt;}
.hd{height:32.965000pt;}
.h5{height:36.435000pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h15{height:42.656250pt;}
.h3{height:42.751250pt;}
.ha{height:47.171250pt;}
.h13{height:48.000000pt;}
.h10{height:49.333333pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h11{height:65.333333pt;}
.hf{height:97.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w15{width:50.666667pt;}
.w10{width:58.666667pt;}
.w14{width:60.000000pt;}
.w13{width:62.666667pt;}
.w19{width:65.333333pt;}
.w17{width:66.666667pt;}
.wa{width:69.333333pt;}
.w4{width:72.000000pt;}
.w5{width:73.333333pt;}
.wd{width:74.666667pt;}
.wf{width:78.666667pt;}
.w18{width:85.333333pt;}
.we{width:88.000000pt;}
.w16{width:89.333333pt;}
.w12{width:92.000000pt;}
.w9{width:93.333333pt;}
.w6{width:97.333333pt;}
.w11{width:101.333333pt;}
.w8{width:102.666667pt;}
.w7{width:116.000000pt;}
.wb{width:124.000000pt;}
.wc{width:125.333333pt;}
.w3{width:616.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x10{left:1.386709pt;}
.x17{left:6.666667pt;}
.x19{left:7.680032pt;}
.x15{left:89.333333pt;}
.x5{left:96.000000pt;}
.x11{left:97.552096pt;}
.x4{left:100.722336pt;}
.x27{left:103.386720pt;}
.x13{left:104.828768pt;}
.x3d{left:107.419936pt;}
.x1f{left:110.004576pt;}
.xa{left:113.843744pt;}
.xc{left:117.720704pt;}
.x3f{left:120.000000pt;}
.x8{left:124.632160pt;}
.xf{left:142.666667pt;}
.x18{left:160.000000pt;}
.x2f{left:162.666667pt;}
.x36{left:168.000000pt;}
.x29{left:190.666667pt;}
.x35{left:193.162112pt;}
.x9{left:200.854816pt;}
.x21{left:212.000000pt;}
.xb{left:228.328128pt;}
.x1a{left:232.000000pt;}
.x28{left:234.643232pt;}
.x16{left:236.605547pt;}
.x30{left:252.000000pt;}
.xd{left:254.073568pt;}
.x2{left:265.722336pt;}
.x2a{left:282.666667pt;}
.x20{left:300.404928pt;}
.x31{left:312.000000pt;}
.x37{left:314.666667pt;}
.x1b{left:328.000000pt;}
.x22{left:336.000000pt;}
.x14{left:351.134080pt;}
.x32{left:377.333333pt;}
.x38{left:378.666667pt;}
.x3{left:396.866560pt;}
.x23{left:410.666667pt;}
.xe{left:420.480000pt;}
.x39{left:436.000000pt;}
.x1c{left:442.666667pt;}
.x12{left:444.480000pt;}
.x1{left:456.943680pt;}
.x2b{left:482.666667pt;}
.x24{left:497.333333pt;}
.x3a{left:508.000000pt;}
.x33{left:514.666667pt;}
.x7{left:536.450240pt;}
.x2c{left:542.666667pt;}
.x1d{left:544.000000pt;}
.x25{left:574.666667pt;}
.x3b{left:581.333333pt;}
.x34{left:588.000000pt;}
.x3c{left:597.026560pt;}
.x3e{left:603.906560pt;}
.x2d{left:605.333333pt;}
.x1e{left:636.000000pt;}
.x26{left:646.666667pt;}
.x2e{left:654.666667pt;}
.x6{left:667.999040pt;}
}




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