
    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_58ca96d6914141d22d6c6186.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_636a91ca55d4d009e2c8a719.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3e94b883b9b76d033db9972f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1b4110bfdcc95e9752ea13ee.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_865e3a0bc51f15448343e07c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4ede8c029e773d0b1b9fed60.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_630930189a7008511f7a4fc4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_5112ca09d5ead26c4e012288.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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);}
.m5{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250174,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:-59.460000px;}
.v2{vertical-align:-30.720000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.400000px;}
.v4{vertical-align:9.072000px;}
.ls27{letter-spacing:-3.960000px;}
.ls1d{letter-spacing:-2.262000px;}
.ls33{letter-spacing:-1.116000px;}
.ls28{letter-spacing:-0.900000px;}
.ls29{letter-spacing:-0.468000px;}
.ls18{letter-spacing:-0.396000px;}
.ls13{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.308400px;}
.ls2b{letter-spacing:-0.182400px;}
.ls30{letter-spacing:-0.180000px;}
.ls37{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.111600px;}
.ls11{letter-spacing:-0.109200px;}
.lsf{letter-spacing:-0.036000px;}
.ls25{letter-spacing:-0.006827px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.027936px;}
.ls1b{letter-spacing:0.049680px;}
.ls2a{letter-spacing:0.067800px;}
.lsb{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.142800px;}
.ls14{letter-spacing:0.144000px;}
.ls31{letter-spacing:0.144288px;}
.ls6{letter-spacing:0.150600px;}
.ls12{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.243936px;}
.ls10{letter-spacing:0.252000px;}
.ls3{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.396000px;}
.ls23{letter-spacing:0.493560px;}
.ls15{letter-spacing:0.497400px;}
.ls24{letter-spacing:0.603082px;}
.ls1a{letter-spacing:1.240972px;}
.ls22{letter-spacing:2.332676px;}
.ls26{letter-spacing:2.432241px;}
.ls1e{letter-spacing:3.506935px;}
.ls35{letter-spacing:22.308000px;}
.ls5{letter-spacing:24.336000px;}
.ls2c{letter-spacing:24.696000px;}
.ls19{letter-spacing:30.241440px;}
.ls34{letter-spacing:42.984000px;}
.ls17{letter-spacing:43.509600px;}
.ls16{letter-spacing:43.560000px;}
.ls21{letter-spacing:43.653600px;}
.ls1f{letter-spacing:43.704000px;}
.ls36{letter-spacing:48.744000px;}
.ls4{letter-spacing:56.304000px;}
.lse{letter-spacing:97.485600px;}
.lsd{letter-spacing:97.536000px;}
.ls2d{letter-spacing:97.629600px;}
.ls2e{letter-spacing:97.680000px;}
.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;}
}
.ws2f{word-spacing:-108.144000px;}
.ws3{word-spacing:-38.064360px;}
.ws2e{word-spacing:-37.946304px;}
.ws1a{word-spacing:-37.913760px;}
.ws31{word-spacing:-36.797760px;}
.ws30{word-spacing:-24.732000px;}
.ws11{word-spacing:-24.660000px;}
.ws33{word-spacing:-24.624000px;}
.ws21{word-spacing:-24.588000px;}
.ws0{word-spacing:-24.516000px;}
.ws18{word-spacing:-24.440544px;}
.wsa{word-spacing:-24.408000px;}
.ws10{word-spacing:-24.372000px;}
.ws24{word-spacing:-24.331344px;}
.ws5{word-spacing:-24.328944px;}
.ws34{word-spacing:-24.228000px;}
.ws4{word-spacing:-24.132144px;}
.ws23{word-spacing:-23.940000px;}
.ws22{word-spacing:-23.508000px;}
.ws20{word-spacing:-20.448000px;}
.ws2c{word-spacing:-20.340000px;}
.ws7{word-spacing:-16.488000px;}
.ws8{word-spacing:-16.447344px;}
.ws6{word-spacing:-16.304544px;}
.ws1{word-spacing:-16.272000px;}
.ws26{word-spacing:-13.505760px;}
.ws17{word-spacing:-11.399640px;}
.ws2b{word-spacing:-10.934784px;}
.ws16{word-spacing:-10.902240px;}
.ws32{word-spacing:-10.251360px;}
.ws19{word-spacing:-9.437760px;}
.ws2d{word-spacing:-9.208080px;}
.ws2{word-spacing:0.000000px;}
.ws1d{word-spacing:0.012000px;}
.ws1c{word-spacing:0.324000px;}
.ws13{word-spacing:0.504000px;}
.ws28{word-spacing:0.540000px;}
.ws14{word-spacing:0.552000px;}
.ws25{word-spacing:0.891312px;}
.ws27{word-spacing:0.900000px;}
.ws29{word-spacing:1.044000px;}
.ws15{word-spacing:1.068000px;}
.ws2a{word-spacing:1.248000px;}
.ws1f{word-spacing:1.896000px;}
.ws1e{word-spacing:47.340000px;}
.ws12{word-spacing:49.932000px;}
.ws1b{word-spacing:52.524000px;}
.wsc{word-spacing:223.872000px;}
.wsd{word-spacing:259.572000px;}
.wsb{word-spacing:364.212000px;}
.ws9{word-spacing:1028.532000px;}
.wse{word-spacing:1184.892000px;}
.wsf{word-spacing:1216.332000px;}
._f{margin-left:-1447.200734px;}
._11{margin-left:-839.877580px;}
._b{margin-left:-511.612038px;}
._c{margin-left:-296.725893px;}
._18{margin-left:-13.287168px;}
._16{margin-left:-11.416992px;}
._5{margin-left:-8.726400px;}
._8{margin-left:-7.344000px;}
._0{margin-left:-5.402880px;}
._e{margin-left:-4.322352px;}
._2{margin-left:-3.018912px;}
._1{margin-left:-1.891008px;}
._6{width:1.891008px;}
._d{width:2.993705px;}
._13{width:4.007055px;}
._10{width:5.151603px;}
._12{width:6.569077px;}
._14{width:8.308706px;}
._15{width:9.592619px;}
._9{width:25.440000px;}
._a{width:27.123936px;}
._3{width:39.593376px;}
._4{width:41.695008px;}
._17{width:327.221376px;}
._7{width:1449.312480px;}
.fc9{color:transparent;}
.fc7{color:rgb(118,113,113);}
.fc6{color:rgb(207,60,58);}
.fca{color:rgb(70,120,134);}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(47,85,151);}
.fc5{color:rgb(191,191,191);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc8{color:rgb(234,250,254);}
.fc0{color:rgb(0,65,125);}
.fs11{font-size:11.529032px;}
.fs10{font-size:11.689157px;}
.fsf{font-size:12.169534px;}
.fs14{font-size:32.580560px;}
.fs13{font-size:33.033068px;}
.fs12{font-size:34.390591px;}
.fsa{font-size:41.760000px;}
.fs1f{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs1b{font-size:48.384000px;}
.fs18{font-size:50.180972px;}
.fs15{font-size:50.522339px;}
.fs17{font-size:53.253277px;}
.fs16{font-size:53.594644px;}
.fs1a{font-size:59.760000px;}
.fs19{font-size:59.904000px;}
.fs1e{font-size:65.211808px;}
.fs1d{font-size:65.755240px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:72.144000px;}
.fs1c{font-size:90.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:108.144000px;}
.fse{font-size:131.760000px;}
.fsd{font-size:131.904000px;}
.fsc{font-size:144.000000px;}
.fs23{font-size:144.144000px;}
.fs9{font-size:149.760000px;}
.fs8{font-size:149.904000px;}
.fs2{font-size:167.760000px;}
.fs1{font-size:167.904000px;}
.fs21{font-size:184.464000px;}
.fs20{font-size:185.904000px;}
.fsb{font-size:203.760000px;}
.fs22{font-size:228.240000px;}
.fs0{font-size:270.144000px;}
.y95{bottom:-0.209631px;}
.y0{bottom:0.000000px;}
.yc{bottom:7.956000px;}
.y35{bottom:8.712000px;}
.ye9{bottom:9.324000px;}
.y9e{bottom:10.031230px;}
.yb5{bottom:10.224000px;}
.ya9{bottom:10.908000px;}
.ye4{bottom:11.088000px;}
.y64{bottom:13.232028px;}
.y4f{bottom:13.952592px;}
.y94{bottom:16.431865px;}
.y63{bottom:17.235998px;}
.y4e{bottom:17.956562px;}
.yc9{bottom:18.864000px;}
.yd9{bottom:21.354683px;}
.ye8{bottom:23.724000px;}
.y24{bottom:24.156000px;}
.y50{bottom:24.321549px;}
.y6c{bottom:25.651057px;}
.y9d{bottom:26.758221px;}
.yd5{bottom:32.760000px;}
.y6b{bottom:34.849797px;}
.y4d{bottom:37.035562px;}
.y83{bottom:37.393155px;}
.yfc{bottom:37.800000px;}
.y6e{bottom:39.429440px;}
.y6a{bottom:39.893748px;}
.y66{bottom:40.294062px;}
.y68{bottom:40.374125px;}
.y7{bottom:40.608000px;}
.yc8{bottom:43.524000px;}
.y69{bottom:43.896885px;}
.y65{bottom:44.297198px;}
.y67{bottom:44.377261px;}
.y82{bottom:48.708206px;}
.y52{bottom:49.781495px;}
.y6d{bottom:50.744491px;}
.yf7{bottom:53.100000px;}
.y98{bottom:53.299162px;}
.y51{bottom:53.784631px;}
.y9c{bottom:53.981896px;}
.y5f{bottom:54.505195px;}
.y5e{bottom:58.508331px;}
.ydd{bottom:59.854149px;}
.y60{bottom:60.309743px;}
.y23{bottom:60.948000px;}
.y5d{bottom:62.511467px;}
.y5c{bottom:66.514604px;}
.y6f{bottom:68.731675px;}
.y6{bottom:69.876000px;}
.y97{bottom:69.940811px;}
.yfb{bottom:70.200000px;}
.y5b{bottom:70.517740px;}
.y9b{bottom:70.623545px;}
.yea{bottom:75.960000px;}
.y58{bottom:78.083667px;}
.y5a{bottom:78.844263px;}
.ya8{bottom:81.288000px;}
.y57{bottom:82.126834px;}
.yf6{bottom:82.296000px;}
.y59{bottom:82.847399px;}
.yc7{bottom:85.680000px;}
.y44{bottom:86.544000px;}
.y40{bottom:90.792000px;}
.y8a{bottom:98.484062px;}
.y22{bottom:98.820000px;}
.y5{bottom:99.036000px;}
.y62{bottom:99.860728px;}
.y9a{bottom:100.493172px;}
.yfa{bottom:102.600000px;}
.y61{bottom:103.863864px;}
.y2d{bottom:105.624000px;}
.y56{bottom:110.228850px;}
.yc6{bottom:110.340000px;}
.yf5{bottom:111.456000px;}
.y89{bottom:112.738057px;}
.y85{bottom:113.869327px;}
.y87{bottom:114.095581px;}
.y55{bottom:114.231986px;}
.yb2{bottom:115.848000px;}
.y99{bottom:117.220162px;}
.y54{bottom:118.235122px;}
.y13{bottom:120.456000px;}
.y53{bottom:122.238258px;}
.ya7{bottom:122.508000px;}
.y88{bottom:124.050752px;}
.y84{bottom:125.182021px;}
.y86{bottom:125.408275px;}
.y3f{bottom:135.252000px;}
.y21{bottom:138.852000px;}
.yf4{bottom:140.616000px;}
.y71{bottom:140.680413px;}
.yae{bottom:143.208000px;}
.yb1{bottom:145.008000px;}
.y96{bottom:147.857865px;}
.y49{bottom:148.104000px;}
.y70{bottom:151.993107px;}
.yc5{bottom:152.490000px;}
.y7e{bottom:154.029392px;}
.y8b{bottom:158.146242px;}
.ya6{bottom:163.725000px;}
.y26{bottom:164.490000px;}
.y7d{bottom:165.342087px;}
.yd4{bottom:166.830000px;}
.yf3{bottom:169.770000px;}
.y7f{bottom:170.432799px;}
.y7c{bottom:176.654781px;}
.yc4{bottom:177.150000px;}
.y3e{bottom:179.745000px;}
.y20{bottom:181.290000px;}
.y48{bottom:183.780000px;}
.y25{bottom:186.090000px;}
.y7b{bottom:187.967476px;}
.y93{bottom:193.089013px;}
.yfe{bottom:193.965000px;}
.yd3{bottom:199.260000px;}
.y7a{bottom:199.280170px;}
.yf9{bottom:199.830000px;}
.y90{bottom:202.305927px;}
.ya5{bottom:204.810000px;}
.y12{bottom:208.230000px;}
.y92{bottom:209.730662px;}
.y4{bottom:210.750000px;}
.ydb{bottom:213.917045px;}
.y8f{bottom:218.947576px;}
.yc3{bottom:219.315000px;}
.y77{bottom:220.661163px;}
.y79{bottom:222.810575px;}
.y91{bottom:226.457653px;}
.yb0{bottom:227.490000px;}
.yf2{bottom:228.135000px;}
.y1f{bottom:231.330000px;}
.yd2{bottom:231.660000px;}
.y76{bottom:232.086984px;}
.ya4{bottom:233.970000px;}
.y78{bottom:234.123269px;}
.yda{bottom:234.431593px;}
.y8e{bottom:235.589225px;}
.yfd{bottom:237.165000px;}
.yb8{bottom:238.140000px;}
.y11{bottom:239.730000px;}
.y43{bottom:240.630000px;}
.yc2{bottom:243.975000px;}
.y8d{bottom:252.316215px;}
.ye3{bottom:252.360000px;}
.y1e{bottom:253.080000px;}
.y47{bottom:255.960000px;}
.yaf{bottom:256.650000px;}
.yf1{bottom:257.295000px;}
.ya3{bottom:263.130000px;}
.yd1{bottom:264.060000px;}
.y34{bottom:267.660000px;}
.ydc{bottom:270.026372px;}
.y38{bottom:273.810000px;}
.y8c{bottom:280.991057px;}
.ye2{bottom:281.550000px;}
.y81{bottom:282.202221px;}
.y42{bottom:285.090000px;}
.yc1{bottom:286.125000px;}
.ya2{bottom:292.290000px;}
.y80{bottom:293.514916px;}
.y4b{bottom:295.200000px;}
.yd0{bottom:296.460000px;}
.y33{bottom:296.820000px;}
.y2c{bottom:298.545000px;}
.y1d{bottom:300.030000px;}
.y10{bottom:302.580000px;}
.y37{bottom:306.210000px;}
.ye1{bottom:310.710000px;}
.yc0{bottom:310.785000px;}
.y75{bottom:311.502100px;}
.yf0{bottom:315.615000px;}
.y3{bottom:320.220000px;}
.y74{bottom:322.814794px;}
.y4c{bottom:325.980000px;}
.y4a{bottom:327.600000px;}
.y41{bottom:329.580000px;}
.y2b{bottom:330.990000px;}
.yf{bottom:334.080000px;}
.y73{bottom:334.127489px;}
.y1b{bottom:334.980000px;}
.y18{bottom:335.265000px;}
.yd8{bottom:335.910000px;}
.y36{bottom:338.610000px;}
.yad{bottom:338.940000px;}
.ye0{bottom:339.870000px;}
.yef{bottom:344.805000px;}
.y72{bottom:345.440183px;}
.ybf{bottom:352.950000px;}
.ye{bottom:353.520000px;}
.ye7{bottom:355.170000px;}
.y1c{bottom:355.530000px;}
.y1a{bottom:356.010000px;}
.y17{bottom:356.910000px;}
.y3d{bottom:363.030000px;}
.ycf{bottom:363.210000px;}
.y2a{bottom:363.390000px;}
.y2{bottom:365.610000px;}
.yee{bottom:373.965000px;}
.ya1{bottom:374.760000px;}
.yd7{bottom:377.130000px;}
.y45{bottom:377.490000px;}
.ybe{bottom:377.610000px;}
.y32{bottom:379.290000px;}
.yac{bottom:380.160000px;}
.y16{bottom:383.790000px;}
.yd{bottom:384.840000px;}
.y19{bottom:392.835000px;}
.yf8{bottom:394.485000px;}
.y3c{bottom:395.460000px;}
.yce{bottom:395.610000px;}
.y29{bottom:395.790000px;}
.ye6{bottom:396.390000px;}
.ydf{bottom:398.235000px;}
.yed{bottom:403.125000px;}
.ya0{bottom:403.920000px;}
.y31{bottom:408.450000px;}
.y46{bottom:408.990000px;}
.yab{bottom:409.320000px;}
.yb7{bottom:417.570000px;}
.y1{bottom:417.630000px;}
.yd6{bottom:418.350000px;}
.ybd{bottom:419.760000px;}
.yb{bottom:427.170000px;}
.yde{bottom:427.395000px;}
.ycd{bottom:428.010000px;}
.y9f{bottom:433.080000px;}
.y30{bottom:437.610000px;}
.yaa{bottom:438.510000px;}
.y3b{bottom:439.920000px;}
.ybc{bottom:444.420000px;}
.ya{bottom:448.815000px;}
.yb6{bottom:458.790000px;}
.y3a{bottom:472.320000px;}
.y15{bottom:484.275000px;}
.ybb{bottom:486.570000px;}
.y9{bottom:486.645000px;}
.y28{bottom:493.995000px;}
.ycc{bottom:494.715000px;}
.yeb{bottom:501.375000px;}
.yb4{bottom:502.665000px;}
.y2f{bottom:502.740000px;}
.yec{bottom:503.790000px;}
.ye5{bottom:503.820000px;}
.y14{bottom:505.875000px;}
.yba{bottom:511.230000px;}
.y39{bottom:516.810000px;}
.ycb{bottom:527.145000px;}
.y27{bottom:534.525000px;}
.yb3{bottom:537.945000px;}
.y8{bottom:543.240000px;}
.y2e{bottom:548.100000px;}
.yca{bottom:559.545000px;}
.yb9{bottom:565.710000px;}
.h1a{height:8.826915px;}
.h19{height:8.949511px;}
.h17{height:9.311357px;}
.h18{height:9.317299px;}
.h1f{height:24.944491px;}
.h1e{height:25.290943px;}
.h1c{height:26.313504px;}
.h1d{height:26.330296px;}
.h24{height:38.419807px;}
.h21{height:38.681166px;}
.h2c{height:39.202734px;}
.h23{height:40.772040px;}
.h22{height:41.033399px;}
.h11{height:41.535703px;}
.h2e{height:45.116367px;}
.h9{height:47.980898px;}
.h27{height:48.124125px;}
.h2b{height:49.927791px;}
.h2a{height:50.343856px;}
.h25{height:59.871023px;}
.h6{height:71.613281px;}
.h7{height:71.756508px;}
.h8{height:73.722656px;}
.ha{height:74.156508px;}
.hb{height:76.843148px;}
.hc{height:82.794656px;}
.h28{height:89.516602px;}
.h5{height:107.419922px;}
.h4{height:107.563148px;}
.hf{height:110.583984px;}
.h10{height:110.731430px;}
.h15{height:131.052305px;}
.h14{height:131.195531px;}
.h16{height:134.505374px;}
.h13{height:143.226562px;}
.h31{height:143.369789px;}
.he{height:148.955625px;}
.hd{height:149.098852px;}
.h3{height:166.858945px;}
.h2{height:167.002172px;}
.h26{height:171.773789px;}
.h2f{height:183.473227px;}
.h2d{height:184.905492px;}
.h12{height:202.665586px;}
.h30{height:227.014102px;}
.h1{height:268.693031px;}
.h29{height:281.905212px;}
.h20{height:291.015502px;}
.h1b{height:380.106536px;}
.h0{height:607.500000px;}
.w2{width:265.785806px;}
.w5{width:298.901665px;}
.w4{width:416.142320px;}
.w3{width:751.120923px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x70{left:-1.241479px;}
.x0{left:0.000000px;}
.x71{left:8.063039px;}
.x88{left:13.920179px;}
.x9{left:26.135984px;}
.x21{left:39.131984px;}
.x7{left:41.579984px;}
.x13{left:43.919984px;}
.x19{left:45.575984px;}
.xb{left:52.307984px;}
.x7f{left:55.907984px;}
.xa{left:57.707984px;}
.x83{left:61.487984px;}
.x81{left:64.043984px;}
.x85{left:67.643984px;}
.x7b{left:70.343984px;}
.x82{left:75.743984px;}
.x8{left:78.227984px;}
.x7d{left:81.863984px;}
.x87{left:85.067984px;}
.x7a{left:87.263984px;}
.x84{left:88.343984px;}
.x29{left:93.779984px;}
.xe{left:95.219984px;}
.xf{left:98.603984px;}
.x2a{left:114.119984px;}
.x77{left:116.567984px;}
.x22{left:121.355984px;}
.x7e{left:123.803984px;}
.x7c{left:125.603984px;}
.x3f{left:132.730932px;}
.x8c{left:134.027984px;}
.x24{left:136.727984px;}
.x80{left:137.843984px;}
.x3e{left:139.220347px;}
.x49{left:142.184657px;}
.x41{left:146.550978px;}
.x48{left:149.194845px;}
.x40{left:151.077545px;}
.x3b{left:154.562598px;}
.x42{left:156.084819px;}
.x14{left:158.969984px;}
.x4a{left:160.250874px;}
.x35{left:167.384572px;}
.x47{left:172.341773px;}
.x3a{left:176.080471px;}
.x39{left:177.399049px;}
.x44{left:179.435346px;}
.x38{left:181.688605px;}
.x43{left:186.245255px;}
.x3d{left:193.105200px;}
.x3c{left:195.742358px;}
.x46{left:198.780142px;}
.x45{left:204.672024px;}
.x37{left:209.195235px;}
.x36{left:213.484791px;}
.x4b{left:215.771449px;}
.x72{left:217.115852px;}
.x73{left:219.420642px;}
.x76{left:222.493712px;}
.x74{left:228.639796px;}
.x33{left:230.108939px;}
.x34{left:232.312139px;}
.x89{left:239.726800px;}
.x10{left:251.099984px;}
.x2{left:268.844984px;}
.x31{left:279.689984px;}
.x75{left:302.307677px;}
.x4d{left:303.881144px;}
.x1{left:308.804984px;}
.x4{left:319.829984px;}
.x23{left:329.549984px;}
.x16{left:370.904984px;}
.x5a{left:375.102698px;}
.x15{left:379.004984px;}
.x6{left:380.129984px;}
.x69{left:388.574196px;}
.x3{left:393.089984px;}
.x6a{left:401.819283px;}
.x5c{left:414.158718px;}
.x5d{left:416.762453px;}
.x67{left:421.630312px;}
.x5b{left:426.950980px;}
.x68{left:429.101900px;}
.x79{left:430.349984px;}
.x57{left:436.799889px;}
.x5e{left:441.101714px;}
.x6b{left:443.705452px;}
.x56{left:449.139327px;}
.x5f{left:451.856272px;}
.x2d{left:453.239984px;}
.x86{left:461.444984px;}
.x5{left:468.509984px;}
.x50{left:473.035207px;}
.x20{left:483.554984px;}
.x1f{left:485.999984px;}
.x66{left:487.044434px;}
.x1a{left:489.209984px;}
.x28{left:494.429984px;}
.x27{left:496.049984px;}
.x55{left:497.610300px;}
.x60{left:499.166890px;}
.x54{left:501.336659px;}
.xd{left:502.739984px;}
.x6e{left:504.591338px;}
.xc{left:505.979984px;}
.x63{left:507.091292px;}
.x26{left:512.429984px;}
.x53{left:513.459119px;}
.x61{left:526.336295px;}
.x62{left:543.317173px;}
.x59{left:545.722797px;}
.x58{left:553.175515px;}
.x8b{left:557.279984px;}
.x65{left:561.760304px;}
.x64{left:578.410999px;}
.x52{left:591.193823px;}
.x25{left:595.544984px;}
.x6d{left:601.523859px;}
.x51{left:603.316283px;}
.x6c{left:609.778453px;}
.x1b{left:639.644984px;}
.x6f{left:640.757452px;}
.x4e{left:650.296722px;}
.x4f{left:656.523045px;}
.x17{left:692.819984px;}
.x2b{left:716.939984px;}
.x2e{left:722.054984px;}
.x11{left:731.444984px;}
.x78{left:733.244984px;}
.x2c{left:737.279984px;}
.x8a{left:749.369984px;}
.x1c{left:762.119984px;}
.x32{left:771.876871px;}
.x18{left:773.069984px;}
.x12{left:780.404984px;}
.x30{left:800.279984px;}
.x4c{left:806.009984px;}
.x2f{left:813.059984px;}
.x1d{left:918.389984px;}
.x1e{left:960.734984px;}
@media print{
.v3{vertical-align:-52.853333pt;}
.v2{vertical-align:-27.306667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.133333pt;}
.v4{vertical-align:8.064000pt;}
.ls27{letter-spacing:-3.520000pt;}
.ls1d{letter-spacing:-2.010667pt;}
.ls33{letter-spacing:-0.992000pt;}
.ls28{letter-spacing:-0.800000pt;}
.ls29{letter-spacing:-0.416000pt;}
.ls18{letter-spacing:-0.352000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.274133pt;}
.ls2b{letter-spacing:-0.162133pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls37{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.099200pt;}
.ls11{letter-spacing:-0.097067pt;}
.lsf{letter-spacing:-0.032000pt;}
.ls25{letter-spacing:-0.006069pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.024832pt;}
.ls1b{letter-spacing:0.044160pt;}
.ls2a{letter-spacing:0.060267pt;}
.lsb{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.126933pt;}
.ls14{letter-spacing:0.128000pt;}
.ls31{letter-spacing:0.128256pt;}
.ls6{letter-spacing:0.133867pt;}
.ls12{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.216832pt;}
.ls10{letter-spacing:0.224000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.352000pt;}
.ls23{letter-spacing:0.438720pt;}
.ls15{letter-spacing:0.442133pt;}
.ls24{letter-spacing:0.536073pt;}
.ls1a{letter-spacing:1.103086pt;}
.ls22{letter-spacing:2.073489pt;}
.ls26{letter-spacing:2.161992pt;}
.ls1e{letter-spacing:3.117276pt;}
.ls35{letter-spacing:19.829333pt;}
.ls5{letter-spacing:21.632000pt;}
.ls2c{letter-spacing:21.952000pt;}
.ls19{letter-spacing:26.881280pt;}
.ls34{letter-spacing:38.208000pt;}
.ls17{letter-spacing:38.675200pt;}
.ls16{letter-spacing:38.720000pt;}
.ls21{letter-spacing:38.803200pt;}
.ls1f{letter-spacing:38.848000pt;}
.ls36{letter-spacing:43.328000pt;}
.ls4{letter-spacing:50.048000pt;}
.lse{letter-spacing:86.653867pt;}
.lsd{letter-spacing:86.698667pt;}
.ls2d{letter-spacing:86.781867pt;}
.ls2e{letter-spacing:86.826667pt;}
.ws2f{word-spacing:-96.128000pt;}
.ws3{word-spacing:-33.834987pt;}
.ws2e{word-spacing:-33.730048pt;}
.ws1a{word-spacing:-33.701120pt;}
.ws31{word-spacing:-32.709120pt;}
.ws30{word-spacing:-21.984000pt;}
.ws11{word-spacing:-21.920000pt;}
.ws33{word-spacing:-21.888000pt;}
.ws21{word-spacing:-21.856000pt;}
.ws0{word-spacing:-21.792000pt;}
.ws18{word-spacing:-21.724928pt;}
.wsa{word-spacing:-21.696000pt;}
.ws10{word-spacing:-21.664000pt;}
.ws24{word-spacing:-21.627861pt;}
.ws5{word-spacing:-21.625728pt;}
.ws34{word-spacing:-21.536000pt;}
.ws4{word-spacing:-21.450795pt;}
.ws23{word-spacing:-21.280000pt;}
.ws22{word-spacing:-20.896000pt;}
.ws20{word-spacing:-18.176000pt;}
.ws2c{word-spacing:-18.080000pt;}
.ws7{word-spacing:-14.656000pt;}
.ws8{word-spacing:-14.619861pt;}
.ws6{word-spacing:-14.492928pt;}
.ws1{word-spacing:-14.464000pt;}
.ws26{word-spacing:-12.005120pt;}
.ws17{word-spacing:-10.133013pt;}
.ws2b{word-spacing:-9.719808pt;}
.ws16{word-spacing:-9.690880pt;}
.ws32{word-spacing:-9.112320pt;}
.ws19{word-spacing:-8.389120pt;}
.ws2d{word-spacing:-8.184960pt;}
.ws2{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.010667pt;}
.ws1c{word-spacing:0.288000pt;}
.ws13{word-spacing:0.448000pt;}
.ws28{word-spacing:0.480000pt;}
.ws14{word-spacing:0.490667pt;}
.ws25{word-spacing:0.792277pt;}
.ws27{word-spacing:0.800000pt;}
.ws29{word-spacing:0.928000pt;}
.ws15{word-spacing:0.949333pt;}
.ws2a{word-spacing:1.109333pt;}
.ws1f{word-spacing:1.685333pt;}
.ws1e{word-spacing:42.080000pt;}
.ws12{word-spacing:44.384000pt;}
.ws1b{word-spacing:46.688000pt;}
.wsc{word-spacing:198.997333pt;}
.wsd{word-spacing:230.730667pt;}
.wsb{word-spacing:323.744000pt;}
.ws9{word-spacing:914.250667pt;}
.wse{word-spacing:1053.237333pt;}
.wsf{word-spacing:1081.184000pt;}
._f{margin-left:-1286.400653pt;}
._11{margin-left:-746.557849pt;}
._b{margin-left:-454.766256pt;}
._c{margin-left:-263.756349pt;}
._18{margin-left:-11.810816pt;}
._16{margin-left:-10.148437pt;}
._5{margin-left:-7.756800pt;}
._8{margin-left:-6.528000pt;}
._0{margin-left:-4.802560pt;}
._e{margin-left:-3.842091pt;}
._2{margin-left:-2.683477pt;}
._1{margin-left:-1.680896pt;}
._6{width:1.680896pt;}
._d{width:2.661071pt;}
._13{width:3.561827pt;}
._10{width:4.579203pt;}
._12{width:5.839180pt;}
._14{width:7.385516pt;}
._15{width:8.526773pt;}
._9{width:22.613333pt;}
._a{width:24.110165pt;}
._3{width:35.194112pt;}
._4{width:37.062229pt;}
._17{width:290.863445pt;}
._7{width:1288.277760pt;}
.fs11{font-size:10.248028pt;}
.fs10{font-size:10.390362pt;}
.fsf{font-size:10.817363pt;}
.fs14{font-size:28.960498pt;}
.fs13{font-size:29.362727pt;}
.fs12{font-size:30.569415pt;}
.fsa{font-size:37.120000pt;}
.fs1f{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs1b{font-size:43.008000pt;}
.fs18{font-size:44.605309pt;}
.fs15{font-size:44.908746pt;}
.fs17{font-size:47.336246pt;}
.fs16{font-size:47.639683pt;}
.fs1a{font-size:53.120000pt;}
.fs19{font-size:53.248000pt;}
.fs1e{font-size:57.966052pt;}
.fs1d{font-size:58.449102pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:64.128000pt;}
.fs1c{font-size:80.000000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:96.128000pt;}
.fse{font-size:117.120000pt;}
.fsd{font-size:117.248000pt;}
.fsc{font-size:128.000000pt;}
.fs23{font-size:128.128000pt;}
.fs9{font-size:133.120000pt;}
.fs8{font-size:133.248000pt;}
.fs2{font-size:149.120000pt;}
.fs1{font-size:149.248000pt;}
.fs21{font-size:163.968000pt;}
.fs20{font-size:165.248000pt;}
.fsb{font-size:181.120000pt;}
.fs22{font-size:202.880000pt;}
.fs0{font-size:240.128000pt;}
.y95{bottom:-0.186339pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.072000pt;}
.y35{bottom:7.744000pt;}
.ye9{bottom:8.288000pt;}
.y9e{bottom:8.916649pt;}
.yb5{bottom:9.088000pt;}
.ya9{bottom:9.696000pt;}
.ye4{bottom:9.856000pt;}
.y64{bottom:11.761803pt;}
.y4f{bottom:12.402304pt;}
.y94{bottom:14.606102pt;}
.y63{bottom:15.320887pt;}
.y4e{bottom:15.961389pt;}
.yc9{bottom:16.768000pt;}
.yd9{bottom:18.981941pt;}
.ye8{bottom:21.088000pt;}
.y24{bottom:21.472000pt;}
.y50{bottom:21.619155pt;}
.y6c{bottom:22.800939pt;}
.y9d{bottom:23.785085pt;}
.yd5{bottom:29.120000pt;}
.y6b{bottom:30.977597pt;}
.y4d{bottom:32.920499pt;}
.y83{bottom:33.238360pt;}
.yfc{bottom:33.600000pt;}
.y6e{bottom:35.048391pt;}
.y6a{bottom:35.461110pt;}
.y66{bottom:35.816944pt;}
.y68{bottom:35.888111pt;}
.y7{bottom:36.096000pt;}
.yc8{bottom:38.688000pt;}
.y69{bottom:39.019453pt;}
.y65{bottom:39.375287pt;}
.y67{bottom:39.446454pt;}
.y82{bottom:43.296183pt;}
.y52{bottom:44.250217pt;}
.y6d{bottom:45.106214pt;}
.yf7{bottom:47.200000pt;}
.y98{bottom:47.377033pt;}
.y51{bottom:47.808561pt;}
.y9c{bottom:47.983908pt;}
.y5f{bottom:48.449062pt;}
.y5e{bottom:52.007406pt;}
.ydd{bottom:53.203688pt;}
.y60{bottom:53.608660pt;}
.y23{bottom:54.176000pt;}
.y5d{bottom:55.565749pt;}
.y5c{bottom:59.124092pt;}
.y6f{bottom:61.094823pt;}
.y6{bottom:62.112000pt;}
.y97{bottom:62.169610pt;}
.yfb{bottom:62.400000pt;}
.y5b{bottom:62.682435pt;}
.y9b{bottom:62.776485pt;}
.yea{bottom:67.520000pt;}
.y58{bottom:69.407704pt;}
.y5a{bottom:70.083789pt;}
.ya8{bottom:72.256000pt;}
.y57{bottom:73.001631pt;}
.yf6{bottom:73.152000pt;}
.y59{bottom:73.642132pt;}
.yc7{bottom:76.160000pt;}
.y44{bottom:76.928000pt;}
.y40{bottom:80.704000pt;}
.y8a{bottom:87.541389pt;}
.y22{bottom:87.840000pt;}
.y5{bottom:88.032000pt;}
.y62{bottom:88.765091pt;}
.y9a{bottom:89.327264pt;}
.yfa{bottom:91.200000pt;}
.y61{bottom:92.323434pt;}
.y2d{bottom:93.888000pt;}
.y56{bottom:97.981200pt;}
.yc6{bottom:98.080000pt;}
.yf5{bottom:99.072000pt;}
.y89{bottom:100.211606pt;}
.y85{bottom:101.217179pt;}
.y87{bottom:101.418294pt;}
.y55{bottom:101.539543pt;}
.yb2{bottom:102.976000pt;}
.y99{bottom:104.195700pt;}
.y54{bottom:105.097886pt;}
.y13{bottom:107.072000pt;}
.y53{bottom:108.656230pt;}
.ya7{bottom:108.896000pt;}
.y88{bottom:110.267335pt;}
.y84{bottom:111.272908pt;}
.y86{bottom:111.474022pt;}
.y3f{bottom:120.224000pt;}
.y21{bottom:123.424000pt;}
.yf4{bottom:124.992000pt;}
.y71{bottom:125.049256pt;}
.yae{bottom:127.296000pt;}
.yb1{bottom:128.896000pt;}
.y96{bottom:131.429213pt;}
.y49{bottom:131.648000pt;}
.y70{bottom:135.104984pt;}
.yc5{bottom:135.546667pt;}
.y7e{bottom:136.915015pt;}
.y8b{bottom:140.574438pt;}
.ya6{bottom:145.533333pt;}
.y26{bottom:146.213333pt;}
.y7d{bottom:146.970744pt;}
.yd4{bottom:148.293333pt;}
.yf3{bottom:150.906667pt;}
.y7f{bottom:151.495822pt;}
.y7c{bottom:157.026472pt;}
.yc4{bottom:157.466667pt;}
.y3e{bottom:159.773333pt;}
.y20{bottom:161.146667pt;}
.y48{bottom:163.360000pt;}
.y25{bottom:165.413333pt;}
.y7b{bottom:167.082201pt;}
.y93{bottom:171.634679pt;}
.yfe{bottom:172.413333pt;}
.yd3{bottom:177.120000pt;}
.y7a{bottom:177.137929pt;}
.yf9{bottom:177.626667pt;}
.y90{bottom:179.827490pt;}
.ya5{bottom:182.053333pt;}
.y12{bottom:185.093333pt;}
.y92{bottom:186.427255pt;}
.y4{bottom:187.333333pt;}
.ydb{bottom:190.148485pt;}
.y8f{bottom:194.620067pt;}
.yc3{bottom:194.946667pt;}
.y77{bottom:196.143256pt;}
.y79{bottom:198.053844pt;}
.y91{bottom:201.295692pt;}
.yb0{bottom:202.213333pt;}
.yf2{bottom:202.786667pt;}
.y1f{bottom:205.626667pt;}
.yd2{bottom:205.920000pt;}
.y76{bottom:206.299542pt;}
.ya4{bottom:207.973333pt;}
.y78{bottom:208.109573pt;}
.yda{bottom:208.383639pt;}
.y8e{bottom:209.412644pt;}
.yfd{bottom:210.813333pt;}
.yb8{bottom:211.680000pt;}
.y11{bottom:213.093333pt;}
.y43{bottom:213.893333pt;}
.yc2{bottom:216.866667pt;}
.y8d{bottom:224.281080pt;}
.ye3{bottom:224.320000pt;}
.y1e{bottom:224.960000pt;}
.y47{bottom:227.520000pt;}
.yaf{bottom:228.133333pt;}
.yf1{bottom:228.706667pt;}
.ya3{bottom:233.893333pt;}
.yd1{bottom:234.720000pt;}
.y34{bottom:237.920000pt;}
.ydc{bottom:240.023442pt;}
.y38{bottom:243.386667pt;}
.y8c{bottom:249.769828pt;}
.ye2{bottom:250.266667pt;}
.y81{bottom:250.846419pt;}
.y42{bottom:253.413333pt;}
.yc1{bottom:254.333333pt;}
.ya2{bottom:259.813333pt;}
.y80{bottom:260.902147pt;}
.y4b{bottom:262.400000pt;}
.yd0{bottom:263.520000pt;}
.y33{bottom:263.840000pt;}
.y2c{bottom:265.373333pt;}
.y1d{bottom:266.693333pt;}
.y10{bottom:268.960000pt;}
.y37{bottom:272.186667pt;}
.ye1{bottom:276.186667pt;}
.yc0{bottom:276.253333pt;}
.y75{bottom:276.890755pt;}
.yf0{bottom:280.546667pt;}
.y3{bottom:284.640000pt;}
.y74{bottom:286.946484pt;}
.y4c{bottom:289.760000pt;}
.y4a{bottom:291.200000pt;}
.y41{bottom:292.960000pt;}
.y2b{bottom:294.213333pt;}
.yf{bottom:296.960000pt;}
.y73{bottom:297.002212pt;}
.y1b{bottom:297.760000pt;}
.y18{bottom:298.013333pt;}
.yd8{bottom:298.586667pt;}
.y36{bottom:300.986667pt;}
.yad{bottom:301.280000pt;}
.ye0{bottom:302.106667pt;}
.yef{bottom:306.493333pt;}
.y72{bottom:307.057941pt;}
.ybf{bottom:313.733333pt;}
.ye{bottom:314.240000pt;}
.ye7{bottom:315.706667pt;}
.y1c{bottom:316.026667pt;}
.y1a{bottom:316.453333pt;}
.y17{bottom:317.253333pt;}
.y3d{bottom:322.693333pt;}
.ycf{bottom:322.853333pt;}
.y2a{bottom:323.013333pt;}
.y2{bottom:324.986667pt;}
.yee{bottom:332.413333pt;}
.ya1{bottom:333.120000pt;}
.yd7{bottom:335.226667pt;}
.y45{bottom:335.546667pt;}
.ybe{bottom:335.653333pt;}
.y32{bottom:337.146667pt;}
.yac{bottom:337.920000pt;}
.y16{bottom:341.146667pt;}
.yd{bottom:342.080000pt;}
.y19{bottom:349.186667pt;}
.yf8{bottom:350.653333pt;}
.y3c{bottom:351.520000pt;}
.yce{bottom:351.653333pt;}
.y29{bottom:351.813333pt;}
.ye6{bottom:352.346667pt;}
.ydf{bottom:353.986667pt;}
.yed{bottom:358.333333pt;}
.ya0{bottom:359.040000pt;}
.y31{bottom:363.066667pt;}
.y46{bottom:363.546667pt;}
.yab{bottom:363.840000pt;}
.yb7{bottom:371.173333pt;}
.y1{bottom:371.226667pt;}
.yd6{bottom:371.866667pt;}
.ybd{bottom:373.120000pt;}
.yb{bottom:379.706667pt;}
.yde{bottom:379.906667pt;}
.ycd{bottom:380.453333pt;}
.y9f{bottom:384.960000pt;}
.y30{bottom:388.986667pt;}
.yaa{bottom:389.786667pt;}
.y3b{bottom:391.040000pt;}
.ybc{bottom:395.040000pt;}
.ya{bottom:398.946667pt;}
.yb6{bottom:407.813333pt;}
.y3a{bottom:419.840000pt;}
.y15{bottom:430.466667pt;}
.ybb{bottom:432.506667pt;}
.y9{bottom:432.573333pt;}
.y28{bottom:439.106667pt;}
.ycc{bottom:439.746667pt;}
.yeb{bottom:445.666667pt;}
.yb4{bottom:446.813333pt;}
.y2f{bottom:446.880000pt;}
.yec{bottom:447.813333pt;}
.ye5{bottom:447.840000pt;}
.y14{bottom:449.666667pt;}
.yba{bottom:454.426667pt;}
.y39{bottom:459.386667pt;}
.ycb{bottom:468.573333pt;}
.y27{bottom:475.133333pt;}
.yb3{bottom:478.173333pt;}
.y8{bottom:482.880000pt;}
.y2e{bottom:487.200000pt;}
.yca{bottom:497.373333pt;}
.yb9{bottom:502.853333pt;}
.h1a{height:7.846147pt;}
.h19{height:7.955121pt;}
.h17{height:8.276762pt;}
.h18{height:8.282044pt;}
.h1f{height:22.172881pt;}
.h1e{height:22.480838pt;}
.h1c{height:23.389782pt;}
.h1d{height:23.404708pt;}
.h24{height:34.150939pt;}
.h21{height:34.383259pt;}
.h2c{height:34.846875pt;}
.h23{height:36.241813pt;}
.h22{height:36.474133pt;}
.h11{height:36.920625pt;}
.h2e{height:40.103437pt;}
.h9{height:42.649687pt;}
.h27{height:42.777000pt;}
.h2b{height:44.380258pt;}
.h2a{height:44.750094pt;}
.h25{height:53.218688pt;}
.h6{height:63.656250pt;}
.h7{height:63.783562pt;}
.h8{height:65.531250pt;}
.ha{height:65.916896pt;}
.hb{height:68.305021pt;}
.hc{height:73.595250pt;}
.h28{height:79.570312pt;}
.h5{height:95.484375pt;}
.h4{height:95.611688pt;}
.hf{height:98.296875pt;}
.h10{height:98.427937pt;}
.h15{height:116.490937pt;}
.h14{height:116.618250pt;}
.h16{height:119.560332pt;}
.h13{height:127.312500pt;}
.h31{height:127.439813pt;}
.he{height:132.405000pt;}
.hd{height:132.532312pt;}
.h3{height:148.319063pt;}
.h2{height:148.446375pt;}
.h26{height:152.687812pt;}
.h2f{height:163.087312pt;}
.h2d{height:164.360437pt;}
.h12{height:180.147188pt;}
.h30{height:201.790312pt;}
.h1{height:238.838250pt;}
.h29{height:250.582411pt;}
.h20{height:258.680447pt;}
.h1b{height:337.872476pt;}
.h0{height:540.000000pt;}
.w2{width:236.254050pt;}
.w5{width:265.690369pt;}
.w4{width:369.904284pt;}
.w3{width:667.663043pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x70{left:-1.103537pt;}
.x0{left:0.000000pt;}
.x71{left:7.167146pt;}
.x88{left:12.373492pt;}
.x9{left:23.231986pt;}
.x21{left:34.783986pt;}
.x7{left:36.959986pt;}
.x13{left:39.039986pt;}
.x19{left:40.511986pt;}
.xb{left:46.495986pt;}
.x7f{left:49.695986pt;}
.xa{left:51.295986pt;}
.x83{left:54.655986pt;}
.x81{left:56.927986pt;}
.x85{left:60.127986pt;}
.x7b{left:62.527986pt;}
.x82{left:67.327986pt;}
.x8{left:69.535986pt;}
.x7d{left:72.767986pt;}
.x87{left:75.615986pt;}
.x7a{left:77.567986pt;}
.x84{left:78.527986pt;}
.x29{left:83.359986pt;}
.xe{left:84.639986pt;}
.xf{left:87.647986pt;}
.x2a{left:101.439986pt;}
.x77{left:103.615986pt;}
.x22{left:107.871986pt;}
.x7e{left:110.047986pt;}
.x7c{left:111.647986pt;}
.x3f{left:117.983051pt;}
.x8c{left:119.135986pt;}
.x24{left:121.535986pt;}
.x80{left:122.527986pt;}
.x3e{left:123.751420pt;}
.x49{left:126.386362pt;}
.x41{left:130.267536pt;}
.x48{left:132.617640pt;}
.x40{left:134.291151pt;}
.x3b{left:137.388976pt;}
.x42{left:138.742061pt;}
.x14{left:141.306652pt;}
.x4a{left:142.445221pt;}
.x35{left:148.786286pt;}
.x47{left:153.192687pt;}
.x3a{left:156.515974pt;}
.x39{left:157.688044pt;}
.x44{left:159.498086pt;}
.x38{left:161.500982pt;}
.x43{left:165.551338pt;}
.x3d{left:171.649067pt;}
.x3c{left:173.993207pt;}
.x46{left:176.693459pt;}
.x45{left:181.930688pt;}
.x37{left:185.951320pt;}
.x36{left:189.764259pt;}
.x4b{left:191.796843pt;}
.x72{left:192.991868pt;}
.x73{left:195.040571pt;}
.x76{left:197.772189pt;}
.x74{left:203.235374pt;}
.x33{left:204.541279pt;}
.x34{left:206.499679pt;}
.x89{left:213.090489pt;}
.x10{left:223.199986pt;}
.x2{left:238.973319pt;}
.x31{left:248.613319pt;}
.x75{left:268.717935pt;}
.x4d{left:270.116572pt;}
.x1{left:274.493319pt;}
.x4{left:284.293319pt;}
.x23{left:292.933319pt;}
.x16{left:329.693319pt;}
.x5a{left:333.424620pt;}
.x15{left:336.893319pt;}
.x6{left:337.893319pt;}
.x69{left:345.399285pt;}
.x3{left:349.413319pt;}
.x6a{left:357.172696pt;}
.x5c{left:368.141083pt;}
.x5d{left:370.455514pt;}
.x67{left:374.782500pt;}
.x5b{left:379.511982pt;}
.x68{left:381.423911pt;}
.x79{left:382.533319pt;}
.x57{left:388.266568pt;}
.x5e{left:392.090413pt;}
.x6b{left:394.404846pt;}
.x56{left:399.234958pt;}
.x5f{left:401.650020pt;}
.x2d{left:402.879986pt;}
.x86{left:410.173319pt;}
.x5{left:416.453319pt;}
.x50{left:420.475739pt;}
.x20{left:429.826652pt;}
.x1f{left:431.999986pt;}
.x66{left:432.928386pt;}
.x1a{left:434.853319pt;}
.x28{left:439.493319pt;}
.x27{left:440.933319pt;}
.x55{left:442.320266pt;}
.x60{left:443.703902pt;}
.x54{left:445.632585pt;}
.xd{left:446.879986pt;}
.x6e{left:448.525634pt;}
.xc{left:449.759986pt;}
.x63{left:450.747815pt;}
.x26{left:455.493319pt;}
.x53{left:456.408106pt;}
.x61{left:467.854485pt;}
.x62{left:482.948599pt;}
.x59{left:485.086930pt;}
.x58{left:491.711569pt;}
.x8b{left:495.359986pt;}
.x65{left:499.342492pt;}
.x64{left:514.143110pt;}
.x52{left:525.505620pt;}
.x25{left:529.373319pt;}
.x6d{left:534.687875pt;}
.x51{left:536.281141pt;}
.x6c{left:542.025292pt;}
.x1b{left:568.573319pt;}
.x6f{left:569.562180pt;}
.x4e{left:578.041531pt;}
.x4f{left:583.576040pt;}
.x17{left:615.839986pt;}
.x2b{left:637.279986pt;}
.x2e{left:641.826652pt;}
.x11{left:650.173319pt;}
.x78{left:651.773319pt;}
.x2c{left:655.359986pt;}
.x8a{left:666.106652pt;}
.x1c{left:677.439986pt;}
.x32{left:686.112775pt;}
.x18{left:687.173319pt;}
.x12{left:693.693319pt;}
.x30{left:711.359986pt;}
.x4c{left:716.453319pt;}
.x2f{left:722.719986pt;}
.x1d{left:816.346652pt;}
.x1e{left:853.986652pt;}
}




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