
    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_8e4829af2c58a98a481214a3.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_e44331c9a863ceaf6bdf7904.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_91eca1feb2c2319f086e2286.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_f12127d34353d4544cae1617.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_1776c02a90b4f12553aeb863.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_a05785ac15352129948c03b8.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_ccb0564fd53fb0e098e195da.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_b4a87521677b10faf918b6fc.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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b65785d08bb89820b623ba40.woff')format("woff");}.ff12{font-family:ff12;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;}
.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;}
.ls1b{letter-spacing:-0.459648px;}
.ls2a{letter-spacing:-0.417312px;}
.ls19{letter-spacing:-0.381024px;}
.ls28{letter-spacing:-0.361152px;}
.ls1a{letter-spacing:-0.338688px;}
.lsf{letter-spacing:-0.320544px;}
.ls1d{letter-spacing:-0.302400px;}
.ls27{letter-spacing:-0.273600px;}
.ls2c{letter-spacing:-0.272160px;}
.ls18{letter-spacing:-0.260064px;}
.ls1c{letter-spacing:-0.241920px;}
.ls10{letter-spacing:-0.223776px;}
.ls14{letter-spacing:-0.198720px;}
.ls12{letter-spacing:-0.175392px;}
.lse{letter-spacing:-0.158976px;}
.ls1f{letter-spacing:-0.157248px;}
.lsd{letter-spacing:-0.152352px;}
.lsc{letter-spacing:-0.145728px;}
.ls1e{letter-spacing:-0.145152px;}
.ls13{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.120960px;}
.lsb{letter-spacing:-0.119232px;}
.lsa{letter-spacing:-0.079488px;}
.ls29{letter-spacing:-0.046368px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.059904px;}
.ls4{letter-spacing:0.060048px;}
.ls21{letter-spacing:0.123552px;}
.ls0{letter-spacing:0.159840px;}
.ls22{letter-spacing:0.161568px;}
.ls8{letter-spacing:0.194832px;}
.ls2{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.240048px;}
.ls3{letter-spacing:0.240480px;}
.ls23{letter-spacing:0.242352px;}
.ls16{letter-spacing:0.275616px;}
.ls20{letter-spacing:0.285120px;}
.ls17{letter-spacing:0.317376px;}
.ls15{letter-spacing:0.359136px;}
.ls24{letter-spacing:2.345328px;}
.ls7{letter-spacing:9.203760px;}
.ls2f{letter-spacing:15.850080px;}
.ls2e{letter-spacing:16.185600px;}
.ls30{letter-spacing:16.186608px;}
.ls6{letter-spacing:16.419600px;}
.ls25{letter-spacing:20.234016px;}
.ls2d{letter-spacing:46.186560px;}
.ls26{letter-spacing:63.587520px;}
.ls2b{letter-spacing:168.851520px;}
.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;}
.ws9{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.974848px;}
.wsb{word-spacing:-14.962752px;}
.wsf{word-spacing:-14.896224px;}
.ws7{word-spacing:-14.878080px;}
.ws13{word-spacing:-14.859936px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws4{word-spacing:-14.799456px;}
.wsa{word-spacing:-14.781312px;}
.ws8{word-spacing:-14.738976px;}
.ws12{word-spacing:-14.660352px;}
.wsd{word-spacing:-13.680000px;}
.wse{word-spacing:-13.318848px;}
.ws11{word-spacing:-0.060480px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._d{width:2.177280px;}
._b{width:3.447360px;}
._c{width:4.727808px;}
._7{width:6.595200px;}
._6{width:7.981920px;}
._e{width:9.239040px;}
._9{width:10.402560px;}
._11{width:12.216960px;}
._2{width:13.347792px;}
._a{width:16.357248px;}
._8{width:17.725392px;}
._3{width:18.869760px;}
._26{width:19.937376px;}
._5{width:20.946816px;}
._4{width:22.510656px;}
._18{width:23.768640px;}
._28{width:24.796800px;}
._23{width:25.945920px;}
._1d{width:27.015120px;}
._17{width:28.445040px;}
._1c{width:29.608416px;}
._1a{width:30.742848px;}
._19{width:31.812480px;}
._1b{width:33.384960px;}
._f{width:34.655040px;}
._10{width:35.864640px;}
._12{width:37.013760px;}
._14{width:38.525760px;}
._25{width:40.340160px;}
._2d{width:41.912640px;}
._2b{width:43.968960px;}
._13{width:51.528960px;}
._15{width:53.766720px;}
._2f{width:55.702080px;}
._29{width:57.896784px;}
._21{width:58.972752px;}
._24{width:60.600960px;}
._16{width:62.173440px;}
._20{width:63.208224px;}
._2e{width:66.104640px;}
._1f{width:69.034752px;}
._1e{width:70.640640px;}
._2a{width:76.325760px;}
._2c{width:77.656320px;}
._22{width:89.953920px;}
._30{width:137.350080px;}
._27{width:168.315840px;}
.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;}
.y3f{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:1.740000px;}
.yac{bottom:3.720000px;}
.yc8{bottom:3.780000px;}
.yc2{bottom:3.840000px;}
.ybc{bottom:3.900000px;}
.yb6{bottom:3.960000px;}
.yb0{bottom:4.020000px;}
.ycf{bottom:4.080000px;}
.yef{bottom:4.500000px;}
.yc5{bottom:4.560000px;}
.ybf{bottom:4.620000px;}
.yb9{bottom:4.680000px;}
.yb3{bottom:4.740000px;}
.yd6{bottom:4.800000px;}
.yd3{bottom:5.520000px;}
.yf1{bottom:21.000000px;}
.yc7{bottom:21.060000px;}
.yc1{bottom:21.120000px;}
.ybb{bottom:21.180000px;}
.yb5{bottom:21.240000px;}
.yaf{bottom:21.300000px;}
.yf3{bottom:21.720000px;}
.yee{bottom:21.780000px;}
.yc4{bottom:21.840000px;}
.ybe{bottom:21.900000px;}
.yb8{bottom:21.960000px;}
.yb2{bottom:22.020000px;}
.yd5{bottom:22.080000px;}
.yd2{bottom:22.800000px;}
.yae{bottom:38.220000px;}
.ydb{bottom:39.180000px;}
.yad{bottom:39.300000px;}
.yec{bottom:39.780000px;}
.yd1{bottom:40.080000px;}
.yd0{bottom:40.800000px;}
.y41{bottom:53.640000px;}
.yaa{bottom:56.220000px;}
.ycd{bottom:58.080000px;}
.y6{bottom:58.320000px;}
.y3d{bottom:64.500000px;}
.y5{bottom:86.400000px;}
.y7c{bottom:122.400000px;}
.y3c{bottom:126.000000px;}
.y7b{bottom:139.680000px;}
.y164{bottom:140.400000px;}
.y3b{bottom:143.280000px;}
.y137{bottom:146.520000px;}
.y7a{bottom:156.960000px;}
.y163{bottom:157.680000px;}
.yea{bottom:160.560000px;}
.y136{bottom:163.800000px;}
.y3a{bottom:169.200000px;}
.y79{bottom:174.240000px;}
.y162{bottom:174.960000px;}
.ye9{bottom:177.840000px;}
.y135{bottom:181.080000px;}
.ya8{bottom:183.240000px;}
.y78{bottom:191.520000px;}
.y161{bottom:192.240000px;}
.ye8{bottom:195.120000px;}
.y39{bottom:196.920000px;}
.y134{bottom:198.360000px;}
.ya7{bottom:201.600000px;}
.y77{bottom:208.800000px;}
.y160{bottom:209.520000px;}
.y38{bottom:210.960000px;}
.ye7{bottom:212.400000px;}
.y133{bottom:215.280000px;}
.ya6{bottom:219.600000px;}
.y37{bottom:225.000000px;}
.y76{bottom:226.080000px;}
.y15f{bottom:226.800000px;}
.ye6{bottom:229.680000px;}
.y132{bottom:232.560000px;}
.ya5{bottom:236.880000px;}
.y36{bottom:238.680000px;}
.y75{bottom:243.360000px;}
.y15e{bottom:244.080000px;}
.ye5{bottom:246.960000px;}
.y35{bottom:253.800000px;}
.ya4{bottom:254.160000px;}
.y131{bottom:258.840000px;}
.y74{bottom:260.280000px;}
.y15d{bottom:261.360000px;}
.ye4{bottom:264.240000px;}
.y34{bottom:271.080000px;}
.ya3{bottom:272.520000px;}
.y73{bottom:277.560000px;}
.y15c{bottom:278.280000px;}
.ye3{bottom:281.520000px;}
.y130{bottom:285.120000px;}
.y33{bottom:288.360000px;}
.ya2{bottom:289.800000px;}
.y72{bottom:294.840000px;}
.y15b{bottom:295.560000px;}
.ye2{bottom:298.800000px;}
.y12f{bottom:302.400000px;}
.y32{bottom:305.640000px;}
.y71{bottom:312.120000px;}
.y15a{bottom:312.840000px;}
.ya1{bottom:315.720000px;}
.ye1{bottom:316.080000px;}
.y12e{bottom:319.680000px;}
.y31{bottom:322.920000px;}
.y70{bottom:329.400000px;}
.y159{bottom:330.120000px;}
.ye0{bottom:333.360000px;}
.y12d{bottom:336.960000px;}
.y30{bottom:340.200000px;}
.ya0{bottom:342.000000px;}
.y6f{bottom:346.680000px;}
.y158{bottom:347.400000px;}
.ydf{bottom:350.280000px;}
.y12c{bottom:354.240000px;}
.y10d{bottom:355.680000px;}
.y2f{bottom:357.120000px;}
.y9f{bottom:359.280000px;}
.y6e{bottom:363.960000px;}
.y157{bottom:364.680000px;}
.yde{bottom:367.560000px;}
.y12b{bottom:371.520000px;}
.y10c{bottom:372.960000px;}
.y2e{bottom:374.400000px;}
.y9e{bottom:377.640000px;}
.y6d{bottom:381.240000px;}
.y156{bottom:381.960000px;}
.ydd{bottom:384.840000px;}
.y12a{bottom:388.800000px;}
.y10b{bottom:390.240000px;}
.y2d{bottom:391.680000px;}
.y9d{bottom:395.640000px;}
.y6c{bottom:398.520000px;}
.y155{bottom:399.240000px;}
.ydc{bottom:402.120000px;}
.y129{bottom:406.080000px;}
.y10a{bottom:407.520000px;}
.y2c{bottom:408.960000px;}
.y9c{bottom:412.920000px;}
.yda{bottom:415.500000px;}
.y6b{bottom:415.800000px;}
.y154{bottom:416.520000px;}
.y109{bottom:424.800000px;}
.y2b{bottom:426.240000px;}
.y9b{bottom:431.280000px;}
.y128{bottom:432.000000px;}
.y6a{bottom:433.080000px;}
.y153{bottom:433.800000px;}
.y108{bottom:442.080000px;}
.y2a{bottom:443.520000px;}
.y9a{bottom:448.560000px;}
.y127{bottom:449.280000px;}
.y69{bottom:450.000000px;}
.y152{bottom:451.080000px;}
.y107{bottom:459.000000px;}
.y29{bottom:460.800000px;}
.y126{bottom:466.560000px;}
.y99{bottom:466.920000px;}
.y68{bottom:467.280000px;}
.yd9{bottom:468.000000px;}
.y106{bottom:476.280000px;}
.y28{bottom:478.080000px;}
.y125{bottom:483.840000px;}
.y98{bottom:484.200000px;}
.y67{bottom:484.560000px;}
.y151{bottom:485.280000px;}
.y105{bottom:493.560000px;}
.y27{bottom:495.360000px;}
.y124{bottom:501.120000px;}
.y66{bottom:501.840000px;}
.y97{bottom:502.560000px;}
.yd8{bottom:504.000000px;}
.y104{bottom:510.840000px;}
.y26{bottom:512.640000px;}
.y65{bottom:519.120000px;}
.y96{bottom:519.840000px;}
.y123{bottom:527.400000px;}
.y103{bottom:528.120000px;}
.y25{bottom:529.920000px;}
.y64{bottom:536.400000px;}
.y150{bottom:537.120000px;}
.y95{bottom:538.200000px;}
.yd7{bottom:538.500000px;}
.y102{bottom:545.400000px;}
.y24{bottom:547.200000px;}
.y63{bottom:553.680000px;}
.y14f{bottom:554.400000px;}
.y94{bottom:555.480000px;}
.y101{bottom:562.680000px;}
.y23{bottom:564.120000px;}
.y62{bottom:570.960000px;}
.y14e{bottom:571.680000px;}
.y93{bottom:572.760000px;}
.y100{bottom:579.960000px;}
.y22{bottom:581.400000px;}
.y61{bottom:588.240000px;}
.y14d{bottom:588.960000px;}
.y92{bottom:589.680000px;}
.ycc{bottom:591.000000px;}
.yff{bottom:597.240000px;}
.y21{bottom:598.680000px;}
.y60{bottom:605.520000px;}
.y14c{bottom:606.240000px;}
.y91{bottom:606.960000px;}
.yd4{bottom:609.000000px;}
.yfe{bottom:614.520000px;}
.y20{bottom:615.960000px;}
.y5f{bottom:622.800000px;}
.y14b{bottom:623.520000px;}
.y90{bottom:624.240000px;}
.yfd{bottom:631.800000px;}
.y1f{bottom:633.240000px;}
.y5e{bottom:640.080000px;}
.y14a{bottom:640.800000px;}
.yce{bottom:645.000000px;}
.yfc{bottom:649.080000px;}
.y1e{bottom:650.520000px;}
.y8f{bottom:651.600000px;}
.y5d{bottom:657.000000px;}
.y149{bottom:658.080000px;}
.yfb{bottom:666.000000px;}
.ycb{bottom:667.080000px;}
.y1d{bottom:667.800000px;}
.y5c{bottom:674.280000px;}
.y148{bottom:675.000000px;}
.y8e{bottom:677.880000px;}
.yfa{bottom:683.280000px;}
.yca{bottom:684.000000px;}
.y1c{bottom:685.080000px;}
.y5b{bottom:691.560000px;}
.y147{bottom:692.280000px;}
.y8d{bottom:696.240000px;}
.yf9{bottom:700.560000px;}
.yc9{bottom:701.280000px;}
.y1b{bottom:704.520000px;}
.y122{bottom:708.840000px;}
.y146{bottom:709.560000px;}
.y8c{bottom:714.600000px;}
.yc6{bottom:715.500000px;}
.y5a{bottom:717.840000px;}
.y1a{bottom:721.800000px;}
.y121{bottom:726.120000px;}
.y145{bottom:726.840000px;}
.y59{bottom:735.120000px;}
.y19{bottom:739.080000px;}
.y8b{bottom:741.960000px;}
.y120{bottom:743.400000px;}
.y144{bottom:744.120000px;}
.yf8{bottom:748.500000px;}
.yc3{bottom:750.000000px;}
.y58{bottom:752.400000px;}
.y18{bottom:758.520000px;}
.y11f{bottom:760.680000px;}
.y143{bottom:761.400000px;}
.yf7{bottom:766.500000px;}
.y8a{bottom:768.240000px;}
.y57{bottom:769.680000px;}
.y11e{bottom:777.960000px;}
.y142{bottom:778.680000px;}
.y17{bottom:781.200000px;}
.y89{bottom:785.520000px;}
.yc0{bottom:786.000000px;}
.y56{bottom:786.960000px;}
.y16{bottom:793.080000px;}
.y11d{bottom:795.240000px;}
.y141{bottom:795.960000px;}
.yf6{bottom:802.500000px;}
.y88{bottom:802.800000px;}
.y55{bottom:804.240000px;}
.y11c{bottom:812.520000px;}
.y140{bottom:813.240000px;}
.y15{bottom:815.760000px;}
.y87{bottom:819.720000px;}
.ybd{bottom:820.500000px;}
.y54{bottom:821.520000px;}
.y14{bottom:827.640000px;}
.y11b{bottom:829.800000px;}
.y13f{bottom:830.520000px;}
.y86{bottom:837.000000px;}
.y53{bottom:838.800000px;}
.y11a{bottom:846.720000px;}
.y13e{bottom:847.800000px;}
.y13{bottom:850.320000px;}
.y85{bottom:854.280000px;}
.y52{bottom:855.720000px;}
.yba{bottom:856.500000px;}
.y12{bottom:861.840000px;}
.y119{bottom:864.000000px;}
.y13d{bottom:864.720000px;}
.y84{bottom:871.560000px;}
.y51{bottom:873.000000px;}
.y118{bottom:881.280000px;}
.y13c{bottom:882.000000px;}
.y11{bottom:884.520000px;}
.y50{bottom:890.280000px;}
.yb7{bottom:891.000000px;}
.y10{bottom:896.400000px;}
.y83{bottom:897.840000px;}
.y117{bottom:898.560000px;}
.y13b{bottom:899.280000px;}
.yf5{bottom:907.500000px;}
.y4f{bottom:907.560000px;}
.y82{bottom:915.120000px;}
.y116{bottom:915.840000px;}
.y13a{bottom:916.560000px;}
.yf{bottom:919.080000px;}
.y4e{bottom:924.840000px;}
.yb4{bottom:927.000000px;}
.ye{bottom:930.960000px;}
.y115{bottom:933.120000px;}
.y139{bottom:933.840000px;}
.y81{bottom:941.400000px;}
.y4d{bottom:942.120000px;}
.yf4{bottom:943.500000px;}
.y114{bottom:950.400000px;}
.y138{bottom:951.120000px;}
.yd{bottom:953.640000px;}
.y80{bottom:958.680000px;}
.yb1{bottom:961.500000px;}
.y113{bottom:967.680000px;}
.y4c{bottom:968.400000px;}
.yc{bottom:975.240000px;}
.yf2{bottom:978.000000px;}
.y7f{bottom:984.960000px;}
.y4b{bottom:985.680000px;}
.yb{bottom:996.120000px;}
.ya9{bottom:997.500000px;}
.y7e{bottom:1002.240000px;}
.y4a{bottom:1002.960000px;}
.yf0{bottom:1014.000000px;}
.y112{bottom:1019.520000px;}
.y49{bottom:1020.240000px;}
.ya{bottom:1026.360000px;}
.y7d{bottom:1028.520000px;}
.y111{bottom:1036.800000px;}
.y48{bottom:1037.520000px;}
.yeb{bottom:1048.500000px;}
.yab{bottom:1050.000000px;}
.y9{bottom:1050.480000px;}
.y110{bottom:1053.720000px;}
.y47{bottom:1054.800000px;}
.yed{bottom:1066.500000px;}
.y10f{bottom:1071.000000px;}
.y46{bottom:1071.720000px;}
.y8{bottom:1074.600000px;}
.y45{bottom:1089.000000px;}
.y10e{bottom:1097.280000px;}
.y44{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y43{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.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;}
.hf{height:18.000000px;}
.h14{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.h11{height:36.000000px;}
.hd{height:37.085625px;}
.h5{height:40.989375px;}
.ha{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h3{height:48.095156px;}
.h10{height:52.500000px;}
.h13{height:54.000000px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.he{height:70.500000px;}
.h12{height:72.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w6{width:30.000000px;}
.w10{width:42.000000px;}
.w5{width:58.500000px;}
.w8{width:61.500000px;}
.wd{width:64.500000px;}
.w9{width:69.000000px;}
.we{width:73.500000px;}
.wa{width:75.000000px;}
.w11{width:76.500000px;}
.w13{width:78.000000px;}
.w7{width:79.500000px;}
.w14{width:85.500000px;}
.wf{width:139.500000px;}
.wb{width:178.500000px;}
.w12{width:187.500000px;}
.w3{width:196.500000px;}
.w15{width:271.500000px;}
.w4{width:331.500000px;}
.wc{width:457.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x19{left:1.560048px;}
.x1e{left:7.500000px;}
.x21{left:8.760000px;}
.x1d{left:100.500000px;}
.x5{left:108.000000px;}
.x1a{left:109.746108px;}
.x14{left:110.748780px;}
.x31{left:111.966804px;}
.xd{left:114.890616px;}
.x12{left:115.948980px;}
.x27{left:120.038076px;}
.x4{left:121.562640px;}
.x30{left:123.788088px;}
.xf{left:131.538564px;}
.xb{left:133.475832px;}
.x37{left:135.000000px;}
.x9{left:136.996596px;}
.x8{left:142.574724px;}
.x18{left:160.500000px;}
.x28{left:177.324444px;}
.x11{left:192.540528px;}
.xa{left:198.581544px;}
.x10{left:239.613300px;}
.x1c{left:261.758052px;}
.xe{left:272.726064px;}
.xc{left:275.240484px;}
.x29{left:277.500000px;}
.x33{left:286.500000px;}
.x1f{left:297.000000px;}
.x2{left:298.937628px;}
.x16{left:321.468768px;}
.x2b{left:342.000000px;}
.x13{left:352.307376px;}
.x24{left:357.000000px;}
.x34{left:363.000000px;}
.x2c{left:417.000000px;}
.x32{left:418.759920px;}
.x15{left:423.974880px;}
.x3{left:446.474880px;}
.x35{left:448.500000px;}
.x17{left:473.040000px;}
.x2d{left:490.500000px;}
.x25{left:492.000000px;}
.x1b{left:500.040000px;}
.x1{left:514.061640px;}
.x36{left:522.000000px;}
.x26{left:553.500000px;}
.x7{left:603.506520px;}
.x20{left:627.000000px;}
.x2e{left:628.500000px;}
.x22{left:684.000000px;}
.x2f{left:693.000000px;}
.x23{left:714.000000px;}
.x2a{left:735.000000px;}
.x6{left:759.861720px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1b{letter-spacing:-0.408576pt;}
.ls2a{letter-spacing:-0.370944pt;}
.ls19{letter-spacing:-0.338688pt;}
.ls28{letter-spacing:-0.321024pt;}
.ls1a{letter-spacing:-0.301056pt;}
.lsf{letter-spacing:-0.284928pt;}
.ls1d{letter-spacing:-0.268800pt;}
.ls27{letter-spacing:-0.243200pt;}
.ls2c{letter-spacing:-0.241920pt;}
.ls18{letter-spacing:-0.231168pt;}
.ls1c{letter-spacing:-0.215040pt;}
.ls10{letter-spacing:-0.198912pt;}
.ls14{letter-spacing:-0.176640pt;}
.ls12{letter-spacing:-0.155904pt;}
.lse{letter-spacing:-0.141312pt;}
.ls1f{letter-spacing:-0.139776pt;}
.lsd{letter-spacing:-0.135424pt;}
.lsc{letter-spacing:-0.129536pt;}
.ls1e{letter-spacing:-0.129024pt;}
.ls13{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.107520pt;}
.lsb{letter-spacing:-0.105984pt;}
.lsa{letter-spacing:-0.070656pt;}
.ls29{letter-spacing:-0.041216pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.053248pt;}
.ls4{letter-spacing:0.053376pt;}
.ls21{letter-spacing:0.109824pt;}
.ls0{letter-spacing:0.142080pt;}
.ls22{letter-spacing:0.143616pt;}
.ls8{letter-spacing:0.173184pt;}
.ls2{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.213376pt;}
.ls3{letter-spacing:0.213760pt;}
.ls23{letter-spacing:0.215424pt;}
.ls16{letter-spacing:0.244992pt;}
.ls20{letter-spacing:0.253440pt;}
.ls17{letter-spacing:0.282112pt;}
.ls15{letter-spacing:0.319232pt;}
.ls24{letter-spacing:2.084736pt;}
.ls7{letter-spacing:8.181120pt;}
.ls2f{letter-spacing:14.088960pt;}
.ls2e{letter-spacing:14.387200pt;}
.ls30{letter-spacing:14.388096pt;}
.ls6{letter-spacing:14.595200pt;}
.ls25{letter-spacing:17.985792pt;}
.ls2d{letter-spacing:41.054720pt;}
.ls26{letter-spacing:56.522240pt;}
.ls2b{letter-spacing:150.090240pt;}
.ws6{word-spacing:-18.879232pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws9{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.310976pt;}
.wsb{word-spacing:-13.300224pt;}
.wsf{word-spacing:-13.241088pt;}
.ws7{word-spacing:-13.224960pt;}
.ws13{word-spacing:-13.208832pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws4{word-spacing:-13.155072pt;}
.wsa{word-spacing:-13.138944pt;}
.ws8{word-spacing:-13.101312pt;}
.ws12{word-spacing:-13.031424pt;}
.wsd{word-spacing:-12.160000pt;}
.wse{word-spacing:-11.838976pt;}
.ws11{word-spacing:-0.053760pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._d{width:1.935360pt;}
._b{width:3.064320pt;}
._c{width:4.202496pt;}
._7{width:5.862400pt;}
._6{width:7.095040pt;}
._e{width:8.212480pt;}
._9{width:9.246720pt;}
._11{width:10.859520pt;}
._2{width:11.864704pt;}
._a{width:14.539776pt;}
._8{width:15.755904pt;}
._3{width:16.773120pt;}
._26{width:17.722112pt;}
._5{width:18.619392pt;}
._4{width:20.009472pt;}
._18{width:21.127680pt;}
._28{width:22.041600pt;}
._23{width:23.063040pt;}
._1d{width:24.013440pt;}
._17{width:25.284480pt;}
._1c{width:26.318592pt;}
._1a{width:27.326976pt;}
._19{width:28.277760pt;}
._1b{width:29.675520pt;}
._f{width:30.804480pt;}
._10{width:31.879680pt;}
._12{width:32.901120pt;}
._14{width:34.245120pt;}
._25{width:35.857920pt;}
._2d{width:37.255680pt;}
._2b{width:39.083520pt;}
._13{width:45.803520pt;}
._15{width:47.792640pt;}
._2f{width:49.512960pt;}
._29{width:51.463808pt;}
._21{width:52.420224pt;}
._24{width:53.867520pt;}
._16{width:55.265280pt;}
._20{width:56.185088pt;}
._2e{width:58.759680pt;}
._1f{width:61.364224pt;}
._1e{width:62.791680pt;}
._2a{width:67.845120pt;}
._2c{width:69.027840pt;}
._22{width:79.959040pt;}
._30{width:122.088960pt;}
._27{width:149.614080pt;}
.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;}
.yac{bottom:3.306667pt;}
.yc8{bottom:3.360000pt;}
.yc2{bottom:3.413333pt;}
.ybc{bottom:3.466667pt;}
.yb6{bottom:3.520000pt;}
.yb0{bottom:3.573333pt;}
.ycf{bottom:3.626667pt;}
.yef{bottom:4.000000pt;}
.yc5{bottom:4.053333pt;}
.ybf{bottom:4.106667pt;}
.yb9{bottom:4.160000pt;}
.yb3{bottom:4.213333pt;}
.yd6{bottom:4.266667pt;}
.yd3{bottom:4.906667pt;}
.yf1{bottom:18.666667pt;}
.yc7{bottom:18.720000pt;}
.yc1{bottom:18.773333pt;}
.ybb{bottom:18.826667pt;}
.yb5{bottom:18.880000pt;}
.yaf{bottom:18.933333pt;}
.yf3{bottom:19.306667pt;}
.yee{bottom:19.360000pt;}
.yc4{bottom:19.413333pt;}
.ybe{bottom:19.466667pt;}
.yb8{bottom:19.520000pt;}
.yb2{bottom:19.573333pt;}
.yd5{bottom:19.626667pt;}
.yd2{bottom:20.266667pt;}
.yae{bottom:33.973333pt;}
.ydb{bottom:34.826667pt;}
.yad{bottom:34.933333pt;}
.yec{bottom:35.360000pt;}
.yd1{bottom:35.626667pt;}
.yd0{bottom:36.266667pt;}
.y41{bottom:47.680000pt;}
.yaa{bottom:49.973333pt;}
.ycd{bottom:51.626667pt;}
.y6{bottom:51.840000pt;}
.y3d{bottom:57.333333pt;}
.y5{bottom:76.800000pt;}
.y7c{bottom:108.800000pt;}
.y3c{bottom:112.000000pt;}
.y7b{bottom:124.160000pt;}
.y164{bottom:124.800000pt;}
.y3b{bottom:127.360000pt;}
.y137{bottom:130.240000pt;}
.y7a{bottom:139.520000pt;}
.y163{bottom:140.160000pt;}
.yea{bottom:142.720000pt;}
.y136{bottom:145.600000pt;}
.y3a{bottom:150.400000pt;}
.y79{bottom:154.880000pt;}
.y162{bottom:155.520000pt;}
.ye9{bottom:158.080000pt;}
.y135{bottom:160.960000pt;}
.ya8{bottom:162.880000pt;}
.y78{bottom:170.240000pt;}
.y161{bottom:170.880000pt;}
.ye8{bottom:173.440000pt;}
.y39{bottom:175.040000pt;}
.y134{bottom:176.320000pt;}
.ya7{bottom:179.200000pt;}
.y77{bottom:185.600000pt;}
.y160{bottom:186.240000pt;}
.y38{bottom:187.520000pt;}
.ye7{bottom:188.800000pt;}
.y133{bottom:191.360000pt;}
.ya6{bottom:195.200000pt;}
.y37{bottom:200.000000pt;}
.y76{bottom:200.960000pt;}
.y15f{bottom:201.600000pt;}
.ye6{bottom:204.160000pt;}
.y132{bottom:206.720000pt;}
.ya5{bottom:210.560000pt;}
.y36{bottom:212.160000pt;}
.y75{bottom:216.320000pt;}
.y15e{bottom:216.960000pt;}
.ye5{bottom:219.520000pt;}
.y35{bottom:225.600000pt;}
.ya4{bottom:225.920000pt;}
.y131{bottom:230.080000pt;}
.y74{bottom:231.360000pt;}
.y15d{bottom:232.320000pt;}
.ye4{bottom:234.880000pt;}
.y34{bottom:240.960000pt;}
.ya3{bottom:242.240000pt;}
.y73{bottom:246.720000pt;}
.y15c{bottom:247.360000pt;}
.ye3{bottom:250.240000pt;}
.y130{bottom:253.440000pt;}
.y33{bottom:256.320000pt;}
.ya2{bottom:257.600000pt;}
.y72{bottom:262.080000pt;}
.y15b{bottom:262.720000pt;}
.ye2{bottom:265.600000pt;}
.y12f{bottom:268.800000pt;}
.y32{bottom:271.680000pt;}
.y71{bottom:277.440000pt;}
.y15a{bottom:278.080000pt;}
.ya1{bottom:280.640000pt;}
.ye1{bottom:280.960000pt;}
.y12e{bottom:284.160000pt;}
.y31{bottom:287.040000pt;}
.y70{bottom:292.800000pt;}
.y159{bottom:293.440000pt;}
.ye0{bottom:296.320000pt;}
.y12d{bottom:299.520000pt;}
.y30{bottom:302.400000pt;}
.ya0{bottom:304.000000pt;}
.y6f{bottom:308.160000pt;}
.y158{bottom:308.800000pt;}
.ydf{bottom:311.360000pt;}
.y12c{bottom:314.880000pt;}
.y10d{bottom:316.160000pt;}
.y2f{bottom:317.440000pt;}
.y9f{bottom:319.360000pt;}
.y6e{bottom:323.520000pt;}
.y157{bottom:324.160000pt;}
.yde{bottom:326.720000pt;}
.y12b{bottom:330.240000pt;}
.y10c{bottom:331.520000pt;}
.y2e{bottom:332.800000pt;}
.y9e{bottom:335.680000pt;}
.y6d{bottom:338.880000pt;}
.y156{bottom:339.520000pt;}
.ydd{bottom:342.080000pt;}
.y12a{bottom:345.600000pt;}
.y10b{bottom:346.880000pt;}
.y2d{bottom:348.160000pt;}
.y9d{bottom:351.680000pt;}
.y6c{bottom:354.240000pt;}
.y155{bottom:354.880000pt;}
.ydc{bottom:357.440000pt;}
.y129{bottom:360.960000pt;}
.y10a{bottom:362.240000pt;}
.y2c{bottom:363.520000pt;}
.y9c{bottom:367.040000pt;}
.yda{bottom:369.333333pt;}
.y6b{bottom:369.600000pt;}
.y154{bottom:370.240000pt;}
.y109{bottom:377.600000pt;}
.y2b{bottom:378.880000pt;}
.y9b{bottom:383.360000pt;}
.y128{bottom:384.000000pt;}
.y6a{bottom:384.960000pt;}
.y153{bottom:385.600000pt;}
.y108{bottom:392.960000pt;}
.y2a{bottom:394.240000pt;}
.y9a{bottom:398.720000pt;}
.y127{bottom:399.360000pt;}
.y69{bottom:400.000000pt;}
.y152{bottom:400.960000pt;}
.y107{bottom:408.000000pt;}
.y29{bottom:409.600000pt;}
.y126{bottom:414.720000pt;}
.y99{bottom:415.040000pt;}
.y68{bottom:415.360000pt;}
.yd9{bottom:416.000000pt;}
.y106{bottom:423.360000pt;}
.y28{bottom:424.960000pt;}
.y125{bottom:430.080000pt;}
.y98{bottom:430.400000pt;}
.y67{bottom:430.720000pt;}
.y151{bottom:431.360000pt;}
.y105{bottom:438.720000pt;}
.y27{bottom:440.320000pt;}
.y124{bottom:445.440000pt;}
.y66{bottom:446.080000pt;}
.y97{bottom:446.720000pt;}
.yd8{bottom:448.000000pt;}
.y104{bottom:454.080000pt;}
.y26{bottom:455.680000pt;}
.y65{bottom:461.440000pt;}
.y96{bottom:462.080000pt;}
.y123{bottom:468.800000pt;}
.y103{bottom:469.440000pt;}
.y25{bottom:471.040000pt;}
.y64{bottom:476.800000pt;}
.y150{bottom:477.440000pt;}
.y95{bottom:478.400000pt;}
.yd7{bottom:478.666667pt;}
.y102{bottom:484.800000pt;}
.y24{bottom:486.400000pt;}
.y63{bottom:492.160000pt;}
.y14f{bottom:492.800000pt;}
.y94{bottom:493.760000pt;}
.y101{bottom:500.160000pt;}
.y23{bottom:501.440000pt;}
.y62{bottom:507.520000pt;}
.y14e{bottom:508.160000pt;}
.y93{bottom:509.120000pt;}
.y100{bottom:515.520000pt;}
.y22{bottom:516.800000pt;}
.y61{bottom:522.880000pt;}
.y14d{bottom:523.520000pt;}
.y92{bottom:524.160000pt;}
.ycc{bottom:525.333333pt;}
.yff{bottom:530.880000pt;}
.y21{bottom:532.160000pt;}
.y60{bottom:538.240000pt;}
.y14c{bottom:538.880000pt;}
.y91{bottom:539.520000pt;}
.yd4{bottom:541.333333pt;}
.yfe{bottom:546.240000pt;}
.y20{bottom:547.520000pt;}
.y5f{bottom:553.600000pt;}
.y14b{bottom:554.240000pt;}
.y90{bottom:554.880000pt;}
.yfd{bottom:561.600000pt;}
.y1f{bottom:562.880000pt;}
.y5e{bottom:568.960000pt;}
.y14a{bottom:569.600000pt;}
.yce{bottom:573.333333pt;}
.yfc{bottom:576.960000pt;}
.y1e{bottom:578.240000pt;}
.y8f{bottom:579.200000pt;}
.y5d{bottom:584.000000pt;}
.y149{bottom:584.960000pt;}
.yfb{bottom:592.000000pt;}
.ycb{bottom:592.960000pt;}
.y1d{bottom:593.600000pt;}
.y5c{bottom:599.360000pt;}
.y148{bottom:600.000000pt;}
.y8e{bottom:602.560000pt;}
.yfa{bottom:607.360000pt;}
.yca{bottom:608.000000pt;}
.y1c{bottom:608.960000pt;}
.y5b{bottom:614.720000pt;}
.y147{bottom:615.360000pt;}
.y8d{bottom:618.880000pt;}
.yf9{bottom:622.720000pt;}
.yc9{bottom:623.360000pt;}
.y1b{bottom:626.240000pt;}
.y122{bottom:630.080000pt;}
.y146{bottom:630.720000pt;}
.y8c{bottom:635.200000pt;}
.yc6{bottom:636.000000pt;}
.y5a{bottom:638.080000pt;}
.y1a{bottom:641.600000pt;}
.y121{bottom:645.440000pt;}
.y145{bottom:646.080000pt;}
.y59{bottom:653.440000pt;}
.y19{bottom:656.960000pt;}
.y8b{bottom:659.520000pt;}
.y120{bottom:660.800000pt;}
.y144{bottom:661.440000pt;}
.yf8{bottom:665.333333pt;}
.yc3{bottom:666.666667pt;}
.y58{bottom:668.800000pt;}
.y18{bottom:674.240000pt;}
.y11f{bottom:676.160000pt;}
.y143{bottom:676.800000pt;}
.yf7{bottom:681.333333pt;}
.y8a{bottom:682.880000pt;}
.y57{bottom:684.160000pt;}
.y11e{bottom:691.520000pt;}
.y142{bottom:692.160000pt;}
.y17{bottom:694.400000pt;}
.y89{bottom:698.240000pt;}
.yc0{bottom:698.666667pt;}
.y56{bottom:699.520000pt;}
.y16{bottom:704.960000pt;}
.y11d{bottom:706.880000pt;}
.y141{bottom:707.520000pt;}
.yf6{bottom:713.333333pt;}
.y88{bottom:713.600000pt;}
.y55{bottom:714.880000pt;}
.y11c{bottom:722.240000pt;}
.y140{bottom:722.880000pt;}
.y15{bottom:725.120000pt;}
.y87{bottom:728.640000pt;}
.ybd{bottom:729.333333pt;}
.y54{bottom:730.240000pt;}
.y14{bottom:735.680000pt;}
.y11b{bottom:737.600000pt;}
.y13f{bottom:738.240000pt;}
.y86{bottom:744.000000pt;}
.y53{bottom:745.600000pt;}
.y11a{bottom:752.640000pt;}
.y13e{bottom:753.600000pt;}
.y13{bottom:755.840000pt;}
.y85{bottom:759.360000pt;}
.y52{bottom:760.640000pt;}
.yba{bottom:761.333333pt;}
.y12{bottom:766.080000pt;}
.y119{bottom:768.000000pt;}
.y13d{bottom:768.640000pt;}
.y84{bottom:774.720000pt;}
.y51{bottom:776.000000pt;}
.y118{bottom:783.360000pt;}
.y13c{bottom:784.000000pt;}
.y11{bottom:786.240000pt;}
.y50{bottom:791.360000pt;}
.yb7{bottom:792.000000pt;}
.y10{bottom:796.800000pt;}
.y83{bottom:798.080000pt;}
.y117{bottom:798.720000pt;}
.y13b{bottom:799.360000pt;}
.yf5{bottom:806.666667pt;}
.y4f{bottom:806.720000pt;}
.y82{bottom:813.440000pt;}
.y116{bottom:814.080000pt;}
.y13a{bottom:814.720000pt;}
.yf{bottom:816.960000pt;}
.y4e{bottom:822.080000pt;}
.yb4{bottom:824.000000pt;}
.ye{bottom:827.520000pt;}
.y115{bottom:829.440000pt;}
.y139{bottom:830.080000pt;}
.y81{bottom:836.800000pt;}
.y4d{bottom:837.440000pt;}
.yf4{bottom:838.666667pt;}
.y114{bottom:844.800000pt;}
.y138{bottom:845.440000pt;}
.yd{bottom:847.680000pt;}
.y80{bottom:852.160000pt;}
.yb1{bottom:854.666667pt;}
.y113{bottom:860.160000pt;}
.y4c{bottom:860.800000pt;}
.yc{bottom:866.880000pt;}
.yf2{bottom:869.333333pt;}
.y7f{bottom:875.520000pt;}
.y4b{bottom:876.160000pt;}
.yb{bottom:885.440000pt;}
.ya9{bottom:886.666667pt;}
.y7e{bottom:890.880000pt;}
.y4a{bottom:891.520000pt;}
.yf0{bottom:901.333333pt;}
.y112{bottom:906.240000pt;}
.y49{bottom:906.880000pt;}
.ya{bottom:912.320000pt;}
.y7d{bottom:914.240000pt;}
.y111{bottom:921.600000pt;}
.y48{bottom:922.240000pt;}
.yeb{bottom:932.000000pt;}
.yab{bottom:933.333333pt;}
.y9{bottom:933.760000pt;}
.y110{bottom:936.640000pt;}
.y47{bottom:937.600000pt;}
.yed{bottom:948.000000pt;}
.y10f{bottom:952.000000pt;}
.y46{bottom:952.640000pt;}
.y8{bottom:955.200000pt;}
.y45{bottom:968.000000pt;}
.y10e{bottom:975.360000pt;}
.y44{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y43{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.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;}
.hf{height:16.000000pt;}
.h14{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.h11{height:32.000000pt;}
.hd{height:32.965000pt;}
.h5{height:36.435000pt;}
.ha{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h3{height:42.751250pt;}
.h10{height:46.666667pt;}
.h13{height:48.000000pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.he{height:62.666667pt;}
.h12{height:64.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w6{width:26.666667pt;}
.w10{width:37.333333pt;}
.w5{width:52.000000pt;}
.w8{width:54.666667pt;}
.wd{width:57.333333pt;}
.w9{width:61.333333pt;}
.we{width:65.333333pt;}
.wa{width:66.666667pt;}
.w11{width:68.000000pt;}
.w13{width:69.333333pt;}
.w7{width:70.666667pt;}
.w14{width:76.000000pt;}
.wf{width:124.000000pt;}
.wb{width:158.666667pt;}
.w12{width:166.666667pt;}
.w3{width:174.666667pt;}
.w15{width:241.333333pt;}
.w4{width:294.666667pt;}
.wc{width:406.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x19{left:1.386709pt;}
.x1e{left:6.666667pt;}
.x21{left:7.786667pt;}
.x1d{left:89.333333pt;}
.x5{left:96.000000pt;}
.x1a{left:97.552096pt;}
.x14{left:98.443360pt;}
.x31{left:99.526048pt;}
.xd{left:102.124992pt;}
.x12{left:103.065760pt;}
.x27{left:106.700512pt;}
.x4{left:108.055680pt;}
.x30{left:110.033856pt;}
.xf{left:116.923168pt;}
.xb{left:118.645184pt;}
.x37{left:120.000000pt;}
.x9{left:121.774752pt;}
.x8{left:126.733088pt;}
.x18{left:142.666667pt;}
.x28{left:157.621728pt;}
.x11{left:171.147136pt;}
.xa{left:176.516928pt;}
.x10{left:212.989600pt;}
.x1c{left:232.673824pt;}
.xe{left:242.423168pt;}
.xc{left:244.658208pt;}
.x29{left:246.666667pt;}
.x33{left:254.666667pt;}
.x1f{left:264.000000pt;}
.x2{left:265.722336pt;}
.x16{left:285.750016pt;}
.x2b{left:304.000000pt;}
.x13{left:313.162112pt;}
.x24{left:317.333333pt;}
.x34{left:322.666667pt;}
.x2c{left:370.666667pt;}
.x32{left:372.231040pt;}
.x15{left:376.866560pt;}
.x3{left:396.866560pt;}
.x35{left:398.666667pt;}
.x17{left:420.480000pt;}
.x2d{left:436.000000pt;}
.x25{left:437.333333pt;}
.x1b{left:444.480000pt;}
.x1{left:456.943680pt;}
.x36{left:464.000000pt;}
.x26{left:492.000000pt;}
.x7{left:536.450240pt;}
.x20{left:557.333333pt;}
.x2e{left:558.666667pt;}
.x22{left:608.000000pt;}
.x2f{left:616.000000pt;}
.x23{left:634.666667pt;}
.x2a{left:653.333333pt;}
.x6{left:675.432640pt;}
}




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