
    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_3e8da1842a8de4e62964bbf1.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6abc50051728ce2ec1e921d0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_05fd9da646d159f76970ff5e.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_99914b2db8c58734a3d9e8ea.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_fa01eda09a82d001c273fb8c.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_1d0a00041fc19c77627df151.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_499dbe192738a7560da95bcb.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_7675a5c2880e0355413fe131.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_deac415ac98c1de2d1df9e5c.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_247ee46823bc9a3a24b05035.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0c39b2e76f263ed5e66a136f.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c5c241a6504986fe8e743ed9.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_aa7bd891f6277a4049251848.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_d320dd41c26cb5291fdc1e22.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_b66ff622dad159bbb083d701.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_340c9befb1e7bef9414ec20f.woff')format("woff");}.ff16{font-family:ff16;line-height:0.877441;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;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lse{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.108720px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls9{letter-spacing:64.026720px;}
.lsc{letter-spacing:76.589280px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._15{margin-left:-8.086320px;}
._14{margin-left:-6.816720px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.449360px;}
._2{margin-left:-3.059760px;}
._0{margin-left:-1.068000px;}
._1{width:1.026000px;}
._e{width:2.101440px;}
._8{width:3.237120px;}
._6{width:4.292640px;}
._7{width:5.360880px;}
._f{width:7.039680px;}
._9{width:8.856480px;}
._b{width:10.159200px;}
._10{width:11.551440px;}
._5{width:12.957840px;}
._16{width:16.234560px;}
._a{width:17.688960px;}
._c{width:23.654880px;}
._d{width:24.892320px;}
._13{width:25.896240px;}
._11{width:27.419760px;}
._12{width:28.476480px;}
.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(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:3.240000px;}
.y5{bottom:3.600000px;}
.y53{bottom:3.954000px;}
.y1c{bottom:4.860000px;}
.y119{bottom:5.220000px;}
.yf8{bottom:5.400000px;}
.y117{bottom:5.940000px;}
.y10{bottom:9.540000px;}
.y51{bottom:10.614000px;}
.y1e{bottom:12.420000px;}
.ye{bottom:13.860000px;}
.y4{bottom:19.980000px;}
.y4d{bottom:20.340000px;}
.yb7{bottom:20.385000px;}
.y8d{bottom:20.520000px;}
.yc6{bottom:20.550000px;}
.y52{bottom:22.314000px;}
.y7{bottom:24.840000px;}
.y50{bottom:25.374000px;}
.y1b{bottom:29.340000px;}
.yd{bottom:30.240000px;}
.y6{bottom:33.876000px;}
.y3{bottom:36.576000px;}
.y4c{bottom:37.620000px;}
.y2{bottom:45.900000px;}
.yc{bottom:46.440000px;}
.y4b{bottom:54.900000px;}
.y1a{bottom:62.280000px;}
.y4a{bottom:72.180000px;}
.yb{bottom:73.440000px;}
.y19{bottom:78.885000px;}
.y49{bottom:89.460000px;}
.ya{bottom:93.090000px;}
.y18{bottom:94.545000px;}
.y17{bottom:104.985000px;}
.y48{bottom:106.740000px;}
.y9{bottom:111.270000px;}
.y12c{bottom:111.456000px;}
.ycb{bottom:116.316000px;}
.y55{bottom:117.756000px;}
.ya5{bottom:120.456000px;}
.y16{bottom:123.345000px;}
.y47{bottom:123.840000px;}
.y162{bottom:125.316000px;}
.y12b{bottom:128.736000px;}
.yca{bottom:130.536000px;}
.y54{bottom:134.856000px;}
.yf4{bottom:135.036000px;}
.ya4{bottom:137.736000px;}
.y46{bottom:141.120000px;}
.y15{bottom:142.425000px;}
.y161{bottom:142.596000px;}
.y12a{bottom:142.776000px;}
.y90{bottom:143.856000px;}
.y4f{bottom:148.896000px;}
.ya3{bottom:151.770000px;}
.yf3{bottom:152.310000px;}
.y45{bottom:158.445000px;}
.y8f{bottom:158.610000px;}
.y160{bottom:159.690000px;}
.y14{bottom:168.165000px;}
.yf2{bottom:169.590000px;}
.y11a{bottom:171.030000px;}
.y44{bottom:175.725000px;}
.y8e{bottom:176.610000px;}
.y15f{bottom:176.970000px;}
.y1f{bottom:185.610000px;}
.y118{bottom:185.790000px;}
.yf1{bottom:186.690000px;}
.y43{bottom:193.005000px;}
.y13{bottom:193.905000px;}
.y15e{bottom:194.250000px;}
.y8c{bottom:194.610000px;}
.yf0{bottom:203.970000px;}
.y116{bottom:205.770000px;}
.y42{bottom:210.285000px;}
.y15d{bottom:211.530000px;}
.y12{bottom:218.205000px;}
.yef{bottom:221.250000px;}
.y115{bottom:226.470000px;}
.y41{bottom:227.385000px;}
.y15c{bottom:228.810000px;}
.y8b{bottom:233.130000px;}
.yee{bottom:238.530000px;}
.y40{bottom:244.665000px;}
.y15b{bottom:246.090000px;}
.y8a{bottom:250.230000px;}
.yed{bottom:255.810000px;}
.ydb{bottom:259.590000px;}
.y3f{bottom:261.945000px;}
.y15a{bottom:263.190000px;}
.y114{bottom:264.990000px;}
.y89{bottom:267.510000px;}
.yec{bottom:269.670000px;}
.yda{bottom:274.350000px;}
.yb9{bottom:278.310000px;}
.y3e{bottom:279.225000px;}
.y159{bottom:280.470000px;}
.y113{bottom:282.270000px;}
.y88{bottom:284.790000px;}
.yb8{bottom:293.070000px;}
.y3d{bottom:296.505000px;}
.y158{bottom:297.750000px;}
.y112{bottom:299.550000px;}
.y87{bottom:302.070000px;}
.yd9{bottom:309.630000px;}
.y3c{bottom:313.785000px;}
.y157{bottom:315.030000px;}
.y111{bottom:316.650000px;}
.y86{bottom:319.350000px;}
.yb6{bottom:328.350000px;}
.y3b{bottom:330.885000px;}
.y156{bottom:332.310000px;}
.y110{bottom:333.930000px;}
.y85{bottom:336.675000px;}
.yd8{bottom:344.955000px;}
.y3a{bottom:348.165000px;}
.y155{bottom:349.635000px;}
.y10f{bottom:351.255000px;}
.y84{bottom:353.775000px;}
.y2c{bottom:354.825000px;}
.yb5{bottom:363.495000px;}
.y39{bottom:365.445000px;}
.y154{bottom:366.735000px;}
.y10e{bottom:368.535000px;}
.y2b{bottom:370.125000px;}
.y83{bottom:371.055000px;}
.yd7{bottom:380.055000px;}
.y38{bottom:382.725000px;}
.y153{bottom:384.015000px;}
.y10d{bottom:385.815000px;}
.y2a{bottom:387.765000px;}
.y82{bottom:388.335000px;}
.yb4{bottom:398.775000px;}
.y37{bottom:400.005000px;}
.y152{bottom:401.295000px;}
.y10c{bottom:403.095000px;}
.y29{bottom:405.045000px;}
.y81{bottom:405.615000px;}
.y36{bottom:417.105000px;}
.yd6{bottom:418.575000px;}
.y10b{bottom:420.195000px;}
.y28{bottom:422.355000px;}
.y80{bottom:422.895000px;}
.y35{bottom:434.415000px;}
.yd5{bottom:435.855000px;}
.yb3{bottom:437.295000px;}
.y10a{bottom:437.475000px;}
.y27{bottom:440.175000px;}
.y34{bottom:451.695000px;}
.y151{bottom:452.955000px;}
.yd4{bottom:453.135000px;}
.yb2{bottom:454.575000px;}
.y109{bottom:454.755000px;}
.y7f{bottom:457.275000px;}
.y26{bottom:457.455000px;}
.y33{bottom:468.975000px;}
.y150{bottom:470.235000px;}
.yd3{bottom:470.415000px;}
.yb1{bottom:471.855000px;}
.y108{bottom:472.035000px;}
.y7e{bottom:474.555000px;}
.y25{bottom:474.915000px;}
.y32{bottom:486.255000px;}
.y14f{bottom:487.515000px;}
.yd2{bottom:487.695000px;}
.yb0{bottom:489.135000px;}
.y107{bottom:489.315000px;}
.y7d{bottom:491.835000px;}
.y24{bottom:492.195000px;}
.y31{bottom:503.535000px;}
.yd1{bottom:504.795000px;}
.yaf{bottom:506.235000px;}
.y106{bottom:506.595000px;}
.y7c{bottom:509.115000px;}
.y23{bottom:509.655000px;}
.yc9{bottom:512.355000px;}
.y30{bottom:520.635000px;}
.yd0{bottom:522.075000px;}
.yae{bottom:523.515000px;}
.y105{bottom:523.695000px;}
.ya2{bottom:524.055000px;}
.y7b{bottom:526.395000px;}
.yc8{bottom:527.115000px;}
.y22{bottom:529.995000px;}
.y129{bottom:535.395000px;}
.y2f{bottom:537.915000px;}
.ya1{bottom:538.815000px;}
.ycf{bottom:539.355000px;}
.yad{bottom:540.795000px;}
.y104{bottom:540.975000px;}
.y7a{bottom:543.675000px;}
.y128{bottom:550.155000px;}
.yce{bottom:553.395000px;}
.y2e{bottom:555.195000px;}
.y14e{bottom:556.455000px;}
.ya0{bottom:556.815000px;}
.y21{bottom:557.355000px;}
.yac{bottom:558.075000px;}
.y103{bottom:558.255000px;}
.y79{bottom:560.775000px;}
.yc7{bottom:562.215000px;}
.y2d{bottom:572.475000px;}
.y9f{bottom:574.815000px;}
.y20{bottom:575.175000px;}
.yab{bottom:575.355000px;}
.y102{bottom:575.535000px;}
.y78{bottom:578.055000px;}
.y127{bottom:585.255000px;}
.yaa{bottom:589.215000px;}
.y9e{bottom:592.815000px;}
.y14d{bottom:593.175000px;}
.y77{bottom:595.335000px;}
.yc5{bottom:597.495000px;}
.yeb{bottom:600.375000px;}
.y101{bottom:609.945000px;}
.y14c{bottom:610.485000px;}
.y76{bottom:613.725000px;}
.y9d{bottom:614.085000px;}
.yea{bottom:617.685000px;}
.y126{bottom:620.565000px;}
.y100{bottom:627.225000px;}
.y14b{bottom:627.765000px;}
.y9c{bottom:631.185000px;}
.y75{bottom:632.085000px;}
.ye9{bottom:632.445000px;}
.yc4{bottom:632.805000px;}
.yff{bottom:644.505000px;}
.y14a{bottom:645.045000px;}
.y9b{bottom:648.465000px;}
.y74{bottom:650.265000px;}
.ye8{bottom:650.445000px;}
.y125{bottom:659.085000px;}
.yfe{bottom:661.785000px;}
.y149{bottom:662.145000px;}
.y9a{bottom:665.745000px;}
.y73{bottom:667.545000px;}
.ye7{bottom:668.445000px;}
.yc3{bottom:671.325000px;}
.y124{bottom:676.365000px;}
.yfd{bottom:679.065000px;}
.y148{bottom:679.425000px;}
.y99{bottom:684.105000px;}
.y72{bottom:684.825000px;}
.ye6{bottom:686.445000px;}
.yc2{bottom:688.605000px;}
.yfc{bottom:693.105000px;}
.y123{bottom:693.645000px;}
.y147{bottom:696.705000px;}
.y98{bottom:701.385000px;}
.y71{bottom:702.105000px;}
.yc1{bottom:705.885000px;}
.y122{bottom:710.745000px;}
.y146{bottom:713.985000px;}
.y70{bottom:719.385000px;}
.y97{bottom:719.565000px;}
.yc0{bottom:722.985000px;}
.ye5{bottom:724.965000px;}
.y121{bottom:728.025000px;}
.y145{bottom:731.265000px;}
.y6f{bottom:736.665000px;}
.y96{bottom:736.845000px;}
.ybf{bottom:740.265000px;}
.ye4{bottom:742.245000px;}
.y120{bottom:745.305000px;}
.y144{bottom:748.365000px;}
.y6e{bottom:753.765000px;}
.y95{bottom:754.125000px;}
.ybe{bottom:757.545000px;}
.ye3{bottom:759.345000px;}
.y11f{bottom:762.585000px;}
.y143{bottom:765.645000px;}
.y6d{bottom:771.045000px;}
.y1d{bottom:772.125000px;}
.y94{bottom:772.485000px;}
.ybd{bottom:774.825000px;}
.ye2{bottom:776.625000px;}
.y11e{bottom:779.865000px;}
.y142{bottom:782.925000px;}
.y6c{bottom:788.325000px;}
.y93{bottom:789.765000px;}
.ybc{bottom:792.105000px;}
.ye1{bottom:793.905000px;}
.y11d{bottom:797.145000px;}
.y141{bottom:800.205000px;}
.y11{bottom:801.645000px;}
.y6b{bottom:805.605000px;}
.y92{bottom:807.045000px;}
.ybb{bottom:809.385000px;}
.ye0{bottom:811.185000px;}
.y11c{bottom:814.245000px;}
.y140{bottom:817.485000px;}
.y91{bottom:820.905000px;}
.y6a{bottom:822.885000px;}
.yba{bottom:823.245000px;}
.y11b{bottom:828.285000px;}
.ydf{bottom:828.465000px;}
.y13f{bottom:834.765000px;}
.y69{bottom:839.985000px;}
.yde{bottom:845.745000px;}
.y13e{bottom:851.865000px;}
.y68{bottom:857.265000px;}
.ydd{bottom:862.845000px;}
.y13d{bottom:869.145000px;}
.y67{bottom:874.590000px;}
.ydc{bottom:876.930000px;}
.y13c{bottom:886.470000px;}
.ycd{bottom:888.090000px;}
.y66{bottom:891.870000px;}
.ycc{bottom:902.850000px;}
.y13b{bottom:903.750000px;}
.y65{bottom:909.150000px;}
.y13a{bottom:921.030000px;}
.ya9{bottom:923.370000px;}
.y64{bottom:926.430000px;}
.ya8{bottom:938.130000px;}
.y139{bottom:938.310000px;}
.y63{bottom:943.530000px;}
.y138{bottom:955.410000px;}
.y62{bottom:960.810000px;}
.y137{bottom:972.690000px;}
.ya7{bottom:973.410000px;}
.y61{bottom:978.090000px;}
.y136{bottom:989.970000px;}
.y60{bottom:995.370000px;}
.y135{bottom:1008.330000px;}
.ya6{bottom:1008.690000px;}
.y5f{bottom:1012.650000px;}
.y134{bottom:1026.690000px;}
.y5e{bottom:1029.930000px;}
.yf{bottom:1034.970000px;}
.yfb{bottom:1036.050000px;}
.y133{bottom:1043.790000px;}
.y5d{bottom:1047.030000px;}
.yfa{bottom:1050.810000px;}
.y8{bottom:1060.350000px;}
.y132{bottom:1062.150000px;}
.y5c{bottom:1064.310000px;}
.yf9{bottom:1070.970000px;}
.y131{bottom:1079.430000px;}
.y5b{bottom:1081.590000px;}
.yf7{bottom:1091.130000px;}
.y130{bottom:1096.710000px;}
.y5a{bottom:1098.870000px;}
.yf6{bottom:1111.290000px;}
.y12f{bottom:1113.990000px;}
.y59{bottom:1116.150000px;}
.yf5{bottom:1129.290000px;}
.y12e{bottom:1132.350000px;}
.y58{bottom:1133.430000px;}
.y12d{bottom:1149.480000px;}
.y57{bottom:1150.560000px;}
.y56{bottom:1167.840000px;}
.y1{bottom:1194.120000px;}
.h25{height:17.100000px;}
.h24{height:17.136000px;}
.h23{height:17.280000px;}
.h2b{height:19.260000px;}
.h29{height:19.440000px;}
.h2a{height:19.980000px;}
.hd{height:25.020000px;}
.h14{height:28.968750px;}
.h15{height:29.520000px;}
.h26{height:34.380000px;}
.h27{height:34.416000px;}
.h22{height:34.560000px;}
.h28{height:34.596000px;}
.h13{height:35.806641px;}
.ha{height:36.180000px;}
.h1e{height:36.720000px;}
.h1c{height:38.818125px;}
.h1d{height:41.726953px;}
.h20{height:42.164648px;}
.h1b{height:42.281367px;}
.h6{height:43.453125px;}
.h21{height:43.506914px;}
.hf{height:44.002969px;}
.hc{height:44.820000px;}
.h1a{height:45.770625px;}
.h18{height:47.980898px;}
.h1f{height:48.088125px;}
.h3{height:49.356000px;}
.h5{height:53.709961px;}
.hb{height:54.000000px;}
.h4{height:55.291992px;}
.h19{height:56.574492px;}
.h11{height:59.439023px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h2{height:65.884219px;}
.h7{height:67.824844px;}
.h9{height:71.613281px;}
.h16{height:73.722656px;}
.h8{height:121.536000px;}
.he{height:233.310000px;}
.h17{height:586.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:73.080000px;}
.wf{width:145.260000px;}
.we{width:145.296000px;}
.wd{width:145.476000px;}
.w5{width:151.950000px;}
.wa{width:181.830000px;}
.wb{width:182.910000px;}
.wc{width:183.090000px;}
.w8{width:216.075000px;}
.w11{width:241.950000px;}
.w10{width:241.995000px;}
.w13{width:242.670000px;}
.w12{width:242.715000px;}
.w14{width:242.850000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w3{width:658.050000px;}
.w7{width:731.130000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.560000px;}
.x2{left:8.676000px;}
.x15{left:12.600000px;}
.xb{left:17.496000px;}
.xc{left:24.696000px;}
.x1{left:80.999987px;}
.x4{left:98.130000px;}
.x16{left:108.035987px;}
.x11{left:111.810000px;}
.x3e{left:115.235987px;}
.x37{left:127.115987px;}
.x1d{left:135.035987px;}
.x2a{left:151.229987px;}
.x1e{left:170.849987px;}
.xd{left:172.110000px;}
.xe{left:175.350000px;}
.x10{left:192.090000px;}
.x3d{left:194.429987px;}
.xf{left:203.115000px;}
.x31{left:210.629987px;}
.x21{left:211.889987px;}
.x13{left:215.175000px;}
.x17{left:220.889987px;}
.x2c{left:224.669987px;}
.x32{left:227.910000px;}
.x5{left:232.950000px;}
.x2e{left:235.289987px;}
.x40{left:242.309987px;}
.x20{left:255.629987px;}
.x27{left:256.889987px;}
.x12{left:258.195000px;}
.x18{left:264.270000px;}
.x22{left:265.530000px;}
.x8{left:272.235000px;}
.x30{left:291.134987px;}
.x29{left:292.934987px;}
.x14{left:297.075000px;}
.x1c{left:300.314987px;}
.x38{left:324.435000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x33{left:373.935000px;}
.x9{left:439.500000px;}
.x19{left:446.835000px;}
.x24{left:449.175000px;}
.x34{left:519.945000px;}
.x39{left:567.105000px;}
.x3b{left:568.545000px;}
.x1a{left:629.565000px;}
.x25{left:632.805000px;}
.x35{left:666.150000px;}
.x2f{left:687.749987px;}
.x36{left:707.549987px;}
.x3f{left:713.669987px;}
.x3c{left:722.669987px;}
.x2b{left:726.629987px;}
.x1f{left:727.889987px;}
.x2d{left:734.009987px;}
.x3{left:739.050000px;}
.x28{left:758.129987px;}
.x1b{left:762.629987px;}
.x3a{left:766.589987px;}
.x26{left:776.489987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.096640pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls9{letter-spacing:56.912640pt;}
.lsc{letter-spacing:68.079360pt;}
.wsb{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._15{margin-left:-7.187840pt;}
._14{margin-left:-6.059307pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.954987pt;}
._2{margin-left:-2.719787pt;}
._0{margin-left:-0.949333pt;}
._1{width:0.912000pt;}
._e{width:1.867947pt;}
._8{width:2.877440pt;}
._6{width:3.815680pt;}
._7{width:4.765227pt;}
._f{width:6.257493pt;}
._9{width:7.872427pt;}
._b{width:9.030400pt;}
._10{width:10.267947pt;}
._5{width:11.518080pt;}
._16{width:14.430720pt;}
._a{width:15.723520pt;}
._c{width:21.026560pt;}
._d{width:22.126507pt;}
._13{width:23.018880pt;}
._11{width:24.373120pt;}
._12{width:25.312427pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:2.880000pt;}
.y5{bottom:3.200000pt;}
.y53{bottom:3.514667pt;}
.y1c{bottom:4.320000pt;}
.y119{bottom:4.640000pt;}
.yf8{bottom:4.800000pt;}
.y117{bottom:5.280000pt;}
.y10{bottom:8.480000pt;}
.y51{bottom:9.434667pt;}
.y1e{bottom:11.040000pt;}
.ye{bottom:12.320000pt;}
.y4{bottom:17.760000pt;}
.y4d{bottom:18.080000pt;}
.yb7{bottom:18.120000pt;}
.y8d{bottom:18.240000pt;}
.yc6{bottom:18.266667pt;}
.y52{bottom:19.834667pt;}
.y7{bottom:22.080000pt;}
.y50{bottom:22.554667pt;}
.y1b{bottom:26.080000pt;}
.yd{bottom:26.880000pt;}
.y6{bottom:30.112000pt;}
.y3{bottom:32.512000pt;}
.y4c{bottom:33.440000pt;}
.y2{bottom:40.800000pt;}
.yc{bottom:41.280000pt;}
.y4b{bottom:48.800000pt;}
.y1a{bottom:55.360000pt;}
.y4a{bottom:64.160000pt;}
.yb{bottom:65.280000pt;}
.y19{bottom:70.120000pt;}
.y49{bottom:79.520000pt;}
.ya{bottom:82.746667pt;}
.y18{bottom:84.040000pt;}
.y17{bottom:93.320000pt;}
.y48{bottom:94.880000pt;}
.y9{bottom:98.906667pt;}
.y12c{bottom:99.072000pt;}
.ycb{bottom:103.392000pt;}
.y55{bottom:104.672000pt;}
.ya5{bottom:107.072000pt;}
.y16{bottom:109.640000pt;}
.y47{bottom:110.080000pt;}
.y162{bottom:111.392000pt;}
.y12b{bottom:114.432000pt;}
.yca{bottom:116.032000pt;}
.y54{bottom:119.872000pt;}
.yf4{bottom:120.032000pt;}
.ya4{bottom:122.432000pt;}
.y46{bottom:125.440000pt;}
.y15{bottom:126.600000pt;}
.y161{bottom:126.752000pt;}
.y12a{bottom:126.912000pt;}
.y90{bottom:127.872000pt;}
.y4f{bottom:132.352000pt;}
.ya3{bottom:134.906667pt;}
.yf3{bottom:135.386667pt;}
.y45{bottom:140.840000pt;}
.y8f{bottom:140.986667pt;}
.y160{bottom:141.946667pt;}
.y14{bottom:149.480000pt;}
.yf2{bottom:150.746667pt;}
.y11a{bottom:152.026667pt;}
.y44{bottom:156.200000pt;}
.y8e{bottom:156.986667pt;}
.y15f{bottom:157.306667pt;}
.y1f{bottom:164.986667pt;}
.y118{bottom:165.146667pt;}
.yf1{bottom:165.946667pt;}
.y43{bottom:171.560000pt;}
.y13{bottom:172.360000pt;}
.y15e{bottom:172.666667pt;}
.y8c{bottom:172.986667pt;}
.yf0{bottom:181.306667pt;}
.y116{bottom:182.906667pt;}
.y42{bottom:186.920000pt;}
.y15d{bottom:188.026667pt;}
.y12{bottom:193.960000pt;}
.yef{bottom:196.666667pt;}
.y115{bottom:201.306667pt;}
.y41{bottom:202.120000pt;}
.y15c{bottom:203.386667pt;}
.y8b{bottom:207.226667pt;}
.yee{bottom:212.026667pt;}
.y40{bottom:217.480000pt;}
.y15b{bottom:218.746667pt;}
.y8a{bottom:222.426667pt;}
.yed{bottom:227.386667pt;}
.ydb{bottom:230.746667pt;}
.y3f{bottom:232.840000pt;}
.y15a{bottom:233.946667pt;}
.y114{bottom:235.546667pt;}
.y89{bottom:237.786667pt;}
.yec{bottom:239.706667pt;}
.yda{bottom:243.866667pt;}
.yb9{bottom:247.386667pt;}
.y3e{bottom:248.200000pt;}
.y159{bottom:249.306667pt;}
.y113{bottom:250.906667pt;}
.y88{bottom:253.146667pt;}
.yb8{bottom:260.506667pt;}
.y3d{bottom:263.560000pt;}
.y158{bottom:264.666667pt;}
.y112{bottom:266.266667pt;}
.y87{bottom:268.506667pt;}
.yd9{bottom:275.226667pt;}
.y3c{bottom:278.920000pt;}
.y157{bottom:280.026667pt;}
.y111{bottom:281.466667pt;}
.y86{bottom:283.866667pt;}
.yb6{bottom:291.866667pt;}
.y3b{bottom:294.120000pt;}
.y156{bottom:295.386667pt;}
.y110{bottom:296.826667pt;}
.y85{bottom:299.266667pt;}
.yd8{bottom:306.626667pt;}
.y3a{bottom:309.480000pt;}
.y155{bottom:310.786667pt;}
.y10f{bottom:312.226667pt;}
.y84{bottom:314.466667pt;}
.y2c{bottom:315.400000pt;}
.yb5{bottom:323.106667pt;}
.y39{bottom:324.840000pt;}
.y154{bottom:325.986667pt;}
.y10e{bottom:327.586667pt;}
.y2b{bottom:329.000000pt;}
.y83{bottom:329.826667pt;}
.yd7{bottom:337.826667pt;}
.y38{bottom:340.200000pt;}
.y153{bottom:341.346667pt;}
.y10d{bottom:342.946667pt;}
.y2a{bottom:344.680000pt;}
.y82{bottom:345.186667pt;}
.yb4{bottom:354.466667pt;}
.y37{bottom:355.560000pt;}
.y152{bottom:356.706667pt;}
.y10c{bottom:358.306667pt;}
.y29{bottom:360.040000pt;}
.y81{bottom:360.546667pt;}
.y36{bottom:370.760000pt;}
.yd6{bottom:372.066667pt;}
.y10b{bottom:373.506667pt;}
.y28{bottom:375.426667pt;}
.y80{bottom:375.906667pt;}
.y35{bottom:386.146667pt;}
.yd5{bottom:387.426667pt;}
.yb3{bottom:388.706667pt;}
.y10a{bottom:388.866667pt;}
.y27{bottom:391.266667pt;}
.y34{bottom:401.506667pt;}
.y151{bottom:402.626667pt;}
.yd4{bottom:402.786667pt;}
.yb2{bottom:404.066667pt;}
.y109{bottom:404.226667pt;}
.y7f{bottom:406.466667pt;}
.y26{bottom:406.626667pt;}
.y33{bottom:416.866667pt;}
.y150{bottom:417.986667pt;}
.yd3{bottom:418.146667pt;}
.yb1{bottom:419.426667pt;}
.y108{bottom:419.586667pt;}
.y7e{bottom:421.826667pt;}
.y25{bottom:422.146667pt;}
.y32{bottom:432.226667pt;}
.y14f{bottom:433.346667pt;}
.yd2{bottom:433.506667pt;}
.yb0{bottom:434.786667pt;}
.y107{bottom:434.946667pt;}
.y7d{bottom:437.186667pt;}
.y24{bottom:437.506667pt;}
.y31{bottom:447.586667pt;}
.yd1{bottom:448.706667pt;}
.yaf{bottom:449.986667pt;}
.y106{bottom:450.306667pt;}
.y7c{bottom:452.546667pt;}
.y23{bottom:453.026667pt;}
.yc9{bottom:455.426667pt;}
.y30{bottom:462.786667pt;}
.yd0{bottom:464.066667pt;}
.yae{bottom:465.346667pt;}
.y105{bottom:465.506667pt;}
.ya2{bottom:465.826667pt;}
.y7b{bottom:467.906667pt;}
.yc8{bottom:468.546667pt;}
.y22{bottom:471.106667pt;}
.y129{bottom:475.906667pt;}
.y2f{bottom:478.146667pt;}
.ya1{bottom:478.946667pt;}
.ycf{bottom:479.426667pt;}
.yad{bottom:480.706667pt;}
.y104{bottom:480.866667pt;}
.y7a{bottom:483.266667pt;}
.y128{bottom:489.026667pt;}
.yce{bottom:491.906667pt;}
.y2e{bottom:493.506667pt;}
.y14e{bottom:494.626667pt;}
.ya0{bottom:494.946667pt;}
.y21{bottom:495.426667pt;}
.yac{bottom:496.066667pt;}
.y103{bottom:496.226667pt;}
.y79{bottom:498.466667pt;}
.yc7{bottom:499.746667pt;}
.y2d{bottom:508.866667pt;}
.y9f{bottom:510.946667pt;}
.y20{bottom:511.266667pt;}
.yab{bottom:511.426667pt;}
.y102{bottom:511.586667pt;}
.y78{bottom:513.826667pt;}
.y127{bottom:520.226667pt;}
.yaa{bottom:523.746667pt;}
.y9e{bottom:526.946667pt;}
.y14d{bottom:527.266667pt;}
.y77{bottom:529.186667pt;}
.yc5{bottom:531.106667pt;}
.yeb{bottom:533.666667pt;}
.y101{bottom:542.173333pt;}
.y14c{bottom:542.653333pt;}
.y76{bottom:545.533333pt;}
.y9d{bottom:545.853333pt;}
.yea{bottom:549.053333pt;}
.y126{bottom:551.613333pt;}
.y100{bottom:557.533333pt;}
.y14b{bottom:558.013333pt;}
.y9c{bottom:561.053333pt;}
.y75{bottom:561.853333pt;}
.ye9{bottom:562.173333pt;}
.yc4{bottom:562.493333pt;}
.yff{bottom:572.893333pt;}
.y14a{bottom:573.373333pt;}
.y9b{bottom:576.413333pt;}
.y74{bottom:578.013333pt;}
.ye8{bottom:578.173333pt;}
.y125{bottom:585.853333pt;}
.yfe{bottom:588.253333pt;}
.y149{bottom:588.573333pt;}
.y9a{bottom:591.773333pt;}
.y73{bottom:593.373333pt;}
.ye7{bottom:594.173333pt;}
.yc3{bottom:596.733333pt;}
.y124{bottom:601.213333pt;}
.yfd{bottom:603.613333pt;}
.y148{bottom:603.933333pt;}
.y99{bottom:608.093333pt;}
.y72{bottom:608.733333pt;}
.ye6{bottom:610.173333pt;}
.yc2{bottom:612.093333pt;}
.yfc{bottom:616.093333pt;}
.y123{bottom:616.573333pt;}
.y147{bottom:619.293333pt;}
.y98{bottom:623.453333pt;}
.y71{bottom:624.093333pt;}
.yc1{bottom:627.453333pt;}
.y122{bottom:631.773333pt;}
.y146{bottom:634.653333pt;}
.y70{bottom:639.453333pt;}
.y97{bottom:639.613333pt;}
.yc0{bottom:642.653333pt;}
.ye5{bottom:644.413333pt;}
.y121{bottom:647.133333pt;}
.y145{bottom:650.013333pt;}
.y6f{bottom:654.813333pt;}
.y96{bottom:654.973333pt;}
.ybf{bottom:658.013333pt;}
.ye4{bottom:659.773333pt;}
.y120{bottom:662.493333pt;}
.y144{bottom:665.213333pt;}
.y6e{bottom:670.013333pt;}
.y95{bottom:670.333333pt;}
.ybe{bottom:673.373333pt;}
.ye3{bottom:674.973333pt;}
.y11f{bottom:677.853333pt;}
.y143{bottom:680.573333pt;}
.y6d{bottom:685.373333pt;}
.y1d{bottom:686.333333pt;}
.y94{bottom:686.653333pt;}
.ybd{bottom:688.733333pt;}
.ye2{bottom:690.333333pt;}
.y11e{bottom:693.213333pt;}
.y142{bottom:695.933333pt;}
.y6c{bottom:700.733333pt;}
.y93{bottom:702.013333pt;}
.ybc{bottom:704.093333pt;}
.ye1{bottom:705.693333pt;}
.y11d{bottom:708.573333pt;}
.y141{bottom:711.293333pt;}
.y11{bottom:712.573333pt;}
.y6b{bottom:716.093333pt;}
.y92{bottom:717.373333pt;}
.ybb{bottom:719.453333pt;}
.ye0{bottom:721.053333pt;}
.y11c{bottom:723.773333pt;}
.y140{bottom:726.653333pt;}
.y91{bottom:729.693333pt;}
.y6a{bottom:731.453333pt;}
.yba{bottom:731.773333pt;}
.y11b{bottom:736.253333pt;}
.ydf{bottom:736.413333pt;}
.y13f{bottom:742.013333pt;}
.y69{bottom:746.653333pt;}
.yde{bottom:751.773333pt;}
.y13e{bottom:757.213333pt;}
.y68{bottom:762.013333pt;}
.ydd{bottom:766.973333pt;}
.y13d{bottom:772.573333pt;}
.y67{bottom:777.413333pt;}
.ydc{bottom:779.493333pt;}
.y13c{bottom:787.973333pt;}
.ycd{bottom:789.413333pt;}
.y66{bottom:792.773333pt;}
.ycc{bottom:802.533333pt;}
.y13b{bottom:803.333333pt;}
.y65{bottom:808.133333pt;}
.y13a{bottom:818.693333pt;}
.ya9{bottom:820.773333pt;}
.y64{bottom:823.493333pt;}
.ya8{bottom:833.893333pt;}
.y139{bottom:834.053333pt;}
.y63{bottom:838.693333pt;}
.y138{bottom:849.253333pt;}
.y62{bottom:854.053333pt;}
.y137{bottom:864.613333pt;}
.ya7{bottom:865.253333pt;}
.y61{bottom:869.413333pt;}
.y136{bottom:879.973333pt;}
.y60{bottom:884.773333pt;}
.y135{bottom:896.293333pt;}
.ya6{bottom:896.613333pt;}
.y5f{bottom:900.133333pt;}
.y134{bottom:912.613333pt;}
.y5e{bottom:915.493333pt;}
.yf{bottom:919.973333pt;}
.yfb{bottom:920.933333pt;}
.y133{bottom:927.813333pt;}
.y5d{bottom:930.693333pt;}
.yfa{bottom:934.053333pt;}
.y8{bottom:942.533333pt;}
.y132{bottom:944.133333pt;}
.y5c{bottom:946.053333pt;}
.yf9{bottom:951.973333pt;}
.y131{bottom:959.493333pt;}
.y5b{bottom:961.413333pt;}
.yf7{bottom:969.893333pt;}
.y130{bottom:974.853333pt;}
.y5a{bottom:976.773333pt;}
.yf6{bottom:987.813333pt;}
.y12f{bottom:990.213333pt;}
.y59{bottom:992.133333pt;}
.yf5{bottom:1003.813333pt;}
.y12e{bottom:1006.533333pt;}
.y58{bottom:1007.493333pt;}
.y12d{bottom:1021.760000pt;}
.y57{bottom:1022.720000pt;}
.y56{bottom:1038.080000pt;}
.y1{bottom:1061.440000pt;}
.h25{height:15.200000pt;}
.h24{height:15.232000pt;}
.h23{height:15.360000pt;}
.h2b{height:17.120000pt;}
.h29{height:17.280000pt;}
.h2a{height:17.760000pt;}
.hd{height:22.240000pt;}
.h14{height:25.750000pt;}
.h15{height:26.240000pt;}
.h26{height:30.560000pt;}
.h27{height:30.592000pt;}
.h22{height:30.720000pt;}
.h28{height:30.752000pt;}
.h13{height:31.828125pt;}
.ha{height:32.160000pt;}
.h1e{height:32.640000pt;}
.h1c{height:34.505000pt;}
.h1d{height:37.090625pt;}
.h20{height:37.479688pt;}
.h1b{height:37.583438pt;}
.h6{height:38.625000pt;}
.h21{height:38.672812pt;}
.hf{height:39.113750pt;}
.hc{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h18{height:42.649687pt;}
.h1f{height:42.745000pt;}
.h3{height:43.872000pt;}
.h5{height:47.742188pt;}
.hb{height:48.000000pt;}
.h4{height:49.148438pt;}
.h19{height:50.288438pt;}
.h11{height:52.834688pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h2{height:58.563750pt;}
.h7{height:60.288750pt;}
.h9{height:63.656250pt;}
.h16{height:65.531250pt;}
.h8{height:108.032000pt;}
.he{height:207.386667pt;}
.h17{height:521.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:64.960000pt;}
.wf{width:129.120000pt;}
.we{width:129.152000pt;}
.wd{width:129.312000pt;}
.w5{width:135.066667pt;}
.wa{width:161.626667pt;}
.wb{width:162.586667pt;}
.wc{width:162.746667pt;}
.w8{width:192.066667pt;}
.w11{width:215.066667pt;}
.w10{width:215.106667pt;}
.w13{width:215.706667pt;}
.w12{width:215.746667pt;}
.w14{width:215.866667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w3{width:584.933333pt;}
.w7{width:649.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.720000pt;}
.x2{left:7.712000pt;}
.x15{left:11.200000pt;}
.xb{left:15.552000pt;}
.xc{left:21.952000pt;}
.x1{left:71.999988pt;}
.x4{left:87.226667pt;}
.x16{left:96.031988pt;}
.x11{left:99.386667pt;}
.x3e{left:102.431988pt;}
.x37{left:112.991988pt;}
.x1d{left:120.031988pt;}
.x2a{left:134.426655pt;}
.x1e{left:151.866655pt;}
.xd{left:152.986667pt;}
.xe{left:155.866667pt;}
.x10{left:170.746667pt;}
.x3d{left:172.826655pt;}
.xf{left:180.546667pt;}
.x31{left:187.226655pt;}
.x21{left:188.346655pt;}
.x13{left:191.266667pt;}
.x17{left:196.346655pt;}
.x2c{left:199.706655pt;}
.x32{left:202.586667pt;}
.x5{left:207.066667pt;}
.x2e{left:209.146655pt;}
.x40{left:215.386655pt;}
.x20{left:227.226655pt;}
.x27{left:228.346655pt;}
.x12{left:229.506667pt;}
.x18{left:234.906667pt;}
.x22{left:236.026667pt;}
.x8{left:241.986667pt;}
.x30{left:258.786655pt;}
.x29{left:260.386655pt;}
.x14{left:264.066667pt;}
.x1c{left:266.946655pt;}
.x38{left:288.386667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x33{left:332.386667pt;}
.x9{left:390.666667pt;}
.x19{left:397.186667pt;}
.x24{left:399.266667pt;}
.x34{left:462.173333pt;}
.x39{left:504.093333pt;}
.x3b{left:505.373333pt;}
.x1a{left:559.613333pt;}
.x25{left:562.493333pt;}
.x35{left:592.133333pt;}
.x2f{left:611.333322pt;}
.x36{left:628.933322pt;}
.x3f{left:634.373322pt;}
.x3c{left:642.373322pt;}
.x2b{left:645.893322pt;}
.x1f{left:647.013322pt;}
.x2d{left:652.453322pt;}
.x3{left:656.933333pt;}
.x28{left:673.893322pt;}
.x1b{left:677.893322pt;}
.x3a{left:681.413322pt;}
.x26{left:690.213322pt;}
}




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