
    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_bbb6292a585345bbd605bcde.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.035156;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_8d3f80b92932f58be55bb41b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_75048a3b81a6c2aee032fea1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.204000;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_88edf8c160b0a0f30e4a3660.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.072000;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_4800c52105653ebe4cd3636e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060000;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_24541551e416c2c03c206442.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_2b58fd02a2fd770b00e7ec07.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e79092c0f64200337db38459.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_11f4f2b1485ba6a25f91fd55.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_705ea67c7f96529682eeb85d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.076000;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a27e0b1cc1437ee7f78ac858.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937500;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_8395621c3657e326027d1f0d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.130371;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_517fdad107d1a0d7ed2fd244.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.850586;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_a5caa9214dd4e0b70d8b278c.woff2')format("woff");}.fff{font-family:fff;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6351d03a631905be3352d3f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.076000;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);}
.v1{vertical-align:-50.544000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-3.318000px;}
.ls2{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.294000px;}
.ls11{letter-spacing:-0.249000px;}
.lsb{letter-spacing:-0.177600px;}
.ls15{letter-spacing:-0.087000px;}
.lsa{letter-spacing:-0.083400px;}
.ls10{letter-spacing:-0.036720px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.060600px;}
.ls5{letter-spacing:0.121800px;}
.ls4{letter-spacing:0.132480px;}
.ls1{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.294000px;}
.ls13{letter-spacing:0.302400px;}
.ls16{letter-spacing:1.020000px;}
.ls14{letter-spacing:1.089216px;}
.ls8{letter-spacing:10.365120px;}
.ls17{letter-spacing:105.249600px;}
.ls18{letter-spacing:105.300000px;}
.ls3{letter-spacing:115.884000px;}
.lse{letter-spacing:119.985600px;}
.lsd{letter-spacing:120.036000px;}
.lsf{letter-spacing:124.320000px;}
.ls12{letter-spacing:3806.992800px;}
.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;}
}
.ws11{word-spacing:-231.873600px;}
.ws20{word-spacing:-162.144000px;}
.ws23{word-spacing:-162.000000px;}
.ws10{word-spacing:-120.203280px;}
.ws17{word-spacing:-84.240000px;}
.wse{word-spacing:-62.923392px;}
.ws18{word-spacing:-51.442272px;}
.ws12{word-spacing:-51.408000px;}
.wsc{word-spacing:-51.328080px;}
.ws0{word-spacing:-48.816000px;}
.wsf{word-spacing:-45.753120px;}
.wsb{word-spacing:-40.754880px;}
.ws5{word-spacing:-37.440000px;}
.ws1f{word-spacing:-34.374528px;}
.ws22{word-spacing:-34.344000px;}
.wsa{word-spacing:-33.707520px;}
.ws1d{word-spacing:-28.667520px;}
.ws7{word-spacing:-27.963648px;}
.ws15{word-spacing:-26.812800px;}
.ws2{word-spacing:-25.992000px;}
.ws6{word-spacing:-25.751520px;}
.ws3{word-spacing:-25.738272px;}
.wsd{word-spacing:-25.490880px;}
.ws19{word-spacing:-25.200000px;}
.ws1e{word-spacing:-24.354480px;}
.ws1a{word-spacing:-23.636880px;}
.ws14{word-spacing:-23.587200px;}
.ws16{word-spacing:-23.374368px;}
.ws13{word-spacing:-23.334480px;}
.ws1c{word-spacing:-23.247480px;}
.ws1b{word-spacing:-21.772800px;}
.ws8{word-spacing:-0.095760px;}
.ws9{word-spacing:-0.084240px;}
.ws4{word-spacing:0.000000px;}
.ws1{word-spacing:0.432000px;}
.ws25{word-spacing:7.321824px;}
.ws21{word-spacing:7.503264px;}
.ws24{word-spacing:7.578000px;}
._18{margin-left:-1750.507200px;}
._17{margin-left:-1531.387200px;}
._b{margin-left:-735.577920px;}
._14{margin-left:-21.238224px;}
._12{margin-left:-17.811696px;}
._1{margin-left:-16.643088px;}
._16{margin-left:-15.232992px;}
._2{margin-left:-14.049360px;}
._10{margin-left:-12.571824px;}
._c{margin-left:-11.313936px;}
._3{margin-left:-9.942624px;}
._d{margin-left:-8.787504px;}
._e{margin-left:-6.851520px;}
._5{margin-left:-5.403600px;}
._4{margin-left:-3.674448px;}
._6{margin-left:-2.376000px;}
._0{margin-left:-1.296864px;}
._8{width:1.152864px;}
._7{width:2.160000px;}
._a{width:3.168000px;}
._13{width:5.490576px;}
._f{width:6.507168px;}
._11{width:7.676208px;}
._15{width:10.295952px;}
._9{width:3701.062080px;}
.fce{color:rgb(111,235,160);}
.fcd{color:rgb(182,223,94);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(0,176,240);}
.fc6{color:rgb(72,185,255);}
.fcf{color:rgb(0,198,187);}
.fcb{color:rgb(0,112,192);}
.fc2{color:rgb(0,183,241);}
.fca{color:rgb(38,38,38);}
.fc4{color:rgb(237,81,92);}
.fc0{color:rgb(255,255,255);}
.fc9{color:rgb(216,22,36);}
.fc7{color:rgb(56,198,254);}
.fc5{color:rgb(0,32,96);}
.fc8{color:transparent;}
.fc10{color:rgb(239,117,95);}
.fcc{color:rgb(239,178,81);}
.fs1a{font-size:77.760000px;}
.fs10{font-size:84.240000px;}
.fs18{font-size:84.384000px;}
.fs17{font-size:90.000000px;}
.fs19{font-size:90.144000px;}
.fsa{font-size:95.760000px;}
.fs14{font-size:102.240000px;}
.fs15{font-size:102.384000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs13{font-size:113.760000px;}
.fs9{font-size:120.240000px;}
.fs6{font-size:120.384000px;}
.fsc{font-size:131.760000px;}
.fsb{font-size:131.904000px;}
.fs2{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs1c{font-size:162.000000px;}
.fs1b{font-size:162.144000px;}
.fs5{font-size:167.760000px;}
.fsd{font-size:192.240000px;}
.fse{font-size:192.384000px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:216.144000px;}
.fsf{font-size:239.760000px;}
.fs12{font-size:239.904000px;}
.fs11{font-size:264.240000px;}
.fs7{font-size:264.384000px;}
.fs16{font-size:828.120000px;}
.y0{bottom:0.000000px;}
.y22{bottom:1.695000px;}
.y55{bottom:1.725000px;}
.y53{bottom:1.905000px;}
.y49{bottom:35.892000px;}
.y7{bottom:38.052000px;}
.y8{bottom:50.688000px;}
.y39{bottom:74.088000px;}
.ya9{bottom:82.368000px;}
.y1f{bottom:86.796000px;}
.yec{bottom:91.908000px;}
.y81{bottom:102.204000px;}
.yd9{bottom:103.032000px;}
.y38{bottom:106.488000px;}
.ya8{bottom:107.568000px;}
.yfe{bottom:114.408000px;}
.yeb{bottom:117.108000px;}
.y5{bottom:123.336000px;}
.y80{bottom:127.404000px;}
.yd8{bottom:128.232000px;}
.y35{bottom:129.060000px;}
.ya7{bottom:132.768000px;}
.y37{bottom:138.924000px;}
.y11{bottom:145.836000px;}
.y1e{bottom:150.015000px;}
.yea{bottom:151.305000px;}
.y7f{bottom:152.610000px;}
.yd7{bottom:153.435000px;}
.ye0{bottom:159.660000px;}
.y34{bottom:162.750000px;}
.ya6{bottom:166.965000px;}
.y36{bottom:170.610000px;}
.y2f{bottom:175.500000px;}
.ye9{bottom:176.505000px;}
.y73{bottom:177.810000px;}
.yfd{bottom:181.770000px;}
.ydf{bottom:184.860000px;}
.y6b{bottom:185.295000px;}
.y5f{bottom:186.735000px;}
.y7e{bottom:186.840000px;}
.yd6{bottom:187.635000px;}
.y10{bottom:188.670000px;}
.ya5{bottom:192.165000px;}
.y9c{bottom:195.810000px;}
.y33{bottom:196.410000px;}
.ye8{bottom:201.705000px;}
.y72{bottom:203.010000px;}
.y94{bottom:203.295000px;}
.y6{bottom:203.370000px;}
.yf1{bottom:204.195000px;}
.y28{bottom:205.485000px;}
.yc4{bottom:210.060000px;}
.y6a{bottom:210.495000px;}
.y7d{bottom:212.040000px;}
.ybb{bottom:212.835000px;}
.y30{bottom:212.970000px;}
.ya4{bottom:217.365000px;}
.yde{bottom:219.060000px;}
.y9b{bottom:221.010000px;}
.y8b{bottom:224.175000px;}
.yca{bottom:226.950000px;}
.y71{bottom:228.210000px;}
.y93{bottom:228.495000px;}
.yd3{bottom:229.395000px;}
.y32{bottom:230.970000px;}
.yc3{bottom:235.260000px;}
.ye7{bottom:235.950000px;}
.yae{bottom:237.240000px;}
.yba{bottom:238.035000px;}
.y51{bottom:242.970000px;}
.ydd{bottom:244.260000px;}
.y7c{bottom:246.240000px;}
.yfc{bottom:249.090000px;}
.y8a{bottom:249.375000px;}
.ya3{bottom:251.610000px;}
.y4{bottom:251.670000px;}
.yc9{bottom:252.150000px;}
.y69{bottom:253.695000px;}
.yd2{bottom:254.625000px;}
.y9a{bottom:255.240000px;}
.ye6{bottom:261.150000px;}
.y27{bottom:262.365000px;}
.yad{bottom:262.440000px;}
.yf0{bottom:263.625000px;}
.yc2{bottom:269.460000px;}
.y70{bottom:271.440000px;}
.yb9{bottom:272.265000px;}
.y89{bottom:274.605000px;}
.ya2{bottom:276.810000px;}
.yf{bottom:278.535000px;}
.y1d{bottom:278.745000px;}
.y68{bottom:278.895000px;}
.y17{bottom:279.210000px;}
.y99{bottom:280.440000px;}
.yc8{bottom:286.350000px;}
.y92{bottom:287.895000px;}
.yd1{bottom:288.825000px;}
.yb2{bottom:290.805000px;}
.y78{bottom:293.010000px;}
.yc1{bottom:294.660000px;}
.y50{bottom:295.170000px;}
.ye5{bottom:295.350000px;}
.y6f{bottom:296.640000px;}
.yb8{bottom:297.465000px;}
.ya1{bottom:302.010000px;}
.y98{bottom:305.640000px;}
.y88{bottom:308.805000px;}
.y5e{bottom:311.010000px;}
.yc7{bottom:311.550000px;}
.y91{bottom:313.125000px;}
.y1c{bottom:314.385000px;}
.yfb{bottom:316.410000px;}
.y16{bottom:318.495000px;}
.ye4{bottom:320.550000px;}
.y2c{bottom:321.630000px;}
.y67{bottom:322.125000px;}
.yd0{bottom:323.025000px;}
.yb1{bottom:325.005000px;}
.ye{bottom:326.055000px;}
.y77{bottom:327.210000px;}
.yc0{bottom:328.890000px;}
.y24{bottom:330.015000px;}
.y56{bottom:330.090000px;}
.y7b{bottom:330.840000px;}
.yb7{bottom:331.665000px;}
.y87{bottom:334.005000px;}
.ya0{bottom:336.210000px;}
.y90{bottom:338.325000px;}
.y6e{bottom:339.840000px;}
.yc6{bottom:345.750000px;}
.y5d{bottom:347.010000px;}
.y66{bottom:347.325000px;}
.y4f{bottom:347.370000px;}
.ycf{bottom:348.225000px;}
.ybf{bottom:354.090000px;}
.y7a{bottom:356.040000px;}
.y3{bottom:356.475000px;}
.yb6{bottom:356.865000px;}
.y2b{bottom:357.630000px;}
.y15{bottom:358.095000px;}
.y26{bottom:358.530000px;}
.y86{bottom:359.205000px;}
.y40{bottom:360.075000px;}
.y76{bottom:361.410000px;}
.y6d{bottom:365.040000px;}
.y2e{bottom:369.465000px;}
.y65{bottom:372.525000px;}
.yd{bottom:373.605000px;}
.y46{bottom:379.875000px;}
.y4e{bottom:383.370000px;}
.yfa{bottom:383.760000px;}
.yce{bottom:386.925000px;}
.yef{bottom:387.285000px;}
.ydc{bottom:391.035000px;}
.y3f{bottom:392.475000px;}
.yf4{bottom:393.555000px;}
.y2a{bottom:393.630000px;}
.ye3{bottom:393.870000px;}
.y8e{bottom:394.050000px;}
.yac{bottom:396.900000px;}
.y5c{bottom:399.570000px;}
.y85{bottom:401.475000px;}
.y54{bottom:403.380000px;}
.y9f{bottom:405.075000px;}
.yb4{bottom:405.285000px;}
.y97{bottom:406.800000px;}
.ybe{bottom:407.625000px;}
.yd5{bottom:407.955000px;}
.y23{bottom:408.420000px;}
.ycd{bottom:408.525000px;}
.yc5{bottom:409.395000px;}
.y45{bottom:410.505000px;}
.yb0{bottom:413.715000px;}
.y2{bottom:414.795000px;}
.y14{bottom:414.975000px;}
.yee{bottom:416.085000px;}
.y8d{bottom:419.250000px;}
.ye2{bottom:421.410000px;}
.y84{bottom:421.635000px;}
.yf3{bottom:422.355000px;}
.yab{bottom:422.820000px;}
.y3e{bottom:424.875000px;}
.y75{bottom:425.805000px;}
.y96{bottom:428.400000px;}
.y9e{bottom:428.475000px;}
.y29{bottom:429.630000px;}
.ycc{bottom:430.125000px;}
.y79{bottom:431.610000px;}
.ybd{bottom:431.925000px;}
.yb3{bottom:433.050000px;}
.y5b{bottom:435.240000px;}
.y4d{bottom:435.600000px;}
.ydb{bottom:436.395000px;}
.y6c{bottom:436.650000px;}
.yd4{bottom:436.755000px;}
.yc{bottom:438.765000px;}
.y44{bottom:441.105000px;}
.y62{bottom:441.360000px;}
.y83{bottom:441.795000px;}
.y31{bottom:442.230000px;}
.yaf{bottom:442.515000px;}
.y8c{bottom:444.450000px;}
.yed{bottom:444.885000px;}
.y63{bottom:447.765000px;}
.yaa{bottom:448.740000px;}
.ye1{bottom:448.950000px;}
.y95{bottom:450.030000px;}
.y74{bottom:451.005000px;}
.yf2{bottom:451.155000px;}
.yf9{bottom:451.620000px;}
.ycb{bottom:451.725000px;}
.y9d{bottom:451.875000px;}
.y13{bottom:454.215000px;}
.ybc{bottom:456.225000px;}
.y3d{bottom:456.555000px;}
.yda{bottom:459.075000px;}
.y82{bottom:461.955000px;}
.y1b{bottom:471.525000px;}
.y4c{bottom:471.600000px;}
.y43{bottom:471.705000px;}
.y1{bottom:473.145000px;}
.y52{bottom:482.400000px;}
.yb{bottom:486.285000px;}
.y21{bottom:487.620000px;}
.y5a{bottom:487.800000px;}
.yf8{bottom:499.680000px;}
.y42{bottom:502.305000px;}
.y12{bottom:509.325000px;}
.y1a{bottom:510.045000px;}
.y4b{bottom:522.180000px;}
.y59{bottom:523.440000px;}
.y41{bottom:533.265000px;}
.ya{bottom:533.850000px;}
.y2d{bottom:552.450000px;}
.yf7{bottom:567.030000px;}
.y3c{bottom:601.305000px;}
.y58{bottom:613.365000px;}
.y19{bottom:617.835000px;}
.y48{bottom:630.930000px;}
.y25{bottom:634.395000px;}
.y3b{bottom:634.965000px;}
.y61{bottom:635.400000px;}
.y4a{bottom:642.165000px;}
.y9{bottom:642.675000px;}
.y8f{bottom:643.680000px;}
.y64{bottom:646.920000px;}
.yb5{bottom:647.175000px;}
.yf6{bottom:648.510000px;}
.yf5{bottom:664.200000px;}
.y3a{bottom:669.525000px;}
.y57{bottom:670.965000px;}
.y18{bottom:675.435000px;}
.y47{bottom:691.410000px;}
.y60{bottom:693.030000px;}
.y20{bottom:703.050000px;}
.h17{height:49.860000px;}
.h28{height:50.400000px;}
.h2f{height:58.320000px;}
.h2a{height:63.180000px;}
.h2c{height:63.288000px;}
.h14{height:63.961523px;}
.h2b{height:67.500000px;}
.h2e{height:67.608000px;}
.hc{height:71.820000px;}
.h13{height:72.708398px;}
.h31{height:76.680000px;}
.h32{height:76.788000px;}
.h30{height:81.000000px;}
.h4{height:87.264000px;}
.h5{height:87.380352px;}
.hb{height:90.180000px;}
.h15{height:90.288000px;}
.h20{height:91.121760px;}
.h21{height:95.492160px;}
.h22{height:95.626656px;}
.h1d{height:96.312240px;}
.h24{height:100.872000px;}
.h23{height:101.006496px;}
.hd{height:105.655104px;}
.ha{height:110.179688px;}
.h9{height:110.289867px;}
.h27{height:112.304160px;}
.h7{height:112.438656px;}
.he{height:123.063840px;}
.hf{height:123.198336px;}
.h26{height:134.375760px;}
.h3{height:134.496000px;}
.h6{height:135.550080px;}
.h34{height:151.308000px;}
.h33{height:151.442496px;}
.h1a{height:153.407520px;}
.h25{height:153.984240px;}
.h10{height:155.329920px;}
.h11{height:155.446272px;}
.h1b{height:174.528000px;}
.h2d{height:174.644352px;}
.h1c{height:179.552160px;}
.h12{height:182.044336px;}
.h16{height:183.178125px;}
.h1e{height:192.047760px;}
.h1f{height:192.163104px;}
.h8{height:210.978432px;}
.h18{height:213.505920px;}
.h19{height:213.622272px;}
.h2{height:221.167969px;}
.h1{height:221.315414px;}
.h29{height:621.090000px;}
.h0{height:810.000000px;}
.w2{width:451.260000px;}
.w4{width:567.900000px;}
.w5{width:604.080000px;}
.w3{width:799.020000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x36{left:60.839979px;}
.x27{left:78.479979px;}
.x13{left:84.635979px;}
.x2b{left:86.363979px;}
.x26{left:88.919979px;}
.x4c{left:91.187979px;}
.x8{left:95.399979px;}
.x2c{left:103.139979px;}
.x9{left:106.487979px;}
.x2d{left:109.799979px;}
.x1{left:112.427979px;}
.x21{left:115.055979px;}
.x29{left:117.179979px;}
.x12{left:118.619979px;}
.x30{left:123.299979px;}
.x5{left:131.327979px;}
.x4{left:132.407979px;}
.x1f{left:134.171979px;}
.x20{left:138.311979px;}
.xa{left:146.987979px;}
.x2e{left:150.329979px;}
.x31{left:163.829979px;}
.x11{left:169.740000px;}
.x2a{left:197.489979px;}
.x28{left:211.709979px;}
.x25{left:232.229979px;}
.x7{left:270.794979px;}
.x1e{left:286.454979px;}
.x2{left:351.509979px;}
.x32{left:364.604979px;}
.x37{left:377.669979px;}
.x38{left:385.409979px;}
.x44{left:411.149979px;}
.x45{left:418.889979px;}
.x4b{left:422.024979px;}
.x10{left:463.754979px;}
.x1d{left:507.704979px;}
.x1c{left:538.559979px;}
.x35{left:594.689979px;}
.x17{left:617.249979px;}
.x39{left:632.519979px;}
.x3a{left:640.154979px;}
.x18{left:651.134979px;}
.x16{left:656.894979px;}
.x15{left:663.914979px;}
.x3{left:695.339979px;}
.x43{left:696.419979px;}
.x19{left:721.694979px;}
.x46{left:734.249979px;}
.x47{left:741.929979px;}
.x1b{left:772.229979px;}
.x23{left:847.979979px;}
.x34{left:861.584979px;}
.x40{left:879.869979px;}
.x1a{left:889.049979px;}
.x3b{left:893.369979px;}
.x3c{left:918.329979px;}
.x22{left:926.204979px;}
.x24{left:998.204979px;}
.x42{left:1061.969979px;}
.x48{left:1114.709979px;}
.x49{left:1121.834979px;}
.x3d{left:1168.019979px;}
.x3e{left:1183.574979px;}
.xf{left:1247.729979px;}
.xd{left:1254.929979px;}
.xc{left:1270.409979px;}
.xe{left:1274.369979px;}
.x33{left:1361.774979px;}
.x4a{left:1363.754979px;}
.x41{left:1364.834979px;}
.x3f{left:1373.834979px;}
.x14{left:1377.074979px;}
.xb{left:1378.874979px;}
.x2f{left:1381.034979px;}
.x6{left:1388.954979px;}
@media print{
.v1{vertical-align:-44.928000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-2.949333pt;}
.ls2{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.261333pt;}
.ls11{letter-spacing:-0.221333pt;}
.lsb{letter-spacing:-0.157867pt;}
.ls15{letter-spacing:-0.077333pt;}
.lsa{letter-spacing:-0.074133pt;}
.ls10{letter-spacing:-0.032640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.053867pt;}
.ls5{letter-spacing:0.108267pt;}
.ls4{letter-spacing:0.117760pt;}
.ls1{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.261333pt;}
.ls13{letter-spacing:0.268800pt;}
.ls16{letter-spacing:0.906667pt;}
.ls14{letter-spacing:0.968192pt;}
.ls8{letter-spacing:9.213440pt;}
.ls17{letter-spacing:93.555200pt;}
.ls18{letter-spacing:93.600000pt;}
.ls3{letter-spacing:103.008000pt;}
.lse{letter-spacing:106.653867pt;}
.lsd{letter-spacing:106.698667pt;}
.lsf{letter-spacing:110.506667pt;}
.ls12{letter-spacing:3383.993600pt;}
.ws11{word-spacing:-206.109867pt;}
.ws20{word-spacing:-144.128000pt;}
.ws23{word-spacing:-144.000000pt;}
.ws10{word-spacing:-106.847360pt;}
.ws17{word-spacing:-74.880000pt;}
.wse{word-spacing:-55.931904pt;}
.ws18{word-spacing:-45.726464pt;}
.ws12{word-spacing:-45.696000pt;}
.wsc{word-spacing:-45.624960pt;}
.ws0{word-spacing:-43.392000pt;}
.wsf{word-spacing:-40.669440pt;}
.wsb{word-spacing:-36.226560pt;}
.ws5{word-spacing:-33.280000pt;}
.ws1f{word-spacing:-30.555136pt;}
.ws22{word-spacing:-30.528000pt;}
.wsa{word-spacing:-29.962240pt;}
.ws1d{word-spacing:-25.482240pt;}
.ws7{word-spacing:-24.856576pt;}
.ws15{word-spacing:-23.833600pt;}
.ws2{word-spacing:-23.104000pt;}
.ws6{word-spacing:-22.890240pt;}
.ws3{word-spacing:-22.878464pt;}
.wsd{word-spacing:-22.658560pt;}
.ws19{word-spacing:-22.400000pt;}
.ws1e{word-spacing:-21.648427pt;}
.ws1a{word-spacing:-21.010560pt;}
.ws14{word-spacing:-20.966400pt;}
.ws16{word-spacing:-20.777216pt;}
.ws13{word-spacing:-20.741760pt;}
.ws1c{word-spacing:-20.664427pt;}
.ws1b{word-spacing:-19.353600pt;}
.ws8{word-spacing:-0.085120pt;}
.ws9{word-spacing:-0.074880pt;}
.ws4{word-spacing:0.000000pt;}
.ws1{word-spacing:0.384000pt;}
.ws25{word-spacing:6.508288pt;}
.ws21{word-spacing:6.669568pt;}
.ws24{word-spacing:6.736000pt;}
._18{margin-left:-1556.006400pt;}
._17{margin-left:-1361.233067pt;}
._b{margin-left:-653.847040pt;}
._14{margin-left:-18.878421pt;}
._12{margin-left:-15.832619pt;}
._1{margin-left:-14.793856pt;}
._16{margin-left:-13.540437pt;}
._2{margin-left:-12.488320pt;}
._10{margin-left:-11.174955pt;}
._c{margin-left:-10.056832pt;}
._3{margin-left:-8.837888pt;}
._d{margin-left:-7.811115pt;}
._e{margin-left:-6.090240pt;}
._5{margin-left:-4.803200pt;}
._4{margin-left:-3.266176pt;}
._6{margin-left:-2.112000pt;}
._0{margin-left:-1.152768pt;}
._8{width:1.024768pt;}
._7{width:1.920000pt;}
._a{width:2.816000pt;}
._13{width:4.880512pt;}
._f{width:5.784149pt;}
._11{width:6.823296pt;}
._15{width:9.151957pt;}
._9{width:3289.832960pt;}
.fs1a{font-size:69.120000pt;}
.fs10{font-size:74.880000pt;}
.fs18{font-size:75.008000pt;}
.fs17{font-size:80.000000pt;}
.fs19{font-size:80.128000pt;}
.fsa{font-size:85.120000pt;}
.fs14{font-size:90.880000pt;}
.fs15{font-size:91.008000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs13{font-size:101.120000pt;}
.fs9{font-size:106.880000pt;}
.fs6{font-size:107.008000pt;}
.fsc{font-size:117.120000pt;}
.fsb{font-size:117.248000pt;}
.fs2{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs1c{font-size:144.000000pt;}
.fs1b{font-size:144.128000pt;}
.fs5{font-size:149.120000pt;}
.fsd{font-size:170.880000pt;}
.fse{font-size:171.008000pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:192.128000pt;}
.fsf{font-size:213.120000pt;}
.fs12{font-size:213.248000pt;}
.fs11{font-size:234.880000pt;}
.fs7{font-size:235.008000pt;}
.fs16{font-size:736.106667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:1.506667pt;}
.y55{bottom:1.533333pt;}
.y53{bottom:1.693333pt;}
.y49{bottom:31.904000pt;}
.y7{bottom:33.824000pt;}
.y8{bottom:45.056000pt;}
.y39{bottom:65.856000pt;}
.ya9{bottom:73.216000pt;}
.y1f{bottom:77.152000pt;}
.yec{bottom:81.696000pt;}
.y81{bottom:90.848000pt;}
.yd9{bottom:91.584000pt;}
.y38{bottom:94.656000pt;}
.ya8{bottom:95.616000pt;}
.yfe{bottom:101.696000pt;}
.yeb{bottom:104.096000pt;}
.y5{bottom:109.632000pt;}
.y80{bottom:113.248000pt;}
.yd8{bottom:113.984000pt;}
.y35{bottom:114.720000pt;}
.ya7{bottom:118.016000pt;}
.y37{bottom:123.488000pt;}
.y11{bottom:129.632000pt;}
.y1e{bottom:133.346667pt;}
.yea{bottom:134.493333pt;}
.y7f{bottom:135.653333pt;}
.yd7{bottom:136.386667pt;}
.ye0{bottom:141.920000pt;}
.y34{bottom:144.666667pt;}
.ya6{bottom:148.413333pt;}
.y36{bottom:151.653333pt;}
.y2f{bottom:156.000000pt;}
.ye9{bottom:156.893333pt;}
.y73{bottom:158.053333pt;}
.yfd{bottom:161.573333pt;}
.ydf{bottom:164.320000pt;}
.y6b{bottom:164.706667pt;}
.y5f{bottom:165.986667pt;}
.y7e{bottom:166.080000pt;}
.yd6{bottom:166.786667pt;}
.y10{bottom:167.706667pt;}
.ya5{bottom:170.813333pt;}
.y9c{bottom:174.053333pt;}
.y33{bottom:174.586667pt;}
.ye8{bottom:179.293333pt;}
.y72{bottom:180.453333pt;}
.y94{bottom:180.706667pt;}
.y6{bottom:180.773333pt;}
.yf1{bottom:181.506667pt;}
.y28{bottom:182.653333pt;}
.yc4{bottom:186.720000pt;}
.y6a{bottom:187.106667pt;}
.y7d{bottom:188.480000pt;}
.ybb{bottom:189.186667pt;}
.y30{bottom:189.306667pt;}
.ya4{bottom:193.213333pt;}
.yde{bottom:194.720000pt;}
.y9b{bottom:196.453333pt;}
.y8b{bottom:199.266667pt;}
.yca{bottom:201.733333pt;}
.y71{bottom:202.853333pt;}
.y93{bottom:203.106667pt;}
.yd3{bottom:203.906667pt;}
.y32{bottom:205.306667pt;}
.yc3{bottom:209.120000pt;}
.ye7{bottom:209.733333pt;}
.yae{bottom:210.880000pt;}
.yba{bottom:211.586667pt;}
.y51{bottom:215.973333pt;}
.ydd{bottom:217.120000pt;}
.y7c{bottom:218.880000pt;}
.yfc{bottom:221.413333pt;}
.y8a{bottom:221.666667pt;}
.ya3{bottom:223.653333pt;}
.y4{bottom:223.706667pt;}
.yc9{bottom:224.133333pt;}
.y69{bottom:225.506667pt;}
.yd2{bottom:226.333333pt;}
.y9a{bottom:226.880000pt;}
.ye6{bottom:232.133333pt;}
.y27{bottom:233.213333pt;}
.yad{bottom:233.280000pt;}
.yf0{bottom:234.333333pt;}
.yc2{bottom:239.520000pt;}
.y70{bottom:241.280000pt;}
.yb9{bottom:242.013333pt;}
.y89{bottom:244.093333pt;}
.ya2{bottom:246.053333pt;}
.yf{bottom:247.586667pt;}
.y1d{bottom:247.773333pt;}
.y68{bottom:247.906667pt;}
.y17{bottom:248.186667pt;}
.y99{bottom:249.280000pt;}
.yc8{bottom:254.533333pt;}
.y92{bottom:255.906667pt;}
.yd1{bottom:256.733333pt;}
.yb2{bottom:258.493333pt;}
.y78{bottom:260.453333pt;}
.yc1{bottom:261.920000pt;}
.y50{bottom:262.373333pt;}
.ye5{bottom:262.533333pt;}
.y6f{bottom:263.680000pt;}
.yb8{bottom:264.413333pt;}
.ya1{bottom:268.453333pt;}
.y98{bottom:271.680000pt;}
.y88{bottom:274.493333pt;}
.y5e{bottom:276.453333pt;}
.yc7{bottom:276.933333pt;}
.y91{bottom:278.333333pt;}
.y1c{bottom:279.453333pt;}
.yfb{bottom:281.253333pt;}
.y16{bottom:283.106667pt;}
.ye4{bottom:284.933333pt;}
.y2c{bottom:285.893333pt;}
.y67{bottom:286.333333pt;}
.yd0{bottom:287.133333pt;}
.yb1{bottom:288.893333pt;}
.ye{bottom:289.826667pt;}
.y77{bottom:290.853333pt;}
.yc0{bottom:292.346667pt;}
.y24{bottom:293.346667pt;}
.y56{bottom:293.413333pt;}
.y7b{bottom:294.080000pt;}
.yb7{bottom:294.813333pt;}
.y87{bottom:296.893333pt;}
.ya0{bottom:298.853333pt;}
.y90{bottom:300.733333pt;}
.y6e{bottom:302.080000pt;}
.yc6{bottom:307.333333pt;}
.y5d{bottom:308.453333pt;}
.y66{bottom:308.733333pt;}
.y4f{bottom:308.773333pt;}
.ycf{bottom:309.533333pt;}
.ybf{bottom:314.746667pt;}
.y7a{bottom:316.480000pt;}
.y3{bottom:316.866667pt;}
.yb6{bottom:317.213333pt;}
.y2b{bottom:317.893333pt;}
.y15{bottom:318.306667pt;}
.y26{bottom:318.693333pt;}
.y86{bottom:319.293333pt;}
.y40{bottom:320.066667pt;}
.y76{bottom:321.253333pt;}
.y6d{bottom:324.480000pt;}
.y2e{bottom:328.413333pt;}
.y65{bottom:331.133333pt;}
.yd{bottom:332.093333pt;}
.y46{bottom:337.666667pt;}
.y4e{bottom:340.773333pt;}
.yfa{bottom:341.120000pt;}
.yce{bottom:343.933333pt;}
.yef{bottom:344.253333pt;}
.ydc{bottom:347.586667pt;}
.y3f{bottom:348.866667pt;}
.yf4{bottom:349.826667pt;}
.y2a{bottom:349.893333pt;}
.ye3{bottom:350.106667pt;}
.y8e{bottom:350.266667pt;}
.yac{bottom:352.800000pt;}
.y5c{bottom:355.173333pt;}
.y85{bottom:356.866667pt;}
.y54{bottom:358.560000pt;}
.y9f{bottom:360.066667pt;}
.yb4{bottom:360.253333pt;}
.y97{bottom:361.600000pt;}
.ybe{bottom:362.333333pt;}
.yd5{bottom:362.626667pt;}
.y23{bottom:363.040000pt;}
.ycd{bottom:363.133333pt;}
.yc5{bottom:363.906667pt;}
.y45{bottom:364.893333pt;}
.yb0{bottom:367.746667pt;}
.y2{bottom:368.706667pt;}
.y14{bottom:368.866667pt;}
.yee{bottom:369.853333pt;}
.y8d{bottom:372.666667pt;}
.ye2{bottom:374.586667pt;}
.y84{bottom:374.786667pt;}
.yf3{bottom:375.426667pt;}
.yab{bottom:375.840000pt;}
.y3e{bottom:377.666667pt;}
.y75{bottom:378.493333pt;}
.y96{bottom:380.800000pt;}
.y9e{bottom:380.866667pt;}
.y29{bottom:381.893333pt;}
.ycc{bottom:382.333333pt;}
.y79{bottom:383.653333pt;}
.ybd{bottom:383.933333pt;}
.yb3{bottom:384.933333pt;}
.y5b{bottom:386.880000pt;}
.y4d{bottom:387.200000pt;}
.ydb{bottom:387.906667pt;}
.y6c{bottom:388.133333pt;}
.yd4{bottom:388.226667pt;}
.yc{bottom:390.013333pt;}
.y44{bottom:392.093333pt;}
.y62{bottom:392.320000pt;}
.y83{bottom:392.706667pt;}
.y31{bottom:393.093333pt;}
.yaf{bottom:393.346667pt;}
.y8c{bottom:395.066667pt;}
.yed{bottom:395.453333pt;}
.y63{bottom:398.013333pt;}
.yaa{bottom:398.880000pt;}
.ye1{bottom:399.066667pt;}
.y95{bottom:400.026667pt;}
.y74{bottom:400.893333pt;}
.yf2{bottom:401.026667pt;}
.yf9{bottom:401.440000pt;}
.ycb{bottom:401.533333pt;}
.y9d{bottom:401.666667pt;}
.y13{bottom:403.746667pt;}
.ybc{bottom:405.533333pt;}
.y3d{bottom:405.826667pt;}
.yda{bottom:408.066667pt;}
.y82{bottom:410.626667pt;}
.y1b{bottom:419.133333pt;}
.y4c{bottom:419.200000pt;}
.y43{bottom:419.293333pt;}
.y1{bottom:420.573333pt;}
.y52{bottom:428.800000pt;}
.yb{bottom:432.253333pt;}
.y21{bottom:433.440000pt;}
.y5a{bottom:433.600000pt;}
.yf8{bottom:444.160000pt;}
.y42{bottom:446.493333pt;}
.y12{bottom:452.733333pt;}
.y1a{bottom:453.373333pt;}
.y4b{bottom:464.160000pt;}
.y59{bottom:465.280000pt;}
.y41{bottom:474.013333pt;}
.ya{bottom:474.533333pt;}
.y2d{bottom:491.066667pt;}
.yf7{bottom:504.026667pt;}
.y3c{bottom:534.493333pt;}
.y58{bottom:545.213333pt;}
.y19{bottom:549.186667pt;}
.y48{bottom:560.826667pt;}
.y25{bottom:563.906667pt;}
.y3b{bottom:564.413333pt;}
.y61{bottom:564.800000pt;}
.y4a{bottom:570.813333pt;}
.y9{bottom:571.266667pt;}
.y8f{bottom:572.160000pt;}
.y64{bottom:575.040000pt;}
.yb5{bottom:575.266667pt;}
.yf6{bottom:576.453333pt;}
.yf5{bottom:590.400000pt;}
.y3a{bottom:595.133333pt;}
.y57{bottom:596.413333pt;}
.y18{bottom:600.386667pt;}
.y47{bottom:614.586667pt;}
.y60{bottom:616.026667pt;}
.y20{bottom:624.933333pt;}
.h17{height:44.320000pt;}
.h28{height:44.800000pt;}
.h2f{height:51.840000pt;}
.h2a{height:56.160000pt;}
.h2c{height:56.256000pt;}
.h14{height:56.854687pt;}
.h2b{height:60.000000pt;}
.h2e{height:60.096000pt;}
.hc{height:63.840000pt;}
.h13{height:64.629688pt;}
.h31{height:68.160000pt;}
.h32{height:68.256000pt;}
.h30{height:72.000000pt;}
.h4{height:77.568000pt;}
.h5{height:77.671424pt;}
.hb{height:80.160000pt;}
.h15{height:80.256000pt;}
.h20{height:80.997120pt;}
.h21{height:84.881920pt;}
.h22{height:85.001472pt;}
.h1d{height:85.610880pt;}
.h24{height:89.664000pt;}
.h23{height:89.783552pt;}
.hd{height:93.915648pt;}
.ha{height:97.937500pt;}
.h9{height:98.035438pt;}
.h27{height:99.825920pt;}
.h7{height:99.945472pt;}
.he{height:109.390080pt;}
.hf{height:109.509632pt;}
.h26{height:119.445120pt;}
.h3{height:119.552000pt;}
.h6{height:120.488960pt;}
.h34{height:134.496000pt;}
.h33{height:134.615552pt;}
.h1a{height:136.362240pt;}
.h25{height:136.874880pt;}
.h10{height:138.071040pt;}
.h11{height:138.174464pt;}
.h1b{height:155.136000pt;}
.h2d{height:155.239424pt;}
.h1c{height:159.601920pt;}
.h12{height:161.817187pt;}
.h16{height:162.825000pt;}
.h1e{height:170.709120pt;}
.h1f{height:170.811648pt;}
.h8{height:187.536384pt;}
.h18{height:189.783040pt;}
.h19{height:189.886464pt;}
.h2{height:196.593750pt;}
.h1{height:196.724812pt;}
.h29{height:552.080000pt;}
.h0{height:720.000000pt;}
.w2{width:401.120000pt;}
.w4{width:504.800000pt;}
.w5{width:536.960000pt;}
.w3{width:710.240000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x36{left:54.079981pt;}
.x27{left:69.759981pt;}
.x13{left:75.231981pt;}
.x2b{left:76.767981pt;}
.x26{left:79.039981pt;}
.x4c{left:81.055981pt;}
.x8{left:84.799981pt;}
.x2c{left:91.679981pt;}
.x9{left:94.655981pt;}
.x2d{left:97.599981pt;}
.x1{left:99.935981pt;}
.x21{left:102.271981pt;}
.x29{left:104.159981pt;}
.x12{left:105.439981pt;}
.x30{left:109.599981pt;}
.x5{left:116.735981pt;}
.x4{left:117.695981pt;}
.x1f{left:119.263981pt;}
.x20{left:122.943981pt;}
.xa{left:130.655981pt;}
.x2e{left:133.626648pt;}
.x31{left:145.626648pt;}
.x11{left:150.880000pt;}
.x2a{left:175.546648pt;}
.x28{left:188.186648pt;}
.x25{left:206.426648pt;}
.x7{left:240.706648pt;}
.x1e{left:254.626648pt;}
.x2{left:312.453314pt;}
.x32{left:324.093314pt;}
.x37{left:335.706648pt;}
.x38{left:342.586648pt;}
.x44{left:365.466648pt;}
.x45{left:372.346648pt;}
.x4b{left:375.133314pt;}
.x10{left:412.226648pt;}
.x1d{left:451.293314pt;}
.x1c{left:478.719981pt;}
.x35{left:528.613314pt;}
.x17{left:548.666648pt;}
.x39{left:562.239981pt;}
.x3a{left:569.026648pt;}
.x18{left:578.786648pt;}
.x16{left:583.906648pt;}
.x15{left:590.146648pt;}
.x3{left:618.079981pt;}
.x43{left:619.039981pt;}
.x19{left:641.506648pt;}
.x46{left:652.666648pt;}
.x47{left:659.493314pt;}
.x1b{left:686.426648pt;}
.x23{left:753.759981pt;}
.x34{left:765.853314pt;}
.x40{left:782.106648pt;}
.x1a{left:790.266648pt;}
.x3b{left:794.106648pt;}
.x3c{left:816.293314pt;}
.x22{left:823.293314pt;}
.x24{left:887.293314pt;}
.x42{left:943.973314pt;}
.x48{left:990.853314pt;}
.x49{left:997.186648pt;}
.x3d{left:1038.239981pt;}
.x3e{left:1052.066648pt;}
.xf{left:1109.093314pt;}
.xd{left:1115.493314pt;}
.xc{left:1129.253314pt;}
.xe{left:1132.773314pt;}
.x33{left:1210.466648pt;}
.x4a{left:1212.226648pt;}
.x41{left:1213.186648pt;}
.x3f{left:1221.186648pt;}
.x14{left:1224.066648pt;}
.xb{left:1225.666648pt;}
.x2f{left:1227.586648pt;}
.x6{left:1234.626648pt;}
}




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