
    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_0bb62abfebedf111e4edc019.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_f73ca685f99448f071e6a5e4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_49cb70002c5689c84b4665bd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_eb3dcbe24e8cec18c9bc1a34.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_06e84b7a278449f793efdd77.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_ae898b4abca677621dcdec58.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_05648ab369c85c27ae6ffbf0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_d4d6fdc31b6444a981a64f53.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_56c23af9e0c1c381180d07b0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.892578;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_91cbfad5fe47f7803400b434.woff')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a3a31fc67293bac3fa633cd3.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff11{font-family:ff11;line-height:1.003906;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_5376e63bd402134ae7eedb75.woff')format("woff");}.ff12{font-family:ff12;line-height:1.372070;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:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls11{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.567600px;}
.ls12{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.414600px;}
.ls17{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.190200px;}
.ls9{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.114000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls1{letter-spacing:0.187200px;}
.ls13{letter-spacing:0.262080px;}
.ls15{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls18{letter-spacing:6.785280px;}
.ls5{letter-spacing:11.520000px;}
.lse{letter-spacing:39.905280px;}
.ls14{letter-spacing:44.586720px;}
.lsf{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-66.240000px;}
.wsb{word-spacing:-59.760000px;}
.ws8{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws9{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._4{width:2.446800px;}
._3{width:3.709440px;}
._2{width:4.901760px;}
._5{width:6.226560px;}
._a{width:8.151840px;}
._7{width:9.273600px;}
._11{width:10.362240px;}
._c{width:11.367120px;}
._6{width:12.453120px;}
._9{width:13.517280px;}
._8{width:14.705280px;}
._d{width:18.083520px;}
._e{width:19.876320px;}
._b{width:21.329280px;}
._14{width:22.455360px;}
._22{width:23.550480px;}
._3a{width:24.711840px;}
._10{width:26.496000px;}
._f{width:27.591120px;}
._16{width:28.611360px;}
._15{width:29.843280px;}
._18{width:31.468320px;}
._17{width:32.987520px;}
._13{width:34.378560px;}
._45{width:35.591040px;}
._20{width:36.630720px;}
._2c{width:38.092320px;}
._28{width:39.779280px;}
._1f{width:41.002560px;}
._27{width:42.393600px;}
._4c{width:43.881840px;}
._2a{width:44.946000px;}
._2e{width:46.235520px;}
._2f{width:47.264400px;}
._12{width:49.251600px;}
._35{width:50.279040px;}
._1c{width:51.840000px;}
._2b{width:53.862240px;}
._47{width:55.449600px;}
._60{width:56.493120px;}
._50{width:57.795840px;}
._26{width:59.417280px;}
._1d{width:61.801920px;}
._4f{width:63.196560px;}
._32{width:64.354320px;}
._23{width:66.474000px;}
._37{width:67.631040px;}
._38{width:68.726160px;}
._3e{width:70.479360px;}
._51{width:72.135360px;}
._21{width:73.923840px;}
._24{width:75.579840px;}
._25{width:77.006160px;}
._1e{width:78.361920px;}
._46{width:79.523280px;}
._2d{width:80.879040px;}
._4d{width:83.563920px;}
._5f{width:84.623760px;}
._34{width:85.780800px;}
._4a{width:87.105600px;}
._41{width:92.805840px;}
._29{width:93.862080px;}
._39{width:97.341840px;}
._36{width:98.763840px;}
._49{width:100.088640px;}
._63{width:101.664000px;}
._43{width:102.706560px;}
._44{width:103.962240px;}
._3d{width:105.122880px;}
._61{width:107.242560px;}
._5d{width:108.501120px;}
._56{width:112.566240px;}
._4e{width:114.595200px;}
._4b{width:116.847360px;}
._54{width:117.876240px;}
._64{width:119.262240px;}
._48{width:124.266240px;}
._33{width:127.480320px;}
._62{width:128.903040px;}
._42{width:143.078400px;}
._5a{width:149.523840px;}
._57{width:150.894720px;}
._1b{width:152.893440px;}
._5c{width:163.281600px;}
._59{width:165.436560px;}
._40{width:171.097920px;}
._3f{width:172.259280px;}
._53{width:182.592720px;}
._19{width:189.617520px;}
._1a{width:197.647200px;}
._3c{width:202.729680px;}
._3b{width:203.820480px;}
._5e{width:215.381520px;}
._31{width:218.393280px;}
._30{width:219.655440px;}
._5b{width:248.369040px;}
._52{width:275.823360px;}
._58{width:358.459920px;}
._66{width:693.864000px;}
._65{width:720.140400px;}
._67{width:847.596000px;}
._55{width:849.185760px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs9{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y1c{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.yfc{bottom:3.780000px;}
.y102{bottom:3.945000px;}
.y10e{bottom:3.960000px;}
.y106{bottom:4.125000px;}
.y111{bottom:4.140000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.yfb{bottom:22.680000px;}
.y110{bottom:22.860000px;}
.y101{bottom:23.025000px;}
.y10d{bottom:23.040000px;}
.y18{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y100{bottom:41.925000px;}
.y10c{bottom:41.940000px;}
.y105{bottom:42.105000px;}
.y118{bottom:42.120000px;}
.y17{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y40{bottom:75.240000px;}
.y16{bottom:78.885000px;}
.y10a{bottom:80.640000px;}
.y11a{bottom:80.820000px;}
.y15{bottom:94.365000px;}
.yfe{bottom:100.065000px;}
.y113{bottom:109.980000px;}
.y3d{bottom:112.320000px;}
.y14{bottom:125.505000px;}
.yd5{bottom:125.820000px;}
.y9c{bottom:127.080000px;}
.y71{bottom:133.740000px;}
.y12d{bottom:133.920000px;}
.y6b{bottom:134.100000px;}
.y3b{bottom:137.160000px;}
.y13{bottom:140.805000px;}
.yd4{bottom:150.480000px;}
.y9b{bottom:151.740000px;}
.yba{bottom:152.820000px;}
.y12c{bottom:158.580000px;}
.y6a{bottom:158.760000px;}
.y3a{bottom:161.820000px;}
.yd3{bottom:175.140000px;}
.y9a{bottom:176.400000px;}
.yb9{bottom:177.480000px;}
.ydb{bottom:182.340000px;}
.y12b{bottom:183.240000px;}
.y69{bottom:183.420000px;}
.y39{bottom:186.480000px;}
.yd2{bottom:199.440000px;}
.y99{bottom:201.060000px;}
.yb8{bottom:202.140000px;}
.yda{bottom:207.030000px;}
.y12a{bottom:207.930000px;}
.y68{bottom:208.110000px;}
.y38{bottom:211.170000px;}
.y107{bottom:219.270000px;}
.yd1{bottom:224.490000px;}
.y98{bottom:226.830000px;}
.yd9{bottom:231.690000px;}
.y129{bottom:232.590000px;}
.y67{bottom:232.770000px;}
.yfd{bottom:235.665000px;}
.y37{bottom:235.830000px;}
.yd0{bottom:249.150000px;}
.y97{bottom:251.490000px;}
.yd8{bottom:256.350000px;}
.y128{bottom:257.250000px;}
.y66{bottom:257.430000px;}
.y36{bottom:260.490000px;}
.ycf{bottom:273.810000px;}
.y96{bottom:276.150000px;}
.y127{bottom:281.910000px;}
.y65{bottom:282.090000px;}
.y35{bottom:285.150000px;}
.y104{bottom:293.445000px;}
.yce{bottom:298.470000px;}
.y95{bottom:300.810000px;}
.yb7{bottom:300.990000px;}
.y126{bottom:306.210000px;}
.y130{bottom:306.570000px;}
.y64{bottom:306.750000px;}
.y34{bottom:309.810000px;}
.ycd{bottom:323.130000px;}
.y94{bottom:325.470000px;}
.yb6{bottom:326.370000px;}
.y125{bottom:330.870000px;}
.y12f{bottom:331.230000px;}
.y63{bottom:331.410000px;}
.y103{bottom:332.145000px;}
.y33{bottom:334.470000px;}
.ycc{bottom:347.970000px;}
.y93{bottom:350.130000px;}
.yb5{bottom:351.030000px;}
.y124{bottom:355.530000px;}
.y12e{bottom:355.890000px;}
.y62{bottom:356.070000px;}
.y32{bottom:359.130000px;}
.ycb{bottom:373.710000px;}
.y92{bottom:374.790000px;}
.yb4{bottom:376.050000px;}
.y70{bottom:380.370000px;}
.y123{bottom:380.550000px;}
.y61{bottom:380.730000px;}
.y31{bottom:383.430000px;}
.y3c{bottom:383.790000px;}
.yff{bottom:389.745000px;}
.yca{bottom:398.370000px;}
.y91{bottom:399.270000px;}
.yb3{bottom:400.710000px;}
.y6f{bottom:405.030000px;}
.y122{bottom:405.210000px;}
.y60{bottom:405.390000px;}
.y30{bottom:408.450000px;}
.yc9{bottom:423.030000px;}
.y90{bottom:424.290000px;}
.yb2{bottom:425.370000px;}
.y6e{bottom:429.690000px;}
.y121{bottom:429.870000px;}
.y5f{bottom:430.050000px;}
.y2f{bottom:432.210000px;}
.yfa{bottom:447.375000px;}
.yc8{bottom:447.915000px;}
.y8f{bottom:448.995000px;}
.yb1{bottom:450.075000px;}
.y2e{bottom:454.035000px;}
.y120{bottom:454.575000px;}
.y5e{bottom:454.755000px;}
.yc7{bottom:473.295000px;}
.y8e{bottom:473.655000px;}
.yb0{bottom:474.735000px;}
.yd7{bottom:479.235000px;}
.y5d{bottom:479.595000px;}
.y2d{bottom:480.675000px;}
.yf9{bottom:495.435000px;}
.y8d{bottom:498.315000px;}
.yaf{bottom:499.395000px;}
.y2c{bottom:502.455000px;}
.y11f{bottom:503.895000px;}
.y5c{bottom:504.255000px;}
.yf8{bottom:520.635000px;}
.y8c{bottom:522.975000px;}
.yae{bottom:524.055000px;}
.y2b{bottom:524.235000px;}
.y11e{bottom:528.555000px;}
.y5b{bottom:528.915000px;}
.yf0{bottom:545.295000px;}
.y2a{bottom:546.195000px;}
.yc6{bottom:547.635000px;}
.yad{bottom:548.355000px;}
.y8b{bottom:548.715000px;}
.y11d{bottom:552.855000px;}
.y5a{bottom:553.575000px;}
.y29{bottom:567.975000px;}
.y119{bottom:568.875000px;}
.yef{bottom:569.955000px;}
.yc5{bottom:572.295000px;}
.yac{bottom:573.015000px;}
.y8a{bottom:573.375000px;}
.yf7{bottom:574.635000px;}
.y131{bottom:577.875000px;}
.y59{bottom:578.235000px;}
.y28{bottom:589.755000px;}
.yee{bottom:595.695000px;}
.yc4{bottom:596.955000px;}
.yab{bottom:597.675000px;}
.y89{bottom:598.035000px;}
.yf6{bottom:599.295000px;}
.y58{bottom:602.895000px;}
.y27{bottom:611.535000px;}
.yed{bottom:620.355000px;}
.yc3{bottom:621.615000px;}
.y88{bottom:622.695000px;}
.yf5{bottom:623.955000px;}
.y11c{bottom:626.655000px;}
.y57{bottom:627.555000px;}
.y26{bottom:633.495000px;}
.yec{bottom:645.015000px;}
.yaa{bottom:647.355000px;}
.y87{bottom:647.535000px;}
.yf4{bottom:648.615000px;}
.y56{bottom:652.215000px;}
.y25{bottom:655.275000px;}
.yeb{bottom:669.855000px;}
.ya9{bottom:672.015000px;}
.y86{bottom:672.915000px;}
.yf3{bottom:673.275000px;}
.y55{bottom:676.905000px;}
.y24{bottom:677.085000px;}
.y11b{bottom:684.285000px;}
.yea{bottom:695.625000px;}
.ya8{bottom:696.705000px;}
.y85{bottom:697.965000px;}
.y23{bottom:698.865000px;}
.y134{bottom:701.205000px;}
.y54{bottom:701.565000px;}
.ye9{bottom:720.285000px;}
.y22{bottom:720.645000px;}
.yc2{bottom:721.365000px;}
.ya7{bottom:721.545000px;}
.y84{bottom:722.625000px;}
.y53{bottom:726.225000px;}
.y112{bottom:741.885000px;}
.y21{bottom:742.605000px;}
.ye8{bottom:745.125000px;}
.yc1{bottom:746.205000px;}
.y83{bottom:747.285000px;}
.y52{bottom:750.885000px;}
.y20{bottom:764.385000px;}
.ye7{bottom:770.865000px;}
.yc0{bottom:771.585000px;}
.ya6{bottom:771.945000px;}
.y82{bottom:772.125000px;}
.y51{bottom:775.545000px;}
.y1f{bottom:786.165000px;}
.ye6{bottom:795.525000px;}
.yf2{bottom:796.245000px;}
.ya5{bottom:796.605000px;}
.y81{bottom:797.865000px;}
.y117{bottom:799.665000px;}
.y50{bottom:800.205000px;}
.y1e{bottom:807.945000px;}
.ye5{bottom:820.185000px;}
.ya4{bottom:821.265000px;}
.y80{bottom:822.525000px;}
.y4f{bottom:824.865000px;}
.y1d{bottom:829.545000px;}
.y1a{bottom:836.260260px;}
.y116{bottom:838.365000px;}
.y1b{bottom:844.845000px;}
.ybf{bottom:845.925000px;}
.ya3{bottom:846.105000px;}
.y7f{bottom:847.185000px;}
.y4e{bottom:849.525000px;}
.y12{bottom:852.045000px;}
.y19{bottom:856.186260px;}
.ye4{bottom:869.505000px;}
.ybe{bottom:870.585000px;}
.ya2{bottom:871.485000px;}
.y7e{bottom:871.845000px;}
.y4d{bottom:874.185000px;}
.y115{bottom:877.065000px;}
.ye3{bottom:895.245000px;}
.ybd{bottom:895.425000px;}
.ya1{bottom:896.145000px;}
.y7d{bottom:896.505000px;}
.y4c{bottom:898.485000px;}
.y6d{bottom:898.845000px;}
.y114{bottom:915.810000px;}
.ye2{bottom:919.950000px;}
.yf1{bottom:920.130000px;}
.y7c{bottom:921.210000px;}
.y4b{bottom:923.190000px;}
.y6c{bottom:923.550000px;}
.ye1{bottom:944.610000px;}
.ya0{bottom:945.870000px;}
.y7b{bottom:946.050000px;}
.y4a{bottom:948.210000px;}
.ye0{bottom:969.450000px;}
.y9f{bottom:970.530000px;}
.y7a{bottom:971.790000px;}
.yd6{bottom:972.510000px;}
.y49{bottom:972.870000px;}
.y109{bottom:973.410000px;}
.y9e{bottom:995.190000px;}
.y79{bottom:996.450000px;}
.y48{bottom:997.530000px;}
.y10{bottom:1018.590000px;}
.ydf{bottom:1019.850000px;}
.y9d{bottom:1020.030000px;}
.y78{bottom:1021.110000px;}
.y47{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y10f{bottom:1031.190000px;}
.yde{bottom:1044.510000px;}
.ybc{bottom:1045.410000px;}
.y77{bottom:1045.770000px;}
.y133{bottom:1046.490000px;}
.y46{bottom:1046.850000px;}
.ydd{bottom:1069.170000px;}
.y76{bottom:1070.430000px;}
.y132{bottom:1071.150000px;}
.y45{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y10b{bottom:1088.790000px;}
.ydc{bottom:1094.010000px;}
.y75{bottom:1095.090000px;}
.y44{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y74{bottom:1119.750000px;}
.y43{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y73{bottom:1144.410000px;}
.y42{bottom:1145.520000px;}
.y108{bottom:1146.420000px;}
.y4{bottom:1156.860000px;}
.ybb{bottom:1169.100000px;}
.y72{bottom:1169.820000px;}
.y41{bottom:1170.180000px;}
.y3f{bottom:1187.280000px;}
.y3e{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h18{height:7.200000px;}
.hd{height:13.324219px;}
.h19{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1d{height:30.480469px;}
.h21{height:37.965000px;}
.h27{height:37.980000px;}
.h2b{height:38.002500px;}
.h1f{height:46.251562px;}
.h14{height:48.616875px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h24{height:56.865000px;}
.h2d{height:56.880000px;}
.h23{height:56.901000px;}
.h29{height:56.910000px;}
.h25{height:57.045000px;}
.h2c{height:57.060000px;}
.h1e{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h16{height:63.492188px;}
.h1a{height:64.978594px;}
.h1b{height:65.010937px;}
.h26{height:65.884219px;}
.h2e{height:66.078281px;}
.h1c{height:66.757500px;}
.h15{height:67.803750px;}
.h20{height:68.084282px;}
.h6{height:71.324297px;}
.h17{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3{height:103.530000px;}
.h12{height:166.530000px;}
.h28{height:172.290000px;}
.h22{height:210.975000px;}
.h2a{height:230.790000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:107.629500px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.wa{width:133.236000px;}
.w9{width:165.615000px;}
.wc{width:176.055000px;}
.wd{width:180.210000px;}
.we{width:194.820000px;}
.wb{width:252.240000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.x28{left:24.690000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2c{left:57.270000px;}
.x2a{left:58.530000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x20{left:113.076000px;}
.x1e{left:117.936000px;}
.x17{left:126.883500px;}
.x24{left:131.806500px;}
.x16{left:135.163500px;}
.x1f{left:140.076000px;}
.x1b{left:162.030000px;}
.x15{left:164.188500px;}
.x14{left:167.068500px;}
.x4{left:168.885000px;}
.x23{left:201.270000px;}
.x18{left:207.388500px;}
.x6{left:209.010000px;}
.x25{left:240.165000px;}
.x13{left:252.928500px;}
.x19{left:324.965515px;}
.x12{left:335.578500px;}
.x26{left:406.515000px;}
.x29{left:417.135000px;}
.xa{left:445.620000px;}
.x1d{left:473.505000px;}
.x2d{left:478.545000px;}
.x21{left:483.405000px;}
.x22{left:505.545000px;}
.x1c{left:527.505000px;}
.x27{left:540.660000px;}
.x2b{left:598.080000px;}
.x7{left:722.490000px;}
.x1{left:761.010000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.504533pt;}
.ls12{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls17{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls1{letter-spacing:0.166400pt;}
.ls13{letter-spacing:0.232960pt;}
.ls15{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls18{letter-spacing:6.031360pt;}
.ls5{letter-spacing:10.240000pt;}
.lse{letter-spacing:35.471360pt;}
.ls14{letter-spacing:39.632640pt;}
.lsf{letter-spacing:56.912640pt;}
.wsa{word-spacing:-58.880000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws8{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws9{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._4{width:2.174933pt;}
._3{width:3.297280pt;}
._2{width:4.357120pt;}
._5{width:5.534720pt;}
._a{width:7.246080pt;}
._7{width:8.243200pt;}
._11{width:9.210880pt;}
._c{width:10.104107pt;}
._6{width:11.069440pt;}
._9{width:12.015360pt;}
._8{width:13.071360pt;}
._d{width:16.074240pt;}
._e{width:17.667840pt;}
._b{width:18.959360pt;}
._14{width:19.960320pt;}
._22{width:20.933760pt;}
._3a{width:21.966080pt;}
._10{width:23.552000pt;}
._f{width:24.525440pt;}
._16{width:25.432320pt;}
._15{width:26.527360pt;}
._18{width:27.971840pt;}
._17{width:29.322240pt;}
._13{width:30.558720pt;}
._45{width:31.636480pt;}
._20{width:32.560640pt;}
._2c{width:33.859840pt;}
._28{width:35.359360pt;}
._1f{width:36.446720pt;}
._27{width:37.683200pt;}
._4c{width:39.006080pt;}
._2a{width:39.952000pt;}
._2e{width:41.098240pt;}
._2f{width:42.012800pt;}
._12{width:43.779200pt;}
._35{width:44.692480pt;}
._1c{width:46.080000pt;}
._2b{width:47.877547pt;}
._47{width:49.288533pt;}
._60{width:50.216107pt;}
._50{width:51.374080pt;}
._26{width:52.815360pt;}
._1d{width:54.935040pt;}
._4f{width:56.174720pt;}
._32{width:57.203840pt;}
._23{width:59.088000pt;}
._37{width:60.116480pt;}
._38{width:61.089920pt;}
._3e{width:62.648320pt;}
._51{width:64.120320pt;}
._21{width:65.710080pt;}
._24{width:67.182080pt;}
._25{width:68.449920pt;}
._1e{width:69.655040pt;}
._46{width:70.687360pt;}
._2d{width:71.892480pt;}
._4d{width:74.279040pt;}
._5f{width:75.221120pt;}
._34{width:76.249600pt;}
._4a{width:77.427200pt;}
._41{width:82.494080pt;}
._29{width:83.432960pt;}
._39{width:86.526080pt;}
._36{width:87.790080pt;}
._49{width:88.967680pt;}
._63{width:90.368000pt;}
._43{width:91.294720pt;}
._44{width:92.410880pt;}
._3d{width:93.442560pt;}
._61{width:95.326720pt;}
._5d{width:96.445440pt;}
._56{width:100.058880pt;}
._4e{width:101.862400pt;}
._4b{width:103.864320pt;}
._54{width:104.778880pt;}
._64{width:106.010880pt;}
._48{width:110.458880pt;}
._33{width:113.315840pt;}
._62{width:114.580480pt;}
._42{width:127.180800pt;}
._5a{width:132.910080pt;}
._57{width:134.128640pt;}
._1b{width:135.905280pt;}
._5c{width:145.139200pt;}
._59{width:147.054720pt;}
._40{width:152.087040pt;}
._3f{width:153.119360pt;}
._53{width:162.304640pt;}
._19{width:168.548907pt;}
._1a{width:175.686400pt;}
._3c{width:180.204160pt;}
._3b{width:181.173760pt;}
._5e{width:191.450240pt;}
._31{width:194.127360pt;}
._30{width:195.249280pt;}
._5b{width:220.772480pt;}
._52{width:245.176320pt;}
._58{width:318.631040pt;}
._66{width:616.768000pt;}
._65{width:640.124800pt;}
._67{width:753.418667pt;}
._55{width:754.831787pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs9{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y1c{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.yfc{bottom:3.360000pt;}
.y102{bottom:3.506667pt;}
.y10e{bottom:3.520000pt;}
.y106{bottom:3.666667pt;}
.y111{bottom:3.680000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.yfb{bottom:20.160000pt;}
.y110{bottom:20.320000pt;}
.y101{bottom:20.466667pt;}
.y10d{bottom:20.480000pt;}
.y18{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y100{bottom:37.266667pt;}
.y10c{bottom:37.280000pt;}
.y105{bottom:37.426667pt;}
.y118{bottom:37.440000pt;}
.y17{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y40{bottom:66.880000pt;}
.y16{bottom:70.120000pt;}
.y10a{bottom:71.680000pt;}
.y11a{bottom:71.840000pt;}
.y15{bottom:83.880000pt;}
.yfe{bottom:88.946667pt;}
.y113{bottom:97.760000pt;}
.y3d{bottom:99.840000pt;}
.y14{bottom:111.560000pt;}
.yd5{bottom:111.840000pt;}
.y9c{bottom:112.960000pt;}
.y71{bottom:118.880000pt;}
.y12d{bottom:119.040000pt;}
.y6b{bottom:119.200000pt;}
.y3b{bottom:121.920000pt;}
.y13{bottom:125.160000pt;}
.yd4{bottom:133.760000pt;}
.y9b{bottom:134.880000pt;}
.yba{bottom:135.840000pt;}
.y12c{bottom:140.960000pt;}
.y6a{bottom:141.120000pt;}
.y3a{bottom:143.840000pt;}
.yd3{bottom:155.680000pt;}
.y9a{bottom:156.800000pt;}
.yb9{bottom:157.760000pt;}
.ydb{bottom:162.080000pt;}
.y12b{bottom:162.880000pt;}
.y69{bottom:163.040000pt;}
.y39{bottom:165.760000pt;}
.yd2{bottom:177.280000pt;}
.y99{bottom:178.720000pt;}
.yb8{bottom:179.680000pt;}
.yda{bottom:184.026667pt;}
.y12a{bottom:184.826667pt;}
.y68{bottom:184.986667pt;}
.y38{bottom:187.706667pt;}
.y107{bottom:194.906667pt;}
.yd1{bottom:199.546667pt;}
.y98{bottom:201.626667pt;}
.yd9{bottom:205.946667pt;}
.y129{bottom:206.746667pt;}
.y67{bottom:206.906667pt;}
.yfd{bottom:209.480000pt;}
.y37{bottom:209.626667pt;}
.yd0{bottom:221.466667pt;}
.y97{bottom:223.546667pt;}
.yd8{bottom:227.866667pt;}
.y128{bottom:228.666667pt;}
.y66{bottom:228.826667pt;}
.y36{bottom:231.546667pt;}
.ycf{bottom:243.386667pt;}
.y96{bottom:245.466667pt;}
.y127{bottom:250.586667pt;}
.y65{bottom:250.746667pt;}
.y35{bottom:253.466667pt;}
.y104{bottom:260.840000pt;}
.yce{bottom:265.306667pt;}
.y95{bottom:267.386667pt;}
.yb7{bottom:267.546667pt;}
.y126{bottom:272.186667pt;}
.y130{bottom:272.506667pt;}
.y64{bottom:272.666667pt;}
.y34{bottom:275.386667pt;}
.ycd{bottom:287.226667pt;}
.y94{bottom:289.306667pt;}
.yb6{bottom:290.106667pt;}
.y125{bottom:294.106667pt;}
.y12f{bottom:294.426667pt;}
.y63{bottom:294.586667pt;}
.y103{bottom:295.240000pt;}
.y33{bottom:297.306667pt;}
.ycc{bottom:309.306667pt;}
.y93{bottom:311.226667pt;}
.yb5{bottom:312.026667pt;}
.y124{bottom:316.026667pt;}
.y12e{bottom:316.346667pt;}
.y62{bottom:316.506667pt;}
.y32{bottom:319.226667pt;}
.ycb{bottom:332.186667pt;}
.y92{bottom:333.146667pt;}
.yb4{bottom:334.266667pt;}
.y70{bottom:338.106667pt;}
.y123{bottom:338.266667pt;}
.y61{bottom:338.426667pt;}
.y31{bottom:340.826667pt;}
.y3c{bottom:341.146667pt;}
.yff{bottom:346.440000pt;}
.yca{bottom:354.106667pt;}
.y91{bottom:354.906667pt;}
.yb3{bottom:356.186667pt;}
.y6f{bottom:360.026667pt;}
.y122{bottom:360.186667pt;}
.y60{bottom:360.346667pt;}
.y30{bottom:363.066667pt;}
.yc9{bottom:376.026667pt;}
.y90{bottom:377.146667pt;}
.yb2{bottom:378.106667pt;}
.y6e{bottom:381.946667pt;}
.y121{bottom:382.106667pt;}
.y5f{bottom:382.266667pt;}
.y2f{bottom:384.186667pt;}
.yfa{bottom:397.666667pt;}
.yc8{bottom:398.146667pt;}
.y8f{bottom:399.106667pt;}
.yb1{bottom:400.066667pt;}
.y2e{bottom:403.586667pt;}
.y120{bottom:404.066667pt;}
.y5e{bottom:404.226667pt;}
.yc7{bottom:420.706667pt;}
.y8e{bottom:421.026667pt;}
.yb0{bottom:421.986667pt;}
.yd7{bottom:425.986667pt;}
.y5d{bottom:426.306667pt;}
.y2d{bottom:427.266667pt;}
.yf9{bottom:440.386667pt;}
.y8d{bottom:442.946667pt;}
.yaf{bottom:443.906667pt;}
.y2c{bottom:446.626667pt;}
.y11f{bottom:447.906667pt;}
.y5c{bottom:448.226667pt;}
.yf8{bottom:462.786667pt;}
.y8c{bottom:464.866667pt;}
.yae{bottom:465.826667pt;}
.y2b{bottom:465.986667pt;}
.y11e{bottom:469.826667pt;}
.y5b{bottom:470.146667pt;}
.yf0{bottom:484.706667pt;}
.y2a{bottom:485.506667pt;}
.yc6{bottom:486.786667pt;}
.yad{bottom:487.426667pt;}
.y8b{bottom:487.746667pt;}
.y11d{bottom:491.426667pt;}
.y5a{bottom:492.066667pt;}
.y29{bottom:504.866667pt;}
.y119{bottom:505.666667pt;}
.yef{bottom:506.626667pt;}
.yc5{bottom:508.706667pt;}
.yac{bottom:509.346667pt;}
.y8a{bottom:509.666667pt;}
.yf7{bottom:510.786667pt;}
.y131{bottom:513.666667pt;}
.y59{bottom:513.986667pt;}
.y28{bottom:524.226667pt;}
.yee{bottom:529.506667pt;}
.yc4{bottom:530.626667pt;}
.yab{bottom:531.266667pt;}
.y89{bottom:531.586667pt;}
.yf6{bottom:532.706667pt;}
.y58{bottom:535.906667pt;}
.y27{bottom:543.586667pt;}
.yed{bottom:551.426667pt;}
.yc3{bottom:552.546667pt;}
.y88{bottom:553.506667pt;}
.yf5{bottom:554.626667pt;}
.y11c{bottom:557.026667pt;}
.y57{bottom:557.826667pt;}
.y26{bottom:563.106667pt;}
.yec{bottom:573.346667pt;}
.yaa{bottom:575.426667pt;}
.y87{bottom:575.586667pt;}
.yf4{bottom:576.546667pt;}
.y56{bottom:579.746667pt;}
.y25{bottom:582.466667pt;}
.yeb{bottom:595.426667pt;}
.ya9{bottom:597.346667pt;}
.y86{bottom:598.146667pt;}
.yf3{bottom:598.466667pt;}
.y55{bottom:601.693333pt;}
.y24{bottom:601.853333pt;}
.y11b{bottom:608.253333pt;}
.yea{bottom:618.333333pt;}
.ya8{bottom:619.293333pt;}
.y85{bottom:620.413333pt;}
.y23{bottom:621.213333pt;}
.y134{bottom:623.293333pt;}
.y54{bottom:623.613333pt;}
.ye9{bottom:640.253333pt;}
.y22{bottom:640.573333pt;}
.yc2{bottom:641.213333pt;}
.ya7{bottom:641.373333pt;}
.y84{bottom:642.333333pt;}
.y53{bottom:645.533333pt;}
.y112{bottom:659.453333pt;}
.y21{bottom:660.093333pt;}
.ye8{bottom:662.333333pt;}
.yc1{bottom:663.293333pt;}
.y83{bottom:664.253333pt;}
.y52{bottom:667.453333pt;}
.y20{bottom:679.453333pt;}
.ye7{bottom:685.213333pt;}
.yc0{bottom:685.853333pt;}
.ya6{bottom:686.173333pt;}
.y82{bottom:686.333333pt;}
.y51{bottom:689.373333pt;}
.y1f{bottom:698.813333pt;}
.ye6{bottom:707.133333pt;}
.yf2{bottom:707.773333pt;}
.ya5{bottom:708.093333pt;}
.y81{bottom:709.213333pt;}
.y117{bottom:710.813333pt;}
.y50{bottom:711.293333pt;}
.y1e{bottom:718.173333pt;}
.ye5{bottom:729.053333pt;}
.ya4{bottom:730.013333pt;}
.y80{bottom:731.133333pt;}
.y4f{bottom:733.213333pt;}
.y1d{bottom:737.373333pt;}
.y1a{bottom:743.342453pt;}
.y116{bottom:745.213333pt;}
.y1b{bottom:750.973333pt;}
.ybf{bottom:751.933333pt;}
.ya3{bottom:752.093333pt;}
.y7f{bottom:753.053333pt;}
.y4e{bottom:755.133333pt;}
.y12{bottom:757.373333pt;}
.y19{bottom:761.054453pt;}
.ye4{bottom:772.893333pt;}
.ybe{bottom:773.853333pt;}
.ya2{bottom:774.653333pt;}
.y7e{bottom:774.973333pt;}
.y4d{bottom:777.053333pt;}
.y115{bottom:779.613333pt;}
.ye3{bottom:795.773333pt;}
.ybd{bottom:795.933333pt;}
.ya1{bottom:796.573333pt;}
.y7d{bottom:796.893333pt;}
.y4c{bottom:798.653333pt;}
.y6d{bottom:798.973333pt;}
.y114{bottom:814.053333pt;}
.ye2{bottom:817.733333pt;}
.yf1{bottom:817.893333pt;}
.y7c{bottom:818.853333pt;}
.y4b{bottom:820.613333pt;}
.y6c{bottom:820.933333pt;}
.ye1{bottom:839.653333pt;}
.ya0{bottom:840.773333pt;}
.y7b{bottom:840.933333pt;}
.y4a{bottom:842.853333pt;}
.ye0{bottom:861.733333pt;}
.y9f{bottom:862.693333pt;}
.y7a{bottom:863.813333pt;}
.yd6{bottom:864.453333pt;}
.y49{bottom:864.773333pt;}
.y109{bottom:865.253333pt;}
.y9e{bottom:884.613333pt;}
.y79{bottom:885.733333pt;}
.y48{bottom:886.693333pt;}
.y10{bottom:905.413333pt;}
.ydf{bottom:906.533333pt;}
.y9d{bottom:906.693333pt;}
.y78{bottom:907.653333pt;}
.y47{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y10f{bottom:916.613333pt;}
.yde{bottom:928.453333pt;}
.ybc{bottom:929.253333pt;}
.y77{bottom:929.573333pt;}
.y133{bottom:930.213333pt;}
.y46{bottom:930.533333pt;}
.ydd{bottom:950.373333pt;}
.y76{bottom:951.493333pt;}
.y132{bottom:952.133333pt;}
.y45{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y10b{bottom:967.813333pt;}
.ydc{bottom:972.453333pt;}
.y75{bottom:973.413333pt;}
.y44{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y74{bottom:995.333333pt;}
.y43{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y73{bottom:1017.253333pt;}
.y42{bottom:1018.240000pt;}
.y108{bottom:1019.040000pt;}
.y4{bottom:1028.320000pt;}
.ybb{bottom:1039.200000pt;}
.y72{bottom:1039.840000pt;}
.y41{bottom:1040.160000pt;}
.y3f{bottom:1055.360000pt;}
.y3e{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h18{height:6.400000pt;}
.hd{height:11.843750pt;}
.h19{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1d{height:27.093750pt;}
.h21{height:33.746667pt;}
.h27{height:33.760000pt;}
.h2b{height:33.780000pt;}
.h1f{height:41.112500pt;}
.h14{height:43.215000pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h24{height:50.546667pt;}
.h2d{height:50.560000pt;}
.h23{height:50.578667pt;}
.h29{height:50.586667pt;}
.h25{height:50.706667pt;}
.h2c{height:50.720000pt;}
.h1e{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h16{height:56.437500pt;}
.h1a{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h26{height:58.563750pt;}
.h2e{height:58.736250pt;}
.h1c{height:59.340000pt;}
.h15{height:60.270000pt;}
.h20{height:60.519362pt;}
.h6{height:63.399375pt;}
.h17{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3{height:92.026667pt;}
.h12{height:148.026667pt;}
.h28{height:153.146667pt;}
.h22{height:187.533333pt;}
.h2a{height:205.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:95.670667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.wa{width:118.432000pt;}
.w9{width:147.213333pt;}
.wc{width:156.493333pt;}
.wd{width:160.186667pt;}
.we{width:173.173333pt;}
.wb{width:224.213333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.x28{left:21.946667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2c{left:50.906667pt;}
.x2a{left:52.026667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x20{left:100.512000pt;}
.x1e{left:104.832000pt;}
.x17{left:112.785333pt;}
.x24{left:117.161333pt;}
.x16{left:120.145333pt;}
.x1f{left:124.512000pt;}
.x1b{left:144.026667pt;}
.x15{left:145.945333pt;}
.x14{left:148.505333pt;}
.x4{left:150.120000pt;}
.x23{left:178.906667pt;}
.x18{left:184.345333pt;}
.x6{left:185.786667pt;}
.x25{left:213.480000pt;}
.x13{left:224.825333pt;}
.x19{left:288.858236pt;}
.x12{left:298.292000pt;}
.x26{left:361.346667pt;}
.x29{left:370.786667pt;}
.xa{left:396.106667pt;}
.x1d{left:420.893333pt;}
.x2d{left:425.373333pt;}
.x21{left:429.693333pt;}
.x22{left:449.373333pt;}
.x1c{left:468.893333pt;}
.x27{left:480.586667pt;}
.x2b{left:531.626667pt;}
.x7{left:642.213333pt;}
.x1{left:676.453333pt;}
}




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