
    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_86e9b86c5cae19c73b665a31.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_2836bd4508053f754db192a0.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_d941901bf8e0534a18ae9960.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_e24f597c3048e9346eb1205f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_1f039661180bc31085041b3a.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_965c190fd263f96cb231ef4c.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_9522adfe6a348671f3b1ce54.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_3519ef9377526615349d7e97.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_486cbfcb1cd1e43cb5ec0458.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_e7c1f0b1cda38cf09503f86e.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3b898fa060d191a7a470328d.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1bdaa34effab97ea4a2ed65f.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0bb203e8edb9d334869d6bd4.woff')format("woff");}.ff11{font-family:ff11;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls19{letter-spacing:-0.708000px;}
.ls10{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.127200px;}
.ls12{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.066240px;}
.lsc{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.504000px;}
.ls16{letter-spacing:2.520000px;}
.ls15{letter-spacing:3.240000px;}
.ls14{letter-spacing:9.000000px;}
.ls18{letter-spacing:16.506720px;}
.ls17{letter-spacing:46.026720px;}
.lse{letter-spacing:64.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199800px;}
.wse{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.wsa{word-spacing:-9.732960px;}
.wsb{word-spacing:-9.720000px;}
.ws11{word-spacing:-9.012000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._6{margin-left:-5.664000px;}
._4{margin-left:-4.075680px;}
._3{margin-left:-2.448000px;}
._0{margin-left:-1.086000px;}
._1{width:1.224000px;}
._5{width:2.880000px;}
._a{width:4.471200px;}
._2{width:5.616000px;}
._c{width:7.464720px;}
._d{width:9.261600px;}
._10{width:10.669440px;}
._f{width:11.710800px;}
._b{width:13.099200px;}
._e{width:16.089840px;}
._7{width:17.606880px;}
._14{width:19.242720px;}
._15{width:20.798880px;}
._8{width:23.755680px;}
._9{width:25.099200px;}
._13{width:121.104720px;}
._17{width:143.483760px;}
._16{width:144.678960px;}
._12{width:154.240560px;}
._11{width:155.555280px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc5{color:rgb(255,255,255);}
.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;}
.y45{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.ybe{bottom:3.780000px;}
.y4a{bottom:3.960000px;}
.y95{bottom:4.140000px;}
.y97{bottom:4.320000px;}
.ya4{bottom:4.680000px;}
.ya2{bottom:4.725000px;}
.y19{bottom:4.860000px;}
.yde{bottom:8.280000px;}
.ye{bottom:9.540000px;}
.y48{bottom:10.620000px;}
.yb1{bottom:12.240000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.y44{bottom:20.520000px;}
.y49{bottom:22.365000px;}
.y47{bottom:25.245000px;}
.y18{bottom:29.340000px;}
.yb{bottom:30.240000px;}
.y43{bottom:37.800000px;}
.y17{bottom:45.945000px;}
.ya{bottom:46.620000px;}
.y5{bottom:48.420000px;}
.y42{bottom:55.080000px;}
.y16{bottom:62.325000px;}
.y1{bottom:69.516000px;}
.y41{bottom:72.360000px;}
.y9{bottom:73.440000px;}
.y15{bottom:78.165000px;}
.y14{bottom:88.605000px;}
.y40{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y3f{bottom:106.740000px;}
.y13{bottom:106.965000px;}
.y7{bottom:111.450000px;}
.yae{bottom:116.136000px;}
.ydc{bottom:116.316000px;}
.y56{bottom:118.656000px;}
.y93{bottom:119.556000px;}
.y3e{bottom:124.020000px;}
.y12{bottom:125.865000px;}
.yad{bottom:135.036000px;}
.y55{bottom:135.936000px;}
.y92{bottom:136.836000px;}
.y3d{bottom:141.300000px;}
.y11d{bottom:143.316000px;}
.y11{bottom:151.605000px;}
.y54{bottom:153.210000px;}
.yac{bottom:153.750000px;}
.y91{bottom:154.110000px;}
.y10b{bottom:157.530000px;}
.y3c{bottom:158.580000px;}
.y11c{bottom:160.590000px;}
.y53{bottom:170.310000px;}
.y90{bottom:171.390000px;}
.yab{bottom:172.470000px;}
.y10a{bottom:174.630000px;}
.ydb{bottom:175.530000px;}
.y3b{bottom:175.860000px;}
.y10{bottom:176.085000px;}
.y11b{bottom:177.870000px;}
.y2b{bottom:182.160000px;}
.y52{bottom:187.590000px;}
.y8f{bottom:188.670000px;}
.y109{bottom:191.910000px;}
.y3a{bottom:192.960000px;}
.yaa{bottom:194.250000px;}
.y11a{bottom:194.970000px;}
.y2a{bottom:197.460000px;}
.yda{bottom:197.490000px;}
.y51{bottom:204.870000px;}
.y8e{bottom:205.770000px;}
.y108{bottom:209.190000px;}
.y39{bottom:210.240000px;}
.y119{bottom:212.250000px;}
.yd9{bottom:214.770000px;}
.y29{bottom:215.100000px;}
.ya9{bottom:216.210000px;}
.y50{bottom:222.150000px;}
.y8d{bottom:223.050000px;}
.y107{bottom:226.470000px;}
.y38{bottom:227.520000px;}
.y118{bottom:229.530000px;}
.yd8{bottom:232.050000px;}
.y28{bottom:232.380000px;}
.ya8{bottom:233.490000px;}
.y4f{bottom:239.430000px;}
.y8c{bottom:240.330000px;}
.y106{bottom:243.750000px;}
.y37{bottom:244.830000px;}
.y117{bottom:246.810000px;}
.yd7{bottom:249.330000px;}
.y27{bottom:249.690000px;}
.ya7{bottom:250.770000px;}
.y4e{bottom:256.710000px;}
.y8b{bottom:257.610000px;}
.y105{bottom:261.030000px;}
.y36{bottom:262.110000px;}
.y116{bottom:264.090000px;}
.ya6{bottom:266.250000px;}
.yd6{bottom:266.430000px;}
.y26{bottom:267.330000px;}
.y4d{bottom:273.810000px;}
.y8a{bottom:274.890000px;}
.y104{bottom:278.130000px;}
.y35{bottom:279.390000px;}
.y115{bottom:281.370000px;}
.yd5{bottom:282.090000px;}
.y25{bottom:284.790000px;}
.ya5{bottom:288.390000px;}
.y4c{bottom:291.090000px;}
.y89{bottom:292.170000px;}
.y103{bottom:295.410000px;}
.y34{bottom:296.490000px;}
.y114{bottom:298.470000px;}
.yd4{bottom:300.810000px;}
.y24{bottom:302.250000px;}
.y4b{bottom:308.370000px;}
.ya3{bottom:309.990000px;}
.y88{bottom:310.350000px;}
.y102{bottom:312.690000px;}
.y33{bottom:313.770000px;}
.y113{bottom:315.750000px;}
.y23{bottom:319.530000px;}
.y46{bottom:322.410000px;}
.y87{bottom:328.710000px;}
.y101{bottom:329.970000px;}
.y32{bottom:331.050000px;}
.y112{bottom:333.030000px;}
.ya1{bottom:334.650000px;}
.y22{bottom:336.990000px;}
.yd3{bottom:338.295000px;}
.y86{bottom:347.115000px;}
.y100{bottom:347.295000px;}
.y31{bottom:348.330000px;}
.y111{bottom:350.355000px;}
.y21{bottom:354.450000px;}
.y1c{bottom:358.995000px;}
.ya0{bottom:359.535000px;}
.yd2{bottom:360.075000px;}
.yff{bottom:364.575000px;}
.y85{bottom:365.475000px;}
.y30{bottom:365.610000px;}
.y110{bottom:367.635000px;}
.y20{bottom:371.730000px;}
.y9f{bottom:376.815000px;}
.yfe{bottom:381.675000px;}
.yd1{bottom:382.035000px;}
.y84{bottom:382.755000px;}
.y2f{bottom:382.890000px;}
.y10f{bottom:384.915000px;}
.y1f{bottom:392.070000px;}
.y9e{bottom:394.095000px;}
.yfd{bottom:398.955000px;}
.yd0{bottom:399.315000px;}
.y83{bottom:399.855000px;}
.y2e{bottom:399.990000px;}
.y10e{bottom:402.015000px;}
.y9d{bottom:411.375000px;}
.yfc{bottom:414.435000px;}
.ycf{bottom:416.595000px;}
.y2d{bottom:417.270000px;}
.y82{bottom:418.215000px;}
.y10d{bottom:419.295000px;}
.y1e{bottom:419.430000px;}
.y9c{bottom:428.655000px;}
.yce{bottom:433.875000px;}
.y2c{bottom:434.550000px;}
.yfb{bottom:435.135000px;}
.y81{bottom:435.495000px;}
.y10c{bottom:436.575000px;}
.y1d{bottom:437.250000px;}
.y9b{bottom:444.135000px;}
.ycd{bottom:450.975000px;}
.y80{bottom:453.855000px;}
.yfa{bottom:455.115000px;}
.y9a{bottom:465.195000px;}
.ycc{bottom:468.255000px;}
.y7f{bottom:471.135000px;}
.yf9{bottom:478.155000px;}
.ycb{bottom:483.735000px;}
.y99{bottom:485.715000px;}
.y7e{bottom:488.235000px;}
.yf8{bottom:501.375000px;}
.yca{bottom:502.455000px;}
.y7d{bottom:505.515000px;}
.y98{bottom:506.235000px;}
.yf7{bottom:518.475000px;}
.yc9{bottom:521.355000px;}
.y7c{bottom:522.795000px;}
.y96{bottom:526.755000px;}
.yf6{bottom:535.755000px;}
.y7b{bottom:540.075000px;}
.y94{bottom:550.695000px;}
.yf5{bottom:553.035000px;}
.y7a{bottom:557.355000px;}
.yc8{bottom:558.795000px;}
.yf4{bottom:570.315000px;}
.y79{bottom:574.635000px;}
.yc7{bottom:580.575000px;}
.yf3{bottom:587.595000px;}
.y78{bottom:591.735000px;}
.yc6{bottom:602.535000px;}
.yf2{bottom:604.725000px;}
.y77{bottom:609.045000px;}
.yc5{bottom:619.845000px;}
.yf1{bottom:622.005000px;}
.y76{bottom:626.325000px;}
.yc4{bottom:637.125000px;}
.yf0{bottom:639.285000px;}
.y75{bottom:643.605000px;}
.yc3{bottom:654.225000px;}
.yef{bottom:656.565000px;}
.y74{bottom:660.885000px;}
.yc2{bottom:671.505000px;}
.yee{bottom:672.045000px;}
.y73{bottom:678.165000px;}
.yc1{bottom:686.985000px;}
.yed{bottom:692.925000px;}
.y72{bottom:695.265000px;}
.yc0{bottom:707.865000px;}
.y71{bottom:712.545000px;}
.yec{bottom:713.985000px;}
.ybf{bottom:728.745000px;}
.y70{bottom:729.825000px;}
.yeb{bottom:737.385000px;}
.y6f{bottom:747.105000px;}
.ybd{bottom:749.625000px;}
.yea{bottom:761.325000px;}
.y6e{bottom:764.385000px;}
.ybc{bottom:769.605000px;}
.ye9{bottom:778.425000px;}
.y6d{bottom:781.665000px;}
.ybb{bottom:792.645000px;}
.ye8{bottom:795.705000px;}
.y6c{bottom:798.765000px;}
.y1a{bottom:807.585000px;}
.ye7{bottom:812.985000px;}
.yba{bottom:815.865000px;}
.y6b{bottom:816.045000px;}
.ye6{bottom:830.265000px;}
.yb9{bottom:833.145000px;}
.y6a{bottom:833.325000px;}
.yf{bottom:837.105000px;}
.ye5{bottom:847.545000px;}
.yb8{bottom:850.425000px;}
.y69{bottom:850.605000px;}
.ye4{bottom:864.825000px;}
.yb7{bottom:867.705000px;}
.y68{bottom:867.885000px;}
.ye3{bottom:881.970000px;}
.y67{bottom:885.030000px;}
.ye2{bottom:899.250000px;}
.yb6{bottom:901.950000px;}
.y66{bottom:902.310000px;}
.ye1{bottom:914.730000px;}
.y65{bottom:919.590000px;}
.yb5{bottom:920.670000px;}
.ye0{bottom:933.630000px;}
.y64{bottom:936.870000px;}
.yb4{bottom:939.390000px;}
.ydf{bottom:952.350000px;}
.y63{bottom:954.150000px;}
.yb3{bottom:958.290000px;}
.y62{bottom:971.430000px;}
.ydd{bottom:973.950000px;}
.yb2{bottom:977.010000px;}
.y61{bottom:988.530000px;}
.yb0{bottom:995.730000px;}
.y60{bottom:1005.810000px;}
.y5f{bottom:1023.090000px;}
.yd{bottom:1028.310000px;}
.yaf{bottom:1035.690000px;}
.y5e{bottom:1040.370000px;}
.y6{bottom:1053.510000px;}
.y5d{bottom:1057.650000px;}
.y5c{bottom:1074.930000px;}
.y5b{bottom:1092.030000px;}
.y5a{bottom:1109.310000px;}
.y59{bottom:1126.590000px;}
.y58{bottom:1143.900000px;}
.y57{bottom:1161.180000px;}
.h2b{height:17.100000px;}
.h29{height:17.280000px;}
.h2e{height:17.316000px;}
.h30{height:18.360000px;}
.h2d{height:18.540000px;}
.h25{height:18.900000px;}
.h23{height:19.080000px;}
.h31{height:19.260000px;}
.h24{height:19.440000px;}
.h27{height:20.160000px;}
.h26{height:20.196000px;}
.h28{height:20.520000px;}
.hc{height:24.840000px;}
.h2f{height:27.180000px;}
.h14{height:29.520000px;}
.h13{height:32.103633px;}
.h2{height:32.940000px;}
.h2c{height:35.460000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.576000px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h1b{height:42.186445px;}
.h1a{height:42.281367px;}
.h22{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h17{height:47.980898px;}
.h20{height:48.027656px;}
.h21{height:48.312422px;}
.h32{height:48.492422px;}
.h2a{height:48.496641px;}
.h19{height:49.742227px;}
.h1f{height:52.260820px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:191.190000px;}
.h16{height:448.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w17{width:114.300000px;}
.w1b{width:114.660000px;}
.w19{width:145.980000px;}
.w1d{width:146.160000px;}
.w13{width:151.410000px;}
.w10{width:152.850000px;}
.w5{width:155.370000px;}
.w48{width:158.040000px;}
.w4c{width:158.400000px;}
.w40{width:163.620000px;}
.w44{width:163.800000px;}
.w32{width:168.330000px;}
.w36{width:168.510000px;}
.w33{width:168.690000px;}
.w30{width:169.050000px;}
.w34{width:169.590000px;}
.w2f{width:170.130000px;}
.w3e{width:170.460000px;}
.w42{width:170.820000px;}
.w20{width:172.110000px;}
.w23{width:172.290000px;}
.w26{width:174.270000px;}
.w29{width:174.450000px;}
.w31{width:182.550000px;}
.w35{width:182.910000px;}
.w47{width:183.990000px;}
.w4b{width:184.530000px;}
.w49{width:186.150000px;}
.w45{width:187.590000px;}
.w3f{width:191.730000px;}
.w43{width:192.090000px;}
.w38{width:198.030000px;}
.w3b{width:198.390000px;}
.w39{width:203.430000px;}
.w3c{width:203.610000px;}
.w1a{width:208.335000px;}
.w16{width:209.775000px;}
.w46{width:212.655000px;}
.w4a{width:213.015000px;}
.w41{width:214.275000px;}
.w3d{width:215.715000px;}
.w8{width:220.935000px;}
.wc{width:224.850000px;}
.wf{width:225.030000px;}
.w2c{width:236.595000px;}
.w2b{width:237.990000px;}
.w2a{width:238.035000px;}
.w2e{width:238.170000px;}
.w2d{width:238.350000px;}
.wb{width:245.190000px;}
.we{width:245.910000px;}
.w25{width:264.090000px;}
.w28{width:264.450000px;}
.w1f{width:266.970000px;}
.w22{width:267.510000px;}
.wd{width:268.635000px;}
.wa{width:270.075000px;}
.w18{width:271.335000px;}
.w1c{width:271.875000px;}
.w12{width:282.630000px;}
.w15{width:282.990000px;}
.w27{width:299.415000px;}
.w24{width:300.855000px;}
.w21{width:302.295000px;}
.w1e{width:303.735000px;}
.w3a{width:304.455000px;}
.w37{width:306.075000px;}
.w11{width:308.415000px;}
.w14{width:308.775000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.380000px;}
.x2{left:8.640000px;}
.xe{left:12.780000px;}
.x29{left:19.800000px;}
.x2d{left:23.220000px;}
.x33{left:30.096000px;}
.x2b{left:36.540000px;}
.xd{left:38.016000px;}
.x10{left:39.456000px;}
.x2e{left:44.496000px;}
.x2f{left:45.900000px;}
.x32{left:49.860000px;}
.x37{left:51.840000px;}
.x3b{left:57.996000px;}
.x31{left:59.760000px;}
.x1b{left:62.640000px;}
.x39{left:65.196000px;}
.x19{left:67.500000px;}
.x3e{left:69.345000px;}
.x28{left:70.776000px;}
.x1{left:72.360000px;}
.x17{left:73.620000px;}
.x3d{left:75.996000px;}
.x12{left:77.430000px;}
.x4{left:80.999987px;}
.x3c{left:85.710000px;}
.x59{left:87.839987px;}
.x41{left:94.530000px;}
.x23{left:95.625000px;}
.x43{left:96.870000px;}
.x5{left:98.130000px;}
.x1e{left:99.405000px;}
.x3f{left:101.910000px;}
.x45{left:105.690000px;}
.x11{left:107.310000px;}
.x22{left:111.240000px;}
.x1c{left:113.790000px;}
.x1d{left:115.020000px;}
.x1f{left:116.310000px;}
.x21{left:117.930000px;}
.x20{left:123.150000px;}
.x44{left:124.590000px;}
.x3a{left:125.850000px;}
.x30{left:128.190000px;}
.x34{left:131.970000px;}
.x46{left:133.410000px;}
.x15{left:135.035987px;}
.xf{left:191.190000px;}
.x27{left:201.089987px;}
.x4a{left:206.129987px;}
.x13{left:215.175000px;}
.x6{left:228.270000px;}
.x55{left:229.709987px;}
.x4b{left:245.370000px;}
.x4e{left:247.709987px;}
.x16{left:255.089987px;}
.x24{left:256.349987px;}
.x56{left:262.650000px;}
.x51{left:273.809987px;}
.x9{left:285.015000px;}
.x52{left:290.775000px;}
.x14{left:293.835000px;}
.x35{left:305.534987px;}
.x48{left:313.095000px;}
.x47{left:338.294987px;}
.x7{left:342.975000px;}
.x18{left:345.315000px;}
.x8{left:364.215000px;}
.xb{left:366.555000px;}
.xc{left:373.575000px;}
.x40{left:377.895000px;}
.x36{left:378.975000px;}
.x4f{left:381.135000px;}
.x2a{left:400.575000px;}
.x4c{left:415.875000px;}
.xa{left:452.280000px;}
.x53{left:462.675000px;}
.x57{left:476.745000px;}
.x26{left:537.765000px;}
.x49{left:552.525000px;}
.x50{left:580.605000px;}
.x1a{left:592.125000px;}
.x4d{left:599.865000px;}
.x42{left:643.425000px;}
.x38{left:647.385000px;}
.x54{left:655.890000px;}
.x58{left:662.370000px;}
.x2c{left:673.530000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls19{letter-spacing:-0.629333pt;}
.ls10{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.113067pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.058880pt;}
.lsc{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls16{letter-spacing:2.240000pt;}
.ls15{letter-spacing:2.880000pt;}
.ls14{letter-spacing:8.000000pt;}
.ls18{letter-spacing:14.672640pt;}
.ls17{letter-spacing:40.912640pt;}
.lse{letter-spacing:56.912640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.wsa{word-spacing:-8.651520pt;}
.wsb{word-spacing:-8.640000pt;}
.ws11{word-spacing:-8.010667pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._6{margin-left:-5.034667pt;}
._4{margin-left:-3.622827pt;}
._3{margin-left:-2.176000pt;}
._0{margin-left:-0.965333pt;}
._1{width:1.088000pt;}
._5{width:2.560000pt;}
._a{width:3.974400pt;}
._2{width:4.992000pt;}
._c{width:6.635307pt;}
._d{width:8.232533pt;}
._10{width:9.483947pt;}
._f{width:10.409600pt;}
._b{width:11.643733pt;}
._e{width:14.302080pt;}
._7{width:15.650560pt;}
._14{width:17.104640pt;}
._15{width:18.487893pt;}
._8{width:21.116160pt;}
._9{width:22.310400pt;}
._13{width:107.648640pt;}
._17{width:127.541120pt;}
._16{width:128.603520pt;}
._12{width:137.102720pt;}
._11{width:138.271360pt;}
.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;}
.y45{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.ybe{bottom:3.360000pt;}
.y4a{bottom:3.520000pt;}
.y95{bottom:3.680000pt;}
.y97{bottom:3.840000pt;}
.ya4{bottom:4.160000pt;}
.ya2{bottom:4.200000pt;}
.y19{bottom:4.320000pt;}
.yde{bottom:7.360000pt;}
.ye{bottom:8.480000pt;}
.y48{bottom:9.440000pt;}
.yb1{bottom:10.880000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.y44{bottom:18.240000pt;}
.y49{bottom:19.880000pt;}
.y47{bottom:22.440000pt;}
.y18{bottom:26.080000pt;}
.yb{bottom:26.880000pt;}
.y43{bottom:33.600000pt;}
.y17{bottom:40.840000pt;}
.ya{bottom:41.440000pt;}
.y5{bottom:43.040000pt;}
.y42{bottom:48.960000pt;}
.y16{bottom:55.400000pt;}
.y1{bottom:61.792000pt;}
.y41{bottom:64.320000pt;}
.y9{bottom:65.280000pt;}
.y15{bottom:69.480000pt;}
.y14{bottom:78.760000pt;}
.y40{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y3f{bottom:94.880000pt;}
.y13{bottom:95.080000pt;}
.y7{bottom:99.066667pt;}
.yae{bottom:103.232000pt;}
.ydc{bottom:103.392000pt;}
.y56{bottom:105.472000pt;}
.y93{bottom:106.272000pt;}
.y3e{bottom:110.240000pt;}
.y12{bottom:111.880000pt;}
.yad{bottom:120.032000pt;}
.y55{bottom:120.832000pt;}
.y92{bottom:121.632000pt;}
.y3d{bottom:125.600000pt;}
.y11d{bottom:127.392000pt;}
.y11{bottom:134.760000pt;}
.y54{bottom:136.186667pt;}
.yac{bottom:136.666667pt;}
.y91{bottom:136.986667pt;}
.y10b{bottom:140.026667pt;}
.y3c{bottom:140.960000pt;}
.y11c{bottom:142.746667pt;}
.y53{bottom:151.386667pt;}
.y90{bottom:152.346667pt;}
.yab{bottom:153.306667pt;}
.y10a{bottom:155.226667pt;}
.ydb{bottom:156.026667pt;}
.y3b{bottom:156.320000pt;}
.y10{bottom:156.520000pt;}
.y11b{bottom:158.106667pt;}
.y2b{bottom:161.920000pt;}
.y52{bottom:166.746667pt;}
.y8f{bottom:167.706667pt;}
.y109{bottom:170.586667pt;}
.y3a{bottom:171.520000pt;}
.yaa{bottom:172.666667pt;}
.y11a{bottom:173.306667pt;}
.y2a{bottom:175.520000pt;}
.yda{bottom:175.546667pt;}
.y51{bottom:182.106667pt;}
.y8e{bottom:182.906667pt;}
.y108{bottom:185.946667pt;}
.y39{bottom:186.880000pt;}
.y119{bottom:188.666667pt;}
.yd9{bottom:190.906667pt;}
.y29{bottom:191.200000pt;}
.ya9{bottom:192.186667pt;}
.y50{bottom:197.466667pt;}
.y8d{bottom:198.266667pt;}
.y107{bottom:201.306667pt;}
.y38{bottom:202.240000pt;}
.y118{bottom:204.026667pt;}
.yd8{bottom:206.266667pt;}
.y28{bottom:206.560000pt;}
.ya8{bottom:207.546667pt;}
.y4f{bottom:212.826667pt;}
.y8c{bottom:213.626667pt;}
.y106{bottom:216.666667pt;}
.y37{bottom:217.626667pt;}
.y117{bottom:219.386667pt;}
.yd7{bottom:221.626667pt;}
.y27{bottom:221.946667pt;}
.ya7{bottom:222.906667pt;}
.y4e{bottom:228.186667pt;}
.y8b{bottom:228.986667pt;}
.y105{bottom:232.026667pt;}
.y36{bottom:232.986667pt;}
.y116{bottom:234.746667pt;}
.ya6{bottom:236.666667pt;}
.yd6{bottom:236.826667pt;}
.y26{bottom:237.626667pt;}
.y4d{bottom:243.386667pt;}
.y8a{bottom:244.346667pt;}
.y104{bottom:247.226667pt;}
.y35{bottom:248.346667pt;}
.y115{bottom:250.106667pt;}
.yd5{bottom:250.746667pt;}
.y25{bottom:253.146667pt;}
.ya5{bottom:256.346667pt;}
.y4c{bottom:258.746667pt;}
.y89{bottom:259.706667pt;}
.y103{bottom:262.586667pt;}
.y34{bottom:263.546667pt;}
.y114{bottom:265.306667pt;}
.yd4{bottom:267.386667pt;}
.y24{bottom:268.666667pt;}
.y4b{bottom:274.106667pt;}
.ya3{bottom:275.546667pt;}
.y88{bottom:275.866667pt;}
.y102{bottom:277.946667pt;}
.y33{bottom:278.906667pt;}
.y113{bottom:280.666667pt;}
.y23{bottom:284.026667pt;}
.y46{bottom:286.586667pt;}
.y87{bottom:292.186667pt;}
.y101{bottom:293.306667pt;}
.y32{bottom:294.266667pt;}
.y112{bottom:296.026667pt;}
.ya1{bottom:297.466667pt;}
.y22{bottom:299.546667pt;}
.yd3{bottom:300.706667pt;}
.y86{bottom:308.546667pt;}
.y100{bottom:308.706667pt;}
.y31{bottom:309.626667pt;}
.y111{bottom:311.426667pt;}
.y21{bottom:315.066667pt;}
.y1c{bottom:319.106667pt;}
.ya0{bottom:319.586667pt;}
.yd2{bottom:320.066667pt;}
.yff{bottom:324.066667pt;}
.y85{bottom:324.866667pt;}
.y30{bottom:324.986667pt;}
.y110{bottom:326.786667pt;}
.y20{bottom:330.426667pt;}
.y9f{bottom:334.946667pt;}
.yfe{bottom:339.266667pt;}
.yd1{bottom:339.586667pt;}
.y84{bottom:340.226667pt;}
.y2f{bottom:340.346667pt;}
.y10f{bottom:342.146667pt;}
.y1f{bottom:348.506667pt;}
.y9e{bottom:350.306667pt;}
.yfd{bottom:354.626667pt;}
.yd0{bottom:354.946667pt;}
.y83{bottom:355.426667pt;}
.y2e{bottom:355.546667pt;}
.y10e{bottom:357.346667pt;}
.y9d{bottom:365.666667pt;}
.yfc{bottom:368.386667pt;}
.ycf{bottom:370.306667pt;}
.y2d{bottom:370.906667pt;}
.y82{bottom:371.746667pt;}
.y10d{bottom:372.706667pt;}
.y1e{bottom:372.826667pt;}
.y9c{bottom:381.026667pt;}
.yce{bottom:385.666667pt;}
.y2c{bottom:386.266667pt;}
.yfb{bottom:386.786667pt;}
.y81{bottom:387.106667pt;}
.y10c{bottom:388.066667pt;}
.y1d{bottom:388.666667pt;}
.y9b{bottom:394.786667pt;}
.ycd{bottom:400.866667pt;}
.y80{bottom:403.426667pt;}
.yfa{bottom:404.546667pt;}
.y9a{bottom:413.506667pt;}
.ycc{bottom:416.226667pt;}
.y7f{bottom:418.786667pt;}
.yf9{bottom:425.026667pt;}
.ycb{bottom:429.986667pt;}
.y99{bottom:431.746667pt;}
.y7e{bottom:433.986667pt;}
.yf8{bottom:445.666667pt;}
.yca{bottom:446.626667pt;}
.y7d{bottom:449.346667pt;}
.y98{bottom:449.986667pt;}
.yf7{bottom:460.866667pt;}
.yc9{bottom:463.426667pt;}
.y7c{bottom:464.706667pt;}
.y96{bottom:468.226667pt;}
.yf6{bottom:476.226667pt;}
.y7b{bottom:480.066667pt;}
.y94{bottom:489.506667pt;}
.yf5{bottom:491.586667pt;}
.y7a{bottom:495.426667pt;}
.yc8{bottom:496.706667pt;}
.yf4{bottom:506.946667pt;}
.y79{bottom:510.786667pt;}
.yc7{bottom:516.066667pt;}
.yf3{bottom:522.306667pt;}
.y78{bottom:525.986667pt;}
.yc6{bottom:535.586667pt;}
.yf2{bottom:537.533333pt;}
.y77{bottom:541.373333pt;}
.yc5{bottom:550.973333pt;}
.yf1{bottom:552.893333pt;}
.y76{bottom:556.733333pt;}
.yc4{bottom:566.333333pt;}
.yf0{bottom:568.253333pt;}
.y75{bottom:572.093333pt;}
.yc3{bottom:581.533333pt;}
.yef{bottom:583.613333pt;}
.y74{bottom:587.453333pt;}
.yc2{bottom:596.893333pt;}
.yee{bottom:597.373333pt;}
.y73{bottom:602.813333pt;}
.yc1{bottom:610.653333pt;}
.yed{bottom:615.933333pt;}
.y72{bottom:618.013333pt;}
.yc0{bottom:629.213333pt;}
.y71{bottom:633.373333pt;}
.yec{bottom:634.653333pt;}
.ybf{bottom:647.773333pt;}
.y70{bottom:648.733333pt;}
.yeb{bottom:655.453333pt;}
.y6f{bottom:664.093333pt;}
.ybd{bottom:666.333333pt;}
.yea{bottom:676.733333pt;}
.y6e{bottom:679.453333pt;}
.ybc{bottom:684.093333pt;}
.ye9{bottom:691.933333pt;}
.y6d{bottom:694.813333pt;}
.ybb{bottom:704.573333pt;}
.ye8{bottom:707.293333pt;}
.y6c{bottom:710.013333pt;}
.y1a{bottom:717.853333pt;}
.ye7{bottom:722.653333pt;}
.yba{bottom:725.213333pt;}
.y6b{bottom:725.373333pt;}
.ye6{bottom:738.013333pt;}
.yb9{bottom:740.573333pt;}
.y6a{bottom:740.733333pt;}
.yf{bottom:744.093333pt;}
.ye5{bottom:753.373333pt;}
.yb8{bottom:755.933333pt;}
.y69{bottom:756.093333pt;}
.ye4{bottom:768.733333pt;}
.yb7{bottom:771.293333pt;}
.y68{bottom:771.453333pt;}
.ye3{bottom:783.973333pt;}
.y67{bottom:786.693333pt;}
.ye2{bottom:799.333333pt;}
.yb6{bottom:801.733333pt;}
.y66{bottom:802.053333pt;}
.ye1{bottom:813.093333pt;}
.y65{bottom:817.413333pt;}
.yb5{bottom:818.373333pt;}
.ye0{bottom:829.893333pt;}
.y64{bottom:832.773333pt;}
.yb4{bottom:835.013333pt;}
.ydf{bottom:846.533333pt;}
.y63{bottom:848.133333pt;}
.yb3{bottom:851.813333pt;}
.y62{bottom:863.493333pt;}
.ydd{bottom:865.733333pt;}
.yb2{bottom:868.453333pt;}
.y61{bottom:878.693333pt;}
.yb0{bottom:885.093333pt;}
.y60{bottom:894.053333pt;}
.y5f{bottom:909.413333pt;}
.yd{bottom:914.053333pt;}
.yaf{bottom:920.613333pt;}
.y5e{bottom:924.773333pt;}
.y6{bottom:936.453333pt;}
.y5d{bottom:940.133333pt;}
.y5c{bottom:955.493333pt;}
.y5b{bottom:970.693333pt;}
.y5a{bottom:986.053333pt;}
.y59{bottom:1001.413333pt;}
.y58{bottom:1016.800000pt;}
.y57{bottom:1032.160000pt;}
.h2b{height:15.200000pt;}
.h29{height:15.360000pt;}
.h2e{height:15.392000pt;}
.h30{height:16.320000pt;}
.h2d{height:16.480000pt;}
.h25{height:16.800000pt;}
.h23{height:16.960000pt;}
.h31{height:17.120000pt;}
.h24{height:17.280000pt;}
.h27{height:17.920000pt;}
.h26{height:17.952000pt;}
.h28{height:18.240000pt;}
.hc{height:22.080000pt;}
.h2f{height:24.160000pt;}
.h14{height:26.240000pt;}
.h13{height:28.536563pt;}
.h2{height:29.280000pt;}
.h2c{height:31.520000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.512000pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h1b{height:37.499062pt;}
.h1a{height:37.583438pt;}
.h22{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h17{height:42.649687pt;}
.h20{height:42.691250pt;}
.h21{height:42.944375pt;}
.h32{height:43.104375pt;}
.h2a{height:43.108125pt;}
.h19{height:44.215312pt;}
.h1f{height:46.454062pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:169.946667pt;}
.h16{height:398.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w17{width:101.600000pt;}
.w1b{width:101.920000pt;}
.w19{width:129.760000pt;}
.w1d{width:129.920000pt;}
.w13{width:134.586667pt;}
.w10{width:135.866667pt;}
.w5{width:138.106667pt;}
.w48{width:140.480000pt;}
.w4c{width:140.800000pt;}
.w40{width:145.440000pt;}
.w44{width:145.600000pt;}
.w32{width:149.626667pt;}
.w36{width:149.786667pt;}
.w33{width:149.946667pt;}
.w30{width:150.266667pt;}
.w34{width:150.746667pt;}
.w2f{width:151.226667pt;}
.w3e{width:151.520000pt;}
.w42{width:151.840000pt;}
.w20{width:152.986667pt;}
.w23{width:153.146667pt;}
.w26{width:154.906667pt;}
.w29{width:155.066667pt;}
.w31{width:162.266667pt;}
.w35{width:162.586667pt;}
.w47{width:163.546667pt;}
.w4b{width:164.026667pt;}
.w49{width:165.466667pt;}
.w45{width:166.746667pt;}
.w3f{width:170.426667pt;}
.w43{width:170.746667pt;}
.w38{width:176.026667pt;}
.w3b{width:176.346667pt;}
.w39{width:180.826667pt;}
.w3c{width:180.986667pt;}
.w1a{width:185.186667pt;}
.w16{width:186.466667pt;}
.w46{width:189.026667pt;}
.w4a{width:189.346667pt;}
.w41{width:190.466667pt;}
.w3d{width:191.746667pt;}
.w8{width:196.386667pt;}
.wc{width:199.866667pt;}
.wf{width:200.026667pt;}
.w2c{width:210.306667pt;}
.w2b{width:211.546667pt;}
.w2a{width:211.586667pt;}
.w2e{width:211.706667pt;}
.w2d{width:211.866667pt;}
.wb{width:217.946667pt;}
.we{width:218.586667pt;}
.w25{width:234.746667pt;}
.w28{width:235.066667pt;}
.w1f{width:237.306667pt;}
.w22{width:237.786667pt;}
.wd{width:238.786667pt;}
.wa{width:240.066667pt;}
.w18{width:241.186667pt;}
.w1c{width:241.666667pt;}
.w12{width:251.226667pt;}
.w15{width:251.546667pt;}
.w27{width:266.146667pt;}
.w24{width:267.426667pt;}
.w21{width:268.706667pt;}
.w1e{width:269.986667pt;}
.w3a{width:270.626667pt;}
.w37{width:272.066667pt;}
.w11{width:274.146667pt;}
.w14{width:274.466667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.560000pt;}
.x2{left:7.680000pt;}
.xe{left:11.360000pt;}
.x29{left:17.600000pt;}
.x2d{left:20.640000pt;}
.x33{left:26.752000pt;}
.x2b{left:32.480000pt;}
.xd{left:33.792000pt;}
.x10{left:35.072000pt;}
.x2e{left:39.552000pt;}
.x2f{left:40.800000pt;}
.x32{left:44.320000pt;}
.x37{left:46.080000pt;}
.x3b{left:51.552000pt;}
.x31{left:53.120000pt;}
.x1b{left:55.680000pt;}
.x39{left:57.952000pt;}
.x19{left:60.000000pt;}
.x3e{left:61.640000pt;}
.x28{left:62.912000pt;}
.x1{left:64.320000pt;}
.x17{left:65.440000pt;}
.x3d{left:67.552000pt;}
.x12{left:68.826667pt;}
.x4{left:71.999988pt;}
.x3c{left:76.186667pt;}
.x59{left:78.079988pt;}
.x41{left:84.026667pt;}
.x23{left:85.000000pt;}
.x43{left:86.106667pt;}
.x5{left:87.226667pt;}
.x1e{left:88.360000pt;}
.x3f{left:90.586667pt;}
.x45{left:93.946667pt;}
.x11{left:95.386667pt;}
.x22{left:98.880000pt;}
.x1c{left:101.146667pt;}
.x1d{left:102.240000pt;}
.x1f{left:103.386667pt;}
.x21{left:104.826667pt;}
.x20{left:109.466667pt;}
.x44{left:110.746667pt;}
.x3a{left:111.866667pt;}
.x30{left:113.946667pt;}
.x34{left:117.306667pt;}
.x46{left:118.586667pt;}
.x15{left:120.031988pt;}
.xf{left:169.946667pt;}
.x27{left:178.746655pt;}
.x4a{left:183.226655pt;}
.x13{left:191.266667pt;}
.x6{left:202.906667pt;}
.x55{left:204.186655pt;}
.x4b{left:218.106667pt;}
.x4e{left:220.186655pt;}
.x16{left:226.746655pt;}
.x24{left:227.866655pt;}
.x56{left:233.466667pt;}
.x51{left:243.386655pt;}
.x9{left:253.346667pt;}
.x52{left:258.466667pt;}
.x14{left:261.186667pt;}
.x35{left:271.586655pt;}
.x48{left:278.306667pt;}
.x47{left:300.706655pt;}
.x7{left:304.866667pt;}
.x18{left:306.946667pt;}
.x8{left:323.746667pt;}
.xb{left:325.826667pt;}
.xc{left:332.066667pt;}
.x40{left:335.906667pt;}
.x36{left:336.866667pt;}
.x4f{left:338.786667pt;}
.x2a{left:356.066667pt;}
.x4c{left:369.666667pt;}
.xa{left:402.026667pt;}
.x53{left:411.266667pt;}
.x57{left:423.773333pt;}
.x26{left:478.013333pt;}
.x49{left:491.133333pt;}
.x50{left:516.093333pt;}
.x1a{left:526.333333pt;}
.x4d{left:533.213333pt;}
.x42{left:571.933333pt;}
.x38{left:575.453333pt;}
.x54{left:583.013333pt;}
.x58{left:588.773333pt;}
.x2c{left:598.693333pt;}
.x3{left:663.013333pt;}
}




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