
    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_b46f36503e47e7ef6f91a0ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ba595e70bcaf7db3cc3f7e77.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_cae37e0d0e4f37af63690b29.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_1e1771780d3d4a5f2f656ee3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_37551f51f169b1951b90ad64.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_5ca4f8c79c37ce46283ec250.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_d4550e04b6b7629369ceb0f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.823730;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_ae7815d03b979b9b57a05ff5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_dd40f3b412a012a9085daa09.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_177efcacd53bb08619dc7421.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_c9e77bf18c8a59ab9f4b7f7e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.401855;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_d6641b31978907329f5f1aeb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.060547;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_14eb165c6a2d9a8571bd9508.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6d37f56f25593258cf145ff8.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5d5cbcc81254b4c89a85409f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c5699d1da4573b2431d1a9b5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.360000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls11{letter-spacing:-0.666000px;}
.ls18{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.513600px;}
.ls6{letter-spacing:-0.303600px;}
.ls1c{letter-spacing:-0.259800px;}
.ls1b{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.054720px;}
.ls13{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.109200px;}
.ls9{letter-spacing:0.109440px;}
.lsd{letter-spacing:0.129000px;}
.ls5{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.666000px;}
.lsc{letter-spacing:0.900000px;}
.ls14{letter-spacing:3.780000px;}
.ls10{letter-spacing:5.040000px;}
.ls17{letter-spacing:5.220000px;}
.ls12{letter-spacing:8.820000px;}
.ls16{letter-spacing:10.260000px;}
.ls1d{letter-spacing:15.300000px;}
.ls1e{letter-spacing:33.300000px;}
.ls2{letter-spacing:60.480000px;}
.ls3{letter-spacing:61.200000px;}
.ls1a{letter-spacing:68.400000px;}
.lsb{letter-spacing:1500.834720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-38.880000px;}
.ws11{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.606000px;}
.ws7{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.426400px;}
.wsc{word-spacing:-14.274000px;}
.ws2{word-spacing:-13.734480px;}
.ws9{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:0.207840px;}
._14{margin-left:-2.301360px;}
._4{margin-left:-1.179360px;}
._0{width:1.203360px;}
._1{width:2.874480px;}
._5{width:3.884880px;}
._6{width:5.067600px;}
._c{width:6.203040px;}
._16{width:7.204080px;}
._13{width:8.345520px;}
._f{width:9.442080px;}
._d{width:11.234880px;}
._e{width:12.788640px;}
._17{width:13.915920px;}
._11{width:16.135200px;}
._12{width:17.477520px;}
._15{width:19.302480px;}
._18{width:20.728560px;}
._a{width:22.529520px;}
._b{width:23.711520px;}
._10{width:25.075200px;}
._19{width:26.512560px;}
._7{width:28.266480px;}
._1a{width:29.274240px;}
._1d{width:30.957600px;}
._1c{width:32.320080px;}
._1f{width:33.816000px;}
._20{width:35.044320px;}
._1b{width:36.513360px;}
._8{width:40.807920px;}
._9{width:42.617040px;}
._2c{width:45.050880px;}
._22{width:46.590480px;}
._23{width:47.591280px;}
._21{width:48.606480px;}
._29{width:54.783840px;}
._26{width:56.353680px;}
._1e{width:68.138880px;}
._27{width:77.820480px;}
._28{width:78.976800px;}
._25{width:82.351920px;}
._24{width:83.653200px;}
._2a{width:104.699520px;}
._2b{width:106.293600px;}
._2{width:232.795440px;}
._3{width:1374.114720px;}
.fc9{color:rgb(102,102,255);}
.fc8{color:rgb(167,181,37);}
.fc7{color:rgb(0,153,255);}
.fc5{color:rgb(112,48,160);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,111,192);}
.fca{color:rgb(0,162,158);}
.fc1{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:18.000000px;}
.fsc{font-size:30.240000px;}
.fsa{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.045000px;}
.y3b{bottom:3.060000px;}
.y14e{bottom:3.225000px;}
.y137{bottom:3.240000px;}
.y26{bottom:3.600000px;}
.y5f{bottom:10.980000px;}
.y60{bottom:11.520000px;}
.y24{bottom:14.040000px;}
.y5c{bottom:16.725000px;}
.y13b{bottom:18.165000px;}
.y13e{bottom:18.180000px;}
.y152{bottom:18.345000px;}
.y3a{bottom:19.440000px;}
.y25{bottom:20.880000px;}
.y5b{bottom:30.585000px;}
.y39{bottom:36.180000px;}
.y38{bottom:52.560000px;}
.y5{bottom:66.525004px;}
.y37{bottom:68.940000px;}
.y3e{bottom:70.560000px;}
.y36{bottom:85.320000px;}
.y3d{bottom:86.940000px;}
.y4{bottom:97.125005px;}
.y35{bottom:102.105000px;}
.y3c{bottom:103.365000px;}
.y34{bottom:119.385000px;}
.y33{bottom:135.765000px;}
.y22{bottom:139.264499px;}
.y19{bottom:196.933500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y28{bottom:278.490000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y5d{bottom:320.070000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y59{bottom:324.045000px;}
.y167{bottom:324.210000px;}
.yce{bottom:326.910000px;}
.yec{bottom:330.690000px;}
.y132{bottom:333.210000px;}
.y17b{bottom:334.110000px;}
.y153{bottom:336.825000px;}
.y11d{bottom:339.510000px;}
.y166{bottom:341.490000px;}
.y8d{bottom:343.830000px;}
.ycd{bottom:344.190000px;}
.y19a{bottom:344.910000px;}
.yeb{bottom:347.970000px;}
.y10{bottom:348.133500px;}
.y131{bottom:350.490000px;}
.y17a{bottom:351.390000px;}
.y127{bottom:354.090000px;}
.y11c{bottom:356.610000px;}
.y165{bottom:358.590000px;}
.y151{bottom:360.045000px;}
.y8c{bottom:361.110000px;}
.ycc{bottom:361.470000px;}
.y199{bottom:362.190000px;}
.y58{bottom:367.410000px;}
.yb8{bottom:367.590000px;}
.y126{bottom:367.950000px;}
.y179{bottom:368.670000px;}
.yea{bottom:373.710000px;}
.y11b{bottom:373.890000px;}
.y164{bottom:375.870000px;}
.y8b{bottom:378.390000px;}
.ycb{bottom:378.750000px;}
.y57{bottom:382.530000px;}
.y198{bottom:383.790000px;}
.yb7{bottom:384.870000px;}
.yf{bottom:386.785499px;}
.ye9{bottom:389.370000px;}
.y178{bottom:390.450000px;}
.y11a{bottom:391.170000px;}
.y163{bottom:393.150000px;}
.y8a{bottom:395.670000px;}
.yca{bottom:396.030000px;}
.y56{bottom:396.930000px;}
.y150{bottom:398.565000px;}
.y197{bottom:401.070000px;}
.yb6{bottom:402.150000px;}
.ye8{bottom:403.230000px;}
.y177{bottom:407.730000px;}
.ye{bottom:408.044999px;}
.y119{bottom:408.450000px;}
.y89{bottom:412.950000px;}
.yc9{bottom:413.310000px;}
.y196{bottom:418.350000px;}
.yb5{bottom:419.430000px;}
.y14f{bottom:421.785000px;}
.y55{bottom:423.210000px;}
.y176{bottom:424.830000px;}
.y118{bottom:425.730000px;}
.y88{bottom:430.230000px;}
.yc8{bottom:430.410000px;}
.yb4{bottom:436.710000px;}
.y195{bottom:440.130000px;}
.y175{bottom:442.110000px;}
.y117{bottom:443.010000px;}
.y14d{bottom:445.185000px;}
.y87{bottom:447.330000px;}
.yc7{bottom:447.690000px;}
.y54{bottom:448.590000px;}
.yb3{bottom:453.990000px;}
.y194{bottom:457.455000px;}
.y174{bottom:459.435000px;}
.y116{bottom:460.155000px;}
.y86{bottom:464.655000px;}
.y53{bottom:465.015000px;}
.y14c{bottom:468.435000px;}
.yb2{bottom:471.135000px;}
.y193{bottom:474.735000px;}
.y173{bottom:476.715000px;}
.y130{bottom:480.135000px;}
.y85{bottom:481.935000px;}
.yc6{bottom:482.295000px;}
.yd{bottom:484.864502px;}
.y115{bottom:486.435000px;}
.y162{bottom:488.415000px;}
.y52{bottom:490.395000px;}
.y105{bottom:490.935000px;}
.y14b{bottom:491.835000px;}
.yb1{bottom:497.415000px;}
.y172{bottom:498.495000px;}
.y84{bottom:499.215000px;}
.yc{bottom:502.864502px;}
.y114{bottom:503.715000px;}
.y161{bottom:505.695000px;}
.y51{bottom:506.775000px;}
.y104{bottom:508.215000px;}
.y192{bottom:514.335000px;}
.yb0{bottom:514.695000px;}
.y14a{bottom:515.055000px;}
.y171{bottom:515.775000px;}
.yb{bottom:520.864502px;}
.y113{bottom:520.995000px;}
.y160{bottom:522.975000px;}
.y50{bottom:523.155000px;}
.y83{bottom:525.495000px;}
.yaf{bottom:531.975000px;}
.y170{bottom:532.875000px;}
.y191{bottom:534.315000px;}
.yc5{bottom:534.675000px;}
.y112{bottom:538.275000px;}
.y149{bottom:538.455000px;}
.ya{bottom:538.864499px;}
.y4f{bottom:539.535000px;}
.y82{bottom:542.775000px;}
.yae{bottom:549.255000px;}
.y16f{bottom:550.155000px;}
.y190{bottom:551.595000px;}
.yc4{bottom:551.955000px;}
.y111{bottom:555.555000px;}
.y4e{bottom:555.915000px;}
.y9{bottom:556.864499px;}
.y81{bottom:559.875000px;}
.y148{bottom:561.855000px;}
.yad{bottom:566.535000px;}
.yc3{bottom:569.235000px;}
.y4d{bottom:572.295000px;}
.y110{bottom:572.655000px;}
.y18f{bottom:574.095000px;}
.y16e{bottom:576.075000px;}
.y80{bottom:577.155000px;}
.yac{bottom:583.635000px;}
.y147{bottom:585.075000px;}
.y103{bottom:586.155000px;}
.yc2{bottom:586.515000px;}
.y10f{bottom:589.935000px;}
.y12f{bottom:592.635000px;}
.y4c{bottom:593.175000px;}
.y18e{bottom:594.075000px;}
.y7f{bottom:594.435000px;}
.yab{bottom:600.915000px;}
.y16d{bottom:602.355000px;}
.y102{bottom:603.435000px;}
.yc1{bottom:603.795000px;}
.y146{bottom:608.475000px;}
.y4b{bottom:609.735000px;}
.y12e{bottom:609.915000px;}
.y18d{bottom:611.355000px;}
.y7e{bottom:611.715000px;}
.y10e{bottom:616.215000px;}
.yaa{bottom:618.195000px;}
.y101{bottom:620.715000px;}
.yc0{bottom:621.075000px;}
.y4a{bottom:626.115000px;}
.y12d{bottom:627.195000px;}
.ye7{bottom:627.915000px;}
.y7d{bottom:628.995000px;}
.y145{bottom:631.695000px;}
.y18c{bottom:632.955000px;}
.y10d{bottom:633.495000px;}
.y15f{bottom:635.475000px;}
.y100{bottom:637.995000px;}
.ybf{bottom:638.175000px;}
.y49{bottom:642.495000px;}
.ya9{bottom:644.475000px;}
.ye6{bottom:645.195000px;}
.y8{bottom:645.510000px;}
.y16c{bottom:646.095000px;}
.y1b0{bottom:648.255000px;}
.y18b{bottom:650.235000px;}
.y10c{bottom:650.775000px;}
.y15e{bottom:652.755000px;}
.y7c{bottom:655.095000px;}
.y48{bottom:658.875000px;}
.ya8{bottom:661.755000px;}
.ye5{bottom:662.475000px;}
.y16b{bottom:663.375000px;}
.ybe{bottom:664.095000px;}
.y1af{bottom:665.535000px;}
.y7{bottom:666.771000px;}
.y18a{bottom:667.515000px;}
.y10b{bottom:667.875000px;}
.y15d{bottom:669.855000px;}
.y7b{bottom:672.375000px;}
.y47{bottom:675.255000px;}
.y144{bottom:678.315000px;}
.ya7{bottom:678.855000px;}
.ybd{bottom:679.575000px;}
.ye4{bottom:679.755000px;}
.y1ae{bottom:682.815000px;}
.y15c{bottom:687.165000px;}
.y16a{bottom:689.325000px;}
.y7a{bottom:689.685000px;}
.y46{bottom:691.665000px;}
.y10a{bottom:694.185000px;}
.ya6{bottom:696.165000px;}
.ye3{bottom:696.885000px;}
.y1ad{bottom:700.125000px;}
.y143{bottom:701.745000px;}
.y15b{bottom:704.445000px;}
.y189{bottom:706.605000px;}
.yff{bottom:706.965000px;}
.y45{bottom:708.045000px;}
.y109{bottom:711.465000px;}
.ya5{bottom:713.445000px;}
.ye2{bottom:714.165000px;}
.y169{bottom:715.605000px;}
.y79{bottom:715.965000px;}
.y1ac{bottom:722.625000px;}
.y188{bottom:723.885000px;}
.yfe{bottom:724.245000px;}
.y44{bottom:724.425000px;}
.y125{bottom:724.965000px;}
.y142{bottom:725.145000px;}
.y6{bottom:726.298500px;}
.ya4{bottom:730.725000px;}
.ye1{bottom:731.445000px;}
.y78{bottom:733.245000px;}
.y108{bottom:737.745000px;}
.y43{bottom:740.805000px;}
.yfd{bottom:741.525000px;}
.y124{bottom:742.245000px;}
.y1ab{bottom:742.425000px;}
.y187{bottom:746.385000px;}
.ya3{bottom:748.005000px;}
.y141{bottom:748.365000px;}
.ye0{bottom:748.725000px;}
.y77{bottom:750.525000px;}
.y3{bottom:752.599495px;}
.y107{bottom:754.665000px;}
.y12c{bottom:757.005000px;}
.y42{bottom:757.185000px;}
.y123{bottom:759.525000px;}
.y1aa{bottom:759.705000px;}
.ya2{bottom:764.925000px;}
.y15a{bottom:765.285000px;}
.ydf{bottom:766.005000px;}
.y186{bottom:766.185000px;}
.yfc{bottom:767.265000px;}
.y76{bottom:767.625000px;}
.y106{bottom:768.525000px;}
.y140{bottom:771.780000px;}
.y41{bottom:773.565000px;}
.y12b{bottom:774.285000px;}
.y122{bottom:776.625000px;}
.y1a9{bottom:781.485000px;}
.y159{bottom:782.385000px;}
.yde{bottom:783.285000px;}
.y185{bottom:783.465000px;}
.y75{bottom:784.905000px;}
.ya1{bottom:791.385000px;}
.yfb{bottom:793.545000px;}
.y121{bottom:793.905000px;}
.y40{bottom:794.085000px;}
.y13f{bottom:794.985000px;}
.y1a8{bottom:798.765000px;}
.y158{bottom:799.665000px;}
.ydd{bottom:800.385000px;}
.y74{bottom:802.185000px;}
.y184{bottom:805.245000px;}
.ya0{bottom:808.665000px;}
.y3f{bottom:810.465000px;}
.y120{bottom:811.185000px;}
.y1a7{bottom:816.045000px;}
.y157{bottom:816.945000px;}
.ydc{bottom:817.665000px;}
.y13d{bottom:818.385000px;}
.y73{bottom:819.465000px;}
.yfa{bottom:820.185000px;}
.y183{bottom:822.525000px;}
.y32{bottom:824.505000px;}
.y9f{bottom:825.945000px;}
.y168{bottom:828.465000px;}
.y156{bottom:834.225000px;}
.ydb{bottom:834.945000px;}
.y72{bottom:836.745000px;}
.yf9{bottom:837.465000px;}
.y1a6{bottom:837.825000px;}
.y182{bottom:839.805000px;}
.y9e{bottom:843.225000px;}
.y71{bottom:854.025000px;}
.yf8{bottom:854.745000px;}
.y1a5{bottom:854.925000px;}
.y13c{bottom:856.725000px;}
.y9d{bottom:860.505000px;}
.yda{bottom:861.225000px;}
.y181{bottom:862.305000px;}
.y70{bottom:871.125000px;}
.yf7{bottom:872.025000px;}
.y1a4{bottom:872.205000px;}
.y9c{bottom:877.785000px;}
.yd9{bottom:878.505000px;}
.y2{bottom:879.369000px;}
.y13a{bottom:880.140000px;}
.y180{bottom:882.285000px;}
.y6f{bottom:888.405000px;}
.yf6{bottom:889.125000px;}
.y1a3{bottom:893.985000px;}
.y9b{bottom:894.885000px;}
.yd8{bottom:895.785000px;}
.y17f{bottom:899.385000px;}
.yf5{bottom:906.405000px;}
.y1a2{bottom:911.265000px;}
.y9a{bottom:912.165000px;}
.yd7{bottom:912.885000px;}
.y6e{bottom:914.685000px;}
.y139{bottom:918.510000px;}
.y12a{bottom:921.210000px;}
.yf4{bottom:923.730000px;}
.y1a1{bottom:928.590000px;}
.y99{bottom:929.490000px;}
.yd6{bottom:930.210000px;}
.y6d{bottom:932.010000px;}
.y155{bottom:938.130000px;}
.y129{bottom:938.490000px;}
.y11f{bottom:941.010000px;}
.y138{bottom:941.730000px;}
.y1a0{bottom:945.870000px;}
.yd5{bottom:947.490000px;}
.y6c{bottom:949.290000px;}
.yf3{bottom:950.010000px;}
.y154{bottom:955.410000px;}
.y98{bottom:955.770000px;}
.y11e{bottom:958.290000px;}
.yd4{bottom:964.770000px;}
.y136{bottom:965.130000px;}
.y1{bottom:966.726000px;}
.yf2{bottom:967.290000px;}
.y19f{bottom:968.370000px;}
.y97{bottom:973.050000px;}
.y6b{bottom:975.570000px;}
.y31{bottom:977.550000px;}
.yd3{bottom:982.050000px;}
.yf1{bottom:984.570000px;}
.y19e{bottom:988.170000px;}
.y135{bottom:988.530000px;}
.y96{bottom:990.150000px;}
.y6a{bottom:992.670000px;}
.y30{bottom:994.650000px;}
.yd2{bottom:999.150000px;}
.yf0{bottom:1001.670000px;}
.y19d{bottom:1005.450000px;}
.y95{bottom:1007.430000px;}
.y69{bottom:1009.950000px;}
.y134{bottom:1011.750000px;}
.yd1{bottom:1016.430000px;}
.yef{bottom:1018.950000px;}
.y2f{bottom:1019.490000px;}
.y19c{bottom:1022.730000px;}
.y94{bottom:1024.710000px;}
.y68{bottom:1027.230000px;}
.y17e{bottom:1029.210000px;}
.yd0{bottom:1033.710000px;}
.y133{bottom:1035.150000px;}
.yee{bottom:1036.230000px;}
.y2e{bottom:1037.490000px;}
.y93{bottom:1041.990000px;}
.y67{bottom:1044.510000px;}
.y17d{bottom:1046.490000px;}
.y2d{bottom:1048.290000px;}
.ycf{bottom:1050.990000px;}
.yed{bottom:1053.510000px;}
.y128{bottom:1059.270000px;}
.y66{bottom:1061.790000px;}
.y17c{bottom:1063.770000px;}
.y2c{bottom:1066.470000px;}
.y92{bottom:1068.270000px;}
.ybc{bottom:1070.790000px;}
.y65{bottom:1078.890000px;}
.y2b{bottom:1085.190000px;}
.y91{bottom:1085.550000px;}
.ybb{bottom:1087.890000px;}
.y64{bottom:1096.170000px;}
.y19b{bottom:1100.670000px;}
.y90{bottom:1102.650000px;}
.y2a{bottom:1104.090000px;}
.yba{bottom:1105.170000px;}
.y8f{bottom:1119.930000px;}
.y63{bottom:1122.450000px;}
.y29{bottom:1129.650000px;}
.y8e{bottom:1137.210000px;}
.y62{bottom:1139.370000px;}
.yb9{bottom:1139.730000px;}
.y27{bottom:1155.240000px;}
.y61{bottom:1157.760000px;}
.y23{bottom:1172.880000px;}
.y5e{bottom:1175.400000px;}
.h21{height:14.925000px;}
.h26{height:14.940000px;}
.h20{height:15.105000px;}
.h24{height:15.120000px;}
.h28{height:15.141000px;}
.h27{height:15.150000px;}
.h1c{height:17.666016px;}
.h18{height:29.678906px;}
.h22{height:30.045000px;}
.h25{height:30.060000px;}
.h29{height:30.225000px;}
.h1d{height:32.040000px;}
.h7{height:32.130000px;}
.h9{height:34.560000px;}
.h17{height:37.771172px;}
.h11{height:40.964766px;}
.h1a{height:41.385000px;}
.h19{height:41.391000px;}
.hb{height:43.506914px;}
.h6{height:45.900000px;}
.h1b{height:47.321367px;}
.h3{height:48.195000px;}
.he{height:48.234023px;}
.h1e{height:49.838906px;}
.h1f{height:52.971680px;}
.h23{height:52.998047px;}
.h2{height:55.080000px;}
.h2a{height:58.621992px;}
.h15{height:58.651172px;}
.hc{height:60.226875px;}
.h12{height:64.978594px;}
.h14{height:65.010937px;}
.hf{height:66.757500px;}
.hd{height:67.992539px;}
.h10{height:68.324766px;}
.ha{height:70.664062px;}
.h2b{height:74.004654px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h13{height:149.062500px;}
.h0{height:1262.833500px;}
.h16{height:1262.864910px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:74.865000px;}
.w4{width:75.585000px;}
.w9{width:120.442500px;}
.wd{width:161.475000px;}
.w7{width:198.735000px;}
.w6{width:343.500000px;}
.we{width:394.815000px;}
.wa{width:448.635000px;}
.w5{width:493.470000px;}
.wb{width:494.190000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w8{width:892.957500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:3.765000px;}
.x6{left:8.085000px;}
.x17{left:16.740000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:162.045000px;}
.xa{left:170.130000px;}
.x9{left:177.720000px;}
.x11{left:181.470000px;}
.x1f{left:191.730000px;}
.x8{left:196.080000px;}
.xe{left:201.990000px;}
.x4{left:203.484001px;}
.xc{left:212.430000px;}
.x1d{left:217.290000px;}
.xb{left:225.390000px;}
.x7{left:237.645000px;}
.x10{left:258.915000px;}
.x20{left:275.295000px;}
.x15{left:282.495000px;}
.x1b{left:289.155000px;}
.x18{left:318.315000px;}
.x22{left:332.355000px;}
.xf{left:359.175000px;}
.x19{left:366.735000px;}
.x14{left:386.175000px;}
.x12{left:416.805000px;}
.xd{left:446.505000px;}
.x3{left:454.959000px;}
.x13{left:514.920000px;}
.x16{left:656.250000px;}
.x1e{left:681.810000px;}
.x1c{left:689.370000px;}
.x1a{left:719.430000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls11{letter-spacing:-0.592000pt;}
.ls18{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.456533pt;}
.ls6{letter-spacing:-0.269867pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls1b{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.048640pt;}
.ls13{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.097067pt;}
.ls9{letter-spacing:0.097280pt;}
.lsd{letter-spacing:0.114667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.592000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls14{letter-spacing:3.360000pt;}
.ls10{letter-spacing:4.480000pt;}
.ls17{letter-spacing:4.640000pt;}
.ls12{letter-spacing:7.840000pt;}
.ls16{letter-spacing:9.120000pt;}
.ls1d{letter-spacing:13.600000pt;}
.ls1e{letter-spacing:29.600000pt;}
.ls2{letter-spacing:53.760000pt;}
.ls3{letter-spacing:54.400000pt;}
.ls1a{letter-spacing:60.800000pt;}
.lsb{letter-spacing:1334.075307pt;}
.ws8{word-spacing:-34.560000pt;}
.ws11{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.872000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.096533pt;}
.wsf{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.823467pt;}
.wsc{word-spacing:-12.688000pt;}
.ws2{word-spacing:-12.208427pt;}
.ws9{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:0.184747pt;}
._14{margin-left:-2.045653pt;}
._4{margin-left:-1.048320pt;}
._0{width:1.069653pt;}
._1{width:2.555093pt;}
._5{width:3.453227pt;}
._6{width:4.504533pt;}
._c{width:5.513813pt;}
._16{width:6.403627pt;}
._13{width:7.418240pt;}
._f{width:8.392960pt;}
._d{width:9.986560pt;}
._e{width:11.367680pt;}
._17{width:12.369707pt;}
._11{width:14.342400pt;}
._12{width:15.535573pt;}
._15{width:17.157760pt;}
._18{width:18.425387pt;}
._a{width:20.026240pt;}
._b{width:21.076907pt;}
._10{width:22.289067pt;}
._19{width:23.566720pt;}
._7{width:25.125760pt;}
._1a{width:26.021547pt;}
._1d{width:27.517867pt;}
._1c{width:28.728960pt;}
._1f{width:30.058667pt;}
._20{width:31.150507pt;}
._1b{width:32.456320pt;}
._8{width:36.273707pt;}
._9{width:37.881813pt;}
._2c{width:40.045227pt;}
._22{width:41.413760pt;}
._23{width:42.303360pt;}
._21{width:43.205760pt;}
._29{width:48.696747pt;}
._26{width:50.092160pt;}
._1e{width:60.567893pt;}
._27{width:69.173760pt;}
._28{width:70.201600pt;}
._25{width:73.201707pt;}
._24{width:74.358400pt;}
._2a{width:93.066240pt;}
._2b{width:94.483200pt;}
._2{width:206.929280pt;}
._3{width:1221.435307pt;}
.fse{font-size:16.000000pt;}
.fsc{font-size:26.880000pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:2.706667pt;}
.y3b{bottom:2.720000pt;}
.y14e{bottom:2.866667pt;}
.y137{bottom:2.880000pt;}
.y26{bottom:3.200000pt;}
.y5f{bottom:9.760000pt;}
.y60{bottom:10.240000pt;}
.y24{bottom:12.480000pt;}
.y5c{bottom:14.866667pt;}
.y13b{bottom:16.146667pt;}
.y13e{bottom:16.160000pt;}
.y152{bottom:16.306667pt;}
.y3a{bottom:17.280000pt;}
.y25{bottom:18.560000pt;}
.y5b{bottom:27.186667pt;}
.y39{bottom:32.160000pt;}
.y38{bottom:46.720000pt;}
.y5{bottom:59.133337pt;}
.y37{bottom:61.280000pt;}
.y3e{bottom:62.720000pt;}
.y36{bottom:75.840000pt;}
.y3d{bottom:77.280000pt;}
.y4{bottom:86.333337pt;}
.y35{bottom:90.760000pt;}
.y3c{bottom:91.880000pt;}
.y34{bottom:106.120000pt;}
.y33{bottom:120.680000pt;}
.y22{bottom:123.790666pt;}
.y19{bottom:175.052000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y28{bottom:247.546667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y5d{bottom:284.506667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y59{bottom:288.040000pt;}
.y167{bottom:288.186667pt;}
.yce{bottom:290.586667pt;}
.yec{bottom:293.946667pt;}
.y132{bottom:296.186667pt;}
.y17b{bottom:296.986667pt;}
.y153{bottom:299.400000pt;}
.y11d{bottom:301.786667pt;}
.y166{bottom:303.546667pt;}
.y8d{bottom:305.626667pt;}
.ycd{bottom:305.946667pt;}
.y19a{bottom:306.586667pt;}
.yeb{bottom:309.306667pt;}
.y10{bottom:309.452000pt;}
.y131{bottom:311.546667pt;}
.y17a{bottom:312.346667pt;}
.y127{bottom:314.746667pt;}
.y11c{bottom:316.986667pt;}
.y165{bottom:318.746667pt;}
.y151{bottom:320.040000pt;}
.y8c{bottom:320.986667pt;}
.ycc{bottom:321.306667pt;}
.y199{bottom:321.946667pt;}
.y58{bottom:326.586667pt;}
.yb8{bottom:326.746667pt;}
.y126{bottom:327.066667pt;}
.y179{bottom:327.706667pt;}
.yea{bottom:332.186667pt;}
.y11b{bottom:332.346667pt;}
.y164{bottom:334.106667pt;}
.y8b{bottom:336.346667pt;}
.ycb{bottom:336.666667pt;}
.y57{bottom:340.026667pt;}
.y198{bottom:341.146667pt;}
.yb7{bottom:342.106667pt;}
.yf{bottom:343.809333pt;}
.ye9{bottom:346.106667pt;}
.y178{bottom:347.066667pt;}
.y11a{bottom:347.706667pt;}
.y163{bottom:349.466667pt;}
.y8a{bottom:351.706667pt;}
.yca{bottom:352.026667pt;}
.y56{bottom:352.826667pt;}
.y150{bottom:354.280000pt;}
.y197{bottom:356.506667pt;}
.yb6{bottom:357.466667pt;}
.ye8{bottom:358.426667pt;}
.y177{bottom:362.426667pt;}
.ye{bottom:362.706666pt;}
.y119{bottom:363.066667pt;}
.y89{bottom:367.066667pt;}
.yc9{bottom:367.386667pt;}
.y196{bottom:371.866667pt;}
.yb5{bottom:372.826667pt;}
.y14f{bottom:374.920000pt;}
.y55{bottom:376.186667pt;}
.y176{bottom:377.626667pt;}
.y118{bottom:378.426667pt;}
.y88{bottom:382.426667pt;}
.yc8{bottom:382.586667pt;}
.yb4{bottom:388.186667pt;}
.y195{bottom:391.226667pt;}
.y175{bottom:392.986667pt;}
.y117{bottom:393.786667pt;}
.y14d{bottom:395.720000pt;}
.y87{bottom:397.626667pt;}
.yc7{bottom:397.946667pt;}
.y54{bottom:398.746667pt;}
.yb3{bottom:403.546667pt;}
.y194{bottom:406.626667pt;}
.y174{bottom:408.386667pt;}
.y116{bottom:409.026667pt;}
.y86{bottom:413.026667pt;}
.y53{bottom:413.346667pt;}
.y14c{bottom:416.386667pt;}
.yb2{bottom:418.786667pt;}
.y193{bottom:421.986667pt;}
.y173{bottom:423.746667pt;}
.y130{bottom:426.786667pt;}
.y85{bottom:428.386667pt;}
.yc6{bottom:428.706667pt;}
.yd{bottom:430.990669pt;}
.y115{bottom:432.386667pt;}
.y162{bottom:434.146667pt;}
.y52{bottom:435.906667pt;}
.y105{bottom:436.386667pt;}
.y14b{bottom:437.186667pt;}
.yb1{bottom:442.146667pt;}
.y172{bottom:443.106667pt;}
.y84{bottom:443.746667pt;}
.yc{bottom:446.990669pt;}
.y114{bottom:447.746667pt;}
.y161{bottom:449.506667pt;}
.y51{bottom:450.466667pt;}
.y104{bottom:451.746667pt;}
.y192{bottom:457.186667pt;}
.yb0{bottom:457.506667pt;}
.y14a{bottom:457.826667pt;}
.y171{bottom:458.466667pt;}
.yb{bottom:462.990669pt;}
.y113{bottom:463.106667pt;}
.y160{bottom:464.866667pt;}
.y50{bottom:465.026667pt;}
.y83{bottom:467.106667pt;}
.yaf{bottom:472.866667pt;}
.y170{bottom:473.666667pt;}
.y191{bottom:474.946667pt;}
.yc5{bottom:475.266667pt;}
.y112{bottom:478.466667pt;}
.y149{bottom:478.626667pt;}
.ya{bottom:478.990666pt;}
.y4f{bottom:479.586667pt;}
.y82{bottom:482.466667pt;}
.yae{bottom:488.226667pt;}
.y16f{bottom:489.026667pt;}
.y190{bottom:490.306667pt;}
.yc4{bottom:490.626667pt;}
.y111{bottom:493.826667pt;}
.y4e{bottom:494.146667pt;}
.y9{bottom:494.990666pt;}
.y81{bottom:497.666667pt;}
.y148{bottom:499.426667pt;}
.yad{bottom:503.586667pt;}
.yc3{bottom:505.986667pt;}
.y4d{bottom:508.706667pt;}
.y110{bottom:509.026667pt;}
.y18f{bottom:510.306667pt;}
.y16e{bottom:512.066667pt;}
.y80{bottom:513.026667pt;}
.yac{bottom:518.786667pt;}
.y147{bottom:520.066667pt;}
.y103{bottom:521.026667pt;}
.yc2{bottom:521.346667pt;}
.y10f{bottom:524.386667pt;}
.y12f{bottom:526.786667pt;}
.y4c{bottom:527.266667pt;}
.y18e{bottom:528.066667pt;}
.y7f{bottom:528.386667pt;}
.yab{bottom:534.146667pt;}
.y16d{bottom:535.426667pt;}
.y102{bottom:536.386667pt;}
.yc1{bottom:536.706667pt;}
.y146{bottom:540.866667pt;}
.y4b{bottom:541.986667pt;}
.y12e{bottom:542.146667pt;}
.y18d{bottom:543.426667pt;}
.y7e{bottom:543.746667pt;}
.y10e{bottom:547.746667pt;}
.yaa{bottom:549.506667pt;}
.y101{bottom:551.746667pt;}
.yc0{bottom:552.066667pt;}
.y4a{bottom:556.546667pt;}
.y12d{bottom:557.506667pt;}
.ye7{bottom:558.146667pt;}
.y7d{bottom:559.106667pt;}
.y145{bottom:561.506667pt;}
.y18c{bottom:562.626667pt;}
.y10d{bottom:563.106667pt;}
.y15f{bottom:564.866667pt;}
.y100{bottom:567.106667pt;}
.ybf{bottom:567.266667pt;}
.y49{bottom:571.106667pt;}
.ya9{bottom:572.866667pt;}
.ye6{bottom:573.506667pt;}
.y8{bottom:573.786667pt;}
.y16c{bottom:574.306667pt;}
.y1b0{bottom:576.226667pt;}
.y18b{bottom:577.986667pt;}
.y10c{bottom:578.466667pt;}
.y15e{bottom:580.226667pt;}
.y7c{bottom:582.306667pt;}
.y48{bottom:585.666667pt;}
.ya8{bottom:588.226667pt;}
.ye5{bottom:588.866667pt;}
.y16b{bottom:589.666667pt;}
.ybe{bottom:590.306667pt;}
.y1af{bottom:591.586667pt;}
.y7{bottom:592.685334pt;}
.y18a{bottom:593.346667pt;}
.y10b{bottom:593.666667pt;}
.y15d{bottom:595.426667pt;}
.y7b{bottom:597.666667pt;}
.y47{bottom:600.226667pt;}
.y144{bottom:602.946667pt;}
.ya7{bottom:603.426667pt;}
.ybd{bottom:604.066667pt;}
.ye4{bottom:604.226667pt;}
.y1ae{bottom:606.946667pt;}
.y15c{bottom:610.813333pt;}
.y16a{bottom:612.733333pt;}
.y7a{bottom:613.053333pt;}
.y46{bottom:614.813333pt;}
.y10a{bottom:617.053333pt;}
.ya6{bottom:618.813333pt;}
.ye3{bottom:619.453333pt;}
.y1ad{bottom:622.333333pt;}
.y143{bottom:623.773333pt;}
.y15b{bottom:626.173333pt;}
.y189{bottom:628.093333pt;}
.yff{bottom:628.413333pt;}
.y45{bottom:629.373333pt;}
.y109{bottom:632.413333pt;}
.ya5{bottom:634.173333pt;}
.ye2{bottom:634.813333pt;}
.y169{bottom:636.093333pt;}
.y79{bottom:636.413333pt;}
.y1ac{bottom:642.333333pt;}
.y188{bottom:643.453333pt;}
.yfe{bottom:643.773333pt;}
.y44{bottom:643.933333pt;}
.y125{bottom:644.413333pt;}
.y142{bottom:644.573333pt;}
.y6{bottom:645.598667pt;}
.ya4{bottom:649.533333pt;}
.ye1{bottom:650.173333pt;}
.y78{bottom:651.773333pt;}
.y108{bottom:655.773333pt;}
.y43{bottom:658.493333pt;}
.yfd{bottom:659.133333pt;}
.y124{bottom:659.773333pt;}
.y1ab{bottom:659.933333pt;}
.y187{bottom:663.453333pt;}
.ya3{bottom:664.893333pt;}
.y141{bottom:665.213333pt;}
.ye0{bottom:665.533333pt;}
.y77{bottom:667.133333pt;}
.y3{bottom:668.977329pt;}
.y107{bottom:670.813333pt;}
.y12c{bottom:672.893333pt;}
.y42{bottom:673.053333pt;}
.y123{bottom:675.133333pt;}
.y1aa{bottom:675.293333pt;}
.ya2{bottom:679.933333pt;}
.y15a{bottom:680.253333pt;}
.ydf{bottom:680.893333pt;}
.y186{bottom:681.053333pt;}
.yfc{bottom:682.013333pt;}
.y76{bottom:682.333333pt;}
.y106{bottom:683.133333pt;}
.y140{bottom:686.026667pt;}
.y41{bottom:687.613333pt;}
.y12b{bottom:688.253333pt;}
.y122{bottom:690.333333pt;}
.y1a9{bottom:694.653333pt;}
.y159{bottom:695.453333pt;}
.yde{bottom:696.253333pt;}
.y185{bottom:696.413333pt;}
.y75{bottom:697.693333pt;}
.ya1{bottom:703.453333pt;}
.yfb{bottom:705.373333pt;}
.y121{bottom:705.693333pt;}
.y40{bottom:705.853333pt;}
.y13f{bottom:706.653333pt;}
.y1a8{bottom:710.013333pt;}
.y158{bottom:710.813333pt;}
.ydd{bottom:711.453333pt;}
.y74{bottom:713.053333pt;}
.y184{bottom:715.773333pt;}
.ya0{bottom:718.813333pt;}
.y3f{bottom:720.413333pt;}
.y120{bottom:721.053333pt;}
.y1a7{bottom:725.373333pt;}
.y157{bottom:726.173333pt;}
.ydc{bottom:726.813333pt;}
.y13d{bottom:727.453333pt;}
.y73{bottom:728.413333pt;}
.yfa{bottom:729.053333pt;}
.y183{bottom:731.133333pt;}
.y32{bottom:732.893333pt;}
.y9f{bottom:734.173333pt;}
.y168{bottom:736.413333pt;}
.y156{bottom:741.533333pt;}
.ydb{bottom:742.173333pt;}
.y72{bottom:743.773333pt;}
.yf9{bottom:744.413333pt;}
.y1a6{bottom:744.733333pt;}
.y182{bottom:746.493333pt;}
.y9e{bottom:749.533333pt;}
.y71{bottom:759.133333pt;}
.yf8{bottom:759.773333pt;}
.y1a5{bottom:759.933333pt;}
.y13c{bottom:761.533333pt;}
.y9d{bottom:764.893333pt;}
.yda{bottom:765.533333pt;}
.y181{bottom:766.493333pt;}
.y70{bottom:774.333333pt;}
.yf7{bottom:775.133333pt;}
.y1a4{bottom:775.293333pt;}
.y9c{bottom:780.253333pt;}
.yd9{bottom:780.893333pt;}
.y2{bottom:781.661334pt;}
.y13a{bottom:782.346667pt;}
.y180{bottom:784.253333pt;}
.y6f{bottom:789.693333pt;}
.yf6{bottom:790.333333pt;}
.y1a3{bottom:794.653333pt;}
.y9b{bottom:795.453333pt;}
.yd8{bottom:796.253333pt;}
.y17f{bottom:799.453333pt;}
.yf5{bottom:805.693333pt;}
.y1a2{bottom:810.013333pt;}
.y9a{bottom:810.813333pt;}
.yd7{bottom:811.453333pt;}
.y6e{bottom:813.053333pt;}
.y139{bottom:816.453333pt;}
.y12a{bottom:818.853333pt;}
.yf4{bottom:821.093333pt;}
.y1a1{bottom:825.413333pt;}
.y99{bottom:826.213333pt;}
.yd6{bottom:826.853333pt;}
.y6d{bottom:828.453333pt;}
.y155{bottom:833.893333pt;}
.y129{bottom:834.213333pt;}
.y11f{bottom:836.453333pt;}
.y138{bottom:837.093333pt;}
.y1a0{bottom:840.773333pt;}
.yd5{bottom:842.213333pt;}
.y6c{bottom:843.813333pt;}
.yf3{bottom:844.453333pt;}
.y154{bottom:849.253333pt;}
.y98{bottom:849.573333pt;}
.y11e{bottom:851.813333pt;}
.yd4{bottom:857.573333pt;}
.y136{bottom:857.893333pt;}
.y1{bottom:859.312000pt;}
.yf2{bottom:859.813333pt;}
.y19f{bottom:860.773333pt;}
.y97{bottom:864.933333pt;}
.y6b{bottom:867.173333pt;}
.y31{bottom:868.933333pt;}
.yd3{bottom:872.933333pt;}
.yf1{bottom:875.173333pt;}
.y19e{bottom:878.373333pt;}
.y135{bottom:878.693333pt;}
.y96{bottom:880.133333pt;}
.y6a{bottom:882.373333pt;}
.y30{bottom:884.133333pt;}
.yd2{bottom:888.133333pt;}
.yf0{bottom:890.373333pt;}
.y19d{bottom:893.733333pt;}
.y95{bottom:895.493333pt;}
.y69{bottom:897.733333pt;}
.y134{bottom:899.333333pt;}
.yd1{bottom:903.493333pt;}
.yef{bottom:905.733333pt;}
.y2f{bottom:906.213333pt;}
.y19c{bottom:909.093333pt;}
.y94{bottom:910.853333pt;}
.y68{bottom:913.093333pt;}
.y17e{bottom:914.853333pt;}
.yd0{bottom:918.853333pt;}
.y133{bottom:920.133333pt;}
.yee{bottom:921.093333pt;}
.y2e{bottom:922.213333pt;}
.y93{bottom:926.213333pt;}
.y67{bottom:928.453333pt;}
.y17d{bottom:930.213333pt;}
.y2d{bottom:931.813333pt;}
.ycf{bottom:934.213333pt;}
.yed{bottom:936.453333pt;}
.y128{bottom:941.573333pt;}
.y66{bottom:943.813333pt;}
.y17c{bottom:945.573333pt;}
.y2c{bottom:947.973333pt;}
.y92{bottom:949.573333pt;}
.ybc{bottom:951.813333pt;}
.y65{bottom:959.013333pt;}
.y2b{bottom:964.613333pt;}
.y91{bottom:964.933333pt;}
.ybb{bottom:967.013333pt;}
.y64{bottom:974.373333pt;}
.y19b{bottom:978.373333pt;}
.y90{bottom:980.133333pt;}
.y2a{bottom:981.413333pt;}
.yba{bottom:982.373333pt;}
.y8f{bottom:995.493333pt;}
.y63{bottom:997.733333pt;}
.y29{bottom:1004.133333pt;}
.y8e{bottom:1010.853333pt;}
.y62{bottom:1012.773333pt;}
.yb9{bottom:1013.093333pt;}
.y27{bottom:1026.880000pt;}
.y61{bottom:1029.120000pt;}
.y23{bottom:1042.560000pt;}
.y5e{bottom:1044.800000pt;}
.h21{height:13.266667pt;}
.h26{height:13.280000pt;}
.h20{height:13.426667pt;}
.h24{height:13.440000pt;}
.h28{height:13.458667pt;}
.h27{height:13.466667pt;}
.h1c{height:15.703125pt;}
.h18{height:26.381250pt;}
.h22{height:26.706667pt;}
.h25{height:26.720000pt;}
.h29{height:26.866667pt;}
.h1d{height:28.480000pt;}
.h7{height:28.560000pt;}
.h9{height:30.720000pt;}
.h17{height:33.574375pt;}
.h11{height:36.413125pt;}
.h1a{height:36.786667pt;}
.h19{height:36.792000pt;}
.hb{height:38.672812pt;}
.h6{height:40.800000pt;}
.h1b{height:42.063437pt;}
.h3{height:42.840000pt;}
.he{height:42.874688pt;}
.h1e{height:44.301250pt;}
.h1f{height:47.085938pt;}
.h23{height:47.109375pt;}
.h2{height:48.960000pt;}
.h2a{height:52.108438pt;}
.h15{height:52.134375pt;}
.hc{height:53.535000pt;}
.h12{height:57.758750pt;}
.h14{height:57.787500pt;}
.hf{height:59.340000pt;}
.hd{height:60.437812pt;}
.h10{height:60.733125pt;}
.ha{height:62.812500pt;}
.h2b{height:65.781915pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h13{height:132.500000pt;}
.h0{height:1122.518667pt;}
.h16{height:1122.546587pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:66.546667pt;}
.w4{width:67.186667pt;}
.w9{width:107.060000pt;}
.wd{width:143.533333pt;}
.w7{width:176.653333pt;}
.w6{width:305.333333pt;}
.we{width:350.946667pt;}
.wa{width:398.786667pt;}
.w5{width:438.640000pt;}
.wb{width:439.280000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w8{width:793.740000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:3.346667pt;}
.x6{left:7.186667pt;}
.x17{left:14.880000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:144.040000pt;}
.xa{left:151.226667pt;}
.x9{left:157.973333pt;}
.x11{left:161.306667pt;}
.x1f{left:170.426667pt;}
.x8{left:174.293333pt;}
.xe{left:179.546667pt;}
.x4{left:180.874667pt;}
.xc{left:188.826667pt;}
.x1d{left:193.146667pt;}
.xb{left:200.346667pt;}
.x7{left:211.240000pt;}
.x10{left:230.146667pt;}
.x20{left:244.706667pt;}
.x15{left:251.106667pt;}
.x1b{left:257.026667pt;}
.x18{left:282.946667pt;}
.x22{left:295.426667pt;}
.xf{left:319.266667pt;}
.x19{left:325.986667pt;}
.x14{left:343.266667pt;}
.x12{left:370.493333pt;}
.xd{left:396.893333pt;}
.x3{left:404.408000pt;}
.x13{left:457.706667pt;}
.x16{left:583.333333pt;}
.x1e{left:606.053333pt;}
.x1c{left:612.773333pt;}
.x1a{left:639.493333pt;}
}




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