
    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_151c35ffb0a595d78f441eca.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d1fca3e54fa8ab67a2ccb90c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_25d2d68ad92ecf267bd5ed36.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_5299274da4557abd8290ac9e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5f47deb207993537f9262cb6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3884fb4e79f06190437b0567.woff')format("woff");}.ff8{font-family:ff8;line-height:0.754395;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_675a40ec019136aafcd1ae04.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_34b85c123f5560cca69074fa.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_05933ac9f9727faa365812ad.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_17be3201ad17c534acff6990.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_57fadc1f8b19303c82eaaabb.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4b0eb9478324d51a4bf95237.woff')format("woff");}.fff{font-family:fff;line-height:0.960449;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;}
.lsc{letter-spacing:-1.800000px;}
.lsd{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.080640px;}
.ls2{letter-spacing:0.132600px;}
.lse{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.540000px;}
.lsf{letter-spacing:33.984000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.140000px;}
.ws0{word-spacing:-12.186000px;}
.wsb{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._11{margin-left:-7.351920px;}
._4{margin-left:-5.600880px;}
._c{margin-left:-4.167840px;}
._3{margin-left:-3.054240px;}
._1{margin-left:-1.242000px;}
._0{width:1.107120px;}
._2{width:2.442000px;}
._6{width:3.698640px;}
._7{width:4.825920px;}
._5{width:6.048720px;}
._9{width:7.111440px;}
._8{width:8.545680px;}
._d{width:9.608400px;}
._b{width:10.995840px;}
._a{width:12.219360px;}
._10{width:13.804560px;}
._f{width:16.254720px;}
._e{width:17.569440px;}
._14{width:18.789840px;}
._17{width:20.440800px;}
._12{width:21.767280px;}
._13{width:23.005680px;}
._1b{width:24.089760px;}
._1a{width:25.964160px;}
._19{width:27.071280px;}
._18{width:28.213200px;}
._15{width:291.582000px;}
._16{width:1984.740000px;}
.fc8{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc9{color:rgb(32,32,32);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs8{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fsb{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y123{bottom:-308.910000px;}
.yd8{bottom:-295.095000px;}
.y122{bottom:-290.730000px;}
.yd7{bottom:-277.059000px;}
.y121{bottom:-260.850000px;}
.yd6{bottom:-247.179000px;}
.y120{bottom:-242.670000px;}
.yd5{bottom:-228.999000px;}
.y11f{bottom:-212.970000px;}
.yd4{bottom:-199.125000px;}
.y11e{bottom:-194.790000px;}
.yd3{bottom:-181.125000px;}
.y11d{bottom:-164.910000px;}
.yd2{bottom:-151.245000px;}
.y11c{bottom:-146.910000px;}
.yd1{bottom:-133.065000px;}
.y11b{bottom:-117.030000px;}
.yd0{bottom:-103.365000px;}
.y11a{bottom:-98.850000px;}
.ycf{bottom:-85.185000px;}
.y119{bottom:-69.120000px;}
.yce{bottom:-55.305000px;}
.y118{bottom:-50.940000px;}
.ycd{bottom:-37.125000px;}
.y117{bottom:-21.060000px;}
.ydd{bottom:-14.040000px;}
.y126{bottom:-13.500000px;}
.y129{bottom:-13.320000px;}
.ycc{bottom:-7.380000px;}
.yda{bottom:-4.860000px;}
.y116{bottom:-2.880000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:0.900000px;}
.y125{bottom:1.440000px;}
.y128{bottom:1.620000px;}
.y5e{bottom:3.240000px;}
.y60{bottom:3.780000px;}
.ye{bottom:4.500000px;}
.y19{bottom:6.120000px;}
.ycb{bottom:10.800000px;}
.y3e{bottom:13.185000px;}
.yc{bottom:13.860000px;}
.y1b{bottom:14.760000px;}
.y10c{bottom:15.114000px;}
.y106{bottom:15.120000px;}
.y104{bottom:15.165000px;}
.y101{bottom:15.300000px;}
.ybf{bottom:16.914000px;}
.yc1{bottom:16.920000px;}
.ye4{bottom:17.100000px;}
.y3{bottom:18.180000px;}
.y5d{bottom:20.565000px;}
.y18{bottom:24.840000px;}
.y5{bottom:26.280000px;}
.y115{bottom:26.820000px;}
.y3d{bottom:27.765000px;}
.yb{bottom:30.240000px;}
.y4{bottom:36.756000px;}
.y5c{bottom:37.665000px;}
.y2{bottom:38.016000px;}
.yca{bottom:40.680000px;}
.y17{bottom:41.400000px;}
.y3c{bottom:42.345000px;}
.y100{bottom:44.460000px;}
.y114{bottom:45.000000px;}
.ya{bottom:46.650000px;}
.y1{bottom:48.780000px;}
.y5b{bottom:54.945000px;}
.y3b{bottom:57.105000px;}
.y16{bottom:57.780000px;}
.yc9{bottom:58.860000px;}
.y15{bottom:70.200000px;}
.y3a{bottom:71.685000px;}
.y5a{bottom:72.225000px;}
.y9{bottom:73.470000px;}
.y113{bottom:74.880000px;}
.y14{bottom:85.680000px;}
.y39{bottom:86.265000px;}
.yc8{bottom:88.560000px;}
.y59{bottom:89.505000px;}
.y112{bottom:93.060000px;}
.y8{bottom:93.090000px;}
.y38{bottom:101.025000px;}
.y13{bottom:106.560000px;}
.yc7{bottom:106.740000px;}
.y58{bottom:106.785000px;}
.y10d{bottom:110.016000px;}
.y7{bottom:111.450000px;}
.yc0{bottom:115.416000px;}
.y37{bottom:115.605000px;}
.y12{bottom:120.240000px;}
.y111{bottom:120.600000px;}
.y146{bottom:121.716000px;}
.y57{bottom:124.065000px;}
.y172{bottom:124.596000px;}
.y6a{bottom:125.316000px;}
.y36{bottom:130.365000px;}
.ya4{bottom:134.316000px;}
.y110{bottom:135.540000px;}
.yc6{bottom:136.620000px;}
.y145{bottom:138.996000px;}
.y10b{bottom:140.796000px;}
.y56{bottom:141.165000px;}
.y171{bottom:141.876000px;}
.y69{bottom:142.596000px;}
.y35{bottom:144.945000px;}
.y11{bottom:145.980000px;}
.ybe{bottom:147.816000px;}
.ya3{bottom:151.590000px;}
.yc5{bottom:154.800000px;}
.y55{bottom:158.445000px;}
.y170{bottom:158.970000px;}
.y34{bottom:159.525000px;}
.y68{bottom:159.870000px;}
.y194{bottom:160.590000px;}
.y144{bottom:163.110000px;}
.y10{bottom:167.400000px;}
.ya2{bottom:168.870000px;}
.y10a{bottom:171.390000px;}
.y33{bottom:174.285000px;}
.y54{bottom:175.725000px;}
.y193{bottom:177.870000px;}
.yc4{bottom:182.340000px;}
.ybd{bottom:183.450000px;}
.ya1{bottom:185.970000px;}
.y16f{bottom:188.310000px;}
.y32{bottom:188.865000px;}
.y67{bottom:189.030000px;}
.y53{bottom:193.005000px;}
.y192{bottom:194.970000px;}
.yc3{bottom:197.280000px;}
.y1b4{bottom:198.030000px;}
.y109{bottom:202.170000px;}
.y31{bottom:203.445000px;}
.y16e{bottom:205.590000px;}
.y66{bottom:206.310000px;}
.ybc{bottom:209.370000px;}
.y52{bottom:210.285000px;}
.y191{bottom:212.250000px;}
.ya0{bottom:215.310000px;}
.y1b3{bottom:215.670000px;}
.y30{bottom:218.205000px;}
.y65{bottom:223.590000px;}
.ybb{bottom:226.650000px;}
.y51{bottom:227.565000px;}
.y190{bottom:229.530000px;}
.y9f{bottom:232.590000px;}
.y2f{bottom:232.785000px;}
.y108{bottom:232.950000px;}
.y16d{bottom:234.750000px;}
.y64{bottom:240.870000px;}
.yba{bottom:243.930000px;}
.y50{bottom:244.665000px;}
.y18f{bottom:246.810000px;}
.y2e{bottom:247.545000px;}
.y9e{bottom:249.870000px;}
.y16c{bottom:252.030000px;}
.y1b2{bottom:252.930000px;}
.y63{bottom:258.150000px;}
.yb9{bottom:261.210000px;}
.y4f{bottom:261.945000px;}
.y2d{bottom:262.125000px;}
.y107{bottom:263.730000px;}
.y18e{bottom:264.090000px;}
.y16b{bottom:269.310000px;}
.y1b1{bottom:270.390000px;}
.y62{bottom:275.430000px;}
.y2c{bottom:276.705000px;}
.yb8{bottom:278.490000px;}
.y9d{bottom:279.030000px;}
.y4e{bottom:279.225000px;}
.y16a{bottom:286.590000px;}
.y1b0{bottom:290.370000px;}
.y2b{bottom:291.495000px;}
.y61{bottom:292.530000px;}
.y18d{bottom:293.250000px;}
.y105{bottom:294.510000px;}
.yb7{bottom:295.590000px;}
.y9c{bottom:296.310000px;}
.y4d{bottom:296.535000px;}
.y2a{bottom:306.075000px;}
.y5f{bottom:306.570000px;}
.y1af{bottom:307.650000px;}
.y18c{bottom:310.530000px;}
.yb6{bottom:312.870000px;}
.y9b{bottom:313.590000px;}
.y4c{bottom:313.815000px;}
.y169{bottom:315.750000px;}
.y29{bottom:320.655000px;}
.y1c{bottom:324.030000px;}
.y103{bottom:325.290000px;}
.yb5{bottom:326.910000px;}
.y1ae{bottom:327.630000px;}
.y18b{bottom:327.810000px;}
.y9a{bottom:330.870000px;}
.y4b{bottom:331.095000px;}
.y168{bottom:333.030000px;}
.y28{bottom:337.935000px;}
.ye0{bottom:338.835000px;}
.y1ad{bottom:344.955000px;}
.y18a{bottom:345.135000px;}
.y99{bottom:348.015000px;}
.y4a{bottom:348.195000px;}
.y167{bottom:350.355000px;}
.yc2{bottom:353.235000px;}
.y27{bottom:355.215000px;}
.y102{bottom:355.935000px;}
.y189{bottom:362.415000px;}
.y1ac{bottom:364.935000px;}
.y98{bottom:365.295000px;}
.y49{bottom:365.475000px;}
.y166{bottom:367.635000px;}
.y26{bottom:372.495000px;}
.y97{bottom:382.575000px;}
.y48{bottom:382.755000px;}
.y1ab{bottom:385.095000px;}
.yff{bottom:386.715000px;}
.y25{bottom:389.595000px;}
.y188{bottom:391.575000px;}
.ydf{bottom:395.175000px;}
.y165{bottom:396.795000px;}
.y96{bottom:399.855000px;}
.y47{bottom:400.035000px;}
.y1aa{bottom:405.075000px;}
.y24{bottom:407.415000px;}
.y187{bottom:408.855000px;}
.y164{bottom:414.075000px;}
.y95{bottom:417.135000px;}
.y46{bottom:417.315000px;}
.y23{bottom:424.875000px;}
.y1a9{bottom:425.055000px;}
.y163{bottom:431.355000px;}
.y45{bottom:434.415000px;}
.yde{bottom:437.295000px;}
.y186{bottom:438.015000px;}
.y22{bottom:442.335000px;}
.y1a8{bottom:445.035000px;}
.y94{bottom:446.295000px;}
.y162{bottom:448.635000px;}
.yfe{bottom:450.075000px;}
.y44{bottom:451.695000px;}
.y185{bottom:455.295000px;}
.y21{bottom:459.615000px;}
.y1a7{bottom:462.495000px;}
.y93{bottom:463.575000px;}
.y43{bottom:468.975000px;}
.y184{bottom:472.575000px;}
.y20{bottom:477.255000px;}
.y161{bottom:477.795000px;}
.yfd{bottom:479.235000px;}
.ydb{bottom:479.415000px;}
.y92{bottom:480.855000px;}
.y1a6{bottom:482.475000px;}
.y42{bottom:486.255000px;}
.y183{bottom:489.855000px;}
.y160{bottom:495.075000px;}
.y1f{bottom:495.615000px;}
.yfc{bottom:496.515000px;}
.y1a5{bottom:499.755000px;}
.y41{bottom:503.535000px;}
.y182{bottom:507.135000px;}
.y91{bottom:510.015000px;}
.yfb{bottom:513.795000px;}
.y1a4{bottom:519.735000px;}
.y40{bottom:520.815000px;}
.y1e{bottom:522.975000px;}
.y15f{bottom:524.235000px;}
.y143{bottom:525.675000px;}
.y90{bottom:527.295000px;}
.yfa{bottom:530.895000px;}
.y181{bottom:536.295000px;}
.y1a3{bottom:537.015000px;}
.y3f{bottom:537.915000px;}
.y1d{bottom:540.615000px;}
.y15e{bottom:541.515000px;}
.y142{bottom:542.955000px;}
.y8f{bottom:544.575000px;}
.yf9{bottom:548.175000px;}
.yd9{bottom:549.975000px;}
.y180{bottom:553.575000px;}
.y1a2{bottom:556.995000px;}
.y141{bottom:560.055000px;}
.y8e{bottom:561.855000px;}
.y15d{bottom:570.855000px;}
.yf8{bottom:574.095000px;}
.y1a1{bottom:574.275000px;}
.y140{bottom:577.335000px;}
.y8d{bottom:579.135000px;}
.y15c{bottom:588.135000px;}
.y1a0{bottom:594.255000px;}
.y13f{bottom:594.615000px;}
.y8c{bottom:596.235000px;}
.yf7{bottom:600.015000px;}
.y15b{bottom:605.265000px;}
.yb4{bottom:609.225000px;}
.y19f{bottom:611.745000px;}
.y13e{bottom:611.925000px;}
.y8b{bottom:613.545000px;}
.y15a{bottom:622.545000px;}
.yf6{bottom:625.785000px;}
.yb3{bottom:626.505000px;}
.y13d{bottom:629.205000px;}
.y8a{bottom:630.825000px;}
.y19e{bottom:631.725000px;}
.y17f{bottom:639.825000px;}
.yb2{bottom:643.785000px;}
.y13c{bottom:646.485000px;}
.y89{bottom:648.105000px;}
.y19d{bottom:649.005000px;}
.y159{bottom:651.885000px;}
.yf5{bottom:654.225000px;}
.yb1{bottom:660.885000px;}
.y13b{bottom:663.585000px;}
.y17e{bottom:668.985000px;}
.y158{bottom:669.165000px;}
.y88{bottom:677.265000px;}
.yb0{bottom:678.165000px;}
.y13a{bottom:680.865000px;}
.y10f{bottom:681.765000px;}
.yf4{bottom:685.185000px;}
.y157{bottom:686.265000px;}
.y87{bottom:694.545000px;}
.yaf{bottom:695.445000px;}
.y139{bottom:698.145000px;}
.y19c{bottom:706.245000px;}
.y86{bottom:711.825000px;}
.yae{bottom:712.725000px;}
.y156{bottom:715.605000px;}
.yf3{bottom:716.325000px;}
.y12e{bottom:717.225000px;}
.y12c{bottom:721.725000px;}
.y138{bottom:722.445000px;}
.y19b{bottom:723.525000px;}
.y12d{bottom:724.605000px;}
.y85{bottom:729.105000px;}
.y155{bottom:732.885000px;}
.yad{bottom:738.645000px;}
.y19a{bottom:743.505000px;}
.y12b{bottom:744.045000px;}
.y84{bottom:746.385000px;}
.yf2{bottom:747.285000px;}
.y199{bottom:760.785000px;}
.y154{bottom:762.045000px;}
.yac{bottom:762.765000px;}
.y83{bottom:763.665000px;}
.y12a{bottom:769.425000px;}
.yf1{bottom:778.425000px;}
.y153{bottom:779.325000px;}
.y82{bottom:780.765000px;}
.y17d{bottom:796.605000px;}
.y81{bottom:798.045000px;}
.y152{bottom:808.485000px;}
.yf0{bottom:809.385000px;}
.y17c{bottom:813.885000px;}
.y80{bottom:815.325000px;}
.y124{bottom:820.185000px;}
.y127{bottom:824.505000px;}
.y151{bottom:825.765000px;}
.y10e{bottom:827.205000px;}
.y17b{bottom:830.985000px;}
.y7f{bottom:832.605000px;}
.yef{bottom:840.525000px;}
.y7e{bottom:849.885000px;}
.y150{bottom:855.105000px;}
.y17a{bottom:860.325000px;}
.y7d{bottom:866.985000px;}
.yee{bottom:871.530000px;}
.y14f{bottom:872.430000px;}
.y1a{bottom:876.030000px;}
.y179{bottom:877.650000px;}
.y7c{bottom:884.310000px;}
.y14e{bottom:889.530000px;}
.y178{bottom:894.930000px;}
.y198{bottom:901.590000px;}
.yed{bottom:903.570000px;}
.yf{bottom:905.010000px;}
.y14d{bottom:906.810000px;}
.y177{bottom:912.030000px;}
.y7b{bottom:913.650000px;}
.y197{bottom:918.870000px;}
.yec{bottom:920.850000px;}
.y14c{bottom:924.090000px;}
.y176{bottom:929.310000px;}
.y7a{bottom:930.930000px;}
.y196{bottom:936.150000px;}
.yeb{bottom:938.130000px;}
.y14b{bottom:941.370000px;}
.y79{bottom:948.030000px;}
.y195{bottom:953.430000px;}
.yea{bottom:955.230000px;}
.y175{bottom:958.650000px;}
.y78{bottom:965.310000px;}
.y14a{bottom:970.530000px;}
.ye9{bottom:972.510000px;}
.y174{bottom:975.930000px;}
.y77{bottom:982.590000px;}
.y149{bottom:987.810000px;}
.y76{bottom:999.870000px;}
.ye8{bottom:1002.570000px;}
.y173{bottom:1005.090000px;}
.y75{bottom:1017.150000px;}
.ye7{bottom:1020.750000px;}
.yab{bottom:1022.370000px;}
.y137{bottom:1031.010000px;}
.y74{bottom:1034.430000px;}
.yaa{bottom:1039.650000px;}
.y73{bottom:1051.530000px;}
.ye6{bottom:1053.150000px;}
.ya9{bottom:1056.930000px;}
.y136{bottom:1060.170000px;}
.y148{bottom:1068.810000px;}
.yd{bottom:1073.850000px;}
.ya8{bottom:1074.030000px;}
.y135{bottom:1077.450000px;}
.y72{bottom:1080.870000px;}
.ye5{bottom:1085.730000px;}
.y147{bottom:1086.090000px;}
.y6{bottom:1094.010000px;}
.y134{bottom:1094.730000px;}
.y71{bottom:1098.150000px;}
.ya7{bottom:1103.370000px;}
.y133{bottom:1112.010000px;}
.y70{bottom:1115.430000px;}
.ye3{bottom:1118.130000px;}
.ya6{bottom:1120.650000px;}
.y132{bottom:1129.290000px;}
.y6f{bottom:1132.530000px;}
.ya5{bottom:1137.960000px;}
.y131{bottom:1146.420000px;}
.y6e{bottom:1149.840000px;}
.ye2{bottom:1150.740000px;}
.y130{bottom:1163.700000px;}
.y6d{bottom:1167.120000px;}
.ye1{bottom:1183.140000px;}
.y6c{bottom:1184.400000px;}
.y12f{bottom:1201.500000px;}
.y6b{bottom:1201.680000px;}
.hd{height:4.241250px;}
.h23{height:12.780000px;}
.h2c{height:13.319850px;}
.h2e{height:13.320000px;}
.h2d{height:13.500000px;}
.h1d{height:17.460000px;}
.hb{height:19.800000px;}
.hf{height:22.266563px;}
.h11{height:28.968750px;}
.h13{height:28.980000px;}
.h29{height:29.160000px;}
.h28{height:29.196000px;}
.h27{height:29.340000px;}
.h20{height:30.960000px;}
.h24{height:30.996000px;}
.h25{height:31.140000px;}
.h2a{height:35.820000px;}
.h8{height:36.180000px;}
.h1a{height:36.462656px;}
.h22{height:37.705078px;}
.h12{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h19{height:42.281367px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h2f{height:48.027656px;}
.h4{height:48.088125px;}
.h10{height:49.394180px;}
.h1e{height:50.273438px;}
.h1f{height:50.800781px;}
.h2{height:52.416000px;}
.h30{height:52.417969px;}
.h9{height:54.000000px;}
.h31{height:56.900391px;}
.h26{height:58.500000px;}
.h17{height:61.189805px;}
.he{height:62.028281px;}
.h3{height:64.875938px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.h2b{height:147.420000px;}
.hc{height:168.840000px;}
.h21{height:209.160000px;}
.h15{height:551.985000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:20.880000px;}
.w18{width:21.060000px;}
.w11{width:30.600000px;}
.wf{width:36.180000px;}
.w3{width:74.880000px;}
.w15{width:102.060000px;}
.w16{width:108.036000px;}
.w14{width:111.456000px;}
.w5{width:143.856000px;}
.w10{width:158.250000px;}
.w9{width:197.130000px;}
.wc{width:205.590000px;}
.wd{width:205.950000px;}
.we{width:208.290000px;}
.w17{width:230.610000px;}
.w13{width:271.110000px;}
.w12{width:328.170000px;}
.wa{width:493.305000px;}
.wb{width:555.225000px;}
.w6{width:595.905000px;}
.w2{width:673.530000px;}
.w8{width:690.450000px;}
.w7{width:739.770000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.380000px;}
.x2{left:8.640000px;}
.x1f{left:14.220000px;}
.x2b{left:23.220000px;}
.xd{left:34.416000px;}
.x20{left:37.260000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x37{left:108.035987px;}
.x1a{left:135.216000px;}
.x26{left:147.996000px;}
.xf{left:151.770000px;}
.x12{left:156.630000px;}
.x10{left:177.150000px;}
.x2c{left:178.770000px;}
.x25{left:183.629987px;}
.x13{left:188.130000px;}
.x11{left:192.630000px;}
.x19{left:209.369987px;}
.x6{left:216.750000px;}
.x30{left:223.230000px;}
.x1e{left:228.990000px;}
.xe{left:247.035000px;}
.x17{left:252.749987px;}
.x14{left:270.030000px;}
.x36{left:273.809987px;}
.x2d{left:277.995000px;}
.x9{left:288.975000px;}
.x24{left:298.334987px;}
.x21{left:302.475000px;}
.x34{left:319.034987px;}
.x2a{left:337.575000px;}
.x1c{left:342.255000px;}
.xc{left:345.135000px;}
.x7{left:348.735000px;}
.x8{left:367.995000px;}
.x31{left:387.255000px;}
.x27{left:420.555000px;}
.xb{left:432.975000px;}
.x2f{left:441.975000px;}
.x18{left:446.474987px;}
.xa{left:456.240000px;}
.x22{left:496.545000px;}
.x28{left:533.445000px;}
.x1d{left:549.645000px;}
.x23{left:596.445000px;}
.x2e{left:605.985000px;}
.x29{left:636.945000px;}
.x15{left:645.764987px;}
.x32{left:660.750000px;}
.x16{left:674.429987px;}
.x35{left:687.209987px;}
.x33{left:690.989987px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-1.600000pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.071680pt;}
.ls2{letter-spacing:0.117867pt;}
.lse{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.480000pt;}
.lsf{letter-spacing:30.208000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws0{word-spacing:-10.832000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._11{margin-left:-6.535040pt;}
._4{margin-left:-4.978560pt;}
._c{margin-left:-3.704747pt;}
._3{margin-left:-2.714880pt;}
._1{margin-left:-1.104000pt;}
._0{width:0.984107pt;}
._2{width:2.170667pt;}
._6{width:3.287680pt;}
._7{width:4.289707pt;}
._5{width:5.376640pt;}
._9{width:6.321280pt;}
._8{width:7.596160pt;}
._d{width:8.540800pt;}
._b{width:9.774080pt;}
._a{width:10.861653pt;}
._10{width:12.270720pt;}
._f{width:14.448640pt;}
._e{width:15.617280pt;}
._14{width:16.702080pt;}
._17{width:18.169600pt;}
._12{width:19.348693pt;}
._13{width:20.449493pt;}
._1b{width:21.413120pt;}
._1a{width:23.079253pt;}
._19{width:24.063360pt;}
._18{width:25.078400pt;}
._15{width:259.184000pt;}
._16{width:1764.213333pt;}
.fs6{font-size:5.120000pt;}
.fs8{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fsb{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y123{bottom:-274.586667pt;}
.yd8{bottom:-262.306667pt;}
.y122{bottom:-258.426667pt;}
.yd7{bottom:-246.274667pt;}
.y121{bottom:-231.866667pt;}
.yd6{bottom:-219.714667pt;}
.y120{bottom:-215.706667pt;}
.yd5{bottom:-203.554667pt;}
.y11f{bottom:-189.306667pt;}
.yd4{bottom:-177.000000pt;}
.y11e{bottom:-173.146667pt;}
.yd3{bottom:-161.000000pt;}
.y11d{bottom:-146.586667pt;}
.yd2{bottom:-134.440000pt;}
.y11c{bottom:-130.586667pt;}
.yd1{bottom:-118.280000pt;}
.y11b{bottom:-104.026667pt;}
.yd0{bottom:-91.880000pt;}
.y11a{bottom:-87.866667pt;}
.ycf{bottom:-75.720000pt;}
.y119{bottom:-61.440000pt;}
.yce{bottom:-49.160000pt;}
.y118{bottom:-45.280000pt;}
.ycd{bottom:-33.000000pt;}
.y117{bottom:-18.720000pt;}
.ydd{bottom:-12.480000pt;}
.y126{bottom:-12.000000pt;}
.y129{bottom:-11.840000pt;}
.ycc{bottom:-6.560000pt;}
.yda{bottom:-4.320000pt;}
.y116{bottom:-2.560000pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:0.800000pt;}
.y125{bottom:1.280000pt;}
.y128{bottom:1.440000pt;}
.y5e{bottom:2.880000pt;}
.y60{bottom:3.360000pt;}
.ye{bottom:4.000000pt;}
.y19{bottom:5.440000pt;}
.ycb{bottom:9.600000pt;}
.y3e{bottom:11.720000pt;}
.yc{bottom:12.320000pt;}
.y1b{bottom:13.120000pt;}
.y10c{bottom:13.434667pt;}
.y106{bottom:13.440000pt;}
.y104{bottom:13.480000pt;}
.y101{bottom:13.600000pt;}
.ybf{bottom:15.034667pt;}
.yc1{bottom:15.040000pt;}
.ye4{bottom:15.200000pt;}
.y3{bottom:16.160000pt;}
.y5d{bottom:18.280000pt;}
.y18{bottom:22.080000pt;}
.y5{bottom:23.360000pt;}
.y115{bottom:23.840000pt;}
.y3d{bottom:24.680000pt;}
.yb{bottom:26.880000pt;}
.y4{bottom:32.672000pt;}
.y5c{bottom:33.480000pt;}
.y2{bottom:33.792000pt;}
.yca{bottom:36.160000pt;}
.y17{bottom:36.800000pt;}
.y3c{bottom:37.640000pt;}
.y100{bottom:39.520000pt;}
.y114{bottom:40.000000pt;}
.ya{bottom:41.466667pt;}
.y1{bottom:43.360000pt;}
.y5b{bottom:48.840000pt;}
.y3b{bottom:50.760000pt;}
.y16{bottom:51.360000pt;}
.yc9{bottom:52.320000pt;}
.y15{bottom:62.400000pt;}
.y3a{bottom:63.720000pt;}
.y5a{bottom:64.200000pt;}
.y9{bottom:65.306667pt;}
.y113{bottom:66.560000pt;}
.y14{bottom:76.160000pt;}
.y39{bottom:76.680000pt;}
.yc8{bottom:78.720000pt;}
.y59{bottom:79.560000pt;}
.y112{bottom:82.720000pt;}
.y8{bottom:82.746667pt;}
.y38{bottom:89.800000pt;}
.y13{bottom:94.720000pt;}
.yc7{bottom:94.880000pt;}
.y58{bottom:94.920000pt;}
.y10d{bottom:97.792000pt;}
.y7{bottom:99.066667pt;}
.yc0{bottom:102.592000pt;}
.y37{bottom:102.760000pt;}
.y12{bottom:106.880000pt;}
.y111{bottom:107.200000pt;}
.y146{bottom:108.192000pt;}
.y57{bottom:110.280000pt;}
.y172{bottom:110.752000pt;}
.y6a{bottom:111.392000pt;}
.y36{bottom:115.880000pt;}
.ya4{bottom:119.392000pt;}
.y110{bottom:120.480000pt;}
.yc6{bottom:121.440000pt;}
.y145{bottom:123.552000pt;}
.y10b{bottom:125.152000pt;}
.y56{bottom:125.480000pt;}
.y171{bottom:126.112000pt;}
.y69{bottom:126.752000pt;}
.y35{bottom:128.840000pt;}
.y11{bottom:129.760000pt;}
.ybe{bottom:131.392000pt;}
.ya3{bottom:134.746667pt;}
.yc5{bottom:137.600000pt;}
.y55{bottom:140.840000pt;}
.y170{bottom:141.306667pt;}
.y34{bottom:141.800000pt;}
.y68{bottom:142.106667pt;}
.y194{bottom:142.746667pt;}
.y144{bottom:144.986667pt;}
.y10{bottom:148.800000pt;}
.ya2{bottom:150.106667pt;}
.y10a{bottom:152.346667pt;}
.y33{bottom:154.920000pt;}
.y54{bottom:156.200000pt;}
.y193{bottom:158.106667pt;}
.yc4{bottom:162.080000pt;}
.ybd{bottom:163.066667pt;}
.ya1{bottom:165.306667pt;}
.y16f{bottom:167.386667pt;}
.y32{bottom:167.880000pt;}
.y67{bottom:168.026667pt;}
.y53{bottom:171.560000pt;}
.y192{bottom:173.306667pt;}
.yc3{bottom:175.360000pt;}
.y1b4{bottom:176.026667pt;}
.y109{bottom:179.706667pt;}
.y31{bottom:180.840000pt;}
.y16e{bottom:182.746667pt;}
.y66{bottom:183.386667pt;}
.ybc{bottom:186.106667pt;}
.y52{bottom:186.920000pt;}
.y191{bottom:188.666667pt;}
.ya0{bottom:191.386667pt;}
.y1b3{bottom:191.706667pt;}
.y30{bottom:193.960000pt;}
.y65{bottom:198.746667pt;}
.ybb{bottom:201.466667pt;}
.y51{bottom:202.280000pt;}
.y190{bottom:204.026667pt;}
.y9f{bottom:206.746667pt;}
.y2f{bottom:206.920000pt;}
.y108{bottom:207.066667pt;}
.y16d{bottom:208.666667pt;}
.y64{bottom:214.106667pt;}
.yba{bottom:216.826667pt;}
.y50{bottom:217.480000pt;}
.y18f{bottom:219.386667pt;}
.y2e{bottom:220.040000pt;}
.y9e{bottom:222.106667pt;}
.y16c{bottom:224.026667pt;}
.y1b2{bottom:224.826667pt;}
.y63{bottom:229.466667pt;}
.yb9{bottom:232.186667pt;}
.y4f{bottom:232.840000pt;}
.y2d{bottom:233.000000pt;}
.y107{bottom:234.426667pt;}
.y18e{bottom:234.746667pt;}
.y16b{bottom:239.386667pt;}
.y1b1{bottom:240.346667pt;}
.y62{bottom:244.826667pt;}
.y2c{bottom:245.960000pt;}
.yb8{bottom:247.546667pt;}
.y9d{bottom:248.026667pt;}
.y4e{bottom:248.200000pt;}
.y16a{bottom:254.746667pt;}
.y1b0{bottom:258.106667pt;}
.y2b{bottom:259.106667pt;}
.y61{bottom:260.026667pt;}
.y18d{bottom:260.666667pt;}
.y105{bottom:261.786667pt;}
.yb7{bottom:262.746667pt;}
.y9c{bottom:263.386667pt;}
.y4d{bottom:263.586667pt;}
.y2a{bottom:272.066667pt;}
.y5f{bottom:272.506667pt;}
.y1af{bottom:273.466667pt;}
.y18c{bottom:276.026667pt;}
.yb6{bottom:278.106667pt;}
.y9b{bottom:278.746667pt;}
.y4c{bottom:278.946667pt;}
.y169{bottom:280.666667pt;}
.y29{bottom:285.026667pt;}
.y1c{bottom:288.026667pt;}
.y103{bottom:289.146667pt;}
.yb5{bottom:290.586667pt;}
.y1ae{bottom:291.226667pt;}
.y18b{bottom:291.386667pt;}
.y9a{bottom:294.106667pt;}
.y4b{bottom:294.306667pt;}
.y168{bottom:296.026667pt;}
.y28{bottom:300.386667pt;}
.ye0{bottom:301.186667pt;}
.y1ad{bottom:306.626667pt;}
.y18a{bottom:306.786667pt;}
.y99{bottom:309.346667pt;}
.y4a{bottom:309.506667pt;}
.y167{bottom:311.426667pt;}
.yc2{bottom:313.986667pt;}
.y27{bottom:315.746667pt;}
.y102{bottom:316.386667pt;}
.y189{bottom:322.146667pt;}
.y1ac{bottom:324.386667pt;}
.y98{bottom:324.706667pt;}
.y49{bottom:324.866667pt;}
.y166{bottom:326.786667pt;}
.y26{bottom:331.106667pt;}
.y97{bottom:340.066667pt;}
.y48{bottom:340.226667pt;}
.y1ab{bottom:342.306667pt;}
.yff{bottom:343.746667pt;}
.y25{bottom:346.306667pt;}
.y188{bottom:348.066667pt;}
.ydf{bottom:351.266667pt;}
.y165{bottom:352.706667pt;}
.y96{bottom:355.426667pt;}
.y47{bottom:355.586667pt;}
.y1aa{bottom:360.066667pt;}
.y24{bottom:362.146667pt;}
.y187{bottom:363.426667pt;}
.y164{bottom:368.066667pt;}
.y95{bottom:370.786667pt;}
.y46{bottom:370.946667pt;}
.y23{bottom:377.666667pt;}
.y1a9{bottom:377.826667pt;}
.y163{bottom:383.426667pt;}
.y45{bottom:386.146667pt;}
.yde{bottom:388.706667pt;}
.y186{bottom:389.346667pt;}
.y22{bottom:393.186667pt;}
.y1a8{bottom:395.586667pt;}
.y94{bottom:396.706667pt;}
.y162{bottom:398.786667pt;}
.yfe{bottom:400.066667pt;}
.y44{bottom:401.506667pt;}
.y185{bottom:404.706667pt;}
.y21{bottom:408.546667pt;}
.y1a7{bottom:411.106667pt;}
.y93{bottom:412.066667pt;}
.y43{bottom:416.866667pt;}
.y184{bottom:420.066667pt;}
.y20{bottom:424.226667pt;}
.y161{bottom:424.706667pt;}
.yfd{bottom:425.986667pt;}
.ydb{bottom:426.146667pt;}
.y92{bottom:427.426667pt;}
.y1a6{bottom:428.866667pt;}
.y42{bottom:432.226667pt;}
.y183{bottom:435.426667pt;}
.y160{bottom:440.066667pt;}
.y1f{bottom:440.546667pt;}
.yfc{bottom:441.346667pt;}
.y1a5{bottom:444.226667pt;}
.y41{bottom:447.586667pt;}
.y182{bottom:450.786667pt;}
.y91{bottom:453.346667pt;}
.yfb{bottom:456.706667pt;}
.y1a4{bottom:461.986667pt;}
.y40{bottom:462.946667pt;}
.y1e{bottom:464.866667pt;}
.y15f{bottom:465.986667pt;}
.y143{bottom:467.266667pt;}
.y90{bottom:468.706667pt;}
.yfa{bottom:471.906667pt;}
.y181{bottom:476.706667pt;}
.y1a3{bottom:477.346667pt;}
.y3f{bottom:478.146667pt;}
.y1d{bottom:480.546667pt;}
.y15e{bottom:481.346667pt;}
.y142{bottom:482.626667pt;}
.y8f{bottom:484.066667pt;}
.yf9{bottom:487.266667pt;}
.yd9{bottom:488.866667pt;}
.y180{bottom:492.066667pt;}
.y1a2{bottom:495.106667pt;}
.y141{bottom:497.826667pt;}
.y8e{bottom:499.426667pt;}
.y15d{bottom:507.426667pt;}
.yf8{bottom:510.306667pt;}
.y1a1{bottom:510.466667pt;}
.y140{bottom:513.186667pt;}
.y8d{bottom:514.786667pt;}
.y15c{bottom:522.786667pt;}
.y1a0{bottom:528.226667pt;}
.y13f{bottom:528.546667pt;}
.y8c{bottom:529.986667pt;}
.yf7{bottom:533.346667pt;}
.y15b{bottom:538.013333pt;}
.yb4{bottom:541.533333pt;}
.y19f{bottom:543.773333pt;}
.y13e{bottom:543.933333pt;}
.y8b{bottom:545.373333pt;}
.y15a{bottom:553.373333pt;}
.yf6{bottom:556.253333pt;}
.yb3{bottom:556.893333pt;}
.y13d{bottom:559.293333pt;}
.y8a{bottom:560.733333pt;}
.y19e{bottom:561.533333pt;}
.y17f{bottom:568.733333pt;}
.yb2{bottom:572.253333pt;}
.y13c{bottom:574.653333pt;}
.y89{bottom:576.093333pt;}
.y19d{bottom:576.893333pt;}
.y159{bottom:579.453333pt;}
.yf5{bottom:581.533333pt;}
.yb1{bottom:587.453333pt;}
.y13b{bottom:589.853333pt;}
.y17e{bottom:594.653333pt;}
.y158{bottom:594.813333pt;}
.y88{bottom:602.013333pt;}
.yb0{bottom:602.813333pt;}
.y13a{bottom:605.213333pt;}
.y10f{bottom:606.013333pt;}
.yf4{bottom:609.053333pt;}
.y157{bottom:610.013333pt;}
.y87{bottom:617.373333pt;}
.yaf{bottom:618.173333pt;}
.y139{bottom:620.573333pt;}
.y19c{bottom:627.773333pt;}
.y86{bottom:632.733333pt;}
.yae{bottom:633.533333pt;}
.y156{bottom:636.093333pt;}
.yf3{bottom:636.733333pt;}
.y12e{bottom:637.533333pt;}
.y12c{bottom:641.533333pt;}
.y138{bottom:642.173333pt;}
.y19b{bottom:643.133333pt;}
.y12d{bottom:644.093333pt;}
.y85{bottom:648.093333pt;}
.y155{bottom:651.453333pt;}
.yad{bottom:656.573333pt;}
.y19a{bottom:660.893333pt;}
.y12b{bottom:661.373333pt;}
.y84{bottom:663.453333pt;}
.yf2{bottom:664.253333pt;}
.y199{bottom:676.253333pt;}
.y154{bottom:677.373333pt;}
.yac{bottom:678.013333pt;}
.y83{bottom:678.813333pt;}
.y12a{bottom:683.933333pt;}
.yf1{bottom:691.933333pt;}
.y153{bottom:692.733333pt;}
.y82{bottom:694.013333pt;}
.y17d{bottom:708.093333pt;}
.y81{bottom:709.373333pt;}
.y152{bottom:718.653333pt;}
.yf0{bottom:719.453333pt;}
.y17c{bottom:723.453333pt;}
.y80{bottom:724.733333pt;}
.y124{bottom:729.053333pt;}
.y127{bottom:732.893333pt;}
.y151{bottom:734.013333pt;}
.y10e{bottom:735.293333pt;}
.y17b{bottom:738.653333pt;}
.y7f{bottom:740.093333pt;}
.yef{bottom:747.133333pt;}
.y7e{bottom:755.453333pt;}
.y150{bottom:760.093333pt;}
.y17a{bottom:764.733333pt;}
.y7d{bottom:770.653333pt;}
.yee{bottom:774.693333pt;}
.y14f{bottom:775.493333pt;}
.y1a{bottom:778.693333pt;}
.y179{bottom:780.133333pt;}
.y7c{bottom:786.053333pt;}
.y14e{bottom:790.693333pt;}
.y178{bottom:795.493333pt;}
.y198{bottom:801.413333pt;}
.yed{bottom:803.173333pt;}
.yf{bottom:804.453333pt;}
.y14d{bottom:806.053333pt;}
.y177{bottom:810.693333pt;}
.y7b{bottom:812.133333pt;}
.y197{bottom:816.773333pt;}
.yec{bottom:818.533333pt;}
.y14c{bottom:821.413333pt;}
.y176{bottom:826.053333pt;}
.y7a{bottom:827.493333pt;}
.y196{bottom:832.133333pt;}
.yeb{bottom:833.893333pt;}
.y14b{bottom:836.773333pt;}
.y79{bottom:842.693333pt;}
.y195{bottom:847.493333pt;}
.yea{bottom:849.093333pt;}
.y175{bottom:852.133333pt;}
.y78{bottom:858.053333pt;}
.y14a{bottom:862.693333pt;}
.ye9{bottom:864.453333pt;}
.y174{bottom:867.493333pt;}
.y77{bottom:873.413333pt;}
.y149{bottom:878.053333pt;}
.y76{bottom:888.773333pt;}
.ye8{bottom:891.173333pt;}
.y173{bottom:893.413333pt;}
.y75{bottom:904.133333pt;}
.ye7{bottom:907.333333pt;}
.yab{bottom:908.773333pt;}
.y137{bottom:916.453333pt;}
.y74{bottom:919.493333pt;}
.yaa{bottom:924.133333pt;}
.y73{bottom:934.693333pt;}
.ye6{bottom:936.133333pt;}
.ya9{bottom:939.493333pt;}
.y136{bottom:942.373333pt;}
.y148{bottom:950.053333pt;}
.yd{bottom:954.533333pt;}
.ya8{bottom:954.693333pt;}
.y135{bottom:957.733333pt;}
.y72{bottom:960.773333pt;}
.ye5{bottom:965.093333pt;}
.y147{bottom:965.413333pt;}
.y6{bottom:972.453333pt;}
.y134{bottom:973.093333pt;}
.y71{bottom:976.133333pt;}
.ya7{bottom:980.773333pt;}
.y133{bottom:988.453333pt;}
.y70{bottom:991.493333pt;}
.ye3{bottom:993.893333pt;}
.ya6{bottom:996.133333pt;}
.y132{bottom:1003.813333pt;}
.y6f{bottom:1006.693333pt;}
.ya5{bottom:1011.520000pt;}
.y131{bottom:1019.040000pt;}
.y6e{bottom:1022.080000pt;}
.ye2{bottom:1022.880000pt;}
.y130{bottom:1034.400000pt;}
.y6d{bottom:1037.440000pt;}
.ye1{bottom:1051.680000pt;}
.y6c{bottom:1052.800000pt;}
.y12f{bottom:1068.000000pt;}
.y6b{bottom:1068.160000pt;}
.hd{height:3.770000pt;}
.h23{height:11.360000pt;}
.h2c{height:11.839867pt;}
.h2e{height:11.840000pt;}
.h2d{height:12.000000pt;}
.h1d{height:15.520000pt;}
.hb{height:17.600000pt;}
.hf{height:19.792500pt;}
.h11{height:25.750000pt;}
.h13{height:25.760000pt;}
.h29{height:25.920000pt;}
.h28{height:25.952000pt;}
.h27{height:26.080000pt;}
.h20{height:27.520000pt;}
.h24{height:27.552000pt;}
.h25{height:27.680000pt;}
.h2a{height:31.840000pt;}
.h8{height:32.160000pt;}
.h1a{height:32.411250pt;}
.h22{height:33.515625pt;}
.h12{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h19{height:37.583438pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h2f{height:42.691250pt;}
.h4{height:42.745000pt;}
.h10{height:43.905937pt;}
.h1e{height:44.687500pt;}
.h1f{height:45.156250pt;}
.h2{height:46.592000pt;}
.h30{height:46.593750pt;}
.h9{height:48.000000pt;}
.h31{height:50.578125pt;}
.h26{height:52.000000pt;}
.h17{height:54.390938pt;}
.he{height:55.136250pt;}
.h3{height:57.667500pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.h2b{height:131.040000pt;}
.hc{height:150.080000pt;}
.h21{height:185.920000pt;}
.h15{height:490.653333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:18.560000pt;}
.w18{width:18.720000pt;}
.w11{width:27.200000pt;}
.wf{width:32.160000pt;}
.w3{width:66.560000pt;}
.w15{width:90.720000pt;}
.w16{width:96.032000pt;}
.w14{width:99.072000pt;}
.w5{width:127.872000pt;}
.w10{width:140.666667pt;}
.w9{width:175.226667pt;}
.wc{width:182.746667pt;}
.wd{width:183.066667pt;}
.we{width:185.146667pt;}
.w17{width:204.986667pt;}
.w13{width:240.986667pt;}
.w12{width:291.706667pt;}
.wa{width:438.493333pt;}
.wb{width:493.533333pt;}
.w6{width:529.693333pt;}
.w2{width:598.693333pt;}
.w8{width:613.733333pt;}
.w7{width:657.573333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.560000pt;}
.x2{left:7.680000pt;}
.x1f{left:12.640000pt;}
.x2b{left:20.640000pt;}
.xd{left:30.592000pt;}
.x20{left:33.120000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x37{left:96.031988pt;}
.x1a{left:120.192000pt;}
.x26{left:131.552000pt;}
.xf{left:134.906667pt;}
.x12{left:139.226667pt;}
.x10{left:157.466667pt;}
.x2c{left:158.906667pt;}
.x25{left:163.226655pt;}
.x13{left:167.226667pt;}
.x11{left:171.226667pt;}
.x19{left:186.106655pt;}
.x6{left:192.666667pt;}
.x30{left:198.426667pt;}
.x1e{left:203.546667pt;}
.xe{left:219.586667pt;}
.x17{left:224.666655pt;}
.x14{left:240.026667pt;}
.x36{left:243.386655pt;}
.x2d{left:247.106667pt;}
.x9{left:256.866667pt;}
.x24{left:265.186655pt;}
.x21{left:268.866667pt;}
.x34{left:283.586655pt;}
.x2a{left:300.066667pt;}
.x1c{left:304.226667pt;}
.xc{left:306.786667pt;}
.x7{left:309.986667pt;}
.x8{left:327.106667pt;}
.x31{left:344.226667pt;}
.x27{left:373.826667pt;}
.xb{left:384.866667pt;}
.x2f{left:392.866667pt;}
.x18{left:396.866655pt;}
.xa{left:405.546667pt;}
.x22{left:441.373333pt;}
.x28{left:474.173333pt;}
.x1d{left:488.573333pt;}
.x23{left:530.173333pt;}
.x2e{left:538.653333pt;}
.x29{left:566.173333pt;}
.x15{left:574.013322pt;}
.x32{left:587.333333pt;}
.x16{left:599.493322pt;}
.x35{left:610.853322pt;}
.x33{left:614.213322pt;}
.x3{left:663.013333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  