
    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_45602d00f4c2b5227ebf702e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_b72463aa0c1eabe3db958a5b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_a3cba78e7fae5216e15f930a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_14e33eebd2e88695032bbcae.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_77364c5840108792c357f880.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_553a0f6c755907951ea91866.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_59af516e1cc491e8b8dbc35d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_72953671cdcf3d2e4e2efca9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a0548ce4bf32c70d9ccc6375.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e4fd3f8df9be2265dee9114b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.237576,0.000000,-0.079184,0.237128,0,0);-ms-transform:matrix(0.237576,0.000000,-0.079184,0.237128,0,0);-webkit-transform:matrix(0.237576,0.000000,-0.079184,0.237128,0,0);}
.m2{transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249712,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);}
.m4{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,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);}
.v1{vertical-align:-20.880000px;}
.v6{vertical-align:-18.346785px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:18.346785px;}
.ls11{letter-spacing:-0.186600px;}
.ls5{letter-spacing:-0.138000px;}
.ls1a{letter-spacing:-0.125400px;}
.ls8{letter-spacing:-0.121200px;}
.ls3{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.ls6{letter-spacing:-0.084000px;}
.ls19{letter-spacing:-0.066000px;}
.ls15{letter-spacing:-0.023400px;}
.ls18{letter-spacing:-0.018360px;}
.ls17{letter-spacing:-0.009000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014760px;}
.ls13{letter-spacing:0.047520px;}
.lsa{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.060480px;}
.ls12{letter-spacing:0.060600px;}
.lsb{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.074160px;}
.ls1b{letter-spacing:0.086400px;}
.ls4{letter-spacing:0.090000px;}
.lse{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.108600px;}
.lsf{letter-spacing:0.113400px;}
.ls1c{letter-spacing:0.118200px;}
.ls2{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.170400px;}
.ls10{letter-spacing:0.173400px;}
.ls1e{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.275400px;}
.ls20{letter-spacing:47.726640px;}
.lsc{letter-spacing:63.566640px;}
.ls1d{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws15{word-spacing:-41.763574px;}
.ws11{word-spacing:-39.613312px;}
.ws0{word-spacing:-21.345120px;}
.ws4{word-spacing:-14.493600px;}
.wsb{word-spacing:-13.399800px;}
.ws1d{word-spacing:-13.344600px;}
.ws13{word-spacing:-13.339800px;}
.ws12{word-spacing:-13.335000px;}
.ws2{word-spacing:-13.226400px;}
.ws14{word-spacing:-13.160400px;}
.ws1c{word-spacing:-13.101000px;}
.wsc{word-spacing:-13.039800px;}
.ws1{word-spacing:-11.880000px;}
.wsd{word-spacing:-8.553600px;}
.ws9{word-spacing:-0.180000px;}
.ws7{word-spacing:-0.144000px;}
.ws5{word-spacing:-0.102000px;}
.ws18{word-spacing:-0.072155px;}
.ws8{word-spacing:-0.018000px;}
.ws6{word-spacing:0.000000px;}
.wsa{word-spacing:0.360000px;}
.ws3{word-spacing:4.304880px;}
.ws19{word-spacing:757.140543px;}
.wse{word-spacing:759.249369px;}
.ws17{word-spacing:832.405259px;}
.ws16{word-spacing:944.925877px;}
.ws1b{word-spacing:1207.517861px;}
.ws10{word-spacing:1210.932721px;}
.ws1a{word-spacing:1291.613932px;}
.wsf{word-spacing:1295.028793px;}
._1a{margin-left:-560.907456px;}
._32{margin-left:-559.721242px;}
._2e{margin-left:-388.834451px;}
._18{margin-left:-365.982447px;}
._17{margin-left:-363.030133px;}
._19{margin-left:-359.140745px;}
._31{margin-left:-356.912099px;}
._1b{margin-left:-353.974175px;}
._10{margin-left:-341.585764px;}
._2f{margin-left:-338.530362px;}
._14{margin-left:-304.750548px;}
._13{margin-left:-301.238592px;}
._15{margin-left:-296.800514px;}
._30{margin-left:-295.665947px;}
._20{margin-left:-289.566305px;}
._1f{margin-left:-283.862794px;}
._1e{margin-left:-276.379130px;}
._23{margin-left:-274.639563px;}
._21{margin-left:-272.954749px;}
._2d{margin-left:-271.341262px;}
._24{margin-left:-269.307589px;}
._1c{margin-left:-265.880747px;}
._25{margin-left:-258.877288px;}
._16{margin-left:-204.773029px;}
._22{margin-left:-196.415267px;}
._26{margin-left:-189.567609px;}
._28{margin-left:-167.128347px;}
._2a{margin-left:-165.325062px;}
._2c{margin-left:-163.839298px;}
._11{margin-left:-120.264645px;}
._27{margin-left:-108.596446px;}
._29{margin-left:-105.900504px;}
._2b{margin-left:-100.586503px;}
._12{margin-left:-54.104565px;}
._b{margin-left:-3.646439px;}
._5{margin-left:-2.557320px;}
._2{margin-left:-1.271760px;}
._0{width:1.313985px;}
._4{width:2.482230px;}
._6{width:3.829665px;}
._7{width:5.198280px;}
._3{width:6.312600px;}
._1{width:7.381272px;}
._a{width:8.383656px;}
._8{width:9.859800px;}
._9{width:11.252760px;}
._3a{width:14.759280px;}
._3b{width:15.962760px;}
._c{width:17.074080px;}
._d{width:18.170520px;}
._3c{width:19.442520px;}
._39{width:29.458800px;}
._35{width:30.540960px;}
._37{width:38.717280px;}
._36{width:42.925680px;}
._1d{width:45.811440px;}
._34{width:59.218200px;}
._f{width:99.258120px;}
._33{width:102.264120px;}
._38{width:144.167760px;}
._e{width:145.791000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs8{font-size:42.016559px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs9{font-size:72.155396px;}
.fsa{font-size:76.072085px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yae{bottom:3.330000px;}
.ya9{bottom:3.420000px;}
.y91{bottom:4.889991px;}
.y5b{bottom:7.830000px;}
.y5c{bottom:7.920000px;}
.yb6{bottom:9.476688px;}
.yb7{bottom:9.476690px;}
.yd7{bottom:16.650000px;}
.y6b{bottom:17.550000px;}
.yb1{bottom:20.880000px;}
.ya8{bottom:20.970000px;}
.y82{bottom:25.380000px;}
.y7e{bottom:25.470000px;}
.yd5{bottom:34.200000px;}
.y59{bottom:35.190000px;}
.yad{bottom:38.520000px;}
.yd4{bottom:43.020000px;}
.yd3{bottom:60.570000px;}
.yda{bottom:60.660000px;}
.y2{bottom:62.877000px;}
.y2b{bottom:74.190000px;}
.ya6{bottom:75.240000px;}
.y7b{bottom:80.100000px;}
.y1{bottom:96.357000px;}
.yc5{bottom:117.030000px;}
.yea{bottom:117.750000px;}
.y29{bottom:126.390000px;}
.y9d{bottom:131.700000px;}
.y56{bottom:132.420000px;}
.ye9{bottom:135.300000px;}
.y28{bottom:143.940000px;}
.yc4{bottom:152.670000px;}
.ye8{bottom:152.940000px;}
.y79{bottom:160.140000px;}
.y27{bottom:161.580000px;}
.y9c{bottom:167.340000px;}
.y55{bottom:167.970000px;}
.y10f{bottom:170.130000px;}
.yc3{bottom:170.220000px;}
.y26{bottom:179.130000px;}
.y9b{bottom:184.890000px;}
.y54{bottom:185.610000px;}
.y10e{bottom:187.680000px;}
.yc2{bottom:187.770000px;}
.ye7{bottom:188.490000px;}
.y78{bottom:195.780000px;}
.y25{bottom:196.680000px;}
.y53{bottom:203.160000px;}
.y10d{bottom:205.320000px;}
.ye6{bottom:206.040000px;}
.y24{bottom:214.320000px;}
.y9a{bottom:220.440000px;}
.yc0{bottom:220.800000px;}
.ye5{bottom:223.680000px;}
.yc1{bottom:229.800000px;}
.y77{bottom:231.330000px;}
.y23{bottom:231.870000px;}
.y52{bottom:238.710000px;}
.ye4{bottom:241.230000px;}
.y76{bottom:246.270000px;}
.y99{bottom:247.080000px;}
.y10c{bottom:249.420000px;}
.y22{bottom:249.510000px;}
.y51{bottom:256.350000px;}
.ye3{bottom:258.870000px;}
.y21{bottom:267.060000px;}
.ybf{bottom:270.120000px;}
.y75{bottom:273.630000px;}
.y50{bottom:273.900000px;}
.y10b{bottom:276.060000px;}
.ye2{bottom:276.420000px;}
.y98{bottom:282.630000px;}
.y20{bottom:284.610000px;}
.y10a{bottom:293.610000px;}
.ye1{bottom:293.970000px;}
.y97{bottom:300.180000px;}
.y74{bottom:300.990000px;}
.y1f{bottom:302.250000px;}
.ybe{bottom:305.670000px;}
.y4f{bottom:309.540000px;}
.y109{bottom:320.250000px;}
.ybd{bottom:323.310000px;}
.y73{bottom:328.350000px;}
.ye0{bottom:329.610000px;}
.y96{bottom:332.580000px;}
.y1e{bottom:337.800000px;}
.ybc{bottom:340.860000px;}
.y4e{bottom:345.090000px;}
.ydf{bottom:347.160000px;}
.y108{bottom:355.350000px;}
.y1d{bottom:355.440000px;}
.y71{bottom:355.620000px;}
.ybb{bottom:358.410000px;}
.yde{bottom:364.800000px;}
.y1c{bottom:372.990000px;}
.yba{bottom:376.050000px;}
.y4d{bottom:380.640000px;}
.y107{bottom:381.990000px;}
.ydd{bottom:382.350000px;}
.y72{bottom:382.980000px;}
.y95{bottom:383.880000px;}
.yb9{bottom:393.600000px;}
.y4c{bottom:398.280000px;}
.y1b{bottom:399.900000px;}
.yb5{bottom:407.849959px;}
.y106{bottom:408.540000px;}
.yb8{bottom:416.820000px;}
.y94{bottom:419.430000px;}
.y4b{bottom:425.190000px;}
.y105{bottom:426.090000px;}
.ydc{bottom:426.810000px;}
.y70{bottom:431.670000px;}
.y93{bottom:436.980000px;}
.y1a{bottom:448.500000px;}
.y104{bottom:452.730000px;}
.y6f{bottom:455.700000px;}
.yb4{bottom:457.050000px;}
.y90{bottom:470.099959px;}
.y92{bottom:470.130000px;}
.y103{bottom:470.310000px;}
.ydb{bottom:472.560000px;}
.y4a{bottom:473.370000px;}
.y6e{bottom:483.000000px;}
.y19{bottom:485.520000px;}
.y49{bottom:491.820000px;}
.yb3{bottom:492.720000px;}
.y102{bottom:496.950000px;}
.y18{bottom:503.160000px;}
.yb2{bottom:507.660000px;}
.y48{bottom:510.270000px;}
.y6d{bottom:510.360000px;}
.y101{bottom:514.500000px;}
.y8f{bottom:519.360000px;}
.y17{bottom:520.710000px;}
.yd9{bottom:535.020000px;}
.y47{bottom:537.720000px;}
.y16{bottom:538.260000px;}
.y100{bottom:541.410000px;}
.y8e{bottom:555.000000px;}
.y15{bottom:555.900000px;}
.yb0{bottom:561.210000px;}
.y6c{bottom:564.990000px;}
.y8d{bottom:572.550000px;}
.y46{bottom:573.270000px;}
.y14{bottom:573.450000px;}
.yff{bottom:589.650000px;}
.y8c{bottom:590.190000px;}
.y45{bottom:590.910000px;}
.y13{bottom:591.090000px;}
.yfe{bottom:607.290000px;}
.y8b{bottom:607.740000px;}
.y12{bottom:608.640000px;}
.y6a{bottom:613.770000px;}
.yaf{bottom:614.670000px;}
.yd8{bottom:615.120000px;}
.y44{bottom:617.460000px;}
.y8a{bottom:625.290000px;}
.y11{bottom:626.190000px;}
.yfd{bottom:634.200000px;}
.y69{bottom:637.710000px;}
.y89{bottom:642.930000px;}
.y10{bottom:643.830000px;}
.y43{bottom:653.010000px;}
.y88{bottom:660.480000px;}
.yf{bottom:661.380000px;}
.y68{bottom:665.070000px;}
.yac{bottom:668.220000px;}
.yfc{bottom:671.190000px;}
.yd6{bottom:677.670000px;}
.ye{bottom:679.020000px;}
.y42{bottom:679.920000px;}
.y67{bottom:692.340000px;}
.y87{bottom:692.700000px;}
.yd{bottom:696.570000px;}
.yfb{bottom:698.100000px;}
.yc{bottom:714.120000px;}
.y41{bottom:717.000000px;}
.y66{bottom:719.700000px;}
.yab{bottom:721.680000px;}
.yd2{bottom:722.580000px;}
.yb{bottom:731.760000px;}
.y40{bottom:734.550000px;}
.yfa{bottom:735.450000px;}
.y86{bottom:743.280000px;}
.y64{bottom:747.060000px;}
.y3f{bottom:752.190000px;}
.ya5{bottom:757.590000px;}
.ya{bottom:758.670000px;}
.y3e{bottom:769.740000px;}
.y65{bottom:774.420000px;}
.y85{bottom:779.730000px;}
.yf9{bottom:783.690000px;}
.y3d{bottom:787.290000px;}
.yaa{bottom:793.500000px;}
.y84{bottom:794.670000px;}
.yf8{bottom:801.330000px;}
.yd0{bottom:802.680000px;}
.y3c{bottom:804.930000px;}
.y9{bottom:805.380000px;}
.ya7{bottom:811.860000px;}
.yf7{bottom:818.880000px;}
.y3b{bottom:822.480000px;}
.y63{bottom:823.110000px;}
.yd1{bottom:829.950000px;}
.yf6{bottom:836.520000px;}
.y83{bottom:839.670000px;}
.y3a{bottom:840.030000px;}
.y8{bottom:841.200000px;}
.y62{bottom:847.050000px;}
.yf5{bottom:854.070000px;}
.ya4{bottom:869.190000px;}
.yf4{bottom:871.620000px;}
.y61{bottom:874.410000px;}
.y39{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.ycf{bottom:878.640000px;}
.y81{bottom:884.580000px;}
.yf3{bottom:889.260000px;}
.y38{bottom:893.220000px;}
.y60{bottom:901.680000px;}
.ya3{bottom:904.740000px;}
.y37{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.yce{bottom:914.280000px;}
.yf2{bottom:916.170000px;}
.ya2{bottom:919.680000px;}
.y36{bottom:928.410000px;}
.y5f{bottom:929.040000px;}
.y80{bottom:929.490000px;}
.ycd{bottom:931.830000px;}
.y5{bottom:949.290000px;}
.ycc{bottom:949.380000px;}
.y5e{bottom:956.400000px;}
.y35{bottom:963.960000px;}
.yf1{bottom:964.410000px;}
.ya1{bottom:964.680000px;}
.y113{bottom:972.600000px;}
.y7f{bottom:974.400000px;}
.y34{bottom:981.600000px;}
.yf0{bottom:981.960000px;}
.y5d{bottom:983.760000px;}
.ycb{bottom:985.830000px;}
.y4{bottom:987.630000px;}
.y112{bottom:990.150000px;}
.ya0{bottom:991.950000px;}
.y33{bottom:999.150000px;}
.yef{bottom:999.600000px;}
.y58{bottom:1011.060000px;}
.y3{bottom:1012.320000px;}
.y32{bottom:1016.820000px;}
.yee{bottom:1017.180000px;}
.y7a{bottom:1019.340000px;}
.yca{bottom:1021.500000px;}
.y31{bottom:1034.370000px;}
.yed{bottom:1034.820000px;}
.y5a{bottom:1038.420000px;}
.y9e{bottom:1046.700000px;}
.y30{bottom:1051.920000px;}
.yec{bottom:1052.370000px;}
.yc9{bottom:1057.050000px;}
.y111{bottom:1060.920000px;}
.y7d{bottom:1064.250000px;}
.yeb{bottom:1069.920000px;}
.y9f{bottom:1073.970000px;}
.yc8{bottom:1074.600000px;}
.y110{bottom:1078.560000px;}
.y57{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y7c{bottom:1091.610000px;}
.yc7{bottom:1092.150000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.yc6{bottom:1125.270000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h17{height:17.640000px;}
.ha{height:26.550000px;}
.hc{height:26.580000px;}
.hb{height:26.640000px;}
.h14{height:26.670000px;}
.h1b{height:27.900006px;}
.h11{height:27.900047px;}
.h2{height:30.022383px;}
.h13{height:32.918906px;}
.h16{height:35.190000px;}
.h3{height:38.100586px;}
.h10{height:44.100000px;}
.he{height:44.190000px;}
.hf{height:44.220000px;}
.h6{height:50.902383px;}
.h18{height:52.740000px;}
.h19{height:52.819582px;}
.h9{height:53.910000px;}
.h5{height:55.779258px;}
.h1d{height:61.740000px;}
.h8{height:61.793886px;}
.h7{height:70.664062px;}
.h1a{height:70.781343px;}
.h4{height:71.019492px;}
.h1c{height:79.290000px;}
.h1e{height:79.380000px;}
.h12{height:89.163360px;}
.h15{height:89.460000px;}
.hd{height:98.820000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4c{width:33.150000px;}
.w4a{width:34.650000px;}
.w4d{width:35.820000px;}
.w50{width:36.360000px;}
.w49{width:36.900000px;}
.w47{width:36.990000px;}
.w4b{width:37.350000px;}
.w48{width:37.440000px;}
.w28{width:39.240000px;}
.w2b{width:39.330000px;}
.wd{width:40.230000px;}
.w6{width:40.320000px;}
.w9{width:40.350000px;}
.w1a{width:41.400000px;}
.w4e{width:41.580000px;}
.w4f{width:41.850000px;}
.w54{width:41.940000px;}
.w2e{width:42.030000px;}
.w2a{width:42.120000px;}
.w2c{width:42.150000px;}
.w25{width:42.870000px;}
.w27{width:42.930000px;}
.w8{width:43.110000px;}
.w18{width:43.140000px;}
.w26{width:43.650000px;}
.w29{width:43.740000px;}
.w15{width:44.100000px;}
.w14{width:44.130000px;}
.w1c{width:44.370000px;}
.w7{width:44.820000px;}
.w55{width:44.910000px;}
.w56{width:44.940000px;}
.w35{width:45.360000px;}
.w1b{width:46.080000px;}
.w38{width:46.170000px;}
.w39{width:46.440000px;}
.w3d{width:47.250000px;}
.w3a{width:48.900000px;}
.w3b{width:49.410000px;}
.w2d{width:51.030000px;}
.w3e{width:51.660000px;}
.w3c{width:52.380000px;}
.w36{width:53.100000px;}
.w10{width:53.820000px;}
.we{width:56.070000px;}
.w37{width:56.790000px;}
.w11{width:58.860000px;}
.wf{width:65.460000px;}
.w17{width:85.860000px;}
.w1d{width:86.400000px;}
.w43{width:94.590000px;}
.w46{width:109.890000px;}
.w42{width:112.770000px;}
.w44{width:112.800000px;}
.w3{width:119.880000px;}
.w12{width:122.310000px;}
.w21{width:126.540000px;}
.w24{width:126.630000px;}
.w22{width:126.660000px;}
.w4{width:129.780000px;}
.w5{width:129.810000px;}
.w20{width:130.980000px;}
.w53{width:131.400000px;}
.w19{width:133.380000px;}
.w13{width:134.580000px;}
.w32{width:143.040000px;}
.w45{width:143.280000px;}
.w33{width:148.140000px;}
.wc{width:154.530000px;}
.w23{width:154.710000px;}
.w34{width:156.420000px;}
.w31{width:156.780000px;}
.w30{width:161.490000px;}
.w16{width:163.110000px;}
.wb{width:163.290000px;}
.w3f{width:178.590000px;}
.wa{width:204.660000px;}
.w40{width:208.170000px;}
.w52{width:230.610000px;}
.w1e{width:258.330000px;}
.w51{width:312.975155px;}
.w41{width:367.410000px;}
.w2f{width:391.508291px;}
.w1f{width:409.440000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.960000px;}
.x55{left:6.030000px;}
.x4f{left:7.110000px;}
.x58{left:8.280000px;}
.x59{left:10.530000px;}
.x5a{left:11.610000px;}
.x16{left:12.870000px;}
.x12{left:15.120000px;}
.x1e{left:17.370000px;}
.x19{left:18.540000px;}
.x18{left:19.620000px;}
.x1c{left:20.790000px;}
.x1b{left:21.870000px;}
.x14{left:24.240000px;}
.x1a{left:26.490000px;}
.x1d{left:36.660000px;}
.x49{left:62.190000px;}
.x1{left:67.900500px;}
.x6c{left:69.480000px;}
.x4{left:95.039987px;}
.x26{left:102.240000px;}
.x77{left:111.239987px;}
.x46{left:122.039987px;}
.x34{left:155.970000px;}
.xe{left:184.620000px;}
.x39{left:199.650000px;}
.x2{left:202.799987px;}
.x4a{left:224.400000px;}
.x3a{left:244.020000px;}
.x5b{left:248.070000px;}
.x43{left:250.844980px;}
.x1f{left:252.570000px;}
.x6{left:256.170000px;}
.x27{left:266.070000px;}
.x4e{left:270.480000px;}
.x48{left:285.599987px;}
.x36{left:287.670000px;}
.x69{left:290.145000px;}
.x6a{left:299.214872px;}
.x6d{left:300.810000px;}
.x2c{left:307.110000px;}
.x50{left:324.390000px;}
.x3b{left:327.720000px;}
.x5{left:341.219987px;}
.x71{left:343.470000px;}
.x2d{left:352.740000px;}
.x5d{left:361.650000px;}
.x3c{left:372.180000px;}
.x20{left:375.600000px;}
.x8{left:376.770000px;}
.x4b{left:381.990000px;}
.x44{left:383.205380px;}
.xf{left:390.090000px;}
.x28{left:396.570000px;}
.x35{left:415.020000px;}
.x22{left:416.640000px;}
.xa{left:417.810000px;}
.x51{left:428.880000px;}
.x11{left:431.130000px;}
.x6e{left:432.930000px;}
.x60{left:435.090000px;}
.x2e{left:437.610000px;}
.x33{left:446.609987px;}
.x3d{left:455.070000px;}
.x5c{left:457.050000px;}
.x23{left:462.270000px;}
.xb{left:463.440000px;}
.x72{left:473.970000px;}
.x52{left:476.130000px;}
.x61{left:478.920000px;}
.x29{left:483.240000px;}
.x13{left:487.920000px;}
.x3e{left:499.530000px;}
.x21{left:506.100000px;}
.x9{left:507.270000px;}
.x62{left:512.880000px;}
.x73{left:519.630000px;}
.x4c{left:525.750000px;}
.x2a{left:527.100000px;}
.x37{left:542.400000px;}
.xc{left:548.340000px;}
.x63{left:549.420000px;}
.x24{left:551.040000px;}
.x10{left:554.100000px;}
.x6f{left:563.460000px;}
.x2f{left:568.140000px;}
.x5e{left:570.570000px;}
.x53{left:575.970000px;}
.x64{left:591.720000px;}
.xd{left:593.970000px;}
.x15{left:595.140000px;}
.x25{left:596.580000px;}
.x6b{left:603.149987px;}
.x74{left:604.500000px;}
.x42{left:606.389987px;}
.x30{left:613.770000px;}
.x54{left:621.510000px;}
.x65{left:634.380000px;}
.x45{left:642.389987px;}
.x47{left:644.639987px;}
.x3f{left:646.080000px;}
.x17{left:649.770000px;}
.x2b{left:657.600000px;}
.x4d{left:674.610000px;}
.x66{left:676.950000px;}
.x70{left:693.960000px;}
.x38{left:697.830000px;}
.x31{left:699.810000px;}
.x5f{left:714.570000px;}
.x56{left:722.580000px;}
.x75{left:735.000000px;}
.x40{left:737.880000px;}
.x32{left:746.610000px;}
.x67{left:750.030000px;}
.x57{left:774.960000px;}
.x76{left:780.630000px;}
.x41{left:782.430000px;}
.x68{left:788.100000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v6{vertical-align:-16.308254pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:16.308254pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls5{letter-spacing:-0.122667pt;}
.ls1a{letter-spacing:-0.111467pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls3{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls6{letter-spacing:-0.074667pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls15{letter-spacing:-0.020800pt;}
.ls18{letter-spacing:-0.016320pt;}
.ls17{letter-spacing:-0.008000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.013120pt;}
.ls13{letter-spacing:0.042240pt;}
.lsa{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.053760pt;}
.ls12{letter-spacing:0.053867pt;}
.lsb{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.065920pt;}
.ls1b{letter-spacing:0.076800pt;}
.ls4{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.096533pt;}
.lsf{letter-spacing:0.100800pt;}
.ls1c{letter-spacing:0.105067pt;}
.ls2{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.151467pt;}
.ls10{letter-spacing:0.154133pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.244800pt;}
.ls20{letter-spacing:42.423680pt;}
.lsc{letter-spacing:56.503680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws15{word-spacing:-37.123177pt;}
.ws11{word-spacing:-35.211833pt;}
.ws0{word-spacing:-18.973440pt;}
.ws4{word-spacing:-12.883200pt;}
.wsb{word-spacing:-11.910933pt;}
.ws1d{word-spacing:-11.861867pt;}
.ws13{word-spacing:-11.857600pt;}
.ws12{word-spacing:-11.853333pt;}
.ws2{word-spacing:-11.756800pt;}
.ws14{word-spacing:-11.698133pt;}
.ws1c{word-spacing:-11.645333pt;}
.wsc{word-spacing:-11.590933pt;}
.ws1{word-spacing:-10.560000pt;}
.wsd{word-spacing:-7.603200pt;}
.ws9{word-spacing:-0.160000pt;}
.ws7{word-spacing:-0.128000pt;}
.ws5{word-spacing:-0.090667pt;}
.ws18{word-spacing:-0.064138pt;}
.ws8{word-spacing:-0.016000pt;}
.ws6{word-spacing:0.000000pt;}
.wsa{word-spacing:0.320000pt;}
.ws3{word-spacing:3.826560pt;}
.ws19{word-spacing:673.013816pt;}
.wse{word-spacing:674.888328pt;}
.ws17{word-spacing:739.915785pt;}
.ws16{word-spacing:839.934112pt;}
.ws1b{word-spacing:1073.349210pt;}
.ws10{word-spacing:1076.384641pt;}
.ws1a{word-spacing:1148.101273pt;}
.wsf{word-spacing:1151.136704pt;}
._1a{margin-left:-498.584406pt;}
._32{margin-left:-497.529993pt;}
._2e{margin-left:-345.630623pt;}
._18{margin-left:-325.317731pt;}
._17{margin-left:-322.693451pt;}
._19{margin-left:-319.236218pt;}
._31{margin-left:-317.255199pt;}
._1b{margin-left:-314.643711pt;}
._10{margin-left:-303.631790pt;}
._2f{margin-left:-300.915878pt;}
._14{margin-left:-270.889376pt;}
._13{margin-left:-267.767637pt;}
._15{margin-left:-263.822679pt;}
._30{margin-left:-262.814175pt;}
._20{margin-left:-257.392272pt;}
._1f{margin-left:-252.322484pt;}
._1e{margin-left:-245.670338pt;}
._23{margin-left:-244.124056pt;}
._21{margin-left:-242.626444pt;}
._2d{margin-left:-241.192233pt;}
._24{margin-left:-239.384523pt;}
._1c{margin-left:-236.338441pt;}
._25{margin-left:-230.113145pt;}
._16{margin-left:-182.020470pt;}
._22{margin-left:-174.591349pt;}
._26{margin-left:-168.504541pt;}
._28{margin-left:-148.558531pt;}
._2a{margin-left:-146.955610pt;}
._2c{margin-left:-145.634931pt;}
._11{margin-left:-106.901907pt;}
._27{margin-left:-96.530175pt;}
._29{margin-left:-94.133782pt;}
._2b{margin-left:-89.410225pt;}
._12{margin-left:-48.092946pt;}
._b{margin-left:-3.241279pt;}
._5{margin-left:-2.273174pt;}
._2{margin-left:-1.130453pt;}
._0{width:1.167987pt;}
._4{width:2.206427pt;}
._6{width:3.404146pt;}
._7{width:4.620693pt;}
._3{width:5.611200pt;}
._1{width:6.561131pt;}
._a{width:7.452138pt;}
._8{width:8.764267pt;}
._9{width:10.002453pt;}
._3a{width:13.119360pt;}
._3b{width:14.189120pt;}
._c{width:15.176960pt;}
._d{width:16.151573pt;}
._3c{width:17.282240pt;}
._39{width:26.185600pt;}
._35{width:27.147520pt;}
._37{width:34.415360pt;}
._36{width:38.156160pt;}
._1d{width:40.721280pt;}
._34{width:52.638400pt;}
._f{width:88.229440pt;}
._33{width:90.901440pt;}
._38{width:128.149120pt;}
._e{width:129.592000pt;}
.fs0{font-size:34.560000pt;}
.fs8{font-size:37.348052pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs9{font-size:64.138129pt;}
.fsa{font-size:67.619631pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:2.960000pt;}
.ya9{bottom:3.040000pt;}
.y91{bottom:4.346658pt;}
.y5b{bottom:6.960000pt;}
.y5c{bottom:7.040000pt;}
.yb6{bottom:8.423723pt;}
.yb7{bottom:8.423724pt;}
.yd7{bottom:14.800000pt;}
.y6b{bottom:15.600000pt;}
.yb1{bottom:18.560000pt;}
.ya8{bottom:18.640000pt;}
.y82{bottom:22.560000pt;}
.y7e{bottom:22.640000pt;}
.yd5{bottom:30.400000pt;}
.y59{bottom:31.280000pt;}
.yad{bottom:34.240000pt;}
.yd4{bottom:38.240000pt;}
.yd3{bottom:53.840000pt;}
.yda{bottom:53.920000pt;}
.y2{bottom:55.890667pt;}
.y2b{bottom:65.946667pt;}
.ya6{bottom:66.880000pt;}
.y7b{bottom:71.200000pt;}
.y1{bottom:85.650667pt;}
.yc5{bottom:104.026667pt;}
.yea{bottom:104.666667pt;}
.y29{bottom:112.346667pt;}
.y9d{bottom:117.066667pt;}
.y56{bottom:117.706667pt;}
.ye9{bottom:120.266667pt;}
.y28{bottom:127.946667pt;}
.yc4{bottom:135.706667pt;}
.ye8{bottom:135.946667pt;}
.y79{bottom:142.346667pt;}
.y27{bottom:143.626667pt;}
.y9c{bottom:148.746667pt;}
.y55{bottom:149.306667pt;}
.y10f{bottom:151.226667pt;}
.yc3{bottom:151.306667pt;}
.y26{bottom:159.226667pt;}
.y9b{bottom:164.346667pt;}
.y54{bottom:164.986667pt;}
.y10e{bottom:166.826667pt;}
.yc2{bottom:166.906667pt;}
.ye7{bottom:167.546667pt;}
.y78{bottom:174.026667pt;}
.y25{bottom:174.826667pt;}
.y53{bottom:180.586667pt;}
.y10d{bottom:182.506667pt;}
.ye6{bottom:183.146667pt;}
.y24{bottom:190.506667pt;}
.y9a{bottom:195.946667pt;}
.yc0{bottom:196.266667pt;}
.ye5{bottom:198.826667pt;}
.yc1{bottom:204.266667pt;}
.y77{bottom:205.626667pt;}
.y23{bottom:206.106667pt;}
.y52{bottom:212.186667pt;}
.ye4{bottom:214.426667pt;}
.y76{bottom:218.906667pt;}
.y99{bottom:219.626667pt;}
.y10c{bottom:221.706667pt;}
.y22{bottom:221.786667pt;}
.y51{bottom:227.866667pt;}
.ye3{bottom:230.106667pt;}
.y21{bottom:237.386667pt;}
.ybf{bottom:240.106667pt;}
.y75{bottom:243.226667pt;}
.y50{bottom:243.466667pt;}
.y10b{bottom:245.386667pt;}
.ye2{bottom:245.706667pt;}
.y98{bottom:251.226667pt;}
.y20{bottom:252.986667pt;}
.y10a{bottom:260.986667pt;}
.ye1{bottom:261.306667pt;}
.y97{bottom:266.826667pt;}
.y74{bottom:267.546667pt;}
.y1f{bottom:268.666667pt;}
.ybe{bottom:271.706667pt;}
.y4f{bottom:275.146667pt;}
.y109{bottom:284.666667pt;}
.ybd{bottom:287.386667pt;}
.y73{bottom:291.866667pt;}
.ye0{bottom:292.986667pt;}
.y96{bottom:295.626667pt;}
.y1e{bottom:300.266667pt;}
.ybc{bottom:302.986667pt;}
.y4e{bottom:306.746667pt;}
.ydf{bottom:308.586667pt;}
.y108{bottom:315.866667pt;}
.y1d{bottom:315.946667pt;}
.y71{bottom:316.106667pt;}
.ybb{bottom:318.586667pt;}
.yde{bottom:324.266667pt;}
.y1c{bottom:331.546667pt;}
.yba{bottom:334.266667pt;}
.y4d{bottom:338.346667pt;}
.y107{bottom:339.546667pt;}
.ydd{bottom:339.866667pt;}
.y72{bottom:340.426667pt;}
.y95{bottom:341.226667pt;}
.yb9{bottom:349.866667pt;}
.y4c{bottom:354.026667pt;}
.y1b{bottom:355.466667pt;}
.yb5{bottom:362.533297pt;}
.y106{bottom:363.146667pt;}
.yb8{bottom:370.506667pt;}
.y94{bottom:372.826667pt;}
.y4b{bottom:377.946667pt;}
.y105{bottom:378.746667pt;}
.ydc{bottom:379.386667pt;}
.y70{bottom:383.706667pt;}
.y93{bottom:388.426667pt;}
.y1a{bottom:398.666667pt;}
.y104{bottom:402.426667pt;}
.y6f{bottom:405.066667pt;}
.yb4{bottom:406.266667pt;}
.y90{bottom:417.866630pt;}
.y92{bottom:417.893333pt;}
.y103{bottom:418.053333pt;}
.ydb{bottom:420.053333pt;}
.y4a{bottom:420.773333pt;}
.y6e{bottom:429.333333pt;}
.y19{bottom:431.573333pt;}
.y49{bottom:437.173333pt;}
.yb3{bottom:437.973333pt;}
.y102{bottom:441.733333pt;}
.y18{bottom:447.253333pt;}
.yb2{bottom:451.253333pt;}
.y48{bottom:453.573333pt;}
.y6d{bottom:453.653333pt;}
.y101{bottom:457.333333pt;}
.y8f{bottom:461.653333pt;}
.y17{bottom:462.853333pt;}
.yd9{bottom:475.573333pt;}
.y47{bottom:477.973333pt;}
.y16{bottom:478.453333pt;}
.y100{bottom:481.253333pt;}
.y8e{bottom:493.333333pt;}
.y15{bottom:494.133333pt;}
.yb0{bottom:498.853333pt;}
.y6c{bottom:502.213333pt;}
.y8d{bottom:508.933333pt;}
.y46{bottom:509.573333pt;}
.y14{bottom:509.733333pt;}
.yff{bottom:524.133333pt;}
.y8c{bottom:524.613333pt;}
.y45{bottom:525.253333pt;}
.y13{bottom:525.413333pt;}
.yfe{bottom:539.813333pt;}
.y8b{bottom:540.213333pt;}
.y12{bottom:541.013333pt;}
.y6a{bottom:545.573333pt;}
.yaf{bottom:546.373333pt;}
.yd8{bottom:546.773333pt;}
.y44{bottom:548.853333pt;}
.y8a{bottom:555.813333pt;}
.y11{bottom:556.613333pt;}
.yfd{bottom:563.733333pt;}
.y69{bottom:566.853333pt;}
.y89{bottom:571.493333pt;}
.y10{bottom:572.293333pt;}
.y43{bottom:580.453333pt;}
.y88{bottom:587.093333pt;}
.yf{bottom:587.893333pt;}
.y68{bottom:591.173333pt;}
.yac{bottom:593.973333pt;}
.yfc{bottom:596.613333pt;}
.yd6{bottom:602.373333pt;}
.ye{bottom:603.573333pt;}
.y42{bottom:604.373333pt;}
.y67{bottom:615.413333pt;}
.y87{bottom:615.733333pt;}
.yd{bottom:619.173333pt;}
.yfb{bottom:620.533333pt;}
.yc{bottom:634.773333pt;}
.y41{bottom:637.333333pt;}
.y66{bottom:639.733333pt;}
.yab{bottom:641.493333pt;}
.yd2{bottom:642.293333pt;}
.yb{bottom:650.453333pt;}
.y40{bottom:652.933333pt;}
.yfa{bottom:653.733333pt;}
.y86{bottom:660.693333pt;}
.y64{bottom:664.053333pt;}
.y3f{bottom:668.613333pt;}
.ya5{bottom:673.413333pt;}
.ya{bottom:674.373333pt;}
.y3e{bottom:684.213333pt;}
.y65{bottom:688.373333pt;}
.y85{bottom:693.093333pt;}
.yf9{bottom:696.613333pt;}
.y3d{bottom:699.813333pt;}
.yaa{bottom:705.333333pt;}
.y84{bottom:706.373333pt;}
.yf8{bottom:712.293333pt;}
.yd0{bottom:713.493333pt;}
.y3c{bottom:715.493333pt;}
.y9{bottom:715.893333pt;}
.ya7{bottom:721.653333pt;}
.yf7{bottom:727.893333pt;}
.y3b{bottom:731.093333pt;}
.y63{bottom:731.653333pt;}
.yd1{bottom:737.733333pt;}
.yf6{bottom:743.573333pt;}
.y83{bottom:746.373333pt;}
.y3a{bottom:746.693333pt;}
.y8{bottom:747.733333pt;}
.y62{bottom:752.933333pt;}
.yf5{bottom:759.173333pt;}
.ya4{bottom:772.613333pt;}
.yf4{bottom:774.773333pt;}
.y61{bottom:777.253333pt;}
.y39{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.ycf{bottom:781.013333pt;}
.y81{bottom:786.293333pt;}
.yf3{bottom:790.453333pt;}
.y38{bottom:793.973333pt;}
.y60{bottom:801.493333pt;}
.ya3{bottom:804.213333pt;}
.y37{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.yce{bottom:812.693333pt;}
.yf2{bottom:814.373333pt;}
.ya2{bottom:817.493333pt;}
.y36{bottom:825.253333pt;}
.y5f{bottom:825.813333pt;}
.y80{bottom:826.213333pt;}
.ycd{bottom:828.293333pt;}
.y5{bottom:843.813333pt;}
.ycc{bottom:843.893333pt;}
.y5e{bottom:850.133333pt;}
.y35{bottom:856.853333pt;}
.yf1{bottom:857.253333pt;}
.ya1{bottom:857.493333pt;}
.y113{bottom:864.533333pt;}
.y7f{bottom:866.133333pt;}
.y34{bottom:872.533333pt;}
.yf0{bottom:872.853333pt;}
.y5d{bottom:874.453333pt;}
.ycb{bottom:876.293333pt;}
.y4{bottom:877.893333pt;}
.y112{bottom:880.133333pt;}
.ya0{bottom:881.733333pt;}
.y33{bottom:888.133333pt;}
.yef{bottom:888.533333pt;}
.y58{bottom:898.720000pt;}
.y3{bottom:899.840000pt;}
.y32{bottom:903.840000pt;}
.yee{bottom:904.160000pt;}
.y7a{bottom:906.080000pt;}
.yca{bottom:908.000000pt;}
.y31{bottom:919.440000pt;}
.yed{bottom:919.840000pt;}
.y5a{bottom:923.040000pt;}
.y9e{bottom:930.400000pt;}
.y30{bottom:935.040000pt;}
.yec{bottom:935.440000pt;}
.yc9{bottom:939.600000pt;}
.y111{bottom:943.040000pt;}
.y7d{bottom:946.000000pt;}
.yeb{bottom:951.040000pt;}
.y9f{bottom:954.640000pt;}
.yc8{bottom:955.200000pt;}
.y110{bottom:958.720000pt;}
.y57{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y7c{bottom:970.320000pt;}
.yc7{bottom:970.800000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.yc6{bottom:1000.240000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h17{height:15.680000pt;}
.ha{height:23.600000pt;}
.hc{height:23.626667pt;}
.hb{height:23.680000pt;}
.h14{height:23.706667pt;}
.h1b{height:24.800006pt;}
.h11{height:24.800042pt;}
.h2{height:26.686563pt;}
.h13{height:29.261250pt;}
.h16{height:31.280000pt;}
.h3{height:33.867188pt;}
.h10{height:39.200000pt;}
.he{height:39.280000pt;}
.hf{height:39.306667pt;}
.h6{height:45.246562pt;}
.h18{height:46.880000pt;}
.h19{height:46.950740pt;}
.h9{height:47.920000pt;}
.h5{height:49.581562pt;}
.h1d{height:54.880000pt;}
.h8{height:54.927899pt;}
.h7{height:62.812500pt;}
.h1a{height:62.916749pt;}
.h4{height:63.128437pt;}
.h1c{height:70.480000pt;}
.h1e{height:70.560000pt;}
.h12{height:79.256320pt;}
.h15{height:79.520000pt;}
.hd{height:87.840000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4c{width:29.466667pt;}
.w4a{width:30.800000pt;}
.w4d{width:31.840000pt;}
.w50{width:32.320000pt;}
.w49{width:32.800000pt;}
.w47{width:32.880000pt;}
.w4b{width:33.200000pt;}
.w48{width:33.280000pt;}
.w28{width:34.880000pt;}
.w2b{width:34.960000pt;}
.wd{width:35.760000pt;}
.w6{width:35.840000pt;}
.w9{width:35.866667pt;}
.w1a{width:36.800000pt;}
.w4e{width:36.960000pt;}
.w4f{width:37.200000pt;}
.w54{width:37.280000pt;}
.w2e{width:37.360000pt;}
.w2a{width:37.440000pt;}
.w2c{width:37.466667pt;}
.w25{width:38.106667pt;}
.w27{width:38.160000pt;}
.w8{width:38.320000pt;}
.w18{width:38.346667pt;}
.w26{width:38.800000pt;}
.w29{width:38.880000pt;}
.w15{width:39.200000pt;}
.w14{width:39.226667pt;}
.w1c{width:39.440000pt;}
.w7{width:39.840000pt;}
.w55{width:39.920000pt;}
.w56{width:39.946667pt;}
.w35{width:40.320000pt;}
.w1b{width:40.960000pt;}
.w38{width:41.040000pt;}
.w39{width:41.280000pt;}
.w3d{width:42.000000pt;}
.w3a{width:43.466667pt;}
.w3b{width:43.920000pt;}
.w2d{width:45.360000pt;}
.w3e{width:45.920000pt;}
.w3c{width:46.560000pt;}
.w36{width:47.200000pt;}
.w10{width:47.840000pt;}
.we{width:49.840000pt;}
.w37{width:50.480000pt;}
.w11{width:52.320000pt;}
.wf{width:58.186667pt;}
.w17{width:76.320000pt;}
.w1d{width:76.800000pt;}
.w43{width:84.080000pt;}
.w46{width:97.680000pt;}
.w42{width:100.240000pt;}
.w44{width:100.266667pt;}
.w3{width:106.560000pt;}
.w12{width:108.720000pt;}
.w21{width:112.480000pt;}
.w24{width:112.560000pt;}
.w22{width:112.586667pt;}
.w4{width:115.360000pt;}
.w5{width:115.386667pt;}
.w20{width:116.426667pt;}
.w53{width:116.800000pt;}
.w19{width:118.560000pt;}
.w13{width:119.626667pt;}
.w32{width:127.146667pt;}
.w45{width:127.360000pt;}
.w33{width:131.680000pt;}
.wc{width:137.360000pt;}
.w23{width:137.520000pt;}
.w34{width:139.040000pt;}
.w31{width:139.360000pt;}
.w30{width:143.546667pt;}
.w16{width:144.986667pt;}
.wb{width:145.146667pt;}
.w3f{width:158.746667pt;}
.wa{width:181.920000pt;}
.w40{width:185.040000pt;}
.w52{width:204.986667pt;}
.w1e{width:229.626667pt;}
.w51{width:278.200138pt;}
.w41{width:326.586667pt;}
.w2f{width:348.007370pt;}
.w1f{width:363.946667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:3.520000pt;}
.x55{left:5.360000pt;}
.x4f{left:6.320000pt;}
.x58{left:7.360000pt;}
.x59{left:9.360000pt;}
.x5a{left:10.320000pt;}
.x16{left:11.440000pt;}
.x12{left:13.440000pt;}
.x1e{left:15.440000pt;}
.x19{left:16.480000pt;}
.x18{left:17.440000pt;}
.x1c{left:18.480000pt;}
.x1b{left:19.440000pt;}
.x14{left:21.546667pt;}
.x1a{left:23.546667pt;}
.x1d{left:32.586667pt;}
.x49{left:55.280000pt;}
.x1{left:60.356000pt;}
.x6c{left:61.760000pt;}
.x4{left:84.479988pt;}
.x26{left:90.880000pt;}
.x77{left:98.879988pt;}
.x46{left:108.479988pt;}
.x34{left:138.640000pt;}
.xe{left:164.106667pt;}
.x39{left:177.466667pt;}
.x2{left:180.266655pt;}
.x4a{left:199.466667pt;}
.x3a{left:216.906667pt;}
.x5b{left:220.506667pt;}
.x43{left:222.973315pt;}
.x1f{left:224.506667pt;}
.x6{left:227.706667pt;}
.x27{left:236.506667pt;}
.x4e{left:240.426667pt;}
.x48{left:253.866655pt;}
.x36{left:255.706667pt;}
.x69{left:257.906667pt;}
.x6a{left:265.968775pt;}
.x6d{left:267.386667pt;}
.x2c{left:272.986667pt;}
.x50{left:288.346667pt;}
.x3b{left:291.306667pt;}
.x5{left:303.306655pt;}
.x71{left:305.306667pt;}
.x2d{left:313.546667pt;}
.x5d{left:321.466667pt;}
.x3c{left:330.826667pt;}
.x20{left:333.866667pt;}
.x8{left:334.906667pt;}
.x4b{left:339.546667pt;}
.x44{left:340.627004pt;}
.xf{left:346.746667pt;}
.x28{left:352.506667pt;}
.x35{left:368.906667pt;}
.x22{left:370.346667pt;}
.xa{left:371.386667pt;}
.x51{left:381.226667pt;}
.x11{left:383.226667pt;}
.x6e{left:384.826667pt;}
.x60{left:386.746667pt;}
.x2e{left:388.986667pt;}
.x33{left:396.986655pt;}
.x3d{left:404.506667pt;}
.x5c{left:406.266667pt;}
.x23{left:410.906667pt;}
.xb{left:411.946667pt;}
.x72{left:421.306667pt;}
.x52{left:423.226667pt;}
.x61{left:425.706667pt;}
.x29{left:429.546667pt;}
.x13{left:433.706667pt;}
.x3e{left:444.026667pt;}
.x21{left:449.866667pt;}
.x9{left:450.906667pt;}
.x62{left:455.893333pt;}
.x73{left:461.893333pt;}
.x4c{left:467.333333pt;}
.x2a{left:468.533333pt;}
.x37{left:482.133333pt;}
.xc{left:487.413333pt;}
.x63{left:488.373333pt;}
.x24{left:489.813333pt;}
.x10{left:492.533333pt;}
.x6f{left:500.853333pt;}
.x2f{left:505.013333pt;}
.x5e{left:507.173333pt;}
.x53{left:511.973333pt;}
.x64{left:525.973333pt;}
.xd{left:527.973333pt;}
.x15{left:529.013333pt;}
.x25{left:530.293333pt;}
.x6b{left:536.133322pt;}
.x74{left:537.333333pt;}
.x42{left:539.013322pt;}
.x30{left:545.573333pt;}
.x54{left:552.453333pt;}
.x65{left:563.893333pt;}
.x45{left:571.013322pt;}
.x47{left:573.013322pt;}
.x3f{left:574.293333pt;}
.x17{left:577.573333pt;}
.x2b{left:584.533333pt;}
.x4d{left:599.653333pt;}
.x66{left:601.733333pt;}
.x70{left:616.853333pt;}
.x38{left:620.293333pt;}
.x31{left:622.053333pt;}
.x5f{left:635.173333pt;}
.x56{left:642.293333pt;}
.x75{left:653.333333pt;}
.x40{left:655.893333pt;}
.x32{left:663.653333pt;}
.x67{left:666.693333pt;}
.x57{left:688.853333pt;}
.x76{left:693.893333pt;}
.x41{left:695.493333pt;}
.x68{left:700.533333pt;}
.x3{left:704.053322pt;}
}




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