
    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_84fe759d656c351ea6b1dbef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_1e59a48d8332e6e3e113cfd3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_005b97f1928267376335d0f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_38b898ca294d1187895a3cd6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_ac01e90825e55bffb2719287.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_ae261c627a20bd66b493f56e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_5df2ec612f943f616b5a4cd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_f7984cc144c0912a8a092059.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935547;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_a35ed6c6d617b89f0aeee519.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_940d7145ada2ff3cf704620e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.858398;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_e46ea53f8701d1fed8488a47.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.895996;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_5524850f1af08736e7e4f50d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls4c{letter-spacing:-5.753088px;}
.ls3c{letter-spacing:-0.930240px;}
.ls30{letter-spacing:-0.508896px;}
.ls38{letter-spacing:-0.497952px;}
.ls35{letter-spacing:-0.481536px;}
.ls36{letter-spacing:-0.448704px;}
.ls31{letter-spacing:-0.393984px;}
.ls3b{letter-spacing:-0.383040px;}
.ls3d{letter-spacing:-0.366624px;}
.ls32{letter-spacing:-0.361152px;}
.ls27{letter-spacing:-0.342144px;}
.lsd{letter-spacing:-0.310464px;}
.ls46{letter-spacing:-0.302400px;}
.ls20{letter-spacing:-0.297792px;}
.ls11{letter-spacing:-0.266112px;}
.ls49{letter-spacing:-0.254016px;}
.ls28{letter-spacing:-0.253440px;}
.ls45{letter-spacing:-0.241920px;}
.ls34{letter-spacing:-0.240768px;}
.ls13{letter-spacing:-0.234432px;}
.ls3f{letter-spacing:-0.228096px;}
.ls10{letter-spacing:-0.221760px;}
.ls18{letter-spacing:-0.215424px;}
.lsf{letter-spacing:-0.209088px;}
.ls2f{letter-spacing:-0.202752px;}
.ls9{letter-spacing:-0.196416px;}
.ls8{letter-spacing:-0.190080px;}
.ls39{letter-spacing:-0.186048px;}
.ls21{letter-spacing:-0.183744px;}
.ls14{letter-spacing:-0.177408px;}
.ls16{letter-spacing:-0.171072px;}
.lsa{letter-spacing:-0.164736px;}
.ls47{letter-spacing:-0.163296px;}
.lse{letter-spacing:-0.158400px;}
.ls33{letter-spacing:-0.153216px;}
.ls44{letter-spacing:-0.152064px;}
.ls48{letter-spacing:-0.151200px;}
.ls15{letter-spacing:-0.145728px;}
.ls6{letter-spacing:-0.133056px;}
.ls2c{letter-spacing:-0.126720px;}
.ls12{letter-spacing:-0.120384px;}
.ls1f{letter-spacing:-0.101376px;}
.ls19{letter-spacing:-0.095040px;}
.ls4d{letter-spacing:-0.069696px;}
.ls26{letter-spacing:-0.063360px;}
.ls17{letter-spacing:-0.050688px;}
.ls7{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.100224px;}
.ls3{letter-spacing:0.114768px;}
.ls2{letter-spacing:0.115200px;}
.lsc{letter-spacing:0.283968px;}
.lsb{letter-spacing:0.375840px;}
.ls37{letter-spacing:0.629280px;}
.ls4{letter-spacing:0.655200px;}
.ls25{letter-spacing:1.602720px;}
.ls1c{letter-spacing:1.811520px;}
.ls1b{letter-spacing:1.969776px;}
.ls2b{letter-spacing:2.476800px;}
.ls2d{letter-spacing:2.872080px;}
.ls1a{letter-spacing:2.980800px;}
.ls29{letter-spacing:3.195360px;}
.ls4b{letter-spacing:3.362400px;}
.ls43{letter-spacing:4.171392px;}
.ls3e{letter-spacing:4.893696px;}
.ls2a{letter-spacing:5.258880px;}
.ls1e{letter-spacing:5.951232px;}
.ls4a{letter-spacing:6.632352px;}
.ls23{letter-spacing:7.335360px;}
.ls24{letter-spacing:7.823520px;}
.ls40{letter-spacing:8.968608px;}
.ls1d{letter-spacing:9.282240px;}
.ls41{letter-spacing:9.436176px;}
.ls3a{letter-spacing:10.046880px;}
.ls22{letter-spacing:13.790880px;}
.ls2e{letter-spacing:29.642400px;}
.ls5{letter-spacing:116.781264px;}
.ls1{letter-spacing:1191.114144px;}
.ls0{letter-spacing:2005.099920px;}
.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;}
}
.wse{word-spacing:-15.841440px;}
.ws9{word-spacing:-15.212160px;}
.ws10{word-spacing:-15.026112px;}
.wsc{word-spacing:-14.971392px;}
.wsb{word-spacing:-14.851008px;}
.wsa{word-spacing:-14.818176px;}
.wsd{word-spacing:-14.730624px;}
.wsf{word-spacing:-14.714208px;}
.ws1{word-spacing:-14.319360px;}
.ws21{word-spacing:-14.256000px;}
.ws15{word-spacing:-14.224320px;}
.ws1e{word-spacing:-14.217984px;}
.ws5{word-spacing:-14.198976px;}
.ws1b{word-spacing:-14.186304px;}
.ws1f{word-spacing:-14.167296px;}
.ws20{word-spacing:-14.160960px;}
.ws2{word-spacing:-14.154624px;}
.ws11{word-spacing:-14.148288px;}
.ws8{word-spacing:-14.141952px;}
.ws0{word-spacing:-14.129280px;}
.ws12{word-spacing:-14.116608px;}
.ws6{word-spacing:-14.110272px;}
.ws3{word-spacing:-14.097600px;}
.ws1a{word-spacing:-14.091264px;}
.ws14{word-spacing:-14.084928px;}
.ws13{word-spacing:-14.065920px;}
.ws7{word-spacing:-14.021568px;}
.ws16{word-spacing:-14.008896px;}
.ws1d{word-spacing:-13.668480px;}
.ws1c{word-spacing:-0.141984px;}
.ws4{word-spacing:0.000000px;}
.ws19{word-spacing:0.311904px;}
.ws18{word-spacing:101.064240px;}
.ws17{word-spacing:142.476840px;}
._2b{margin-left:-7.006896px;}
._28{margin-left:-5.775552px;}
._13{margin-left:-4.434624px;}
._7{margin-left:-3.421440px;}
._6{margin-left:-2.280960px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._8{width:2.280960px;}
._d{width:3.294720px;}
._e{width:4.359024px;}
._b{width:5.512320px;}
._a{width:7.443216px;}
._4{width:8.743680px;}
._3{width:10.010880px;}
._10{width:11.278080px;}
._5{width:12.418560px;}
._11{width:15.447168px;}
._f{width:16.727040px;}
._c{width:17.740800px;}
._9{width:18.881280px;}
._12{width:20.528640px;}
._14{width:23.506560px;}
._1c{width:25.280640px;}
._1d{width:27.181440px;}
._18{width:30.752640px;}
._19{width:32.123520px;}
._26{width:34.404480px;}
._1a{width:38.269440px;}
._1f{width:44.795520px;}
._27{width:49.230720px;}
._22{width:53.792640px;}
._1e{width:58.469760px;}
._21{width:60.508800px;}
._20{width:61.776000px;}
._2c{width:69.379200px;}
._2d{width:70.660800px;}
._16{width:75.185280px;}
._25{width:76.475520px;}
._1b{width:80.910720px;}
._2a{width:83.509776px;}
._29{width:84.584448px;}
._17{width:96.880320px;}
._23{width:124.945920px;}
._24{width:125.967744px;}
._15{width:849.680640px;}
._1{width:2478.560832px;}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc6{color:rgb(89,89,89);}
.fc4{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs3{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:4.260000px;}
.y102{bottom:4.620000px;}
.ye1{bottom:4.680000px;}
.y123{bottom:4.740000px;}
.yc5{bottom:4.860000px;}
.y144{bottom:4.980000px;}
.ye9{bottom:5.040000px;}
.y13f{bottom:5.100000px;}
.yb5{bottom:5.160000px;}
.yb7{bottom:5.220000px;}
.yc7{bottom:5.280000px;}
.y13c{bottom:5.340000px;}
.yeb{bottom:5.520000px;}
.y84{bottom:5.580000px;}
.yb9{bottom:5.640000px;}
.ybb{bottom:5.700000px;}
.ybd{bottom:5.760000px;}
.ybf{bottom:5.820000px;}
.y11c{bottom:5.880000px;}
.y100{bottom:6.060000px;}
.yfb{bottom:6.180000px;}
.yc1{bottom:6.240000px;}
.yc3{bottom:6.300000px;}
.y80{bottom:13.140000px;}
.y7a{bottom:13.680000px;}
.y7d{bottom:13.800000px;}
.yd1{bottom:18.000000px;}
.y120{bottom:20.160000px;}
.y83{bottom:21.060000px;}
.yb3{bottom:23.100000px;}
.yf5{bottom:23.220000px;}
.ye0{bottom:23.760000px;}
.y143{bottom:24.060000px;}
.ye8{bottom:24.120000px;}
.y141{bottom:24.300000px;}
.y13e{bottom:24.540000px;}
.ye3{bottom:24.600000px;}
.y13b{bottom:24.780000px;}
.y136{bottom:24.840000px;}
.y8b{bottom:24.960000px;}
.y139{bottom:25.020000px;}
.ye5{bottom:25.080000px;}
.y7f{bottom:28.620000px;}
.y79{bottom:29.160000px;}
.y7c{bottom:29.280000px;}
.y94{bottom:31.320000px;}
.y92{bottom:31.680000px;}
.y77{bottom:32.460000px;}
.y95{bottom:33.120000px;}
.y82{bottom:36.540000px;}
.y8f{bottom:39.960000px;}
.y8a{bottom:40.440000px;}
.y88{bottom:41.940000px;}
.ye7{bottom:43.560000px;}
.y135{bottom:43.920000px;}
.y138{bottom:44.100000px;}
.yd0{bottom:47.520000px;}
.y74{bottom:47.580000px;}
.y76{bottom:47.940000px;}
.y87{bottom:57.420000px;}
.y2{bottom:58.320000px;}
.y73{bottom:63.420000px;}
.yca{bottom:65.520000px;}
.y86{bottom:72.900000px;}
.y72{bottom:78.900000px;}
.yfa{bottom:88.500000px;}
.y75{bottom:94.740000px;}
.y37{bottom:95.040000px;}
.ycb{bottom:96.120000px;}
.y11e{bottom:103.500000px;}
.y155{bottom:104.760000px;}
.y6f{bottom:105.480000px;}
.y176{bottom:107.640000px;}
.yf9{bottom:108.000000px;}
.y36{bottom:114.120000px;}
.y11d{bottom:121.500000px;}
.yc8{bottom:123.840000px;}
.y6e{bottom:124.920000px;}
.ycc{bottom:126.360000px;}
.y175{bottom:126.720000px;}
.yf8{bottom:127.500000px;}
.y35{bottom:133.560000px;}
.yc6{bottom:138.000000px;}
.y91{bottom:138.600000px;}
.y11b{bottom:141.000000px;}
.y154{bottom:142.920000px;}
.y6d{bottom:144.000000px;}
.y174{bottom:145.800000px;}
.yf7{bottom:147.000000px;}
.y34{bottom:152.640000px;}
.ycd{bottom:156.960000px;}
.yc4{bottom:157.500000px;}
.y11a{bottom:160.500000px;}
.y153{bottom:162.360000px;}
.y6c{bottom:163.440000px;}
.y173{bottom:165.240000px;}
.yf6{bottom:166.500000px;}
.y33{bottom:172.080000px;}
.yc2{bottom:175.500000px;}
.y152{bottom:181.440000px;}
.y6b{bottom:182.520000px;}
.y172{bottom:184.320000px;}
.yf4{bottom:184.500000px;}
.y119{bottom:185.400000px;}
.yce{bottom:187.560000px;}
.y32{bottom:191.160000px;}
.yc0{bottom:195.000000px;}
.y151{bottom:200.880000px;}
.y6a{bottom:201.600000px;}
.y171{bottom:203.760000px;}
.y118{bottom:204.480000px;}
.y31{bottom:210.240000px;}
.ybe{bottom:214.500000px;}
.ycf{bottom:218.160000px;}
.y150{bottom:219.960000px;}
.y69{bottom:221.040000px;}
.y170{bottom:222.840000px;}
.y117{bottom:223.920000px;}
.yf3{bottom:226.800000px;}
.y30{bottom:229.680000px;}
.ybc{bottom:234.000000px;}
.y14f{bottom:239.400000px;}
.y68{bottom:240.120000px;}
.y16f{bottom:241.920000px;}
.y116{bottom:243.000000px;}
.yf2{bottom:245.880000px;}
.y2f{bottom:248.760000px;}
.yba{bottom:253.500000px;}
.y14e{bottom:258.480000px;}
.y67{bottom:259.560000px;}
.y16e{bottom:261.360000px;}
.y115{bottom:262.440000px;}
.yf1{bottom:265.320000px;}
.y2e{bottom:268.200000px;}
.yb8{bottom:273.000000px;}
.y14d{bottom:277.560000px;}
.y66{bottom:278.640000px;}
.y16d{bottom:280.440000px;}
.y114{bottom:281.520000px;}
.yf0{bottom:284.400000px;}
.y2d{bottom:287.280000px;}
.yb6{bottom:292.500000px;}
.y14c{bottom:297.000000px;}
.y65{bottom:297.720000px;}
.y16c{bottom:299.880000px;}
.y113{bottom:300.600000px;}
.yef{bottom:303.840000px;}
.y2c{bottom:306.360000px;}
.yb4{bottom:312.000000px;}
.y14b{bottom:316.080000px;}
.y64{bottom:317.160000px;}
.y16b{bottom:318.960000px;}
.y112{bottom:320.040000px;}
.yee{bottom:322.920000px;}
.y2b{bottom:325.800000px;}
.yb2{bottom:331.500000px;}
.y14a{bottom:335.520000px;}
.y63{bottom:336.240000px;}
.y16a{bottom:338.040000px;}
.y111{bottom:339.120000px;}
.yed{bottom:342.000000px;}
.y2a{bottom:344.880000px;}
.y149{bottom:354.600000px;}
.y70{bottom:355.320000px;}
.y62{bottom:355.680000px;}
.y169{bottom:357.480000px;}
.y110{bottom:358.560000px;}
.yec{bottom:361.440000px;}
.y29{bottom:364.320000px;}
.y148{bottom:373.680000px;}
.yb1{bottom:374.040000px;}
.y61{bottom:374.760000px;}
.yea{bottom:375.000000px;}
.y168{bottom:376.560000px;}
.y10f{bottom:377.640000px;}
.y28{bottom:383.400000px;}
.yb0{bottom:393.120000px;}
.y60{bottom:394.200000px;}
.y167{bottom:396.000000px;}
.y10e{bottom:396.720000px;}
.y27{bottom:402.840000px;}
.y147{bottom:412.200000px;}
.yaf{bottom:412.560000px;}
.y5f{bottom:413.280000px;}
.ye6{bottom:414.000000px;}
.y166{bottom:415.080000px;}
.y10d{bottom:416.160000px;}
.y26{bottom:421.920000px;}
.yae{bottom:431.640000px;}
.y5e{bottom:432.360000px;}
.y165{bottom:434.160000px;}
.y10c{bottom:435.240000px;}
.y25{bottom:441.000000px;}
.yad{bottom:450.720000px;}
.y5d{bottom:451.800000px;}
.y164{bottom:453.600000px;}
.y10b{bottom:454.680000px;}
.y24{bottom:460.440000px;}
.y146{bottom:469.800000px;}
.yac{bottom:470.160000px;}
.y5c{bottom:470.880000px;}
.ye4{bottom:471.000000px;}
.y163{bottom:472.680000px;}
.y10a{bottom:473.760000px;}
.y23{bottom:479.520000px;}
.yab{bottom:489.240000px;}
.y5b{bottom:490.320000px;}
.y162{bottom:492.120000px;}
.y109{bottom:492.840000px;}
.y22{bottom:498.960000px;}
.y145{bottom:508.320000px;}
.yaa{bottom:508.680000px;}
.y5a{bottom:509.400000px;}
.ye2{bottom:510.000000px;}
.y161{bottom:511.200000px;}
.y108{bottom:512.280000px;}
.y21{bottom:518.040000px;}
.y142{bottom:523.500000px;}
.ya9{bottom:527.760000px;}
.y59{bottom:528.480000px;}
.y160{bottom:530.280000px;}
.y107{bottom:531.360000px;}
.y20{bottom:537.120000px;}
.y93{bottom:541.800000px;}
.y89{bottom:546.000000px;}
.ya8{bottom:546.840000px;}
.y58{bottom:547.920000px;}
.ydf{bottom:549.000000px;}
.y15f{bottom:549.720000px;}
.y106{bottom:550.800000px;}
.y1f{bottom:556.560000px;}
.y140{bottom:562.500000px;}
.ya7{bottom:566.280000px;}
.y57{bottom:567.000000px;}
.y15e{bottom:568.800000px;}
.y105{bottom:569.880000px;}
.y1e{bottom:575.640000px;}
.ya6{bottom:585.360000px;}
.y56{bottom:586.440000px;}
.yde{bottom:586.500000px;}
.y15d{bottom:588.240000px;}
.y104{bottom:588.960000px;}
.y1d{bottom:595.080000px;}
.y13d{bottom:601.500000px;}
.ya5{bottom:604.800000px;}
.y55{bottom:605.520000px;}
.y15c{bottom:607.320000px;}
.y103{bottom:610.560000px;}
.ydd{bottom:611.280000px;}
.y1c{bottom:614.160000px;}
.ya4{bottom:623.880000px;}
.y54{bottom:624.600000px;}
.y15b{bottom:626.400000px;}
.ydc{bottom:630.720000px;}
.y1b{bottom:633.240000px;}
.y90{bottom:636.840000px;}
.y13a{bottom:640.500000px;}
.ya3{bottom:642.960000px;}
.y85{bottom:643.500000px;}
.y53{bottom:644.040000px;}
.y15a{bottom:645.840000px;}
.ydb{bottom:649.800000px;}
.y1a{bottom:652.680000px;}
.ya2{bottom:662.400000px;}
.y52{bottom:663.120000px;}
.y159{bottom:664.920000px;}
.yda{bottom:668.880000px;}
.y19{bottom:671.760000px;}
.y137{bottom:679.500000px;}
.ya1{bottom:681.480000px;}
.y51{bottom:682.560000px;}
.y158{bottom:684.360000px;}
.yd9{bottom:688.320000px;}
.y18{bottom:691.200000px;}
.ya0{bottom:700.920000px;}
.y50{bottom:701.640000px;}
.y157{bottom:703.080000px;}
.yd8{bottom:707.400000px;}
.y17{bottom:710.280000px;}
.y81{bottom:715.500000px;}
.y9f{bottom:720.000000px;}
.y4f{bottom:720.720000px;}
.y156{bottom:721.440000px;}
.yd7{bottom:726.840000px;}
.y16{bottom:729.360000px;}
.y134{bottom:738.000000px;}
.y9e{bottom:739.440000px;}
.y4e{bottom:740.160000px;}
.yd6{bottom:745.920000px;}
.y15{bottom:748.800000px;}
.y9d{bottom:758.520000px;}
.y4d{bottom:759.240000px;}
.yd5{bottom:765.000000px;}
.y14{bottom:767.880000px;}
.y9c{bottom:777.600000px;}
.y4c{bottom:778.680000px;}
.yd4{bottom:784.440000px;}
.y13{bottom:787.320000px;}
.y133{bottom:796.500000px;}
.y9b{bottom:797.040000px;}
.y4b{bottom:797.760000px;}
.yd3{bottom:803.520000px;}
.y7e{bottom:805.500000px;}
.y7b{bottom:807.000000px;}
.y12{bottom:811.800000px;}
.y9a{bottom:816.120000px;}
.y4a{bottom:816.840000px;}
.y132{bottom:821.880000px;}
.yd2{bottom:825.120000px;}
.y11{bottom:825.480000px;}
.y99{bottom:835.560000px;}
.y49{bottom:836.280000px;}
.y131{bottom:841.320000px;}
.y10{bottom:850.320000px;}
.y98{bottom:854.640000px;}
.y48{bottom:855.360000px;}
.y130{bottom:860.400000px;}
.yf{bottom:864.000000px;}
.y97{bottom:873.720000px;}
.y47{bottom:874.800000px;}
.y12f{bottom:879.840000px;}
.y96{bottom:888.480000px;}
.ye{bottom:888.840000px;}
.yc9{bottom:889.920000px;}
.y46{bottom:893.880000px;}
.y12e{bottom:898.920000px;}
.y78{bottom:900.000000px;}
.yd{bottom:902.520000px;}
.y45{bottom:912.960000px;}
.y12d{bottom:918.000000px;}
.yc{bottom:921.600000px;}
.y44{bottom:932.400000px;}
.y12c{bottom:937.440000px;}
.yb{bottom:941.040000px;}
.y43{bottom:951.480000px;}
.y12b{bottom:956.520000px;}
.ya{bottom:960.120000px;}
.y42{bottom:970.920000px;}
.y12a{bottom:975.960000px;}
.y9{bottom:979.560000px;}
.y8e{bottom:985.320000px;}
.y71{bottom:988.500000px;}
.y41{bottom:990.000000px;}
.y129{bottom:995.040000px;}
.y8{bottom:999.720000px;}
.y40{bottom:1009.440000px;}
.y128{bottom:1014.120000px;}
.y7{bottom:1024.920000px;}
.y127{bottom:1027.500000px;}
.y3f{bottom:1028.520000px;}
.y126{bottom:1047.000000px;}
.y3e{bottom:1047.600000px;}
.y6{bottom:1049.760000px;}
.y125{bottom:1066.500000px;}
.y3d{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y101{bottom:1081.500000px;}
.y124{bottom:1086.000000px;}
.y3c{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.yff{bottom:1099.500000px;}
.y3{bottom:1103.040000px;}
.y122{bottom:1105.500000px;}
.y3b{bottom:1105.560000px;}
.yfe{bottom:1119.000000px;}
.y121{bottom:1123.500000px;}
.y3a{bottom:1124.640000px;}
.yfd{bottom:1138.500000px;}
.y11f{bottom:1143.000000px;}
.y39{bottom:1143.720000px;}
.y8c{bottom:1144.500000px;}
.yfc{bottom:1158.000000px;}
.y38{bottom:1163.160000px;}
.y1{bottom:1193.760000px;}
.hd{height:18.000000px;}
.h13{height:19.500000px;}
.h12{height:21.000000px;}
.h6{height:27.833203px;}
.h18{height:36.000000px;}
.h15{height:37.219219px;}
.h11{height:39.000000px;}
.h8{height:39.837656px;}
.h16{height:40.500000px;}
.h3{height:43.312500px;}
.h1a{height:43.410938px;}
.h2{height:45.478125px;}
.h5{height:49.433203px;}
.ha{height:51.000000px;}
.h9{height:52.500000px;}
.h17{height:58.500000px;}
.h19{height:60.000000px;}
.h4{height:61.987500px;}
.hc{height:75.000000px;}
.h10{height:86.040000px;}
.hb{height:124.500000px;}
.h7{height:136.500000px;}
.he{height:146.520000px;}
.h14{height:268.560000px;}
.hf{height:325.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:16.200000px;}
.w10{width:130.500000px;}
.wd{width:136.500000px;}
.w11{width:145.500000px;}
.wf{width:154.500000px;}
.w9{width:157.500000px;}
.wc{width:162.000000px;}
.w8{width:184.500000px;}
.w6{width:189.000000px;}
.w13{width:193.500000px;}
.w7{width:198.000000px;}
.wb{width:207.000000px;}
.w14{width:219.000000px;}
.w2{width:222.000000px;}
.w3{width:223.500000px;}
.we{width:298.500000px;}
.w12{width:315.000000px;}
.w15{width:361.500000px;}
.w16{width:363.000000px;}
.w4{width:510.000000px;}
.wa{width:540.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x36{left:7.860000px;}
.x1f{left:9.239856px;}
.x13{left:11.219964px;}
.x1c{left:12.907500px;}
.x24{left:16.664760px;}
.x23{left:23.504760px;}
.x1d{left:28.102500px;}
.x12{left:31.694820px;}
.x16{left:32.700120px;}
.x2e{left:35.912040px;}
.x2c{left:39.717960px;}
.x14{left:52.994760px;}
.x32{left:56.914800px;}
.x1{left:62.009748px;}
.x31{left:64.752240px;}
.x1a{left:67.335192px;}
.x33{left:68.743560px;}
.x25{left:70.200300px;}
.x30{left:72.913200px;}
.x10{left:84.959856px;}
.x6{left:87.328872px;}
.x39{left:92.068680px;}
.x5{left:96.911136px;}
.x38{left:101.389680px;}
.x1b{left:104.040000px;}
.x4{left:106.184700px;}
.xf{left:126.942264px;}
.x18{left:148.500000px;}
.x11{left:151.500000px;}
.x19{left:153.000000px;}
.xc{left:177.145380px;}
.x3{left:181.064592px;}
.x26{left:203.428350px;}
.xd{left:208.199340px;}
.x20{left:271.500000px;}
.x28{left:289.500000px;}
.x2b{left:381.000000px;}
.x35{left:397.500000px;}
.x2{left:442.885680px;}
.x15{left:444.000000px;}
.x17{left:445.500000px;}
.x29{left:450.000000px;}
.x21{left:468.000000px;}
.xb{left:493.837200px;}
.x2d{left:534.000000px;}
.x2a{left:585.000000px;}
.x37{left:589.500000px;}
.xe{left:613.285200px;}
.x34{left:619.364880px;}
.x27{left:621.164880px;}
.x1e{left:646.184880px;}
.x22{left:651.000000px;}
.x2f{left:663.000000px;}
.x8{left:664.767720px;}
.x7{left:684.301320px;}
.x9{left:694.460520px;}
.xa{left:807.809760px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls4c{letter-spacing:-5.113856pt;}
.ls3c{letter-spacing:-0.826880pt;}
.ls30{letter-spacing:-0.452352pt;}
.ls38{letter-spacing:-0.442624pt;}
.ls35{letter-spacing:-0.428032pt;}
.ls36{letter-spacing:-0.398848pt;}
.ls31{letter-spacing:-0.350208pt;}
.ls3b{letter-spacing:-0.340480pt;}
.ls3d{letter-spacing:-0.325888pt;}
.ls32{letter-spacing:-0.321024pt;}
.ls27{letter-spacing:-0.304128pt;}
.lsd{letter-spacing:-0.275968pt;}
.ls46{letter-spacing:-0.268800pt;}
.ls20{letter-spacing:-0.264704pt;}
.ls11{letter-spacing:-0.236544pt;}
.ls49{letter-spacing:-0.225792pt;}
.ls28{letter-spacing:-0.225280pt;}
.ls45{letter-spacing:-0.215040pt;}
.ls34{letter-spacing:-0.214016pt;}
.ls13{letter-spacing:-0.208384pt;}
.ls3f{letter-spacing:-0.202752pt;}
.ls10{letter-spacing:-0.197120pt;}
.ls18{letter-spacing:-0.191488pt;}
.lsf{letter-spacing:-0.185856pt;}
.ls2f{letter-spacing:-0.180224pt;}
.ls9{letter-spacing:-0.174592pt;}
.ls8{letter-spacing:-0.168960pt;}
.ls39{letter-spacing:-0.165376pt;}
.ls21{letter-spacing:-0.163328pt;}
.ls14{letter-spacing:-0.157696pt;}
.ls16{letter-spacing:-0.152064pt;}
.lsa{letter-spacing:-0.146432pt;}
.ls47{letter-spacing:-0.145152pt;}
.lse{letter-spacing:-0.140800pt;}
.ls33{letter-spacing:-0.136192pt;}
.ls44{letter-spacing:-0.135168pt;}
.ls48{letter-spacing:-0.134400pt;}
.ls15{letter-spacing:-0.129536pt;}
.ls6{letter-spacing:-0.118272pt;}
.ls2c{letter-spacing:-0.112640pt;}
.ls12{letter-spacing:-0.107008pt;}
.ls1f{letter-spacing:-0.090112pt;}
.ls19{letter-spacing:-0.084480pt;}
.ls4d{letter-spacing:-0.061952pt;}
.ls26{letter-spacing:-0.056320pt;}
.ls17{letter-spacing:-0.045056pt;}
.ls7{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.089088pt;}
.ls3{letter-spacing:0.102016pt;}
.ls2{letter-spacing:0.102400pt;}
.lsc{letter-spacing:0.252416pt;}
.lsb{letter-spacing:0.334080pt;}
.ls37{letter-spacing:0.559360pt;}
.ls4{letter-spacing:0.582400pt;}
.ls25{letter-spacing:1.424640pt;}
.ls1c{letter-spacing:1.610240pt;}
.ls1b{letter-spacing:1.750912pt;}
.ls2b{letter-spacing:2.201600pt;}
.ls2d{letter-spacing:2.552960pt;}
.ls1a{letter-spacing:2.649600pt;}
.ls29{letter-spacing:2.840320pt;}
.ls4b{letter-spacing:2.988800pt;}
.ls43{letter-spacing:3.707904pt;}
.ls3e{letter-spacing:4.349952pt;}
.ls2a{letter-spacing:4.674560pt;}
.ls1e{letter-spacing:5.289984pt;}
.ls4a{letter-spacing:5.895424pt;}
.ls23{letter-spacing:6.520320pt;}
.ls24{letter-spacing:6.954240pt;}
.ls40{letter-spacing:7.972096pt;}
.ls1d{letter-spacing:8.250880pt;}
.ls41{letter-spacing:8.387712pt;}
.ls3a{letter-spacing:8.930560pt;}
.ls22{letter-spacing:12.258560pt;}
.ls2e{letter-spacing:26.348800pt;}
.ls5{letter-spacing:103.805568pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls0{letter-spacing:1782.311040pt;}
.wse{word-spacing:-14.081280pt;}
.ws9{word-spacing:-13.521920pt;}
.ws10{word-spacing:-13.356544pt;}
.wsc{word-spacing:-13.307904pt;}
.wsb{word-spacing:-13.200896pt;}
.wsa{word-spacing:-13.171712pt;}
.wsd{word-spacing:-13.093888pt;}
.wsf{word-spacing:-13.079296pt;}
.ws1{word-spacing:-12.728320pt;}
.ws21{word-spacing:-12.672000pt;}
.ws15{word-spacing:-12.643840pt;}
.ws1e{word-spacing:-12.638208pt;}
.ws5{word-spacing:-12.621312pt;}
.ws1b{word-spacing:-12.610048pt;}
.ws1f{word-spacing:-12.593152pt;}
.ws20{word-spacing:-12.587520pt;}
.ws2{word-spacing:-12.581888pt;}
.ws11{word-spacing:-12.576256pt;}
.ws8{word-spacing:-12.570624pt;}
.ws0{word-spacing:-12.559360pt;}
.ws12{word-spacing:-12.548096pt;}
.ws6{word-spacing:-12.542464pt;}
.ws3{word-spacing:-12.531200pt;}
.ws1a{word-spacing:-12.525568pt;}
.ws14{word-spacing:-12.519936pt;}
.ws13{word-spacing:-12.503040pt;}
.ws7{word-spacing:-12.463616pt;}
.ws16{word-spacing:-12.452352pt;}
.ws1d{word-spacing:-12.149760pt;}
.ws1c{word-spacing:-0.126208pt;}
.ws4{word-spacing:0.000000pt;}
.ws19{word-spacing:0.277248pt;}
.ws18{word-spacing:89.834880pt;}
.ws17{word-spacing:126.646080pt;}
._2b{margin-left:-6.228352pt;}
._28{margin-left:-5.133824pt;}
._13{margin-left:-3.941888pt;}
._7{margin-left:-3.041280pt;}
._6{margin-left:-2.027520pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._8{width:2.027520pt;}
._d{width:2.928640pt;}
._e{width:3.874688pt;}
._b{width:4.899840pt;}
._a{width:6.616192pt;}
._4{width:7.772160pt;}
._3{width:8.898560pt;}
._10{width:10.024960pt;}
._5{width:11.038720pt;}
._11{width:13.730816pt;}
._f{width:14.868480pt;}
._c{width:15.769600pt;}
._9{width:16.783360pt;}
._12{width:18.247680pt;}
._14{width:20.894720pt;}
._1c{width:22.471680pt;}
._1d{width:24.161280pt;}
._18{width:27.335680pt;}
._19{width:28.554240pt;}
._26{width:30.581760pt;}
._1a{width:34.017280pt;}
._1f{width:39.818240pt;}
._27{width:43.760640pt;}
._22{width:47.815680pt;}
._1e{width:51.973120pt;}
._21{width:53.785600pt;}
._20{width:54.912000pt;}
._2c{width:61.670400pt;}
._2d{width:62.809600pt;}
._16{width:66.831360pt;}
._25{width:67.978240pt;}
._1b{width:71.920640pt;}
._2a{width:74.230912pt;}
._29{width:75.186176pt;}
._17{width:86.115840pt;}
._23{width:111.063040pt;}
._24{width:111.971328pt;}
._15{width:755.271680pt;}
._1{width:2203.165184pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:3.786667pt;}
.y102{bottom:4.106667pt;}
.ye1{bottom:4.160000pt;}
.y123{bottom:4.213333pt;}
.yc5{bottom:4.320000pt;}
.y144{bottom:4.426667pt;}
.ye9{bottom:4.480000pt;}
.y13f{bottom:4.533333pt;}
.yb5{bottom:4.586667pt;}
.yb7{bottom:4.640000pt;}
.yc7{bottom:4.693333pt;}
.y13c{bottom:4.746667pt;}
.yeb{bottom:4.906667pt;}
.y84{bottom:4.960000pt;}
.yb9{bottom:5.013333pt;}
.ybb{bottom:5.066667pt;}
.ybd{bottom:5.120000pt;}
.ybf{bottom:5.173333pt;}
.y11c{bottom:5.226667pt;}
.y100{bottom:5.386667pt;}
.yfb{bottom:5.493333pt;}
.yc1{bottom:5.546667pt;}
.yc3{bottom:5.600000pt;}
.y80{bottom:11.680000pt;}
.y7a{bottom:12.160000pt;}
.y7d{bottom:12.266667pt;}
.yd1{bottom:16.000000pt;}
.y120{bottom:17.920000pt;}
.y83{bottom:18.720000pt;}
.yb3{bottom:20.533333pt;}
.yf5{bottom:20.640000pt;}
.ye0{bottom:21.120000pt;}
.y143{bottom:21.386667pt;}
.ye8{bottom:21.440000pt;}
.y141{bottom:21.600000pt;}
.y13e{bottom:21.813333pt;}
.ye3{bottom:21.866667pt;}
.y13b{bottom:22.026667pt;}
.y136{bottom:22.080000pt;}
.y8b{bottom:22.186667pt;}
.y139{bottom:22.240000pt;}
.ye5{bottom:22.293333pt;}
.y7f{bottom:25.440000pt;}
.y79{bottom:25.920000pt;}
.y7c{bottom:26.026667pt;}
.y94{bottom:27.840000pt;}
.y92{bottom:28.160000pt;}
.y77{bottom:28.853333pt;}
.y95{bottom:29.440000pt;}
.y82{bottom:32.480000pt;}
.y8f{bottom:35.520000pt;}
.y8a{bottom:35.946667pt;}
.y88{bottom:37.280000pt;}
.ye7{bottom:38.720000pt;}
.y135{bottom:39.040000pt;}
.y138{bottom:39.200000pt;}
.yd0{bottom:42.240000pt;}
.y74{bottom:42.293333pt;}
.y76{bottom:42.613333pt;}
.y87{bottom:51.040000pt;}
.y2{bottom:51.840000pt;}
.y73{bottom:56.373333pt;}
.yca{bottom:58.240000pt;}
.y86{bottom:64.800000pt;}
.y72{bottom:70.133333pt;}
.yfa{bottom:78.666667pt;}
.y75{bottom:84.213333pt;}
.y37{bottom:84.480000pt;}
.ycb{bottom:85.440000pt;}
.y11e{bottom:92.000000pt;}
.y155{bottom:93.120000pt;}
.y6f{bottom:93.760000pt;}
.y176{bottom:95.680000pt;}
.yf9{bottom:96.000000pt;}
.y36{bottom:101.440000pt;}
.y11d{bottom:108.000000pt;}
.yc8{bottom:110.080000pt;}
.y6e{bottom:111.040000pt;}
.ycc{bottom:112.320000pt;}
.y175{bottom:112.640000pt;}
.yf8{bottom:113.333333pt;}
.y35{bottom:118.720000pt;}
.yc6{bottom:122.666667pt;}
.y91{bottom:123.200000pt;}
.y11b{bottom:125.333333pt;}
.y154{bottom:127.040000pt;}
.y6d{bottom:128.000000pt;}
.y174{bottom:129.600000pt;}
.yf7{bottom:130.666667pt;}
.y34{bottom:135.680000pt;}
.ycd{bottom:139.520000pt;}
.yc4{bottom:140.000000pt;}
.y11a{bottom:142.666667pt;}
.y153{bottom:144.320000pt;}
.y6c{bottom:145.280000pt;}
.y173{bottom:146.880000pt;}
.yf6{bottom:148.000000pt;}
.y33{bottom:152.960000pt;}
.yc2{bottom:156.000000pt;}
.y152{bottom:161.280000pt;}
.y6b{bottom:162.240000pt;}
.y172{bottom:163.840000pt;}
.yf4{bottom:164.000000pt;}
.y119{bottom:164.800000pt;}
.yce{bottom:166.720000pt;}
.y32{bottom:169.920000pt;}
.yc0{bottom:173.333333pt;}
.y151{bottom:178.560000pt;}
.y6a{bottom:179.200000pt;}
.y171{bottom:181.120000pt;}
.y118{bottom:181.760000pt;}
.y31{bottom:186.880000pt;}
.ybe{bottom:190.666667pt;}
.ycf{bottom:193.920000pt;}
.y150{bottom:195.520000pt;}
.y69{bottom:196.480000pt;}
.y170{bottom:198.080000pt;}
.y117{bottom:199.040000pt;}
.yf3{bottom:201.600000pt;}
.y30{bottom:204.160000pt;}
.ybc{bottom:208.000000pt;}
.y14f{bottom:212.800000pt;}
.y68{bottom:213.440000pt;}
.y16f{bottom:215.040000pt;}
.y116{bottom:216.000000pt;}
.yf2{bottom:218.560000pt;}
.y2f{bottom:221.120000pt;}
.yba{bottom:225.333333pt;}
.y14e{bottom:229.760000pt;}
.y67{bottom:230.720000pt;}
.y16e{bottom:232.320000pt;}
.y115{bottom:233.280000pt;}
.yf1{bottom:235.840000pt;}
.y2e{bottom:238.400000pt;}
.yb8{bottom:242.666667pt;}
.y14d{bottom:246.720000pt;}
.y66{bottom:247.680000pt;}
.y16d{bottom:249.280000pt;}
.y114{bottom:250.240000pt;}
.yf0{bottom:252.800000pt;}
.y2d{bottom:255.360000pt;}
.yb6{bottom:260.000000pt;}
.y14c{bottom:264.000000pt;}
.y65{bottom:264.640000pt;}
.y16c{bottom:266.560000pt;}
.y113{bottom:267.200000pt;}
.yef{bottom:270.080000pt;}
.y2c{bottom:272.320000pt;}
.yb4{bottom:277.333333pt;}
.y14b{bottom:280.960000pt;}
.y64{bottom:281.920000pt;}
.y16b{bottom:283.520000pt;}
.y112{bottom:284.480000pt;}
.yee{bottom:287.040000pt;}
.y2b{bottom:289.600000pt;}
.yb2{bottom:294.666667pt;}
.y14a{bottom:298.240000pt;}
.y63{bottom:298.880000pt;}
.y16a{bottom:300.480000pt;}
.y111{bottom:301.440000pt;}
.yed{bottom:304.000000pt;}
.y2a{bottom:306.560000pt;}
.y149{bottom:315.200000pt;}
.y70{bottom:315.840000pt;}
.y62{bottom:316.160000pt;}
.y169{bottom:317.760000pt;}
.y110{bottom:318.720000pt;}
.yec{bottom:321.280000pt;}
.y29{bottom:323.840000pt;}
.y148{bottom:332.160000pt;}
.yb1{bottom:332.480000pt;}
.y61{bottom:333.120000pt;}
.yea{bottom:333.333333pt;}
.y168{bottom:334.720000pt;}
.y10f{bottom:335.680000pt;}
.y28{bottom:340.800000pt;}
.yb0{bottom:349.440000pt;}
.y60{bottom:350.400000pt;}
.y167{bottom:352.000000pt;}
.y10e{bottom:352.640000pt;}
.y27{bottom:358.080000pt;}
.y147{bottom:366.400000pt;}
.yaf{bottom:366.720000pt;}
.y5f{bottom:367.360000pt;}
.ye6{bottom:368.000000pt;}
.y166{bottom:368.960000pt;}
.y10d{bottom:369.920000pt;}
.y26{bottom:375.040000pt;}
.yae{bottom:383.680000pt;}
.y5e{bottom:384.320000pt;}
.y165{bottom:385.920000pt;}
.y10c{bottom:386.880000pt;}
.y25{bottom:392.000000pt;}
.yad{bottom:400.640000pt;}
.y5d{bottom:401.600000pt;}
.y164{bottom:403.200000pt;}
.y10b{bottom:404.160000pt;}
.y24{bottom:409.280000pt;}
.y146{bottom:417.600000pt;}
.yac{bottom:417.920000pt;}
.y5c{bottom:418.560000pt;}
.ye4{bottom:418.666667pt;}
.y163{bottom:420.160000pt;}
.y10a{bottom:421.120000pt;}
.y23{bottom:426.240000pt;}
.yab{bottom:434.880000pt;}
.y5b{bottom:435.840000pt;}
.y162{bottom:437.440000pt;}
.y109{bottom:438.080000pt;}
.y22{bottom:443.520000pt;}
.y145{bottom:451.840000pt;}
.yaa{bottom:452.160000pt;}
.y5a{bottom:452.800000pt;}
.ye2{bottom:453.333333pt;}
.y161{bottom:454.400000pt;}
.y108{bottom:455.360000pt;}
.y21{bottom:460.480000pt;}
.y142{bottom:465.333333pt;}
.ya9{bottom:469.120000pt;}
.y59{bottom:469.760000pt;}
.y160{bottom:471.360000pt;}
.y107{bottom:472.320000pt;}
.y20{bottom:477.440000pt;}
.y93{bottom:481.600000pt;}
.y89{bottom:485.333333pt;}
.ya8{bottom:486.080000pt;}
.y58{bottom:487.040000pt;}
.ydf{bottom:488.000000pt;}
.y15f{bottom:488.640000pt;}
.y106{bottom:489.600000pt;}
.y1f{bottom:494.720000pt;}
.y140{bottom:500.000000pt;}
.ya7{bottom:503.360000pt;}
.y57{bottom:504.000000pt;}
.y15e{bottom:505.600000pt;}
.y105{bottom:506.560000pt;}
.y1e{bottom:511.680000pt;}
.ya6{bottom:520.320000pt;}
.y56{bottom:521.280000pt;}
.yde{bottom:521.333333pt;}
.y15d{bottom:522.880000pt;}
.y104{bottom:523.520000pt;}
.y1d{bottom:528.960000pt;}
.y13d{bottom:534.666667pt;}
.ya5{bottom:537.600000pt;}
.y55{bottom:538.240000pt;}
.y15c{bottom:539.840000pt;}
.y103{bottom:542.720000pt;}
.ydd{bottom:543.360000pt;}
.y1c{bottom:545.920000pt;}
.ya4{bottom:554.560000pt;}
.y54{bottom:555.200000pt;}
.y15b{bottom:556.800000pt;}
.ydc{bottom:560.640000pt;}
.y1b{bottom:562.880000pt;}
.y90{bottom:566.080000pt;}
.y13a{bottom:569.333333pt;}
.ya3{bottom:571.520000pt;}
.y85{bottom:572.000000pt;}
.y53{bottom:572.480000pt;}
.y15a{bottom:574.080000pt;}
.ydb{bottom:577.600000pt;}
.y1a{bottom:580.160000pt;}
.ya2{bottom:588.800000pt;}
.y52{bottom:589.440000pt;}
.y159{bottom:591.040000pt;}
.yda{bottom:594.560000pt;}
.y19{bottom:597.120000pt;}
.y137{bottom:604.000000pt;}
.ya1{bottom:605.760000pt;}
.y51{bottom:606.720000pt;}
.y158{bottom:608.320000pt;}
.yd9{bottom:611.840000pt;}
.y18{bottom:614.400000pt;}
.ya0{bottom:623.040000pt;}
.y50{bottom:623.680000pt;}
.y157{bottom:624.960000pt;}
.yd8{bottom:628.800000pt;}
.y17{bottom:631.360000pt;}
.y81{bottom:636.000000pt;}
.y9f{bottom:640.000000pt;}
.y4f{bottom:640.640000pt;}
.y156{bottom:641.280000pt;}
.yd7{bottom:646.080000pt;}
.y16{bottom:648.320000pt;}
.y134{bottom:656.000000pt;}
.y9e{bottom:657.280000pt;}
.y4e{bottom:657.920000pt;}
.yd6{bottom:663.040000pt;}
.y15{bottom:665.600000pt;}
.y9d{bottom:674.240000pt;}
.y4d{bottom:674.880000pt;}
.yd5{bottom:680.000000pt;}
.y14{bottom:682.560000pt;}
.y9c{bottom:691.200000pt;}
.y4c{bottom:692.160000pt;}
.yd4{bottom:697.280000pt;}
.y13{bottom:699.840000pt;}
.y133{bottom:708.000000pt;}
.y9b{bottom:708.480000pt;}
.y4b{bottom:709.120000pt;}
.yd3{bottom:714.240000pt;}
.y7e{bottom:716.000000pt;}
.y7b{bottom:717.333333pt;}
.y12{bottom:721.600000pt;}
.y9a{bottom:725.440000pt;}
.y4a{bottom:726.080000pt;}
.y132{bottom:730.560000pt;}
.yd2{bottom:733.440000pt;}
.y11{bottom:733.760000pt;}
.y99{bottom:742.720000pt;}
.y49{bottom:743.360000pt;}
.y131{bottom:747.840000pt;}
.y10{bottom:755.840000pt;}
.y98{bottom:759.680000pt;}
.y48{bottom:760.320000pt;}
.y130{bottom:764.800000pt;}
.yf{bottom:768.000000pt;}
.y97{bottom:776.640000pt;}
.y47{bottom:777.600000pt;}
.y12f{bottom:782.080000pt;}
.y96{bottom:789.760000pt;}
.ye{bottom:790.080000pt;}
.yc9{bottom:791.040000pt;}
.y46{bottom:794.560000pt;}
.y12e{bottom:799.040000pt;}
.y78{bottom:800.000000pt;}
.yd{bottom:802.240000pt;}
.y45{bottom:811.520000pt;}
.y12d{bottom:816.000000pt;}
.yc{bottom:819.200000pt;}
.y44{bottom:828.800000pt;}
.y12c{bottom:833.280000pt;}
.yb{bottom:836.480000pt;}
.y43{bottom:845.760000pt;}
.y12b{bottom:850.240000pt;}
.ya{bottom:853.440000pt;}
.y42{bottom:863.040000pt;}
.y12a{bottom:867.520000pt;}
.y9{bottom:870.720000pt;}
.y8e{bottom:875.840000pt;}
.y71{bottom:878.666667pt;}
.y41{bottom:880.000000pt;}
.y129{bottom:884.480000pt;}
.y8{bottom:888.640000pt;}
.y40{bottom:897.280000pt;}
.y128{bottom:901.440000pt;}
.y7{bottom:911.040000pt;}
.y127{bottom:913.333333pt;}
.y3f{bottom:914.240000pt;}
.y126{bottom:930.666667pt;}
.y3e{bottom:931.200000pt;}
.y6{bottom:933.120000pt;}
.y125{bottom:948.000000pt;}
.y3d{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y101{bottom:961.333333pt;}
.y124{bottom:965.333333pt;}
.y3c{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.yff{bottom:977.333333pt;}
.y3{bottom:980.480000pt;}
.y122{bottom:982.666667pt;}
.y3b{bottom:982.720000pt;}
.yfe{bottom:994.666667pt;}
.y121{bottom:998.666667pt;}
.y3a{bottom:999.680000pt;}
.yfd{bottom:1012.000000pt;}
.y11f{bottom:1016.000000pt;}
.y39{bottom:1016.640000pt;}
.y8c{bottom:1017.333333pt;}
.yfc{bottom:1029.333333pt;}
.y38{bottom:1033.920000pt;}
.y1{bottom:1061.120000pt;}
.hd{height:16.000000pt;}
.h13{height:17.333333pt;}
.h12{height:18.666667pt;}
.h6{height:24.740625pt;}
.h18{height:32.000000pt;}
.h15{height:33.083750pt;}
.h11{height:34.666667pt;}
.h8{height:35.411250pt;}
.h16{height:36.000000pt;}
.h3{height:38.500000pt;}
.h1a{height:38.587500pt;}
.h2{height:40.425000pt;}
.h5{height:43.940625pt;}
.ha{height:45.333333pt;}
.h9{height:46.666667pt;}
.h17{height:52.000000pt;}
.h19{height:53.333333pt;}
.h4{height:55.100000pt;}
.hc{height:66.666667pt;}
.h10{height:76.480000pt;}
.hb{height:110.666667pt;}
.h7{height:121.333333pt;}
.he{height:130.240000pt;}
.h14{height:238.720000pt;}
.hf{height:288.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:14.400000pt;}
.w10{width:116.000000pt;}
.wd{width:121.333333pt;}
.w11{width:129.333333pt;}
.wf{width:137.333333pt;}
.w9{width:140.000000pt;}
.wc{width:144.000000pt;}
.w8{width:164.000000pt;}
.w6{width:168.000000pt;}
.w13{width:172.000000pt;}
.w7{width:176.000000pt;}
.wb{width:184.000000pt;}
.w14{width:194.666667pt;}
.w2{width:197.333333pt;}
.w3{width:198.666667pt;}
.we{width:265.333333pt;}
.w12{width:280.000000pt;}
.w15{width:321.333333pt;}
.w16{width:322.666667pt;}
.w4{width:453.333333pt;}
.wa{width:480.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x36{left:6.986667pt;}
.x1f{left:8.213205pt;}
.x13{left:9.973301pt;}
.x1c{left:11.473333pt;}
.x24{left:14.813120pt;}
.x23{left:20.893120pt;}
.x1d{left:24.980000pt;}
.x12{left:28.173173pt;}
.x16{left:29.066773pt;}
.x2e{left:31.921813pt;}
.x2c{left:35.304853pt;}
.x14{left:47.106453pt;}
.x32{left:50.590933pt;}
.x1{left:55.119776pt;}
.x31{left:57.557547pt;}
.x1a{left:59.853504pt;}
.x33{left:61.105387pt;}
.x25{left:62.400267pt;}
.x30{left:64.811733pt;}
.x10{left:75.519872pt;}
.x6{left:77.625664pt;}
.x39{left:81.838827pt;}
.x5{left:86.143232pt;}
.x38{left:90.124160pt;}
.x1b{left:92.480000pt;}
.x4{left:94.386400pt;}
.xf{left:112.837568pt;}
.x18{left:132.000000pt;}
.x11{left:134.666667pt;}
.x19{left:136.000000pt;}
.xc{left:157.462560pt;}
.x3{left:160.946304pt;}
.x26{left:180.825200pt;}
.xd{left:185.066080pt;}
.x20{left:241.333333pt;}
.x28{left:257.333333pt;}
.x2b{left:338.666667pt;}
.x35{left:353.333333pt;}
.x2{left:393.676160pt;}
.x15{left:394.666667pt;}
.x17{left:396.000000pt;}
.x29{left:400.000000pt;}
.x21{left:416.000000pt;}
.xb{left:438.966400pt;}
.x2d{left:474.666667pt;}
.x2a{left:520.000000pt;}
.x37{left:524.000000pt;}
.xe{left:545.142400pt;}
.x34{left:550.546560pt;}
.x27{left:552.146560pt;}
.x1e{left:574.386560pt;}
.x22{left:578.666667pt;}
.x2f{left:589.333333pt;}
.x8{left:590.904640pt;}
.x7{left:608.267840pt;}
.x9{left:617.298240pt;}
.xa{left:718.053120pt;}
}




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