
    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_7bf3bdf9e1ecb15a9ffb59d0.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_cdde1ae7fac05ebffdda07ac.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_f2ec923a4d69378fd1263fbc.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_83a13445ce48e8dd68d32685.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_412b41eed980415ff60be4ad.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_9d931bcd510b5c0f572847e8.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_58f5a0a308e82d0386878044.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_61d48f0dd4d1b12766ad1e95.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a01d2f6db25ee1033442b72b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ebeda0bf8ac3815260c0d361.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2b3a62ba712e2a975b4c0048.woff')format("woff");}.fff{font-family:fff;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f78a149eea6a145d10c8ff2e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_21045bf4cbedfb1f542589de.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1a{letter-spacing:-0.901152px;}
.ls1b{letter-spacing:-0.840672px;}
.ls1e{letter-spacing:-0.459648px;}
.ls20{letter-spacing:-0.417312px;}
.ls1f{letter-spacing:-0.381024px;}
.ls29{letter-spacing:-0.361152px;}
.lsf{letter-spacing:-0.338688px;}
.ls2a{letter-spacing:-0.320544px;}
.ls1d{letter-spacing:-0.302400px;}
.ls28{letter-spacing:-0.273600px;}
.ls2b{letter-spacing:-0.272160px;}
.ls17{letter-spacing:-0.260064px;}
.ls18{letter-spacing:-0.241920px;}
.ls10{letter-spacing:-0.223776px;}
.ls14{letter-spacing:-0.198720px;}
.ls12{letter-spacing:-0.175392px;}
.ls19{letter-spacing:-0.157248px;}
.lse{letter-spacing:-0.152352px;}
.lsd{letter-spacing:-0.145728px;}
.ls1c{letter-spacing:-0.145152px;}
.ls13{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.120960px;}
.lsc{letter-spacing:-0.119232px;}
.lsb{letter-spacing:-0.079488px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.059904px;}
.ls22{letter-spacing:0.123552px;}
.ls23{letter-spacing:0.161568px;}
.ls8{letter-spacing:0.194832px;}
.ls16{letter-spacing:0.200448px;}
.ls1{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.239904px;}
.ls24{letter-spacing:0.242352px;}
.ls21{letter-spacing:0.285120px;}
.ls15{letter-spacing:0.359136px;}
.ls26{letter-spacing:2.884320px;}
.ls4{letter-spacing:5.702688px;}
.ls7{letter-spacing:6.271056px;}
.ls3{letter-spacing:8.651376px;}
.ls32{letter-spacing:9.101232px;}
.ls5{letter-spacing:9.417600px;}
.ls34{letter-spacing:13.903200px;}
.ls6{letter-spacing:16.073856px;}
.ls37{letter-spacing:16.185600px;}
.ls2f{letter-spacing:19.844640px;}
.ls36{letter-spacing:19.853280px;}
.ls35{letter-spacing:19.854720px;}
.ls30{letter-spacing:22.759200px;}
.ls25{letter-spacing:29.778912px;}
.ls31{letter-spacing:31.487040px;}
.ls2e{letter-spacing:31.497120px;}
.ls2c{letter-spacing:32.840496px;}
.ls33{letter-spacing:46.186560px;}
.ls9{letter-spacing:52.337520px;}
.ls2d{letter-spacing:61.448976px;}
.ls27{letter-spacing:63.587520px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-21.239136px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.480512px;}
.ws2{word-spacing:-16.440768px;}
.ws7{word-spacing:-15.120000px;}
.ws16{word-spacing:-14.999040px;}
.ws15{word-spacing:-14.962752px;}
.wsa{word-spacing:-14.944608px;}
.wsb{word-spacing:-14.896224px;}
.ws9{word-spacing:-14.878080px;}
.wsd{word-spacing:-14.859936px;}
.ws14{word-spacing:-14.847840px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws12{word-spacing:-14.817600px;}
.ws4{word-spacing:-14.781312px;}
.wsc{word-spacing:-14.738976px;}
.ws13{word-spacing:-14.702688px;}
.wsf{word-spacing:-13.680000px;}
.ws10{word-spacing:-13.318848px;}
.ws11{word-spacing:-0.060480px;}
.ws8{word-spacing:-0.038880px;}
.wse{word-spacing:0.000000px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._4{width:2.842560px;}
._b{width:4.056912px;}
._d{width:5.070816px;}
._5{width:6.101856px;}
._a{width:7.221888px;}
._2{width:8.597952px;}
._3{width:9.797760px;}
._c{width:11.107008px;}
._9{width:12.216960px;}
._8{width:13.426560px;}
._7{width:16.008768px;}
._6{width:17.063136px;}
._10{width:18.869760px;}
._17{width:20.744640px;}
._19{width:22.438080px;}
._1b{width:23.703408px;}
._1a{width:24.736320px;}
._2f{width:25.824960px;}
._2d{width:26.974080px;}
._e{width:28.062720px;}
._14{width:29.877120px;}
._f{width:31.147200px;}
._18{width:32.175360px;}
._25{width:33.193872px;}
._20{width:34.231680px;}
._22{width:35.569440px;}
._23{width:36.750240px;}
._21{width:38.102400px;}
._16{width:39.856320px;}
._2c{width:42.517440px;}
._11{width:43.848000px;}
._2e{width:44.941392px;}
._24{width:46.388160px;}
._30{width:47.472048px;}
._1c{width:48.570192px;}
._1f{width:50.379840px;}
._12{width:52.375680px;}
._13{width:53.450064px;}
._29{width:55.036800px;}
._28{width:56.306880px;}
._2b{width:61.810560px;}
._1e{width:64.108800px;}
._1d{width:65.146464px;}
._2a{width:78.019200px;}
._26{width:79.652160px;}
._27{width:80.851104px;}
._15{width:96.535584px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.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;}
.y3f{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:1.740000px;}
.yb1{bottom:3.840000px;}
.y8e{bottom:4.080000px;}
.ybd{bottom:4.560000px;}
.ya3{bottom:4.620000px;}
.y97{bottom:4.800000px;}
.y9a{bottom:40.800000px;}
.y41{bottom:53.640000px;}
.y91{bottom:58.080000px;}
.y6{bottom:58.320000px;}
.y3d{bottom:64.500000px;}
.y5{bottom:86.400000px;}
.yb4{bottom:111.840000px;}
.ya1{bottom:113.400000px;}
.y10f{bottom:123.840000px;}
.yf0{bottom:125.280000px;}
.y3c{bottom:129.240000px;}
.ya0{bottom:130.680000px;}
.yca{bottom:135.000000px;}
.y10e{bottom:141.120000px;}
.yef{bottom:142.560000px;}
.y3b{bottom:146.520000px;}
.y9f{bottom:147.960000px;}
.ya6{bottom:148.620000px;}
.yc9{bottom:149.040000px;}
.y10d{bottom:158.400000px;}
.yee{bottom:159.840000px;}
.y3a{bottom:163.800000px;}
.y9e{bottom:165.240000px;}
.y10c{bottom:175.680000px;}
.yed{bottom:177.120000px;}
.y39{bottom:181.080000px;}
.y9d{bottom:182.520000px;}
.y10b{bottom:192.960000px;}
.yec{bottom:194.400000px;}
.y38{bottom:198.360000px;}
.y9c{bottom:199.800000px;}
.y10a{bottom:210.240000px;}
.yeb{bottom:211.680000px;}
.y99{bottom:213.000000px;}
.y37{bottom:215.640000px;}
.y109{bottom:227.520000px;}
.yea{bottom:228.960000px;}
.y9b{bottom:231.000000px;}
.y36{bottom:232.920000px;}
.ye9{bottom:246.240000px;}
.y98{bottom:249.000000px;}
.y35{bottom:250.200000px;}
.y108{bottom:253.800000px;}
.ye8{bottom:263.520000px;}
.y96{bottom:267.000000px;}
.y34{bottom:267.480000px;}
.y107{bottom:271.080000px;}
.ye7{bottom:280.800000px;}
.y33{bottom:284.400000px;}
.y106{bottom:288.000000px;}
.y95{bottom:289.800000px;}
.ye6{bottom:298.080000px;}
.y32{bottom:301.680000px;}
.y105{bottom:305.280000px;}
.y94{bottom:307.080000px;}
.ye5{bottom:315.000000px;}
.y31{bottom:318.960000px;}
.y90{bottom:321.000000px;}
.y104{bottom:322.560000px;}
.ye4{bottom:332.280000px;}
.y30{bottom:336.240000px;}
.y93{bottom:339.000000px;}
.y103{bottom:339.840000px;}
.ye3{bottom:349.560000px;}
.y2f{bottom:353.520000px;}
.y92{bottom:357.000000px;}
.y102{bottom:357.120000px;}
.ye2{bottom:366.840000px;}
.y101{bottom:374.400000px;}
.y8f{bottom:375.000000px;}
.y2e{bottom:379.800000px;}
.y13f{bottom:381.960000px;}
.ye1{bottom:384.120000px;}
.y100{bottom:391.680000px;}
.y8d{bottom:393.000000px;}
.y13e{bottom:399.240000px;}
.ye0{bottom:401.400000px;}
.y132{bottom:406.080000px;}
.y2d{bottom:407.160000px;}
.yff{bottom:408.960000px;}
.y8c{bottom:415.080000px;}
.y13d{bottom:416.520000px;}
.ydf{bottom:418.680000px;}
.y2c{bottom:421.560000px;}
.y131{bottom:423.000000px;}
.y8b{bottom:432.000000px;}
.y13c{bottom:433.800000px;}
.y2b{bottom:435.240000px;}
.yde{bottom:435.960000px;}
.y130{bottom:440.280000px;}
.y2a{bottom:449.280000px;}
.y13b{bottom:451.080000px;}
.yfe{bottom:452.520000px;}
.ydd{bottom:453.240000px;}
.y12f{bottom:457.560000px;}
.y29{bottom:464.400000px;}
.y67{bottom:466.560000px;}
.y13a{bottom:468.000000px;}
.y8a{bottom:468.720000px;}
.yfd{bottom:469.800000px;}
.ydc{bottom:470.520000px;}
.y28{bottom:481.320000px;}
.y12e{bottom:483.840000px;}
.y139{bottom:485.280000px;}
.yfc{bottom:486.720000px;}
.ydb{bottom:487.800000px;}
.y66{bottom:492.840000px;}
.y89{bottom:495.000000px;}
.y27{bottom:498.600000px;}
.y138{bottom:502.560000px;}
.yfb{bottom:504.000000px;}
.yda{bottom:504.720000px;}
.y65{bottom:510.120000px;}
.y88{bottom:512.280000px;}
.y26{bottom:515.880000px;}
.y137{bottom:519.840000px;}
.yfa{bottom:521.280000px;}
.yd9{bottom:522.000000px;}
.y12d{bottom:527.400000px;}
.y87{bottom:529.560000px;}
.y25{bottom:533.160000px;}
.y64{bottom:536.400000px;}
.y136{bottom:537.120000px;}
.yd8{bottom:539.280000px;}
.y12c{bottom:544.680000px;}
.y86{bottom:546.840000px;}
.yc8{bottom:547.560000px;}
.y24{bottom:550.440000px;}
.y63{bottom:553.680000px;}
.y135{bottom:554.400000px;}
.yd7{bottom:556.560000px;}
.yc7{bottom:561.000000px;}
.y12b{bottom:561.960000px;}
.y85{bottom:564.120000px;}
.yf9{bottom:564.840000px;}
.y23{bottom:567.720000px;}
.y134{bottom:571.680000px;}
.yd6{bottom:573.840000px;}
.yc6{bottom:579.000000px;}
.y12a{bottom:579.240000px;}
.y62{bottom:579.960000px;}
.y84{bottom:581.400000px;}
.yf8{bottom:582.120000px;}
.y22{bottom:585.000000px;}
.y133{bottom:588.960000px;}
.yd5{bottom:591.120000px;}
.y129{bottom:596.520000px;}
.yc5{bottom:597.000000px;}
.y83{bottom:598.680000px;}
.yf7{bottom:599.400000px;}
.y21{bottom:602.280000px;}
.y61{bottom:606.240000px;}
.yd4{bottom:608.400000px;}
.y128{bottom:613.800000px;}
.yc4{bottom:615.000000px;}
.yf6{bottom:616.680000px;}
.y20{bottom:619.560000px;}
.y60{bottom:623.520000px;}
.y82{bottom:624.600000px;}
.yd3{bottom:625.680000px;}
.y127{bottom:631.080000px;}
.yc3{bottom:633.000000px;}
.yf5{bottom:633.960000px;}
.y1f{bottom:636.840000px;}
.y5f{bottom:640.800000px;}
.y81{bottom:641.880000px;}
.yd2{bottom:642.960000px;}
.y126{bottom:648.000000px;}
.yc2{bottom:651.000000px;}
.yf4{bottom:651.240000px;}
.y1e{bottom:654.120000px;}
.y5e{bottom:658.080000px;}
.y80{bottom:659.160000px;}
.yd1{bottom:660.240000px;}
.y125{bottom:665.280000px;}
.yf3{bottom:668.520000px;}
.yc1{bottom:669.000000px;}
.y1d{bottom:671.040000px;}
.y5d{bottom:675.000000px;}
.y7f{bottom:676.440000px;}
.yd0{bottom:677.520000px;}
.y124{bottom:682.560000px;}
.yf2{bottom:685.800000px;}
.yc0{bottom:687.000000px;}
.y1c{bottom:688.320000px;}
.y5c{bottom:692.280000px;}
.y7e{bottom:693.720000px;}
.ycf{bottom:694.800000px;}
.y123{bottom:699.840000px;}
.yf1{bottom:702.720000px;}
.ybf{bottom:705.000000px;}
.y1b{bottom:705.600000px;}
.y5b{bottom:709.560000px;}
.yce{bottom:711.720000px;}
.y122{bottom:717.120000px;}
.y7d{bottom:720.000000px;}
.y1a{bottom:722.880000px;}
.ybe{bottom:723.000000px;}
.y5a{bottom:726.840000px;}
.ycd{bottom:729.000000px;}
.y121{bottom:734.400000px;}
.y7c{bottom:738.360000px;}
.y19{bottom:740.160000px;}
.ybc{bottom:741.000000px;}
.y59{bottom:744.120000px;}
.ycc{bottom:746.280000px;}
.y120{bottom:751.680000px;}
.y7b{bottom:756.720000px;}
.y18{bottom:757.440000px;}
.y58{bottom:761.400000px;}
.ybb{bottom:763.560000px;}
.y11f{bottom:768.960000px;}
.y17{bottom:774.720000px;}
.y7a{bottom:775.080000px;}
.y57{bottom:778.680000px;}
.yba{bottom:780.840000px;}
.y11e{bottom:786.240000px;}
.y79{bottom:792.360000px;}
.y16{bottom:794.160000px;}
.ycb{bottom:794.880000px;}
.yb3{bottom:795.000000px;}
.y56{bottom:795.960000px;}
.y78{bottom:809.640000px;}
.y15{bottom:811.440000px;}
.y11d{bottom:812.520000px;}
.yb9{bottom:813.000000px;}
.y55{bottom:813.240000px;}
.y77{bottom:826.920000px;}
.y14{bottom:828.720000px;}
.y54{bottom:830.520000px;}
.yb8{bottom:831.000000px;}
.y11c{bottom:838.800000px;}
.y76{bottom:843.840000px;}
.y53{bottom:847.800000px;}
.y13{bottom:848.160000px;}
.yb7{bottom:849.000000px;}
.y11b{bottom:855.720000px;}
.y75{bottom:862.200000px;}
.y52{bottom:864.720000px;}
.yb6{bottom:867.000000px;}
.y12{bottom:870.840000px;}
.y11a{bottom:873.000000px;}
.y74{bottom:879.480000px;}
.y51{bottom:882.000000px;}
.y11{bottom:882.720000px;}
.yb5{bottom:885.000000px;}
.y119{bottom:890.280000px;}
.y73{bottom:896.760000px;}
.y50{bottom:899.280000px;}
.yb2{bottom:903.000000px;}
.y10{bottom:905.400000px;}
.y118{bottom:907.560000px;}
.y72{bottom:914.040000px;}
.y4f{bottom:916.560000px;}
.yf{bottom:917.280000px;}
.yb0{bottom:921.000000px;}
.y117{bottom:924.840000px;}
.y71{bottom:931.320000px;}
.y4e{bottom:933.840000px;}
.ye{bottom:939.960000px;}
.y116{bottom:942.120000px;}
.yaf{bottom:942.840000px;}
.y4d{bottom:951.120000px;}
.yd{bottom:951.840000px;}
.y70{bottom:958.680000px;}
.y115{bottom:959.400000px;}
.yae{bottom:960.120000px;}
.y4c{bottom:968.400000px;}
.ya5{bottom:973.500000px;}
.yc{bottom:974.520000px;}
.y114{bottom:976.680000px;}
.y6f{bottom:984.960000px;}
.y4b{bottom:985.680000px;}
.yad{bottom:991.500000px;}
.y113{bottom:993.960000px;}
.yb{bottom:996.120000px;}
.y6e{bottom:1002.240000px;}
.y4a{bottom:1002.960000px;}
.yac{bottom:1009.500000px;}
.y112{bottom:1011.240000px;}
.y6d{bottom:1019.520000px;}
.y49{bottom:1020.240000px;}
.ya{bottom:1026.360000px;}
.yab{bottom:1027.500000px;}
.y111{bottom:1028.520000px;}
.y6c{bottom:1036.800000px;}
.y48{bottom:1037.520000px;}
.yaa{bottom:1045.500000px;}
.y110{bottom:1045.800000px;}
.y9{bottom:1050.480000px;}
.y6b{bottom:1053.720000px;}
.y47{bottom:1054.800000px;}
.ya9{bottom:1063.500000px;}
.y46{bottom:1071.720000px;}
.y8{bottom:1074.600000px;}
.y6a{bottom:1080.000000px;}
.ya8{bottom:1081.500000px;}
.y45{bottom:1089.000000px;}
.y69{bottom:1097.280000px;}
.ya7{bottom:1099.500000px;}
.y44{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y68{bottom:1114.560000px;}
.ya4{bottom:1117.500000px;}
.y43{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.ya2{bottom:1135.500000px;}
.y42{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y40{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hc{height:4.500000px;}
.he{height:18.000000px;}
.h10{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.hd{height:37.085625px;}
.h5{height:40.989375px;}
.ha{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h3{height:48.095156px;}
.h11{height:55.500000px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.hf{height:72.000000px;}
.h13{height:126.000000px;}
.h12{height:163.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.we{width:115.500000px;}
.w6{width:118.500000px;}
.w9{width:142.500000px;}
.wd{width:162.000000px;}
.w5{width:169.500000px;}
.w3{width:171.000000px;}
.wb{width:174.000000px;}
.w8{width:195.000000px;}
.w7{width:216.000000px;}
.w4{width:235.500000px;}
.wc{width:246.000000px;}
.wa{width:286.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x11{left:1.560048px;}
.x16{left:7.500000px;}
.x1d{left:9.000000px;}
.x15{left:100.500000px;}
.x5{left:108.000000px;}
.x12{left:109.746108px;}
.x8{left:110.797848px;}
.xc{left:112.217292px;}
.xe{left:114.951060px;}
.xb{left:124.163820px;}
.x9{left:125.994132px;}
.x4{left:129.812616px;}
.x29{left:135.000000px;}
.x10{left:160.500000px;}
.x28{left:186.933816px;}
.x22{left:187.966548px;}
.x14{left:228.985848px;}
.x1a{left:230.230980px;}
.xd{left:239.140872px;}
.x26{left:245.450664px;}
.x1b{left:249.204348px;}
.x17{left:271.500000px;}
.x2{left:298.937628px;}
.x1c{left:315.000000px;}
.x23{left:346.500000px;}
.x20{left:385.500000px;}
.xa{left:408.550680px;}
.x3{left:446.474880px;}
.xf{left:473.040000px;}
.x13{left:500.040000px;}
.x18{left:507.000000px;}
.x1e{left:510.000000px;}
.x1{left:514.061640px;}
.x21{left:558.000000px;}
.x7{left:603.506520px;}
.x1f{left:651.000000px;}
.x19{left:675.000000px;}
.x24{left:678.000000px;}
.x27{left:726.554880px;}
.x25{left:735.734880px;}
.x6{left:768.224520px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1a{letter-spacing:-0.801024pt;}
.ls1b{letter-spacing:-0.747264pt;}
.ls1e{letter-spacing:-0.408576pt;}
.ls20{letter-spacing:-0.370944pt;}
.ls1f{letter-spacing:-0.338688pt;}
.ls29{letter-spacing:-0.321024pt;}
.lsf{letter-spacing:-0.301056pt;}
.ls2a{letter-spacing:-0.284928pt;}
.ls1d{letter-spacing:-0.268800pt;}
.ls28{letter-spacing:-0.243200pt;}
.ls2b{letter-spacing:-0.241920pt;}
.ls17{letter-spacing:-0.231168pt;}
.ls18{letter-spacing:-0.215040pt;}
.ls10{letter-spacing:-0.198912pt;}
.ls14{letter-spacing:-0.176640pt;}
.ls12{letter-spacing:-0.155904pt;}
.ls19{letter-spacing:-0.139776pt;}
.lse{letter-spacing:-0.135424pt;}
.lsd{letter-spacing:-0.129536pt;}
.ls1c{letter-spacing:-0.129024pt;}
.ls13{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.107520pt;}
.lsc{letter-spacing:-0.105984pt;}
.lsb{letter-spacing:-0.070656pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053248pt;}
.ls22{letter-spacing:0.109824pt;}
.ls23{letter-spacing:0.143616pt;}
.ls8{letter-spacing:0.173184pt;}
.ls16{letter-spacing:0.178176pt;}
.ls1{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.213248pt;}
.ls24{letter-spacing:0.215424pt;}
.ls21{letter-spacing:0.253440pt;}
.ls15{letter-spacing:0.319232pt;}
.ls26{letter-spacing:2.563840pt;}
.ls4{letter-spacing:5.069056pt;}
.ls7{letter-spacing:5.574272pt;}
.ls3{letter-spacing:7.690112pt;}
.ls32{letter-spacing:8.089984pt;}
.ls5{letter-spacing:8.371200pt;}
.ls34{letter-spacing:12.358400pt;}
.ls6{letter-spacing:14.287872pt;}
.ls37{letter-spacing:14.387200pt;}
.ls2f{letter-spacing:17.639680pt;}
.ls36{letter-spacing:17.647360pt;}
.ls35{letter-spacing:17.648640pt;}
.ls30{letter-spacing:20.230400pt;}
.ls25{letter-spacing:26.470144pt;}
.ls31{letter-spacing:27.988480pt;}
.ls2e{letter-spacing:27.997440pt;}
.ls2c{letter-spacing:29.191552pt;}
.ls33{letter-spacing:41.054720pt;}
.ls9{letter-spacing:46.522240pt;}
.ls2d{letter-spacing:54.621312pt;}
.ls27{letter-spacing:56.522240pt;}
.ws6{word-spacing:-18.879232pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws7{word-spacing:-13.440000pt;}
.ws16{word-spacing:-13.332480pt;}
.ws15{word-spacing:-13.300224pt;}
.wsa{word-spacing:-13.284096pt;}
.wsb{word-spacing:-13.241088pt;}
.ws9{word-spacing:-13.224960pt;}
.wsd{word-spacing:-13.208832pt;}
.ws14{word-spacing:-13.198080pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws12{word-spacing:-13.171200pt;}
.ws4{word-spacing:-13.138944pt;}
.wsc{word-spacing:-13.101312pt;}
.ws13{word-spacing:-13.069056pt;}
.wsf{word-spacing:-12.160000pt;}
.ws10{word-spacing:-11.838976pt;}
.ws11{word-spacing:-0.053760pt;}
.ws8{word-spacing:-0.034560pt;}
.wse{word-spacing:0.000000pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._4{width:2.526720pt;}
._b{width:3.606144pt;}
._d{width:4.507392pt;}
._5{width:5.423872pt;}
._a{width:6.419456pt;}
._2{width:7.642624pt;}
._3{width:8.709120pt;}
._c{width:9.872896pt;}
._9{width:10.859520pt;}
._8{width:11.934720pt;}
._7{width:14.230016pt;}
._6{width:15.167232pt;}
._10{width:16.773120pt;}
._17{width:18.439680pt;}
._19{width:19.944960pt;}
._1b{width:21.069696pt;}
._1a{width:21.987840pt;}
._2f{width:22.955520pt;}
._2d{width:23.976960pt;}
._e{width:24.944640pt;}
._14{width:26.557440pt;}
._f{width:27.686400pt;}
._18{width:28.600320pt;}
._25{width:29.505664pt;}
._20{width:30.428160pt;}
._22{width:31.617280pt;}
._23{width:32.666880pt;}
._21{width:33.868800pt;}
._16{width:35.427840pt;}
._2c{width:37.793280pt;}
._11{width:38.976000pt;}
._2e{width:39.947904pt;}
._24{width:41.233920pt;}
._30{width:42.197376pt;}
._1c{width:43.173504pt;}
._1f{width:44.782080pt;}
._12{width:46.556160pt;}
._13{width:47.511168pt;}
._29{width:48.921600pt;}
._28{width:50.050560pt;}
._2b{width:54.942720pt;}
._1e{width:56.985600pt;}
._1d{width:57.907968pt;}
._2a{width:69.350400pt;}
._26{width:70.801920pt;}
._27{width:71.867648pt;}
._15{width:85.809408pt;}
.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;}
.y3f{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:1.546667pt;}
.yb1{bottom:3.413333pt;}
.y8e{bottom:3.626667pt;}
.ybd{bottom:4.053333pt;}
.ya3{bottom:4.106667pt;}
.y97{bottom:4.266667pt;}
.y9a{bottom:36.266667pt;}
.y41{bottom:47.680000pt;}
.y91{bottom:51.626667pt;}
.y6{bottom:51.840000pt;}
.y3d{bottom:57.333333pt;}
.y5{bottom:76.800000pt;}
.yb4{bottom:99.413333pt;}
.ya1{bottom:100.800000pt;}
.y10f{bottom:110.080000pt;}
.yf0{bottom:111.360000pt;}
.y3c{bottom:114.880000pt;}
.ya0{bottom:116.160000pt;}
.yca{bottom:120.000000pt;}
.y10e{bottom:125.440000pt;}
.yef{bottom:126.720000pt;}
.y3b{bottom:130.240000pt;}
.y9f{bottom:131.520000pt;}
.ya6{bottom:132.106667pt;}
.yc9{bottom:132.480000pt;}
.y10d{bottom:140.800000pt;}
.yee{bottom:142.080000pt;}
.y3a{bottom:145.600000pt;}
.y9e{bottom:146.880000pt;}
.y10c{bottom:156.160000pt;}
.yed{bottom:157.440000pt;}
.y39{bottom:160.960000pt;}
.y9d{bottom:162.240000pt;}
.y10b{bottom:171.520000pt;}
.yec{bottom:172.800000pt;}
.y38{bottom:176.320000pt;}
.y9c{bottom:177.600000pt;}
.y10a{bottom:186.880000pt;}
.yeb{bottom:188.160000pt;}
.y99{bottom:189.333333pt;}
.y37{bottom:191.680000pt;}
.y109{bottom:202.240000pt;}
.yea{bottom:203.520000pt;}
.y9b{bottom:205.333333pt;}
.y36{bottom:207.040000pt;}
.ye9{bottom:218.880000pt;}
.y98{bottom:221.333333pt;}
.y35{bottom:222.400000pt;}
.y108{bottom:225.600000pt;}
.ye8{bottom:234.240000pt;}
.y96{bottom:237.333333pt;}
.y34{bottom:237.760000pt;}
.y107{bottom:240.960000pt;}
.ye7{bottom:249.600000pt;}
.y33{bottom:252.800000pt;}
.y106{bottom:256.000000pt;}
.y95{bottom:257.600000pt;}
.ye6{bottom:264.960000pt;}
.y32{bottom:268.160000pt;}
.y105{bottom:271.360000pt;}
.y94{bottom:272.960000pt;}
.ye5{bottom:280.000000pt;}
.y31{bottom:283.520000pt;}
.y90{bottom:285.333333pt;}
.y104{bottom:286.720000pt;}
.ye4{bottom:295.360000pt;}
.y30{bottom:298.880000pt;}
.y93{bottom:301.333333pt;}
.y103{bottom:302.080000pt;}
.ye3{bottom:310.720000pt;}
.y2f{bottom:314.240000pt;}
.y92{bottom:317.333333pt;}
.y102{bottom:317.440000pt;}
.ye2{bottom:326.080000pt;}
.y101{bottom:332.800000pt;}
.y8f{bottom:333.333333pt;}
.y2e{bottom:337.600000pt;}
.y13f{bottom:339.520000pt;}
.ye1{bottom:341.440000pt;}
.y100{bottom:348.160000pt;}
.y8d{bottom:349.333333pt;}
.y13e{bottom:354.880000pt;}
.ye0{bottom:356.800000pt;}
.y132{bottom:360.960000pt;}
.y2d{bottom:361.920000pt;}
.yff{bottom:363.520000pt;}
.y8c{bottom:368.960000pt;}
.y13d{bottom:370.240000pt;}
.ydf{bottom:372.160000pt;}
.y2c{bottom:374.720000pt;}
.y131{bottom:376.000000pt;}
.y8b{bottom:384.000000pt;}
.y13c{bottom:385.600000pt;}
.y2b{bottom:386.880000pt;}
.yde{bottom:387.520000pt;}
.y130{bottom:391.360000pt;}
.y2a{bottom:399.360000pt;}
.y13b{bottom:400.960000pt;}
.yfe{bottom:402.240000pt;}
.ydd{bottom:402.880000pt;}
.y12f{bottom:406.720000pt;}
.y29{bottom:412.800000pt;}
.y67{bottom:414.720000pt;}
.y13a{bottom:416.000000pt;}
.y8a{bottom:416.640000pt;}
.yfd{bottom:417.600000pt;}
.ydc{bottom:418.240000pt;}
.y28{bottom:427.840000pt;}
.y12e{bottom:430.080000pt;}
.y139{bottom:431.360000pt;}
.yfc{bottom:432.640000pt;}
.ydb{bottom:433.600000pt;}
.y66{bottom:438.080000pt;}
.y89{bottom:440.000000pt;}
.y27{bottom:443.200000pt;}
.y138{bottom:446.720000pt;}
.yfb{bottom:448.000000pt;}
.yda{bottom:448.640000pt;}
.y65{bottom:453.440000pt;}
.y88{bottom:455.360000pt;}
.y26{bottom:458.560000pt;}
.y137{bottom:462.080000pt;}
.yfa{bottom:463.360000pt;}
.yd9{bottom:464.000000pt;}
.y12d{bottom:468.800000pt;}
.y87{bottom:470.720000pt;}
.y25{bottom:473.920000pt;}
.y64{bottom:476.800000pt;}
.y136{bottom:477.440000pt;}
.yd8{bottom:479.360000pt;}
.y12c{bottom:484.160000pt;}
.y86{bottom:486.080000pt;}
.yc8{bottom:486.720000pt;}
.y24{bottom:489.280000pt;}
.y63{bottom:492.160000pt;}
.y135{bottom:492.800000pt;}
.yd7{bottom:494.720000pt;}
.yc7{bottom:498.666667pt;}
.y12b{bottom:499.520000pt;}
.y85{bottom:501.440000pt;}
.yf9{bottom:502.080000pt;}
.y23{bottom:504.640000pt;}
.y134{bottom:508.160000pt;}
.yd6{bottom:510.080000pt;}
.yc6{bottom:514.666667pt;}
.y12a{bottom:514.880000pt;}
.y62{bottom:515.520000pt;}
.y84{bottom:516.800000pt;}
.yf8{bottom:517.440000pt;}
.y22{bottom:520.000000pt;}
.y133{bottom:523.520000pt;}
.yd5{bottom:525.440000pt;}
.y129{bottom:530.240000pt;}
.yc5{bottom:530.666667pt;}
.y83{bottom:532.160000pt;}
.yf7{bottom:532.800000pt;}
.y21{bottom:535.360000pt;}
.y61{bottom:538.880000pt;}
.yd4{bottom:540.800000pt;}
.y128{bottom:545.600000pt;}
.yc4{bottom:546.666667pt;}
.yf6{bottom:548.160000pt;}
.y20{bottom:550.720000pt;}
.y60{bottom:554.240000pt;}
.y82{bottom:555.200000pt;}
.yd3{bottom:556.160000pt;}
.y127{bottom:560.960000pt;}
.yc3{bottom:562.666667pt;}
.yf5{bottom:563.520000pt;}
.y1f{bottom:566.080000pt;}
.y5f{bottom:569.600000pt;}
.y81{bottom:570.560000pt;}
.yd2{bottom:571.520000pt;}
.y126{bottom:576.000000pt;}
.yc2{bottom:578.666667pt;}
.yf4{bottom:578.880000pt;}
.y1e{bottom:581.440000pt;}
.y5e{bottom:584.960000pt;}
.y80{bottom:585.920000pt;}
.yd1{bottom:586.880000pt;}
.y125{bottom:591.360000pt;}
.yf3{bottom:594.240000pt;}
.yc1{bottom:594.666667pt;}
.y1d{bottom:596.480000pt;}
.y5d{bottom:600.000000pt;}
.y7f{bottom:601.280000pt;}
.yd0{bottom:602.240000pt;}
.y124{bottom:606.720000pt;}
.yf2{bottom:609.600000pt;}
.yc0{bottom:610.666667pt;}
.y1c{bottom:611.840000pt;}
.y5c{bottom:615.360000pt;}
.y7e{bottom:616.640000pt;}
.ycf{bottom:617.600000pt;}
.y123{bottom:622.080000pt;}
.yf1{bottom:624.640000pt;}
.ybf{bottom:626.666667pt;}
.y1b{bottom:627.200000pt;}
.y5b{bottom:630.720000pt;}
.yce{bottom:632.640000pt;}
.y122{bottom:637.440000pt;}
.y7d{bottom:640.000000pt;}
.y1a{bottom:642.560000pt;}
.ybe{bottom:642.666667pt;}
.y5a{bottom:646.080000pt;}
.ycd{bottom:648.000000pt;}
.y121{bottom:652.800000pt;}
.y7c{bottom:656.320000pt;}
.y19{bottom:657.920000pt;}
.ybc{bottom:658.666667pt;}
.y59{bottom:661.440000pt;}
.ycc{bottom:663.360000pt;}
.y120{bottom:668.160000pt;}
.y7b{bottom:672.640000pt;}
.y18{bottom:673.280000pt;}
.y58{bottom:676.800000pt;}
.ybb{bottom:678.720000pt;}
.y11f{bottom:683.520000pt;}
.y17{bottom:688.640000pt;}
.y7a{bottom:688.960000pt;}
.y57{bottom:692.160000pt;}
.yba{bottom:694.080000pt;}
.y11e{bottom:698.880000pt;}
.y79{bottom:704.320000pt;}
.y16{bottom:705.920000pt;}
.ycb{bottom:706.560000pt;}
.yb3{bottom:706.666667pt;}
.y56{bottom:707.520000pt;}
.y78{bottom:719.680000pt;}
.y15{bottom:721.280000pt;}
.y11d{bottom:722.240000pt;}
.yb9{bottom:722.666667pt;}
.y55{bottom:722.880000pt;}
.y77{bottom:735.040000pt;}
.y14{bottom:736.640000pt;}
.y54{bottom:738.240000pt;}
.yb8{bottom:738.666667pt;}
.y11c{bottom:745.600000pt;}
.y76{bottom:750.080000pt;}
.y53{bottom:753.600000pt;}
.y13{bottom:753.920000pt;}
.yb7{bottom:754.666667pt;}
.y11b{bottom:760.640000pt;}
.y75{bottom:766.400000pt;}
.y52{bottom:768.640000pt;}
.yb6{bottom:770.666667pt;}
.y12{bottom:774.080000pt;}
.y11a{bottom:776.000000pt;}
.y74{bottom:781.760000pt;}
.y51{bottom:784.000000pt;}
.y11{bottom:784.640000pt;}
.yb5{bottom:786.666667pt;}
.y119{bottom:791.360000pt;}
.y73{bottom:797.120000pt;}
.y50{bottom:799.360000pt;}
.yb2{bottom:802.666667pt;}
.y10{bottom:804.800000pt;}
.y118{bottom:806.720000pt;}
.y72{bottom:812.480000pt;}
.y4f{bottom:814.720000pt;}
.yf{bottom:815.360000pt;}
.yb0{bottom:818.666667pt;}
.y117{bottom:822.080000pt;}
.y71{bottom:827.840000pt;}
.y4e{bottom:830.080000pt;}
.ye{bottom:835.520000pt;}
.y116{bottom:837.440000pt;}
.yaf{bottom:838.080000pt;}
.y4d{bottom:845.440000pt;}
.yd{bottom:846.080000pt;}
.y70{bottom:852.160000pt;}
.y115{bottom:852.800000pt;}
.yae{bottom:853.440000pt;}
.y4c{bottom:860.800000pt;}
.ya5{bottom:865.333333pt;}
.yc{bottom:866.240000pt;}
.y114{bottom:868.160000pt;}
.y6f{bottom:875.520000pt;}
.y4b{bottom:876.160000pt;}
.yad{bottom:881.333333pt;}
.y113{bottom:883.520000pt;}
.yb{bottom:885.440000pt;}
.y6e{bottom:890.880000pt;}
.y4a{bottom:891.520000pt;}
.yac{bottom:897.333333pt;}
.y112{bottom:898.880000pt;}
.y6d{bottom:906.240000pt;}
.y49{bottom:906.880000pt;}
.ya{bottom:912.320000pt;}
.yab{bottom:913.333333pt;}
.y111{bottom:914.240000pt;}
.y6c{bottom:921.600000pt;}
.y48{bottom:922.240000pt;}
.yaa{bottom:929.333333pt;}
.y110{bottom:929.600000pt;}
.y9{bottom:933.760000pt;}
.y6b{bottom:936.640000pt;}
.y47{bottom:937.600000pt;}
.ya9{bottom:945.333333pt;}
.y46{bottom:952.640000pt;}
.y8{bottom:955.200000pt;}
.y6a{bottom:960.000000pt;}
.ya8{bottom:961.333333pt;}
.y45{bottom:968.000000pt;}
.y69{bottom:975.360000pt;}
.ya7{bottom:977.333333pt;}
.y44{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y68{bottom:990.720000pt;}
.ya4{bottom:993.333333pt;}
.y43{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.ya2{bottom:1009.333333pt;}
.y42{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y40{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hc{height:4.000000pt;}
.he{height:16.000000pt;}
.h10{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.hd{height:32.965000pt;}
.h5{height:36.435000pt;}
.ha{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h3{height:42.751250pt;}
.h11{height:49.333333pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.hf{height:64.000000pt;}
.h13{height:112.000000pt;}
.h12{height:145.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.we{width:102.666667pt;}
.w6{width:105.333333pt;}
.w9{width:126.666667pt;}
.wd{width:144.000000pt;}
.w5{width:150.666667pt;}
.w3{width:152.000000pt;}
.wb{width:154.666667pt;}
.w8{width:173.333333pt;}
.w7{width:192.000000pt;}
.w4{width:209.333333pt;}
.wc{width:218.666667pt;}
.wa{width:254.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x11{left:1.386709pt;}
.x16{left:6.666667pt;}
.x1d{left:8.000000pt;}
.x15{left:89.333333pt;}
.x5{left:96.000000pt;}
.x12{left:97.552096pt;}
.x8{left:98.486976pt;}
.xc{left:99.748704pt;}
.xe{left:102.178720pt;}
.xb{left:110.367840pt;}
.x9{left:111.994784pt;}
.x4{left:115.388992pt;}
.x29{left:120.000000pt;}
.x10{left:142.666667pt;}
.x28{left:166.163392pt;}
.x22{left:167.081376pt;}
.x14{left:203.542976pt;}
.x1a{left:204.649760pt;}
.xd{left:212.569664pt;}
.x26{left:218.178368pt;}
.x1b{left:221.514976pt;}
.x17{left:241.333333pt;}
.x2{left:265.722336pt;}
.x1c{left:280.000000pt;}
.x23{left:308.000000pt;}
.x20{left:342.666667pt;}
.xa{left:363.156160pt;}
.x3{left:396.866560pt;}
.xf{left:420.480000pt;}
.x13{left:444.480000pt;}
.x18{left:450.666667pt;}
.x1e{left:453.333333pt;}
.x1{left:456.943680pt;}
.x21{left:496.000000pt;}
.x7{left:536.450240pt;}
.x1f{left:578.666667pt;}
.x19{left:600.000000pt;}
.x24{left:602.666667pt;}
.x27{left:645.826560pt;}
.x25{left:653.986560pt;}
.x6{left:682.866240pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  