
    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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ae93d6e86c44cf890445a9c0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.942383;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_5fbd55a3fac6ead866583e02.woff')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_2b7db1b6dbc11b08dae24e0f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_b41ec67f9a9d9de0559ea1ff.woff')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_ef11ea51119692e1b5b4b637.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_ec9e0620d0d1f151ca0e591b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_7f58e03bcf00e30d066f7785.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_c67b080ef79454f5f7b6d9a9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_de4fca7efe8bc225336ae92a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.849121;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_e966951e366c20a6f4d4614e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.849121;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_5e6f429787cc2834c2832b9c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.762207;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_9e574066845b141e2244937b.woff')format("woff");}.ffd{font-family:ffd;line-height:1.064941;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_464963ba3429218c925af752.woff')format("woff");}.ffe{font-family:ffe;line-height:0.849121;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_1a54eabce5f481b07d360e9b.woff')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls16{letter-spacing:-0.960000px;}
.ls19{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.334200px;}
.ls8{letter-spacing:-0.308400px;}
.lsb{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.270600px;}
.lsc{letter-spacing:-0.255000px;}
.lsd{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.069000px;}
.ls9{letter-spacing:0.083400px;}
.ls15{letter-spacing:0.100800px;}
.ls1a{letter-spacing:0.121200px;}
.ls5{letter-spacing:0.149760px;}
.ls11{letter-spacing:0.155400px;}
.ls0{letter-spacing:0.241920px;}
.lsf{letter-spacing:0.308400px;}
.ls2{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.444738px;}
.ls4{letter-spacing:0.666720px;}
.ls17{letter-spacing:3.161280px;}
.ls18{letter-spacing:3.185280px;}
.ls12{letter-spacing:39.161280px;}
.ls13{letter-spacing:39.185280px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-66.240000px;}
.wsa{word-spacing:-62.991941px;}
.ws3{word-spacing:-17.190600px;}
.wsd{word-spacing:-14.881200px;}
.wse{word-spacing:-14.728200px;}
.ws11{word-spacing:-14.694000px;}
.wsf{word-spacing:-14.641800px;}
.ws10{word-spacing:-14.595840px;}
.ws1{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.238600px;}
.ws7{word-spacing:-11.880000px;}
.ws6{word-spacing:-11.592000px;}
.ws4{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.357800px;}
.wsb{word-spacing:-10.342200px;}
.ws5{word-spacing:-9.979200px;}
.ws9{word-spacing:-0.062992px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.138560px;}
._1{width:1.088640px;}
._2{width:2.536320px;}
._8{width:3.604800px;}
._17{width:5.088000px;}
._18{width:6.872640px;}
._6{width:8.015040px;}
._14{width:9.043200px;}
._15{width:10.213440px;}
._20{width:11.856960px;}
._7{width:12.941760px;}
._22{width:15.632640px;}
._9{width:17.214720px;}
._4{width:18.679680px;}
._5{width:19.805760px;}
._10{width:21.859200px;}
._11{width:22.915200px;}
._e{width:23.978880px;}
._f{width:25.174080px;}
._3{width:26.468160px;}
._1f{width:28.218240px;}
._c{width:29.476800px;}
._16{width:31.331520px;}
._2c{width:32.656320px;}
._29{width:34.527360px;}
._b{width:36.022080px;}
._a{width:37.239360px;}
._12{width:38.423040px;}
._24{width:39.744000px;}
._13{width:40.762560px;}
._d{width:41.996160px;}
._53{width:43.134720px;}
._25{width:44.182080px;}
._48{width:45.273840px;}
._26{width:46.301760px;}
._27{width:47.560320px;}
._2b{width:48.620160px;}
._2d{width:50.221440px;}
._4b{width:51.785520px;}
._1b{width:53.654400px;}
._44{width:54.979200px;}
._31{width:56.125440px;}
._3d{width:57.695040px;}
._1e{width:59.417280px;}
._37{width:60.742080px;}
._40{width:62.530560px;}
._1d{width:64.848960px;}
._1c{width:66.173760px;}
._33{width:67.564800px;}
._28{width:68.889600px;}
._41{width:70.040640px;}
._23{width:71.075520px;}
._3b{width:72.412800px;}
._2e{width:73.658880px;}
._32{width:74.718720px;}
._39{width:76.122240px;}
._47{width:79.897920px;}
._3f{width:81.273840px;}
._42{width:82.474080px;}
._46{width:84.324240px;}
._45{width:85.593840px;}
._4a{width:86.687520px;}
._38{width:87.834240px;}
._2f{width:89.026560px;}
._3c{width:91.013760px;}
._30{width:92.802240px;}
._5a{width:94.524480px;}
._3e{width:96.457920px;}
._34{width:99.293760px;}
._5c{width:101.214720px;}
._55{width:102.738240px;}
._4c{width:104.990400px;}
._5d{width:107.838720px;}
._54{width:109.163520px;}
._52{width:110.554560px;}
._58{width:111.945600px;}
._35{width:113.734080px;}
._49{width:115.108800px;}
._56{width:117.443520px;}
._57{width:121.616640px;}
._59{width:123.140160px;}
._21{width:128.108160px;}
._19{width:132.106560px;}
._43{width:137.712960px;}
._5e{width:139.513920px;}
._5b{width:141.356160px;}
._3a{width:143.277120px;}
._4d{width:148.257600px;}
._5f{width:151.900800px;}
._50{width:157.452480px;}
._36{width:171.905280px;}
._51{width:185.339520px;}
._2a{width:196.931520px;}
._61{width:205.741440px;}
._60{width:206.946240px;}
._4f{width:232.966080px;}
._1a{width:846.230160px;}
._4e{width:849.185760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(11,11,11);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:45.360000px;}
.fs5{font-size:48.240000px;}
.fsc{font-size:50.848916px;}
.fs9{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fsa{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fsd{font-size:92.880000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.180000px;}
.y59{bottom:2.685000px;}
.y4a{bottom:3.045000px;}
.y4e{bottom:3.225000px;}
.y18{bottom:3.240000px;}
.ya2{bottom:3.585000px;}
.y8f{bottom:3.600000px;}
.y9e{bottom:3.765000px;}
.y93{bottom:3.780000px;}
.y6{bottom:4.140000px;}
.y5f{bottom:4.860000px;}
.y37{bottom:5.400000px;}
.y3a{bottom:5.580000px;}
.yb{bottom:5.760000px;}
.y3f{bottom:6.120000px;}
.y15{bottom:9.900000px;}
.y54{bottom:14.925000px;}
.y5b{bottom:16.020000px;}
.y58{bottom:16.725000px;}
.y49{bottom:18.885000px;}
.y4d{bottom:19.065000px;}
.y17{bottom:19.080000px;}
.y5e{bottom:20.340000px;}
.ye2{bottom:23.040000px;}
.y36{bottom:23.580000px;}
.y5{bottom:23.610000px;}
.y39{bottom:23.760000px;}
.y53{bottom:27.525000px;}
.y57{bottom:30.765000px;}
.y48{bottom:31.665000px;}
.y4c{bottom:31.845000px;}
.y50{bottom:34.905000px;}
.y45{bottom:34.920000px;}
.y5d{bottom:36.540000px;}
.y14{bottom:40.680000px;}
.y35{bottom:41.760000px;}
.y4{bottom:42.870000px;}
.y91{bottom:43.740000px;}
.y56{bottom:44.985000px;}
.y9{bottom:46.980000px;}
.y4f{bottom:50.745000px;}
.y44{bottom:50.760000px;}
.y5c{bottom:54.360000px;}
.y33{bottom:56.505000px;}
.y52{bottom:59.925000px;}
.y55{bottom:61.185000px;}
.y13{bottom:62.460000px;}
.yaa{bottom:63.900000px;}
.y3{bottom:63.930000px;}
.y97{bottom:64.110000px;}
.y8{bottom:66.780000px;}
.ya0{bottom:73.965000px;}
.y32{bottom:75.945000px;}
.y12{bottom:93.285000px;}
.y47{bottom:93.810000px;}
.y31{bottom:95.205000px;}
.yd3{bottom:114.105000px;}
.yb9{bottom:114.120000px;}
.yc6{bottom:114.300000px;}
.y30{bottom:114.645000px;}
.y104{bottom:114.840000px;}
.y11{bottom:115.065000px;}
.y8d{bottom:118.980000px;}
.ya9{bottom:128.160000px;}
.y60{bottom:132.120000px;}
.y12f{bottom:133.200000px;}
.y2f{bottom:133.905000px;}
.y103{bottom:136.980000px;}
.y8c{bottom:141.120000px;}
.y10{bottom:145.845000px;}
.yb0{bottom:148.140000px;}
.y5a{bottom:151.380000px;}
.y2e{bottom:153.390000px;}
.y12e{bottom:155.340000px;}
.y102{bottom:159.300000px;}
.y8b{bottom:163.440000px;}
.yf{bottom:168.165000px;}
.yaf{bottom:168.300000px;}
.y2d{bottom:172.650000px;}
.y12d{bottom:177.660000px;}
.y101{bottom:181.440000px;}
.y8a{bottom:185.760000px;}
.yae{bottom:188.460000px;}
.y2c{bottom:191.910000px;}
.ye{bottom:198.585000px;}
.y12c{bottom:199.980000px;}
.y100{bottom:203.760000px;}
.y89{bottom:207.930000px;}
.yad{bottom:208.485000px;}
.y2b{bottom:211.350000px;}
.yde{bottom:212.970000px;}
.y51{bottom:217.125000px;}
.y12b{bottom:222.150000px;}
.yff{bottom:226.110000px;}
.yd{bottom:228.285000px;}
.yac{bottom:228.645000px;}
.yd2{bottom:229.365000px;}
.y88{bottom:230.250000px;}
.y2a{bottom:230.610000px;}
.y12a{bottom:244.470000px;}
.yfe{bottom:248.250000px;}
.yab{bottom:248.805000px;}
.ydd{bottom:249.345000px;}
.y29{bottom:250.050000px;}
.y87{bottom:252.390000px;}
.y129{bottom:266.610000px;}
.y9f{bottom:268.785000px;}
.y28{bottom:269.310000px;}
.ydc{bottom:269.505000px;}
.yfd{bottom:270.570000px;}
.y86{bottom:274.710000px;}
.yfc{bottom:286.965000px;}
.y27{bottom:288.750000px;}
.y128{bottom:288.930000px;}
.ya8{bottom:288.945000px;}
.y19{bottom:289.665000px;}
.y85{bottom:297.030000px;}
.y127{bottom:305.325000px;}
.yfb{bottom:307.125000px;}
.y26{bottom:308.010000px;}
.ya7{bottom:308.925000px;}
.ydb{bottom:309.645000px;}
.y84{bottom:319.170000px;}
.y126{bottom:325.485000px;}
.y25{bottom:327.450000px;}
.ya6{bottom:329.085000px;}
.yda{bottom:329.805000px;}
.yfa{bottom:333.750000px;}
.y83{bottom:341.490000px;}
.y24{bottom:346.710000px;}
.ya5{bottom:349.245000px;}
.yd9{bottom:349.965000px;}
.y125{bottom:352.110000px;}
.y4b{bottom:353.025000px;}
.yf9{bottom:355.890000px;}
.y82{bottom:363.630000px;}
.y23{bottom:366.150000px;}
.ya4{bottom:369.225000px;}
.yd8{bottom:369.945000px;}
.y124{bottom:374.250000px;}
.yf8{bottom:378.210000px;}
.y22{bottom:385.410000px;}
.y81{bottom:385.950000px;}
.ya3{bottom:389.385000px;}
.yd7{bottom:390.105000px;}
.y123{bottom:396.570000px;}
.yf7{bottom:400.530000px;}
.y21{bottom:404.880000px;}
.y46{bottom:407.565000px;}
.y80{bottom:408.090000px;}
.ya1{bottom:409.545000px;}
.yd6{bottom:410.085000px;}
.y122{bottom:418.890000px;}
.yf6{bottom:422.670000px;}
.y20{bottom:424.140000px;}
.y96{bottom:429.525000px;}
.yd5{bottom:430.245000px;}
.y7f{bottom:430.410000px;}
.y121{bottom:441.075000px;}
.y1f{bottom:443.580000px;}
.yf5{bottom:445.035000px;}
.y9d{bottom:449.715000px;}
.yd4{bottom:450.435000px;}
.y7e{bottom:452.775000px;}
.y1e{bottom:462.840000px;}
.y120{bottom:463.395000px;}
.yf4{bottom:467.175000px;}
.y9c{bottom:469.875000px;}
.yc5{bottom:470.415000px;}
.y7d{bottom:474.915000px;}
.y1d{bottom:482.100000px;}
.y11f{bottom:485.535000px;}
.yf3{bottom:489.495000px;}
.y9b{bottom:489.855000px;}
.yd1{bottom:490.575000px;}
.y7c{bottom:497.235000px;}
.y1c{bottom:501.540000px;}
.y11e{bottom:507.855000px;}
.y9a{bottom:510.015000px;}
.yd0{bottom:510.735000px;}
.yf2{bottom:511.635000px;}
.y43{bottom:513.975000px;}
.y7b{bottom:519.375000px;}
.y1b{bottom:520.800000px;}
.y99{bottom:529.995000px;}
.y11d{bottom:530.175000px;}
.ycf{bottom:530.715000px;}
.yf1{bottom:533.955000px;}
.y1a{bottom:540.240000px;}
.y7a{bottom:541.695000px;}
.y11c{bottom:546.555000px;}
.y98{bottom:550.155000px;}
.yce{bottom:550.875000px;}
.yf0{bottom:556.275000px;}
.y79{bottom:564.015000px;}
.y11b{bottom:566.535000px;}
.y90{bottom:570.315000px;}
.ycd{bottom:571.035000px;}
.y42{bottom:577.335000px;}
.yef{bottom:578.415000px;}
.y78{bottom:586.155000px;}
.y95{bottom:590.295000px;}
.ycc{bottom:591.015000px;}
.y11a{bottom:593.355000px;}
.y41{bottom:595.515000px;}
.yee{bottom:600.735000px;}
.y77{bottom:608.475000px;}
.y94{bottom:610.455000px;}
.ycb{bottom:611.175000px;}
.y40{bottom:613.695000px;}
.y119{bottom:615.495000px;}
.yed{bottom:622.875000px;}
.y76{bottom:630.615000px;}
.yca{bottom:631.155000px;}
.y3e{bottom:631.875000px;}
.y118{bottom:637.815000px;}
.yec{bottom:645.195000px;}
.y3d{bottom:650.055000px;}
.y92{bottom:650.595000px;}
.yc9{bottom:651.315000px;}
.y75{bottom:652.935000px;}
.y117{bottom:659.955000px;}
.yeb{bottom:667.515000px;}
.y8e{bottom:670.755000px;}
.yc8{bottom:671.475000px;}
.y74{bottom:675.075000px;}
.y116{bottom:682.305000px;}
.y3c{bottom:686.445000px;}
.yea{bottom:686.805000px;}
.yc7{bottom:691.485000px;}
.y73{bottom:697.425000px;}
.ye9{bottom:703.185000px;}
.y3b{bottom:704.625000px;}
.yb8{bottom:711.645000px;}
.y72{bottom:719.745000px;}
.y38{bottom:722.805000px;}
.y115{bottom:726.765000px;}
.yc4{bottom:731.805000px;}
.y71{bottom:741.885000px;}
.ye8{bottom:742.605000px;}
.y114{bottom:749.085000px;}
.yc3{bottom:751.785000px;}
.y34{bottom:759.345000px;}
.ye7{bottom:762.765000px;}
.y70{bottom:764.205000px;}
.y113{bottom:771.225000px;}
.yc2{bottom:771.945000px;}
.y6f{bottom:786.345000px;}
.yc1{bottom:791.925000px;}
.y112{bottom:793.545000px;}
.ye6{bottom:802.185000px;}
.y6e{bottom:808.665000px;}
.y111{bottom:809.925000px;}
.yc0{bottom:812.085000px;}
.y16{bottom:813.885000px;}
.ye5{bottom:822.345000px;}
.y110{bottom:830.085000px;}
.y6d{bottom:830.985000px;}
.ybf{bottom:832.245000px;}
.ye4{bottom:842.325000px;}
.yc{bottom:845.565000px;}
.ybe{bottom:852.225000px;}
.y6c{bottom:853.125000px;}
.y10f{bottom:856.725000px;}
.ye3{bottom:862.485000px;}
.ybd{bottom:872.385000px;}
.y6b{bottom:875.445000px;}
.y10e{bottom:878.865000px;}
.ye1{bottom:882.645000px;}
.ybc{bottom:892.545000px;}
.y6a{bottom:897.585000px;}
.y10d{bottom:901.185000px;}
.ybb{bottom:912.570000px;}
.y69{bottom:919.950000px;}
.y10c{bottom:923.550000px;}
.ye0{bottom:925.710000px;}
.yba{bottom:932.730000px;}
.y68{bottom:942.090000px;}
.ydf{bottom:945.150000px;}
.y10b{bottom:945.690000px;}
.yb7{bottom:952.890000px;}
.y67{bottom:964.410000px;}
.y10a{bottom:968.010000px;}
.yb6{bottom:972.870000px;}
.y66{bottom:986.730000px;}
.y109{bottom:990.150000px;}
.yb5{bottom:993.030000px;}
.y65{bottom:1008.870000px;}
.y108{bottom:1012.470000px;}
.yb4{bottom:1013.010000px;}
.y64{bottom:1031.190000px;}
.yb3{bottom:1033.170000px;}
.y107{bottom:1034.790000px;}
.y106{bottom:1051.170000px;}
.y63{bottom:1053.330000px;}
.y105{bottom:1071.150000px;}
.yb2{bottom:1073.310000px;}
.y62{bottom:1075.650000px;}
.ya{bottom:1092.390000px;}
.yb1{bottom:1093.470000px;}
.y61{bottom:1097.970000px;}
.y7{bottom:1118.130000px;}
.y1{bottom:1137.030000px;}
.h13{height:18.165000px;}
.h11{height:18.180000px;}
.h21{height:19.245000px;}
.h29{height:19.258500px;}
.h27{height:19.260000px;}
.h2b{height:19.282500px;}
.h1e{height:19.290000px;}
.h26{height:19.296000px;}
.h20{height:19.425000px;}
.h28{height:19.438500px;}
.h2c{height:19.440000px;}
.h23{height:19.461000px;}
.h7{height:21.225000px;}
.hc{height:31.680000px;}
.h12{height:36.390000px;}
.h10{height:36.540000px;}
.h30{height:38.700000px;}
.h2f{height:38.722500px;}
.ha{height:40.522500px;}
.h19{height:40.843828px;}
.h1b{height:43.060897px;}
.h14{height:43.282266px;}
.h1c{height:44.820000px;}
.hd{height:45.720703px;}
.h17{height:54.525000px;}
.hf{height:54.540000px;}
.h5{height:56.084062px;}
.hb{height:58.522500px;}
.h8{height:60.960938px;}
.h15{height:63.345000px;}
.h1d{height:63.492188px;}
.h1a{height:65.736000px;}
.h6{height:65.837812px;}
.h3{height:65.884219px;}
.h31{height:68.084282px;}
.h18{height:72.525000px;}
.h2{height:83.370000px;}
.h1f{height:99.705000px;}
.h16{height:106.401000px;}
.h4{height:117.792422px;}
.h25{height:139.896000px;}
.h22{height:140.061000px;}
.h24{height:160.005000px;}
.h2e{height:240.315000px;}
.h2a{height:240.330000px;}
.h2d{height:240.510000px;}
.h9{height:246.810000px;}
.he{height:555.900000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:46.260000px;}
.w16{width:46.296000px;}
.wd{width:59.976000px;}
.w20{width:68.205000px;}
.w1d{width:68.256000px;}
.w17{width:68.385000px;}
.wc{width:71.820000px;}
.w18{width:72.165000px;}
.w15{width:76.860000px;}
.w9{width:82.609500px;}
.w1e{width:89.841000px;}
.w19{width:90.021000px;}
.w1b{width:91.461000px;}
.wa{width:95.601000px;}
.w1a{width:114.141000px;}
.w2{width:115.189500px;}
.we{width:120.945000px;}
.w11{width:130.320000px;}
.w1f{width:132.501000px;}
.w14{width:138.081000px;}
.wf{width:154.455000px;}
.w4{width:156.949500px;}
.w12{width:172.830000px;}
.w7{width:178.219500px;}
.w10{width:180.199500px;}
.w13{width:206.880000px;}
.wb{width:217.099500px;}
.w8{width:515.085000px;}
.w5{width:536.355000px;}
.w3{width:578.115000px;}
.w6{width:693.315000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.130000px;}
.xc{left:12.229500px;}
.x6{left:14.565000px;}
.x16{left:25.729500px;}
.x10{left:30.229500px;}
.x1b{left:34.729500px;}
.xe{left:52.183500px;}
.xd{left:65.143500px;}
.x18{left:89.083500px;}
.x2{left:91.243500px;}
.x7{left:94.530000px;}
.x5{left:96.690000px;}
.x1{left:99.946500px;}
.x19{left:101.323500px;}
.x1f{left:102.600000px;}
.x13{left:104.743500px;}
.x8{left:108.036000px;}
.x17{left:118.423500px;}
.x48{left:123.516000px;}
.x1a{left:129.583500px;}
.x24{left:132.886500px;}
.x1c{left:134.083500px;}
.x49{left:150.510000px;}
.x20{left:162.030000px;}
.x34{left:167.250000px;}
.x11{left:169.228500px;}
.xf{left:176.608500px;}
.x3b{left:179.670000px;}
.x15{left:182.565000px;}
.x43{left:188.490000px;}
.x2d{left:198.945000px;}
.x44{left:201.645000px;}
.x12{left:204.688500px;}
.x4{left:206.490000px;}
.x35{left:210.825000px;}
.x3{left:215.145000px;}
.x33{left:216.570000px;}
.x3c{left:222.165000px;}
.xa{left:256.905000px;}
.x14{left:278.175000px;}
.x29{left:281.235000px;}
.x28{left:297.435000px;}
.x3d{left:314.355000px;}
.x36{left:325.695000px;}
.x23{left:334.515000px;}
.x2e{left:337.755000px;}
.x1d{left:350.535000px;}
.x1e{left:384.375000px;}
.x3e{left:392.115000px;}
.x37{left:403.275000px;}
.x2a{left:412.275000px;}
.x2f{left:415.335000px;}
.x25{left:423.255000px;}
.x3f{left:439.095000px;}
.x2c{left:446.505000px;}
.x38{left:450.300000px;}
.x45{left:459.660000px;}
.x30{left:462.360000px;}
.x21{left:473.145000px;}
.x26{left:483.960000px;}
.x4b{left:488.625000px;}
.x40{left:508.080000px;}
.x4a{left:515.625000px;}
.x39{left:519.420000px;}
.x22{left:527.145000px;}
.x46{left:528.600000px;}
.x31{left:531.480000px;}
.x41{left:581.160000px;}
.x2b{left:586.020000px;}
.x3a{left:592.320000px;}
.x47{left:601.500000px;}
.x32{left:604.380000px;}
.x27{left:605.820000px;}
.x42{left:629.070000px;}
.x9{left:762.810000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls16{letter-spacing:-0.853333pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.297067pt;}
.ls8{letter-spacing:-0.274133pt;}
.lsb{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.240533pt;}
.lsc{letter-spacing:-0.226667pt;}
.lsd{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.061333pt;}
.ls9{letter-spacing:0.074133pt;}
.ls15{letter-spacing:0.089600pt;}
.ls1a{letter-spacing:0.107733pt;}
.ls5{letter-spacing:0.133120pt;}
.ls11{letter-spacing:0.138133pt;}
.ls0{letter-spacing:0.215040pt;}
.lsf{letter-spacing:0.274133pt;}
.ls2{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.395323pt;}
.ls4{letter-spacing:0.592640pt;}
.ls17{letter-spacing:2.810027pt;}
.ls18{letter-spacing:2.831360pt;}
.ls12{letter-spacing:34.810027pt;}
.ls13{letter-spacing:34.831360pt;}
.ws2{word-spacing:-58.880000pt;}
.wsa{word-spacing:-55.992837pt;}
.ws3{word-spacing:-15.280533pt;}
.wsd{word-spacing:-13.227733pt;}
.wse{word-spacing:-13.091733pt;}
.ws11{word-spacing:-13.061333pt;}
.wsf{word-spacing:-13.014933pt;}
.ws10{word-spacing:-12.974080pt;}
.ws1{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.656533pt;}
.ws7{word-spacing:-10.560000pt;}
.ws6{word-spacing:-10.304000pt;}
.ws4{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.206933pt;}
.wsb{word-spacing:-9.193067pt;}
.ws5{word-spacing:-8.870400pt;}
.ws9{word-spacing:-0.055993pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-1.012053pt;}
._1{width:0.967680pt;}
._2{width:2.254507pt;}
._8{width:3.204267pt;}
._17{width:4.522667pt;}
._18{width:6.109013pt;}
._6{width:7.124480pt;}
._14{width:8.038400pt;}
._15{width:9.078613pt;}
._20{width:10.539520pt;}
._7{width:11.503787pt;}
._22{width:13.895680pt;}
._9{width:15.301973pt;}
._4{width:16.604160pt;}
._5{width:17.605120pt;}
._10{width:19.430400pt;}
._11{width:20.369067pt;}
._e{width:21.314560pt;}
._f{width:22.376960pt;}
._3{width:23.527253pt;}
._1f{width:25.082880pt;}
._c{width:26.201600pt;}
._16{width:27.850240pt;}
._2c{width:29.027840pt;}
._29{width:30.690987pt;}
._b{width:32.019627pt;}
._a{width:33.101653pt;}
._12{width:34.153813pt;}
._24{width:35.328000pt;}
._13{width:36.233387pt;}
._d{width:37.329920pt;}
._53{width:38.341973pt;}
._25{width:39.272960pt;}
._48{width:40.243413pt;}
._26{width:41.157120pt;}
._27{width:42.275840pt;}
._2b{width:43.217920pt;}
._2d{width:44.641280pt;}
._4b{width:46.031573pt;}
._1b{width:47.692800pt;}
._44{width:48.870400pt;}
._31{width:49.889280pt;}
._3d{width:51.284480pt;}
._1e{width:52.815360pt;}
._37{width:53.992960pt;}
._40{width:55.582720pt;}
._1d{width:57.643520pt;}
._1c{width:58.821120pt;}
._33{width:60.057600pt;}
._28{width:61.235200pt;}
._41{width:62.258347pt;}
._23{width:63.178240pt;}
._3b{width:64.366933pt;}
._2e{width:65.474560pt;}
._32{width:66.416640pt;}
._39{width:67.664213pt;}
._47{width:71.020373pt;}
._3f{width:72.243413pt;}
._42{width:73.310293pt;}
._46{width:74.954880pt;}
._45{width:76.083413pt;}
._4a{width:77.055573pt;}
._38{width:78.074880pt;}
._2f{width:79.134720pt;}
._3c{width:80.901120pt;}
._30{width:82.490880pt;}
._5a{width:84.021760pt;}
._3e{width:85.740373pt;}
._34{width:88.261120pt;}
._5c{width:89.968640pt;}
._55{width:91.322880pt;}
._4c{width:93.324800pt;}
._5d{width:95.856640pt;}
._54{width:97.034240pt;}
._52{width:98.270720pt;}
._58{width:99.507200pt;}
._35{width:101.096960pt;}
._49{width:102.318933pt;}
._56{width:104.394240pt;}
._57{width:108.103680pt;}
._59{width:109.457920pt;}
._21{width:113.873920pt;}
._19{width:117.428053pt;}
._43{width:122.411520pt;}
._5e{width:124.012373pt;}
._5b{width:125.649920pt;}
._3a{width:127.357440pt;}
._4d{width:131.784533pt;}
._5f{width:135.022933pt;}
._50{width:139.957760pt;}
._36{width:152.804693pt;}
._51{width:164.746240pt;}
._2a{width:175.050240pt;}
._61{width:182.881280pt;}
._60{width:183.952213pt;}
._4f{width:207.080960pt;}
._1a{width:752.204587pt;}
._4e{width:754.831787pt;}
.fs6{font-size:40.320000pt;}
.fs5{font-size:42.880000pt;}
.fsc{font-size:45.199037pt;}
.fs9{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fsa{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fsd{font-size:82.560000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.160000pt;}
.y59{bottom:2.386667pt;}
.y4a{bottom:2.706667pt;}
.y4e{bottom:2.866667pt;}
.y18{bottom:2.880000pt;}
.ya2{bottom:3.186667pt;}
.y8f{bottom:3.200000pt;}
.y9e{bottom:3.346667pt;}
.y93{bottom:3.360000pt;}
.y6{bottom:3.680000pt;}
.y5f{bottom:4.320000pt;}
.y37{bottom:4.800000pt;}
.y3a{bottom:4.960000pt;}
.yb{bottom:5.120000pt;}
.y3f{bottom:5.440000pt;}
.y15{bottom:8.800000pt;}
.y54{bottom:13.266667pt;}
.y5b{bottom:14.240000pt;}
.y58{bottom:14.866667pt;}
.y49{bottom:16.786667pt;}
.y4d{bottom:16.946667pt;}
.y17{bottom:16.960000pt;}
.y5e{bottom:18.080000pt;}
.ye2{bottom:20.480000pt;}
.y36{bottom:20.960000pt;}
.y5{bottom:20.986667pt;}
.y39{bottom:21.120000pt;}
.y53{bottom:24.466667pt;}
.y57{bottom:27.346667pt;}
.y48{bottom:28.146667pt;}
.y4c{bottom:28.306667pt;}
.y50{bottom:31.026667pt;}
.y45{bottom:31.040000pt;}
.y5d{bottom:32.480000pt;}
.y14{bottom:36.160000pt;}
.y35{bottom:37.120000pt;}
.y4{bottom:38.106667pt;}
.y91{bottom:38.880000pt;}
.y56{bottom:39.986667pt;}
.y9{bottom:41.760000pt;}
.y4f{bottom:45.106667pt;}
.y44{bottom:45.120000pt;}
.y5c{bottom:48.320000pt;}
.y33{bottom:50.226667pt;}
.y52{bottom:53.266667pt;}
.y55{bottom:54.386667pt;}
.y13{bottom:55.520000pt;}
.yaa{bottom:56.800000pt;}
.y3{bottom:56.826667pt;}
.y97{bottom:56.986667pt;}
.y8{bottom:59.360000pt;}
.ya0{bottom:65.746667pt;}
.y32{bottom:67.506667pt;}
.y12{bottom:82.920000pt;}
.y47{bottom:83.386667pt;}
.y31{bottom:84.626667pt;}
.yd3{bottom:101.426667pt;}
.yb9{bottom:101.440000pt;}
.yc6{bottom:101.600000pt;}
.y30{bottom:101.906667pt;}
.y104{bottom:102.080000pt;}
.y11{bottom:102.280000pt;}
.y8d{bottom:105.760000pt;}
.ya9{bottom:113.920000pt;}
.y60{bottom:117.440000pt;}
.y12f{bottom:118.400000pt;}
.y2f{bottom:119.026667pt;}
.y103{bottom:121.760000pt;}
.y8c{bottom:125.440000pt;}
.y10{bottom:129.640000pt;}
.yb0{bottom:131.680000pt;}
.y5a{bottom:134.560000pt;}
.y2e{bottom:136.346667pt;}
.y12e{bottom:138.080000pt;}
.y102{bottom:141.600000pt;}
.y8b{bottom:145.280000pt;}
.yf{bottom:149.480000pt;}
.yaf{bottom:149.600000pt;}
.y2d{bottom:153.466667pt;}
.y12d{bottom:157.920000pt;}
.y101{bottom:161.280000pt;}
.y8a{bottom:165.120000pt;}
.yae{bottom:167.520000pt;}
.y2c{bottom:170.586667pt;}
.ye{bottom:176.520000pt;}
.y12c{bottom:177.760000pt;}
.y100{bottom:181.120000pt;}
.y89{bottom:184.826667pt;}
.yad{bottom:185.320000pt;}
.y2b{bottom:187.866667pt;}
.yde{bottom:189.306667pt;}
.y51{bottom:193.000000pt;}
.y12b{bottom:197.466667pt;}
.yff{bottom:200.986667pt;}
.yd{bottom:202.920000pt;}
.yac{bottom:203.240000pt;}
.yd2{bottom:203.880000pt;}
.y88{bottom:204.666667pt;}
.y2a{bottom:204.986667pt;}
.y12a{bottom:217.306667pt;}
.yfe{bottom:220.666667pt;}
.yab{bottom:221.160000pt;}
.ydd{bottom:221.640000pt;}
.y29{bottom:222.266667pt;}
.y87{bottom:224.346667pt;}
.y129{bottom:236.986667pt;}
.y9f{bottom:238.920000pt;}
.y28{bottom:239.386667pt;}
.ydc{bottom:239.560000pt;}
.yfd{bottom:240.506667pt;}
.y86{bottom:244.186667pt;}
.yfc{bottom:255.080000pt;}
.y27{bottom:256.666667pt;}
.y128{bottom:256.826667pt;}
.ya8{bottom:256.840000pt;}
.y19{bottom:257.480000pt;}
.y85{bottom:264.026667pt;}
.y127{bottom:271.400000pt;}
.yfb{bottom:273.000000pt;}
.y26{bottom:273.786667pt;}
.ya7{bottom:274.600000pt;}
.ydb{bottom:275.240000pt;}
.y84{bottom:283.706667pt;}
.y126{bottom:289.320000pt;}
.y25{bottom:291.066667pt;}
.ya6{bottom:292.520000pt;}
.yda{bottom:293.160000pt;}
.yfa{bottom:296.666667pt;}
.y83{bottom:303.546667pt;}
.y24{bottom:308.186667pt;}
.ya5{bottom:310.440000pt;}
.yd9{bottom:311.080000pt;}
.y125{bottom:312.986667pt;}
.y4b{bottom:313.800000pt;}
.yf9{bottom:316.346667pt;}
.y82{bottom:323.226667pt;}
.y23{bottom:325.466667pt;}
.ya4{bottom:328.200000pt;}
.yd8{bottom:328.840000pt;}
.y124{bottom:332.666667pt;}
.yf8{bottom:336.186667pt;}
.y22{bottom:342.586667pt;}
.y81{bottom:343.066667pt;}
.ya3{bottom:346.120000pt;}
.yd7{bottom:346.760000pt;}
.y123{bottom:352.506667pt;}
.yf7{bottom:356.026667pt;}
.y21{bottom:359.893333pt;}
.y46{bottom:362.280000pt;}
.y80{bottom:362.746667pt;}
.ya1{bottom:364.040000pt;}
.yd6{bottom:364.520000pt;}
.y122{bottom:372.346667pt;}
.yf6{bottom:375.706667pt;}
.y20{bottom:377.013333pt;}
.y96{bottom:381.800000pt;}
.yd5{bottom:382.440000pt;}
.y7f{bottom:382.586667pt;}
.y121{bottom:392.066667pt;}
.y1f{bottom:394.293333pt;}
.yf5{bottom:395.586667pt;}
.y9d{bottom:399.746667pt;}
.yd4{bottom:400.386667pt;}
.y7e{bottom:402.466667pt;}
.y1e{bottom:411.413333pt;}
.y120{bottom:411.906667pt;}
.yf4{bottom:415.266667pt;}
.y9c{bottom:417.666667pt;}
.yc5{bottom:418.146667pt;}
.y7d{bottom:422.146667pt;}
.y1d{bottom:428.533333pt;}
.y11f{bottom:431.586667pt;}
.yf3{bottom:435.106667pt;}
.y9b{bottom:435.426667pt;}
.yd1{bottom:436.066667pt;}
.y7c{bottom:441.986667pt;}
.y1c{bottom:445.813333pt;}
.y11e{bottom:451.426667pt;}
.y9a{bottom:453.346667pt;}
.yd0{bottom:453.986667pt;}
.yf2{bottom:454.786667pt;}
.y43{bottom:456.866667pt;}
.y7b{bottom:461.666667pt;}
.y1b{bottom:462.933333pt;}
.y99{bottom:471.106667pt;}
.y11d{bottom:471.266667pt;}
.ycf{bottom:471.746667pt;}
.yf1{bottom:474.626667pt;}
.y1a{bottom:480.213333pt;}
.y7a{bottom:481.506667pt;}
.y11c{bottom:485.826667pt;}
.y98{bottom:489.026667pt;}
.yce{bottom:489.666667pt;}
.yf0{bottom:494.466667pt;}
.y79{bottom:501.346667pt;}
.y11b{bottom:503.586667pt;}
.y90{bottom:506.946667pt;}
.ycd{bottom:507.586667pt;}
.y42{bottom:513.186667pt;}
.yef{bottom:514.146667pt;}
.y78{bottom:521.026667pt;}
.y95{bottom:524.706667pt;}
.ycc{bottom:525.346667pt;}
.y11a{bottom:527.426667pt;}
.y41{bottom:529.346667pt;}
.yee{bottom:533.986667pt;}
.y77{bottom:540.866667pt;}
.y94{bottom:542.626667pt;}
.ycb{bottom:543.266667pt;}
.y40{bottom:545.506667pt;}
.y119{bottom:547.106667pt;}
.yed{bottom:553.666667pt;}
.y76{bottom:560.546667pt;}
.yca{bottom:561.026667pt;}
.y3e{bottom:561.666667pt;}
.y118{bottom:566.946667pt;}
.yec{bottom:573.506667pt;}
.y3d{bottom:577.826667pt;}
.y92{bottom:578.306667pt;}
.yc9{bottom:578.946667pt;}
.y75{bottom:580.386667pt;}
.y117{bottom:586.626667pt;}
.yeb{bottom:593.346667pt;}
.y8e{bottom:596.226667pt;}
.yc8{bottom:596.866667pt;}
.y74{bottom:600.066667pt;}
.y116{bottom:606.493333pt;}
.y3c{bottom:610.173333pt;}
.yea{bottom:610.493333pt;}
.yc7{bottom:614.653333pt;}
.y73{bottom:619.933333pt;}
.ye9{bottom:625.053333pt;}
.y3b{bottom:626.333333pt;}
.yb8{bottom:632.573333pt;}
.y72{bottom:639.773333pt;}
.y38{bottom:642.493333pt;}
.y115{bottom:646.013333pt;}
.yc4{bottom:650.493333pt;}
.y71{bottom:659.453333pt;}
.ye8{bottom:660.093333pt;}
.y114{bottom:665.853333pt;}
.yc3{bottom:668.253333pt;}
.y34{bottom:674.973333pt;}
.ye7{bottom:678.013333pt;}
.y70{bottom:679.293333pt;}
.y113{bottom:685.533333pt;}
.yc2{bottom:686.173333pt;}
.y6f{bottom:698.973333pt;}
.yc1{bottom:703.933333pt;}
.y112{bottom:705.373333pt;}
.ye6{bottom:713.053333pt;}
.y6e{bottom:718.813333pt;}
.y111{bottom:719.933333pt;}
.yc0{bottom:721.853333pt;}
.y16{bottom:723.453333pt;}
.ye5{bottom:730.973333pt;}
.y110{bottom:737.853333pt;}
.y6d{bottom:738.653333pt;}
.ybf{bottom:739.773333pt;}
.ye4{bottom:748.733333pt;}
.yc{bottom:751.613333pt;}
.ybe{bottom:757.533333pt;}
.y6c{bottom:758.333333pt;}
.y10f{bottom:761.533333pt;}
.ye3{bottom:766.653333pt;}
.ybd{bottom:775.453333pt;}
.y6b{bottom:778.173333pt;}
.y10e{bottom:781.213333pt;}
.ye1{bottom:784.573333pt;}
.ybc{bottom:793.373333pt;}
.y6a{bottom:797.853333pt;}
.y10d{bottom:801.053333pt;}
.ybb{bottom:811.173333pt;}
.y69{bottom:817.733333pt;}
.y10c{bottom:820.933333pt;}
.ye0{bottom:822.853333pt;}
.yba{bottom:829.093333pt;}
.y68{bottom:837.413333pt;}
.ydf{bottom:840.133333pt;}
.y10b{bottom:840.613333pt;}
.yb7{bottom:847.013333pt;}
.y67{bottom:857.253333pt;}
.y10a{bottom:860.453333pt;}
.yb6{bottom:864.773333pt;}
.y66{bottom:877.093333pt;}
.y109{bottom:880.133333pt;}
.yb5{bottom:882.693333pt;}
.y65{bottom:896.773333pt;}
.y108{bottom:899.973333pt;}
.yb4{bottom:900.453333pt;}
.y64{bottom:916.613333pt;}
.yb3{bottom:918.373333pt;}
.y107{bottom:919.813333pt;}
.y106{bottom:934.373333pt;}
.y63{bottom:936.293333pt;}
.y105{bottom:952.133333pt;}
.yb2{bottom:954.053333pt;}
.y62{bottom:956.133333pt;}
.ya{bottom:971.013333pt;}
.yb1{bottom:971.973333pt;}
.y61{bottom:975.973333pt;}
.y7{bottom:993.893333pt;}
.y1{bottom:1010.693333pt;}
.h13{height:16.146667pt;}
.h11{height:16.160000pt;}
.h21{height:17.106667pt;}
.h29{height:17.118667pt;}
.h27{height:17.120000pt;}
.h2b{height:17.140000pt;}
.h1e{height:17.146667pt;}
.h26{height:17.152000pt;}
.h20{height:17.266667pt;}
.h28{height:17.278667pt;}
.h2c{height:17.280000pt;}
.h23{height:17.298667pt;}
.h7{height:18.866667pt;}
.hc{height:28.160000pt;}
.h12{height:32.346667pt;}
.h10{height:32.480000pt;}
.h30{height:34.400000pt;}
.h2f{height:34.420000pt;}
.ha{height:36.020000pt;}
.h19{height:36.305625pt;}
.h1b{height:38.276353pt;}
.h14{height:38.473125pt;}
.h1c{height:39.840000pt;}
.hd{height:40.640625pt;}
.h17{height:48.466667pt;}
.hf{height:48.480000pt;}
.h5{height:49.852500pt;}
.hb{height:52.020000pt;}
.h8{height:54.187500pt;}
.h15{height:56.306667pt;}
.h1d{height:56.437500pt;}
.h1a{height:58.432000pt;}
.h6{height:58.522500pt;}
.h3{height:58.563750pt;}
.h31{height:60.519362pt;}
.h18{height:64.466667pt;}
.h2{height:74.106667pt;}
.h1f{height:88.626667pt;}
.h16{height:94.578667pt;}
.h4{height:104.704375pt;}
.h25{height:124.352000pt;}
.h22{height:124.498667pt;}
.h24{height:142.226667pt;}
.h2e{height:213.613333pt;}
.h2a{height:213.626667pt;}
.h2d{height:213.786667pt;}
.h9{height:219.386667pt;}
.he{height:494.133333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:41.120000pt;}
.w16{width:41.152000pt;}
.wd{width:53.312000pt;}
.w20{width:60.626667pt;}
.w1d{width:60.672000pt;}
.w17{width:60.786667pt;}
.wc{width:63.840000pt;}
.w18{width:64.146667pt;}
.w15{width:68.320000pt;}
.w9{width:73.430667pt;}
.w1e{width:79.858667pt;}
.w19{width:80.018667pt;}
.w1b{width:81.298667pt;}
.wa{width:84.978667pt;}
.w1a{width:101.458667pt;}
.w2{width:102.390667pt;}
.we{width:107.506667pt;}
.w11{width:115.840000pt;}
.w1f{width:117.778667pt;}
.w14{width:122.738667pt;}
.wf{width:137.293333pt;}
.w4{width:139.510667pt;}
.w12{width:153.626667pt;}
.w7{width:158.417333pt;}
.w10{width:160.177333pt;}
.w13{width:183.893333pt;}
.wb{width:192.977333pt;}
.w8{width:457.853333pt;}
.w5{width:476.760000pt;}
.w3{width:513.880000pt;}
.w6{width:616.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.226667pt;}
.xc{left:10.870667pt;}
.x6{left:12.946667pt;}
.x16{left:22.870667pt;}
.x10{left:26.870667pt;}
.x1b{left:30.870667pt;}
.xe{left:46.385333pt;}
.xd{left:57.905333pt;}
.x18{left:79.185333pt;}
.x2{left:81.105333pt;}
.x7{left:84.026667pt;}
.x5{left:85.946667pt;}
.x1{left:88.841333pt;}
.x19{left:90.065333pt;}
.x1f{left:91.200000pt;}
.x13{left:93.105333pt;}
.x8{left:96.032000pt;}
.x17{left:105.265333pt;}
.x48{left:109.792000pt;}
.x1a{left:115.185333pt;}
.x24{left:118.121333pt;}
.x1c{left:119.185333pt;}
.x49{left:133.786667pt;}
.x20{left:144.026667pt;}
.x34{left:148.666667pt;}
.x11{left:150.425333pt;}
.xf{left:156.985333pt;}
.x3b{left:159.706667pt;}
.x15{left:162.280000pt;}
.x43{left:167.546667pt;}
.x2d{left:176.840000pt;}
.x44{left:179.240000pt;}
.x12{left:181.945333pt;}
.x4{left:183.546667pt;}
.x35{left:187.400000pt;}
.x3{left:191.240000pt;}
.x33{left:192.506667pt;}
.x3c{left:197.480000pt;}
.xa{left:228.360000pt;}
.x14{left:247.266667pt;}
.x29{left:249.986667pt;}
.x28{left:264.386667pt;}
.x3d{left:279.426667pt;}
.x36{left:289.506667pt;}
.x23{left:297.346667pt;}
.x2e{left:300.226667pt;}
.x1d{left:311.586667pt;}
.x1e{left:341.666667pt;}
.x3e{left:348.546667pt;}
.x37{left:358.466667pt;}
.x2a{left:366.466667pt;}
.x2f{left:369.186667pt;}
.x25{left:376.226667pt;}
.x3f{left:390.306667pt;}
.x2c{left:396.893333pt;}
.x38{left:400.266667pt;}
.x45{left:408.586667pt;}
.x30{left:410.986667pt;}
.x21{left:420.573333pt;}
.x26{left:430.186667pt;}
.x4b{left:434.333333pt;}
.x40{left:451.626667pt;}
.x4a{left:458.333333pt;}
.x39{left:461.706667pt;}
.x22{left:468.573333pt;}
.x46{left:469.866667pt;}
.x31{left:472.426667pt;}
.x41{left:516.586667pt;}
.x2b{left:520.906667pt;}
.x3a{left:526.506667pt;}
.x47{left:534.666667pt;}
.x32{left:537.226667pt;}
.x27{left:538.506667pt;}
.x42{left:559.173333pt;}
.x9{left:678.053333pt;}
}




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