
    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_290a9ea19730399f0647a8cb.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e629fd75193717f3c24a4246.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_3e597eb38a9785d080481aff.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_d4dc1518ebb37b19caf3e110.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5f47deb207993537f9262cb6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_24072893d4a7f5f664924aaf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_58e3e827d954eae6a3cc9e01.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_1fca9b079d2c6f8220ed8b3b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_7af4640198230bd368f33954.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_03aa2de120a498ec2bf8aa2e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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_f4b39a01bd5f93c8babb490f.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;line-height:0.739746;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);}
.v3{vertical-align:-18.060000px;}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls9{letter-spacing:-2.724000px;}
.lsf{letter-spacing:-1.740000px;}
.lsb{letter-spacing:-1.482000px;}
.ls11{letter-spacing:-1.026000px;}
.lsc{letter-spacing:-0.852000px;}
.lsa{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.378000px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.180000px;}
.ls0{letter-spacing:1.476000px;}
.ls2{letter-spacing:1.906500px;}
.ls1{letter-spacing:1.966500px;}
.ls3{letter-spacing:2.026500px;}
.ls4{letter-spacing:2.146500px;}
.lse{letter-spacing:2.164500px;}
.ls14{letter-spacing:2.227500px;}
.ls5{letter-spacing:2.250000px;}
.ls12{letter-spacing:2.760000px;}
.ls10{letter-spacing:3.018000px;}
.ls16{letter-spacing:15.237000px;}
.lsd{letter-spacing:19.887000px;}
.ls15{letter-spacing:46.887000px;}
.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;}
}
.wsc{word-spacing:-17.643000px;}
.wse{word-spacing:-17.385000px;}
.ws8{word-spacing:-16.875000px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws7{word-spacing:-14.625000px;}
.wsd{word-spacing:-13.599000px;}
.ws5{word-spacing:-13.221000px;}
.wsf{word-spacing:-13.143000px;}
.wsb{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws10{word-spacing:-12.375000px;}
.ws4{word-spacing:-12.369000px;}
.ws11{word-spacing:-12.352500px;}
.ws0{word-spacing:-11.826000px;}
.ws9{word-spacing:-10.125000px;}
.ws6{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._8{margin-left:-10.705050px;}
._15{margin-left:-6.284100px;}
._6{margin-left:-4.631700px;}
._7{margin-left:-3.426000px;}
._2{margin-left:-2.280000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._9{width:2.946000px;}
._4{width:3.948000px;}
._3{width:5.646000px;}
._a{width:7.038000px;}
._c{width:8.509500px;}
._5{width:10.002000px;}
._17{width:11.233500px;}
._b{width:12.328500px;}
._18{width:13.330500px;}
._16{width:15.993000px;}
._f{width:17.145000px;}
._e{width:21.048000px;}
._d{width:22.128000px;}
._13{width:25.978500px;}
._19{width:30.205500px;}
._1a{width:31.297500px;}
._21{width:33.886500px;}
._12{width:35.224500px;}
._10{width:38.527500px;}
._11{width:39.778500px;}
._14{width:43.822500px;}
._20{width:66.255000px;}
._1f{width:67.263000px;}
._1e{width:70.944000px;}
._1b{width:102.916500px;}
._1c{width:116.505000px;}
._1d{width:1445.115000px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc7{color:rgb(47,84,150);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.ybe{bottom:3.382500px;}
.y49{bottom:3.390000px;}
.y95{bottom:3.405000px;}
.y110{bottom:3.420000px;}
.y46{bottom:4.500000px;}
.ya4{bottom:4.515000px;}
.y11d{bottom:4.530000px;}
.ya7{bottom:4.545000px;}
.y9f{bottom:6.750000px;}
.ye{bottom:11.295000px;}
.y98{bottom:12.375000px;}
.y1c{bottom:12.405000px;}
.ycb{bottom:12.420000px;}
.yc{bottom:13.500000px;}
.y4a{bottom:14.625000px;}
.y4{bottom:16.875000px;}
.y48{bottom:18.000000px;}
.y2{bottom:19.125000px;}
.ybb{bottom:20.250000px;}
.y45{bottom:21.375000px;}
.ya3{bottom:21.390000px;}
.yfc{bottom:21.405000px;}
.yd1{bottom:21.420000px;}
.y109{bottom:22.545000px;}
.y1a{bottom:23.670000px;}
.y5{bottom:24.750000px;}
.yb{bottom:30.405000px;}
.y44{bottom:38.295000px;}
.ya1{bottom:39.420000px;}
.y19{bottom:40.545000px;}
.ya{bottom:46.155000px;}
.y1{bottom:48.412500px;}
.y43{bottom:56.280000px;}
.y18{bottom:56.340000px;}
.y42{bottom:73.155000px;}
.y9{bottom:73.185000px;}
.y17{bottom:73.215000px;}
.y16{bottom:88.965000px;}
.y41{bottom:90.075000px;}
.y8{bottom:93.435000px;}
.yab{bottom:94.575000px;}
.y8e{bottom:97.950000px;}
.y103{bottom:99.075000px;}
.y56{bottom:101.325000px;}
.y15{bottom:102.495000px;}
.y131{bottom:105.825000px;}
.ye0{bottom:106.950000px;}
.y40{bottom:108.075000px;}
.y7{bottom:110.355000px;}
.yaa{bottom:111.450000px;}
.yc0{bottom:114.825000px;}
.y8d{bottom:115.950000px;}
.y102{bottom:117.075000px;}
.y55{bottom:118.237500px;}
.y14{bottom:119.370000px;}
.y130{bottom:122.737500px;}
.ydf{bottom:123.862500px;}
.y3f{bottom:124.995000px;}
.ybf{bottom:129.487500px;}
.y8c{bottom:132.862500px;}
.y101{bottom:133.987500px;}
.y54{bottom:135.112500px;}
.y13{bottom:137.370000px;}
.y12f{bottom:140.737500px;}
.yde{bottom:141.862500px;}
.y3e{bottom:141.870000px;}
.ybd{bottom:147.487500px;}
.y8b{bottom:149.737500px;}
.y100{bottom:150.870000px;}
.y53{bottom:153.105000px;}
.ydd{bottom:155.370000px;}
.y12{bottom:156.540000px;}
.y12e{bottom:157.620000px;}
.y3d{bottom:159.900000px;}
.ybc{bottom:165.525000px;}
.y8a{bottom:167.775000px;}
.yff{bottom:168.900000px;}
.y52{bottom:170.025000px;}
.y12d{bottom:174.525000px;}
.y3c{bottom:176.775000px;}
.yfe{bottom:182.400000px;}
.y11{bottom:182.445000px;}
.y2c{bottom:183.525000px;}
.y89{bottom:184.650000px;}
.y51{bottom:186.900000px;}
.y12c{bottom:192.525000px;}
.y3b{bottom:193.650000px;}
.yfd{bottom:200.400000px;}
.y2b{bottom:201.570000px;}
.y50{bottom:204.945000px;}
.y10{bottom:207.195000px;}
.y12b{bottom:209.445000px;}
.y3a{bottom:211.695000px;}
.y2a{bottom:218.445000px;}
.y88{bottom:219.570000px;}
.y4f{bottom:221.820000px;}
.y12a{bottom:226.320000px;}
.y39{bottom:228.570000px;}
.y29{bottom:236.445000px;}
.y4e{bottom:238.695000px;}
.y129{bottom:243.225000px;}
.y38{bottom:245.475000px;}
.y28{bottom:253.350000px;}
.yba{bottom:254.475000px;}
.y4d{bottom:256.725000px;}
.y128{bottom:261.225000px;}
.y37{bottom:263.475000px;}
.y27{bottom:271.350000px;}
.yb9{bottom:272.475000px;}
.y4c{bottom:273.600000px;}
.y127{bottom:278.100000px;}
.y36{bottom:280.350000px;}
.y26{bottom:288.270000px;}
.y4b{bottom:290.505000px;}
.y126{bottom:295.020000px;}
.y35{bottom:297.270000px;}
.y47{bottom:305.130000px;}
.y25{bottom:305.145000px;}
.yb7{bottom:308.505000px;}
.y125{bottom:313.005000px;}
.y34{bottom:315.270000px;}
.y87{bottom:323.130000px;}
.y24{bottom:323.145000px;}
.yb8{bottom:326.550000px;}
.y124{bottom:329.925000px;}
.y33{bottom:332.175000px;}
.y1d{bottom:334.425000px;}
.y23{bottom:340.050000px;}
.yb6{bottom:344.550000px;}
.y123{bottom:346.800000px;}
.y32{bottom:349.050000px;}
.y86{bottom:356.925000px;}
.y22{bottom:358.050000px;}
.yfa{bottom:362.550000px;}
.y122{bottom:364.800000px;}
.yb5{bottom:365.925000px;}
.y31{bottom:367.050000px;}
.y85{bottom:374.955000px;}
.y21{bottom:374.970000px;}
.ya9{bottom:376.095000px;}
.y121{bottom:378.330000px;}
.yfb{bottom:380.580000px;}
.y30{bottom:383.955000px;}
.ya8{bottom:389.580000px;}
.y84{bottom:391.830000px;}
.y20{bottom:392.955000px;}
.y120{bottom:396.330000px;}
.yf9{bottom:398.580000px;}
.y2f{bottom:400.830000px;}
.ya6{bottom:407.580000px;}
.y83{bottom:408.705000px;}
.ydc{bottom:413.250000px;}
.y11f{bottom:414.375000px;}
.yb4{bottom:417.750000px;}
.y2e{bottom:418.875000px;}
.y1f{bottom:420.000000px;}
.ya5{bottom:425.625000px;}
.y82{bottom:426.750000px;}
.ydb{bottom:430.125000px;}
.y11e{bottom:432.375000px;}
.y2d{bottom:435.750000px;}
.yf8{bottom:436.875000px;}
.y1e{bottom:438.000000px;}
.y81{bottom:443.625000px;}
.yda{bottom:448.125000px;}
.y11c{bottom:450.375000px;}
.yb3{bottom:452.670000px;}
.yf7{bottom:454.905000px;}
.y80{bottom:460.545000px;}
.ya0{bottom:461.655000px;}
.yd9{bottom:465.030000px;}
.y11b{bottom:468.405000px;}
.yb2{bottom:469.545000px;}
.yf6{bottom:471.780000px;}
.y7f{bottom:478.530000px;}
.yd8{bottom:481.905000px;}
.y11a{bottom:486.405000px;}
.yb1{bottom:487.545000px;}
.yf5{bottom:488.655000px;}
.y7e{bottom:495.450000px;}
.ya2{bottom:497.700000px;}
.yd7{bottom:499.950000px;}
.yb0{bottom:504.450000px;}
.yf4{bottom:506.700000px;}
.y7d{bottom:512.325000px;}
.yd6{bottom:513.450000px;}
.y9e{bottom:515.700000px;}
.yaf{bottom:517.950000px;}
.yf3{bottom:523.575000px;}
.y7c{bottom:530.325000px;}
.yd5{bottom:531.450000px;}
.y9d{bottom:540.495000px;}
.y119{bottom:543.870000px;}
.y7b{bottom:547.245000px;}
.yd4{bottom:549.480000px;}
.yf2{bottom:553.995000px;}
.y9c{bottom:557.370000px;}
.y118{bottom:560.745000px;}
.y7a{bottom:564.120000px;}
.yd3{bottom:567.480000px;}
.y9b{bottom:575.355000px;}
.y117{bottom:578.775000px;}
.y79{bottom:582.150000px;}
.yd2{bottom:585.525000px;}
.y9a{bottom:592.275000px;}
.y116{bottom:595.650000px;}
.y78{bottom:599.025000px;}
.yd0{bottom:603.525000px;}
.y99{bottom:609.150000px;}
.y115{bottom:612.525000px;}
.y77{bottom:615.900000px;}
.y96{bottom:623.820000px;}
.y114{bottom:627.195000px;}
.y76{bottom:633.945000px;}
.ycf{bottom:639.570000px;}
.y97{bottom:641.820000px;}
.y113{bottom:645.195000px;}
.y75{bottom:650.820000px;}
.yce{bottom:657.570000px;}
.y94{bottom:659.820000px;}
.y112{bottom:663.225000px;}
.y74{bottom:667.725000px;}
.ycd{bottom:675.600000px;}
.y93{bottom:677.850000px;}
.y111{bottom:681.225000px;}
.y73{bottom:685.725000px;}
.yca{bottom:693.600000px;}
.y92{bottom:695.850000px;}
.y10f{bottom:699.225000px;}
.y72{bottom:702.645000px;}
.ycc{bottom:711.630000px;}
.y91{bottom:713.880000px;}
.yae{bottom:715.005000px;}
.y10e{bottom:717.255000px;}
.y71{bottom:719.520000px;}
.yad{bottom:728.505000px;}
.yc9{bottom:729.630000px;}
.y90{bottom:731.880000px;}
.y70{bottom:737.505000px;}
.y8f{bottom:749.925000px;}
.yc8{bottom:751.050000px;}
.y10d{bottom:752.175000px;}
.y6f{bottom:754.425000px;}
.yc7{bottom:767.925000px;}
.y10c{bottom:770.175000px;}
.y6e{bottom:771.300000px;}
.y1b{bottom:783.675000px;}
.yc6{bottom:785.955000px;}
.y10b{bottom:788.205000px;}
.y6d{bottom:789.330000px;}
.yf1{bottom:796.080000px;}
.yc5{bottom:802.830000px;}
.y6c{bottom:806.205000px;}
.yf{bottom:812.955000px;}
.yf0{bottom:814.080000px;}
.yc4{bottom:819.705000px;}
.y6b{bottom:823.080000px;}
.y10a{bottom:824.205000px;}
.yef{bottom:831.000000px;}
.yc3{bottom:837.750000px;}
.y6a{bottom:841.125000px;}
.y108{bottom:846.750000px;}
.yee{bottom:847.875000px;}
.yc2{bottom:854.625000px;}
.y69{bottom:858.000000px;}
.y107{bottom:863.625000px;}
.yed{bottom:865.875000px;}
.yc1{bottom:868.125000px;}
.y68{bottom:874.920000px;}
.yec{bottom:879.420000px;}
.y106{bottom:880.545000px;}
.y67{bottom:892.920000px;}
.yeb{bottom:897.420000px;}
.y105{bottom:898.545000px;}
.y66{bottom:909.795000px;}
.yac{bottom:913.200000px;}
.yea{bottom:915.450000px;}
.y65{bottom:926.700000px;}
.y104{bottom:932.325000px;}
.ye9{bottom:933.450000px;}
.y64{bottom:944.700000px;}
.ye8{bottom:951.450000px;}
.y63{bottom:961.620000px;}
.ye7{bottom:969.480000px;}
.y62{bottom:978.495000px;}
.y61{bottom:996.525000px;}
.ye6{bottom:1005.525000px;}
.y60{bottom:1013.400000px;}
.ye5{bottom:1023.525000px;}
.y5f{bottom:1030.275000px;}
.yd{bottom:1034.775000px;}
.ye4{bottom:1041.570000px;}
.y5e{bottom:1048.320000px;}
.ye2{bottom:1059.570000px;}
.y6{bottom:1060.695000px;}
.y5d{bottom:1065.195000px;}
.ye3{bottom:1077.600000px;}
.y5c{bottom:1082.100000px;}
.ye1{bottom:1095.600000px;}
.y5b{bottom:1100.100000px;}
.y5a{bottom:1116.975000px;}
.y59{bottom:1133.880000px;}
.y58{bottom:1151.880000px;}
.y57{bottom:1168.800000px;}
.h21{height:16.875000px;}
.h2c{height:16.897500px;}
.h22{height:16.912500px;}
.h28{height:18.000000px;}
.h2a{height:18.022500px;}
.h27{height:18.037500px;}
.h24{height:20.287500px;}
.hb{height:25.912500px;}
.h14{height:29.287500px;}
.h13{height:29.773125px;}
.h12{height:29.953125px;}
.h2{height:32.662500px;}
.h29{height:33.787500px;}
.h23{height:34.875000px;}
.h26{height:34.912500px;}
.h2b{height:36.037500px;}
.h8{height:37.125000px;}
.h1d{height:39.832031px;}
.h1b{height:40.847168px;}
.h1a{height:41.275635px;}
.h19{height:41.389893px;}
.h20{height:42.589600px;}
.hd{height:43.075195px;}
.h11{height:43.453125px;}
.ha{height:43.875000px;}
.h2d{height:46.218809px;}
.h1e{height:46.278809px;}
.h1c{height:46.338809px;}
.h1f{height:46.398809px;}
.h18{height:47.074219px;}
.h17{height:49.234131px;}
.h25{height:52.912500px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:221.805000px;}
.h16{height:449.250000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w18{width:86.737500px;}
.w1d{width:93.525000px;}
.w10{width:94.612500px;}
.wf{width:94.650000px;}
.w16{width:106.987500px;}
.w1e{width:108.112500px;}
.w17{width:108.150000px;}
.w1c{width:112.650000px;}
.w11{width:116.025000px;}
.wa{width:119.400000px;}
.wb{width:120.525000px;}
.w12{width:123.900000px;}
.w4{width:145.275000px;}
.w13{width:153.180000px;}
.w14{width:173.475000px;}
.wd{width:189.255000px;}
.w15{width:202.755000px;}
.w1a{width:207.300000px;}
.w7{width:214.020000px;}
.w1b{width:217.380000px;}
.w19{width:234.270000px;}
.we{width:241.050000px;}
.w20{width:247.800000px;}
.w1f{width:248.925000px;}
.w21{width:248.970000px;}
.w9{width:265.845000px;}
.wc{width:315.375000px;}
.w8{width:533.925000px;}
.w5{width:602.670000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:6.750000px;}
.x8{left:7.905000px;}
.x2{left:9.037500px;}
.x12{left:10.125000px;}
.x13{left:11.250000px;}
.x16{left:20.250000px;}
.x10{left:21.375000px;}
.x11{left:63.075000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.xf{left:96.862500px;}
.x6{left:97.987500px;}
.x41{left:113.774987px;}
.x29{left:135.187487px;}
.x42{left:140.812487px;}
.x1d{left:141.937487px;}
.x28{left:148.687487px;}
.x30{left:180.224987px;}
.x36{left:212.894987px;}
.x14{left:214.012500px;}
.x39{left:215.144987px;}
.x7{left:218.520000px;}
.x1c{left:219.675000px;}
.x2a{left:227.550000px;}
.x26{left:235.424987px;}
.x22{left:245.549987px;}
.x24{left:246.674987px;}
.x34{left:251.219987px;}
.x31{left:255.719987px;}
.x38{left:264.719987px;}
.x37{left:284.999987px;}
.x15{left:287.250000px;}
.xb{left:296.280000px;}
.x3a{left:307.500000px;}
.x2d{left:314.295000px;}
.x3f{left:323.295000px;}
.x17{left:340.200000px;}
.x9{left:351.450000px;}
.xa{left:370.605000px;}
.xe{left:373.957500px;}
.x1e{left:389.745000px;}
.x2b{left:402.150000px;}
.x3d{left:421.275000px;}
.xd{left:437.055000px;}
.x33{left:447.194987px;}
.xc{left:459.600000px;}
.x18{left:460.725000px;}
.x20{left:484.395000px;}
.x2e{left:510.270000px;}
.x3b{left:515.925000px;}
.x40{left:572.220000px;}
.x1f{left:580.125000px;}
.x1a{left:581.250000px;}
.x25{left:592.499987px;}
.x23{left:606.029987px;}
.x27{left:608.294987px;}
.x3e{left:625.155000px;}
.x2f{left:631.949987px;}
.x35{left:639.824987px;}
.x32{left:667.994987px;}
.x21{left:697.275000px;}
.x1b{left:700.650000px;}
.x2c{left:713.025000px;}
.x3c{left:734.445000px;}
.x3{left:746.820000px;}
@media print{
.v3{vertical-align:-16.053333pt;}
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls9{letter-spacing:-2.421333pt;}
.lsf{letter-spacing:-1.546667pt;}
.lsb{letter-spacing:-1.317333pt;}
.ls11{letter-spacing:-0.912000pt;}
.lsc{letter-spacing:-0.757333pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls0{letter-spacing:1.312000pt;}
.ls2{letter-spacing:1.694667pt;}
.ls1{letter-spacing:1.748000pt;}
.ls3{letter-spacing:1.801333pt;}
.ls4{letter-spacing:1.908000pt;}
.lse{letter-spacing:1.924000pt;}
.ls14{letter-spacing:1.980000pt;}
.ls5{letter-spacing:2.000000pt;}
.ls12{letter-spacing:2.453333pt;}
.ls10{letter-spacing:2.682667pt;}
.ls16{letter-spacing:13.544000pt;}
.lsd{letter-spacing:17.677333pt;}
.ls15{letter-spacing:41.677333pt;}
.wsc{word-spacing:-15.682667pt;}
.wse{word-spacing:-15.453333pt;}
.ws8{word-spacing:-15.000000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws7{word-spacing:-13.000000pt;}
.wsd{word-spacing:-12.088000pt;}
.ws5{word-spacing:-11.752000pt;}
.wsf{word-spacing:-11.682667pt;}
.wsb{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws10{word-spacing:-11.000000pt;}
.ws4{word-spacing:-10.994667pt;}
.ws11{word-spacing:-10.980000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws9{word-spacing:-9.000000pt;}
.ws6{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._8{margin-left:-9.515600pt;}
._15{margin-left:-5.585867pt;}
._6{margin-left:-4.117067pt;}
._7{margin-left:-3.045333pt;}
._2{margin-left:-2.026667pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._9{width:2.618667pt;}
._4{width:3.509333pt;}
._3{width:5.018667pt;}
._a{width:6.256000pt;}
._c{width:7.564000pt;}
._5{width:8.890667pt;}
._17{width:9.985333pt;}
._b{width:10.958667pt;}
._18{width:11.849333pt;}
._16{width:14.216000pt;}
._f{width:15.240000pt;}
._e{width:18.709333pt;}
._d{width:19.669333pt;}
._13{width:23.092000pt;}
._19{width:26.849333pt;}
._1a{width:27.820000pt;}
._21{width:30.121333pt;}
._12{width:31.310667pt;}
._10{width:34.246667pt;}
._11{width:35.358667pt;}
._14{width:38.953333pt;}
._20{width:58.893333pt;}
._1f{width:59.789333pt;}
._1e{width:63.061333pt;}
._1b{width:91.481333pt;}
._1c{width:103.560000pt;}
._1d{width:1284.546667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.ybe{bottom:3.006667pt;}
.y49{bottom:3.013333pt;}
.y95{bottom:3.026667pt;}
.y110{bottom:3.040000pt;}
.y46{bottom:4.000000pt;}
.ya4{bottom:4.013333pt;}
.y11d{bottom:4.026667pt;}
.ya7{bottom:4.040000pt;}
.y9f{bottom:6.000000pt;}
.ye{bottom:10.040000pt;}
.y98{bottom:11.000000pt;}
.y1c{bottom:11.026667pt;}
.ycb{bottom:11.040000pt;}
.yc{bottom:12.000000pt;}
.y4a{bottom:13.000000pt;}
.y4{bottom:15.000000pt;}
.y48{bottom:16.000000pt;}
.y2{bottom:17.000000pt;}
.ybb{bottom:18.000000pt;}
.y45{bottom:19.000000pt;}
.ya3{bottom:19.013333pt;}
.yfc{bottom:19.026667pt;}
.yd1{bottom:19.040000pt;}
.y109{bottom:20.040000pt;}
.y1a{bottom:21.040000pt;}
.y5{bottom:22.000000pt;}
.yb{bottom:27.026667pt;}
.y44{bottom:34.040000pt;}
.ya1{bottom:35.040000pt;}
.y19{bottom:36.040000pt;}
.ya{bottom:41.026667pt;}
.y1{bottom:43.033333pt;}
.y43{bottom:50.026667pt;}
.y18{bottom:50.080000pt;}
.y42{bottom:65.026667pt;}
.y9{bottom:65.053333pt;}
.y17{bottom:65.080000pt;}
.y16{bottom:79.080000pt;}
.y41{bottom:80.066667pt;}
.y8{bottom:83.053333pt;}
.yab{bottom:84.066667pt;}
.y8e{bottom:87.066667pt;}
.y103{bottom:88.066667pt;}
.y56{bottom:90.066667pt;}
.y15{bottom:91.106667pt;}
.y131{bottom:94.066667pt;}
.ye0{bottom:95.066667pt;}
.y40{bottom:96.066667pt;}
.y7{bottom:98.093333pt;}
.yaa{bottom:99.066667pt;}
.yc0{bottom:102.066667pt;}
.y8d{bottom:103.066667pt;}
.y102{bottom:104.066667pt;}
.y55{bottom:105.100000pt;}
.y14{bottom:106.106667pt;}
.y130{bottom:109.100000pt;}
.ydf{bottom:110.100000pt;}
.y3f{bottom:111.106667pt;}
.ybf{bottom:115.100000pt;}
.y8c{bottom:118.100000pt;}
.y101{bottom:119.100000pt;}
.y54{bottom:120.100000pt;}
.y13{bottom:122.106667pt;}
.y12f{bottom:125.100000pt;}
.yde{bottom:126.100000pt;}
.y3e{bottom:126.106667pt;}
.ybd{bottom:131.100000pt;}
.y8b{bottom:133.100000pt;}
.y100{bottom:134.106667pt;}
.y53{bottom:136.093333pt;}
.ydd{bottom:138.106667pt;}
.y12{bottom:139.146667pt;}
.y12e{bottom:140.106667pt;}
.y3d{bottom:142.133333pt;}
.ybc{bottom:147.133333pt;}
.y8a{bottom:149.133333pt;}
.yff{bottom:150.133333pt;}
.y52{bottom:151.133333pt;}
.y12d{bottom:155.133333pt;}
.y3c{bottom:157.133333pt;}
.yfe{bottom:162.133333pt;}
.y11{bottom:162.173333pt;}
.y2c{bottom:163.133333pt;}
.y89{bottom:164.133333pt;}
.y51{bottom:166.133333pt;}
.y12c{bottom:171.133333pt;}
.y3b{bottom:172.133333pt;}
.yfd{bottom:178.133333pt;}
.y2b{bottom:179.173333pt;}
.y50{bottom:182.173333pt;}
.y10{bottom:184.173333pt;}
.y12b{bottom:186.173333pt;}
.y3a{bottom:188.173333pt;}
.y2a{bottom:194.173333pt;}
.y88{bottom:195.173333pt;}
.y4f{bottom:197.173333pt;}
.y12a{bottom:201.173333pt;}
.y39{bottom:203.173333pt;}
.y29{bottom:210.173333pt;}
.y4e{bottom:212.173333pt;}
.y129{bottom:216.200000pt;}
.y38{bottom:218.200000pt;}
.y28{bottom:225.200000pt;}
.yba{bottom:226.200000pt;}
.y4d{bottom:228.200000pt;}
.y128{bottom:232.200000pt;}
.y37{bottom:234.200000pt;}
.y27{bottom:241.200000pt;}
.yb9{bottom:242.200000pt;}
.y4c{bottom:243.200000pt;}
.y127{bottom:247.200000pt;}
.y36{bottom:249.200000pt;}
.y26{bottom:256.240000pt;}
.y4b{bottom:258.226667pt;}
.y126{bottom:262.240000pt;}
.y35{bottom:264.240000pt;}
.y47{bottom:271.226667pt;}
.y25{bottom:271.240000pt;}
.yb7{bottom:274.226667pt;}
.y125{bottom:278.226667pt;}
.y34{bottom:280.240000pt;}
.y87{bottom:287.226667pt;}
.y24{bottom:287.240000pt;}
.yb8{bottom:290.266667pt;}
.y124{bottom:293.266667pt;}
.y33{bottom:295.266667pt;}
.y1d{bottom:297.266667pt;}
.y23{bottom:302.266667pt;}
.yb6{bottom:306.266667pt;}
.y123{bottom:308.266667pt;}
.y32{bottom:310.266667pt;}
.y86{bottom:317.266667pt;}
.y22{bottom:318.266667pt;}
.yfa{bottom:322.266667pt;}
.y122{bottom:324.266667pt;}
.yb5{bottom:325.266667pt;}
.y31{bottom:326.266667pt;}
.y85{bottom:333.293333pt;}
.y21{bottom:333.306667pt;}
.ya9{bottom:334.306667pt;}
.y121{bottom:336.293333pt;}
.yfb{bottom:338.293333pt;}
.y30{bottom:341.293333pt;}
.ya8{bottom:346.293333pt;}
.y84{bottom:348.293333pt;}
.y20{bottom:349.293333pt;}
.y120{bottom:352.293333pt;}
.yf9{bottom:354.293333pt;}
.y2f{bottom:356.293333pt;}
.ya6{bottom:362.293333pt;}
.y83{bottom:363.293333pt;}
.ydc{bottom:367.333333pt;}
.y11f{bottom:368.333333pt;}
.yb4{bottom:371.333333pt;}
.y2e{bottom:372.333333pt;}
.y1f{bottom:373.333333pt;}
.ya5{bottom:378.333333pt;}
.y82{bottom:379.333333pt;}
.ydb{bottom:382.333333pt;}
.y11e{bottom:384.333333pt;}
.y2d{bottom:387.333333pt;}
.yf8{bottom:388.333333pt;}
.y1e{bottom:389.333333pt;}
.y81{bottom:394.333333pt;}
.yda{bottom:398.333333pt;}
.y11c{bottom:400.333333pt;}
.yb3{bottom:402.373333pt;}
.yf7{bottom:404.360000pt;}
.y80{bottom:409.373333pt;}
.ya0{bottom:410.360000pt;}
.yd9{bottom:413.360000pt;}
.y11b{bottom:416.360000pt;}
.yb2{bottom:417.373333pt;}
.yf6{bottom:419.360000pt;}
.y7f{bottom:425.360000pt;}
.yd8{bottom:428.360000pt;}
.y11a{bottom:432.360000pt;}
.yb1{bottom:433.373333pt;}
.yf5{bottom:434.360000pt;}
.y7e{bottom:440.400000pt;}
.ya2{bottom:442.400000pt;}
.yd7{bottom:444.400000pt;}
.yb0{bottom:448.400000pt;}
.yf4{bottom:450.400000pt;}
.y7d{bottom:455.400000pt;}
.yd6{bottom:456.400000pt;}
.y9e{bottom:458.400000pt;}
.yaf{bottom:460.400000pt;}
.yf3{bottom:465.400000pt;}
.y7c{bottom:471.400000pt;}
.yd5{bottom:472.400000pt;}
.y9d{bottom:480.440000pt;}
.y119{bottom:483.440000pt;}
.y7b{bottom:486.440000pt;}
.yd4{bottom:488.426667pt;}
.yf2{bottom:492.440000pt;}
.y9c{bottom:495.440000pt;}
.y118{bottom:498.440000pt;}
.y7a{bottom:501.440000pt;}
.yd3{bottom:504.426667pt;}
.y9b{bottom:511.426667pt;}
.y117{bottom:514.466667pt;}
.y79{bottom:517.466667pt;}
.yd2{bottom:520.466667pt;}
.y9a{bottom:526.466667pt;}
.y116{bottom:529.466667pt;}
.y78{bottom:532.466667pt;}
.yd0{bottom:536.466667pt;}
.y99{bottom:541.466667pt;}
.y115{bottom:544.466667pt;}
.y77{bottom:547.466667pt;}
.y96{bottom:554.506667pt;}
.y114{bottom:557.506667pt;}
.y76{bottom:563.506667pt;}
.ycf{bottom:568.506667pt;}
.y97{bottom:570.506667pt;}
.y113{bottom:573.506667pt;}
.y75{bottom:578.506667pt;}
.yce{bottom:584.506667pt;}
.y94{bottom:586.506667pt;}
.y112{bottom:589.533333pt;}
.y74{bottom:593.533333pt;}
.ycd{bottom:600.533333pt;}
.y93{bottom:602.533333pt;}
.y111{bottom:605.533333pt;}
.y73{bottom:609.533333pt;}
.yca{bottom:616.533333pt;}
.y92{bottom:618.533333pt;}
.y10f{bottom:621.533333pt;}
.y72{bottom:624.573333pt;}
.ycc{bottom:632.560000pt;}
.y91{bottom:634.560000pt;}
.yae{bottom:635.560000pt;}
.y10e{bottom:637.560000pt;}
.y71{bottom:639.573333pt;}
.yad{bottom:647.560000pt;}
.yc9{bottom:648.560000pt;}
.y90{bottom:650.560000pt;}
.y70{bottom:655.560000pt;}
.y8f{bottom:666.600000pt;}
.yc8{bottom:667.600000pt;}
.y10d{bottom:668.600000pt;}
.y6f{bottom:670.600000pt;}
.yc7{bottom:682.600000pt;}
.y10c{bottom:684.600000pt;}
.y6e{bottom:685.600000pt;}
.y1b{bottom:696.600000pt;}
.yc6{bottom:698.626667pt;}
.y10b{bottom:700.626667pt;}
.y6d{bottom:701.626667pt;}
.yf1{bottom:707.626667pt;}
.yc5{bottom:713.626667pt;}
.y6c{bottom:716.626667pt;}
.yf{bottom:722.626667pt;}
.yf0{bottom:723.626667pt;}
.yc4{bottom:728.626667pt;}
.y6b{bottom:731.626667pt;}
.y10a{bottom:732.626667pt;}
.yef{bottom:738.666667pt;}
.yc3{bottom:744.666667pt;}
.y6a{bottom:747.666667pt;}
.y108{bottom:752.666667pt;}
.yee{bottom:753.666667pt;}
.yc2{bottom:759.666667pt;}
.y69{bottom:762.666667pt;}
.y107{bottom:767.666667pt;}
.yed{bottom:769.666667pt;}
.yc1{bottom:771.666667pt;}
.y68{bottom:777.706667pt;}
.yec{bottom:781.706667pt;}
.y106{bottom:782.706667pt;}
.y67{bottom:793.706667pt;}
.yeb{bottom:797.706667pt;}
.y105{bottom:798.706667pt;}
.y66{bottom:808.706667pt;}
.yac{bottom:811.733333pt;}
.yea{bottom:813.733333pt;}
.y65{bottom:823.733333pt;}
.y104{bottom:828.733333pt;}
.ye9{bottom:829.733333pt;}
.y64{bottom:839.733333pt;}
.ye8{bottom:845.733333pt;}
.y63{bottom:854.773333pt;}
.ye7{bottom:861.760000pt;}
.y62{bottom:869.773333pt;}
.y61{bottom:885.800000pt;}
.ye6{bottom:893.800000pt;}
.y60{bottom:900.800000pt;}
.ye5{bottom:909.800000pt;}
.y5f{bottom:915.800000pt;}
.yd{bottom:919.800000pt;}
.ye4{bottom:925.840000pt;}
.y5e{bottom:931.840000pt;}
.ye2{bottom:941.840000pt;}
.y6{bottom:942.840000pt;}
.y5d{bottom:946.840000pt;}
.ye3{bottom:957.866667pt;}
.y5c{bottom:961.866667pt;}
.ye1{bottom:973.866667pt;}
.y5b{bottom:977.866667pt;}
.y5a{bottom:992.866667pt;}
.y59{bottom:1007.893333pt;}
.y58{bottom:1023.893333pt;}
.y57{bottom:1038.933333pt;}
.h21{height:15.000000pt;}
.h2c{height:15.020000pt;}
.h22{height:15.033333pt;}
.h28{height:16.000000pt;}
.h2a{height:16.020000pt;}
.h27{height:16.033333pt;}
.h24{height:18.033333pt;}
.hb{height:23.033333pt;}
.h14{height:26.033333pt;}
.h13{height:26.465000pt;}
.h12{height:26.625000pt;}
.h2{height:29.033333pt;}
.h29{height:30.033333pt;}
.h23{height:31.000000pt;}
.h26{height:31.033333pt;}
.h2b{height:32.033333pt;}
.h8{height:33.000000pt;}
.h1d{height:35.406250pt;}
.h1b{height:36.308594pt;}
.h1a{height:36.689453pt;}
.h19{height:36.791016pt;}
.h20{height:37.857422pt;}
.hd{height:38.289062pt;}
.h11{height:38.625000pt;}
.ha{height:39.000000pt;}
.h2d{height:41.083385pt;}
.h1e{height:41.136719pt;}
.h1c{height:41.190052pt;}
.h1f{height:41.243385pt;}
.h18{height:41.843750pt;}
.h17{height:43.763672pt;}
.h25{height:47.033333pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:197.160000pt;}
.h16{height:399.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w18{width:77.100000pt;}
.w1d{width:83.133333pt;}
.w10{width:84.100000pt;}
.wf{width:84.133333pt;}
.w16{width:95.100000pt;}
.w1e{width:96.100000pt;}
.w17{width:96.133333pt;}
.w1c{width:100.133333pt;}
.w11{width:103.133333pt;}
.wa{width:106.133333pt;}
.wb{width:107.133333pt;}
.w12{width:110.133333pt;}
.w4{width:129.133333pt;}
.w13{width:136.160000pt;}
.w14{width:154.200000pt;}
.wd{width:168.226667pt;}
.w15{width:180.226667pt;}
.w1a{width:184.266667pt;}
.w7{width:190.240000pt;}
.w1b{width:193.226667pt;}
.w19{width:208.240000pt;}
.we{width:214.266667pt;}
.w20{width:220.266667pt;}
.w1f{width:221.266667pt;}
.w21{width:221.306667pt;}
.w9{width:236.306667pt;}
.wc{width:280.333333pt;}
.w8{width:474.600000pt;}
.w5{width:535.706667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.000000pt;}
.x8{left:7.026667pt;}
.x2{left:8.033333pt;}
.x12{left:9.000000pt;}
.x13{left:10.000000pt;}
.x16{left:18.000000pt;}
.x10{left:19.000000pt;}
.x11{left:56.066667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.xf{left:86.100000pt;}
.x6{left:87.100000pt;}
.x41{left:101.133322pt;}
.x29{left:120.166655pt;}
.x42{left:125.166655pt;}
.x1d{left:126.166655pt;}
.x28{left:132.166655pt;}
.x30{left:160.199988pt;}
.x36{left:189.239988pt;}
.x14{left:190.233333pt;}
.x39{left:191.239988pt;}
.x7{left:194.240000pt;}
.x1c{left:195.266667pt;}
.x2a{left:202.266667pt;}
.x26{left:209.266655pt;}
.x22{left:218.266655pt;}
.x24{left:219.266655pt;}
.x34{left:223.306655pt;}
.x31{left:227.306655pt;}
.x38{left:235.306655pt;}
.x37{left:253.333322pt;}
.x15{left:255.333333pt;}
.xb{left:263.360000pt;}
.x3a{left:273.333333pt;}
.x2d{left:279.373333pt;}
.x3f{left:287.373333pt;}
.x17{left:302.400000pt;}
.x9{left:312.400000pt;}
.xa{left:329.426667pt;}
.xe{left:332.406667pt;}
.x1e{left:346.440000pt;}
.x2b{left:357.466667pt;}
.x3d{left:374.466667pt;}
.xd{left:388.493333pt;}
.x33{left:397.506655pt;}
.xc{left:408.533333pt;}
.x18{left:409.533333pt;}
.x20{left:430.573333pt;}
.x2e{left:453.573333pt;}
.x3b{left:458.600000pt;}
.x40{left:508.640000pt;}
.x1f{left:515.666667pt;}
.x1a{left:516.666667pt;}
.x25{left:526.666655pt;}
.x23{left:538.693322pt;}
.x27{left:540.706655pt;}
.x3e{left:555.693333pt;}
.x2f{left:561.733322pt;}
.x35{left:568.733322pt;}
.x32{left:593.773322pt;}
.x21{left:619.800000pt;}
.x1b{left:622.800000pt;}
.x2c{left:633.800000pt;}
.x3c{left:652.840000pt;}
.x3{left:663.840000pt;}
}




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