
    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_c19117c628ff1f7fcd78748a.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_4f37fd6f7bc0b96e1eccc39a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2995c9a17e466b63f6fb8822.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bc72907e4c45c3a859f72f10.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_014c7e9aad8360bf67fa4078.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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8ce8d3f61d4c9971b5112869.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_134dc5349d3a32c36f027dd9.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5352c351e3185743ffe1b9ba.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_939fe3302bbfbbc1172114a1.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ef89c8fee12a2d125bd40a82.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_407cf17cded7a67e48661301.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ceea83d17783934eabf9cc97.woff')format("woff");}.fff{font-family:fff;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7b67cf39c69c85d077085858.woff')format("woff");}.ff10{font-family:ff10;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c43913ffae7cd380b4012d9a.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff12{font-family:ff12;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.lse{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.127200px;}
.lsf{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.ls11{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.lsc{letter-spacing:0.774000px;}
.ls3{letter-spacing:0.786240px;}
.ls14{letter-spacing:16.506720px;}
.ls12{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-5.557680px;}
._17{margin-left:-4.479120px;}
._3{margin-left:-3.409920px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.194000px;}
._1{width:1.656000px;}
._5{width:2.990880px;}
._6{width:4.035600px;}
._10{width:5.206800px;}
._9{width:6.273600px;}
._8{width:7.290720px;}
._b{width:8.443440px;}
._c{width:9.604080px;}
._14{width:10.950960px;}
._13{width:12.427680px;}
._11{width:13.446000px;}
._a{width:15.955920px;}
._12{width:17.048880px;}
._19{width:18.346320px;}
._f{width:20.617200px;}
._7{width:21.991680px;}
._16{width:23.118000px;}
._15{width:24.143040px;}
._18{width:26.909280px;}
._1a{width:30.733920px;}
._e{width:32.031360px;}
._d{width:33.465600px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.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:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:3.234000px;}
.y45{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.ye{bottom:9.540000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y48{bottom:14.940000px;}
.y4{bottom:17.280000px;}
.yac{bottom:17.325000px;}
.y47{bottom:18.000000px;}
.y2{bottom:20.160000px;}
.y44{bottom:20.340000px;}
.y1a{bottom:23.940000px;}
.yb{bottom:30.240000px;}
.y43{bottom:37.620000px;}
.y19{bottom:40.545000px;}
.ya{bottom:46.650000px;}
.y42{bottom:54.900000px;}
.y18{bottom:56.925000px;}
.y5{bottom:58.680000px;}
.y41{bottom:72.180000px;}
.y9{bottom:73.470000px;}
.y17{bottom:73.485000px;}
.y1{bottom:81.216000px;}
.y16{bottom:86.445000px;}
.y40{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y15{bottom:104.805000px;}
.y3f{bottom:106.740000px;}
.y7{bottom:111.450000px;}
.y14{bottom:123.165000px;}
.y3e{bottom:123.840000px;}
.y112{bottom:126.756000px;}
.y120{bottom:128.016000px;}
.yd6{bottom:131.796000px;}
.y91{bottom:132.156000px;}
.y118{bottom:135.576000px;}
.y3d{bottom:141.120000px;}
.y13{bottom:142.065000px;}
.ya6{bottom:142.596000px;}
.y111{bottom:144.036000px;}
.y11f{bottom:145.296000px;}
.y90{bottom:149.256000px;}
.yd4{bottom:149.796000px;}
.y53{bottom:158.070000px;}
.y3c{bottom:158.400000px;}
.y11e{bottom:159.330000px;}
.ya5{bottom:159.870000px;}
.y110{bottom:161.310000px;}
.y2c{bottom:165.780000px;}
.y8f{bottom:166.530000px;}
.yd3{bottom:167.790000px;}
.y12{bottom:167.805000px;}
.y52{bottom:175.350000px;}
.y3b{bottom:175.680000px;}
.ya4{bottom:176.970000px;}
.y10f{bottom:178.590000px;}
.y2b{bottom:183.060000px;}
.y8e{bottom:183.810000px;}
.yd2{bottom:185.790000px;}
.y51{bottom:192.630000px;}
.y3a{bottom:192.960000px;}
.y11{bottom:193.545000px;}
.ya3{bottom:194.250000px;}
.y10e{bottom:195.870000px;}
.y2a{bottom:200.340000px;}
.y8d{bottom:201.090000px;}
.yd1{bottom:203.790000px;}
.y50{bottom:209.730000px;}
.y39{bottom:210.240000px;}
.ya2{bottom:211.530000px;}
.y10d{bottom:212.970000px;}
.y29{bottom:217.620000px;}
.y10{bottom:218.025000px;}
.y8c{bottom:218.370000px;}
.yd0{bottom:221.790000px;}
.y4f{bottom:227.010000px;}
.y38{bottom:227.340000px;}
.ya1{bottom:228.810000px;}
.y10c{bottom:230.250000px;}
.y28{bottom:235.290000px;}
.y8b{bottom:235.470000px;}
.ycf{bottom:243.030000px;}
.y4e{bottom:244.290000px;}
.y37{bottom:244.650000px;}
.ya0{bottom:246.090000px;}
.y10b{bottom:247.530000px;}
.y27{bottom:252.750000px;}
.yce{bottom:260.310000px;}
.y4d{bottom:261.570000px;}
.y36{bottom:261.930000px;}
.y9f{bottom:263.370000px;}
.y10a{bottom:264.810000px;}
.y8a{bottom:270.030000px;}
.y26{bottom:270.210000px;}
.ycd{bottom:275.070000px;}
.y4c{bottom:278.850000px;}
.y35{bottom:279.210000px;}
.y9e{bottom:280.470000px;}
.y109{bottom:282.090000px;}
.y89{bottom:287.310000px;}
.y25{bottom:287.490000px;}
.ycc{bottom:293.070000px;}
.y4b{bottom:295.950000px;}
.y34{bottom:296.490000px;}
.y9d{bottom:297.750000px;}
.y108{bottom:299.370000px;}
.y88{bottom:304.590000px;}
.y24{bottom:304.950000px;}
.ycb{bottom:311.070000px;}
.y4a{bottom:313.230000px;}
.y33{bottom:313.590000px;}
.y9c{bottom:315.030000px;}
.y107{bottom:316.470000px;}
.y87{bottom:321.870000px;}
.y23{bottom:322.410000px;}
.yca{bottom:329.070000px;}
.y32{bottom:330.870000px;}
.y49{bottom:331.230000px;}
.y9b{bottom:332.310000px;}
.y106{bottom:333.750000px;}
.y86{bottom:339.015000px;}
.y22{bottom:339.690000px;}
.y46{bottom:345.675000px;}
.yc9{bottom:347.115000px;}
.y31{bottom:348.150000px;}
.y9a{bottom:349.635000px;}
.y105{bottom:351.075000px;}
.y85{bottom:356.295000px;}
.y21{bottom:357.150000px;}
.yc8{bottom:365.115000px;}
.y30{bottom:365.430000px;}
.y99{bottom:366.915000px;}
.y104{bottom:368.355000px;}
.y84{bottom:373.575000px;}
.y20{bottom:374.790000px;}
.y1d{bottom:375.015000px;}
.y2f{bottom:382.710000px;}
.yc7{bottom:383.115000px;}
.y98{bottom:384.015000px;}
.y103{bottom:385.635000px;}
.y83{bottom:390.855000px;}
.y2e{bottom:399.990000px;}
.y97{bottom:401.295000px;}
.y1f{bottom:402.150000px;}
.y102{bottom:402.915000px;}
.yc6{bottom:404.355000px;}
.y82{bottom:408.135000px;}
.y2d{bottom:417.090000px;}
.y96{bottom:418.575000px;}
.y1e{bottom:419.790000px;}
.y101{bottom:420.015000px;}
.yc5{bottom:421.635000px;}
.y81{bottom:425.415000px;}
.yc4{bottom:436.395000px;}
.y100{bottom:437.295000px;}
.y80{bottom:442.515000px;}
.y95{bottom:447.735000px;}
.yc3{bottom:454.395000px;}
.yff{bottom:454.575000px;}
.y7f{bottom:459.795000px;}
.y94{bottom:465.015000px;}
.yfe{bottom:471.855000px;}
.yc2{bottom:472.395000px;}
.y7e{bottom:477.075000px;}
.y93{bottom:482.295000px;}
.yfd{bottom:489.135000px;}
.yc1{bottom:490.395000px;}
.y7d{bottom:494.355000px;}
.yfc{bottom:506.415000px;}
.yc0{bottom:508.395000px;}
.y92{bottom:511.455000px;}
.y7c{bottom:511.635000px;}
.yfb{bottom:523.515000px;}
.ybf{bottom:526.395000px;}
.y7b{bottom:528.735000px;}
.yfa{bottom:540.795000px;}
.ybe{bottom:544.395000px;}
.y117{bottom:545.475000px;}
.y7a{bottom:546.015000px;}
.yf9{bottom:558.075000px;}
.ybd{bottom:562.395000px;}
.y116{bottom:562.755000px;}
.y79{bottom:563.295000px;}
.y11d{bottom:574.275000px;}
.yf8{bottom:575.355000px;}
.y115{bottom:576.795000px;}
.ybc{bottom:580.395000px;}
.y78{bottom:580.575000px;}
.y11c{bottom:591.555000px;}
.yf7{bottom:592.635000px;}
.y77{bottom:597.855000px;}
.ybb{bottom:601.635000px;}
.y11b{bottom:605.625000px;}
.yf6{bottom:609.765000px;}
.y76{bottom:615.165000px;}
.yba{bottom:618.765000px;}
.yf5{bottom:627.045000px;}
.y75{bottom:632.265000px;}
.yb9{bottom:633.525000px;}
.yf4{bottom:644.325000px;}
.y74{bottom:649.545000px;}
.yb8{bottom:651.525000px;}
.yf3{bottom:661.605000px;}
.y73{bottom:666.825000px;}
.yb7{bottom:669.525000px;}
.yf2{bottom:678.885000px;}
.y72{bottom:684.105000px;}
.yb6{bottom:687.525000px;}
.yf1{bottom:696.165000px;}
.y71{bottom:701.385000px;}
.yb5{bottom:705.525000px;}
.yf0{bottom:713.265000px;}
.y70{bottom:718.665000px;}
.yb4{bottom:723.525000px;}
.yef{bottom:730.545000px;}
.y6f{bottom:735.765000px;}
.yb3{bottom:741.525000px;}
.yee{bottom:747.825000px;}
.y6e{bottom:753.045000px;}
.yb2{bottom:762.765000px;}
.yed{bottom:765.105000px;}
.y6d{bottom:770.325000px;}
.yb1{bottom:780.045000px;}
.yec{bottom:782.385000px;}
.y6c{bottom:787.605000px;}
.yb0{bottom:794.805000px;}
.yeb{bottom:799.665000px;}
.y6b{bottom:804.885000px;}
.y1b{bottom:806.145000px;}
.yaf{bottom:812.805000px;}
.yea{bottom:816.765000px;}
.y6a{bottom:822.165000px;}
.yae{bottom:830.805000px;}
.y11a{bottom:832.245000px;}
.ye9{bottom:834.045000px;}
.yf{bottom:835.665000px;}
.y69{bottom:839.265000px;}
.y119{bottom:846.285000px;}
.yad{bottom:848.805000px;}
.ye8{bottom:851.325000px;}
.y68{bottom:856.545000px;}
.yab{bottom:866.805000px;}
.ye7{bottom:868.605000px;}
.y67{bottom:873.870000px;}
.yaa{bottom:884.850000px;}
.ye6{bottom:885.930000px;}
.y66{bottom:891.150000px;}
.ya9{bottom:902.850000px;}
.ye5{bottom:903.030000px;}
.y65{bottom:908.430000px;}
.ye4{bottom:920.310000px;}
.ya8{bottom:920.850000px;}
.y64{bottom:925.530000px;}
.ye3{bottom:937.590000px;}
.ya7{bottom:938.850000px;}
.y63{bottom:942.810000px;}
.ye2{bottom:954.870000px;}
.y62{bottom:960.090000px;}
.y114{bottom:967.650000px;}
.ye1{bottom:972.150000px;}
.y61{bottom:977.370000px;}
.y113{bottom:981.510000px;}
.ye0{bottom:989.430000px;}
.y60{bottom:994.650000px;}
.ydf{bottom:1006.530000px;}
.y5f{bottom:1011.930000px;}
.yde{bottom:1023.810000px;}
.y5e{bottom:1029.030000px;}
.ydd{bottom:1041.090000px;}
.y5d{bottom:1046.310000px;}
.ydc{bottom:1055.850000px;}
.y5c{bottom:1063.590000px;}
.yd{bottom:1068.810000px;}
.ydb{bottom:1073.850000px;}
.y5b{bottom:1080.870000px;}
.yda{bottom:1091.850000px;}
.y6{bottom:1094.010000px;}
.y5a{bottom:1098.150000px;}
.yd9{bottom:1109.850000px;}
.y59{bottom:1115.430000px;}
.yd8{bottom:1127.850000px;}
.y58{bottom:1132.530000px;}
.yd7{bottom:1145.880000px;}
.y57{bottom:1149.840000px;}
.y56{bottom:1167.120000px;}
.y55{bottom:1184.400000px;}
.y54{bottom:1201.680000px;}
.h1f{height:17.100000px;}
.h1d{height:17.280000px;}
.h1e{height:17.316000px;}
.hb{height:24.840000px;}
.h11{height:28.968750px;}
.h1a{height:29.340000px;}
.h12{height:29.520000px;}
.h2{height:32.940000px;}
.h8{height:36.180000px;}
.h1b{height:38.818125px;}
.h1c{height:42.164648px;}
.h18{height:42.281367px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h19{height:52.435898px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:233.130000px;}
.h14{height:431.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w15{width:84.600000px;}
.w20{width:86.940000px;}
.w11{width:91.260000px;}
.wd{width:99.180000px;}
.w1a{width:99.720000px;}
.w1c{width:102.240000px;}
.w19{width:111.816000px;}
.w18{width:113.040000px;}
.w14{width:139.536000px;}
.w21{width:139.716000px;}
.w10{width:150.690000px;}
.w5{width:151.950000px;}
.wc{width:163.830000px;}
.w1d{width:180.210000px;}
.w17{width:182.730000px;}
.wa{width:200.055000px;}
.w1e{width:215.130000px;}
.w16{width:219.315000px;}
.w8{width:223.455000px;}
.w13{width:225.210000px;}
.w1b{width:229.755000px;}
.w1f{width:230.115000px;}
.we{width:242.175000px;}
.wf{width:243.210000px;}
.wb{width:264.450000px;}
.w22{width:270.750000px;}
.w12{width:278.175000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.560000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xb{left:18.756000px;}
.xc{left:24.156000px;}
.x10{left:38.376000px;}
.xf{left:50.616000px;}
.xe{left:63.756000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x33{left:108.035987px;}
.x34{left:135.035987px;}
.x2f{left:205.409987px;}
.x11{left:215.175000px;}
.x5{left:232.950000px;}
.x32{left:243.209987px;}
.x14{left:260.309987px;}
.x8{left:272.235000px;}
.x15{left:282.495000px;}
.x21{left:301.755000px;}
.x30{left:303.374987px;}
.x12{left:304.455000px;}
.x29{left:310.034987px;}
.x25{left:312.195000px;}
.x18{left:324.615000px;}
.x20{left:328.034987px;}
.x6{left:331.995000px;}
.x2d{left:335.054987px;}
.xd{left:338.655000px;}
.x1c{left:340.454987px;}
.x24{left:342.974987px;}
.x7{left:351.255000px;}
.x1d{left:360.615000px;}
.xa{left:365.475000px;}
.x2a{left:400.215000px;}
.x26{left:415.155000px;}
.x9{left:439.500000px;}
.x28{left:446.474987px;}
.x22{left:485.205000px;}
.x2b{left:540.645000px;}
.x16{left:547.665000px;}
.x19{left:568.545000px;}
.x1e{left:586.545000px;}
.x2e{left:594.104987px;}
.x27{left:596.265000px;}
.x23{left:598.965000px;}
.x31{left:600.944987px;}
.x2c{left:673.889987px;}
.x17{left:712.230000px;}
.x1a{left:720.150000px;}
.x1f{left:726.810000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.lse{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.113067pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.ls11{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.lsc{letter-spacing:0.688000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls14{letter-spacing:14.672640pt;}
.ls12{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-4.940160pt;}
._17{margin-left:-3.981440pt;}
._3{margin-left:-3.031040pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-1.061333pt;}
._1{width:1.472000pt;}
._5{width:2.658560pt;}
._6{width:3.587200pt;}
._10{width:4.628267pt;}
._9{width:5.576533pt;}
._8{width:6.480640pt;}
._b{width:7.505280pt;}
._c{width:8.536960pt;}
._14{width:9.734187pt;}
._13{width:11.046827pt;}
._11{width:11.952000pt;}
._a{width:14.183040pt;}
._12{width:15.154560pt;}
._19{width:16.307840pt;}
._f{width:18.326400pt;}
._7{width:19.548160pt;}
._16{width:20.549333pt;}
._15{width:21.460480pt;}
._18{width:23.919360pt;}
._1a{width:27.319040pt;}
._e{width:28.472320pt;}
._d{width:29.747200pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:2.874667pt;}
.y45{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.ye{bottom:8.480000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y48{bottom:13.280000pt;}
.y4{bottom:15.360000pt;}
.yac{bottom:15.400000pt;}
.y47{bottom:16.000000pt;}
.y2{bottom:17.920000pt;}
.y44{bottom:18.080000pt;}
.y1a{bottom:21.280000pt;}
.yb{bottom:26.880000pt;}
.y43{bottom:33.440000pt;}
.y19{bottom:36.040000pt;}
.ya{bottom:41.466667pt;}
.y42{bottom:48.800000pt;}
.y18{bottom:50.600000pt;}
.y5{bottom:52.160000pt;}
.y41{bottom:64.160000pt;}
.y9{bottom:65.306667pt;}
.y17{bottom:65.320000pt;}
.y1{bottom:72.192000pt;}
.y16{bottom:76.840000pt;}
.y40{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:93.160000pt;}
.y3f{bottom:94.880000pt;}
.y7{bottom:99.066667pt;}
.y14{bottom:109.480000pt;}
.y3e{bottom:110.080000pt;}
.y112{bottom:112.672000pt;}
.y120{bottom:113.792000pt;}
.yd6{bottom:117.152000pt;}
.y91{bottom:117.472000pt;}
.y118{bottom:120.512000pt;}
.y3d{bottom:125.440000pt;}
.y13{bottom:126.280000pt;}
.ya6{bottom:126.752000pt;}
.y111{bottom:128.032000pt;}
.y11f{bottom:129.152000pt;}
.y90{bottom:132.672000pt;}
.yd4{bottom:133.152000pt;}
.y53{bottom:140.506667pt;}
.y3c{bottom:140.800000pt;}
.y11e{bottom:141.626667pt;}
.ya5{bottom:142.106667pt;}
.y110{bottom:143.386667pt;}
.y2c{bottom:147.360000pt;}
.y8f{bottom:148.026667pt;}
.yd3{bottom:149.146667pt;}
.y12{bottom:149.160000pt;}
.y52{bottom:155.866667pt;}
.y3b{bottom:156.160000pt;}
.ya4{bottom:157.306667pt;}
.y10f{bottom:158.746667pt;}
.y2b{bottom:162.720000pt;}
.y8e{bottom:163.386667pt;}
.yd2{bottom:165.146667pt;}
.y51{bottom:171.226667pt;}
.y3a{bottom:171.520000pt;}
.y11{bottom:172.040000pt;}
.ya3{bottom:172.666667pt;}
.y10e{bottom:174.106667pt;}
.y2a{bottom:178.080000pt;}
.y8d{bottom:178.746667pt;}
.yd1{bottom:181.146667pt;}
.y50{bottom:186.426667pt;}
.y39{bottom:186.880000pt;}
.ya2{bottom:188.026667pt;}
.y10d{bottom:189.306667pt;}
.y29{bottom:193.440000pt;}
.y10{bottom:193.800000pt;}
.y8c{bottom:194.106667pt;}
.yd0{bottom:197.146667pt;}
.y4f{bottom:201.786667pt;}
.y38{bottom:202.080000pt;}
.ya1{bottom:203.386667pt;}
.y10c{bottom:204.666667pt;}
.y28{bottom:209.146667pt;}
.y8b{bottom:209.306667pt;}
.ycf{bottom:216.026667pt;}
.y4e{bottom:217.146667pt;}
.y37{bottom:217.466667pt;}
.ya0{bottom:218.746667pt;}
.y10b{bottom:220.026667pt;}
.y27{bottom:224.666667pt;}
.yce{bottom:231.386667pt;}
.y4d{bottom:232.506667pt;}
.y36{bottom:232.826667pt;}
.y9f{bottom:234.106667pt;}
.y10a{bottom:235.386667pt;}
.y8a{bottom:240.026667pt;}
.y26{bottom:240.186667pt;}
.ycd{bottom:244.506667pt;}
.y4c{bottom:247.866667pt;}
.y35{bottom:248.186667pt;}
.y9e{bottom:249.306667pt;}
.y109{bottom:250.746667pt;}
.y89{bottom:255.386667pt;}
.y25{bottom:255.546667pt;}
.ycc{bottom:260.506667pt;}
.y4b{bottom:263.066667pt;}
.y34{bottom:263.546667pt;}
.y9d{bottom:264.666667pt;}
.y108{bottom:266.106667pt;}
.y88{bottom:270.746667pt;}
.y24{bottom:271.066667pt;}
.ycb{bottom:276.506667pt;}
.y4a{bottom:278.426667pt;}
.y33{bottom:278.746667pt;}
.y9c{bottom:280.026667pt;}
.y107{bottom:281.306667pt;}
.y87{bottom:286.106667pt;}
.y23{bottom:286.586667pt;}
.yca{bottom:292.506667pt;}
.y32{bottom:294.106667pt;}
.y49{bottom:294.426667pt;}
.y9b{bottom:295.386667pt;}
.y106{bottom:296.666667pt;}
.y86{bottom:301.346667pt;}
.y22{bottom:301.946667pt;}
.y46{bottom:307.266667pt;}
.yc9{bottom:308.546667pt;}
.y31{bottom:309.466667pt;}
.y9a{bottom:310.786667pt;}
.y105{bottom:312.066667pt;}
.y85{bottom:316.706667pt;}
.y21{bottom:317.466667pt;}
.yc8{bottom:324.546667pt;}
.y30{bottom:324.826667pt;}
.y99{bottom:326.146667pt;}
.y104{bottom:327.426667pt;}
.y84{bottom:332.066667pt;}
.y20{bottom:333.146667pt;}
.y1d{bottom:333.346667pt;}
.y2f{bottom:340.186667pt;}
.yc7{bottom:340.546667pt;}
.y98{bottom:341.346667pt;}
.y103{bottom:342.786667pt;}
.y83{bottom:347.426667pt;}
.y2e{bottom:355.546667pt;}
.y97{bottom:356.706667pt;}
.y1f{bottom:357.466667pt;}
.y102{bottom:358.146667pt;}
.yc6{bottom:359.426667pt;}
.y82{bottom:362.786667pt;}
.y2d{bottom:370.746667pt;}
.y96{bottom:372.066667pt;}
.y1e{bottom:373.146667pt;}
.y101{bottom:373.346667pt;}
.yc5{bottom:374.786667pt;}
.y81{bottom:378.146667pt;}
.yc4{bottom:387.906667pt;}
.y100{bottom:388.706667pt;}
.y80{bottom:393.346667pt;}
.y95{bottom:397.986667pt;}
.yc3{bottom:403.906667pt;}
.yff{bottom:404.066667pt;}
.y7f{bottom:408.706667pt;}
.y94{bottom:413.346667pt;}
.yfe{bottom:419.426667pt;}
.yc2{bottom:419.906667pt;}
.y7e{bottom:424.066667pt;}
.y93{bottom:428.706667pt;}
.yfd{bottom:434.786667pt;}
.yc1{bottom:435.906667pt;}
.y7d{bottom:439.426667pt;}
.yfc{bottom:450.146667pt;}
.yc0{bottom:451.906667pt;}
.y92{bottom:454.626667pt;}
.y7c{bottom:454.786667pt;}
.yfb{bottom:465.346667pt;}
.ybf{bottom:467.906667pt;}
.y7b{bottom:469.986667pt;}
.yfa{bottom:480.706667pt;}
.ybe{bottom:483.906667pt;}
.y117{bottom:484.866667pt;}
.y7a{bottom:485.346667pt;}
.yf9{bottom:496.066667pt;}
.ybd{bottom:499.906667pt;}
.y116{bottom:500.226667pt;}
.y79{bottom:500.706667pt;}
.y11d{bottom:510.466667pt;}
.yf8{bottom:511.426667pt;}
.y115{bottom:512.706667pt;}
.ybc{bottom:515.906667pt;}
.y78{bottom:516.066667pt;}
.y11c{bottom:525.826667pt;}
.yf7{bottom:526.786667pt;}
.y77{bottom:531.426667pt;}
.ybb{bottom:534.786667pt;}
.y11b{bottom:538.333333pt;}
.yf6{bottom:542.013333pt;}
.y76{bottom:546.813333pt;}
.yba{bottom:550.013333pt;}
.yf5{bottom:557.373333pt;}
.y75{bottom:562.013333pt;}
.yb9{bottom:563.133333pt;}
.yf4{bottom:572.733333pt;}
.y74{bottom:577.373333pt;}
.yb8{bottom:579.133333pt;}
.yf3{bottom:588.093333pt;}
.y73{bottom:592.733333pt;}
.yb7{bottom:595.133333pt;}
.yf2{bottom:603.453333pt;}
.y72{bottom:608.093333pt;}
.yb6{bottom:611.133333pt;}
.yf1{bottom:618.813333pt;}
.y71{bottom:623.453333pt;}
.yb5{bottom:627.133333pt;}
.yf0{bottom:634.013333pt;}
.y70{bottom:638.813333pt;}
.yb4{bottom:643.133333pt;}
.yef{bottom:649.373333pt;}
.y6f{bottom:654.013333pt;}
.yb3{bottom:659.133333pt;}
.yee{bottom:664.733333pt;}
.y6e{bottom:669.373333pt;}
.yb2{bottom:678.013333pt;}
.yed{bottom:680.093333pt;}
.y6d{bottom:684.733333pt;}
.yb1{bottom:693.373333pt;}
.yec{bottom:695.453333pt;}
.y6c{bottom:700.093333pt;}
.yb0{bottom:706.493333pt;}
.yeb{bottom:710.813333pt;}
.y6b{bottom:715.453333pt;}
.y1b{bottom:716.573333pt;}
.yaf{bottom:722.493333pt;}
.yea{bottom:726.013333pt;}
.y6a{bottom:730.813333pt;}
.yae{bottom:738.493333pt;}
.y11a{bottom:739.773333pt;}
.ye9{bottom:741.373333pt;}
.yf{bottom:742.813333pt;}
.y69{bottom:746.013333pt;}
.y119{bottom:752.253333pt;}
.yad{bottom:754.493333pt;}
.ye8{bottom:756.733333pt;}
.y68{bottom:761.373333pt;}
.yab{bottom:770.493333pt;}
.ye7{bottom:772.093333pt;}
.y67{bottom:776.773333pt;}
.yaa{bottom:786.533333pt;}
.ye6{bottom:787.493333pt;}
.y66{bottom:792.133333pt;}
.ya9{bottom:802.533333pt;}
.ye5{bottom:802.693333pt;}
.y65{bottom:807.493333pt;}
.ye4{bottom:818.053333pt;}
.ya8{bottom:818.533333pt;}
.y64{bottom:822.693333pt;}
.ye3{bottom:833.413333pt;}
.ya7{bottom:834.533333pt;}
.y63{bottom:838.053333pt;}
.ye2{bottom:848.773333pt;}
.y62{bottom:853.413333pt;}
.y114{bottom:860.133333pt;}
.ye1{bottom:864.133333pt;}
.y61{bottom:868.773333pt;}
.y113{bottom:872.453333pt;}
.ye0{bottom:879.493333pt;}
.y60{bottom:884.133333pt;}
.ydf{bottom:894.693333pt;}
.y5f{bottom:899.493333pt;}
.yde{bottom:910.053333pt;}
.y5e{bottom:914.693333pt;}
.ydd{bottom:925.413333pt;}
.y5d{bottom:930.053333pt;}
.ydc{bottom:938.533333pt;}
.y5c{bottom:945.413333pt;}
.yd{bottom:950.053333pt;}
.ydb{bottom:954.533333pt;}
.y5b{bottom:960.773333pt;}
.yda{bottom:970.533333pt;}
.y6{bottom:972.453333pt;}
.y5a{bottom:976.133333pt;}
.yd9{bottom:986.533333pt;}
.y59{bottom:991.493333pt;}
.yd8{bottom:1002.533333pt;}
.y58{bottom:1006.693333pt;}
.yd7{bottom:1018.560000pt;}
.y57{bottom:1022.080000pt;}
.y56{bottom:1037.440000pt;}
.y55{bottom:1052.800000pt;}
.y54{bottom:1068.160000pt;}
.h1f{height:15.200000pt;}
.h1d{height:15.360000pt;}
.h1e{height:15.392000pt;}
.hb{height:22.080000pt;}
.h11{height:25.750000pt;}
.h1a{height:26.080000pt;}
.h12{height:26.240000pt;}
.h2{height:29.280000pt;}
.h8{height:32.160000pt;}
.h1b{height:34.505000pt;}
.h1c{height:37.479688pt;}
.h18{height:37.583438pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h19{height:46.609688pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:207.226667pt;}
.h14{height:383.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w15{width:75.200000pt;}
.w20{width:77.280000pt;}
.w11{width:81.120000pt;}
.wd{width:88.160000pt;}
.w1a{width:88.640000pt;}
.w1c{width:90.880000pt;}
.w19{width:99.392000pt;}
.w18{width:100.480000pt;}
.w14{width:124.032000pt;}
.w21{width:124.192000pt;}
.w10{width:133.946667pt;}
.w5{width:135.066667pt;}
.wc{width:145.626667pt;}
.w1d{width:160.186667pt;}
.w17{width:162.426667pt;}
.wa{width:177.826667pt;}
.w1e{width:191.226667pt;}
.w16{width:194.946667pt;}
.w8{width:198.626667pt;}
.w13{width:200.186667pt;}
.w1b{width:204.226667pt;}
.w1f{width:204.546667pt;}
.we{width:215.266667pt;}
.wf{width:216.186667pt;}
.wb{width:235.066667pt;}
.w22{width:240.666667pt;}
.w12{width:247.266667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.720000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xb{left:16.672000pt;}
.xc{left:21.472000pt;}
.x10{left:34.112000pt;}
.xf{left:44.992000pt;}
.xe{left:56.672000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x33{left:96.031988pt;}
.x34{left:120.031988pt;}
.x2f{left:182.586655pt;}
.x11{left:191.266667pt;}
.x5{left:207.066667pt;}
.x32{left:216.186655pt;}
.x14{left:231.386655pt;}
.x8{left:241.986667pt;}
.x15{left:251.106667pt;}
.x21{left:268.226667pt;}
.x30{left:269.666655pt;}
.x12{left:270.626667pt;}
.x29{left:275.586655pt;}
.x25{left:277.506667pt;}
.x18{left:288.546667pt;}
.x20{left:291.586655pt;}
.x6{left:295.106667pt;}
.x2d{left:297.826655pt;}
.xd{left:301.026667pt;}
.x1c{left:302.626655pt;}
.x24{left:304.866655pt;}
.x7{left:312.226667pt;}
.x1d{left:320.546667pt;}
.xa{left:324.866667pt;}
.x2a{left:355.746667pt;}
.x26{left:369.026667pt;}
.x9{left:390.666667pt;}
.x28{left:396.866655pt;}
.x22{left:431.293333pt;}
.x2b{left:480.573333pt;}
.x16{left:486.813333pt;}
.x19{left:505.373333pt;}
.x1e{left:521.373333pt;}
.x2e{left:528.093322pt;}
.x27{left:530.013333pt;}
.x23{left:532.413333pt;}
.x31{left:534.173322pt;}
.x2c{left:599.013322pt;}
.x17{left:633.093333pt;}
.x1a{left:640.133333pt;}
.x1f{left:646.053333pt;}
.x3{left:656.933333pt;}
}




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