
    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_c2203d7c6ef2fa717eb07515.woff2')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_9568eb2094958f8a4e686a61.woff2')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_33cd48b3ce90521dd012b5ba.woff2')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_b6fcd1792a8d5877391cf669.woff2')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_56382af0d8acb830724e8a97.woff2')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_a00c73b720f42ff4b376dc16.woff2')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_010fec53444134fa2a306a8a.woff2')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_f4423b76db1fcfbf19971aa7.woff2')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_e5dbef4171940ab776d4a2ca.woff2')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_e45c73f2da03a6fe8baee2f6.woff2')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_99c7bf01917db61f05f69680.woff2')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_eb2266f5f6e4661a9f0593b0.woff2')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_4c84e407e0b744196d9e56e1.woff2')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_1d0bec6ebab4d641d2a44b84.woff2')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_9af944aad7983ce0a22ea538.woff2')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_27e233f1d4df464105d1c6cb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.708008;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_d8b66207e11d0f0a86ae530f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls43{letter-spacing:-4.493664px;}
.ls35{letter-spacing:-3.646944px;}
.ls44{letter-spacing:-2.413152px;}
.ls1d{letter-spacing:-0.459648px;}
.ls36{letter-spacing:-0.417312px;}
.ls19{letter-spacing:-0.381024px;}
.ls34{letter-spacing:-0.361152px;}
.ls10{letter-spacing:-0.338688px;}
.ls1b{letter-spacing:-0.320544px;}
.ls1a{letter-spacing:-0.302400px;}
.ls33{letter-spacing:-0.273600px;}
.ls17{letter-spacing:-0.260064px;}
.ls18{letter-spacing:-0.241920px;}
.ls11{letter-spacing:-0.223776px;}
.ls15{letter-spacing:-0.198720px;}
.ls13{letter-spacing:-0.175392px;}
.ls1e{letter-spacing:-0.157248px;}
.lsf{letter-spacing:-0.152352px;}
.lse{letter-spacing:-0.145728px;}
.ls1c{letter-spacing:-0.145152px;}
.ls14{letter-spacing:-0.132480px;}
.ls12{letter-spacing:-0.120960px;}
.lsd{letter-spacing:-0.119232px;}
.lsc{letter-spacing:-0.079488px;}
.lsb{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.027216px;}
.ls37{letter-spacing:0.038880px;}
.ls3{letter-spacing:0.059904px;}
.ls4{letter-spacing:0.060048px;}
.ls20{letter-spacing:0.123552px;}
.ls21{letter-spacing:0.161568px;}
.ls9{letter-spacing:0.194832px;}
.ls0{letter-spacing:0.233856px;}
.ls1{letter-spacing:0.240048px;}
.ls2{letter-spacing:0.240480px;}
.ls16{letter-spacing:0.242352px;}
.ls1f{letter-spacing:0.285120px;}
.ls8{letter-spacing:1.819440px;}
.ls5{letter-spacing:1.867824px;}
.ls2f{letter-spacing:2.188800px;}
.ls6{letter-spacing:3.318048px;}
.ls41{letter-spacing:3.909600px;}
.ls2a{letter-spacing:5.152320px;}
.ls29{letter-spacing:5.153760px;}
.ls2c{letter-spacing:5.299200px;}
.ls2b{letter-spacing:5.302080px;}
.ls7{letter-spacing:5.644080px;}
.ls28{letter-spacing:6.409440px;}
.ls27{letter-spacing:6.410880px;}
.ls3c{letter-spacing:7.259904px;}
.ls32{letter-spacing:7.693920px;}
.lsa{letter-spacing:8.376192px;}
.ls23{letter-spacing:10.800288px;}
.ls24{letter-spacing:10.800432px;}
.ls2e{letter-spacing:13.160160px;}
.ls25{letter-spacing:14.799600px;}
.ls3e{letter-spacing:16.185600px;}
.ls40{letter-spacing:16.525440px;}
.ls3a{letter-spacing:20.237760px;}
.ls39{letter-spacing:20.239200px;}
.ls3f{letter-spacing:24.298560px;}
.ls26{letter-spacing:25.017120px;}
.ls30{letter-spacing:27.875520px;}
.ls3b{letter-spacing:30.144960px;}
.ls2d{letter-spacing:32.322240px;}
.ls31{letter-spacing:41.705280px;}
.ls3d{letter-spacing:46.186560px;}
.ls22{letter-spacing:63.514512px;}
.ls42{letter-spacing:74.496960px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.480512px;}
.ws2{word-spacing:-16.440768px;}
.ws6{word-spacing:-15.120000px;}
.ws11{word-spacing:-14.974848px;}
.wsf{word-spacing:-14.896224px;}
.ws7{word-spacing:-14.878080px;}
.ws10{word-spacing:-14.859936px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws8{word-spacing:-14.799456px;}
.ws4{word-spacing:-14.781312px;}
.ws9{word-spacing:-14.738976px;}
.wsb{word-spacing:-13.680000px;}
.wsc{word-spacing:-13.318848px;}
.wsd{word-spacing:-0.077760px;}
.wse{word-spacing:-0.066096px;}
.wsa{word-spacing:0.000000px;}
._2c{margin-left:-7.257600px;}
._1e{margin-left:-5.072976px;}
._15{margin-left:-3.625632px;}
._b{margin-left:-2.419200px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._2{width:2.367216px;}
._3{width:3.447360px;}
._4{width:4.599360px;}
._7{width:6.403536px;}
._9{width:7.922880px;}
._d{width:9.192960px;}
._8{width:10.235232px;}
._6{width:11.272464px;}
._5{width:12.458880px;}
._16{width:13.849920px;}
._22{width:16.140816px;}
._1a{width:17.297280px;}
._13{width:19.111680px;}
._e{width:20.926080px;}
._14{width:22.135680px;}
._12{width:23.587200px;}
._27{width:24.615360px;}
._19{width:25.764480px;}
._1d{width:26.853120px;}
._28{width:28.062720px;}
._29{width:29.070720px;}
._1f{width:30.602880px;}
._c{width:32.356800px;}
._f{width:33.445440px;}
._10{width:34.594560px;}
._1b{width:35.622720px;}
._a{width:37.134720px;}
._11{width:38.232864px;}
._21{width:39.553920px;}
._1c{width:40.582080px;}
._18{width:42.638400px;}
._17{width:43.727040px;}
._31{width:44.755200px;}
._2a{width:46.513872px;}
._25{width:47.537280px;}
._26{width:48.565440px;}
._2e{width:50.924160px;}
._30{width:53.407008px;}
._2f{width:54.428832px;}
._2d{width:55.827792px;}
._20{width:60.298560px;}
._32{width:61.385472px;}
._24{width:63.132192px;}
._23{width:64.350720px;}
._2b{width:72.455040px;}
._38{width:77.762304px;}
._33{width:88.361280px;}
._35{width:112.260384px;}
._34{width:124.286400px;}
._37{width:158.159952px;}
._36{width:243.404640px;}
.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;}
.y44{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:0.660000px;}
.y43{bottom:1.740000px;}
.y46{bottom:53.640000px;}
.y6{bottom:58.320000px;}
.y42{bottom:64.500000px;}
.y5{bottom:86.400000px;}
.y3d{bottom:114.120000px;}
.y9a{bottom:114.840000px;}
.yae{bottom:115.560000px;}
.y80{bottom:116.280000px;}
.y7b{bottom:117.360000px;}
.y77{bottom:126.360000px;}
.yf4{bottom:129.240000px;}
.y7f{bottom:130.320000px;}
.y3c{bottom:131.400000px;}
.y99{bottom:132.120000px;}
.yad{bottom:132.840000px;}
.y76{bottom:140.760000px;}
.y3b{bottom:148.680000px;}
.y98{bottom:149.400000px;}
.yac{bottom:150.120000px;}
.ycf{bottom:163.800000px;}
.y3a{bottom:165.600000px;}
.y97{bottom:166.680000px;}
.yab{bottom:167.400000px;}
.yf3{bottom:174.960000px;}
.yce{bottom:181.080000px;}
.y39{bottom:182.880000px;}
.y96{bottom:183.600000px;}
.yaa{bottom:184.680000px;}
.yf2{bottom:192.240000px;}
.ycd{bottom:198.360000px;}
.y38{bottom:200.160000px;}
.y95{bottom:200.880000px;}
.ya9{bottom:201.600000px;}
.yf1{bottom:209.520000px;}
.ycc{bottom:215.280000px;}
.y37{bottom:217.440000px;}
.ya8{bottom:218.880000px;}
.yf0{bottom:226.800000px;}
.y94{bottom:227.160000px;}
.ycb{bottom:232.560000px;}
.y36{bottom:234.720000px;}
.ya7{bottom:236.160000px;}
.yef{bottom:244.080000px;}
.y93{bottom:244.440000px;}
.y35{bottom:252.000000px;}
.ya6{bottom:253.440000px;}
.yca{bottom:258.840000px;}
.yee{bottom:261.360000px;}
.y92{bottom:261.720000px;}
.y34{bottom:269.280000px;}
.ya5{bottom:270.720000px;}
.yed{bottom:278.280000px;}
.y91{bottom:279.000000px;}
.yc9{bottom:285.120000px;}
.y41{bottom:286.560000px;}
.ya4{bottom:288.000000px;}
.y6f{bottom:294.480000px;}
.y33{bottom:295.560000px;}
.y90{bottom:296.280000px;}
.yc8{bottom:302.400000px;}
.y40{bottom:303.840000px;}
.ya3{bottom:305.280000px;}
.y6e{bottom:311.760000px;}
.y32{bottom:312.840000px;}
.y8f{bottom:313.560000px;}
.yc7{bottom:319.680000px;}
.y3f{bottom:321.120000px;}
.ya2{bottom:322.560000px;}
.y6d{bottom:329.040000px;}
.y31{bottom:330.120000px;}
.y8e{bottom:330.840000px;}
.yc6{bottom:336.960000px;}
.y3e{bottom:338.400000px;}
.ya1{bottom:339.840000px;}
.y6b{bottom:343.500000px;}
.y30{bottom:347.400000px;}
.y8d{bottom:348.120000px;}
.yc5{bottom:354.240000px;}
.ya0{bottom:357.120000px;}
.y2f{bottom:364.320000px;}
.yec{bottom:364.680000px;}
.y8c{bottom:365.400000px;}
.yc4{bottom:371.520000px;}
.y9f{bottom:374.400000px;}
.y2e{bottom:381.600000px;}
.yeb{bottom:381.960000px;}
.y8b{bottom:382.320000px;}
.yc3{bottom:388.800000px;}
.y9e{bottom:391.320000px;}
.y2d{bottom:398.880000px;}
.yea{bottom:399.240000px;}
.y8a{bottom:399.600000px;}
.yc2{bottom:406.080000px;}
.y9d{bottom:408.600000px;}
.y2c{bottom:416.160000px;}
.ye9{bottom:416.520000px;}
.y89{bottom:416.880000px;}
.yc1{bottom:423.000000px;}
.y9c{bottom:425.880000px;}
.y2b{bottom:433.440000px;}
.ye8{bottom:433.800000px;}
.y88{bottom:434.160000px;}
.yc0{bottom:440.280000px;}
.y9b{bottom:443.160000px;}
.y2a{bottom:450.720000px;}
.ye7{bottom:451.080000px;}
.ybf{bottom:457.560000px;}
.y87{bottom:460.440000px;}
.y29{bottom:468.000000px;}
.ybe{bottom:474.840000px;}
.y75{bottom:477.000000px;}
.y86{bottom:477.720000px;}
.y28{bottom:485.280000px;}
.y74{bottom:493.920000px;}
.y85{bottom:495.000000px;}
.ybd{bottom:501.120000px;}
.ye6{bottom:502.560000px;}
.y73{bottom:508.320000px;}
.y84{bottom:509.040000px;}
.y27{bottom:511.560000px;}
.ybc{bottom:518.400000px;}
.ye5{bottom:519.840000px;}
.ybb{bottom:535.680000px;}
.ye4{bottom:537.120000px;}
.y26{bottom:538.920000px;}
.yba{bottom:552.960000px;}
.y25{bottom:553.320000px;}
.ye3{bottom:554.400000px;}
.y24{bottom:567.000000px;}
.yb9{bottom:570.240000px;}
.ye2{bottom:571.680000px;}
.y23{bottom:580.680000px;}
.yb8{bottom:587.520000px;}
.ye1{bottom:588.960000px;}
.y22{bottom:595.800000px;}
.ye0{bottom:606.240000px;}
.y7a{bottom:606.960000px;}
.y21{bottom:613.080000px;}
.yb7{bottom:613.800000px;}
.y6a{bottom:622.800000px;}
.ydf{bottom:623.520000px;}
.y79{bottom:624.240000px;}
.y20{bottom:630.360000px;}
.y7e{bottom:631.080000px;}
.y78{bottom:638.280000px;}
.y62{bottom:640.080000px;}
.yde{bottom:640.800000px;}
.y1f{bottom:647.640000px;}
.y7d{bottom:648.360000px;}
.y61{bottom:657.000000px;}
.ydd{bottom:658.080000px;}
.y7c{bottom:662.400000px;}
.y1e{bottom:664.920000px;}
.y60{bottom:674.280000px;}
.ydc{bottom:675.000000px;}
.y1d{bottom:682.200000px;}
.y5f{bottom:691.560000px;}
.ydb{bottom:692.280000px;}
.y1c{bottom:699.480000px;}
.y5e{bottom:708.840000px;}
.yda{bottom:709.560000px;}
.y1b{bottom:716.760000px;}
.y5d{bottom:726.120000px;}
.yd9{bottom:726.840000px;}
.y1a{bottom:734.040000px;}
.y5c{bottom:743.400000px;}
.yd8{bottom:744.120000px;}
.y19{bottom:751.320000px;}
.y5b{bottom:760.680000px;}
.yd7{bottom:761.400000px;}
.y83{bottom:763.200000px;}
.y18{bottom:768.240000px;}
.y5a{bottom:777.960000px;}
.yd6{bottom:778.680000px;}
.y82{bottom:780.480000px;}
.y17{bottom:785.520000px;}
.yb6{bottom:786.960000px;}
.y81{bottom:794.520000px;}
.y59{bottom:795.240000px;}
.yd5{bottom:795.960000px;}
.y16{bottom:802.800000px;}
.yb5{bottom:804.240000px;}
.y58{bottom:812.520000px;}
.yd4{bottom:813.240000px;}
.y15{bottom:820.080000px;}
.yb4{bottom:821.520000px;}
.y57{bottom:829.800000px;}
.yd3{bottom:830.520000px;}
.yb3{bottom:838.800000px;}
.y14{bottom:839.520000px;}
.y72{bottom:841.680000px;}
.y56{bottom:846.720000px;}
.yd2{bottom:847.800000px;}
.yb2{bottom:855.720000px;}
.y13{bottom:856.800000px;}
.y71{bottom:858.960000px;}
.y69{bottom:864.000000px;}
.yd1{bottom:864.720000px;}
.y70{bottom:872.640000px;}
.y55{bottom:873.000000px;}
.y12{bottom:874.080000px;}
.y68{bottom:881.280000px;}
.yd0{bottom:882.000000px;}
.yb1{bottom:890.280000px;}
.y11{bottom:893.520000px;}
.y67{bottom:898.560000px;}
.y54{bottom:899.280000px;}
.yb0{bottom:907.560000px;}
.y66{bottom:915.840000px;}
.y10{bottom:916.200000px;}
.y53{bottom:916.560000px;}
.yaf{bottom:924.840000px;}
.yf{bottom:928.080000px;}
.y65{bottom:933.120000px;}
.y52{bottom:933.840000px;}
.y64{bottom:950.400000px;}
.ye{bottom:950.760000px;}
.y51{bottom:951.120000px;}
.yd{bottom:962.640000px;}
.y50{bottom:968.400000px;}
.y63{bottom:976.680000px;}
.yc{bottom:985.320000px;}
.y4f{bottom:985.680000px;}
.yb{bottom:997.200000px;}
.y4e{bottom:1002.960000px;}
.ya{bottom:1019.880000px;}
.y4d{bottom:1020.240000px;}
.y4c{bottom:1037.520000px;}
.y9{bottom:1041.480000px;}
.y4b{bottom:1054.800000px;}
.y8{bottom:1071.720000px;}
.y4a{bottom:1089.000000px;}
.y49{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y48{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.y47{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y45{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hc{height:4.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.hd{height:37.085625px;}
.h5{height:40.989375px;}
.ha{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h3{height:48.095156px;}
.he{height:48.595781px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.hf{height:276.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w3{width:640.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x11{left:1.560048px;}
.x5{left:108.000000px;}
.xe{left:109.294920px;}
.x4{left:121.562640px;}
.xa{left:126.147960px;}
.x8{left:135.012456px;}
.x9{left:144.435780px;}
.x10{left:160.500000px;}
.x2{left:298.937628px;}
.xb{left:300.624012px;}
.xc{left:329.159196px;}
.xd{left:388.968840px;}
.x1b{left:413.493840px;}
.x13{left:417.243960px;}
.x3{left:446.474880px;}
.xf{left:473.040000px;}
.x1c{left:500.040000px;}
.x1{left:514.061640px;}
.x16{left:572.654880px;}
.x7{left:603.506520px;}
.x18{left:625.214880px;}
.x12{left:632.324880px;}
.x19{left:634.394880px;}
.x17{left:641.414880px;}
.x1a{left:663.554880px;}
.x6{left:759.861720px;}
.x15{left:778.214880px;}
.x14{left:785.880000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls43{letter-spacing:-3.994368pt;}
.ls35{letter-spacing:-3.241728pt;}
.ls44{letter-spacing:-2.145024pt;}
.ls1d{letter-spacing:-0.408576pt;}
.ls36{letter-spacing:-0.370944pt;}
.ls19{letter-spacing:-0.338688pt;}
.ls34{letter-spacing:-0.321024pt;}
.ls10{letter-spacing:-0.301056pt;}
.ls1b{letter-spacing:-0.284928pt;}
.ls1a{letter-spacing:-0.268800pt;}
.ls33{letter-spacing:-0.243200pt;}
.ls17{letter-spacing:-0.231168pt;}
.ls18{letter-spacing:-0.215040pt;}
.ls11{letter-spacing:-0.198912pt;}
.ls15{letter-spacing:-0.176640pt;}
.ls13{letter-spacing:-0.155904pt;}
.ls1e{letter-spacing:-0.139776pt;}
.lsf{letter-spacing:-0.135424pt;}
.lse{letter-spacing:-0.129536pt;}
.ls1c{letter-spacing:-0.129024pt;}
.ls14{letter-spacing:-0.117760pt;}
.ls12{letter-spacing:-0.107520pt;}
.lsd{letter-spacing:-0.105984pt;}
.lsc{letter-spacing:-0.070656pt;}
.lsb{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.024192pt;}
.ls37{letter-spacing:0.034560pt;}
.ls3{letter-spacing:0.053248pt;}
.ls4{letter-spacing:0.053376pt;}
.ls20{letter-spacing:0.109824pt;}
.ls21{letter-spacing:0.143616pt;}
.ls9{letter-spacing:0.173184pt;}
.ls0{letter-spacing:0.207872pt;}
.ls1{letter-spacing:0.213376pt;}
.ls2{letter-spacing:0.213760pt;}
.ls16{letter-spacing:0.215424pt;}
.ls1f{letter-spacing:0.253440pt;}
.ls8{letter-spacing:1.617280pt;}
.ls5{letter-spacing:1.660288pt;}
.ls2f{letter-spacing:1.945600pt;}
.ls6{letter-spacing:2.949376pt;}
.ls41{letter-spacing:3.475200pt;}
.ls2a{letter-spacing:4.579840pt;}
.ls29{letter-spacing:4.581120pt;}
.ls2c{letter-spacing:4.710400pt;}
.ls2b{letter-spacing:4.712960pt;}
.ls7{letter-spacing:5.016960pt;}
.ls28{letter-spacing:5.697280pt;}
.ls27{letter-spacing:5.698560pt;}
.ls3c{letter-spacing:6.453248pt;}
.ls32{letter-spacing:6.839040pt;}
.lsa{letter-spacing:7.445504pt;}
.ls23{letter-spacing:9.600256pt;}
.ls24{letter-spacing:9.600384pt;}
.ls2e{letter-spacing:11.697920pt;}
.ls25{letter-spacing:13.155200pt;}
.ls3e{letter-spacing:14.387200pt;}
.ls40{letter-spacing:14.689280pt;}
.ls3a{letter-spacing:17.989120pt;}
.ls39{letter-spacing:17.990400pt;}
.ls3f{letter-spacing:21.598720pt;}
.ls26{letter-spacing:22.237440pt;}
.ls30{letter-spacing:24.778240pt;}
.ls3b{letter-spacing:26.795520pt;}
.ls2d{letter-spacing:28.730880pt;}
.ls31{letter-spacing:37.071360pt;}
.ls3d{letter-spacing:41.054720pt;}
.ls22{letter-spacing:56.457344pt;}
.ls42{letter-spacing:66.219520pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws6{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.310976pt;}
.wsf{word-spacing:-13.241088pt;}
.ws7{word-spacing:-13.224960pt;}
.ws10{word-spacing:-13.208832pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws8{word-spacing:-13.155072pt;}
.ws4{word-spacing:-13.138944pt;}
.ws9{word-spacing:-13.101312pt;}
.wsb{word-spacing:-12.160000pt;}
.wsc{word-spacing:-11.838976pt;}
.wsd{word-spacing:-0.069120pt;}
.wse{word-spacing:-0.058752pt;}
.wsa{word-spacing:0.000000pt;}
._2c{margin-left:-6.451200pt;}
._1e{margin-left:-4.509312pt;}
._15{margin-left:-3.222784pt;}
._b{margin-left:-2.150400pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._2{width:2.104192pt;}
._3{width:3.064320pt;}
._4{width:4.088320pt;}
._7{width:5.692032pt;}
._9{width:7.042560pt;}
._d{width:8.171520pt;}
._8{width:9.097984pt;}
._6{width:10.019968pt;}
._5{width:11.074560pt;}
._16{width:12.311040pt;}
._22{width:14.347392pt;}
._1a{width:15.375360pt;}
._13{width:16.988160pt;}
._e{width:18.600960pt;}
._14{width:19.676160pt;}
._12{width:20.966400pt;}
._27{width:21.880320pt;}
._19{width:22.901760pt;}
._1d{width:23.869440pt;}
._28{width:24.944640pt;}
._29{width:25.840640pt;}
._1f{width:27.202560pt;}
._c{width:28.761600pt;}
._f{width:29.729280pt;}
._10{width:30.750720pt;}
._1b{width:31.664640pt;}
._a{width:33.008640pt;}
._11{width:33.984768pt;}
._21{width:35.159040pt;}
._1c{width:36.072960pt;}
._18{width:37.900800pt;}
._17{width:38.868480pt;}
._31{width:39.782400pt;}
._2a{width:41.345664pt;}
._25{width:42.255360pt;}
._26{width:43.169280pt;}
._2e{width:45.265920pt;}
._30{width:47.472896pt;}
._2f{width:48.381184pt;}
._2d{width:49.624704pt;}
._20{width:53.598720pt;}
._32{width:54.564864pt;}
._24{width:56.117504pt;}
._23{width:57.200640pt;}
._2b{width:64.404480pt;}
._38{width:69.122048pt;}
._33{width:78.543360pt;}
._35{width:99.787008pt;}
._34{width:110.476800pt;}
._37{width:140.586624pt;}
._36{width:216.359680pt;}
.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;}
.y44{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:0.586667pt;}
.y43{bottom:1.546667pt;}
.y46{bottom:47.680000pt;}
.y6{bottom:51.840000pt;}
.y42{bottom:57.333333pt;}
.y5{bottom:76.800000pt;}
.y3d{bottom:101.440000pt;}
.y9a{bottom:102.080000pt;}
.yae{bottom:102.720000pt;}
.y80{bottom:103.360000pt;}
.y7b{bottom:104.320000pt;}
.y77{bottom:112.320000pt;}
.yf4{bottom:114.880000pt;}
.y7f{bottom:115.840000pt;}
.y3c{bottom:116.800000pt;}
.y99{bottom:117.440000pt;}
.yad{bottom:118.080000pt;}
.y76{bottom:125.120000pt;}
.y3b{bottom:132.160000pt;}
.y98{bottom:132.800000pt;}
.yac{bottom:133.440000pt;}
.ycf{bottom:145.600000pt;}
.y3a{bottom:147.200000pt;}
.y97{bottom:148.160000pt;}
.yab{bottom:148.800000pt;}
.yf3{bottom:155.520000pt;}
.yce{bottom:160.960000pt;}
.y39{bottom:162.560000pt;}
.y96{bottom:163.200000pt;}
.yaa{bottom:164.160000pt;}
.yf2{bottom:170.880000pt;}
.ycd{bottom:176.320000pt;}
.y38{bottom:177.920000pt;}
.y95{bottom:178.560000pt;}
.ya9{bottom:179.200000pt;}
.yf1{bottom:186.240000pt;}
.ycc{bottom:191.360000pt;}
.y37{bottom:193.280000pt;}
.ya8{bottom:194.560000pt;}
.yf0{bottom:201.600000pt;}
.y94{bottom:201.920000pt;}
.ycb{bottom:206.720000pt;}
.y36{bottom:208.640000pt;}
.ya7{bottom:209.920000pt;}
.yef{bottom:216.960000pt;}
.y93{bottom:217.280000pt;}
.y35{bottom:224.000000pt;}
.ya6{bottom:225.280000pt;}
.yca{bottom:230.080000pt;}
.yee{bottom:232.320000pt;}
.y92{bottom:232.640000pt;}
.y34{bottom:239.360000pt;}
.ya5{bottom:240.640000pt;}
.yed{bottom:247.360000pt;}
.y91{bottom:248.000000pt;}
.yc9{bottom:253.440000pt;}
.y41{bottom:254.720000pt;}
.ya4{bottom:256.000000pt;}
.y6f{bottom:261.760000pt;}
.y33{bottom:262.720000pt;}
.y90{bottom:263.360000pt;}
.yc8{bottom:268.800000pt;}
.y40{bottom:270.080000pt;}
.ya3{bottom:271.360000pt;}
.y6e{bottom:277.120000pt;}
.y32{bottom:278.080000pt;}
.y8f{bottom:278.720000pt;}
.yc7{bottom:284.160000pt;}
.y3f{bottom:285.440000pt;}
.ya2{bottom:286.720000pt;}
.y6d{bottom:292.480000pt;}
.y31{bottom:293.440000pt;}
.y8e{bottom:294.080000pt;}
.yc6{bottom:299.520000pt;}
.y3e{bottom:300.800000pt;}
.ya1{bottom:302.080000pt;}
.y6b{bottom:305.333333pt;}
.y30{bottom:308.800000pt;}
.y8d{bottom:309.440000pt;}
.yc5{bottom:314.880000pt;}
.ya0{bottom:317.440000pt;}
.y2f{bottom:323.840000pt;}
.yec{bottom:324.160000pt;}
.y8c{bottom:324.800000pt;}
.yc4{bottom:330.240000pt;}
.y9f{bottom:332.800000pt;}
.y2e{bottom:339.200000pt;}
.yeb{bottom:339.520000pt;}
.y8b{bottom:339.840000pt;}
.yc3{bottom:345.600000pt;}
.y9e{bottom:347.840000pt;}
.y2d{bottom:354.560000pt;}
.yea{bottom:354.880000pt;}
.y8a{bottom:355.200000pt;}
.yc2{bottom:360.960000pt;}
.y9d{bottom:363.200000pt;}
.y2c{bottom:369.920000pt;}
.ye9{bottom:370.240000pt;}
.y89{bottom:370.560000pt;}
.yc1{bottom:376.000000pt;}
.y9c{bottom:378.560000pt;}
.y2b{bottom:385.280000pt;}
.ye8{bottom:385.600000pt;}
.y88{bottom:385.920000pt;}
.yc0{bottom:391.360000pt;}
.y9b{bottom:393.920000pt;}
.y2a{bottom:400.640000pt;}
.ye7{bottom:400.960000pt;}
.ybf{bottom:406.720000pt;}
.y87{bottom:409.280000pt;}
.y29{bottom:416.000000pt;}
.ybe{bottom:422.080000pt;}
.y75{bottom:424.000000pt;}
.y86{bottom:424.640000pt;}
.y28{bottom:431.360000pt;}
.y74{bottom:439.040000pt;}
.y85{bottom:440.000000pt;}
.ybd{bottom:445.440000pt;}
.ye6{bottom:446.720000pt;}
.y73{bottom:451.840000pt;}
.y84{bottom:452.480000pt;}
.y27{bottom:454.720000pt;}
.ybc{bottom:460.800000pt;}
.ye5{bottom:462.080000pt;}
.ybb{bottom:476.160000pt;}
.ye4{bottom:477.440000pt;}
.y26{bottom:479.040000pt;}
.yba{bottom:491.520000pt;}
.y25{bottom:491.840000pt;}
.ye3{bottom:492.800000pt;}
.y24{bottom:504.000000pt;}
.yb9{bottom:506.880000pt;}
.ye2{bottom:508.160000pt;}
.y23{bottom:516.160000pt;}
.yb8{bottom:522.240000pt;}
.ye1{bottom:523.520000pt;}
.y22{bottom:529.600000pt;}
.ye0{bottom:538.880000pt;}
.y7a{bottom:539.520000pt;}
.y21{bottom:544.960000pt;}
.yb7{bottom:545.600000pt;}
.y6a{bottom:553.600000pt;}
.ydf{bottom:554.240000pt;}
.y79{bottom:554.880000pt;}
.y20{bottom:560.320000pt;}
.y7e{bottom:560.960000pt;}
.y78{bottom:567.360000pt;}
.y62{bottom:568.960000pt;}
.yde{bottom:569.600000pt;}
.y1f{bottom:575.680000pt;}
.y7d{bottom:576.320000pt;}
.y61{bottom:584.000000pt;}
.ydd{bottom:584.960000pt;}
.y7c{bottom:588.800000pt;}
.y1e{bottom:591.040000pt;}
.y60{bottom:599.360000pt;}
.ydc{bottom:600.000000pt;}
.y1d{bottom:606.400000pt;}
.y5f{bottom:614.720000pt;}
.ydb{bottom:615.360000pt;}
.y1c{bottom:621.760000pt;}
.y5e{bottom:630.080000pt;}
.yda{bottom:630.720000pt;}
.y1b{bottom:637.120000pt;}
.y5d{bottom:645.440000pt;}
.yd9{bottom:646.080000pt;}
.y1a{bottom:652.480000pt;}
.y5c{bottom:660.800000pt;}
.yd8{bottom:661.440000pt;}
.y19{bottom:667.840000pt;}
.y5b{bottom:676.160000pt;}
.yd7{bottom:676.800000pt;}
.y83{bottom:678.400000pt;}
.y18{bottom:682.880000pt;}
.y5a{bottom:691.520000pt;}
.yd6{bottom:692.160000pt;}
.y82{bottom:693.760000pt;}
.y17{bottom:698.240000pt;}
.yb6{bottom:699.520000pt;}
.y81{bottom:706.240000pt;}
.y59{bottom:706.880000pt;}
.yd5{bottom:707.520000pt;}
.y16{bottom:713.600000pt;}
.yb5{bottom:714.880000pt;}
.y58{bottom:722.240000pt;}
.yd4{bottom:722.880000pt;}
.y15{bottom:728.960000pt;}
.yb4{bottom:730.240000pt;}
.y57{bottom:737.600000pt;}
.yd3{bottom:738.240000pt;}
.yb3{bottom:745.600000pt;}
.y14{bottom:746.240000pt;}
.y72{bottom:748.160000pt;}
.y56{bottom:752.640000pt;}
.yd2{bottom:753.600000pt;}
.yb2{bottom:760.640000pt;}
.y13{bottom:761.600000pt;}
.y71{bottom:763.520000pt;}
.y69{bottom:768.000000pt;}
.yd1{bottom:768.640000pt;}
.y70{bottom:775.680000pt;}
.y55{bottom:776.000000pt;}
.y12{bottom:776.960000pt;}
.y68{bottom:783.360000pt;}
.yd0{bottom:784.000000pt;}
.yb1{bottom:791.360000pt;}
.y11{bottom:794.240000pt;}
.y67{bottom:798.720000pt;}
.y54{bottom:799.360000pt;}
.yb0{bottom:806.720000pt;}
.y66{bottom:814.080000pt;}
.y10{bottom:814.400000pt;}
.y53{bottom:814.720000pt;}
.yaf{bottom:822.080000pt;}
.yf{bottom:824.960000pt;}
.y65{bottom:829.440000pt;}
.y52{bottom:830.080000pt;}
.y64{bottom:844.800000pt;}
.ye{bottom:845.120000pt;}
.y51{bottom:845.440000pt;}
.yd{bottom:855.680000pt;}
.y50{bottom:860.800000pt;}
.y63{bottom:868.160000pt;}
.yc{bottom:875.840000pt;}
.y4f{bottom:876.160000pt;}
.yb{bottom:886.400000pt;}
.y4e{bottom:891.520000pt;}
.ya{bottom:906.560000pt;}
.y4d{bottom:906.880000pt;}
.y4c{bottom:922.240000pt;}
.y9{bottom:925.760000pt;}
.y4b{bottom:937.600000pt;}
.y8{bottom:952.640000pt;}
.y4a{bottom:968.000000pt;}
.y49{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y48{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.y47{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y45{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hc{height:4.000000pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.hd{height:32.965000pt;}
.h5{height:36.435000pt;}
.ha{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h3{height:42.751250pt;}
.he{height:43.196250pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.hf{height:245.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w3{width:569.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x11{left:1.386709pt;}
.x5{left:96.000000pt;}
.xe{left:97.151040pt;}
.x4{left:108.055680pt;}
.xa{left:112.131520pt;}
.x8{left:120.011072pt;}
.x9{left:128.387360pt;}
.x10{left:142.666667pt;}
.x2{left:265.722336pt;}
.xb{left:267.221344pt;}
.xc{left:292.585952pt;}
.xd{left:345.750080pt;}
.x1b{left:367.550080pt;}
.x13{left:370.883520pt;}
.x3{left:396.866560pt;}
.xf{left:420.480000pt;}
.x1c{left:444.480000pt;}
.x1{left:456.943680pt;}
.x16{left:509.026560pt;}
.x7{left:536.450240pt;}
.x18{left:555.746560pt;}
.x12{left:562.066560pt;}
.x19{left:563.906560pt;}
.x17{left:570.146560pt;}
.x1a{left:589.826560pt;}
.x6{left:675.432640pt;}
.x15{left:691.746560pt;}
.x14{left:698.560000pt;}
}




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