
    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_8946d4ac5be7ade1fc9841bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_2bf8f7e19e73da41378db653.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_c8527110737399108a85a2de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_65f1d5b337a4c6aa61aaa9da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_d197dc34ca7800ca61e3de14.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_2934ae76682e184292e704c9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_53c88533889b0b4e29458065.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924316;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_469f9b664fe06c1292726b85.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.728516;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_1e210736def4f3d2e7d3c036.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.961914;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_fcf69bd58ba2688749683f00.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.929199;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_1ec6bf55f1c92c971838f2e5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dd0f3bcdbbd5a59eb2759a86.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_efe8cfa8404bcaae1a2803e6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850098;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_3b7a4c639bec03127a9e7f52.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.728027;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;}
.m5{transform:matrix(0.196347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196347,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.229884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229884,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.232198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232198,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-19.439964px;}
.v4{vertical-align:-16.559969px;}
.v6{vertical-align:-14.399780px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.399919px;}
.v3{vertical-align:17.279982px;}
.v1{vertical-align:19.439897px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.048258px;}
.ls28{letter-spacing:0.053176px;}
.ls24{letter-spacing:0.095896px;}
.ls4{letter-spacing:0.098610px;}
.ls8{letter-spacing:0.098615px;}
.ls2a{letter-spacing:0.128712px;}
.ls3{letter-spacing:0.205074px;}
.ls5{letter-spacing:0.205146px;}
.lse{letter-spacing:0.240364px;}
.ls25{letter-spacing:0.293171px;}
.ls2b{letter-spacing:0.293310px;}
.ls26{letter-spacing:0.317179px;}
.ls14{letter-spacing:0.333295px;}
.ls2{letter-spacing:0.358434px;}
.ls23{letter-spacing:0.407988px;}
.ls18{letter-spacing:0.479646px;}
.ls1c{letter-spacing:0.503134px;}
.ls12{letter-spacing:0.503269px;}
.ls11{letter-spacing:0.503273px;}
.ls1d{letter-spacing:0.503408px;}
.ls1{letter-spacing:0.506054px;}
.ls1b{letter-spacing:0.552556px;}
.lsa{letter-spacing:0.555357px;}
.ls6{letter-spacing:0.558742px;}
.lsb{letter-spacing:0.558805px;}
.ls1e{letter-spacing:0.560714px;}
.ls10{letter-spacing:0.644960px;}
.ls13{letter-spacing:0.645095px;}
.lsf{letter-spacing:0.645235px;}
.ls7{letter-spacing:0.769253px;}
.lsc{letter-spacing:0.818556px;}
.ls22{letter-spacing:0.968872px;}
.ls1f{letter-spacing:1.102235px;}
.ls9{letter-spacing:1.275375px;}
.ls21{letter-spacing:1.822185px;}
.ls17{letter-spacing:2.462175px;}
.lsd{letter-spacing:2.542131px;}
.ls29{letter-spacing:3.893526px;}
.ls20{letter-spacing:3.982162px;}
.ls19{letter-spacing:8.168760px;}
.ls27{letter-spacing:8.213355px;}
.ls15{letter-spacing:9.022140px;}
.ls1a{letter-spacing:10.328814px;}
.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;}
}
.wsf{word-spacing:-56.071350px;}
.ws6{word-spacing:-47.964600px;}
.ws7{word-spacing:-15.537825px;}
.ws11{word-spacing:-14.578551px;}
.wsc{word-spacing:-14.017838px;}
.ws3{word-spacing:-14.017050px;}
.ws0{word-spacing:-13.342275px;}
.ws8{word-spacing:-12.666713px;}
.ws1{word-spacing:-12.537671px;}
.wsa{word-spacing:-11.991150px;}
.wse{word-spacing:-11.552042px;}
.ws4{word-spacing:-11.314913px;}
.ws10{word-spacing:-10.319816px;}
.ws12{word-spacing:-9.795555px;}
.wsd{word-spacing:-9.120004px;}
.ws5{word-spacing:-9.119497px;}
.ws13{word-spacing:-8.444441px;}
.ws9{word-spacing:-8.317443px;}
.wsb{word-spacing:-7.768890px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-11.519782px;}
._6{margin-left:-9.628142px;}
._2{margin-left:-8.363229px;}
._9{margin-left:-6.308748px;}
._3{margin-left:-5.236655px;}
._8{margin-left:-4.052006px;}
._a{margin-left:-2.809042px;}
._1{margin-left:-1.236471px;}
._0{width:1.560580px;}
._d{width:2.852489px;}
._e{width:4.725918px;}
._12{width:5.792167px;}
._c{width:6.836875px;}
._10{width:8.033700px;}
._f{width:9.133989px;}
._15{width:10.851686px;}
._14{width:12.347743px;}
._1c{width:13.437654px;}
._b{width:15.222390px;}
._16{width:16.308869px;}
._18{width:17.598738px;}
._1d{width:19.175964px;}
._1a{width:21.071054px;}
._19{width:22.083570px;}
._1b{width:23.538403px;}
._5{width:25.187631px;}
._11{width:26.380530px;}
._17{width:27.468314px;}
._13{width:36.008672px;}
._4{width:53.264790px;}
.fc9{color:rgb(33,30,25);}
.fc6{color:rgb(15,12,12);}
.fc3{color:transparent;}
.fc2{color:rgb(46,116,181);}
.fc8{color:rgb(51,51,51);}
.fc7{color:rgb(68,84,106);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(89,89,89);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:31.075560px;}
.fs17{font-size:33.777765px;}
.fs10{font-size:36.477990px;}
.fs13{font-size:36.480015px;}
.fs16{font-size:39.182220px;}
.fs5{font-size:42.560010px;}
.fsf{font-size:45.259650px;}
.fs6{font-size:45.262350px;}
.fs11{font-size:47.964600px;}
.fsb{font-size:50.663700px;}
.fs0{font-size:50.666850px;}
.fs14{font-size:50.761727px;}
.fs3{font-size:53.369100px;}
.fse{font-size:56.068200px;}
.fs1{font-size:56.071350px;}
.fsc{font-size:62.147700px;}
.fs4{font-size:62.151300px;}
.fs2{font-size:67.555350px;}
.fs12{font-size:73.098361px;}
.fsd{font-size:79.035746px;}
.fsa{font-size:101.333246px;}
.fs7{font-size:113.030920px;}
.fs8{font-size:135.366080px;}
.fs9{font-size:157.701240px;}
.y0{bottom:0.000000px;}
.ya7{bottom:2.879998px;}
.y7{bottom:77.580025px;}
.y6{bottom:108.360008px;}
.y5{bottom:138.779983px;}
.y4{bottom:169.919975px;}
.y3{bottom:201.240006px;}
.y2{bottom:230.039977px;}
.y6f{bottom:243.179970px;}
.y4b{bottom:255.240006px;}
.y2e{bottom:257.580025px;}
.y2c{bottom:261.720017px;}
.y4a{bottom:270.360008px;}
.y2b{bottom:278.639992px;}
.yb4{bottom:291.240006px;}
.y133{bottom:293.220017px;}
.y49{bottom:293.759994px;}
.y9c{bottom:295.379998px;}
.y2a{bottom:295.559967px;}
.yc2{bottom:305.279983px;}
.y132{bottom:308.519989px;}
.y9b{bottom:309.419975px;}
.y6e{bottom:312.120002px;}
.y29{bottom:312.480011px;}
.ya5{bottom:313.740006px;}
.yc1{bottom:319.320030px;}
.y9a{bottom:323.460022px;}
.y6d{bottom:326.340019px;}
.y17b{bottom:327.059967px;}
.ya4{bottom:327.779983px;}
.y131{bottom:329.220017px;}
.y28{bottom:329.399986px;}
.yca{bottom:331.919975px;}
.yc0{bottom:333.539977px;}
.y15b{bottom:336.779983px;}
.y99{bottom:337.679970px;}
.y6c{bottom:340.379998px;}
.ya3{bottom:342.000000px;}
.y17a{bottom:342.360008px;}
.y130{bottom:344.519989px;}
.yd0{bottom:346.139992px;}
.y27{bottom:346.320030px;}
.yc9{bottom:350.460022px;}
.yb3{bottom:351.720017px;}
.yac{bottom:351.899986px;}
.y6b{bottom:354.419975px;}
.y98{bottom:356.039977px;}
.y15a{bottom:357.480011px;}
.yd3{bottom:360.179970px;}
.ye8{bottom:361.799973px;}
.y179{bottom:363.059967px;}
.y26{bottom:363.240006px;}
.ycf{bottom:364.500000px;}
.y12f{bottom:365.580025px;}
.ybf{bottom:365.759994px;}
.y46{bottom:368.279983px;}
.y6a{bottom:368.639992px;}
.y97{bottom:370.080025px;}
.y159{bottom:372.779983px;}
.ya2{bottom:374.399986px;}
.yd8{bottom:378.539977px;}
.yc8{bottom:378.720017px;}
.ybe{bottom:379.980011px;}
.y25{bottom:380.159981px;}
.y12e{bottom:380.700027px;}
.y178{bottom:384.120002px;}
.y96{bottom:384.299973px;}
.ya1{bottom:388.440033px;}
.yab{bottom:391.860008px;}
.ye7{bottom:392.580025px;}
.yce{bottom:392.759994px;}
.y158{bottom:393.659981px;}
.ybd{bottom:394.019989px;}
.y12d{bottom:396.000000px;}
.y45{bottom:396.539977px;}
.y69{bottom:396.899986px;}
.y24{bottom:397.080025px;}
.yd5{bottom:398.340019px;}
.y95{bottom:402.480011px;}
.y177{bottom:405.000000px;}
.y115{bottom:406.799973px;}
.yaa{bottom:407.700027px;}
.y107{bottom:408.240006px;}
.y157{bottom:408.779983px;}
.ye6{bottom:409.500000px;}
.yc7{bottom:410.399986px;}
.ycd{bottom:410.940033px;}
.ybc{bottom:412.379998px;}
.yb2{bottom:412.559967px;}
.y23{bottom:414.000000px;}
.y68{bottom:415.440033px;}
.y94{bottom:416.700027px;}
.y176{bottom:420.120002px;}
.y114{bottom:420.840019px;}
.yd7{bottom:421.019989px;}
.y106{bottom:422.279983px;}
.y44{bottom:424.620002px;}
.ycc{bottom:425.159981px;}
.ye5{bottom:426.419975px;}
.y10d{bottom:426.600013px;}
.yc6{bottom:427.320030px;}
.yd2{bottom:429.299973px;}
.y156{bottom:429.840019px;}
.y93{bottom:430.740006px;}
.y22{bottom:430.919975px;}
.y12c{bottom:432.000000px;}
.y67{bottom:432.360008px;}
.yd9{bottom:435.059967px;}
.y105{bottom:436.320030px;}
.ycb{bottom:439.200027px;}
.y10c{bottom:440.639992px;}
.ybb{bottom:440.820030px;}
.y175{bottom:441.000000px;}
.ye4{bottom:443.340019px;}
.yb1{bottom:444.240006px;}
.y92{bottom:444.779983px;}
.y155{bottom:444.960022px;}
.y43{bottom:447.299973px;}
.y21{bottom:447.659981px;}
.yc5{bottom:449.100013px;}
.y66{bottom:449.279983px;}
.y104{bottom:450.539977px;}
.y12b{bottom:452.879998px;}
.y174{bottom:456.120002px;}
.yd1{bottom:457.740006px;}
.yba{bottom:459.000000px;}
.ye3{bottom:460.259994px;}
.yb0{bottom:461.159981px;}
.y91{bottom:463.139992px;}
.y20{bottom:463.860008px;}
.y103{bottom:464.580025px;}
.y154{bottom:465.840019px;}
.y65{bottom:466.200027px;}
.yc4{bottom:467.460022px;}
.y12a{bottom:468.000000px;}
.ya0{bottom:473.039977px;}
.ye2{bottom:477.179970px;}
.y90{bottom:477.360008px;}
.yaf{bottom:478.080025px;}
.y1f{bottom:479.879998px;}
.y153{bottom:481.139992px;}
.y102{bottom:482.940033px;}
.y64{bottom:483.120002px;}
.y42{bottom:483.840019px;}
.yb9{bottom:487.259994px;}
.y129{bottom:489.059967px;}
.y113{bottom:491.399986px;}
.yd4{bottom:491.580025px;}
.ye1{bottom:494.100013px;}
.yae{bottom:495.000000px;}
.yc3{bottom:495.720017px;}
.y1e{bottom:496.080025px;}
.y101{bottom:496.980011px;}
.y173{bottom:498.059967px;}
.ya9{bottom:499.320030px;}
.y63{bottom:500.039977px;}
.y41{bottom:500.759994px;}
.yb8{bottom:501.299973px;}
.y152{bottom:501.840019px;}
.y128{bottom:504.179970px;}
.y112{bottom:505.440033px;}
.y8f{bottom:505.620002px;}
.ye0{bottom:511.019989px;}
.ya6{bottom:511.200027px;}
.y9f{bottom:511.919975px;}
.y1d{bottom:512.460022px;}
.y172{bottom:513.179970px;}
.ya8{bottom:514.080025px;}
.y10b{bottom:515.340019px;}
.y62{bottom:516.960022px;}
.y151{bottom:517.139992px;}
.yb7{bottom:519.659981px;}
.y40{bottom:523.440033px;}
.y111{bottom:523.799973px;}
.y127{bottom:525.059967px;}
.y100{bottom:525.240006px;}
.ydf{bottom:527.940033px;}
.y171{bottom:528.480011px;}
.y1c{bottom:528.659981px;}
.y9e{bottom:528.840019px;}
.y10a{bottom:529.559967px;}
.y150{bottom:532.259994px;}
.yb6{bottom:533.700027px;}
.y61{bottom:533.879998px;}
.y110{bottom:538.019989px;}
.yff{bottom:539.279983px;}
.y126{bottom:540.360008px;}
.y1b{bottom:544.860008px;}
.y8e{bottom:545.759994px;}
.y109{bottom:547.740006px;}
.y170{bottom:549.360008px;}
.y10f{bottom:552.059967px;}
.y14f{bottom:553.320030px;}
.yfe{bottom:557.820030px;}
.y3f{bottom:559.980011px;}
.yd6{bottom:560.519989px;}
.y1a{bottom:561.059967px;}
.yde{bottom:561.779983px;}
.yb5{bottom:561.960022px;}
.y8d{bottom:562.679970px;}
.y16f{bottom:564.480011px;}
.y60{bottom:565.559967px;}
.y14e{bottom:568.620002px;}
.y125{bottom:576.360008px;}
.y3e{bottom:576.899986px;}
.y19{bottom:577.259994px;}
.ydd{bottom:578.700027px;}
.y8c{bottom:579.600013px;}
.y16e{bottom:579.779983px;}
.y10e{bottom:580.320030px;}
.yfd{bottom:585.899986px;}
.y14d{bottom:589.320030px;}
.y108{bottom:590.220017px;}
.y124{bottom:591.659981px;}
.y18{bottom:593.460022px;}
.y8b{bottom:596.519989px;}
.y3d{bottom:599.580025px;}
.y16d{bottom:600.659981px;}
.y14c{bottom:604.620002px;}
.y17{bottom:609.659981px;}
.yfc{bottom:610.019989px;}
.ydc{bottom:610.200027px;}
.y123{bottom:612.540012px;}
.y8a{bottom:613.439999px;}
.y16c{bottom:615.959988px;}
.y5f{bottom:617.759994px;}
.y14b{bottom:625.500000px;}
.y16{bottom:625.860008px;}
.yfb{bottom:626.939999px;}
.y122{bottom:627.839985px;}
.y89{bottom:630.360008px;}
.y16b{bottom:631.079990px;}
.y5e{bottom:631.980011px;}
.y3c{bottom:636.120002px;}
.y14a{bottom:640.620002px;}
.ydb{bottom:641.879998px;}
.y15{bottom:642.240006px;}
.y121{bottom:642.959988px;}
.yfa{bottom:643.860008px;}
.y5d{bottom:646.019989px;}
.y88{bottom:647.279983px;}
.y16a{bottom:651.959988px;}
.y14{bottom:658.439999px;}
.y3b{bottom:658.800007px;}
.y5c{bottom:660.060001px;}
.yf9{bottom:660.779983px;}
.y149{bottom:661.680004px;}
.y120{bottom:663.839985px;}
.y87{bottom:664.199993px;}
.yda{bottom:666.360008px;}
.y169{bottom:667.259994px;}
.y5b{bottom:674.279983px;}
.y13{bottom:674.459988px;}
.y148{bottom:676.800007px;}
.yf8{bottom:677.699993px;}
.y11f{bottom:679.139992px;}
.y86{bottom:681.120002px;}
.y168{bottom:682.379998px;}
.y5a{bottom:688.319995px;}
.y12{bottom:690.660015px;}
.y147{bottom:692.100013px;}
.y11e{bottom:694.259994px;}
.yf7{bottom:694.620002px;}
.y3a{bottom:695.339985px;}
.y167{bottom:697.680004px;}
.y85{bottom:698.040012px;}
.y59{bottom:702.360008px;}
.yf6{bottom:711.540012px;}
.y39{bottom:712.259994px;}
.yad{bottom:712.800007px;}
.y146{bottom:712.980011px;}
.y84{bottom:714.959988px;}
.y11d{bottom:715.139992px;}
.y58{bottom:716.579990px;}
.y166{bottom:718.560001px;}
.y11{bottom:719.819995px;}
.y145{bottom:728.100013px;}
.yf5{bottom:728.459988px;}
.y11c{bottom:730.259994px;}
.y57{bottom:730.620002px;}
.y83{bottom:731.879998px;}
.y165{bottom:733.680004px;}
.y38{bottom:734.939999px;}
.y182{bottom:737.459988px;}
.y144{bottom:743.399986px;}
.y56{bottom:744.660015px;}
.yf4{bottom:745.379998px;}
.y11b{bottom:745.560001px;}
.y82{bottom:748.800007px;}
.y164{bottom:748.980011px;}
.y10{bottom:751.500000px;}
.y181{bottom:754.379998px;}
.y55{bottom:758.879998px;}
.yf3{bottom:762.300007px;}
.y143{bottom:764.100013px;}
.y81{bottom:765.720017px;}
.y11a{bottom:766.620002px;}
.yf{bottom:769.500000px;}
.y163{bottom:769.860008px;}
.y180{bottom:771.300007px;}
.y37{bottom:771.480011px;}
.y54{bottom:772.920010px;}
.yf2{bottom:779.220017px;}
.y142{bottom:779.399986px;}
.y119{bottom:781.740006px;}
.y80{bottom:782.639992px;}
.ye{bottom:786.240006px;}
.y17f{bottom:787.860008px;}
.y36{bottom:788.399986px;}
.y53{bottom:790.564228px;}
.y162{bottom:790.740006px;}
.yf1{bottom:796.139992px;}
.y7f{bottom:799.560001px;}
.y141{bottom:800.459988px;}
.y118{bottom:802.620002px;}
.y17e{bottom:803.160015px;}
.y161{bottom:806.040012px;}
.y35{bottom:811.079990px;}
.yf0{bottom:813.060001px;}
.y70{bottom:815.220017px;}
.y7e{bottom:816.480011px;}
.y117{bottom:817.740006px;}
.yd{bottom:820.980011px;}
.y140{bottom:821.160015px;}
.y52{bottom:822.240006px;}
.y17d{bottom:822.600013px;}
.yef{bottom:829.980011px;}
.y7d{bottom:833.399986px;}
.y13f{bottom:836.459988px;}
.y160{bottom:842.040012px;}
.y51{bottom:842.579990px;}
.yee{bottom:846.899986px;}
.y34{bottom:847.620002px;}
.y116{bottom:848.160015px;}
.y7c{bottom:850.319995px;}
.y13e{bottom:857.160015px;}
.yed{bottom:863.819995px;}
.y33{bottom:864.540012px;}
.y7b{bottom:867.240006px;}
.y17c{bottom:872.459988px;}
.y13d{bottom:878.220017px;}
.yec{bottom:880.740006px;}
.y7a{bottom:884.160015px;}
.y32{bottom:887.220017px;}
.y13c{bottom:893.519989px;}
.y50{bottom:896.400700px;}
.yeb{bottom:897.660015px;}
.yb{bottom:898.013321px;}
.yc{bottom:898.027600px;}
.y79{bottom:901.080008px;}
.y15f{bottom:908.639992px;}
.y13b{bottom:914.219999px;}
.y78{bottom:918.000000px;}
.y4f{bottom:919.074402px;}
.y31{bottom:923.759994px;}
.yea{bottom:929.340002px;}
.y13a{bottom:929.520006px;}
.y77{bottom:934.919992px;}
.y15e{bottom:944.639992px;}
.y30{bottom:946.439999px;}
.ye9{bottom:949.680004px;}
.y139{bottom:950.219999px;}
.y76{bottom:951.840002px;}
.y138{bottom:965.520006px;}
.y75{bottom:968.759994px;}
.y15d{bottom:980.819996px;}
.y74{bottom:985.680004px;}
.y137{bottom:986.580008px;}
.y4e{bottom:986.756425px;}
.y2f{bottom:998.099997px;}
.y136{bottom:1001.699993px;}
.y73{bottom:1002.599997px;}
.y4d{bottom:1016.099997px;}
.y15c{bottom:1017.000000px;}
.y72{bottom:1019.520006px;}
.y135{bottom:1022.580008px;}
.ya{bottom:1032.659998px;}
.y4c{bottom:1034.099997px;}
.y71{bottom:1036.439999px;}
.y134{bottom:1037.699993px;}
.y48{bottom:1055.879998px;}
.y9{bottom:1056.060001px;}
.y47{bottom:1072.799998px;}
.y9d{bottom:1072.800866px;}
.y2d{bottom:1072.980002px;}
.y8{bottom:1074.060001px;}
.y1{bottom:1094.400003px;}
.h22{height:14.939965px;}
.h6{height:32.003133px;}
.h14{height:34.685338px;}
.h23{height:36.416798px;}
.hd{height:36.637178px;}
.h1{height:36.639455px;}
.h1b{height:36.886852px;}
.h20{height:37.104641px;}
.h7{height:37.974103px;}
.h17{height:38.170439px;}
.h13{height:39.533323px;}
.h18{height:39.752103px;}
.h10{height:40.545412px;}
.h2{height:40.547690px;}
.h1c{height:40.619925px;}
.h1d{height:40.619930px;}
.h21{height:40.619997px;}
.h1f{height:40.620065px;}
.h27{height:40.620069px;}
.hb{height:40.629826px;}
.h29{height:41.760568px;}
.h24{height:42.700675px;}
.h2a{height:44.400371px;}
.h4{height:44.944373px;}
.h28{height:45.120249px;}
.h11{height:45.818755px;}
.h25{height:45.820287px;}
.h26{height:45.820355px;}
.h1a{height:45.820359px;}
.h12{height:46.212462px;}
.hc{height:46.215058px;}
.h19{height:46.734864px;}
.h1e{height:47.255444px;}
.h3{height:48.852282px;}
.h16{height:54.930849px;}
.h15{height:54.966541px;}
.hf{height:57.154267px;}
.he{height:61.813899px;}
.h5{height:61.817480px;}
.ha{height:83.520761px;}
.h8{height:97.904580px;}
.h9{height:106.802548px;}
.h0{height:1188.000000px;}
.w3{width:2.879998px;}
.w2{width:5.759994px;}
.w4{width:10.079990px;}
.w1{width:21.599997px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:108.719999px;}
.x1{left:198.900003px;}
.x14{left:216.719999px;}
.xc{left:218.699993px;}
.x8{left:257.579187px;}
.x21{left:258.840002px;}
.x1b{left:263.879998px;}
.x1c{left:285.300007px;}
.x1d{left:291.060001px;}
.x1e{left:293.939999px;}
.x22{left:295.379998px;}
.x1f{left:303.839985px;}
.xa{left:318.959988px;}
.x4{left:345.240006px;}
.x10{left:369.180005px;}
.x17{left:387.182339px;}
.x5{left:396.540012px;}
.x13{left:401.939999px;}
.xb{left:411.839985px;}
.xd{left:423.540012px;}
.xe{left:425.699993px;}
.x3{left:432.540012px;}
.x15{left:433.620002px;}
.x2{left:458.639992px;}
.x18{left:550.620002px;}
.x23{left:552.600014px;}
.x12{left:596.879998px;}
.x11{left:636.120002px;}
.x20{left:644.759994px;}
.x7{left:656.100014px;}
.x9{left:667.798534px;}
.x6{left:695.340019px;}
.x1a{left:712.799973px;}
.xf{left:718.379998px;}
.x19{left:757.980011px;}
@media print{
.v5{vertical-align:-17.279968pt;}
.v4{vertical-align:-14.719972pt;}
.v6{vertical-align:-12.799804pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.799928pt;}
.v3{vertical-align:15.359984pt;}
.v1{vertical-align:17.279908pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.042896pt;}
.ls28{letter-spacing:0.047268pt;}
.ls24{letter-spacing:0.085241pt;}
.ls4{letter-spacing:0.087654pt;}
.ls8{letter-spacing:0.087658pt;}
.ls2a{letter-spacing:0.114411pt;}
.ls3{letter-spacing:0.182288pt;}
.ls5{letter-spacing:0.182352pt;}
.lse{letter-spacing:0.213657pt;}
.ls25{letter-spacing:0.260596pt;}
.ls2b{letter-spacing:0.260720pt;}
.ls26{letter-spacing:0.281937pt;}
.ls14{letter-spacing:0.296262pt;}
.ls2{letter-spacing:0.318608pt;}
.ls23{letter-spacing:0.362656pt;}
.ls18{letter-spacing:0.426352pt;}
.ls1c{letter-spacing:0.447230pt;}
.ls12{letter-spacing:0.447350pt;}
.ls11{letter-spacing:0.447354pt;}
.ls1d{letter-spacing:0.447474pt;}
.ls1{letter-spacing:0.449826pt;}
.ls1b{letter-spacing:0.491161pt;}
.lsa{letter-spacing:0.493650pt;}
.ls6{letter-spacing:0.496659pt;}
.lsb{letter-spacing:0.496715pt;}
.ls1e{letter-spacing:0.498412pt;}
.ls10{letter-spacing:0.573298pt;}
.ls13{letter-spacing:0.573418pt;}
.lsf{letter-spacing:0.573542pt;}
.ls7{letter-spacing:0.683781pt;}
.lsc{letter-spacing:0.727606pt;}
.ls22{letter-spacing:0.861220pt;}
.ls1f{letter-spacing:0.979764pt;}
.ls9{letter-spacing:1.133666pt;}
.ls21{letter-spacing:1.619720pt;}
.ls17{letter-spacing:2.188600pt;}
.lsd{letter-spacing:2.259672pt;}
.ls29{letter-spacing:3.460912pt;}
.ls20{letter-spacing:3.539700pt;}
.ls19{letter-spacing:7.261120pt;}
.ls27{letter-spacing:7.300760pt;}
.ls15{letter-spacing:8.019680pt;}
.ls1a{letter-spacing:9.181168pt;}
.wsf{word-spacing:-49.841200pt;}
.ws6{word-spacing:-42.635200pt;}
.ws7{word-spacing:-13.811400pt;}
.ws11{word-spacing:-12.958712pt;}
.wsc{word-spacing:-12.460300pt;}
.ws3{word-spacing:-12.459600pt;}
.ws0{word-spacing:-11.859800pt;}
.ws8{word-spacing:-11.259300pt;}
.ws1{word-spacing:-11.144596pt;}
.wsa{word-spacing:-10.658800pt;}
.wse{word-spacing:-10.268482pt;}
.ws4{word-spacing:-10.057700pt;}
.ws10{word-spacing:-9.173170pt;}
.ws12{word-spacing:-8.707160pt;}
.wsd{word-spacing:-8.106670pt;}
.ws5{word-spacing:-8.106220pt;}
.ws13{word-spacing:-7.506170pt;}
.ws9{word-spacing:-7.393283pt;}
.wsb{word-spacing:-6.905680pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-10.239806pt;}
._6{margin-left:-8.558348pt;}
._2{margin-left:-7.433981pt;}
._9{margin-left:-5.607776pt;}
._3{margin-left:-4.654805pt;}
._8{margin-left:-3.601783pt;}
._a{margin-left:-2.496926pt;}
._1{margin-left:-1.099085pt;}
._0{width:1.387182pt;}
._d{width:2.535545pt;}
._e{width:4.200816pt;}
._12{width:5.148593pt;}
._c{width:6.077222pt;}
._10{width:7.141067pt;}
._f{width:8.119102pt;}
._15{width:9.645943pt;}
._14{width:10.975772pt;}
._1c{width:11.944581pt;}
._b{width:13.531013pt;}
._16{width:14.496773pt;}
._18{width:15.643323pt;}
._1d{width:17.045301pt;}
._1a{width:18.729826pt;}
._19{width:19.629840pt;}
._1b{width:20.923025pt;}
._5{width:22.389006pt;}
._11{width:23.449360pt;}
._17{width:24.416279pt;}
._13{width:32.007708pt;}
._4{width:47.346480pt;}
.fs15{font-size:27.622720pt;}
.fs17{font-size:30.024680pt;}
.fs10{font-size:32.424880pt;}
.fs13{font-size:32.426680pt;}
.fs16{font-size:34.828640pt;}
.fs5{font-size:37.831120pt;}
.fsf{font-size:40.230800pt;}
.fs6{font-size:40.233200pt;}
.fs11{font-size:42.635200pt;}
.fsb{font-size:45.034400pt;}
.fs0{font-size:45.037200pt;}
.fs14{font-size:45.121535pt;}
.fs3{font-size:47.439200pt;}
.fse{font-size:49.838400pt;}
.fs1{font-size:49.841200pt;}
.fsc{font-size:55.242400pt;}
.fs4{font-size:55.245600pt;}
.fs2{font-size:60.049200pt;}
.fs12{font-size:64.976321pt;}
.fsd{font-size:70.253996pt;}
.fsa{font-size:90.073996pt;}
.fs7{font-size:100.471929pt;}
.fs8{font-size:120.325404pt;}
.fs9{font-size:140.178880pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:2.559998pt;}
.y7{bottom:68.960022pt;}
.y6{bottom:96.320007pt;}
.y5{bottom:123.359985pt;}
.y4{bottom:151.039978pt;}
.y3{bottom:178.880005pt;}
.y2{bottom:204.479980pt;}
.y6f{bottom:216.159973pt;}
.y4b{bottom:226.880005pt;}
.y2e{bottom:228.960022pt;}
.y2c{bottom:232.640015pt;}
.y4a{bottom:240.320007pt;}
.y2b{bottom:247.679993pt;}
.yb4{bottom:258.880005pt;}
.y133{bottom:260.640015pt;}
.y49{bottom:261.119995pt;}
.y9c{bottom:262.559998pt;}
.y2a{bottom:262.719971pt;}
.yc2{bottom:271.359985pt;}
.y132{bottom:274.239990pt;}
.y9b{bottom:275.039978pt;}
.y6e{bottom:277.440002pt;}
.y29{bottom:277.760010pt;}
.ya5{bottom:278.880005pt;}
.yc1{bottom:283.840027pt;}
.y9a{bottom:287.520020pt;}
.y6d{bottom:290.080017pt;}
.y17b{bottom:290.719971pt;}
.ya4{bottom:291.359985pt;}
.y131{bottom:292.640015pt;}
.y28{bottom:292.799988pt;}
.yca{bottom:295.039978pt;}
.yc0{bottom:296.479980pt;}
.y15b{bottom:299.359985pt;}
.y99{bottom:300.159973pt;}
.y6c{bottom:302.559998pt;}
.ya3{bottom:304.000000pt;}
.y17a{bottom:304.320007pt;}
.y130{bottom:306.239990pt;}
.yd0{bottom:307.679993pt;}
.y27{bottom:307.840027pt;}
.yc9{bottom:311.520020pt;}
.yb3{bottom:312.640015pt;}
.yac{bottom:312.799988pt;}
.y6b{bottom:315.039978pt;}
.y98{bottom:316.479980pt;}
.y15a{bottom:317.760010pt;}
.yd3{bottom:320.159973pt;}
.ye8{bottom:321.599976pt;}
.y179{bottom:322.719971pt;}
.y26{bottom:322.880005pt;}
.ycf{bottom:324.000000pt;}
.y12f{bottom:324.960022pt;}
.ybf{bottom:325.119995pt;}
.y46{bottom:327.359985pt;}
.y6a{bottom:327.679993pt;}
.y97{bottom:328.960022pt;}
.y159{bottom:331.359985pt;}
.ya2{bottom:332.799988pt;}
.yd8{bottom:336.479980pt;}
.yc8{bottom:336.640015pt;}
.ybe{bottom:337.760010pt;}
.y25{bottom:337.919983pt;}
.y12e{bottom:338.400024pt;}
.y178{bottom:341.440002pt;}
.y96{bottom:341.599976pt;}
.ya1{bottom:345.280029pt;}
.yab{bottom:348.320007pt;}
.ye7{bottom:348.960022pt;}
.yce{bottom:349.119995pt;}
.y158{bottom:349.919983pt;}
.ybd{bottom:350.239990pt;}
.y12d{bottom:352.000000pt;}
.y45{bottom:352.479980pt;}
.y69{bottom:352.799988pt;}
.y24{bottom:352.960022pt;}
.yd5{bottom:354.080017pt;}
.y95{bottom:357.760010pt;}
.y177{bottom:360.000000pt;}
.y115{bottom:361.599976pt;}
.yaa{bottom:362.400024pt;}
.y107{bottom:362.880005pt;}
.y157{bottom:363.359985pt;}
.ye6{bottom:364.000000pt;}
.yc7{bottom:364.799988pt;}
.ycd{bottom:365.280029pt;}
.ybc{bottom:366.559998pt;}
.yb2{bottom:366.719971pt;}
.y23{bottom:368.000000pt;}
.y68{bottom:369.280029pt;}
.y94{bottom:370.400024pt;}
.y176{bottom:373.440002pt;}
.y114{bottom:374.080017pt;}
.yd7{bottom:374.239990pt;}
.y106{bottom:375.359985pt;}
.y44{bottom:377.440002pt;}
.ycc{bottom:377.919983pt;}
.ye5{bottom:379.039978pt;}
.y10d{bottom:379.200012pt;}
.yc6{bottom:379.840027pt;}
.yd2{bottom:381.599976pt;}
.y156{bottom:382.080017pt;}
.y93{bottom:382.880005pt;}
.y22{bottom:383.039978pt;}
.y12c{bottom:384.000000pt;}
.y67{bottom:384.320007pt;}
.yd9{bottom:386.719971pt;}
.y105{bottom:387.840027pt;}
.ycb{bottom:390.400024pt;}
.y10c{bottom:391.679993pt;}
.ybb{bottom:391.840027pt;}
.y175{bottom:392.000000pt;}
.ye4{bottom:394.080017pt;}
.yb1{bottom:394.880005pt;}
.y92{bottom:395.359985pt;}
.y155{bottom:395.520020pt;}
.y43{bottom:397.599976pt;}
.y21{bottom:397.919983pt;}
.yc5{bottom:399.200012pt;}
.y66{bottom:399.359985pt;}
.y104{bottom:400.479980pt;}
.y12b{bottom:402.559998pt;}
.y174{bottom:405.440002pt;}
.yd1{bottom:406.880005pt;}
.yba{bottom:408.000000pt;}
.ye3{bottom:409.119995pt;}
.yb0{bottom:409.919983pt;}
.y91{bottom:411.679993pt;}
.y20{bottom:412.320007pt;}
.y103{bottom:412.960022pt;}
.y154{bottom:414.080017pt;}
.y65{bottom:414.400024pt;}
.yc4{bottom:415.520020pt;}
.y12a{bottom:416.000000pt;}
.ya0{bottom:420.479980pt;}
.ye2{bottom:424.159973pt;}
.y90{bottom:424.320007pt;}
.yaf{bottom:424.960022pt;}
.y1f{bottom:426.559998pt;}
.y153{bottom:427.679993pt;}
.y102{bottom:429.280029pt;}
.y64{bottom:429.440002pt;}
.y42{bottom:430.080017pt;}
.yb9{bottom:433.119995pt;}
.y129{bottom:434.719971pt;}
.y113{bottom:436.799988pt;}
.yd4{bottom:436.960022pt;}
.ye1{bottom:439.200012pt;}
.yae{bottom:440.000000pt;}
.yc3{bottom:440.640015pt;}
.y1e{bottom:440.960022pt;}
.y101{bottom:441.760010pt;}
.y173{bottom:442.719971pt;}
.ya9{bottom:443.840027pt;}
.y63{bottom:444.479980pt;}
.y41{bottom:445.119995pt;}
.yb8{bottom:445.599976pt;}
.y152{bottom:446.080017pt;}
.y128{bottom:448.159973pt;}
.y112{bottom:449.280029pt;}
.y8f{bottom:449.440002pt;}
.ye0{bottom:454.239990pt;}
.ya6{bottom:454.400024pt;}
.y9f{bottom:455.039978pt;}
.y1d{bottom:455.520020pt;}
.y172{bottom:456.159973pt;}
.ya8{bottom:456.960022pt;}
.y10b{bottom:458.080017pt;}
.y62{bottom:459.520020pt;}
.y151{bottom:459.679993pt;}
.yb7{bottom:461.919983pt;}
.y40{bottom:465.280029pt;}
.y111{bottom:465.599976pt;}
.y127{bottom:466.719971pt;}
.y100{bottom:466.880005pt;}
.ydf{bottom:469.280029pt;}
.y171{bottom:469.760010pt;}
.y1c{bottom:469.919983pt;}
.y9e{bottom:470.080017pt;}
.y10a{bottom:470.719971pt;}
.y150{bottom:473.119995pt;}
.yb6{bottom:474.400024pt;}
.y61{bottom:474.559998pt;}
.y110{bottom:478.239990pt;}
.yff{bottom:479.359985pt;}
.y126{bottom:480.320007pt;}
.y1b{bottom:484.320007pt;}
.y8e{bottom:485.119995pt;}
.y109{bottom:486.880005pt;}
.y170{bottom:488.320007pt;}
.y10f{bottom:490.719971pt;}
.y14f{bottom:491.840027pt;}
.yfe{bottom:495.840027pt;}
.y3f{bottom:497.760010pt;}
.yd6{bottom:498.239990pt;}
.y1a{bottom:498.719971pt;}
.yde{bottom:499.359985pt;}
.yb5{bottom:499.520020pt;}
.y8d{bottom:500.159973pt;}
.y16f{bottom:501.760010pt;}
.y60{bottom:502.719971pt;}
.y14e{bottom:505.440002pt;}
.y125{bottom:512.320007pt;}
.y3e{bottom:512.799988pt;}
.y19{bottom:513.119995pt;}
.ydd{bottom:514.400024pt;}
.y8c{bottom:515.200012pt;}
.y16e{bottom:515.359985pt;}
.y10e{bottom:515.840027pt;}
.yfd{bottom:520.799988pt;}
.y14d{bottom:523.840027pt;}
.y108{bottom:524.640015pt;}
.y124{bottom:525.919983pt;}
.y18{bottom:527.520020pt;}
.y8b{bottom:530.239990pt;}
.y3d{bottom:532.960022pt;}
.y16d{bottom:533.919983pt;}
.y14c{bottom:537.440002pt;}
.y17{bottom:541.919983pt;}
.yfc{bottom:542.239990pt;}
.ydc{bottom:542.400024pt;}
.y123{bottom:544.480011pt;}
.y8a{bottom:545.279999pt;}
.y16c{bottom:547.519989pt;}
.y5f{bottom:549.119995pt;}
.y14b{bottom:556.000000pt;}
.y16{bottom:556.320007pt;}
.yfb{bottom:557.279999pt;}
.y122{bottom:558.079987pt;}
.y89{bottom:560.320007pt;}
.y16b{bottom:560.959991pt;}
.y5e{bottom:561.760010pt;}
.y3c{bottom:565.440002pt;}
.y14a{bottom:569.440002pt;}
.ydb{bottom:570.559998pt;}
.y15{bottom:570.880005pt;}
.y121{bottom:571.519989pt;}
.yfa{bottom:572.320007pt;}
.y5d{bottom:574.239990pt;}
.y88{bottom:575.359985pt;}
.y16a{bottom:579.519989pt;}
.y14{bottom:585.279999pt;}
.y3b{bottom:585.600006pt;}
.y5c{bottom:586.720001pt;}
.yf9{bottom:587.359985pt;}
.y149{bottom:588.160004pt;}
.y120{bottom:590.079987pt;}
.y87{bottom:590.399994pt;}
.yda{bottom:592.320007pt;}
.y169{bottom:593.119995pt;}
.y5b{bottom:599.359985pt;}
.y13{bottom:599.519989pt;}
.y148{bottom:601.600006pt;}
.yf8{bottom:602.399994pt;}
.y11f{bottom:603.679993pt;}
.y86{bottom:605.440002pt;}
.y168{bottom:606.559998pt;}
.y5a{bottom:611.839996pt;}
.y12{bottom:613.920013pt;}
.y147{bottom:615.200012pt;}
.y11e{bottom:617.119995pt;}
.yf7{bottom:617.440002pt;}
.y3a{bottom:618.079987pt;}
.y167{bottom:620.160004pt;}
.y85{bottom:620.480011pt;}
.y59{bottom:624.320007pt;}
.yf6{bottom:632.480011pt;}
.y39{bottom:633.119995pt;}
.yad{bottom:633.600006pt;}
.y146{bottom:633.760010pt;}
.y84{bottom:635.519989pt;}
.y11d{bottom:635.679993pt;}
.y58{bottom:636.959991pt;}
.y166{bottom:638.720001pt;}
.y11{bottom:639.839996pt;}
.y145{bottom:647.200012pt;}
.yf5{bottom:647.519989pt;}
.y11c{bottom:649.119995pt;}
.y57{bottom:649.440002pt;}
.y83{bottom:650.559998pt;}
.y165{bottom:652.160004pt;}
.y38{bottom:653.279999pt;}
.y182{bottom:655.519989pt;}
.y144{bottom:660.799988pt;}
.y56{bottom:661.920013pt;}
.yf4{bottom:662.559998pt;}
.y11b{bottom:662.720001pt;}
.y82{bottom:665.600006pt;}
.y164{bottom:665.760010pt;}
.y10{bottom:668.000000pt;}
.y181{bottom:670.559998pt;}
.y55{bottom:674.559998pt;}
.yf3{bottom:677.600006pt;}
.y143{bottom:679.200012pt;}
.y81{bottom:680.640015pt;}
.y11a{bottom:681.440002pt;}
.yf{bottom:684.000000pt;}
.y163{bottom:684.320007pt;}
.y180{bottom:685.600006pt;}
.y37{bottom:685.760010pt;}
.y54{bottom:687.040009pt;}
.yf2{bottom:692.640015pt;}
.y142{bottom:692.799988pt;}
.y119{bottom:694.880005pt;}
.y80{bottom:695.679993pt;}
.ye{bottom:698.880005pt;}
.y17f{bottom:700.320007pt;}
.y36{bottom:700.799988pt;}
.y53{bottom:702.723758pt;}
.y162{bottom:702.880005pt;}
.yf1{bottom:707.679993pt;}
.y7f{bottom:710.720001pt;}
.y141{bottom:711.519989pt;}
.y118{bottom:713.440002pt;}
.y17e{bottom:713.920013pt;}
.y161{bottom:716.480011pt;}
.y35{bottom:720.959991pt;}
.yf0{bottom:722.720001pt;}
.y70{bottom:724.640015pt;}
.y7e{bottom:725.760010pt;}
.y117{bottom:726.880005pt;}
.yd{bottom:729.760010pt;}
.y140{bottom:729.920013pt;}
.y52{bottom:730.880005pt;}
.y17d{bottom:731.200012pt;}
.yef{bottom:737.760010pt;}
.y7d{bottom:740.799988pt;}
.y13f{bottom:743.519989pt;}
.y160{bottom:748.480011pt;}
.y51{bottom:748.959991pt;}
.yee{bottom:752.799988pt;}
.y34{bottom:753.440002pt;}
.y116{bottom:753.920013pt;}
.y7c{bottom:755.839996pt;}
.y13e{bottom:761.920013pt;}
.yed{bottom:767.839996pt;}
.y33{bottom:768.480011pt;}
.y7b{bottom:770.880005pt;}
.y17c{bottom:775.519989pt;}
.y13d{bottom:780.640015pt;}
.yec{bottom:782.880005pt;}
.y7a{bottom:785.920013pt;}
.y32{bottom:788.640015pt;}
.y13c{bottom:794.239990pt;}
.y50{bottom:796.800622pt;}
.yeb{bottom:797.920013pt;}
.yb{bottom:798.234063pt;}
.yc{bottom:798.246756pt;}
.y79{bottom:800.960007pt;}
.y15f{bottom:807.679993pt;}
.y13b{bottom:812.639999pt;}
.y78{bottom:816.000000pt;}
.y4f{bottom:816.955024pt;}
.y31{bottom:821.119995pt;}
.yea{bottom:826.080002pt;}
.y13a{bottom:826.240005pt;}
.y77{bottom:831.039993pt;}
.y15e{bottom:839.679993pt;}
.y30{bottom:841.279999pt;}
.ye9{bottom:844.160004pt;}
.y139{bottom:844.639999pt;}
.y76{bottom:846.080002pt;}
.y138{bottom:858.240005pt;}
.y75{bottom:861.119995pt;}
.y15d{bottom:871.839996pt;}
.y74{bottom:876.160004pt;}
.y137{bottom:876.960007pt;}
.y4e{bottom:877.116822pt;}
.y2f{bottom:887.199997pt;}
.y136{bottom:890.399994pt;}
.y73{bottom:891.199997pt;}
.y4d{bottom:903.199997pt;}
.y15c{bottom:904.000000pt;}
.y72{bottom:906.240005pt;}
.y135{bottom:908.960007pt;}
.ya{bottom:917.919998pt;}
.y4c{bottom:919.199997pt;}
.y71{bottom:921.279999pt;}
.y134{bottom:922.399994pt;}
.y48{bottom:938.559998pt;}
.y9{bottom:938.720001pt;}
.y47{bottom:953.599998pt;}
.y9d{bottom:953.600770pt;}
.y2d{bottom:953.760002pt;}
.y8{bottom:954.720001pt;}
.y1{bottom:972.800003pt;}
.h22{height:13.279969pt;}
.h6{height:28.447229pt;}
.h14{height:30.831412pt;}
.h23{height:32.370488pt;}
.hd{height:32.566380pt;}
.h1{height:32.568405pt;}
.h1b{height:32.788313pt;}
.h20{height:32.981903pt;}
.h7{height:33.754758pt;}
.h17{height:33.929279pt;}
.h13{height:35.140731pt;}
.h18{height:35.335203pt;}
.h10{height:36.040366pt;}
.h2{height:36.042391pt;}
.h1c{height:36.106600pt;}
.h1d{height:36.106604pt;}
.h21{height:36.106664pt;}
.h1f{height:36.106724pt;}
.h27{height:36.106728pt;}
.hb{height:36.115401pt;}
.h29{height:37.120505pt;}
.h24{height:37.956156pt;}
.h2a{height:39.466996pt;}
.h4{height:39.950554pt;}
.h28{height:40.106888pt;}
.h11{height:40.727783pt;}
.h25{height:40.729144pt;}
.h26{height:40.729204pt;}
.h1a{height:40.729208pt;}
.h12{height:41.077744pt;}
.hc{height:41.080052pt;}
.h19{height:41.542102pt;}
.h1e{height:42.004839pt;}
.h3{height:43.424251pt;}
.h16{height:48.827421pt;}
.h15{height:48.859148pt;}
.hf{height:50.803793pt;}
.he{height:54.945688pt;}
.h5{height:54.948871pt;}
.ha{height:74.240676pt;}
.h8{height:87.026293pt;}
.h9{height:94.935599pt;}
.h0{height:1056.000000pt;}
.w3{width:2.559998pt;}
.w2{width:5.119995pt;}
.w4{width:8.959991pt;}
.w1{width:19.199997pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:96.639999pt;}
.x1{left:176.800003pt;}
.x14{left:192.639999pt;}
.xc{left:194.399994pt;}
.x8{left:228.959277pt;}
.x21{left:230.080002pt;}
.x1b{left:234.559998pt;}
.x1c{left:253.600006pt;}
.x1d{left:258.720001pt;}
.x1e{left:261.279999pt;}
.x22{left:262.559998pt;}
.x1f{left:270.079987pt;}
.xa{left:283.519989pt;}
.x4{left:306.880005pt;}
.x10{left:328.160004pt;}
.x17{left:344.162079pt;}
.x5{left:352.480011pt;}
.x13{left:357.279999pt;}
.xb{left:366.079987pt;}
.xd{left:376.480011pt;}
.xe{left:378.399994pt;}
.x3{left:384.480011pt;}
.x15{left:385.440002pt;}
.x2{left:407.679993pt;}
.x18{left:489.440002pt;}
.x23{left:491.200012pt;}
.x12{left:530.559998pt;}
.x11{left:565.440002pt;}
.x20{left:573.119995pt;}
.x7{left:583.200012pt;}
.x9{left:593.598697pt;}
.x6{left:618.080017pt;}
.x1a{left:633.599976pt;}
.xf{left:638.559998pt;}
.x19{left:673.760010pt;}
}




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