
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_dab109b290c45085d384a908.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4a1c36455b3f200ede4c4010.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_0ef0905fdcbd4d812cd03935.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_5b5a83d2f1736fc342982057.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_830215f8c01e1a0237862dd2.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_b9db66361e052e7d37342ecd.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_253e0e39f16b744ae9ca2d5d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f895d376c65506d986f80d5a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1ba1032568d315df4589ad4c.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c59e79668b7ad61a1ecb71d1.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c7c5bb2fb462ae577f638e4a.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_fbcdd3674cef0097f3d10e9f.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7bc4d39cd11bba33347f8bee.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_8013ec38d7c8c84678188c31.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_28dc0da6ffb6115901ab8c73.woff')format("woff");}.ff12{font-family:ff12;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;}
.ls15{letter-spacing:-0.459648px;}
.ls1c{letter-spacing:-0.417312px;}
.ls25{letter-spacing:-0.399168px;}
.ls18{letter-spacing:-0.381024px;}
.ls24{letter-spacing:-0.361152px;}
.ls17{letter-spacing:-0.338688px;}
.lsb{letter-spacing:-0.320544px;}
.ls1a{letter-spacing:-0.302400px;}
.ls23{letter-spacing:-0.273600px;}
.ls26{letter-spacing:-0.272160px;}
.ls14{letter-spacing:-0.260064px;}
.ls1b{letter-spacing:-0.241920px;}
.lsc{letter-spacing:-0.223776px;}
.ls10{letter-spacing:-0.198720px;}
.lse{letter-spacing:-0.175392px;}
.ls19{letter-spacing:-0.157248px;}
.lsa{letter-spacing:-0.152352px;}
.ls9{letter-spacing:-0.145728px;}
.ls16{letter-spacing:-0.145152px;}
.lsf{letter-spacing:-0.132480px;}
.lsd{letter-spacing:-0.120960px;}
.ls8{letter-spacing:-0.119232px;}
.ls7{letter-spacing:-0.079488px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.060048px;}
.ls1e{letter-spacing:0.123552px;}
.ls1f{letter-spacing:0.161568px;}
.ls5{letter-spacing:0.194832px;}
.ls1{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.240048px;}
.ls20{letter-spacing:0.242352px;}
.ls12{letter-spacing:0.283968px;}
.ls1d{letter-spacing:0.285120px;}
.ls13{letter-spacing:0.317376px;}
.ls11{letter-spacing:0.359136px;}
.ls4{letter-spacing:1.404864px;}
.ls21{letter-spacing:9.617760px;}
.ls29{letter-spacing:16.185600px;}
.ls28{letter-spacing:16.186608px;}
.ls3{letter-spacing:20.846304px;}
.ls27{letter-spacing:46.186560px;}
.ls22{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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.480512px;}
.ws2{word-spacing:-16.440768px;}
.ws7{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.974848px;}
.wsf{word-spacing:-14.962752px;}
.ws13{word-spacing:-14.944608px;}
.ws16{word-spacing:-14.896224px;}
.ws6{word-spacing:-14.878080px;}
.ws11{word-spacing:-14.859936px;}
.ws15{word-spacing:-14.847840px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws12{word-spacing:-14.817600px;}
.ws4{word-spacing:-14.799456px;}
.ws8{word-spacing:-14.781312px;}
.wsa{word-spacing:-14.738976px;}
.wsb{word-spacing:-14.702688px;}
.ws14{word-spacing:-14.660352px;}
.wsd{word-spacing:-13.680000px;}
.wse{word-spacing:-13.318848px;}
.ws10{word-spacing:-0.060480px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._3{width:2.177280px;}
._4{width:3.844224px;}
._5{width:5.624640px;}
._17{width:6.668208px;}
._a{width:7.670304px;}
._9{width:8.709120px;}
._22{width:10.402560px;}
._6{width:11.573280px;}
._2{width:13.022640px;}
._b{width:15.784848px;}
._11{width:16.971120px;}
._10{width:18.691200px;}
._8{width:20.318400px;}
._7{width:21.676608px;}
._2f{width:22.746240px;}
._c{width:23.768640px;}
._18{width:25.108704px;}
._1f{width:26.364528px;}
._23{width:28.183680px;}
._1a{width:29.514240px;}
._28{width:31.371264px;}
._15{width:33.000768px;}
._d{width:34.231680px;}
._f{width:36.046080px;}
._1d{width:37.497600px;}
._20{width:38.832912px;}
._19{width:39.856320px;}
._12{width:41.428800px;}
._13{width:42.517440px;}
._29{width:44.210880px;}
._24{width:46.206720px;}
._16{width:47.658240px;}
._21{width:49.714560px;}
._1c{width:51.891840px;}
._27{width:53.948160px;}
._2e{width:55.278720px;}
._26{width:57.107376px;}
._25{width:58.242240px;}
._1b{width:60.349536px;}
._14{width:61.457184px;}
._e{width:67.435200px;}
._2c{width:70.822080px;}
._1e{width:74.329920px;}
._2a{width:80.745552px;}
._2d{width:96.465600px;}
._2b{width:153.074880px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs4{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:47.520000px;}
.fs8{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y40{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:1.740000px;}
.yfc{bottom:3.720000px;}
.ydd{bottom:3.780000px;}
.yd5{bottom:3.840000px;}
.yc6{bottom:3.900000px;}
.y107{bottom:3.960000px;}
.yed{bottom:4.020000px;}
.ye5{bottom:4.080000px;}
.yf6{bottom:4.500000px;}
.yda{bottom:4.560000px;}
.y10e{bottom:4.620000px;}
.yac{bottom:4.680000px;}
.y102{bottom:4.740000px;}
.yea{bottom:4.800000px;}
.ye3{bottom:4.860000px;}
.yfb{bottom:21.000000px;}
.ydc{bottom:21.060000px;}
.yd4{bottom:21.120000px;}
.y10c{bottom:21.180000px;}
.y106{bottom:21.240000px;}
.yec{bottom:21.300000px;}
.ye4{bottom:21.360000px;}
.yfd{bottom:21.720000px;}
.ye2{bottom:21.780000px;}
.yd9{bottom:21.840000px;}
.y10d{bottom:21.900000px;}
.y108{bottom:21.960000px;}
.y101{bottom:22.020000px;}
.ye9{bottom:22.080000px;}
.ydb{bottom:39.060000px;}
.yeb{bottom:39.300000px;}
.ye0{bottom:39.360000px;}
.yf9{bottom:39.720000px;}
.yf4{bottom:39.780000px;}
.yf0{bottom:39.840000px;}
.yc8{bottom:39.900000px;}
.y105{bottom:39.960000px;}
.yb4{bottom:40.680000px;}
.y42{bottom:53.640000px;}
.ydf{bottom:56.280000px;}
.yd7{bottom:56.340000px;}
.ye7{bottom:56.580000px;}
.yf8{bottom:57.000000px;}
.yf3{bottom:57.060000px;}
.yef{bottom:57.120000px;}
.y10a{bottom:57.180000px;}
.y104{bottom:57.240000px;}
.y6{bottom:58.320000px;}
.ybf{bottom:58.680000px;}
.y3e{bottom:64.500000px;}
.ycc{bottom:75.900000px;}
.yae{bottom:76.680000px;}
.y5{bottom:86.400000px;}
.yb8{bottom:112.680000px;}
.y117{bottom:113.760000px;}
.y12f{bottom:120.960000px;}
.y7c{bottom:121.680000px;}
.y3d{bottom:127.800000px;}
.y116{bottom:131.040000px;}
.ye6{bottom:133.500000px;}
.y12e{bottom:138.240000px;}
.y7b{bottom:138.960000px;}
.yaa{bottom:144.360000px;}
.y3c{bottom:145.080000px;}
.y12d{bottom:155.520000px;}
.y7a{bottom:156.240000px;}
.y115{bottom:157.320000px;}
.ya9{bottom:161.640000px;}
.y3b{bottom:162.360000px;}
.ye8{bottom:168.000000px;}
.y114{bottom:171.360000px;}
.y12c{bottom:172.800000px;}
.y79{bottom:173.520000px;}
.y3a{bottom:179.640000px;}
.y12b{bottom:190.080000px;}
.y78{bottom:190.800000px;}
.y39{bottom:196.920000px;}
.ya8{bottom:198.000000px;}
.y142{bottom:199.080000px;}
.yde{bottom:204.000000px;}
.y12a{bottom:207.360000px;}
.y77{bottom:208.080000px;}
.y38{bottom:214.200000px;}
.ya7{bottom:215.280000px;}
.y129{bottom:224.280000px;}
.y76{bottom:225.360000px;}
.ya6{bottom:233.640000px;}
.ye1{bottom:238.500000px;}
.y37{bottom:240.480000px;}
.y128{bottom:241.560000px;}
.y75{bottom:242.280000px;}
.ya5{bottom:252.000000px;}
.y74{bottom:259.560000px;}
.y36{bottom:267.840000px;}
.ya4{bottom:269.280000px;}
.yd6{bottom:274.500000px;}
.y73{bottom:276.840000px;}
.y35{bottom:282.240000px;}
.y127{bottom:285.120000px;}
.y72{bottom:294.120000px;}
.y34{bottom:295.920000px;}
.ya3{bottom:296.640000px;}
.y126{bottom:302.400000px;}
.yd8{bottom:309.000000px;}
.y33{bottom:309.600000px;}
.y71{bottom:311.400000px;}
.ya2{bottom:313.920000px;}
.y125{bottom:319.680000px;}
.y32{bottom:324.720000px;}
.y70{bottom:328.680000px;}
.y124{bottom:336.960000px;}
.ya1{bottom:340.200000px;}
.y31{bottom:342.000000px;}
.yd3{bottom:345.000000px;}
.y6f{bottom:345.960000px;}
.y123{bottom:354.240000px;}
.y30{bottom:359.280000px;}
.y141{bottom:363.240000px;}
.ya0{bottom:366.480000px;}
.y122{bottom:371.520000px;}
.y6e{bottom:372.240000px;}
.y2f{bottom:376.560000px;}
.y140{bottom:380.520000px;}
.yd2{bottom:384.120000px;}
.y9f{bottom:384.840000px;}
.y121{bottom:388.800000px;}
.y6d{bottom:389.520000px;}
.y2e{bottom:393.840000px;}
.y113{bottom:397.800000px;}
.y165{bottom:399.240000px;}
.yd1{bottom:401.400000px;}
.y9e{bottom:402.840000px;}
.y120{bottom:406.080000px;}
.y6c{bottom:406.800000px;}
.y2d{bottom:411.120000px;}
.y112{bottom:415.080000px;}
.ycb{bottom:415.500000px;}
.y164{bottom:416.520000px;}
.y6b{bottom:424.080000px;}
.y2c{bottom:428.400000px;}
.y9d{bottom:430.200000px;}
.y11f{bottom:432.000000px;}
.y111{bottom:432.360000px;}
.yd0{bottom:433.500000px;}
.y163{bottom:433.800000px;}
.y6a{bottom:441.000000px;}
.y2b{bottom:445.680000px;}
.y110{bottom:446.400000px;}
.y13f{bottom:450.000000px;}
.y162{bottom:451.080000px;}
.ycf{bottom:451.500000px;}
.y9c{bottom:456.480000px;}
.y69{bottom:458.280000px;}
.y2a{bottom:462.960000px;}
.y13e{bottom:467.280000px;}
.y161{bottom:468.000000px;}
.yce{bottom:469.500000px;}
.y9b{bottom:473.760000px;}
.y68{bottom:475.560000px;}
.y29{bottom:480.240000px;}
.y13d{bottom:484.560000px;}
.y160{bottom:485.280000px;}
.ycd{bottom:487.500000px;}
.y9a{bottom:491.040000px;}
.y67{bottom:492.840000px;}
.y28{bottom:497.520000px;}
.y13c{bottom:501.840000px;}
.y15f{bottom:502.560000px;}
.yc7{bottom:505.500000px;}
.y66{bottom:510.120000px;}
.y27{bottom:514.800000px;}
.y99{bottom:517.320000px;}
.y13b{bottom:519.120000px;}
.y15e{bottom:519.840000px;}
.yca{bottom:523.500000px;}
.y65{bottom:527.400000px;}
.y26{bottom:531.720000px;}
.y98{bottom:535.680000px;}
.y13a{bottom:536.400000px;}
.y15d{bottom:537.120000px;}
.yc9{bottom:541.500000px;}
.y64{bottom:544.680000px;}
.y25{bottom:549.000000px;}
.y139{bottom:553.680000px;}
.y97{bottom:554.040000px;}
.y15c{bottom:554.400000px;}
.yc5{bottom:559.500000px;}
.y63{bottom:561.960000px;}
.y24{bottom:566.280000px;}
.y138{bottom:570.960000px;}
.y15b{bottom:571.680000px;}
.y96{bottom:572.400000px;}
.y62{bottom:579.240000px;}
.yc4{bottom:581.400000px;}
.y23{bottom:583.560000px;}
.y137{bottom:588.240000px;}
.y15a{bottom:588.960000px;}
.y95{bottom:590.760000px;}
.y11e{bottom:596.520000px;}
.yc3{bottom:598.680000px;}
.y22{bottom:600.840000px;}
.y61{bottom:605.520000px;}
.y159{bottom:606.240000px;}
.y94{bottom:608.760000px;}
.ybe{bottom:612.000000px;}
.y11d{bottom:613.800000px;}
.y21{bottom:618.120000px;}
.y60{bottom:622.800000px;}
.y158{bottom:623.520000px;}
.y93{bottom:627.120000px;}
.yc2{bottom:630.000000px;}
.y11c{bottom:631.080000px;}
.y20{bottom:635.400000px;}
.y5f{bottom:640.080000px;}
.y157{bottom:640.800000px;}
.y92{bottom:645.480000px;}
.yc1{bottom:648.000000px;}
.y1f{bottom:652.680000px;}
.y5e{bottom:657.000000px;}
.y156{bottom:658.080000px;}
.yc0{bottom:666.000000px;}
.y1e{bottom:669.960000px;}
.y91{bottom:672.840000px;}
.y5d{bottom:674.280000px;}
.y155{bottom:675.000000px;}
.yb7{bottom:684.000000px;}
.y1d{bottom:687.240000px;}
.y5c{bottom:691.560000px;}
.y154{bottom:692.280000px;}
.y90{bottom:699.120000px;}
.ybd{bottom:702.000000px;}
.y1c{bottom:704.520000px;}
.y5b{bottom:708.840000px;}
.y153{bottom:709.560000px;}
.y8f{bottom:716.400000px;}
.y10f{bottom:717.120000px;}
.y136{bottom:717.840000px;}
.ybc{bottom:720.000000px;}
.y1b{bottom:721.440000px;}
.y5a{bottom:726.120000px;}
.y152{bottom:726.840000px;}
.y109{bottom:730.500000px;}
.y8e{bottom:733.680000px;}
.y135{bottom:735.120000px;}
.ybb{bottom:738.000000px;}
.y1a{bottom:738.720000px;}
.y59{bottom:743.400000px;}
.y151{bottom:744.120000px;}
.y8d{bottom:750.960000px;}
.y134{bottom:752.400000px;}
.y19{bottom:756.000000px;}
.y58{bottom:760.680000px;}
.y150{bottom:761.400000px;}
.y10b{bottom:766.500000px;}
.y8c{bottom:768.240000px;}
.y133{bottom:769.680000px;}
.y18{bottom:773.280000px;}
.yba{bottom:774.000000px;}
.y57{bottom:777.960000px;}
.y14f{bottom:778.680000px;}
.y8b{bottom:785.520000px;}
.y132{bottom:786.960000px;}
.y17{bottom:790.560000px;}
.yb9{bottom:792.000000px;}
.y56{bottom:795.240000px;}
.y14e{bottom:795.960000px;}
.y103{bottom:801.000000px;}
.y8a{bottom:802.800000px;}
.y131{bottom:804.240000px;}
.y16{bottom:807.840000px;}
.yb3{bottom:810.000000px;}
.y11b{bottom:812.520000px;}
.y14d{bottom:813.240000px;}
.y89{bottom:819.720000px;}
.y55{bottom:821.520000px;}
.y15{bottom:827.280000px;}
.yb6{bottom:828.000000px;}
.y11a{bottom:829.800000px;}
.y14c{bottom:830.520000px;}
.y88{bottom:837.000000px;}
.y54{bottom:838.800000px;}
.y14{bottom:844.560000px;}
.yb5{bottom:846.000000px;}
.y119{bottom:846.720000px;}
.y14b{bottom:847.800000px;}
.y87{bottom:854.280000px;}
.y53{bottom:855.720000px;}
.y13{bottom:861.840000px;}
.yad{bottom:864.000000px;}
.y14a{bottom:864.720000px;}
.y100{bottom:871.500000px;}
.y86{bottom:871.560000px;}
.y52{bottom:873.000000px;}
.y12{bottom:881.280000px;}
.yb2{bottom:882.000000px;}
.y85{bottom:888.840000px;}
.y51{bottom:890.280000px;}
.y118{bottom:898.560000px;}
.y149{bottom:899.280000px;}
.yb1{bottom:900.000000px;}
.y11{bottom:903.960000px;}
.y50{bottom:907.560000px;}
.yff{bottom:911.520000px;}
.y84{bottom:915.120000px;}
.y10{bottom:915.840000px;}
.y148{bottom:916.560000px;}
.yb0{bottom:918.000000px;}
.y4f{bottom:924.840000px;}
.yfe{bottom:928.800000px;}
.y147{bottom:933.840000px;}
.yaf{bottom:936.000000px;}
.yf{bottom:938.520000px;}
.y83{bottom:941.400000px;}
.yf7{bottom:942.000000px;}
.y4e{bottom:942.120000px;}
.ye{bottom:950.400000px;}
.y146{bottom:951.120000px;}
.yab{bottom:954.000000px;}
.y82{bottom:958.680000px;}
.y4d{bottom:959.400000px;}
.y145{bottom:968.400000px;}
.yd{bottom:973.080000px;}
.y4c{bottom:976.680000px;}
.yfa{bottom:978.000000px;}
.y81{bottom:984.960000px;}
.y144{bottom:985.680000px;}
.y4b{bottom:993.960000px;}
.yc{bottom:994.680000px;}
.y143{bottom:1002.960000px;}
.y4a{bottom:1011.240000px;}
.yf2{bottom:1012.500000px;}
.yb{bottom:1013.040000px;}
.y130{bottom:1020.240000px;}
.ya{bottom:1026.360000px;}
.y49{bottom:1028.520000px;}
.y80{bottom:1037.520000px;}
.y48{bottom:1045.800000px;}
.yf5{bottom:1048.500000px;}
.y9{bottom:1050.480000px;}
.y7f{bottom:1054.800000px;}
.y47{bottom:1062.720000px;}
.y7e{bottom:1071.720000px;}
.y8{bottom:1074.600000px;}
.y46{bottom:1080.000000px;}
.yee{bottom:1083.000000px;}
.y7d{bottom:1089.000000px;}
.y45{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.yf1{bottom:1119.000000px;}
.y44{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.y43{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y41{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hd{height:4.500000px;}
.h14{height:18.000000px;}
.hf{height:19.500000px;}
.h8{height:23.994141px;}
.ha{height:26.274375px;}
.hc{height:32.994844px;}
.h17{height:36.000000px;}
.he{height:37.085625px;}
.h5{height:40.989375px;}
.hb{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h3{height:48.095156px;}
.h15{height:54.000000px;}
.h11{height:55.500000px;}
.h9{height:56.593125px;}
.h7{height:56.604375px;}
.h18{height:70.500000px;}
.h19{height:72.000000px;}
.h13{height:73.500000px;}
.h16{height:90.000000px;}
.h10{height:91.500000px;}
.h12{height:127.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w12{width:49.500000px;}
.wd{width:51.000000px;}
.wc{width:52.500000px;}
.wb{width:55.500000px;}
.w13{width:60.000000px;}
.we{width:61.500000px;}
.wf{width:63.000000px;}
.w11{width:64.500000px;}
.w14{width:73.500000px;}
.w15{width:76.500000px;}
.w5{width:91.500000px;}
.w7{width:127.500000px;}
.w9{width:136.500000px;}
.w8{width:175.500000px;}
.w3{width:177.000000px;}
.w16{width:190.500000px;}
.w4{width:243.000000px;}
.w10{width:255.000000px;}
.wa{width:310.500000px;}
.w6{width:312.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:1.560048px;}
.x1a{left:7.500000px;}
.x25{left:8.820000px;}
.x19{left:100.500000px;}
.x5{left:108.000000px;}
.x15{left:109.746108px;}
.x9{left:111.684816px;}
.x35{left:115.669188px;}
.x17{left:118.576908px;}
.x4{left:121.562640px;}
.x23{left:123.795396px;}
.xc{left:126.777816px;}
.x10{left:129.275388px;}
.x8{left:133.228260px;}
.x38{left:135.000000px;}
.x37{left:145.833984px;}
.xe{left:148.863996px;}
.xf{left:153.960192px;}
.x11{left:155.849868px;}
.x13{left:160.500000px;}
.xa{left:165.297348px;}
.xb{left:232.948980px;}
.xd{left:244.187280px;}
.x22{left:276.000000px;}
.x1b{left:277.500000px;}
.x33{left:291.000000px;}
.x2{left:298.937628px;}
.x2c{left:354.000000px;}
.x2b{left:355.500000px;}
.x18{left:373.953960px;}
.x24{left:409.500000px;}
.x1f{left:411.000000px;}
.x2d{left:417.000000px;}
.x3{left:446.474880px;}
.x26{left:463.500000px;}
.x2e{left:466.500000px;}
.x12{left:473.040000px;}
.x16{left:500.040000px;}
.x1{left:514.061640px;}
.x1c{left:519.000000px;}
.x2f{left:525.000000px;}
.x20{left:538.500000px;}
.x27{left:565.500000px;}
.x30{left:597.000000px;}
.x7{left:603.506520px;}
.x1d{left:610.500000px;}
.x28{left:627.000000px;}
.x36{left:632.054880px;}
.x34{left:656.894880px;}
.x21{left:666.000000px;}
.x31{left:672.000000px;}
.x29{left:690.000000px;}
.x1e{left:702.000000px;}
.x32{left:732.000000px;}
.x2a{left:741.000000px;}
.x6{left:759.861720px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls15{letter-spacing:-0.408576pt;}
.ls1c{letter-spacing:-0.370944pt;}
.ls25{letter-spacing:-0.354816pt;}
.ls18{letter-spacing:-0.338688pt;}
.ls24{letter-spacing:-0.321024pt;}
.ls17{letter-spacing:-0.301056pt;}
.lsb{letter-spacing:-0.284928pt;}
.ls1a{letter-spacing:-0.268800pt;}
.ls23{letter-spacing:-0.243200pt;}
.ls26{letter-spacing:-0.241920pt;}
.ls14{letter-spacing:-0.231168pt;}
.ls1b{letter-spacing:-0.215040pt;}
.lsc{letter-spacing:-0.198912pt;}
.ls10{letter-spacing:-0.176640pt;}
.lse{letter-spacing:-0.155904pt;}
.ls19{letter-spacing:-0.139776pt;}
.lsa{letter-spacing:-0.135424pt;}
.ls9{letter-spacing:-0.129536pt;}
.ls16{letter-spacing:-0.129024pt;}
.lsf{letter-spacing:-0.117760pt;}
.lsd{letter-spacing:-0.107520pt;}
.ls8{letter-spacing:-0.105984pt;}
.ls7{letter-spacing:-0.070656pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053376pt;}
.ls1e{letter-spacing:0.109824pt;}
.ls1f{letter-spacing:0.143616pt;}
.ls5{letter-spacing:0.173184pt;}
.ls1{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.213376pt;}
.ls20{letter-spacing:0.215424pt;}
.ls12{letter-spacing:0.252416pt;}
.ls1d{letter-spacing:0.253440pt;}
.ls13{letter-spacing:0.282112pt;}
.ls11{letter-spacing:0.319232pt;}
.ls4{letter-spacing:1.248768pt;}
.ls21{letter-spacing:8.549120pt;}
.ls29{letter-spacing:14.387200pt;}
.ls28{letter-spacing:14.388096pt;}
.ls3{letter-spacing:18.530048pt;}
.ls27{letter-spacing:41.054720pt;}
.ls22{letter-spacing:56.522240pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws7{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.310976pt;}
.wsf{word-spacing:-13.300224pt;}
.ws13{word-spacing:-13.284096pt;}
.ws16{word-spacing:-13.241088pt;}
.ws6{word-spacing:-13.224960pt;}
.ws11{word-spacing:-13.208832pt;}
.ws15{word-spacing:-13.198080pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws12{word-spacing:-13.171200pt;}
.ws4{word-spacing:-13.155072pt;}
.ws8{word-spacing:-13.138944pt;}
.wsa{word-spacing:-13.101312pt;}
.wsb{word-spacing:-13.069056pt;}
.ws14{word-spacing:-13.031424pt;}
.wsd{word-spacing:-12.160000pt;}
.wse{word-spacing:-11.838976pt;}
.ws10{word-spacing:-0.053760pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._3{width:1.935360pt;}
._4{width:3.417088pt;}
._5{width:4.999680pt;}
._17{width:5.927296pt;}
._a{width:6.818048pt;}
._9{width:7.741440pt;}
._22{width:9.246720pt;}
._6{width:10.287360pt;}
._2{width:11.575680pt;}
._b{width:14.030976pt;}
._11{width:15.085440pt;}
._10{width:16.614400pt;}
._8{width:18.060800pt;}
._7{width:19.268096pt;}
._2f{width:20.218880pt;}
._c{width:21.127680pt;}
._18{width:22.318848pt;}
._1f{width:23.435136pt;}
._23{width:25.052160pt;}
._1a{width:26.234880pt;}
._28{width:27.885568pt;}
._15{width:29.334016pt;}
._d{width:30.428160pt;}
._f{width:32.040960pt;}
._1d{width:33.331200pt;}
._20{width:34.518144pt;}
._19{width:35.427840pt;}
._12{width:36.825600pt;}
._13{width:37.793280pt;}
._29{width:39.298560pt;}
._24{width:41.072640pt;}
._16{width:42.362880pt;}
._21{width:44.190720pt;}
._1c{width:46.126080pt;}
._27{width:47.953920pt;}
._2e{width:49.136640pt;}
._26{width:50.762112pt;}
._25{width:51.770880pt;}
._1b{width:53.644032pt;}
._14{width:54.628608pt;}
._e{width:59.942400pt;}
._2c{width:62.952960pt;}
._1e{width:66.071040pt;}
._2a{width:71.773824pt;}
._2d{width:85.747200pt;}
._2b{width:136.066560pt;}
.fs1{font-size:5.120000pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.240000pt;}
.fs8{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y40{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:1.546667pt;}
.yfc{bottom:3.306667pt;}
.ydd{bottom:3.360000pt;}
.yd5{bottom:3.413333pt;}
.yc6{bottom:3.466667pt;}
.y107{bottom:3.520000pt;}
.yed{bottom:3.573333pt;}
.ye5{bottom:3.626667pt;}
.yf6{bottom:4.000000pt;}
.yda{bottom:4.053333pt;}
.y10e{bottom:4.106667pt;}
.yac{bottom:4.160000pt;}
.y102{bottom:4.213333pt;}
.yea{bottom:4.266667pt;}
.ye3{bottom:4.320000pt;}
.yfb{bottom:18.666667pt;}
.ydc{bottom:18.720000pt;}
.yd4{bottom:18.773333pt;}
.y10c{bottom:18.826667pt;}
.y106{bottom:18.880000pt;}
.yec{bottom:18.933333pt;}
.ye4{bottom:18.986667pt;}
.yfd{bottom:19.306667pt;}
.ye2{bottom:19.360000pt;}
.yd9{bottom:19.413333pt;}
.y10d{bottom:19.466667pt;}
.y108{bottom:19.520000pt;}
.y101{bottom:19.573333pt;}
.ye9{bottom:19.626667pt;}
.ydb{bottom:34.720000pt;}
.yeb{bottom:34.933333pt;}
.ye0{bottom:34.986667pt;}
.yf9{bottom:35.306667pt;}
.yf4{bottom:35.360000pt;}
.yf0{bottom:35.413333pt;}
.yc8{bottom:35.466667pt;}
.y105{bottom:35.520000pt;}
.yb4{bottom:36.160000pt;}
.y42{bottom:47.680000pt;}
.ydf{bottom:50.026667pt;}
.yd7{bottom:50.080000pt;}
.ye7{bottom:50.293333pt;}
.yf8{bottom:50.666667pt;}
.yf3{bottom:50.720000pt;}
.yef{bottom:50.773333pt;}
.y10a{bottom:50.826667pt;}
.y104{bottom:50.880000pt;}
.y6{bottom:51.840000pt;}
.ybf{bottom:52.160000pt;}
.y3e{bottom:57.333333pt;}
.ycc{bottom:67.466667pt;}
.yae{bottom:68.160000pt;}
.y5{bottom:76.800000pt;}
.yb8{bottom:100.160000pt;}
.y117{bottom:101.120000pt;}
.y12f{bottom:107.520000pt;}
.y7c{bottom:108.160000pt;}
.y3d{bottom:113.600000pt;}
.y116{bottom:116.480000pt;}
.ye6{bottom:118.666667pt;}
.y12e{bottom:122.880000pt;}
.y7b{bottom:123.520000pt;}
.yaa{bottom:128.320000pt;}
.y3c{bottom:128.960000pt;}
.y12d{bottom:138.240000pt;}
.y7a{bottom:138.880000pt;}
.y115{bottom:139.840000pt;}
.ya9{bottom:143.680000pt;}
.y3b{bottom:144.320000pt;}
.ye8{bottom:149.333333pt;}
.y114{bottom:152.320000pt;}
.y12c{bottom:153.600000pt;}
.y79{bottom:154.240000pt;}
.y3a{bottom:159.680000pt;}
.y12b{bottom:168.960000pt;}
.y78{bottom:169.600000pt;}
.y39{bottom:175.040000pt;}
.ya8{bottom:176.000000pt;}
.y142{bottom:176.960000pt;}
.yde{bottom:181.333333pt;}
.y12a{bottom:184.320000pt;}
.y77{bottom:184.960000pt;}
.y38{bottom:190.400000pt;}
.ya7{bottom:191.360000pt;}
.y129{bottom:199.360000pt;}
.y76{bottom:200.320000pt;}
.ya6{bottom:207.680000pt;}
.ye1{bottom:212.000000pt;}
.y37{bottom:213.760000pt;}
.y128{bottom:214.720000pt;}
.y75{bottom:215.360000pt;}
.ya5{bottom:224.000000pt;}
.y74{bottom:230.720000pt;}
.y36{bottom:238.080000pt;}
.ya4{bottom:239.360000pt;}
.yd6{bottom:244.000000pt;}
.y73{bottom:246.080000pt;}
.y35{bottom:250.880000pt;}
.y127{bottom:253.440000pt;}
.y72{bottom:261.440000pt;}
.y34{bottom:263.040000pt;}
.ya3{bottom:263.680000pt;}
.y126{bottom:268.800000pt;}
.yd8{bottom:274.666667pt;}
.y33{bottom:275.200000pt;}
.y71{bottom:276.800000pt;}
.ya2{bottom:279.040000pt;}
.y125{bottom:284.160000pt;}
.y32{bottom:288.640000pt;}
.y70{bottom:292.160000pt;}
.y124{bottom:299.520000pt;}
.ya1{bottom:302.400000pt;}
.y31{bottom:304.000000pt;}
.yd3{bottom:306.666667pt;}
.y6f{bottom:307.520000pt;}
.y123{bottom:314.880000pt;}
.y30{bottom:319.360000pt;}
.y141{bottom:322.880000pt;}
.ya0{bottom:325.760000pt;}
.y122{bottom:330.240000pt;}
.y6e{bottom:330.880000pt;}
.y2f{bottom:334.720000pt;}
.y140{bottom:338.240000pt;}
.yd2{bottom:341.440000pt;}
.y9f{bottom:342.080000pt;}
.y121{bottom:345.600000pt;}
.y6d{bottom:346.240000pt;}
.y2e{bottom:350.080000pt;}
.y113{bottom:353.600000pt;}
.y165{bottom:354.880000pt;}
.yd1{bottom:356.800000pt;}
.y9e{bottom:358.080000pt;}
.y120{bottom:360.960000pt;}
.y6c{bottom:361.600000pt;}
.y2d{bottom:365.440000pt;}
.y112{bottom:368.960000pt;}
.ycb{bottom:369.333333pt;}
.y164{bottom:370.240000pt;}
.y6b{bottom:376.960000pt;}
.y2c{bottom:380.800000pt;}
.y9d{bottom:382.400000pt;}
.y11f{bottom:384.000000pt;}
.y111{bottom:384.320000pt;}
.yd0{bottom:385.333333pt;}
.y163{bottom:385.600000pt;}
.y6a{bottom:392.000000pt;}
.y2b{bottom:396.160000pt;}
.y110{bottom:396.800000pt;}
.y13f{bottom:400.000000pt;}
.y162{bottom:400.960000pt;}
.ycf{bottom:401.333333pt;}
.y9c{bottom:405.760000pt;}
.y69{bottom:407.360000pt;}
.y2a{bottom:411.520000pt;}
.y13e{bottom:415.360000pt;}
.y161{bottom:416.000000pt;}
.yce{bottom:417.333333pt;}
.y9b{bottom:421.120000pt;}
.y68{bottom:422.720000pt;}
.y29{bottom:426.880000pt;}
.y13d{bottom:430.720000pt;}
.y160{bottom:431.360000pt;}
.ycd{bottom:433.333333pt;}
.y9a{bottom:436.480000pt;}
.y67{bottom:438.080000pt;}
.y28{bottom:442.240000pt;}
.y13c{bottom:446.080000pt;}
.y15f{bottom:446.720000pt;}
.yc7{bottom:449.333333pt;}
.y66{bottom:453.440000pt;}
.y27{bottom:457.600000pt;}
.y99{bottom:459.840000pt;}
.y13b{bottom:461.440000pt;}
.y15e{bottom:462.080000pt;}
.yca{bottom:465.333333pt;}
.y65{bottom:468.800000pt;}
.y26{bottom:472.640000pt;}
.y98{bottom:476.160000pt;}
.y13a{bottom:476.800000pt;}
.y15d{bottom:477.440000pt;}
.yc9{bottom:481.333333pt;}
.y64{bottom:484.160000pt;}
.y25{bottom:488.000000pt;}
.y139{bottom:492.160000pt;}
.y97{bottom:492.480000pt;}
.y15c{bottom:492.800000pt;}
.yc5{bottom:497.333333pt;}
.y63{bottom:499.520000pt;}
.y24{bottom:503.360000pt;}
.y138{bottom:507.520000pt;}
.y15b{bottom:508.160000pt;}
.y96{bottom:508.800000pt;}
.y62{bottom:514.880000pt;}
.yc4{bottom:516.800000pt;}
.y23{bottom:518.720000pt;}
.y137{bottom:522.880000pt;}
.y15a{bottom:523.520000pt;}
.y95{bottom:525.120000pt;}
.y11e{bottom:530.240000pt;}
.yc3{bottom:532.160000pt;}
.y22{bottom:534.080000pt;}
.y61{bottom:538.240000pt;}
.y159{bottom:538.880000pt;}
.y94{bottom:541.120000pt;}
.ybe{bottom:544.000000pt;}
.y11d{bottom:545.600000pt;}
.y21{bottom:549.440000pt;}
.y60{bottom:553.600000pt;}
.y158{bottom:554.240000pt;}
.y93{bottom:557.440000pt;}
.yc2{bottom:560.000000pt;}
.y11c{bottom:560.960000pt;}
.y20{bottom:564.800000pt;}
.y5f{bottom:568.960000pt;}
.y157{bottom:569.600000pt;}
.y92{bottom:573.760000pt;}
.yc1{bottom:576.000000pt;}
.y1f{bottom:580.160000pt;}
.y5e{bottom:584.000000pt;}
.y156{bottom:584.960000pt;}
.yc0{bottom:592.000000pt;}
.y1e{bottom:595.520000pt;}
.y91{bottom:598.080000pt;}
.y5d{bottom:599.360000pt;}
.y155{bottom:600.000000pt;}
.yb7{bottom:608.000000pt;}
.y1d{bottom:610.880000pt;}
.y5c{bottom:614.720000pt;}
.y154{bottom:615.360000pt;}
.y90{bottom:621.440000pt;}
.ybd{bottom:624.000000pt;}
.y1c{bottom:626.240000pt;}
.y5b{bottom:630.080000pt;}
.y153{bottom:630.720000pt;}
.y8f{bottom:636.800000pt;}
.y10f{bottom:637.440000pt;}
.y136{bottom:638.080000pt;}
.ybc{bottom:640.000000pt;}
.y1b{bottom:641.280000pt;}
.y5a{bottom:645.440000pt;}
.y152{bottom:646.080000pt;}
.y109{bottom:649.333333pt;}
.y8e{bottom:652.160000pt;}
.y135{bottom:653.440000pt;}
.ybb{bottom:656.000000pt;}
.y1a{bottom:656.640000pt;}
.y59{bottom:660.800000pt;}
.y151{bottom:661.440000pt;}
.y8d{bottom:667.520000pt;}
.y134{bottom:668.800000pt;}
.y19{bottom:672.000000pt;}
.y58{bottom:676.160000pt;}
.y150{bottom:676.800000pt;}
.y10b{bottom:681.333333pt;}
.y8c{bottom:682.880000pt;}
.y133{bottom:684.160000pt;}
.y18{bottom:687.360000pt;}
.yba{bottom:688.000000pt;}
.y57{bottom:691.520000pt;}
.y14f{bottom:692.160000pt;}
.y8b{bottom:698.240000pt;}
.y132{bottom:699.520000pt;}
.y17{bottom:702.720000pt;}
.yb9{bottom:704.000000pt;}
.y56{bottom:706.880000pt;}
.y14e{bottom:707.520000pt;}
.y103{bottom:712.000000pt;}
.y8a{bottom:713.600000pt;}
.y131{bottom:714.880000pt;}
.y16{bottom:718.080000pt;}
.yb3{bottom:720.000000pt;}
.y11b{bottom:722.240000pt;}
.y14d{bottom:722.880000pt;}
.y89{bottom:728.640000pt;}
.y55{bottom:730.240000pt;}
.y15{bottom:735.360000pt;}
.yb6{bottom:736.000000pt;}
.y11a{bottom:737.600000pt;}
.y14c{bottom:738.240000pt;}
.y88{bottom:744.000000pt;}
.y54{bottom:745.600000pt;}
.y14{bottom:750.720000pt;}
.yb5{bottom:752.000000pt;}
.y119{bottom:752.640000pt;}
.y14b{bottom:753.600000pt;}
.y87{bottom:759.360000pt;}
.y53{bottom:760.640000pt;}
.y13{bottom:766.080000pt;}
.yad{bottom:768.000000pt;}
.y14a{bottom:768.640000pt;}
.y100{bottom:774.666667pt;}
.y86{bottom:774.720000pt;}
.y52{bottom:776.000000pt;}
.y12{bottom:783.360000pt;}
.yb2{bottom:784.000000pt;}
.y85{bottom:790.080000pt;}
.y51{bottom:791.360000pt;}
.y118{bottom:798.720000pt;}
.y149{bottom:799.360000pt;}
.yb1{bottom:800.000000pt;}
.y11{bottom:803.520000pt;}
.y50{bottom:806.720000pt;}
.yff{bottom:810.240000pt;}
.y84{bottom:813.440000pt;}
.y10{bottom:814.080000pt;}
.y148{bottom:814.720000pt;}
.yb0{bottom:816.000000pt;}
.y4f{bottom:822.080000pt;}
.yfe{bottom:825.600000pt;}
.y147{bottom:830.080000pt;}
.yaf{bottom:832.000000pt;}
.yf{bottom:834.240000pt;}
.y83{bottom:836.800000pt;}
.yf7{bottom:837.333333pt;}
.y4e{bottom:837.440000pt;}
.ye{bottom:844.800000pt;}
.y146{bottom:845.440000pt;}
.yab{bottom:848.000000pt;}
.y82{bottom:852.160000pt;}
.y4d{bottom:852.800000pt;}
.y145{bottom:860.800000pt;}
.yd{bottom:864.960000pt;}
.y4c{bottom:868.160000pt;}
.yfa{bottom:869.333333pt;}
.y81{bottom:875.520000pt;}
.y144{bottom:876.160000pt;}
.y4b{bottom:883.520000pt;}
.yc{bottom:884.160000pt;}
.y143{bottom:891.520000pt;}
.y4a{bottom:898.880000pt;}
.yf2{bottom:900.000000pt;}
.yb{bottom:900.480000pt;}
.y130{bottom:906.880000pt;}
.ya{bottom:912.320000pt;}
.y49{bottom:914.240000pt;}
.y80{bottom:922.240000pt;}
.y48{bottom:929.600000pt;}
.yf5{bottom:932.000000pt;}
.y9{bottom:933.760000pt;}
.y7f{bottom:937.600000pt;}
.y47{bottom:944.640000pt;}
.y7e{bottom:952.640000pt;}
.y8{bottom:955.200000pt;}
.y46{bottom:960.000000pt;}
.yee{bottom:962.666667pt;}
.y7d{bottom:968.000000pt;}
.y45{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.yf1{bottom:994.666667pt;}
.y44{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.y43{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y41{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hd{height:4.000000pt;}
.h14{height:16.000000pt;}
.hf{height:17.333333pt;}
.h8{height:21.328125pt;}
.ha{height:23.355000pt;}
.hc{height:29.328750pt;}
.h17{height:32.000000pt;}
.he{height:32.965000pt;}
.h5{height:36.435000pt;}
.hb{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h3{height:42.751250pt;}
.h15{height:48.000000pt;}
.h11{height:49.333333pt;}
.h9{height:50.305000pt;}
.h7{height:50.315000pt;}
.h18{height:62.666667pt;}
.h19{height:64.000000pt;}
.h13{height:65.333333pt;}
.h16{height:80.000000pt;}
.h10{height:81.333333pt;}
.h12{height:113.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w12{width:44.000000pt;}
.wd{width:45.333333pt;}
.wc{width:46.666667pt;}
.wb{width:49.333333pt;}
.w13{width:53.333333pt;}
.we{width:54.666667pt;}
.wf{width:56.000000pt;}
.w11{width:57.333333pt;}
.w14{width:65.333333pt;}
.w15{width:68.000000pt;}
.w5{width:81.333333pt;}
.w7{width:113.333333pt;}
.w9{width:121.333333pt;}
.w8{width:156.000000pt;}
.w3{width:157.333333pt;}
.w16{width:169.333333pt;}
.w4{width:216.000000pt;}
.w10{width:226.666667pt;}
.wa{width:276.000000pt;}
.w6{width:277.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:1.386709pt;}
.x1a{left:6.666667pt;}
.x25{left:7.840000pt;}
.x19{left:89.333333pt;}
.x5{left:96.000000pt;}
.x15{left:97.552096pt;}
.x9{left:99.275392pt;}
.x35{left:102.817056pt;}
.x17{left:105.401696pt;}
.x4{left:108.055680pt;}
.x23{left:110.040352pt;}
.xc{left:112.691392pt;}
.x10{left:114.911456pt;}
.x8{left:118.425120pt;}
.x38{left:120.000000pt;}
.x37{left:129.630208pt;}
.xe{left:132.323552pt;}
.xf{left:136.853504pt;}
.x11{left:138.533216pt;}
.x13{left:142.666667pt;}
.xa{left:146.930976pt;}
.xb{left:207.065760pt;}
.xd{left:217.055360pt;}
.x22{left:245.333333pt;}
.x1b{left:246.666667pt;}
.x33{left:258.666667pt;}
.x2{left:265.722336pt;}
.x2c{left:314.666667pt;}
.x2b{left:316.000000pt;}
.x18{left:332.403520pt;}
.x24{left:364.000000pt;}
.x1f{left:365.333333pt;}
.x2d{left:370.666667pt;}
.x3{left:396.866560pt;}
.x26{left:412.000000pt;}
.x2e{left:414.666667pt;}
.x12{left:420.480000pt;}
.x16{left:444.480000pt;}
.x1{left:456.943680pt;}
.x1c{left:461.333333pt;}
.x2f{left:466.666667pt;}
.x20{left:478.666667pt;}
.x27{left:502.666667pt;}
.x30{left:530.666667pt;}
.x7{left:536.450240pt;}
.x1d{left:542.666667pt;}
.x28{left:557.333333pt;}
.x36{left:561.826560pt;}
.x34{left:583.906560pt;}
.x21{left:592.000000pt;}
.x31{left:597.333333pt;}
.x29{left:613.333333pt;}
.x1e{left:624.000000pt;}
.x32{left:650.666667pt;}
.x2a{left:658.666667pt;}
.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; }
  