
    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_c308117bef195ea38c0f28b9.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_1e8aa7ab35d31feef9bfeee2.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_7f43e7cbb31a15762a215158.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_608112985566bcedaefb6a59.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_248e17104798b1e08b6c4f54.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9d931bcd510b5c0f572847e8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_58f5a0a308e82d0386878044.woff')format("woff");}.ffb{font-family:ffb;line-height:0.689941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_21ba63b4a0c869caea7470d7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a01d2f6db25ee1033442b72b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ebeda0bf8ac3815260c0d361.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2b3a62ba712e2a975b4c0048.woff')format("woff");}.fff{font-family:fff;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f78a149eea6a145d10c8ff2e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_21045bf4cbedfb1f542589de.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.lse{letter-spacing:-0.459648px;}
.ls29{letter-spacing:-0.417312px;}
.ls18{letter-spacing:-0.381024px;}
.ls28{letter-spacing:-0.361152px;}
.ls1a{letter-spacing:-0.338688px;}
.ls16{letter-spacing:-0.320544px;}
.ls17{letter-spacing:-0.302400px;}
.ls27{letter-spacing:-0.273600px;}
.ls2b{letter-spacing:-0.272160px;}
.ls15{letter-spacing:-0.260064px;}
.ls19{letter-spacing:-0.241920px;}
.lsf{letter-spacing:-0.223776px;}
.ls13{letter-spacing:-0.198720px;}
.ls11{letter-spacing:-0.175392px;}
.lsd{letter-spacing:-0.158976px;}
.ls1c{letter-spacing:-0.157248px;}
.lsc{letter-spacing:-0.152352px;}
.lsb{letter-spacing:-0.145728px;}
.ls1b{letter-spacing:-0.145152px;}
.ls12{letter-spacing:-0.132480px;}
.ls10{letter-spacing:-0.120960px;}
.lsa{letter-spacing:-0.119232px;}
.ls9{letter-spacing:-0.079488px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.059904px;}
.ls4{letter-spacing:0.060048px;}
.ls1e{letter-spacing:0.123552px;}
.ls1f{letter-spacing:0.161568px;}
.ls6{letter-spacing:0.194832px;}
.ls0{letter-spacing:0.233856px;}
.ls3{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.239904px;}
.ls2{letter-spacing:0.240480px;}
.ls20{letter-spacing:0.242352px;}
.ls1d{letter-spacing:0.285120px;}
.ls14{letter-spacing:0.317376px;}
.ls31{letter-spacing:4.897440px;}
.ls25{letter-spacing:11.210400px;}
.ls24{letter-spacing:15.999840px;}
.ls32{letter-spacing:16.185600px;}
.ls21{letter-spacing:17.702784px;}
.ls2d{letter-spacing:19.481760px;}
.ls2c{letter-spacing:19.827360px;}
.ls2e{letter-spacing:29.822976px;}
.ls2f{letter-spacing:31.501584px;}
.ls7{letter-spacing:31.750560px;}
.ls23{letter-spacing:33.121440px;}
.ls30{letter-spacing:46.186560px;}
.ls26{letter-spacing:63.587520px;}
.ls2a{letter-spacing:63.588960px;}
.ls22{letter-spacing:69.148800px;}
.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;}
.wsc{word-spacing:-14.974848px;}
.ws10{word-spacing:-14.962752px;}
.ws12{word-spacing:-14.944608px;}
.ws14{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.wsb{word-spacing:-14.859936px;}
.ws13{word-spacing:-14.847840px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.wsa{word-spacing:-14.799456px;}
.ws9{word-spacing:-14.781312px;}
.ws6{word-spacing:-14.738976px;}
.ws4{word-spacing:-14.660352px;}
.wse{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.318848px;}
.ws11{word-spacing:-0.060480px;}
.wsd{word-spacing:0.000000px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._2{width:2.484576px;}
._3{width:3.689280px;}
._8{width:5.099184px;}
._9{width:6.652800px;}
._7{width:7.741440px;}
._6{width:9.011520px;}
._e{width:11.002320px;}
._5{width:12.216528px;}
._4{width:13.408416px;}
._25{width:16.171632px;}
._15{width:17.236800px;}
._18{width:18.869760px;}
._16{width:20.442240px;}
._19{width:21.591360px;}
._1b{width:23.163840px;}
._1a{width:24.433920px;}
._b{width:25.764480px;}
._a{width:26.853120px;}
._c{width:28.183680px;}
._17{width:29.370240px;}
._14{width:31.230720px;}
._13{width:32.719680px;}
._22{width:34.120224px;}
._27{width:35.280000px;}
._d{width:36.529920px;}
._28{width:38.046672px;}
._2d{width:39.432960px;}
._1f{width:40.642560px;}
._2a{width:41.675472px;}
._23{width:43.485120px;}
._2e{width:44.638992px;}
._10{width:48.527280px;}
._f{width:49.593600px;}
._29{width:51.287040px;}
._26{width:54.033552px;}
._20{width:55.097280px;}
._12{width:58.242240px;}
._21{width:60.298560px;}
._2b{width:61.810560px;}
._2c{width:63.685440px;}
._1d{width:65.257920px;}
._2f{width:68.281920px;}
._24{width:69.552000px;}
._32{width:77.232960px;}
._1c{width:83.643840px;}
._11{width:99.912960px;}
._30{width:108.561600px;}
._1e{width:109.892160px;}
._31{width:121.443840px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y40{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:1.740000px;}
.yfd{bottom:3.840000px;}
.yed{bottom:3.960000px;}
.yda{bottom:4.020000px;}
.yf6{bottom:4.680000px;}
.ye2{bottom:4.740000px;}
.ydd{bottom:40.020000px;}
.y42{bottom:53.640000px;}
.y6{bottom:58.320000px;}
.y3e{bottom:64.500000px;}
.y5{bottom:86.400000px;}
.ye5{bottom:94.740000px;}
.y3d{bottom:118.800000px;}
.y7c{bottom:121.680000px;}
.yfb{bottom:126.000000px;}
.y11b{bottom:129.960000px;}
.y3c{bottom:136.080000px;}
.y7b{bottom:138.960000px;}
.ya7{bottom:140.040000px;}
.yfa{bottom:144.000000px;}
.y11a{bottom:147.240000px;}
.y3b{bottom:153.360000px;}
.y126{bottom:156.240000px;}
.ya6{bottom:158.400000px;}
.yf9{bottom:162.000000px;}
.y119{bottom:164.520000px;}
.y7a{bottom:165.240000px;}
.y3a{bottom:170.640000px;}
.y125{bottom:173.520000px;}
.ya5{bottom:176.400000px;}
.yf8{bottom:180.000000px;}
.y79{bottom:182.520000px;}
.y39{bottom:187.920000px;}
.y118{bottom:190.800000px;}
.ya4{bottom:194.760000px;}
.yf7{bottom:198.000000px;}
.y78{bottom:199.800000px;}
.y38{bottom:205.200000px;}
.y124{bottom:208.080000px;}
.ya3{bottom:213.120000px;}
.yf5{bottom:216.000000px;}
.y77{bottom:217.080000px;}
.y37{bottom:222.480000px;}
.y123{bottom:225.360000px;}
.ya2{bottom:231.480000px;}
.y76{bottom:234.360000px;}
.yf4{bottom:238.680000px;}
.y36{bottom:239.760000px;}
.y122{bottom:242.280000px;}
.ya1{bottom:249.840000px;}
.y75{bottom:251.280000px;}
.y161{bottom:252.360000px;}
.yf3{bottom:255.960000px;}
.y35{bottom:257.040000px;}
.y121{bottom:259.560000px;}
.ya0{bottom:268.200000px;}
.y74{bottom:268.560000px;}
.y160{bottom:269.280000px;}
.yf2{bottom:270.000000px;}
.y34{bottom:274.320000px;}
.y120{bottom:276.840000px;}
.y145{bottom:277.560000px;}
.y9f{bottom:285.480000px;}
.y73{bottom:285.840000px;}
.y15f{bottom:286.560000px;}
.yf1{bottom:288.000000px;}
.y33{bottom:291.600000px;}
.y11f{bottom:294.120000px;}
.y144{bottom:294.840000px;}
.y72{bottom:303.120000px;}
.y9e{bottom:303.840000px;}
.yf0{bottom:306.000000px;}
.y32{bottom:308.520000px;}
.y11e{bottom:311.400000px;}
.y143{bottom:312.120000px;}
.y71{bottom:320.400000px;}
.y9d{bottom:321.120000px;}
.yef{bottom:324.000000px;}
.y10a{bottom:325.800000px;}
.y11d{bottom:328.680000px;}
.y142{bottom:329.400000px;}
.y31{bottom:334.800000px;}
.y70{bottom:337.680000px;}
.y15e{bottom:338.400000px;}
.y9c{bottom:339.480000px;}
.yee{bottom:342.000000px;}
.y109{bottom:343.080000px;}
.y11c{bottom:345.960000px;}
.y141{bottom:346.680000px;}
.y6f{bottom:354.960000px;}
.y15d{bottom:355.680000px;}
.y9b{bottom:357.840000px;}
.yec{bottom:360.000000px;}
.y108{bottom:360.360000px;}
.y30{bottom:362.520000px;}
.y140{bottom:363.960000px;}
.y6e{bottom:372.240000px;}
.y15c{bottom:372.960000px;}
.y107{bottom:374.400000px;}
.y9a{bottom:374.760000px;}
.y2f{bottom:376.560000px;}
.y13f{bottom:381.240000px;}
.yeb{bottom:381.960000px;}
.y6d{bottom:389.520000px;}
.y15b{bottom:390.240000px;}
.y2e{bottom:390.600000px;}
.y99{bottom:393.120000px;}
.y13e{bottom:398.520000px;}
.yea{bottom:399.240000px;}
.y2d{bottom:404.280000px;}
.y6c{bottom:406.800000px;}
.y15a{bottom:407.520000px;}
.y98{bottom:411.480000px;}
.ye4{bottom:412.500000px;}
.y13d{bottom:415.800000px;}
.y2c{bottom:419.400000px;}
.y6b{bottom:424.080000px;}
.y159{bottom:424.800000px;}
.y97{bottom:429.840000px;}
.ye9{bottom:430.500000px;}
.y13c{bottom:433.080000px;}
.y2b{bottom:436.680000px;}
.y6a{bottom:441.000000px;}
.y158{bottom:442.080000px;}
.ye8{bottom:448.500000px;}
.y13b{bottom:450.000000px;}
.y2a{bottom:453.960000px;}
.y96{bottom:457.200000px;}
.y69{bottom:458.280000px;}
.y157{bottom:459.000000px;}
.ye7{bottom:466.500000px;}
.y13a{bottom:467.280000px;}
.y29{bottom:471.240000px;}
.y68{bottom:475.560000px;}
.y156{bottom:476.280000px;}
.y95{bottom:483.480000px;}
.ye6{bottom:484.500000px;}
.y139{bottom:484.560000px;}
.y28{bottom:488.520000px;}
.y67{bottom:492.840000px;}
.y155{bottom:493.560000px;}
.y117{bottom:501.840000px;}
.ye3{bottom:502.500000px;}
.y27{bottom:505.800000px;}
.y94{bottom:509.760000px;}
.y66{bottom:510.120000px;}
.y154{bottom:510.840000px;}
.y116{bottom:519.120000px;}
.ye1{bottom:520.500000px;}
.y26{bottom:522.720000px;}
.y93{bottom:527.040000px;}
.y65{bottom:527.400000px;}
.y153{bottom:528.120000px;}
.y115{bottom:536.400000px;}
.y25{bottom:540.000000px;}
.ye0{bottom:543.240000px;}
.y64{bottom:544.680000px;}
.y92{bottom:545.400000px;}
.y114{bottom:553.680000px;}
.y24{bottom:557.280000px;}
.ydf{bottom:560.520000px;}
.y63{bottom:561.960000px;}
.y91{bottom:562.680000px;}
.y113{bottom:570.960000px;}
.ydc{bottom:574.500000px;}
.y23{bottom:574.560000px;}
.y152{bottom:579.960000px;}
.y90{bottom:580.680000px;}
.y62{bottom:588.240000px;}
.y22{bottom:591.840000px;}
.yde{bottom:592.500000px;}
.y151{bottom:597.240000px;}
.y61{bottom:605.520000px;}
.y8f{bottom:608.040000px;}
.y21{bottom:609.120000px;}
.ydb{bottom:610.500000px;}
.y150{bottom:614.520000px;}
.y60{bottom:622.800000px;}
.y20{bottom:626.400000px;}
.yd9{bottom:628.500000px;}
.y14f{bottom:631.800000px;}
.y8e{bottom:634.320000px;}
.y5f{bottom:640.080000px;}
.y1f{bottom:643.680000px;}
.y14e{bottom:649.080000px;}
.yd8{bottom:650.520000px;}
.y8d{bottom:651.600000px;}
.y5e{bottom:657.000000px;}
.y1e{bottom:660.960000px;}
.y14d{bottom:666.000000px;}
.yd7{bottom:667.800000px;}
.y8c{bottom:669.960000px;}
.y5d{bottom:674.280000px;}
.y1d{bottom:678.240000px;}
.y106{bottom:679.320000px;}
.y138{bottom:683.280000px;}
.yc0{bottom:684.720000px;}
.y8b{bottom:687.240000px;}
.y5c{bottom:691.560000px;}
.yd6{bottom:694.440000px;}
.y1c{bottom:695.520000px;}
.y105{bottom:696.600000px;}
.y14c{bottom:700.560000px;}
.ybf{bottom:703.080000px;}
.y8a{bottom:705.600000px;}
.y5b{bottom:708.840000px;}
.y137{bottom:709.560000px;}
.y104{bottom:710.640000px;}
.y1b{bottom:712.440000px;}
.y14b{bottom:717.840000px;}
.yd5{bottom:720.720000px;}
.ybe{bottom:721.440000px;}
.y89{bottom:722.880000px;}
.y5a{bottom:726.120000px;}
.y136{bottom:726.840000px;}
.y1a{bottom:729.720000px;}
.y14a{bottom:735.120000px;}
.yd4{bottom:738.000000px;}
.ybd{bottom:739.800000px;}
.y59{bottom:743.400000px;}
.y135{bottom:744.120000px;}
.y19{bottom:747.000000px;}
.y88{bottom:750.240000px;}
.y149{bottom:752.400000px;}
.yd3{bottom:755.280000px;}
.ybc{bottom:758.160000px;}
.y58{bottom:760.680000px;}
.y134{bottom:761.400000px;}
.y18{bottom:764.280000px;}
.y87{bottom:767.520000px;}
.y148{bottom:769.680000px;}
.yd2{bottom:772.560000px;}
.ybb{bottom:776.520000px;}
.y57{bottom:777.960000px;}
.y133{bottom:778.680000px;}
.y17{bottom:781.560000px;}
.y147{bottom:786.960000px;}
.y86{bottom:793.800000px;}
.yba{bottom:794.880000px;}
.y112{bottom:795.240000px;}
.y132{bottom:795.960000px;}
.y16{bottom:798.840000px;}
.y56{bottom:804.240000px;}
.y111{bottom:812.520000px;}
.yb9{bottom:813.240000px;}
.yd1{bottom:816.120000px;}
.y15{bottom:818.280000px;}
.y85{bottom:819.720000px;}
.y55{bottom:821.520000px;}
.y110{bottom:829.800000px;}
.yb8{bottom:830.520000px;}
.yd0{bottom:833.400000px;}
.y14{bottom:835.560000px;}
.y84{bottom:837.000000px;}
.y54{bottom:838.800000px;}
.y10f{bottom:846.720000px;}
.y131{bottom:847.800000px;}
.yb7{bottom:848.880000px;}
.ycf{bottom:850.680000px;}
.y13{bottom:852.840000px;}
.y83{bottom:854.280000px;}
.y53{bottom:855.720000px;}
.y130{bottom:864.720000px;}
.yb6{bottom:867.240000px;}
.yce{bottom:867.600000px;}
.y12{bottom:872.280000px;}
.y52{bottom:873.000000px;}
.y82{bottom:880.560000px;}
.y12f{bottom:882.000000px;}
.ycd{bottom:884.880000px;}
.yb5{bottom:885.240000px;}
.y51{bottom:890.280000px;}
.y11{bottom:894.960000px;}
.y81{bottom:897.840000px;}
.y12e{bottom:899.280000px;}
.ycc{bottom:902.160000px;}
.yb4{bottom:903.600000px;}
.y10{bottom:906.840000px;}
.y50{bottom:907.560000px;}
.y12d{bottom:916.560000px;}
.ycb{bottom:919.440000px;}
.yb3{bottom:921.960000px;}
.y80{bottom:924.120000px;}
.y4f{bottom:924.840000px;}
.yf{bottom:929.520000px;}
.y12c{bottom:933.840000px;}
.yca{bottom:936.720000px;}
.yb2{bottom:940.320000px;}
.ye{bottom:941.400000px;}
.y4e{bottom:942.120000px;}
.y12b{bottom:951.120000px;}
.yc9{bottom:954.000000px;}
.y7f{bottom:958.680000px;}
.y4d{bottom:959.400000px;}
.yd{bottom:964.080000px;}
.y12a{bottom:968.400000px;}
.yc8{bottom:971.280000px;}
.yc{bottom:975.960000px;}
.y4c{bottom:976.680000px;}
.yb1{bottom:977.040000px;}
.y7e{bottom:984.960000px;}
.y129{bottom:985.680000px;}
.yc7{bottom:988.560000px;}
.y4b{bottom:993.960000px;}
.yb0{bottom:995.400000px;}
.yb{bottom:998.640000px;}
.y7d{bottom:1002.240000px;}
.y128{bottom:1002.960000px;}
.yc6{bottom:1005.840000px;}
.y4a{bottom:1011.240000px;}
.yaf{bottom:1013.760000px;}
.y103{bottom:1014.840000px;}
.ya{bottom:1020.240000px;}
.yc5{bottom:1023.120000px;}
.y49{bottom:1028.520000px;}
.y102{bottom:1029.000000px;}
.yae{bottom:1031.040000px;}
.y127{bottom:1037.520000px;}
.y10e{bottom:1045.800000px;}
.y101{bottom:1047.000000px;}
.yad{bottom:1049.400000px;}
.y9{bottom:1050.480000px;}
.y48{bottom:1054.800000px;}
.y10d{bottom:1062.720000px;}
.y100{bottom:1065.000000px;}
.yc4{bottom:1066.320000px;}
.yac{bottom:1067.400000px;}
.y47{bottom:1071.720000px;}
.y8{bottom:1074.600000px;}
.y10c{bottom:1080.000000px;}
.yff{bottom:1083.000000px;}
.yc3{bottom:1084.680000px;}
.yab{bottom:1085.760000px;}
.y46{bottom:1089.000000px;}
.y10b{bottom:1097.280000px;}
.yfe{bottom:1101.000000px;}
.yc2{bottom:1103.040000px;}
.yaa{bottom:1104.120000px;}
.y45{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y146{bottom:1114.560000px;}
.yfc{bottom:1119.000000px;}
.yc1{bottom:1121.400000px;}
.ya9{bottom:1122.480000px;}
.y44{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.ya8{bottom:1139.760000px;}
.y43{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y41{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hc{height:4.500000px;}
.he{height:18.000000px;}
.h10{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.hd{height:37.085625px;}
.h5{height:40.989375px;}
.ha{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h3{height:48.095156px;}
.hf{height:54.000000px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h11{height:109.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w12{width:75.000000px;}
.wc{width:78.000000px;}
.wf{width:79.500000px;}
.wb{width:82.500000px;}
.we{width:84.000000px;}
.w7{width:91.500000px;}
.w6{width:96.000000px;}
.w3{width:121.500000px;}
.wa{width:124.500000px;}
.w11{width:129.000000px;}
.w9{width:135.000000px;}
.wd{width:139.500000px;}
.w5{width:148.500000px;}
.w14{width:153.000000px;}
.w15{width:189.000000px;}
.w4{width:238.500000px;}
.w13{width:271.500000px;}
.w10{width:273.000000px;}
.w8{width:274.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:1.560048px;}
.x1a{left:7.500000px;}
.x1d{left:8.640000px;}
.x19{left:100.500000px;}
.x5{left:108.000000px;}
.x16{left:109.746108px;}
.xb{left:112.235580px;}
.x4{left:113.312628px;}
.x11{left:119.497572px;}
.xd{left:125.338608px;}
.x8{left:126.819576px;}
.x9{left:128.895984px;}
.xa{left:134.165772px;}
.xf{left:138.057120px;}
.x14{left:160.500000px;}
.x12{left:210.858408px;}
.x18{left:213.048360px;}
.x1b{left:222.000000px;}
.x2e{left:239.411880px;}
.x25{left:242.319564px;}
.xc{left:254.594988px;}
.x20{left:289.179936px;}
.x29{left:292.527108px;}
.x2{left:298.937628px;}
.x10{left:308.962656px;}
.xe{left:339.801228px;}
.x2b{left:372.000000px;}
.x21{left:373.500000px;}
.x3{left:446.474880px;}
.x1c{left:459.000000px;}
.x13{left:473.040000px;}
.x17{left:500.040000px;}
.x22{left:508.500000px;}
.x26{left:511.500000px;}
.x1{left:514.061640px;}
.x2c{left:525.000000px;}
.x7{left:603.506520px;}
.x1e{left:607.500000px;}
.x27{left:631.500000px;}
.x23{left:633.000000px;}
.x2a{left:639.000000px;}
.x2d{left:671.654880px;}
.x1f{left:702.000000px;}
.x28{left:714.000000px;}
.x24{left:715.500000px;}
.x6{left:751.498920px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.lse{letter-spacing:-0.408576pt;}
.ls29{letter-spacing:-0.370944pt;}
.ls18{letter-spacing:-0.338688pt;}
.ls28{letter-spacing:-0.321024pt;}
.ls1a{letter-spacing:-0.301056pt;}
.ls16{letter-spacing:-0.284928pt;}
.ls17{letter-spacing:-0.268800pt;}
.ls27{letter-spacing:-0.243200pt;}
.ls2b{letter-spacing:-0.241920pt;}
.ls15{letter-spacing:-0.231168pt;}
.ls19{letter-spacing:-0.215040pt;}
.lsf{letter-spacing:-0.198912pt;}
.ls13{letter-spacing:-0.176640pt;}
.ls11{letter-spacing:-0.155904pt;}
.lsd{letter-spacing:-0.141312pt;}
.ls1c{letter-spacing:-0.139776pt;}
.lsc{letter-spacing:-0.135424pt;}
.lsb{letter-spacing:-0.129536pt;}
.ls1b{letter-spacing:-0.129024pt;}
.ls12{letter-spacing:-0.117760pt;}
.ls10{letter-spacing:-0.107520pt;}
.lsa{letter-spacing:-0.105984pt;}
.ls9{letter-spacing:-0.070656pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.053248pt;}
.ls4{letter-spacing:0.053376pt;}
.ls1e{letter-spacing:0.109824pt;}
.ls1f{letter-spacing:0.143616pt;}
.ls6{letter-spacing:0.173184pt;}
.ls0{letter-spacing:0.207872pt;}
.ls3{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.213248pt;}
.ls2{letter-spacing:0.213760pt;}
.ls20{letter-spacing:0.215424pt;}
.ls1d{letter-spacing:0.253440pt;}
.ls14{letter-spacing:0.282112pt;}
.ls31{letter-spacing:4.353280pt;}
.ls25{letter-spacing:9.964800pt;}
.ls24{letter-spacing:14.222080pt;}
.ls32{letter-spacing:14.387200pt;}
.ls21{letter-spacing:15.735808pt;}
.ls2d{letter-spacing:17.317120pt;}
.ls2c{letter-spacing:17.624320pt;}
.ls2e{letter-spacing:26.509312pt;}
.ls2f{letter-spacing:28.001408pt;}
.ls7{letter-spacing:28.222720pt;}
.ls23{letter-spacing:29.441280pt;}
.ls30{letter-spacing:41.054720pt;}
.ls26{letter-spacing:56.522240pt;}
.ls2a{letter-spacing:56.523520pt;}
.ls22{letter-spacing:61.465600pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws7{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.310976pt;}
.ws10{word-spacing:-13.300224pt;}
.ws12{word-spacing:-13.284096pt;}
.ws14{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.wsb{word-spacing:-13.208832pt;}
.ws13{word-spacing:-13.198080pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.wsa{word-spacing:-13.155072pt;}
.ws9{word-spacing:-13.138944pt;}
.ws6{word-spacing:-13.101312pt;}
.ws4{word-spacing:-13.031424pt;}
.wse{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.838976pt;}
.ws11{word-spacing:-0.053760pt;}
.wsd{word-spacing:0.000000pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._2{width:2.208512pt;}
._3{width:3.279360pt;}
._8{width:4.532608pt;}
._9{width:5.913600pt;}
._7{width:6.881280pt;}
._6{width:8.010240pt;}
._e{width:9.779840pt;}
._5{width:10.859136pt;}
._4{width:11.918592pt;}
._25{width:14.374784pt;}
._15{width:15.321600pt;}
._18{width:16.773120pt;}
._16{width:18.170880pt;}
._19{width:19.192320pt;}
._1b{width:20.590080pt;}
._1a{width:21.719040pt;}
._b{width:22.901760pt;}
._a{width:23.869440pt;}
._c{width:25.052160pt;}
._17{width:26.106880pt;}
._14{width:27.760640pt;}
._13{width:29.084160pt;}
._22{width:30.329088pt;}
._27{width:31.360000pt;}
._d{width:32.471040pt;}
._28{width:33.819264pt;}
._2d{width:35.051520pt;}
._1f{width:36.126720pt;}
._2a{width:37.044864pt;}
._23{width:38.653440pt;}
._2e{width:39.679104pt;}
._10{width:43.135360pt;}
._f{width:44.083200pt;}
._29{width:45.588480pt;}
._26{width:48.029824pt;}
._20{width:48.975360pt;}
._12{width:51.770880pt;}
._21{width:53.598720pt;}
._2b{width:54.942720pt;}
._2c{width:56.609280pt;}
._1d{width:58.007040pt;}
._2f{width:60.695040pt;}
._24{width:61.824000pt;}
._32{width:68.651520pt;}
._1c{width:74.350080pt;}
._11{width:88.811520pt;}
._30{width:96.499200pt;}
._1e{width:97.681920pt;}
._31{width:107.950080pt;}
.fs1{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y40{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:1.546667pt;}
.yfd{bottom:3.413333pt;}
.yed{bottom:3.520000pt;}
.yda{bottom:3.573333pt;}
.yf6{bottom:4.160000pt;}
.ye2{bottom:4.213333pt;}
.ydd{bottom:35.573333pt;}
.y42{bottom:47.680000pt;}
.y6{bottom:51.840000pt;}
.y3e{bottom:57.333333pt;}
.y5{bottom:76.800000pt;}
.ye5{bottom:84.213333pt;}
.y3d{bottom:105.600000pt;}
.y7c{bottom:108.160000pt;}
.yfb{bottom:112.000000pt;}
.y11b{bottom:115.520000pt;}
.y3c{bottom:120.960000pt;}
.y7b{bottom:123.520000pt;}
.ya7{bottom:124.480000pt;}
.yfa{bottom:128.000000pt;}
.y11a{bottom:130.880000pt;}
.y3b{bottom:136.320000pt;}
.y126{bottom:138.880000pt;}
.ya6{bottom:140.800000pt;}
.yf9{bottom:144.000000pt;}
.y119{bottom:146.240000pt;}
.y7a{bottom:146.880000pt;}
.y3a{bottom:151.680000pt;}
.y125{bottom:154.240000pt;}
.ya5{bottom:156.800000pt;}
.yf8{bottom:160.000000pt;}
.y79{bottom:162.240000pt;}
.y39{bottom:167.040000pt;}
.y118{bottom:169.600000pt;}
.ya4{bottom:173.120000pt;}
.yf7{bottom:176.000000pt;}
.y78{bottom:177.600000pt;}
.y38{bottom:182.400000pt;}
.y124{bottom:184.960000pt;}
.ya3{bottom:189.440000pt;}
.yf5{bottom:192.000000pt;}
.y77{bottom:192.960000pt;}
.y37{bottom:197.760000pt;}
.y123{bottom:200.320000pt;}
.ya2{bottom:205.760000pt;}
.y76{bottom:208.320000pt;}
.yf4{bottom:212.160000pt;}
.y36{bottom:213.120000pt;}
.y122{bottom:215.360000pt;}
.ya1{bottom:222.080000pt;}
.y75{bottom:223.360000pt;}
.y161{bottom:224.320000pt;}
.yf3{bottom:227.520000pt;}
.y35{bottom:228.480000pt;}
.y121{bottom:230.720000pt;}
.ya0{bottom:238.400000pt;}
.y74{bottom:238.720000pt;}
.y160{bottom:239.360000pt;}
.yf2{bottom:240.000000pt;}
.y34{bottom:243.840000pt;}
.y120{bottom:246.080000pt;}
.y145{bottom:246.720000pt;}
.y9f{bottom:253.760000pt;}
.y73{bottom:254.080000pt;}
.y15f{bottom:254.720000pt;}
.yf1{bottom:256.000000pt;}
.y33{bottom:259.200000pt;}
.y11f{bottom:261.440000pt;}
.y144{bottom:262.080000pt;}
.y72{bottom:269.440000pt;}
.y9e{bottom:270.080000pt;}
.yf0{bottom:272.000000pt;}
.y32{bottom:274.240000pt;}
.y11e{bottom:276.800000pt;}
.y143{bottom:277.440000pt;}
.y71{bottom:284.800000pt;}
.y9d{bottom:285.440000pt;}
.yef{bottom:288.000000pt;}
.y10a{bottom:289.600000pt;}
.y11d{bottom:292.160000pt;}
.y142{bottom:292.800000pt;}
.y31{bottom:297.600000pt;}
.y70{bottom:300.160000pt;}
.y15e{bottom:300.800000pt;}
.y9c{bottom:301.760000pt;}
.yee{bottom:304.000000pt;}
.y109{bottom:304.960000pt;}
.y11c{bottom:307.520000pt;}
.y141{bottom:308.160000pt;}
.y6f{bottom:315.520000pt;}
.y15d{bottom:316.160000pt;}
.y9b{bottom:318.080000pt;}
.yec{bottom:320.000000pt;}
.y108{bottom:320.320000pt;}
.y30{bottom:322.240000pt;}
.y140{bottom:323.520000pt;}
.y6e{bottom:330.880000pt;}
.y15c{bottom:331.520000pt;}
.y107{bottom:332.800000pt;}
.y9a{bottom:333.120000pt;}
.y2f{bottom:334.720000pt;}
.y13f{bottom:338.880000pt;}
.yeb{bottom:339.520000pt;}
.y6d{bottom:346.240000pt;}
.y15b{bottom:346.880000pt;}
.y2e{bottom:347.200000pt;}
.y99{bottom:349.440000pt;}
.y13e{bottom:354.240000pt;}
.yea{bottom:354.880000pt;}
.y2d{bottom:359.360000pt;}
.y6c{bottom:361.600000pt;}
.y15a{bottom:362.240000pt;}
.y98{bottom:365.760000pt;}
.ye4{bottom:366.666667pt;}
.y13d{bottom:369.600000pt;}
.y2c{bottom:372.800000pt;}
.y6b{bottom:376.960000pt;}
.y159{bottom:377.600000pt;}
.y97{bottom:382.080000pt;}
.ye9{bottom:382.666667pt;}
.y13c{bottom:384.960000pt;}
.y2b{bottom:388.160000pt;}
.y6a{bottom:392.000000pt;}
.y158{bottom:392.960000pt;}
.ye8{bottom:398.666667pt;}
.y13b{bottom:400.000000pt;}
.y2a{bottom:403.520000pt;}
.y96{bottom:406.400000pt;}
.y69{bottom:407.360000pt;}
.y157{bottom:408.000000pt;}
.ye7{bottom:414.666667pt;}
.y13a{bottom:415.360000pt;}
.y29{bottom:418.880000pt;}
.y68{bottom:422.720000pt;}
.y156{bottom:423.360000pt;}
.y95{bottom:429.760000pt;}
.ye6{bottom:430.666667pt;}
.y139{bottom:430.720000pt;}
.y28{bottom:434.240000pt;}
.y67{bottom:438.080000pt;}
.y155{bottom:438.720000pt;}
.y117{bottom:446.080000pt;}
.ye3{bottom:446.666667pt;}
.y27{bottom:449.600000pt;}
.y94{bottom:453.120000pt;}
.y66{bottom:453.440000pt;}
.y154{bottom:454.080000pt;}
.y116{bottom:461.440000pt;}
.ye1{bottom:462.666667pt;}
.y26{bottom:464.640000pt;}
.y93{bottom:468.480000pt;}
.y65{bottom:468.800000pt;}
.y153{bottom:469.440000pt;}
.y115{bottom:476.800000pt;}
.y25{bottom:480.000000pt;}
.ye0{bottom:482.880000pt;}
.y64{bottom:484.160000pt;}
.y92{bottom:484.800000pt;}
.y114{bottom:492.160000pt;}
.y24{bottom:495.360000pt;}
.ydf{bottom:498.240000pt;}
.y63{bottom:499.520000pt;}
.y91{bottom:500.160000pt;}
.y113{bottom:507.520000pt;}
.ydc{bottom:510.666667pt;}
.y23{bottom:510.720000pt;}
.y152{bottom:515.520000pt;}
.y90{bottom:516.160000pt;}
.y62{bottom:522.880000pt;}
.y22{bottom:526.080000pt;}
.yde{bottom:526.666667pt;}
.y151{bottom:530.880000pt;}
.y61{bottom:538.240000pt;}
.y8f{bottom:540.480000pt;}
.y21{bottom:541.440000pt;}
.ydb{bottom:542.666667pt;}
.y150{bottom:546.240000pt;}
.y60{bottom:553.600000pt;}
.y20{bottom:556.800000pt;}
.yd9{bottom:558.666667pt;}
.y14f{bottom:561.600000pt;}
.y8e{bottom:563.840000pt;}
.y5f{bottom:568.960000pt;}
.y1f{bottom:572.160000pt;}
.y14e{bottom:576.960000pt;}
.yd8{bottom:578.240000pt;}
.y8d{bottom:579.200000pt;}
.y5e{bottom:584.000000pt;}
.y1e{bottom:587.520000pt;}
.y14d{bottom:592.000000pt;}
.yd7{bottom:593.600000pt;}
.y8c{bottom:595.520000pt;}
.y5d{bottom:599.360000pt;}
.y1d{bottom:602.880000pt;}
.y106{bottom:603.840000pt;}
.y138{bottom:607.360000pt;}
.yc0{bottom:608.640000pt;}
.y8b{bottom:610.880000pt;}
.y5c{bottom:614.720000pt;}
.yd6{bottom:617.280000pt;}
.y1c{bottom:618.240000pt;}
.y105{bottom:619.200000pt;}
.y14c{bottom:622.720000pt;}
.ybf{bottom:624.960000pt;}
.y8a{bottom:627.200000pt;}
.y5b{bottom:630.080000pt;}
.y137{bottom:630.720000pt;}
.y104{bottom:631.680000pt;}
.y1b{bottom:633.280000pt;}
.y14b{bottom:638.080000pt;}
.yd5{bottom:640.640000pt;}
.ybe{bottom:641.280000pt;}
.y89{bottom:642.560000pt;}
.y5a{bottom:645.440000pt;}
.y136{bottom:646.080000pt;}
.y1a{bottom:648.640000pt;}
.y14a{bottom:653.440000pt;}
.yd4{bottom:656.000000pt;}
.ybd{bottom:657.600000pt;}
.y59{bottom:660.800000pt;}
.y135{bottom:661.440000pt;}
.y19{bottom:664.000000pt;}
.y88{bottom:666.880000pt;}
.y149{bottom:668.800000pt;}
.yd3{bottom:671.360000pt;}
.ybc{bottom:673.920000pt;}
.y58{bottom:676.160000pt;}
.y134{bottom:676.800000pt;}
.y18{bottom:679.360000pt;}
.y87{bottom:682.240000pt;}
.y148{bottom:684.160000pt;}
.yd2{bottom:686.720000pt;}
.ybb{bottom:690.240000pt;}
.y57{bottom:691.520000pt;}
.y133{bottom:692.160000pt;}
.y17{bottom:694.720000pt;}
.y147{bottom:699.520000pt;}
.y86{bottom:705.600000pt;}
.yba{bottom:706.560000pt;}
.y112{bottom:706.880000pt;}
.y132{bottom:707.520000pt;}
.y16{bottom:710.080000pt;}
.y56{bottom:714.880000pt;}
.y111{bottom:722.240000pt;}
.yb9{bottom:722.880000pt;}
.yd1{bottom:725.440000pt;}
.y15{bottom:727.360000pt;}
.y85{bottom:728.640000pt;}
.y55{bottom:730.240000pt;}
.y110{bottom:737.600000pt;}
.yb8{bottom:738.240000pt;}
.yd0{bottom:740.800000pt;}
.y14{bottom:742.720000pt;}
.y84{bottom:744.000000pt;}
.y54{bottom:745.600000pt;}
.y10f{bottom:752.640000pt;}
.y131{bottom:753.600000pt;}
.yb7{bottom:754.560000pt;}
.ycf{bottom:756.160000pt;}
.y13{bottom:758.080000pt;}
.y83{bottom:759.360000pt;}
.y53{bottom:760.640000pt;}
.y130{bottom:768.640000pt;}
.yb6{bottom:770.880000pt;}
.yce{bottom:771.200000pt;}
.y12{bottom:775.360000pt;}
.y52{bottom:776.000000pt;}
.y82{bottom:782.720000pt;}
.y12f{bottom:784.000000pt;}
.ycd{bottom:786.560000pt;}
.yb5{bottom:786.880000pt;}
.y51{bottom:791.360000pt;}
.y11{bottom:795.520000pt;}
.y81{bottom:798.080000pt;}
.y12e{bottom:799.360000pt;}
.ycc{bottom:801.920000pt;}
.yb4{bottom:803.200000pt;}
.y10{bottom:806.080000pt;}
.y50{bottom:806.720000pt;}
.y12d{bottom:814.720000pt;}
.ycb{bottom:817.280000pt;}
.yb3{bottom:819.520000pt;}
.y80{bottom:821.440000pt;}
.y4f{bottom:822.080000pt;}
.yf{bottom:826.240000pt;}
.y12c{bottom:830.080000pt;}
.yca{bottom:832.640000pt;}
.yb2{bottom:835.840000pt;}
.ye{bottom:836.800000pt;}
.y4e{bottom:837.440000pt;}
.y12b{bottom:845.440000pt;}
.yc9{bottom:848.000000pt;}
.y7f{bottom:852.160000pt;}
.y4d{bottom:852.800000pt;}
.yd{bottom:856.960000pt;}
.y12a{bottom:860.800000pt;}
.yc8{bottom:863.360000pt;}
.yc{bottom:867.520000pt;}
.y4c{bottom:868.160000pt;}
.yb1{bottom:868.480000pt;}
.y7e{bottom:875.520000pt;}
.y129{bottom:876.160000pt;}
.yc7{bottom:878.720000pt;}
.y4b{bottom:883.520000pt;}
.yb0{bottom:884.800000pt;}
.yb{bottom:887.680000pt;}
.y7d{bottom:890.880000pt;}
.y128{bottom:891.520000pt;}
.yc6{bottom:894.080000pt;}
.y4a{bottom:898.880000pt;}
.yaf{bottom:901.120000pt;}
.y103{bottom:902.080000pt;}
.ya{bottom:906.880000pt;}
.yc5{bottom:909.440000pt;}
.y49{bottom:914.240000pt;}
.y102{bottom:914.666667pt;}
.yae{bottom:916.480000pt;}
.y127{bottom:922.240000pt;}
.y10e{bottom:929.600000pt;}
.y101{bottom:930.666667pt;}
.yad{bottom:932.800000pt;}
.y9{bottom:933.760000pt;}
.y48{bottom:937.600000pt;}
.y10d{bottom:944.640000pt;}
.y100{bottom:946.666667pt;}
.yc4{bottom:947.840000pt;}
.yac{bottom:948.800000pt;}
.y47{bottom:952.640000pt;}
.y8{bottom:955.200000pt;}
.y10c{bottom:960.000000pt;}
.yff{bottom:962.666667pt;}
.yc3{bottom:964.160000pt;}
.yab{bottom:965.120000pt;}
.y46{bottom:968.000000pt;}
.y10b{bottom:975.360000pt;}
.yfe{bottom:978.666667pt;}
.yc2{bottom:980.480000pt;}
.yaa{bottom:981.440000pt;}
.y45{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y146{bottom:990.720000pt;}
.yfc{bottom:994.666667pt;}
.yc1{bottom:996.800000pt;}
.ya9{bottom:997.760000pt;}
.y44{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.ya8{bottom:1013.120000pt;}
.y43{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y41{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hc{height:4.000000pt;}
.he{height:16.000000pt;}
.h10{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.hd{height:32.965000pt;}
.h5{height:36.435000pt;}
.ha{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h3{height:42.751250pt;}
.hf{height:48.000000pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h11{height:97.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w12{width:66.666667pt;}
.wc{width:69.333333pt;}
.wf{width:70.666667pt;}
.wb{width:73.333333pt;}
.we{width:74.666667pt;}
.w7{width:81.333333pt;}
.w6{width:85.333333pt;}
.w3{width:108.000000pt;}
.wa{width:110.666667pt;}
.w11{width:114.666667pt;}
.w9{width:120.000000pt;}
.wd{width:124.000000pt;}
.w5{width:132.000000pt;}
.w14{width:136.000000pt;}
.w15{width:168.000000pt;}
.w4{width:212.000000pt;}
.w13{width:241.333333pt;}
.w10{width:242.666667pt;}
.w8{width:244.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:1.386709pt;}
.x1a{left:6.666667pt;}
.x1d{left:7.680000pt;}
.x19{left:89.333333pt;}
.x5{left:96.000000pt;}
.x16{left:97.552096pt;}
.xb{left:99.764960pt;}
.x4{left:100.722336pt;}
.x11{left:106.220064pt;}
.xd{left:111.412096pt;}
.x8{left:112.728512pt;}
.x9{left:114.574208pt;}
.xa{left:119.258464pt;}
.xf{left:122.717440pt;}
.x14{left:142.666667pt;}
.x12{left:187.429696pt;}
.x18{left:189.376320pt;}
.x1b{left:197.333333pt;}
.x2e{left:212.810560pt;}
.x25{left:215.395168pt;}
.xc{left:226.306656pt;}
.x20{left:257.048832pt;}
.x29{left:260.024096pt;}
.x2{left:265.722336pt;}
.x10{left:274.633472pt;}
.xe{left:302.045536pt;}
.x2b{left:330.666667pt;}
.x21{left:332.000000pt;}
.x3{left:396.866560pt;}
.x1c{left:408.000000pt;}
.x13{left:420.480000pt;}
.x17{left:444.480000pt;}
.x22{left:452.000000pt;}
.x26{left:454.666667pt;}
.x1{left:456.943680pt;}
.x2c{left:466.666667pt;}
.x7{left:536.450240pt;}
.x1e{left:540.000000pt;}
.x27{left:561.333333pt;}
.x23{left:562.666667pt;}
.x2a{left:568.000000pt;}
.x2d{left:597.026560pt;}
.x1f{left:624.000000pt;}
.x28{left:634.666667pt;}
.x24{left:636.000000pt;}
.x6{left:667.999040pt;}
}




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