
    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_37f62a64296734d8a8bcad4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_833d062d3d7e0c9bf819c76f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_940448596def34082412d950.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9154235a4e958092262c6423.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_75968cc6010a577f1dfbdba7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3e14eb5fd0751a57ffc8952d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dc7d7ee00ba608d41a679bbc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_12fc512b2b23bc04290c6730.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7cdc5838cbc0eb9d655bf1fe.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4a3810b09cf1e6c1bf3df03b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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_036ade54557a1cefd4935ccb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.202148;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);}
.v8{vertical-align:-74.460000px;}
.v9{vertical-align:-70.560000px;}
.v7{vertical-align:-69.120000px;}
.v1{vertical-align:-63.360000px;}
.v4{vertical-align:-60.480000px;}
.v5{vertical-align:-59.040000px;}
.v6{vertical-align:-57.600000px;}
.v11{vertical-align:-55.920000px;}
.vd{vertical-align:-41.880000px;}
.v13{vertical-align:-37.320000px;}
.v3{vertical-align:-27.360000px;}
.vf{vertical-align:-20.880000px;}
.va{vertical-align:-16.440000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:20.880000px;}
.v2{vertical-align:27.360000px;}
.v12{vertical-align:37.320000px;}
.vc{vertical-align:41.940000px;}
.v10{vertical-align:48.960000px;}
.vb{vertical-align:61.920000px;}
.ls15{letter-spacing:-1.440000px;}
.ls2e{letter-spacing:-1.422000px;}
.ls1c{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.630000px;}
.ls28{letter-spacing:-0.456000px;}
.ls1d{letter-spacing:-0.443400px;}
.ls26{letter-spacing:-0.382800px;}
.ls27{letter-spacing:-0.238800px;}
.ls12{letter-spacing:-0.184200px;}
.lse{letter-spacing:-0.089400px;}
.ls10{letter-spacing:-0.072000px;}
.lsd{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.120000px;}
.ls25{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.466800px;}
.ls3{letter-spacing:0.493920px;}
.lsc{letter-spacing:0.498240px;}
.ls2d{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.840000px;}
.lsb{letter-spacing:0.869760px;}
.ls29{letter-spacing:1.056000px;}
.ls4{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.440000px;}
.ls24{letter-spacing:1.458000px;}
.ls7{letter-spacing:2.160000px;}
.ls2a{letter-spacing:3.600000px;}
.ls8{letter-spacing:5.040000px;}
.ls6{letter-spacing:7.920000px;}
.ls2c{letter-spacing:16.306560px;}
.ls5{letter-spacing:16.560000px;}
.ls14{letter-spacing:43.666560px;}
.ls2b{letter-spacing:46.546560px;}
.ls13{letter-spacing:63.826560px;}
.ls1b{letter-spacing:89.660640px;}
.ls1f{letter-spacing:256.116000px;}
.ls21{letter-spacing:424.193280px;}
.ls20{letter-spacing:424.253280px;}
.ls22{letter-spacing:424.433280px;}
.ls19{letter-spacing:601.476000px;}
.ls18{letter-spacing:876.900000px;}
.ls17{letter-spacing:913.056000px;}
.ls1a{letter-spacing:1054.152000px;}
.ls1e{letter-spacing:1156.416000px;}
.ls0{letter-spacing:1680.816000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-60.480000px;}
.ws17{word-spacing:-15.627000px;}
.wsa{word-spacing:-15.586800px;}
.wsd{word-spacing:-15.264000px;}
.ws0{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.184000px;}
.wsc{word-spacing:-13.875960px;}
.ws18{word-spacing:-13.698000px;}
.ws4{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.495800px;}
.ws14{word-spacing:-13.422720px;}
.ws6{word-spacing:-13.050000px;}
.ws12{word-spacing:-12.127920px;}
.ws11{word-spacing:-11.983920px;}
.ws13{word-spacing:-11.943264px;}
.ws2{word-spacing:-11.160000px;}
.ws15{word-spacing:-10.772064px;}
.ws16{word-spacing:-10.739520px;}
.ws3{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws5{word-spacing:-8.928000px;}
.ws8{word-spacing:0.000000px;}
.wsf{word-spacing:112.224000px;}
.wse{word-spacing:142.235040px;}
.ws10{word-spacing:156.934560px;}
._1b{margin-left:-3.899520px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._5{width:5.248320px;}
._6{width:7.096320px;}
._7{width:8.472960px;}
._8{width:10.111200px;}
._a{width:11.128320px;}
._9{width:12.519360px;}
._d{width:13.849920px;}
._b{width:16.329600px;}
._c{width:17.988480px;}
._1c{width:19.321440px;}
._1d{width:20.352960px;}
._16{width:69.377280px;}
._11{width:76.569120px;}
._15{width:98.097120px;}
._14{width:99.505440px;}
._17{width:125.829120px;}
._18{width:142.118400px;}
._e{width:201.724800px;}
._1a{width:214.811040px;}
._19{width:253.571040px;}
._10{width:347.340000px;}
._12{width:436.830240px;}
._13{width:451.350240px;}
._f{width:769.152960px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc7{color:rgb(127,127,127);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(64,64,64);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fsc{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsb{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fsf{font-size:47.520000px;}
.fs10{font-size:47.664000px;}
.fsa{font-size:54.720000px;}
.fse{font-size:54.864000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fsd{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.yf7{bottom:2.850000px;}
.y4c{bottom:2.875500px;}
.y9b{bottom:3.585000px;}
.y99{bottom:3.600000px;}
.y9d{bottom:3.945000px;}
.y5{bottom:3.960000px;}
.yab{bottom:3.990000px;}
.ye7{bottom:4.785000px;}
.y59{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.yc2{bottom:9.390000px;}
.y4b{bottom:10.795500px;}
.y103{bottom:14.010000px;}
.y57{bottom:16.555500px;}
.yf2{bottom:17.790000px;}
.ye6{bottom:19.905000px;}
.y4{bottom:21.240000px;}
.y102{bottom:25.890000px;}
.y56{bottom:33.835500px;}
.ye5{bottom:35.385000px;}
.y101{bottom:38.130000px;}
.y42{bottom:38.520000px;}
.y4a{bottom:40.315500px;}
.y3{bottom:44.280000px;}
.yfa{bottom:49.605000px;}
.ye0{bottom:51.225000px;}
.y49{bottom:52.195500px;}
.yeb{bottom:52.950000px;}
.y55{bottom:55.111500px;}
.y41{bottom:55.440000px;}
.y7{bottom:57.636000px;}
.yf0{bottom:63.435000px;}
.y48{bottom:65.194500px;}
.yfb{bottom:68.220000px;}
.ydf{bottom:69.375000px;}
.yf3{bottom:70.125000px;}
.y54{bottom:71.314500px;}
.ye1{bottom:71.745000px;}
.y40{bottom:72.720000px;}
.yea{bottom:73.905000px;}
.y47{bottom:78.514500px;}
.yef{bottom:84.390000px;}
.yfc{bottom:86.865000px;}
.y53{bottom:87.154500px;}
.y43{bottom:87.160500px;}
.y3f{bottom:90.000000px;}
.ye2{bottom:92.265000px;}
.yee{bottom:94.830000px;}
.y105{bottom:95.550000px;}
.y52{bottom:96.154500px;}
.yec{bottom:100.080000px;}
.y46{bottom:100.114500px;}
.yc1{bottom:100.185000px;}
.yde{bottom:104.250000px;}
.yfd{bottom:105.510000px;}
.y3e{bottom:107.280000px;}
.y93{bottom:109.116000px;}
.ye9{bottom:110.550000px;}
.ydc{bottom:112.356000px;}
.ye3{bottom:112.785000px;}
.y51{bottom:115.234500px;}
.yed{bottom:115.770000px;}
.yf4{bottom:122.475000px;}
.yfe{bottom:124.170000px;}
.y3d{bottom:124.605000px;}
.yc0{bottom:125.715000px;}
.y92{bottom:126.756000px;}
.ybf{bottom:126.795000px;}
.y50{bottom:130.714500px;}
.ye4{bottom:133.305000px;}
.ydb{bottom:134.676000px;}
.yda{bottom:138.636000px;}
.y3c{bottom:141.885000px;}
.yf9{bottom:142.560000px;}
.yff{bottom:142.770000px;}
.y91{bottom:144.072000px;}
.y4f{bottom:146.194500px;}
.y3b{bottom:159.165000px;}
.y90{bottom:160.995000px;}
.y100{bottom:161.430000px;}
.y4e{bottom:161.674500px;}
.y45{bottom:162.394500px;}
.yf1{bottom:162.900000px;}
.yf8{bottom:164.625000px;}
.y44{bottom:173.194500px;}
.ybd{bottom:174.675000px;}
.y104{bottom:174.750000px;}
.yf5{bottom:174.810000px;}
.y3a{bottom:176.445000px;}
.y4d{bottom:176.794500px;}
.y8f{bottom:178.635000px;}
.ybc{bottom:182.235000px;}
.y39{bottom:193.725000px;}
.y8e{bottom:195.915000px;}
.ybb{bottom:208.875000px;}
.y38{bottom:211.005000px;}
.y8d{bottom:212.835000px;}
.yba{bottom:226.155000px;}
.y37{bottom:228.285000px;}
.y8c{bottom:230.475000px;}
.yb9{bottom:243.075000px;}
.y36{bottom:245.205000px;}
.y8b{bottom:247.395000px;}
.yb8{bottom:260.355000px;}
.y35{bottom:262.515000px;}
.y8a{bottom:264.315000px;}
.y34{bottom:279.795000px;}
.y89{bottom:281.985000px;}
.ye{bottom:289.905000px;}
.yb7{bottom:292.425000px;}
.yb6{bottom:296.385000px;}
.y33{bottom:297.075000px;}
.y88{bottom:299.265000px;}
.ybe{bottom:299.880000px;}
.y12d{bottom:301.785000px;}
.y32{bottom:314.355000px;}
.y87{bottom:316.185000px;}
.y12c{bottom:328.065000px;}
.y31{bottom:331.635000px;}
.y86{bottom:333.825000px;}
.yd9{bottom:342.465000px;}
.y30{bottom:348.915000px;}
.y85{bottom:351.105000px;}
.y12b{bottom:354.345000px;}
.y1c{bottom:360.075000px;}
.yd8{bottom:364.785000px;}
.y2f{bottom:365.835000px;}
.y84{bottom:368.025000px;}
.yd7{bottom:372.705000px;}
.y12a{bottom:380.985000px;}
.y1b{bottom:384.225000px;}
.y83{bottom:385.665000px;}
.yd6{bottom:389.985000px;}
.y2e{bottom:391.785000px;}
.y129{bottom:398.265000px;}
.y82{bottom:402.945000px;}
.y2d{bottom:407.265000px;}
.yd5{bottom:407.310000px;}
.y1a{bottom:408.345000px;}
.y128{bottom:415.590000px;}
.y81{bottom:420.270000px;}
.y2c{bottom:422.745000px;}
.yd4{bottom:425.670000px;}
.y19{bottom:432.465000px;}
.y127{bottom:432.870000px;}
.y80{bottom:436.830000px;}
.y2b{bottom:438.225000px;}
.yd3{bottom:442.950000px;}
.y126{bottom:450.150000px;}
.y2a{bottom:453.705000px;}
.y7f{bottom:454.470000px;}
.y18{bottom:456.585000px;}
.yd2{bottom:460.230000px;}
.y125{bottom:467.430000px;}
.y29{bottom:469.545000px;}
.y7e{bottom:471.390000px;}
.yd1{bottom:478.230000px;}
.y17{bottom:481.065000px;}
.y124{bottom:484.350000px;}
.y28{bottom:485.025000px;}
.yb5{bottom:488.310000px;}
.yd0{bottom:495.510000px;}
.y7d{bottom:498.030000px;}
.y27{bottom:500.505000px;}
.y123{bottom:501.630000px;}
.y16{bottom:505.185000px;}
.yb4{bottom:505.590000px;}
.ycf{bottom:513.870000px;}
.y7c{bottom:515.310000px;}
.y26{bottom:516.030000px;}
.y122{bottom:518.910000px;}
.yb3{bottom:522.870000px;}
.y15{bottom:529.350000px;}
.yce{bottom:531.150000px;}
.y25{bottom:531.510000px;}
.y7b{bottom:532.590000px;}
.y121{bottom:536.190000px;}
.yb2{bottom:540.180000px;}
.y24{bottom:546.990000px;}
.ycd{bottom:548.460000px;}
.y7a{bottom:549.900000px;}
.y14{bottom:553.470000px;}
.y120{bottom:553.500000px;}
.yb1{bottom:557.460000px;}
.y23{bottom:562.470000px;}
.ycc{bottom:566.820000px;}
.y79{bottom:567.180000px;}
.y11f{bottom:570.780000px;}
.yb0{bottom:574.740000px;}
.y13{bottom:577.590000px;}
.y22{bottom:577.950000px;}
.ycb{bottom:584.100000px;}
.y78{bottom:584.460000px;}
.y11e{bottom:588.060000px;}
.y21{bottom:593.790000px;}
.y77{bottom:601.380000px;}
.y12{bottom:601.710000px;}
.y11d{bottom:605.340000px;}
.yaf{bottom:606.420000px;}
.y20{bottom:609.270000px;}
.yae{bottom:611.100000px;}
.yca{bottom:618.660000px;}
.y11c{bottom:622.620000px;}
.y1f{bottom:624.750000px;}
.y76{bottom:625.140000px;}
.y11{bottom:625.830000px;}
.yad{bottom:629.100000px;}
.y75{bottom:633.060000px;}
.y11b{bottom:639.900000px;}
.y1e{bottom:640.230000px;}
.yac{bottom:647.100000px;}
.y10{bottom:649.980000px;}
.y74{bottom:651.420000px;}
.yc9{bottom:655.380000px;}
.y11a{bottom:657.180000px;}
.ye8{bottom:658.440000px;}
.yf6{bottom:660.600000px;}
.yaa{bottom:665.100000px;}
.y73{bottom:669.810000px;}
.y1d{bottom:670.860000px;}
.yf{bottom:674.100000px;}
.y119{bottom:674.130000px;}
.ya9{bottom:683.145000px;}
.y72{bottom:686.730000px;}
.y118{bottom:691.410000px;}
.ya8{bottom:701.145000px;}
.y71{bottom:702.210000px;}
.y117{bottom:708.330000px;}
.y70{bottom:714.450000px;}
.ya7{bottom:719.145000px;}
.y116{bottom:725.610000px;}
.y6f{bottom:731.730000px;}
.ya6{bottom:737.145000px;}
.y6e{bottom:749.010000px;}
.y115{bottom:752.250000px;}
.ya5{bottom:755.145000px;}
.y6d{bottom:766.290000px;}
.y114{bottom:769.530000px;}
.ya4{bottom:773.145000px;}
.y6c{bottom:783.570000px;}
.y113{bottom:786.810000px;}
.ya3{bottom:791.145000px;}
.y6b{bottom:801.975000px;}
.y112{bottom:804.135000px;}
.ya2{bottom:809.190000px;}
.y6a{bottom:819.255000px;}
.y111{bottom:821.415000px;}
.ya1{bottom:827.190000px;}
.y69{bottom:836.535000px;}
.y110{bottom:838.695000px;}
.ya0{bottom:845.190000px;}
.yc8{bottom:850.215000px;}
.y68{bottom:853.815000px;}
.y10f{bottom:855.975000px;}
.y9f{bottom:863.190000px;}
.y67{bottom:871.095000px;}
.y10e{bottom:873.255000px;}
.y9e{bottom:881.190000px;}
.yc7{bottom:885.135000px;}
.y66{bottom:889.095000px;}
.y10d{bottom:890.175000px;}
.y9c{bottom:899.190000px;}
.yc6{bottom:902.415000px;}
.y65{bottom:906.375000px;}
.y10c{bottom:907.455000px;}
.y9a{bottom:917.190000px;}
.yc5{bottom:919.695000px;}
.y64{bottom:923.655000px;}
.y10b{bottom:924.735000px;}
.y98{bottom:935.205000px;}
.y63{bottom:940.965000px;}
.y10a{bottom:942.045000px;}
.yc4{bottom:951.405000px;}
.y97{bottom:954.645000px;}
.yc3{bottom:955.365000px;}
.ydd{bottom:957.600000px;}
.y62{bottom:958.245000px;}
.y109{bottom:959.325000px;}
.y61{bottom:976.245000px;}
.y108{bottom:976.605000px;}
.y96{bottom:976.965000px;}
.yd{bottom:979.125000px;}
.y95{bottom:993.525000px;}
.y107{bottom:993.885000px;}
.y60{bottom:1002.885000px;}
.yc{bottom:1003.605000px;}
.y106{bottom:1011.165000px;}
.yb{bottom:1014.045000px;}
.y5f{bottom:1020.165000px;}
.y5e{bottom:1037.445000px;}
.ya{bottom:1046.805000px;}
.y5d{bottom:1054.725000px;}
.y9{bottom:1059.765000px;}
.y94{bottom:1071.690000px;}
.y5c{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.y5b{bottom:1088.970000px;}
.y58{bottom:1091.520000px;}
.y5a{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h15{height:5.650313px;}
.h30{height:13.320000px;}
.h1e{height:17.265000px;}
.h1f{height:17.280000px;}
.h20{height:17.301000px;}
.h21{height:17.316000px;}
.h1c{height:18.372656px;}
.h1d{height:18.866250px;}
.h7{height:24.348516px;}
.h17{height:27.720000px;}
.h13{height:29.678906px;}
.ha{height:36.281250px;}
.hc{height:38.158594px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h19{height:42.229688px;}
.h31{height:42.759141px;}
.h32{height:48.656953px;}
.h34{height:48.804398px;}
.h10{height:53.677969px;}
.h26{height:53.704687px;}
.h2c{height:54.426094px;}
.h2d{height:54.569320px;}
.h14{height:55.147500px;}
.h29{height:56.029219px;}
.h8{height:58.050000px;}
.h16{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.h11{height:60.952500px;}
.h1b{height:62.163910px;}
.h18{height:63.455625px;}
.h36{height:63.855000px;}
.h23{height:64.875938px;}
.h1a{height:65.518594px;}
.h3{height:65.884219px;}
.hb{height:66.543750px;}
.h24{height:66.757500px;}
.h2f{height:77.056664px;}
.h2{height:81.390000px;}
.h9{height:84.172500px;}
.h35{height:91.046250px;}
.h2a{height:97.969219px;}
.h4{height:116.640000px;}
.h27{height:117.067500px;}
.h2e{height:118.789219px;}
.h2b{height:118.996664px;}
.h25{height:162.000000px;}
.h22{height:167.760000px;}
.h28{height:188.280000px;}
.h33{height:198.720000px;}
.h12{height:202.005000px;}
.hd{height:683.445000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:91.476000px;}
.w9{width:93.621000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w7{width:188.355000px;}
.wd{width:373.680000px;}
.wa{width:448.200000px;}
.wf{width:452.880000px;}
.w10{width:486.000000px;}
.wb{width:555.840000px;}
.w5{width:596.745000px;}
.we{width:608.400000px;}
.w3{width:622.665000px;}
.w11{width:666.360000px;}
.wc{width:669.960000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:2.520000px;}
.x1e{left:6.876000px;}
.x16{left:8.295000px;}
.x23{left:11.520000px;}
.x4{left:13.305000px;}
.x14{left:16.546500px;}
.x19{left:18.346500px;}
.x5{left:19.425000px;}
.x30{left:25.905000px;}
.x13{left:29.146500px;}
.x2c{left:33.465000px;}
.x27{left:38.160000px;}
.x2b{left:42.150000px;}
.x6{left:43.575000px;}
.x26{left:45.750000px;}
.x1a{left:47.542500px;}
.x2f{left:48.960000px;}
.xe{left:50.782500px;}
.x3e{left:53.745000px;}
.xd{left:55.102500px;}
.x1c{left:57.262500px;}
.x2a{left:58.365000px;}
.x17{left:62.295000px;}
.x2d{left:64.485000px;}
.x1b{left:66.265500px;}
.x2e{left:68.085000px;}
.x25{left:69.885000px;}
.x28{left:71.685000px;}
.x11{left:73.105500px;}
.x10{left:76.705500px;}
.x1{left:78.529500px;}
.x12{left:80.305500px;}
.x54{left:82.725000px;}
.x7{left:86.436000px;}
.x48{left:88.350000px;}
.x29{left:94.005000px;}
.x2{left:95.425500px;}
.x1d{left:102.985500px;}
.x18{left:106.945500px;}
.x43{left:110.160000px;}
.x53{left:112.320000px;}
.x20{left:113.436000px;}
.xf{left:124.585500px;}
.x4c{left:130.320000px;}
.x5b{left:132.270000px;}
.x1f{left:140.472000px;}
.x36{left:146.490000px;}
.x3f{left:157.500000px;}
.x4d{left:161.850000px;}
.x42{left:176.790000px;}
.x3c{left:178.635000px;}
.x3{left:182.250000px;}
.x38{left:184.395000px;}
.x55{left:190.695000px;}
.x45{left:191.985000px;}
.x3b{left:194.400000px;}
.x50{left:211.350000px;}
.x34{left:217.365000px;}
.x15{left:218.970000px;}
.x33{left:221.400000px;}
.x32{left:225.825000px;}
.x35{left:226.875000px;}
.x5c{left:247.170000px;}
.x21{left:259.305000px;}
.x40{left:273.450000px;}
.x4e{left:287.565000px;}
.x51{left:294.120000px;}
.x56{left:297.825000px;}
.x4f{left:327.240000px;}
.x52{left:344.985000px;}
.xa{left:382.470000px;}
.xb{left:395.430000px;}
.x57{left:401.940000px;}
.x58{left:421.020000px;}
.x44{left:422.070000px;}
.x46{left:441.285000px;}
.x22{left:448.380000px;}
.xc{left:452.340000px;}
.x49{left:460.470000px;}
.x41{left:475.350000px;}
.x59{left:508.065000px;}
.x5a{left:527.505000px;}
.x24{left:540.585000px;}
.x47{left:560.520000px;}
.x4a{left:579.705000px;}
.x4b{left:598.890000px;}
.x31{left:671.685000px;}
.x37{left:752.685000px;}
.x9{left:766.050000px;}
.x3a{left:780.810000px;}
.x39{left:782.970000px;}
.x8{left:784.770000px;}
@media print{
.v8{vertical-align:-66.186667pt;}
.v9{vertical-align:-62.720000pt;}
.v7{vertical-align:-61.440000pt;}
.v1{vertical-align:-56.320000pt;}
.v4{vertical-align:-53.760000pt;}
.v5{vertical-align:-52.480000pt;}
.v6{vertical-align:-51.200000pt;}
.v11{vertical-align:-49.706667pt;}
.vd{vertical-align:-37.226667pt;}
.v13{vertical-align:-33.173333pt;}
.v3{vertical-align:-24.320000pt;}
.vf{vertical-align:-18.560000pt;}
.va{vertical-align:-14.613333pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:18.560000pt;}
.v2{vertical-align:24.320000pt;}
.v12{vertical-align:33.173333pt;}
.vc{vertical-align:37.280000pt;}
.v10{vertical-align:43.520000pt;}
.vb{vertical-align:55.040000pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls2e{letter-spacing:-1.264000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.560000pt;}
.ls28{letter-spacing:-0.405333pt;}
.ls1d{letter-spacing:-0.394133pt;}
.ls26{letter-spacing:-0.340267pt;}
.ls27{letter-spacing:-0.212267pt;}
.ls12{letter-spacing:-0.163733pt;}
.lse{letter-spacing:-0.079467pt;}
.ls10{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls25{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.414933pt;}
.ls3{letter-spacing:0.439040pt;}
.lsc{letter-spacing:0.442880pt;}
.ls2d{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.746667pt;}
.lsb{letter-spacing:0.773120pt;}
.ls29{letter-spacing:0.938667pt;}
.ls4{letter-spacing:0.960000pt;}
.ls23{letter-spacing:1.280000pt;}
.ls24{letter-spacing:1.296000pt;}
.ls7{letter-spacing:1.920000pt;}
.ls2a{letter-spacing:3.200000pt;}
.ls8{letter-spacing:4.480000pt;}
.ls6{letter-spacing:7.040000pt;}
.ls2c{letter-spacing:14.494720pt;}
.ls5{letter-spacing:14.720000pt;}
.ls14{letter-spacing:38.814720pt;}
.ls2b{letter-spacing:41.374720pt;}
.ls13{letter-spacing:56.734720pt;}
.ls1b{letter-spacing:79.698347pt;}
.ls1f{letter-spacing:227.658667pt;}
.ls21{letter-spacing:377.060693pt;}
.ls20{letter-spacing:377.114027pt;}
.ls22{letter-spacing:377.274027pt;}
.ls19{letter-spacing:534.645333pt;}
.ls18{letter-spacing:779.466667pt;}
.ls17{letter-spacing:811.605333pt;}
.ls1a{letter-spacing:937.024000pt;}
.ls1e{letter-spacing:1027.925333pt;}
.ls0{letter-spacing:1494.058667pt;}
.ws9{word-spacing:-53.760000pt;}
.ws17{word-spacing:-13.890667pt;}
.wsa{word-spacing:-13.854933pt;}
.wsd{word-spacing:-13.568000pt;}
.ws0{word-spacing:-13.440000pt;}
.wsb{word-spacing:-12.608000pt;}
.wsc{word-spacing:-12.334187pt;}
.ws18{word-spacing:-12.176000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.996267pt;}
.ws14{word-spacing:-11.931307pt;}
.ws6{word-spacing:-11.600000pt;}
.ws12{word-spacing:-10.780373pt;}
.ws11{word-spacing:-10.652373pt;}
.ws13{word-spacing:-10.616235pt;}
.ws2{word-spacing:-9.920000pt;}
.ws15{word-spacing:-9.575168pt;}
.ws16{word-spacing:-9.546240pt;}
.ws3{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws5{word-spacing:-7.936000pt;}
.ws8{word-spacing:0.000000pt;}
.wsf{word-spacing:99.754667pt;}
.wse{word-spacing:126.431147pt;}
.ws10{word-spacing:139.497387pt;}
._1b{margin-left:-3.466240pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._5{width:4.665173pt;}
._6{width:6.307840pt;}
._7{width:7.531520pt;}
._8{width:8.987733pt;}
._a{width:9.891840pt;}
._9{width:11.128320pt;}
._d{width:12.311040pt;}
._b{width:14.515200pt;}
._c{width:15.989760pt;}
._1c{width:17.174613pt;}
._1d{width:18.091520pt;}
._16{width:61.668693pt;}
._11{width:68.061440pt;}
._15{width:87.197440pt;}
._14{width:88.449280pt;}
._17{width:111.848107pt;}
._18{width:126.327467pt;}
._e{width:179.310933pt;}
._1a{width:190.943147pt;}
._19{width:225.396480pt;}
._10{width:308.746667pt;}
._12{width:388.293547pt;}
._13{width:401.200213pt;}
._f{width:683.691520pt;}
.fs8{font-size:5.120000pt;}
.fsc{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsb{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fsf{font-size:42.240000pt;}
.fs10{font-size:42.368000pt;}
.fsa{font-size:48.640000pt;}
.fse{font-size:48.768000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fsd{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:2.533333pt;}
.y4c{bottom:2.556000pt;}
.y9b{bottom:3.186667pt;}
.y99{bottom:3.200000pt;}
.y9d{bottom:3.506667pt;}
.y5{bottom:3.520000pt;}
.yab{bottom:3.546667pt;}
.ye7{bottom:4.253333pt;}
.y59{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.yc2{bottom:8.346667pt;}
.y4b{bottom:9.596000pt;}
.y103{bottom:12.453333pt;}
.y57{bottom:14.716000pt;}
.yf2{bottom:15.813333pt;}
.ye6{bottom:17.693333pt;}
.y4{bottom:18.880000pt;}
.y102{bottom:23.013333pt;}
.y56{bottom:30.076000pt;}
.ye5{bottom:31.453333pt;}
.y101{bottom:33.893333pt;}
.y42{bottom:34.240000pt;}
.y4a{bottom:35.836000pt;}
.y3{bottom:39.360000pt;}
.yfa{bottom:44.093333pt;}
.ye0{bottom:45.533333pt;}
.y49{bottom:46.396000pt;}
.yeb{bottom:47.066667pt;}
.y55{bottom:48.988000pt;}
.y41{bottom:49.280000pt;}
.y7{bottom:51.232000pt;}
.yf0{bottom:56.386667pt;}
.y48{bottom:57.950667pt;}
.yfb{bottom:60.640000pt;}
.ydf{bottom:61.666667pt;}
.yf3{bottom:62.333333pt;}
.y54{bottom:63.390667pt;}
.ye1{bottom:63.773333pt;}
.y40{bottom:64.640000pt;}
.yea{bottom:65.693333pt;}
.y47{bottom:69.790667pt;}
.yef{bottom:75.013333pt;}
.yfc{bottom:77.213333pt;}
.y53{bottom:77.470667pt;}
.y43{bottom:77.476000pt;}
.y3f{bottom:80.000000pt;}
.ye2{bottom:82.013333pt;}
.yee{bottom:84.293333pt;}
.y105{bottom:84.933333pt;}
.y52{bottom:85.470667pt;}
.yec{bottom:88.960000pt;}
.y46{bottom:88.990667pt;}
.yc1{bottom:89.053333pt;}
.yde{bottom:92.666667pt;}
.yfd{bottom:93.786667pt;}
.y3e{bottom:95.360000pt;}
.y93{bottom:96.992000pt;}
.ye9{bottom:98.266667pt;}
.ydc{bottom:99.872000pt;}
.ye3{bottom:100.253333pt;}
.y51{bottom:102.430667pt;}
.yed{bottom:102.906667pt;}
.yf4{bottom:108.866667pt;}
.yfe{bottom:110.373333pt;}
.y3d{bottom:110.760000pt;}
.yc0{bottom:111.746667pt;}
.y92{bottom:112.672000pt;}
.ybf{bottom:112.706667pt;}
.y50{bottom:116.190667pt;}
.ye4{bottom:118.493333pt;}
.ydb{bottom:119.712000pt;}
.yda{bottom:123.232000pt;}
.y3c{bottom:126.120000pt;}
.yf9{bottom:126.720000pt;}
.yff{bottom:126.906667pt;}
.y91{bottom:128.064000pt;}
.y4f{bottom:129.950667pt;}
.y3b{bottom:141.480000pt;}
.y90{bottom:143.106667pt;}
.y100{bottom:143.493333pt;}
.y4e{bottom:143.710667pt;}
.y45{bottom:144.350667pt;}
.yf1{bottom:144.800000pt;}
.yf8{bottom:146.333333pt;}
.y44{bottom:153.950667pt;}
.ybd{bottom:155.266667pt;}
.y104{bottom:155.333333pt;}
.yf5{bottom:155.386667pt;}
.y3a{bottom:156.840000pt;}
.y4d{bottom:157.150667pt;}
.y8f{bottom:158.786667pt;}
.ybc{bottom:161.986667pt;}
.y39{bottom:172.200000pt;}
.y8e{bottom:174.146667pt;}
.ybb{bottom:185.666667pt;}
.y38{bottom:187.560000pt;}
.y8d{bottom:189.186667pt;}
.yba{bottom:201.026667pt;}
.y37{bottom:202.920000pt;}
.y8c{bottom:204.866667pt;}
.yb9{bottom:216.066667pt;}
.y36{bottom:217.960000pt;}
.y8b{bottom:219.906667pt;}
.yb8{bottom:231.426667pt;}
.y35{bottom:233.346667pt;}
.y8a{bottom:234.946667pt;}
.y34{bottom:248.706667pt;}
.y89{bottom:250.653333pt;}
.ye{bottom:257.693333pt;}
.yb7{bottom:259.933333pt;}
.yb6{bottom:263.453333pt;}
.y33{bottom:264.066667pt;}
.y88{bottom:266.013333pt;}
.ybe{bottom:266.560000pt;}
.y12d{bottom:268.253333pt;}
.y32{bottom:279.426667pt;}
.y87{bottom:281.053333pt;}
.y12c{bottom:291.613333pt;}
.y31{bottom:294.786667pt;}
.y86{bottom:296.733333pt;}
.yd9{bottom:304.413333pt;}
.y30{bottom:310.146667pt;}
.y85{bottom:312.093333pt;}
.y12b{bottom:314.973333pt;}
.y1c{bottom:320.066667pt;}
.yd8{bottom:324.253333pt;}
.y2f{bottom:325.186667pt;}
.y84{bottom:327.133333pt;}
.yd7{bottom:331.293333pt;}
.y12a{bottom:338.653333pt;}
.y1b{bottom:341.533333pt;}
.y83{bottom:342.813333pt;}
.yd6{bottom:346.653333pt;}
.y2e{bottom:348.253333pt;}
.y129{bottom:354.013333pt;}
.y82{bottom:358.173333pt;}
.y2d{bottom:362.013333pt;}
.yd5{bottom:362.053333pt;}
.y1a{bottom:362.973333pt;}
.y128{bottom:369.413333pt;}
.y81{bottom:373.573333pt;}
.y2c{bottom:375.773333pt;}
.yd4{bottom:378.373333pt;}
.y19{bottom:384.413333pt;}
.y127{bottom:384.773333pt;}
.y80{bottom:388.293333pt;}
.y2b{bottom:389.533333pt;}
.yd3{bottom:393.733333pt;}
.y126{bottom:400.133333pt;}
.y2a{bottom:403.293333pt;}
.y7f{bottom:403.973333pt;}
.y18{bottom:405.853333pt;}
.yd2{bottom:409.093333pt;}
.y125{bottom:415.493333pt;}
.y29{bottom:417.373333pt;}
.y7e{bottom:419.013333pt;}
.yd1{bottom:425.093333pt;}
.y17{bottom:427.613333pt;}
.y124{bottom:430.533333pt;}
.y28{bottom:431.133333pt;}
.yb5{bottom:434.053333pt;}
.yd0{bottom:440.453333pt;}
.y7d{bottom:442.693333pt;}
.y27{bottom:444.893333pt;}
.y123{bottom:445.893333pt;}
.y16{bottom:449.053333pt;}
.yb4{bottom:449.413333pt;}
.ycf{bottom:456.773333pt;}
.y7c{bottom:458.053333pt;}
.y26{bottom:458.693333pt;}
.y122{bottom:461.253333pt;}
.yb3{bottom:464.773333pt;}
.y15{bottom:470.533333pt;}
.yce{bottom:472.133333pt;}
.y25{bottom:472.453333pt;}
.y7b{bottom:473.413333pt;}
.y121{bottom:476.613333pt;}
.yb2{bottom:480.160000pt;}
.y24{bottom:486.213333pt;}
.ycd{bottom:487.520000pt;}
.y7a{bottom:488.800000pt;}
.y14{bottom:491.973333pt;}
.y120{bottom:492.000000pt;}
.yb1{bottom:495.520000pt;}
.y23{bottom:499.973333pt;}
.ycc{bottom:503.840000pt;}
.y79{bottom:504.160000pt;}
.y11f{bottom:507.360000pt;}
.yb0{bottom:510.880000pt;}
.y13{bottom:513.413333pt;}
.y22{bottom:513.733333pt;}
.ycb{bottom:519.200000pt;}
.y78{bottom:519.520000pt;}
.y11e{bottom:522.720000pt;}
.y21{bottom:527.813333pt;}
.y77{bottom:534.560000pt;}
.y12{bottom:534.853333pt;}
.y11d{bottom:538.080000pt;}
.yaf{bottom:539.040000pt;}
.y20{bottom:541.573333pt;}
.yae{bottom:543.200000pt;}
.yca{bottom:549.920000pt;}
.y11c{bottom:553.440000pt;}
.y1f{bottom:555.333333pt;}
.y76{bottom:555.680000pt;}
.y11{bottom:556.293333pt;}
.yad{bottom:559.200000pt;}
.y75{bottom:562.720000pt;}
.y11b{bottom:568.800000pt;}
.y1e{bottom:569.093333pt;}
.yac{bottom:575.200000pt;}
.y10{bottom:577.760000pt;}
.y74{bottom:579.040000pt;}
.yc9{bottom:582.560000pt;}
.y11a{bottom:584.160000pt;}
.ye8{bottom:585.280000pt;}
.yf6{bottom:587.200000pt;}
.yaa{bottom:591.200000pt;}
.y73{bottom:595.386667pt;}
.y1d{bottom:596.320000pt;}
.yf{bottom:599.200000pt;}
.y119{bottom:599.226667pt;}
.ya9{bottom:607.240000pt;}
.y72{bottom:610.426667pt;}
.y118{bottom:614.586667pt;}
.ya8{bottom:623.240000pt;}
.y71{bottom:624.186667pt;}
.y117{bottom:629.626667pt;}
.y70{bottom:635.066667pt;}
.ya7{bottom:639.240000pt;}
.y116{bottom:644.986667pt;}
.y6f{bottom:650.426667pt;}
.ya6{bottom:655.240000pt;}
.y6e{bottom:665.786667pt;}
.y115{bottom:668.666667pt;}
.ya5{bottom:671.240000pt;}
.y6d{bottom:681.146667pt;}
.y114{bottom:684.026667pt;}
.ya4{bottom:687.240000pt;}
.y6c{bottom:696.506667pt;}
.y113{bottom:699.386667pt;}
.ya3{bottom:703.240000pt;}
.y6b{bottom:712.866667pt;}
.y112{bottom:714.786667pt;}
.ya2{bottom:719.280000pt;}
.y6a{bottom:728.226667pt;}
.y111{bottom:730.146667pt;}
.ya1{bottom:735.280000pt;}
.y69{bottom:743.586667pt;}
.y110{bottom:745.506667pt;}
.ya0{bottom:751.280000pt;}
.yc8{bottom:755.746667pt;}
.y68{bottom:758.946667pt;}
.y10f{bottom:760.866667pt;}
.y9f{bottom:767.280000pt;}
.y67{bottom:774.306667pt;}
.y10e{bottom:776.226667pt;}
.y9e{bottom:783.280000pt;}
.yc7{bottom:786.786667pt;}
.y66{bottom:790.306667pt;}
.y10d{bottom:791.266667pt;}
.y9c{bottom:799.280000pt;}
.yc6{bottom:802.146667pt;}
.y65{bottom:805.666667pt;}
.y10c{bottom:806.626667pt;}
.y9a{bottom:815.280000pt;}
.yc5{bottom:817.506667pt;}
.y64{bottom:821.026667pt;}
.y10b{bottom:821.986667pt;}
.y98{bottom:831.293333pt;}
.y63{bottom:836.413333pt;}
.y10a{bottom:837.373333pt;}
.yc4{bottom:845.693333pt;}
.y97{bottom:848.573333pt;}
.yc3{bottom:849.213333pt;}
.ydd{bottom:851.200000pt;}
.y62{bottom:851.773333pt;}
.y109{bottom:852.733333pt;}
.y61{bottom:867.773333pt;}
.y108{bottom:868.093333pt;}
.y96{bottom:868.413333pt;}
.yd{bottom:870.333333pt;}
.y95{bottom:883.133333pt;}
.y107{bottom:883.453333pt;}
.y60{bottom:891.453333pt;}
.yc{bottom:892.093333pt;}
.y106{bottom:898.813333pt;}
.yb{bottom:901.373333pt;}
.y5f{bottom:906.813333pt;}
.y5e{bottom:922.173333pt;}
.ya{bottom:930.493333pt;}
.y5d{bottom:937.533333pt;}
.y9{bottom:942.013333pt;}
.y94{bottom:952.613333pt;}
.y5c{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.y5b{bottom:967.973333pt;}
.y58{bottom:970.240000pt;}
.y5a{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h15{height:5.022500pt;}
.h30{height:11.840000pt;}
.h1e{height:15.346667pt;}
.h1f{height:15.360000pt;}
.h20{height:15.378667pt;}
.h21{height:15.392000pt;}
.h1c{height:16.331250pt;}
.h1d{height:16.770000pt;}
.h7{height:21.643125pt;}
.h17{height:24.640000pt;}
.h13{height:26.381250pt;}
.ha{height:32.250000pt;}
.hc{height:33.918750pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h19{height:37.537500pt;}
.h31{height:38.008125pt;}
.h32{height:43.250625pt;}
.h34{height:43.381688pt;}
.h10{height:47.713750pt;}
.h26{height:47.737500pt;}
.h2c{height:48.378750pt;}
.h2d{height:48.506062pt;}
.h14{height:49.020000pt;}
.h29{height:49.803750pt;}
.h8{height:51.600000pt;}
.h16{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.h11{height:54.180000pt;}
.h1b{height:55.256809pt;}
.h18{height:56.405000pt;}
.h36{height:56.760000pt;}
.h23{height:57.667500pt;}
.h1a{height:58.238750pt;}
.h3{height:58.563750pt;}
.hb{height:59.150000pt;}
.h24{height:59.340000pt;}
.h2f{height:68.494812pt;}
.h2{height:72.346667pt;}
.h9{height:74.820000pt;}
.h35{height:80.930000pt;}
.h2a{height:87.083750pt;}
.h4{height:103.680000pt;}
.h27{height:104.060000pt;}
.h2e{height:105.590417pt;}
.h2b{height:105.774812pt;}
.h25{height:144.000000pt;}
.h22{height:149.120000pt;}
.h28{height:167.360000pt;}
.h33{height:176.640000pt;}
.h12{height:179.560000pt;}
.hd{height:607.506667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:81.312000pt;}
.w9{width:83.218667pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w7{width:167.426667pt;}
.wd{width:332.160000pt;}
.wa{width:398.400000pt;}
.wf{width:402.560000pt;}
.w10{width:432.000000pt;}
.wb{width:494.080000pt;}
.w5{width:530.440000pt;}
.we{width:540.800000pt;}
.w3{width:553.480000pt;}
.w11{width:592.320000pt;}
.wc{width:595.520000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:2.240000pt;}
.x1e{left:6.112000pt;}
.x16{left:7.373333pt;}
.x23{left:10.240000pt;}
.x4{left:11.826667pt;}
.x14{left:14.708000pt;}
.x19{left:16.308000pt;}
.x5{left:17.266667pt;}
.x30{left:23.026667pt;}
.x13{left:25.908000pt;}
.x2c{left:29.746667pt;}
.x27{left:33.920000pt;}
.x2b{left:37.466667pt;}
.x6{left:38.733333pt;}
.x26{left:40.666667pt;}
.x1a{left:42.260000pt;}
.x2f{left:43.520000pt;}
.xe{left:45.140000pt;}
.x3e{left:47.773333pt;}
.xd{left:48.980000pt;}
.x1c{left:50.900000pt;}
.x2a{left:51.880000pt;}
.x17{left:55.373333pt;}
.x2d{left:57.320000pt;}
.x1b{left:58.902667pt;}
.x2e{left:60.520000pt;}
.x25{left:62.120000pt;}
.x28{left:63.720000pt;}
.x11{left:64.982667pt;}
.x10{left:68.182667pt;}
.x1{left:69.804000pt;}
.x12{left:71.382667pt;}
.x54{left:73.533333pt;}
.x7{left:76.832000pt;}
.x48{left:78.533333pt;}
.x29{left:83.560000pt;}
.x2{left:84.822667pt;}
.x1d{left:91.542667pt;}
.x18{left:95.062667pt;}
.x43{left:97.920000pt;}
.x53{left:99.840000pt;}
.x20{left:100.832000pt;}
.xf{left:110.742667pt;}
.x4c{left:115.840000pt;}
.x5b{left:117.573333pt;}
.x1f{left:124.864000pt;}
.x36{left:130.213333pt;}
.x3f{left:140.000000pt;}
.x4d{left:143.866667pt;}
.x42{left:157.146667pt;}
.x3c{left:158.786667pt;}
.x3{left:162.000000pt;}
.x38{left:163.906667pt;}
.x55{left:169.506667pt;}
.x45{left:170.653333pt;}
.x3b{left:172.800000pt;}
.x50{left:187.866667pt;}
.x34{left:193.213333pt;}
.x15{left:194.640000pt;}
.x33{left:196.800000pt;}
.x32{left:200.733333pt;}
.x35{left:201.666667pt;}
.x5c{left:219.706667pt;}
.x21{left:230.493333pt;}
.x40{left:243.066667pt;}
.x4e{left:255.613333pt;}
.x51{left:261.440000pt;}
.x56{left:264.733333pt;}
.x4f{left:290.880000pt;}
.x52{left:306.653333pt;}
.xa{left:339.973333pt;}
.xb{left:351.493333pt;}
.x57{left:357.280000pt;}
.x58{left:374.240000pt;}
.x44{left:375.173333pt;}
.x46{left:392.253333pt;}
.x22{left:398.560000pt;}
.xc{left:402.080000pt;}
.x49{left:409.306667pt;}
.x41{left:422.533333pt;}
.x59{left:451.613333pt;}
.x5a{left:468.893333pt;}
.x24{left:480.520000pt;}
.x47{left:498.240000pt;}
.x4a{left:515.293333pt;}
.x4b{left:532.346667pt;}
.x31{left:597.053333pt;}
.x37{left:669.053333pt;}
.x9{left:680.933333pt;}
.x3a{left:694.053333pt;}
.x39{left:695.973333pt;}
.x8{left:697.573333pt;}
}




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