
    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_a90cb2cbeb3519cc327a9dfc.woff2')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_cd51980ba95c68daea2e0177.woff2')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_33e78d95b728cc1f508bbee5.woff2')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_fa94987c1cdc51d69f01813a.woff2')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_9555f3d3271594c8ed0ca7be.woff2')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_b87444467a102aee52b375a9.woff2')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_d74b4ace65817fba3430d716.woff2')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_5632a2273a4f3c85ca8534f1.woff2')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_5a8048abeeeb4bf65f25f4a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_2bddca21be5b3bd730ed54ac.woff2')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_e4c225bbc60d887738a9edf9.woff2')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_db31ca08707739b8742706be.woff2')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_ca91a81810ac8e25654a4994.woff2')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_1ce630fdda10ccba9871f6cc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_142d3291896e1b6f956a2fae.woff2')format("woff");}.fff{font-family:fff;line-height:1.112305;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_01abcf053a81004513126661.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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_359a71ce140f5e3feff8907a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')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_046ba87c87a85f325bf1c69f.woff2')format("woff");}.ff14{font-family:ff14;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;}
.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;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.493800px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.127200px;}
.ls12{letter-spacing:-0.027360px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls9{letter-spacing:0.174240px;}
.ls11{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.284400px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls10{letter-spacing:20.907360px;}
.lsc{letter-spacing:46.026720px;}
.lse{letter-spacing:49.707360px;}
.lsd{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;}
}
.wsa{word-spacing:-59.760000px;}
.wsb{word-spacing:-34.063200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.wse{word-spacing:-14.504400px;}
.wsd{word-spacing:-14.220000px;}
.wsc{word-spacing:-14.192640px;}
.ws9{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.wsf{word-spacing:-9.000000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._1e{margin-left:-7.747680px;}
._1d{margin-left:-6.602880px;}
._5{margin-left:-5.403600px;}
._3{margin-left:-4.194000px;}
._2{margin-left:-2.274480px;}
._0{margin-left:-1.080000px;}
._1{width:1.002000px;}
._4{width:2.155440px;}
._6{width:3.644880px;}
._8{width:4.658640px;}
._b{width:6.049680px;}
._7{width:7.529760px;}
._f{width:9.203040px;}
._e{width:11.175120px;}
._d{width:12.324480px;}
._11{width:13.864320px;}
._10{width:16.149120px;}
._16{width:17.882160px;}
._a{width:18.957840px;}
._15{width:20.318400px;}
._14{width:21.334320px;}
._18{width:22.364160px;}
._19{width:23.398080px;}
._c{width:25.232640px;}
._12{width:27.921840px;}
._13{width:29.015520px;}
._1c{width:30.342960px;}
._17{width:31.493520px;}
._1b{width:43.160640px;}
._9{width:61.985040px;}
._1a{width:146.172960px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(33,33,33);}
.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;}
.y1d{bottom:0.180000px;}
.y56{bottom:3.240000px;}
.yf2{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y60{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y1e{bottom:12.600000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.496000px;}
.y1b{bottom:19.980000px;}
.y2{bottom:20.196000px;}
.y55{bottom:20.520000px;}
.y5a{bottom:20.550000px;}
.y5f{bottom:22.140000px;}
.y5d{bottom:28.800000px;}
.yb{bottom:30.240000px;}
.y5{bottom:32.760000px;}
.y59{bottom:37.650000px;}
.y54{bottom:37.794000px;}
.y1a{bottom:40.320000px;}
.y5e{bottom:40.500000px;}
.y5c{bottom:43.560000px;}
.ya{bottom:46.440000px;}
.y19{bottom:52.920000px;}
.y58{bottom:54.930000px;}
.y53{bottom:55.074000px;}
.y1{bottom:55.260000px;}
.y52{bottom:72.354000px;}
.y18{bottom:73.305000px;}
.y9{bottom:73.470000px;}
.y17{bottom:85.905000px;}
.y51{bottom:89.454000px;}
.y8{bottom:93.090000px;}
.yfe{bottom:104.796000px;}
.y16{bottom:106.245000px;}
.y50{bottom:106.734000px;}
.yd6{bottom:109.656000px;}
.y7{bottom:111.270000px;}
.y15e{bottom:111.816000px;}
.y1f{bottom:113.256000px;}
.y19c{bottom:115.236000px;}
.y15{bottom:118.665000px;}
.yfd{bottom:122.796000px;}
.y4f{bottom:124.014000px;}
.y97{bottom:125.856000px;}
.yd5{bottom:126.936000px;}
.y15d{bottom:129.096000px;}
.y138{bottom:129.816000px;}
.y19b{bottom:132.336000px;}
.y14{bottom:133.245000px;}
.yfc{bottom:140.796000px;}
.y4e{bottom:141.294000px;}
.y96{bottom:143.136000px;}
.yd4{bottom:144.216000px;}
.y15c{bottom:146.376000px;}
.y137{bottom:147.096000px;}
.y13{bottom:148.545000px;}
.y19a{bottom:148.716000px;}
.y4d{bottom:158.574000px;}
.yfb{bottom:158.790000px;}
.y95{bottom:160.410000px;}
.yd3{bottom:161.490000px;}
.y15b{bottom:163.470000px;}
.y136{bottom:164.370000px;}
.y199{bottom:165.090000px;}
.y12{bottom:167.625000px;}
.y4c{bottom:175.674000px;}
.y94{bottom:177.690000px;}
.yd2{bottom:178.590000px;}
.yfa{bottom:180.030000px;}
.y15a{bottom:180.750000px;}
.y135{bottom:181.470000px;}
.y4b{bottom:192.954000px;}
.y11{bottom:193.365000px;}
.y93{bottom:194.790000px;}
.yd1{bottom:195.870000px;}
.yf9{bottom:197.310000px;}
.y198{bottom:197.850000px;}
.y159{bottom:198.030000px;}
.y134{bottom:198.750000px;}
.y4a{bottom:210.234000px;}
.y92{bottom:212.070000px;}
.yd0{bottom:213.150000px;}
.y197{bottom:214.230000px;}
.yf8{bottom:214.590000px;}
.y158{bottom:215.310000px;}
.y133{bottom:216.030000px;}
.y10{bottom:217.665000px;}
.y49{bottom:227.559000px;}
.y91{bottom:229.350000px;}
.ycf{bottom:230.430000px;}
.y196{bottom:230.610000px;}
.y157{bottom:232.590000px;}
.y132{bottom:233.310000px;}
.y48{bottom:244.839000px;}
.y90{bottom:246.630000px;}
.y195{bottom:246.990000px;}
.yf7{bottom:247.350000px;}
.yce{bottom:247.710000px;}
.y156{bottom:249.870000px;}
.y131{bottom:250.590000px;}
.y47{bottom:262.119000px;}
.y194{bottom:263.370000px;}
.y8f{bottom:263.910000px;}
.ycd{bottom:264.810000px;}
.y155{bottom:266.970000px;}
.y130{bottom:267.870000px;}
.yf6{bottom:268.590000px;}
.y46{bottom:279.219000px;}
.y193{bottom:279.750000px;}
.y8e{bottom:281.190000px;}
.ycc{bottom:282.090000px;}
.y154{bottom:284.250000px;}
.y12f{bottom:284.970000px;}
.yf5{bottom:285.870000px;}
.y192{bottom:296.130000px;}
.y45{bottom:296.499000px;}
.y8d{bottom:298.290000px;}
.ycb{bottom:299.370000px;}
.y153{bottom:301.530000px;}
.y12e{bottom:302.250000px;}
.yf4{bottom:302.970000px;}
.y191{bottom:312.510000px;}
.y44{bottom:313.779000px;}
.y8c{bottom:315.570000px;}
.yca{bottom:316.650000px;}
.yf3{bottom:317.730000px;}
.y152{bottom:318.810000px;}
.y12d{bottom:319.530000px;}
.y190{bottom:328.890000px;}
.y43{bottom:331.059000px;}
.y8b{bottom:332.850000px;}
.yc9{bottom:333.930000px;}
.yf1{bottom:335.730000px;}
.y151{bottom:336.090000px;}
.y12c{bottom:336.855000px;}
.y18f{bottom:345.315000px;}
.y42{bottom:348.339000px;}
.y8a{bottom:350.175000px;}
.yc8{bottom:351.255000px;}
.y150{bottom:353.415000px;}
.y12b{bottom:354.135000px;}
.yf0{bottom:357.015000px;}
.y18e{bottom:361.875000px;}
.y41{bottom:365.619000px;}
.y89{bottom:367.455000px;}
.yc7{bottom:368.355000px;}
.y14f{bottom:370.515000px;}
.y12a{bottom:371.415000px;}
.yef{bottom:374.295000px;}
.y18d{bottom:378.255000px;}
.y40{bottom:382.719000px;}
.y88{bottom:384.735000px;}
.yc6{bottom:385.635000px;}
.y14e{bottom:387.795000px;}
.y129{bottom:388.515000px;}
.yee{bottom:391.575000px;}
.y2f{bottom:391.719000px;}
.y18c{bottom:394.635000px;}
.y3f{bottom:399.999000px;}
.y87{bottom:401.835000px;}
.yc5{bottom:402.915000px;}
.y14d{bottom:405.075000px;}
.y128{bottom:405.795000px;}
.yed{bottom:406.335000px;}
.y2e{bottom:407.019000px;}
.y18b{bottom:411.015000px;}
.y3e{bottom:417.279000px;}
.y86{bottom:419.115000px;}
.yc4{bottom:420.195000px;}
.y14c{bottom:422.355000px;}
.y127{bottom:423.075000px;}
.yec{bottom:424.335000px;}
.y2d{bottom:424.659000px;}
.y18a{bottom:427.395000px;}
.y3d{bottom:434.559000px;}
.y85{bottom:436.395000px;}
.yc3{bottom:437.475000px;}
.y14b{bottom:439.635000px;}
.y126{bottom:440.355000px;}
.y2c{bottom:441.939000px;}
.yeb{bottom:442.335000px;}
.y189{bottom:443.775000px;}
.y3c{bottom:451.839000px;}
.y84{bottom:453.675000px;}
.yc2{bottom:454.755000px;}
.y14a{bottom:456.915000px;}
.y125{bottom:457.635000px;}
.y2b{bottom:459.219000px;}
.y188{bottom:460.155000px;}
.yea{bottom:463.575000px;}
.y3b{bottom:468.939000px;}
.y83{bottom:470.955000px;}
.yc1{bottom:471.855000px;}
.y149{bottom:474.015000px;}
.y124{bottom:474.915000px;}
.y187{bottom:476.535000px;}
.y2a{bottom:477.039000px;}
.ye9{bottom:480.855000px;}
.y3a{bottom:486.219000px;}
.y82{bottom:488.055000px;}
.yc0{bottom:489.135000px;}
.y148{bottom:491.295000px;}
.y123{bottom:492.015000px;}
.y186{bottom:492.915000px;}
.y29{bottom:494.349000px;}
.ye8{bottom:498.135000px;}
.y39{bottom:503.529000px;}
.y81{bottom:505.335000px;}
.ybf{bottom:506.415000px;}
.y147{bottom:508.575000px;}
.y122{bottom:509.295000px;}
.y28{bottom:511.809000px;}
.ye7{bottom:512.895000px;}
.y38{bottom:520.809000px;}
.y80{bottom:522.615000px;}
.ybe{bottom:523.695000px;}
.y185{bottom:525.675000px;}
.y146{bottom:525.855000px;}
.y121{bottom:526.575000px;}
.y27{bottom:529.269000px;}
.ye6{bottom:530.895000px;}
.y37{bottom:538.089000px;}
.y7f{bottom:539.895000px;}
.ybd{bottom:540.975000px;}
.y184{bottom:542.055000px;}
.y145{bottom:543.135000px;}
.y120{bottom:543.855000px;}
.y26{bottom:546.549000px;}
.ye5{bottom:548.895000px;}
.y36{bottom:555.369000px;}
.y7e{bottom:557.175000px;}
.ybc{bottom:558.255000px;}
.y183{bottom:558.435000px;}
.y144{bottom:560.235000px;}
.y11f{bottom:561.135000px;}
.y25{bottom:564.009000px;}
.ye4{bottom:570.135000px;}
.y35{bottom:572.469000px;}
.y7d{bottom:574.455000px;}
.y182{bottom:574.815000px;}
.ybb{bottom:575.355000px;}
.y143{bottom:577.515000px;}
.y11e{bottom:578.235000px;}
.y24{bottom:581.289000px;}
.ye3{bottom:587.235000px;}
.y34{bottom:589.749000px;}
.y181{bottom:591.195000px;}
.y7c{bottom:591.555000px;}
.yba{bottom:592.635000px;}
.y142{bottom:594.795000px;}
.y11d{bottom:595.515000px;}
.y23{bottom:598.749000px;}
.ye2{bottom:604.545000px;}
.y33{bottom:607.029000px;}
.y180{bottom:607.605000px;}
.y7b{bottom:608.865000px;}
.yb9{bottom:609.945000px;}
.y141{bottom:612.105000px;}
.y11c{bottom:612.825000px;}
.y22{bottom:616.389000px;}
.ye1{bottom:619.305000px;}
.y17f{bottom:623.985000px;}
.y32{bottom:624.309000px;}
.y7a{bottom:626.145000px;}
.yb8{bottom:627.225000px;}
.y11b{bottom:627.585000px;}
.y140{bottom:629.385000px;}
.ye0{bottom:637.305000px;}
.y17e{bottom:640.365000px;}
.y31{bottom:641.589000px;}
.y79{bottom:643.425000px;}
.y21{bottom:643.749000px;}
.yb7{bottom:644.505000px;}
.y11a{bottom:645.585000px;}
.y13f{bottom:646.665000px;}
.ydf{bottom:655.305000px;}
.y17d{bottom:656.745000px;}
.y30{bottom:658.869000px;}
.y78{bottom:660.705000px;}
.y20{bottom:661.389000px;}
.yb6{bottom:661.605000px;}
.y119{bottom:663.585000px;}
.y13e{bottom:663.765000px;}
.y17c{bottom:673.125000px;}
.yde{bottom:676.545000px;}
.y77{bottom:677.985000px;}
.yb5{bottom:678.885000px;}
.y13d{bottom:681.045000px;}
.y118{bottom:681.585000px;}
.y17b{bottom:689.505000px;}
.ydd{bottom:693.825000px;}
.y76{bottom:695.085000px;}
.yb4{bottom:696.165000px;}
.y13c{bottom:698.325000px;}
.y117{bottom:702.825000px;}
.y17a{bottom:705.885000px;}
.ydc{bottom:711.105000px;}
.y75{bottom:712.365000px;}
.yb3{bottom:713.445000px;}
.y13b{bottom:715.605000px;}
.y116{bottom:720.105000px;}
.y179{bottom:722.265000px;}
.ydb{bottom:725.865000px;}
.y74{bottom:729.645000px;}
.yb2{bottom:730.725000px;}
.y13a{bottom:732.885000px;}
.y115{bottom:737.385000px;}
.y178{bottom:738.645000px;}
.yda{bottom:743.865000px;}
.y73{bottom:746.925000px;}
.yb1{bottom:749.085000px;}
.y139{bottom:750.165000px;}
.y114{bottom:752.145000px;}
.y177{bottom:755.025000px;}
.yd9{bottom:761.865000px;}
.y72{bottom:764.205000px;}
.yb0{bottom:767.265000px;}
.y113{bottom:770.145000px;}
.y176{bottom:771.405000px;}
.yd8{bottom:779.865000px;}
.y71{bottom:781.305000px;}
.yaf{bottom:784.545000px;}
.y1c{bottom:785.985000px;}
.y175{bottom:787.785000px;}
.y112{bottom:788.145000px;}
.yd7{bottom:797.865000px;}
.y70{bottom:798.585000px;}
.yae{bottom:801.825000px;}
.y174{bottom:804.165000px;}
.yf{bottom:815.685000px;}
.y6f{bottom:815.865000px;}
.yad{bottom:819.105000px;}
.y173{bottom:820.545000px;}
.y111{bottom:826.665000px;}
.y6e{bottom:833.145000px;}
.yac{bottom:836.385000px;}
.y172{bottom:836.925000px;}
.y110{bottom:843.765000px;}
.y6d{bottom:850.425000px;}
.yab{bottom:853.485000px;}
.y10f{bottom:861.045000px;}
.y6c{bottom:867.705000px;}
.y171{bottom:869.865000px;}
.yaa{bottom:870.810000px;}
.y10e{bottom:875.850000px;}
.y6b{bottom:884.850000px;}
.y170{bottom:886.290000px;}
.ya9{bottom:888.090000px;}
.y10d{bottom:893.850000px;}
.y6a{bottom:902.130000px;}
.y16f{bottom:902.670000px;}
.ya8{bottom:905.370000px;}
.y10c{bottom:915.090000px;}
.y16e{bottom:919.050000px;}
.y69{bottom:919.410000px;}
.ya7{bottom:922.650000px;}
.y10b{bottom:932.370000px;}
.y16d{bottom:935.430000px;}
.y68{bottom:936.690000px;}
.ya6{bottom:939.930000px;}
.y10a{bottom:949.650000px;}
.y16c{bottom:951.810000px;}
.y67{bottom:953.970000px;}
.ya5{bottom:957.030000px;}
.y109{bottom:964.410000px;}
.y16b{bottom:968.190000px;}
.y66{bottom:971.250000px;}
.ya4{bottom:974.310000px;}
.y108{bottom:982.410000px;}
.y16a{bottom:984.570000px;}
.y65{bottom:988.350000px;}
.ya3{bottom:991.590000px;}
.y107{bottom:1000.410000px;}
.y169{bottom:1000.950000px;}
.y64{bottom:1005.630000px;}
.ya2{bottom:1008.870000px;}
.y168{bottom:1017.330000px;}
.y106{bottom:1018.410000px;}
.y63{bottom:1022.910000px;}
.ya1{bottom:1026.150000px;}
.y167{bottom:1033.710000px;}
.y105{bottom:1039.650000px;}
.y62{bottom:1040.190000px;}
.ya0{bottom:1043.430000px;}
.yd{bottom:1048.470000px;}
.y166{bottom:1050.090000px;}
.y104{bottom:1056.930000px;}
.y61{bottom:1057.470000px;}
.y9f{bottom:1060.530000px;}
.y165{bottom:1066.470000px;}
.y5b{bottom:1071.510000px;}
.y6{bottom:1073.850000px;}
.y103{bottom:1074.030000px;}
.y9e{bottom:1077.810000px;}
.y164{bottom:1082.850000px;}
.y102{bottom:1088.790000px;}
.y9d{bottom:1095.090000px;}
.y163{bottom:1099.230000px;}
.y101{bottom:1106.790000px;}
.y9c{bottom:1112.370000px;}
.y162{bottom:1115.610000px;}
.y100{bottom:1124.790000px;}
.y57{bottom:1126.410000px;}
.y9b{bottom:1129.650000px;}
.y161{bottom:1131.990000px;}
.yff{bottom:1142.820000px;}
.y9a{bottom:1146.960000px;}
.y160{bottom:1148.400000px;}
.y99{bottom:1164.060000px;}
.y15f{bottom:1164.780000px;}
.y98{bottom:1181.340000px;}
.h21{height:17.100000px;}
.h20{height:17.280000px;}
.h22{height:17.316000px;}
.hb{height:25.020000px;}
.h11{height:28.968750px;}
.h13{height:29.700000px;}
.h2{height:33.156000px;}
.h23{height:34.380000px;}
.h8{height:36.180000px;}
.h1a{height:38.818125px;}
.h1f{height:42.164648px;}
.h19{height:42.281367px;}
.h12{height:43.453125px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1e{height:48.088125px;}
.h24{height:50.992031px;}
.h1b{height:53.573906px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h1d{height:54.900000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h1c{height:68.976000px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:232.770000px;}
.h15{height:672.735000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w30{width:62.280000px;}
.w3{width:74.880000px;}
.wd{width:83.340000px;}
.w19{width:86.220000px;}
.w34{width:88.056000px;}
.w2c{width:89.460000px;}
.w1c{width:90.180000px;}
.w28{width:95.760000px;}
.w11{width:100.800000px;}
.w20{width:106.920000px;}
.w24{width:108.360000px;}
.w35{width:116.820000px;}
.w15{width:121.860000px;}
.w21{width:124.236000px;}
.w5{width:151.950000px;}
.w18{width:152.490000px;}
.w33{width:156.270000px;}
.w12{width:158.610000px;}
.w1b{width:159.690000px;}
.w2d{width:168.330000px;}
.w17{width:176.070000px;}
.w10{width:178.230000px;}
.w32{width:180.030000px;}
.wa{width:184.170000px;}
.w29{width:188.310000px;}
.w1f{width:189.030000px;}
.w25{width:197.130000px;}
.w31{width:202.170000px;}
.wf{width:205.410000px;}
.w27{width:212.790000px;}
.w14{width:215.490000px;}
.w1e{width:218.010000px;}
.w2b{width:221.070000px;}
.w8{width:223.275000px;}
.wc{width:227.190000px;}
.w1d{width:230.475000px;}
.w26{width:238.755000px;}
.w23{width:241.230000px;}
.w2a{width:245.415000px;}
.w13{width:248.475000px;}
.wb{width:249.735000px;}
.w2f{width:249.870000px;}
.we{width:259.815000px;}
.w2e{width:263.955000px;}
.w22{width:270.615000px;}
.w1a{width:310.215000px;}
.w16{width:329.655000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.560000px;}
.x2{left:8.640000px;}
.x12{left:12.600000px;}
.xe{left:32.256000px;}
.xc{left:52.236000px;}
.xd{left:70.236000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x13{left:108.035987px;}
.x1f{left:169.229987px;}
.x32{left:198.210000px;}
.x10{left:215.175000px;}
.x19{left:221.789987px;}
.x2e{left:223.589987px;}
.x6{left:224.850000px;}
.x14{left:225.929987px;}
.x3e{left:231.509987px;}
.x20{left:232.590000px;}
.x36{left:233.669987px;}
.x3d{left:234.929987px;}
.x2d{left:241.409987px;}
.x29{left:244.829987px;}
.x41{left:248.789987px;}
.x1e{left:251.309987px;}
.x3a{left:255.269987px;}
.x15{left:258.150000px;}
.x23{left:261.209987px;}
.x3b{left:262.290000px;}
.x31{left:266.429987px;}
.x18{left:267.689987px;}
.x37{left:271.110000px;}
.x42{left:276.330000px;}
.x24{left:282.134987px;}
.x3c{left:284.654987px;}
.x35{left:286.634987px;}
.x9{left:288.435000px;}
.x11{left:296.175000px;}
.x28{left:304.274987px;}
.xf{left:328.395000px;}
.x1a{left:333.795000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x2a{left:384.195000px;}
.x25{left:403.635000px;}
.xa{left:455.700000px;}
.x43{left:457.095000px;}
.x33{left:469.545000px;}
.x21{left:481.785000px;}
.x3f{left:506.985000px;}
.x16{left:508.605000px;}
.x38{left:510.585000px;}
.x2f{left:523.185000px;}
.x1b{left:540.105000px;}
.x2b{left:569.085000px;}
.x26{left:580.425000px;}
.x44{left:614.265000px;}
.x22{left:698.010000px;}
.x45{left:703.050000px;}
.x34{left:711.510000px;}
.x30{left:712.950000px;}
.x1d{left:719.070000px;}
.x39{left:724.110000px;}
.x2c{left:729.690000px;}
.x27{left:733.650000px;}
.x17{left:736.530000px;}
.x3{left:745.890000px;}
.x40{left:757.590000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.438933pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.113067pt;}
.ls12{letter-spacing:-0.024320pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls9{letter-spacing:0.154880pt;}
.ls11{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.252800pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls10{letter-spacing:18.584320pt;}
.lsc{letter-spacing:40.912640pt;}
.lse{letter-spacing:44.184320pt;}
.lsd{letter-spacing:56.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.wsb{word-spacing:-30.278400pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.892800pt;}
.wsd{word-spacing:-12.640000pt;}
.wsc{word-spacing:-12.615680pt;}
.ws9{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.wsf{word-spacing:-8.000000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._1e{margin-left:-6.886827pt;}
._1d{margin-left:-5.869227pt;}
._5{margin-left:-4.803200pt;}
._3{margin-left:-3.728000pt;}
._2{margin-left:-2.021760pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.890667pt;}
._4{width:1.915947pt;}
._6{width:3.239893pt;}
._8{width:4.141013pt;}
._b{width:5.377493pt;}
._7{width:6.693120pt;}
._f{width:8.180480pt;}
._e{width:9.933440pt;}
._d{width:10.955093pt;}
._11{width:12.323840pt;}
._10{width:14.354773pt;}
._16{width:15.895253pt;}
._a{width:16.851413pt;}
._15{width:18.060800pt;}
._14{width:18.963840pt;}
._18{width:19.879253pt;}
._19{width:20.798293pt;}
._c{width:22.429013pt;}
._12{width:24.819413pt;}
._13{width:25.791573pt;}
._1c{width:26.971520pt;}
._17{width:27.994240pt;}
._1b{width:38.365013pt;}
._9{width:55.097813pt;}
._1a{width:129.931520pt;}
.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;}
.y1d{bottom:0.160000pt;}
.y56{bottom:2.880000pt;}
.yf2{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y60{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y1e{bottom:11.200000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.552000pt;}
.y1b{bottom:17.760000pt;}
.y2{bottom:17.952000pt;}
.y55{bottom:18.240000pt;}
.y5a{bottom:18.266667pt;}
.y5f{bottom:19.680000pt;}
.y5d{bottom:25.600000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:29.120000pt;}
.y59{bottom:33.466667pt;}
.y54{bottom:33.594667pt;}
.y1a{bottom:35.840000pt;}
.y5e{bottom:36.000000pt;}
.y5c{bottom:38.720000pt;}
.ya{bottom:41.280000pt;}
.y19{bottom:47.040000pt;}
.y58{bottom:48.826667pt;}
.y53{bottom:48.954667pt;}
.y1{bottom:49.120000pt;}
.y52{bottom:64.314667pt;}
.y18{bottom:65.160000pt;}
.y9{bottom:65.306667pt;}
.y17{bottom:76.360000pt;}
.y51{bottom:79.514667pt;}
.y8{bottom:82.746667pt;}
.yfe{bottom:93.152000pt;}
.y16{bottom:94.440000pt;}
.y50{bottom:94.874667pt;}
.yd6{bottom:97.472000pt;}
.y7{bottom:98.906667pt;}
.y15e{bottom:99.392000pt;}
.y1f{bottom:100.672000pt;}
.y19c{bottom:102.432000pt;}
.y15{bottom:105.480000pt;}
.yfd{bottom:109.152000pt;}
.y4f{bottom:110.234667pt;}
.y97{bottom:111.872000pt;}
.yd5{bottom:112.832000pt;}
.y15d{bottom:114.752000pt;}
.y138{bottom:115.392000pt;}
.y19b{bottom:117.632000pt;}
.y14{bottom:118.440000pt;}
.yfc{bottom:125.152000pt;}
.y4e{bottom:125.594667pt;}
.y96{bottom:127.232000pt;}
.yd4{bottom:128.192000pt;}
.y15c{bottom:130.112000pt;}
.y137{bottom:130.752000pt;}
.y13{bottom:132.040000pt;}
.y19a{bottom:132.192000pt;}
.y4d{bottom:140.954667pt;}
.yfb{bottom:141.146667pt;}
.y95{bottom:142.586667pt;}
.yd3{bottom:143.546667pt;}
.y15b{bottom:145.306667pt;}
.y136{bottom:146.106667pt;}
.y199{bottom:146.746667pt;}
.y12{bottom:149.000000pt;}
.y4c{bottom:156.154667pt;}
.y94{bottom:157.946667pt;}
.yd2{bottom:158.746667pt;}
.yfa{bottom:160.026667pt;}
.y15a{bottom:160.666667pt;}
.y135{bottom:161.306667pt;}
.y4b{bottom:171.514667pt;}
.y11{bottom:171.880000pt;}
.y93{bottom:173.146667pt;}
.yd1{bottom:174.106667pt;}
.yf9{bottom:175.386667pt;}
.y198{bottom:175.866667pt;}
.y159{bottom:176.026667pt;}
.y134{bottom:176.666667pt;}
.y4a{bottom:186.874667pt;}
.y92{bottom:188.506667pt;}
.yd0{bottom:189.466667pt;}
.y197{bottom:190.426667pt;}
.yf8{bottom:190.746667pt;}
.y158{bottom:191.386667pt;}
.y133{bottom:192.026667pt;}
.y10{bottom:193.480000pt;}
.y49{bottom:202.274667pt;}
.y91{bottom:203.866667pt;}
.ycf{bottom:204.826667pt;}
.y196{bottom:204.986667pt;}
.y157{bottom:206.746667pt;}
.y132{bottom:207.386667pt;}
.y48{bottom:217.634667pt;}
.y90{bottom:219.226667pt;}
.y195{bottom:219.546667pt;}
.yf7{bottom:219.866667pt;}
.yce{bottom:220.186667pt;}
.y156{bottom:222.106667pt;}
.y131{bottom:222.746667pt;}
.y47{bottom:232.994667pt;}
.y194{bottom:234.106667pt;}
.y8f{bottom:234.586667pt;}
.ycd{bottom:235.386667pt;}
.y155{bottom:237.306667pt;}
.y130{bottom:238.106667pt;}
.yf6{bottom:238.746667pt;}
.y46{bottom:248.194667pt;}
.y193{bottom:248.666667pt;}
.y8e{bottom:249.946667pt;}
.ycc{bottom:250.746667pt;}
.y154{bottom:252.666667pt;}
.y12f{bottom:253.306667pt;}
.yf5{bottom:254.106667pt;}
.y192{bottom:263.226667pt;}
.y45{bottom:263.554667pt;}
.y8d{bottom:265.146667pt;}
.ycb{bottom:266.106667pt;}
.y153{bottom:268.026667pt;}
.y12e{bottom:268.666667pt;}
.yf4{bottom:269.306667pt;}
.y191{bottom:277.786667pt;}
.y44{bottom:278.914667pt;}
.y8c{bottom:280.506667pt;}
.yca{bottom:281.466667pt;}
.yf3{bottom:282.426667pt;}
.y152{bottom:283.386667pt;}
.y12d{bottom:284.026667pt;}
.y190{bottom:292.346667pt;}
.y43{bottom:294.274667pt;}
.y8b{bottom:295.866667pt;}
.yc9{bottom:296.826667pt;}
.yf1{bottom:298.426667pt;}
.y151{bottom:298.746667pt;}
.y12c{bottom:299.426667pt;}
.y18f{bottom:306.946667pt;}
.y42{bottom:309.634667pt;}
.y8a{bottom:311.266667pt;}
.yc8{bottom:312.226667pt;}
.y150{bottom:314.146667pt;}
.y12b{bottom:314.786667pt;}
.yf0{bottom:317.346667pt;}
.y18e{bottom:321.666667pt;}
.y41{bottom:324.994667pt;}
.y89{bottom:326.626667pt;}
.yc7{bottom:327.426667pt;}
.y14f{bottom:329.346667pt;}
.y12a{bottom:330.146667pt;}
.yef{bottom:332.706667pt;}
.y18d{bottom:336.226667pt;}
.y40{bottom:340.194667pt;}
.y88{bottom:341.986667pt;}
.yc6{bottom:342.786667pt;}
.y14e{bottom:344.706667pt;}
.y129{bottom:345.346667pt;}
.yee{bottom:348.066667pt;}
.y2f{bottom:348.194667pt;}
.y18c{bottom:350.786667pt;}
.y3f{bottom:355.554667pt;}
.y87{bottom:357.186667pt;}
.yc5{bottom:358.146667pt;}
.y14d{bottom:360.066667pt;}
.y128{bottom:360.706667pt;}
.yed{bottom:361.186667pt;}
.y2e{bottom:361.794667pt;}
.y18b{bottom:365.346667pt;}
.y3e{bottom:370.914667pt;}
.y86{bottom:372.546667pt;}
.yc4{bottom:373.506667pt;}
.y14c{bottom:375.426667pt;}
.y127{bottom:376.066667pt;}
.yec{bottom:377.186667pt;}
.y2d{bottom:377.474667pt;}
.y18a{bottom:379.906667pt;}
.y3d{bottom:386.274667pt;}
.y85{bottom:387.906667pt;}
.yc3{bottom:388.866667pt;}
.y14b{bottom:390.786667pt;}
.y126{bottom:391.426667pt;}
.y2c{bottom:392.834667pt;}
.yeb{bottom:393.186667pt;}
.y189{bottom:394.466667pt;}
.y3c{bottom:401.634667pt;}
.y84{bottom:403.266667pt;}
.yc2{bottom:404.226667pt;}
.y14a{bottom:406.146667pt;}
.y125{bottom:406.786667pt;}
.y2b{bottom:408.194667pt;}
.y188{bottom:409.026667pt;}
.yea{bottom:412.066667pt;}
.y3b{bottom:416.834667pt;}
.y83{bottom:418.626667pt;}
.yc1{bottom:419.426667pt;}
.y149{bottom:421.346667pt;}
.y124{bottom:422.146667pt;}
.y187{bottom:423.586667pt;}
.y2a{bottom:424.034667pt;}
.ye9{bottom:427.426667pt;}
.y3a{bottom:432.194667pt;}
.y82{bottom:433.826667pt;}
.yc0{bottom:434.786667pt;}
.y148{bottom:436.706667pt;}
.y123{bottom:437.346667pt;}
.y186{bottom:438.146667pt;}
.y29{bottom:439.421333pt;}
.ye8{bottom:442.786667pt;}
.y39{bottom:447.581333pt;}
.y81{bottom:449.186667pt;}
.ybf{bottom:450.146667pt;}
.y147{bottom:452.066667pt;}
.y122{bottom:452.706667pt;}
.y28{bottom:454.941333pt;}
.ye7{bottom:455.906667pt;}
.y38{bottom:462.941333pt;}
.y80{bottom:464.546667pt;}
.ybe{bottom:465.506667pt;}
.y185{bottom:467.266667pt;}
.y146{bottom:467.426667pt;}
.y121{bottom:468.066667pt;}
.y27{bottom:470.461333pt;}
.ye6{bottom:471.906667pt;}
.y37{bottom:478.301333pt;}
.y7f{bottom:479.906667pt;}
.ybd{bottom:480.866667pt;}
.y184{bottom:481.826667pt;}
.y145{bottom:482.786667pt;}
.y120{bottom:483.426667pt;}
.y26{bottom:485.821333pt;}
.ye5{bottom:487.906667pt;}
.y36{bottom:493.661333pt;}
.y7e{bottom:495.266667pt;}
.ybc{bottom:496.226667pt;}
.y183{bottom:496.386667pt;}
.y144{bottom:497.986667pt;}
.y11f{bottom:498.786667pt;}
.y25{bottom:501.341333pt;}
.ye4{bottom:506.786667pt;}
.y35{bottom:508.861333pt;}
.y7d{bottom:510.626667pt;}
.y182{bottom:510.946667pt;}
.ybb{bottom:511.426667pt;}
.y143{bottom:513.346667pt;}
.y11e{bottom:513.986667pt;}
.y24{bottom:516.701333pt;}
.ye3{bottom:521.986667pt;}
.y34{bottom:524.221333pt;}
.y181{bottom:525.506667pt;}
.y7c{bottom:525.826667pt;}
.yba{bottom:526.786667pt;}
.y142{bottom:528.706667pt;}
.y11d{bottom:529.346667pt;}
.y23{bottom:532.221333pt;}
.ye2{bottom:537.373333pt;}
.y33{bottom:539.581333pt;}
.y180{bottom:540.093333pt;}
.y7b{bottom:541.213333pt;}
.yb9{bottom:542.173333pt;}
.y141{bottom:544.093333pt;}
.y11c{bottom:544.733333pt;}
.y22{bottom:547.901333pt;}
.ye1{bottom:550.493333pt;}
.y17f{bottom:554.653333pt;}
.y32{bottom:554.941333pt;}
.y7a{bottom:556.573333pt;}
.yb8{bottom:557.533333pt;}
.y11b{bottom:557.853333pt;}
.y140{bottom:559.453333pt;}
.ye0{bottom:566.493333pt;}
.y17e{bottom:569.213333pt;}
.y31{bottom:570.301333pt;}
.y79{bottom:571.933333pt;}
.y21{bottom:572.221333pt;}
.yb7{bottom:572.893333pt;}
.y11a{bottom:573.853333pt;}
.y13f{bottom:574.813333pt;}
.ydf{bottom:582.493333pt;}
.y17d{bottom:583.773333pt;}
.y30{bottom:585.661333pt;}
.y78{bottom:587.293333pt;}
.y20{bottom:587.901333pt;}
.yb6{bottom:588.093333pt;}
.y119{bottom:589.853333pt;}
.y13e{bottom:590.013333pt;}
.y17c{bottom:598.333333pt;}
.yde{bottom:601.373333pt;}
.y77{bottom:602.653333pt;}
.yb5{bottom:603.453333pt;}
.y13d{bottom:605.373333pt;}
.y118{bottom:605.853333pt;}
.y17b{bottom:612.893333pt;}
.ydd{bottom:616.733333pt;}
.y76{bottom:617.853333pt;}
.yb4{bottom:618.813333pt;}
.y13c{bottom:620.733333pt;}
.y117{bottom:624.733333pt;}
.y17a{bottom:627.453333pt;}
.ydc{bottom:632.093333pt;}
.y75{bottom:633.213333pt;}
.yb3{bottom:634.173333pt;}
.y13b{bottom:636.093333pt;}
.y116{bottom:640.093333pt;}
.y179{bottom:642.013333pt;}
.ydb{bottom:645.213333pt;}
.y74{bottom:648.573333pt;}
.yb2{bottom:649.533333pt;}
.y13a{bottom:651.453333pt;}
.y115{bottom:655.453333pt;}
.y178{bottom:656.573333pt;}
.yda{bottom:661.213333pt;}
.y73{bottom:663.933333pt;}
.yb1{bottom:665.853333pt;}
.y139{bottom:666.813333pt;}
.y114{bottom:668.573333pt;}
.y177{bottom:671.133333pt;}
.yd9{bottom:677.213333pt;}
.y72{bottom:679.293333pt;}
.yb0{bottom:682.013333pt;}
.y113{bottom:684.573333pt;}
.y176{bottom:685.693333pt;}
.yd8{bottom:693.213333pt;}
.y71{bottom:694.493333pt;}
.yaf{bottom:697.373333pt;}
.y1c{bottom:698.653333pt;}
.y175{bottom:700.253333pt;}
.y112{bottom:700.573333pt;}
.yd7{bottom:709.213333pt;}
.y70{bottom:709.853333pt;}
.yae{bottom:712.733333pt;}
.y174{bottom:714.813333pt;}
.yf{bottom:725.053333pt;}
.y6f{bottom:725.213333pt;}
.yad{bottom:728.093333pt;}
.y173{bottom:729.373333pt;}
.y111{bottom:734.813333pt;}
.y6e{bottom:740.573333pt;}
.yac{bottom:743.453333pt;}
.y172{bottom:743.933333pt;}
.y110{bottom:750.013333pt;}
.y6d{bottom:755.933333pt;}
.yab{bottom:758.653333pt;}
.y10f{bottom:765.373333pt;}
.y6c{bottom:771.293333pt;}
.y171{bottom:773.213333pt;}
.yaa{bottom:774.053333pt;}
.y10e{bottom:778.533333pt;}
.y6b{bottom:786.533333pt;}
.y170{bottom:787.813333pt;}
.ya9{bottom:789.413333pt;}
.y10d{bottom:794.533333pt;}
.y6a{bottom:801.893333pt;}
.y16f{bottom:802.373333pt;}
.ya8{bottom:804.773333pt;}
.y10c{bottom:813.413333pt;}
.y16e{bottom:816.933333pt;}
.y69{bottom:817.253333pt;}
.ya7{bottom:820.133333pt;}
.y10b{bottom:828.773333pt;}
.y16d{bottom:831.493333pt;}
.y68{bottom:832.613333pt;}
.ya6{bottom:835.493333pt;}
.y10a{bottom:844.133333pt;}
.y16c{bottom:846.053333pt;}
.y67{bottom:847.973333pt;}
.ya5{bottom:850.693333pt;}
.y109{bottom:857.253333pt;}
.y16b{bottom:860.613333pt;}
.y66{bottom:863.333333pt;}
.ya4{bottom:866.053333pt;}
.y108{bottom:873.253333pt;}
.y16a{bottom:875.173333pt;}
.y65{bottom:878.533333pt;}
.ya3{bottom:881.413333pt;}
.y107{bottom:889.253333pt;}
.y169{bottom:889.733333pt;}
.y64{bottom:893.893333pt;}
.ya2{bottom:896.773333pt;}
.y168{bottom:904.293333pt;}
.y106{bottom:905.253333pt;}
.y63{bottom:909.253333pt;}
.ya1{bottom:912.133333pt;}
.y167{bottom:918.853333pt;}
.y105{bottom:924.133333pt;}
.y62{bottom:924.613333pt;}
.ya0{bottom:927.493333pt;}
.yd{bottom:931.973333pt;}
.y166{bottom:933.413333pt;}
.y104{bottom:939.493333pt;}
.y61{bottom:939.973333pt;}
.y9f{bottom:942.693333pt;}
.y165{bottom:947.973333pt;}
.y5b{bottom:952.453333pt;}
.y6{bottom:954.533333pt;}
.y103{bottom:954.693333pt;}
.y9e{bottom:958.053333pt;}
.y164{bottom:962.533333pt;}
.y102{bottom:967.813333pt;}
.y9d{bottom:973.413333pt;}
.y163{bottom:977.093333pt;}
.y101{bottom:983.813333pt;}
.y9c{bottom:988.773333pt;}
.y162{bottom:991.653333pt;}
.y100{bottom:999.813333pt;}
.y57{bottom:1001.253333pt;}
.y9b{bottom:1004.133333pt;}
.y161{bottom:1006.213333pt;}
.yff{bottom:1015.840000pt;}
.y9a{bottom:1019.520000pt;}
.y160{bottom:1020.800000pt;}
.y99{bottom:1034.720000pt;}
.y15f{bottom:1035.360000pt;}
.y98{bottom:1050.080000pt;}
.h21{height:15.200000pt;}
.h20{height:15.360000pt;}
.h22{height:15.392000pt;}
.hb{height:22.240000pt;}
.h11{height:25.750000pt;}
.h13{height:26.400000pt;}
.h2{height:29.472000pt;}
.h23{height:30.560000pt;}
.h8{height:32.160000pt;}
.h1a{height:34.505000pt;}
.h1f{height:37.479688pt;}
.h19{height:37.583438pt;}
.h12{height:38.625000pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h24{height:45.326250pt;}
.h1b{height:47.621250pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h1d{height:48.800000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h1c{height:61.312000pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:206.906667pt;}
.h15{height:597.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w30{width:55.360000pt;}
.w3{width:66.560000pt;}
.wd{width:74.080000pt;}
.w19{width:76.640000pt;}
.w34{width:78.272000pt;}
.w2c{width:79.520000pt;}
.w1c{width:80.160000pt;}
.w28{width:85.120000pt;}
.w11{width:89.600000pt;}
.w20{width:95.040000pt;}
.w24{width:96.320000pt;}
.w35{width:103.840000pt;}
.w15{width:108.320000pt;}
.w21{width:110.432000pt;}
.w5{width:135.066667pt;}
.w18{width:135.546667pt;}
.w33{width:138.906667pt;}
.w12{width:140.986667pt;}
.w1b{width:141.946667pt;}
.w2d{width:149.626667pt;}
.w17{width:156.506667pt;}
.w10{width:158.426667pt;}
.w32{width:160.026667pt;}
.wa{width:163.706667pt;}
.w29{width:167.386667pt;}
.w1f{width:168.026667pt;}
.w25{width:175.226667pt;}
.w31{width:179.706667pt;}
.wf{width:182.586667pt;}
.w27{width:189.146667pt;}
.w14{width:191.546667pt;}
.w1e{width:193.786667pt;}
.w2b{width:196.506667pt;}
.w8{width:198.466667pt;}
.wc{width:201.946667pt;}
.w1d{width:204.866667pt;}
.w26{width:212.226667pt;}
.w23{width:214.426667pt;}
.w2a{width:218.146667pt;}
.w13{width:220.866667pt;}
.wb{width:221.986667pt;}
.w2f{width:222.106667pt;}
.we{width:230.946667pt;}
.w2e{width:234.626667pt;}
.w22{width:240.546667pt;}
.w1a{width:275.746667pt;}
.w16{width:293.026667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.720000pt;}
.x2{left:7.680000pt;}
.x12{left:11.200000pt;}
.xe{left:28.672000pt;}
.xc{left:46.432000pt;}
.xd{left:62.432000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x13{left:96.031988pt;}
.x1f{left:150.426655pt;}
.x32{left:176.186667pt;}
.x10{left:191.266667pt;}
.x19{left:197.146655pt;}
.x2e{left:198.746655pt;}
.x6{left:199.866667pt;}
.x14{left:200.826655pt;}
.x3e{left:205.786655pt;}
.x20{left:206.746667pt;}
.x36{left:207.706655pt;}
.x3d{left:208.826655pt;}
.x2d{left:214.586655pt;}
.x29{left:217.626655pt;}
.x41{left:221.146655pt;}
.x1e{left:223.386655pt;}
.x3a{left:226.906655pt;}
.x15{left:229.466667pt;}
.x23{left:232.186655pt;}
.x3b{left:233.146667pt;}
.x31{left:236.826655pt;}
.x18{left:237.946655pt;}
.x37{left:240.986667pt;}
.x42{left:245.626667pt;}
.x24{left:250.786655pt;}
.x3c{left:253.026655pt;}
.x35{left:254.786655pt;}
.x9{left:256.386667pt;}
.x11{left:263.266667pt;}
.x28{left:270.466655pt;}
.xf{left:291.906667pt;}
.x1a{left:296.706667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x2a{left:341.506667pt;}
.x25{left:358.786667pt;}
.xa{left:405.066667pt;}
.x43{left:406.306667pt;}
.x33{left:417.373333pt;}
.x21{left:428.253333pt;}
.x3f{left:450.653333pt;}
.x16{left:452.093333pt;}
.x38{left:453.853333pt;}
.x2f{left:465.053333pt;}
.x1b{left:480.093333pt;}
.x2b{left:505.853333pt;}
.x26{left:515.933333pt;}
.x44{left:546.013333pt;}
.x22{left:620.453333pt;}
.x45{left:624.933333pt;}
.x34{left:632.453333pt;}
.x30{left:633.733333pt;}
.x1d{left:639.173333pt;}
.x39{left:643.653333pt;}
.x2c{left:648.613333pt;}
.x27{left:652.133333pt;}
.x17{left:654.693333pt;}
.x3{left:663.013333pt;}
.x40{left:673.413333pt;}
}




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