
    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_0336fdaba312f11d72e73714.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_96d9f9974f0bccafe4479998.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.197000;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_89ac1baddb755194f44bf12c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.179000;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_c10afca5676465df936a90f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.066000;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_2f66b109d1f149b814607dcd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112000;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_dffedd277c8f191e14191c5e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.711914;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_528b6078f89a2d97905793f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.283203;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_fd8261390bc6e5f32251670b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.133000;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5ce13eaea32acc92751febcd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.075000;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_8c6bb6f1b51ab8560fad2633.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.133000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-0.822000px;}
.ls29{letter-spacing:-0.363000px;}
.ls2e{letter-spacing:-0.331200px;}
.ls1b{letter-spacing:-0.270600px;}
.lse{letter-spacing:-0.265200px;}
.ls2d{letter-spacing:-0.201600px;}
.ls9{letter-spacing:-0.184200px;}
.ls10{letter-spacing:-0.169800px;}
.ls6{letter-spacing:-0.152400px;}
.ls15{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.135600px;}
.lsa{letter-spacing:-0.083400px;}
.ls1{letter-spacing:-0.075000px;}
.lsf{letter-spacing:-0.051840px;}
.ls3{letter-spacing:-0.040320px;}
.ls11{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000066px;}
.ls18{letter-spacing:0.000117px;}
.ls12{letter-spacing:0.005754px;}
.ls2c{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.080400px;}
.ls26{letter-spacing:0.111000px;}
.ls4{letter-spacing:0.129607px;}
.lsd{letter-spacing:0.135600px;}
.ls7{letter-spacing:0.147000px;}
.ls14{letter-spacing:0.155400px;}
.ls23{letter-spacing:0.179956px;}
.ls27{letter-spacing:0.179967px;}
.ls21{letter-spacing:0.190100px;}
.ls13{letter-spacing:0.219000px;}
.ls2b{letter-spacing:0.310800px;}
.ls8{letter-spacing:0.325200px;}
.ls5{letter-spacing:0.348600px;}
.ls28{letter-spacing:0.357000px;}
.ls1e{letter-spacing:0.374400px;}
.ls1f{letter-spacing:0.381620px;}
.ls24{letter-spacing:38.465254px;}
.ls20{letter-spacing:46.074704px;}
.ls22{letter-spacing:51.425276px;}
.ls1d{letter-spacing:64.026689px;}
.ls1c{letter-spacing:65.514691px;}
.ls17{letter-spacing:90.695980px;}
.ls16{letter-spacing:104.375973px;}
.ls0{letter-spacing:847.596052px;}
.ls19{letter-spacing:2397.261056px;}
.ls1a{letter-spacing:2417.421151px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(111,177,77),0 0.015em rgb(111,177,77),0.015em 0 rgb(111,177,77),0 -0.015em  rgb(111,177,77);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(111,177,77);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-59.760000px;}
.ws15{word-spacing:-59.486400px;}
.wse{word-spacing:-27.100080px;}
.ws17{word-spacing:-26.768880px;}
.ws10{word-spacing:-19.120320px;}
.wsf{word-spacing:-18.745920px;}
.wsc{word-spacing:-18.720000px;}
.ws5{word-spacing:-17.680080px;}
.wsb{word-spacing:-17.510280px;}
.ws4{word-spacing:-17.501880px;}
.ws14{word-spacing:-17.435280px;}
.wsa{word-spacing:-17.360634px;}
.ws3{word-spacing:-17.354880px;}
.ws0{word-spacing:-17.314560px;}
.ws6{word-spacing:-17.271480px;}
.ws7{word-spacing:-17.219280px;}
.ws2{word-spacing:-17.202480px;}
.ws9{word-spacing:-17.185080px;}
.ws13{word-spacing:-17.170680px;}
.ws16{word-spacing:-17.153280px;}
.ws8{word-spacing:-17.089680px;}
.wsd{word-spacing:-17.084280px;}
.ws12{word-spacing:-16.532880px;}
.ws1{word-spacing:0.000000px;}
._3a{margin-left:-5.844987px;}
._15{margin-left:-4.223520px;}
._5{margin-left:-3.012480px;}
._0{margin-left:-1.640160px;}
._1{width:1.065758px;}
._6{width:2.215978px;}
._27{width:3.251885px;}
._26{width:4.259702px;}
._12{width:5.564160px;}
._a{width:6.822720px;}
._13{width:8.715714px;}
._33{width:10.118880px;}
._32{width:11.128320px;}
._35{width:12.237391px;}
._34{width:13.348800px;}
._2f{width:14.374080px;}
._2b{width:15.765120px;}
._22{width:17.092831px;}
._21{width:19.077120px;}
._20{width:20.253600px;}
._23{width:21.896671px;}
._7{width:23.117760px;}
._2a{width:24.145920px;}
._8{width:25.369920px;}
._2d{width:26.480160px;}
._1c{width:27.722880px;}
._b{width:29.079360px;}
._2e{width:30.255840px;}
._1b{width:31.662720px;}
._31{width:33.318720px;}
._1f{width:35.703360px;}
._1d{width:37.160640px;}
._1e{width:38.602080px;}
._2c{width:40.334242px;}
._4{width:42.134400px;}
._3{width:43.464960px;}
._37{width:44.579520px;}
._25{width:46.383840px;}
._24{width:47.610720px;}
._30{width:48.797747px;}
._3c{width:50.047284px;}
._36{width:51.203520px;}
._38{width:53.045311px;}
._39{width:55.111680px;}
._2{width:59.044320px;}
._3b{width:60.991200px;}
._28{width:77.235840px;}
._29{width:78.876000px;}
._3d{width:83.859840px;}
._3e{width:85.398249px;}
._9{width:92.272320px;}
._17{width:529.808521px;}
._10{width:543.739305px;}
._11{width:972.796992px;}
._18{width:1066.109319px;}
._e{width:1290.909106px;}
._16{width:1384.209644px;}
._f{width:1681.261420px;}
._c{width:1691.388617px;}
._1a{width:1801.802444px;}
._d{width:1929.191525px;}
._19{width:2023.121702px;}
._14{width:2110.892745px;}
.fc4{color:rgb(31,73,125);}
.fc2{color:rgb(50,146,68);}
.fc1{color:rgb(111,177,77);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:43.200000px;}
.fs1{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:167.759995px;}
.y0{bottom:0.000000px;}
.y2d{bottom:3.959999px;}
.y32{bottom:4.139992px;}
.y3e{bottom:4.140015px;}
.y5e{bottom:4.320007px;}
.y5c{bottom:4.500000px;}
.y53{bottom:4.679993px;}
.y50{bottom:4.859985px;}
.y26{bottom:4.860008px;}
.y5b{bottom:5.039978px;}
.y4e{bottom:5.579956px;}
.y25{bottom:5.759995px;}
.y1b{bottom:6.119980px;}
.y34{bottom:6.120003px;}
.y23{bottom:6.299995px;}
.y21{bottom:6.300018px;}
.y1a{bottom:6.839996px;}
.y20{bottom:7.019989px;}
.y28{bottom:7.020012px;}
.y59{bottom:8.099945px;}
.y63{bottom:8.460022px;}
.y44{bottom:8.819916px;}
.y41{bottom:9.000000px;}
.y57{bottom:14.220062px;}
.yb{bottom:14.760040px;}
.y2c{bottom:23.219994px;}
.y31{bottom:24.120003px;}
.y3d{bottom:24.120026px;}
.y47{bottom:24.300018px;}
.y30{bottom:24.839996px;}
.y1e{bottom:28.259995px;}
.y43{bottom:28.979919px;}
.y1d{bottom:28.979965px;}
.y40{bottom:29.160004px;}
.y2e{bottom:41.580002px;}
.y2b{bottom:42.479988px;}
.y46{bottom:44.460022px;}
.ya{bottom:46.800018px;}
.y6{bottom:56.159998px;}
.y5{bottom:70.775997px;}
.y9{bottom:82.440033px;}
.y4{bottom:85.355999px;}
.y3{bottom:101.016003px;}
.y14c{bottom:122.436000px;}
.ycc{bottom:123.695995px;}
.ye7{bottom:132.335999px;}
.y36{bottom:132.695995px;}
.y14b{bottom:144.036003px;}
.ycb{bottom:145.295998px;}
.ye6{bottom:154.109997px;}
.y12c{bottom:157.529995px;}
.ya0{bottom:160.589996px;}
.y14a{bottom:165.810000px;}
.y35{bottom:166.350002px;}
.yca{bottom:167.069996px;}
.ye5{bottom:175.890003px;}
.y12b{bottom:179.310000px;}
.y9f{bottom:182.370003px;}
.y33{bottom:183.270000px;}
.y149{bottom:187.410004px;}
.ye4{bottom:198.389992px;}
.yc9{bottom:200.730011px;}
.y12a{bottom:201.089996px;}
.y9e{bottom:203.969994px;}
.y2f{bottom:206.129997px;}
.y148{bottom:209.190010px;}
.yc8{bottom:222.509995px;}
.y129{bottom:222.690010px;}
.ye3{bottom:224.129997px;}
.y9d{bottom:225.750000px;}
.y147{bottom:230.969994px;}
.yc7{bottom:244.110008px;}
.y128{bottom:244.469994px;}
.y2a{bottom:246.990005px;}
.y146{bottom:252.570007px;}
.y9c{bottom:259.410004px;}
.ye2{bottom:260.849991px;}
.yc6{bottom:265.889992px;}
.y127{bottom:266.070007px;}
.y145{bottom:274.349991px;}
.y9b{bottom:281.190010px;}
.ye1{bottom:282.450005px;}
.yc5{bottom:287.669998px;}
.y126{bottom:287.849991px;}
.y114{bottom:289.110008px;}
.y144{bottom:295.950005px;}
.y9a{bottom:302.790000px;}
.ye0{bottom:304.230011px;}
.y29{bottom:305.309990px;}
.yc4{bottom:309.269989px;}
.y125{bottom:309.450005px;}
.y113{bottom:310.889992px;}
.y143{bottom:317.730011px;}
.y99{bottom:324.570007px;}
.y27{bottom:328.169998px;}
.ydf{bottom:328.530006px;}
.yc3{bottom:331.950005px;}
.y112{bottom:332.490005px;}
.y142{bottom:339.554993px;}
.y124{bottom:343.334999px;}
.y24{bottom:351.254997px;}
.y111{bottom:354.315010px;}
.y98{bottom:358.275009px;}
.y141{bottom:361.155006px;}
.y123{bottom:364.934990px;}
.yc2{bottom:368.714996px;}
.y22{bottom:372.855011px;}
.yde{bottom:375.554993px;}
.y110{bottom:375.915000px;}
.y97{bottom:380.054993px;}
.y140{bottom:382.934990px;}
.y100{bottom:384.195007px;}
.y122{bottom:386.714996px;}
.yc1{bottom:390.494980px;}
.y1f{bottom:395.714996px;}
.ydd{bottom:397.335022px;}
.y10f{bottom:397.695007px;}
.y96{bottom:401.654984px;}
.yff{bottom:405.974991px;}
.y13f{bottom:407.054993px;}
.yc0{bottom:412.095016px;}
.y1c{bottom:418.755020px;}
.ydc{bottom:418.935013px;}
.y10e{bottom:419.474991px;}
.y121{bottom:420.375000px;}
.y95{bottom:423.435013px;}
.yfe{bottom:427.574982px;}
.ydb{bottom:440.714996px;}
.y120{bottom:442.154984px;}
.y94{bottom:445.035004px;}
.ybf{bottom:445.755020px;}
.y10d{bottom:453.134995px;}
.y13e{bottom:454.214996px;}
.yfd{bottom:461.414978px;}
.yda{bottom:462.314987px;}
.y19{bottom:463.755020px;}
.y11f{bottom:464.654984px;}
.ybe{bottom:467.535004px;}
.y10c{bottom:474.734985px;}
.y93{bottom:478.875000px;}
.yfc{bottom:483.015015px;}
.y13d{bottom:488.414978px;}
.ybd{bottom:489.314987px;}
.yd9{bottom:496.154984px;}
.y10b{bottom:496.515015px;}
.y11e{bottom:501.375000px;}
.y18{bottom:504.255020px;}
.yfb{bottom:504.794998px;}
.y92{bottom:512.535004px;}
.y13c{bottom:515.234985px;}
.yd8{bottom:517.755020px;}
.y79{bottom:518.294998px;}
.ybc{bottom:522.974991px;}
.y11d{bottom:523.154984px;}
.yfa{bottom:526.394989px;}
.y17{bottom:538.095016px;}
.yd7{bottom:539.535004px;}
.ybb{bottom:544.574982px;}
.y11c{bottom:544.935013px;}
.y91{bottom:546.195007px;}
.yf9{bottom:548.175018px;}
.y78{bottom:551.955002px;}
.yd6{bottom:561.134995px;}
.yba{bottom:566.355011px;}
.y90{bottom:567.974991px;}
.yf8{bottom:569.955002px;}
.y16{bottom:571.755020px;}
.y10a{bottom:573.554993px;}
.y11b{bottom:578.595016px;}
.yd5{bottom:582.914978px;}
.y77{bottom:585.794998px;}
.yb9{bottom:588.134995px;}
.y8f{bottom:589.574982px;}
.y109{bottom:595.335022px;}
.y11a{bottom:600.195007px;}
.yf7{bottom:603.644989px;}
.yd4{bottom:604.724991px;}
.y15{bottom:605.445007px;}
.yb8{bottom:609.765015px;}
.y8e{bottom:611.384995px;}
.y108{bottom:617.144989px;}
.y76{bottom:619.484985px;}
.y119{bottom:622.005020px;}
.yf6{bottom:625.244980px;}
.yd3{bottom:627.224991px;}
.yb7{bottom:631.544998px;}
.y65{bottom:632.265015px;}
.y14{bottom:639.105011px;}
.y13b{bottom:641.265015px;}
.y8d{bottom:645.044998px;}
.y118{bottom:646.304993px;}
.yf5{bottom:647.025009px;}
.y75{bottom:648.644989px;}
.y64{bottom:649.005020px;}
.y107{bottom:650.804993px;}
.yb6{bottom:653.144989px;}
.y13a{bottom:663.044998px;}
.yd2{bottom:664.664978px;}
.y8c{bottom:666.824982px;}
.yf4{bottom:668.804993px;}
.y62{bottom:671.144989px;}
.y106{bottom:672.404984px;}
.y13{bottom:672.945007px;}
.yb5{bottom:674.925018px;}
.y74{bottom:677.804993px;}
.y139{bottom:684.644989px;}
.y8b{bottom:688.425018px;}
.yf3{bottom:690.404984px;}
.yd1{bottom:691.304993px;}
.y117{bottom:693.285004px;}
.y105{bottom:694.185013px;}
.yb4{bottom:696.525009px;}
.y61{bottom:700.845016px;}
.y138{bottom:706.425018px;}
.y12{bottom:706.605011px;}
.y73{bottom:707.144989px;}
.y8a{bottom:710.205002px;}
.yf2{bottom:712.185013px;}
.y104{bottom:716.865005px;}
.y60{bottom:722.804993px;}
.y116{bottom:727.664978px;}
.y137{bottom:728.025009px;}
.yb3{bottom:730.365005px;}
.y89{bottom:731.804993px;}
.y72{bottom:736.304993px;}
.y11{bottom:740.265015px;}
.y103{bottom:742.425018px;}
.y5f{bottom:743.865005px;}
.yf1{bottom:745.845016px;}
.y136{bottom:749.804993px;}
.yb2{bottom:751.964996px;}
.y115{bottom:754.304993px;}
.y5d{bottom:764.925018px;}
.y71{bottom:765.464996px;}
.y88{bottom:765.644989px;}
.y49{bottom:766.365005px;}
.yf0{bottom:767.625000px;}
.y135{bottom:771.585022px;}
.yb1{bottom:773.745026px;}
.y10{bottom:773.925018px;}
.y102{bottom:779.864960px;}
.y5a{bottom:787.065033px;}
.y87{bottom:787.245026px;}
.yef{bottom:790.125000px;}
.y70{bottom:794.625000px;}
.yb0{bottom:795.344971px;}
.y48{bottom:800.024963px;}
.y134{bottom:805.245026px;}
.y101{bottom:806.504974px;}
.yf{bottom:807.765015px;}
.y86{bottom:809.024963px;}
.y58{bottom:809.745026px;}
.yee{bottom:815.864960px;}
.y6f{bottom:816.405029px;}
.y45{bottom:816.765015px;}
.yaf{bottom:817.125000px;}
.y133{bottom:826.844971px;}
.y85{bottom:830.625000px;}
.ye{bottom:834.225037px;}
.y150{bottom:836.385040px;}
.y56{bottom:838.364960px;}
.yae{bottom:841.425018px;}
.y6e{bottom:845.565033px;}
.y132{bottom:848.625000px;}
.yed{bottom:852.585022px;}
.y84{bottom:864.464996px;}
.y6d{bottom:867.344971px;}
.y14f{bottom:870.225037px;}
.y131{bottom:870.405029px;}
.yec{bottom:874.410004px;}
.y42{bottom:878.010040px;}
.y55{bottom:879.449982px;}
.yd{bottom:885.390015px;}
.yad{bottom:888.449982px;}
.y130{bottom:892.050018px;}
.yeb{bottom:896.010040px;}
.y6c{bottom:896.550018px;}
.y83{bottom:898.170044px;}
.y54{bottom:901.589996px;}
.y14e{bottom:903.929993px;}
.yac{bottom:910.230011px;}
.y6b{bottom:918.329956px;}
.y82{bottom:919.949982px;}
.y3f{bottom:923.730011px;}
.y12f{bottom:925.710022px;}
.yea{bottom:929.670044px;}
.yab{bottom:931.829956px;}
.y14d{bottom:933.449982px;}
.yc{bottom:936.690033px;}
.y81{bottom:941.550018px;}
.y52{bottom:945.870026px;}
.y6a{bottom:947.489960px;}
.ye9{bottom:951.449982px;}
.yaa{bottom:953.609985px;}
.y80{bottom:963.329956px;}
.y51{bottom:966.750000px;}
.y3c{bottom:969.629974px;}
.y12e{bottom:970.170044px;}
.ye8{bottom:973.230011px;}
.ya9{bottom:975.210022px;}
.y69{bottom:976.649963px;}
.y8{bottom:978.089996px;}
.y7f{bottom:984.929993px;}
.y4f{bottom:988.890015px;}
.yd0{bottom:994.829956px;}
.ya8{bottom:996.989960px;}
.y68{bottom:1005.989960px;}
.y7e{bottom:1006.710022px;}
.y12d{bottom:1006.890015px;}
.y4d{bottom:1011.030029px;}
.ya5{bottom:1016.609985px;}
.ya7{bottom:1018.769989px;}
.y7d{bottom:1028.489960px;}
.y3b{bottom:1030.829956px;}
.y4c{bottom:1034.789978px;}
.y67{bottom:1035.149963px;}
.ycf{bottom:1038.210022px;}
.ya6{bottom:1040.370026px;}
.ya4{bottom:1050.269989px;}
.yce{bottom:1059.989960px;}
.y7c{bottom:1062.149963px;}
.y66{bottom:1064.309967px;}
.y3a{bottom:1071.870026px;}
.ya3{bottom:1072.050018px;}
.ycd{bottom:1081.769989px;}
.y7b{bottom:1083.750000px;}
.y39{bottom:1093.469971px;}
.ya2{bottom:1093.649963px;}
.y4b{bottom:1096.170044px;}
.y7a{bottom:1105.530029px;}
.y7{bottom:1112.370026px;}
.ya1{bottom:1115.429993px;}
.y38{bottom:1129.829956px;}
.y4a{bottom:1137.030029px;}
.y2{bottom:1157.219971px;}
.y1{bottom:1173.420044px;}
.y37{bottom:1200.299100px;}
.h17{height:20.159999px;}
.h1c{height:20.340000px;}
.ha{height:20.880000px;}
.h1d{height:21.240000px;}
.h16{height:21.420000px;}
.he{height:21.960000px;}
.h7{height:22.140000px;}
.hb{height:22.176000px;}
.h15{height:23.039999px;}
.h19{height:27.900000px;}
.h1e{height:28.800000px;}
.hd{height:40.140000px;}
.h14{height:40.319999px;}
.h18{height:40.355999px;}
.hf{height:42.335156px;}
.h9{height:44.280000px;}
.h12{height:45.000000px;}
.h11{height:45.180000px;}
.h20{height:47.304000px;}
.h4{height:48.143520px;}
.h1b{height:50.273438px;}
.hc{height:57.600002px;}
.h8{height:57.720960px;}
.h13{height:60.335999px;}
.h21{height:61.669440px;}
.h3{height:66.107520px;}
.h1a{height:71.856000px;}
.h1f{height:72.394560px;}
.h10{height:89.152560px;}
.h6{height:123.120003px;}
.h5{height:163.565995px;}
.h2{height:1262.879974px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:45.180000px;}
.w6{width:52.199999px;}
.wd{width:82.260000px;}
.w7{width:86.075998px;}
.w8{width:136.799995px;}
.w9{width:137.556004px;}
.w4{width:188.129997px;}
.wa{width:221.610008px;}
.w5{width:479.955002px;}
.wc{width:566.925018px;}
.w3{width:636.404984px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.279995px;}
.x18{left:12.240005px;}
.x1b{left:29.160004px;}
.x1a{left:30.419998px;}
.x1c{left:33.839996px;}
.x19{left:36.539978px;}
.x15{left:98.675995px;}
.x8{left:102.593994px;}
.x2{left:127.655981px;}
.x16{left:144.576004px;}
.x4{left:145.835985px;}
.xf{left:149.795998px;}
.xa{left:153.389990px;}
.x1d{left:154.649984px;}
.x20{left:170.849989px;}
.x5{left:175.529982px;}
.x1e{left:181.649984px;}
.x9{left:193.539001px;}
.x7{left:198.039001px;}
.x23{left:201.089983px;}
.x10{left:202.709999px;}
.x1{left:221.249987px;}
.x25{left:249.689997px;}
.xb{left:284.654993px;}
.x11{left:289.514992px;}
.xd{left:317.235008px;}
.x12{left:427.035004px;}
.x6{left:446.474978px;}
.x13{left:565.304993px;}
.xe{left:675.356415px;}
.x17{left:712.230011px;}
.x21{left:748.589983px;}
.x24{left:750.210009px;}
.x14{left:754.529970px;}
.x3{left:756.149996px;}
.x1f{left:757.769976px;}
.x22{left:765.509981px;}
.x26{left:819.510027px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-0.730667pt;}
.ls29{letter-spacing:-0.322667pt;}
.ls2e{letter-spacing:-0.294400pt;}
.ls1b{letter-spacing:-0.240533pt;}
.lse{letter-spacing:-0.235733pt;}
.ls2d{letter-spacing:-0.179200pt;}
.ls9{letter-spacing:-0.163733pt;}
.ls10{letter-spacing:-0.150933pt;}
.ls6{letter-spacing:-0.135467pt;}
.ls15{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.120533pt;}
.lsa{letter-spacing:-0.074133pt;}
.ls1{letter-spacing:-0.066667pt;}
.lsf{letter-spacing:-0.046080pt;}
.ls3{letter-spacing:-0.035840pt;}
.ls11{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000059pt;}
.ls18{letter-spacing:0.000104pt;}
.ls12{letter-spacing:0.005115pt;}
.ls2c{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.071467pt;}
.ls26{letter-spacing:0.098667pt;}
.ls4{letter-spacing:0.115207pt;}
.lsd{letter-spacing:0.120533pt;}
.ls7{letter-spacing:0.130667pt;}
.ls14{letter-spacing:0.138133pt;}
.ls23{letter-spacing:0.159961pt;}
.ls27{letter-spacing:0.159971pt;}
.ls21{letter-spacing:0.168978pt;}
.ls13{letter-spacing:0.194667pt;}
.ls2b{letter-spacing:0.276267pt;}
.ls8{letter-spacing:0.289067pt;}
.ls5{letter-spacing:0.309867pt;}
.ls28{letter-spacing:0.317333pt;}
.ls1e{letter-spacing:0.332800pt;}
.ls1f{letter-spacing:0.339218pt;}
.ls24{letter-spacing:34.191337pt;}
.ls20{letter-spacing:40.955292pt;}
.ls22{letter-spacing:45.711357pt;}
.ls1d{letter-spacing:56.912612pt;}
.ls1c{letter-spacing:58.235281pt;}
.ls17{letter-spacing:80.618649pt;}
.ls16{letter-spacing:92.778643pt;}
.ls0{letter-spacing:753.418713pt;}
.ls19{letter-spacing:2130.898717pt;}
.ls1a{letter-spacing:2148.818801pt;}
.ws11{word-spacing:-53.120000pt;}
.ws15{word-spacing:-52.876800pt;}
.wse{word-spacing:-24.088960pt;}
.ws17{word-spacing:-23.794560pt;}
.ws10{word-spacing:-16.995840pt;}
.wsf{word-spacing:-16.663040pt;}
.wsc{word-spacing:-16.640000pt;}
.ws5{word-spacing:-15.715627pt;}
.wsb{word-spacing:-15.564693pt;}
.ws4{word-spacing:-15.557227pt;}
.ws14{word-spacing:-15.498027pt;}
.wsa{word-spacing:-15.431675pt;}
.ws3{word-spacing:-15.426560pt;}
.ws0{word-spacing:-15.390720pt;}
.ws6{word-spacing:-15.352427pt;}
.ws7{word-spacing:-15.306027pt;}
.ws2{word-spacing:-15.291093pt;}
.ws9{word-spacing:-15.275627pt;}
.ws13{word-spacing:-15.262827pt;}
.ws16{word-spacing:-15.247360pt;}
.ws8{word-spacing:-15.190827pt;}
.wsd{word-spacing:-15.186027pt;}
.ws12{word-spacing:-14.695893pt;}
.ws1{word-spacing:0.000000pt;}
._3a{margin-left:-5.195544pt;}
._15{margin-left:-3.754240pt;}
._5{margin-left:-2.677760pt;}
._0{margin-left:-1.457920pt;}
._1{width:0.947340pt;}
._6{width:1.969758pt;}
._27{width:2.890564pt;}
._26{width:3.786402pt;}
._12{width:4.945920pt;}
._a{width:6.064640pt;}
._13{width:7.747301pt;}
._33{width:8.994560pt;}
._32{width:9.891840pt;}
._35{width:10.877681pt;}
._34{width:11.865600pt;}
._2f{width:12.776960pt;}
._2b{width:14.013440pt;}
._22{width:15.193628pt;}
._21{width:16.957440pt;}
._20{width:18.003200pt;}
._23{width:19.463708pt;}
._7{width:20.549120pt;}
._2a{width:21.463040pt;}
._8{width:22.551040pt;}
._2d{width:23.537920pt;}
._1c{width:24.642560pt;}
._b{width:25.848320pt;}
._2e{width:26.894080pt;}
._1b{width:28.144640pt;}
._31{width:29.616640pt;}
._1f{width:31.736320pt;}
._1d{width:33.031680pt;}
._1e{width:34.312960pt;}
._2c{width:35.852660pt;}
._4{width:37.452800pt;}
._3{width:38.635520pt;}
._37{width:39.626240pt;}
._25{width:41.230080pt;}
._24{width:42.320640pt;}
._30{width:43.375775pt;}
._3c{width:44.486475pt;}
._36{width:45.514240pt;}
._38{width:47.151388pt;}
._39{width:48.988160pt;}
._2{width:52.483840pt;}
._3b{width:54.214400pt;}
._28{width:68.654080pt;}
._29{width:70.112000pt;}
._3d{width:74.542080pt;}
._3e{width:75.909555pt;}
._9{width:82.019840pt;}
._17{width:470.940907pt;}
._10{width:483.323826pt;}
._11{width:864.708438pt;}
._18{width:947.652728pt;}
._e{width:1147.474761pt;}
._16{width:1230.408573pt;}
._f{width:1494.454596pt;}
._c{width:1503.456549pt;}
._1a{width:1601.602173pt;}
._d{width:1714.836912pt;}
._19{width:1798.330402pt;}
._14{width:1876.349106pt;}
.fs4{font-size:38.400000pt;}
.fs1{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:149.119995pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:3.519999pt;}
.y32{bottom:3.679993pt;}
.y3e{bottom:3.680013pt;}
.y5e{bottom:3.840007pt;}
.y5c{bottom:4.000000pt;}
.y53{bottom:4.159993pt;}
.y50{bottom:4.319987pt;}
.y26{bottom:4.320007pt;}
.y5b{bottom:4.479980pt;}
.y4e{bottom:4.959961pt;}
.y25{bottom:5.119995pt;}
.y1b{bottom:5.439982pt;}
.y34{bottom:5.440003pt;}
.y23{bottom:5.599996pt;}
.y21{bottom:5.600016pt;}
.y1a{bottom:6.079997pt;}
.y20{bottom:6.239990pt;}
.y28{bottom:6.240011pt;}
.y59{bottom:7.199951pt;}
.y63{bottom:7.520020pt;}
.y44{bottom:7.839925pt;}
.y41{bottom:8.000000pt;}
.y57{bottom:12.640055pt;}
.yb{bottom:13.120036pt;}
.y2c{bottom:20.639994pt;}
.y31{bottom:21.440002pt;}
.y3d{bottom:21.440023pt;}
.y47{bottom:21.600016pt;}
.y30{bottom:22.079997pt;}
.y1e{bottom:25.119995pt;}
.y43{bottom:25.759928pt;}
.y1d{bottom:25.759969pt;}
.y40{bottom:25.920003pt;}
.y2e{bottom:36.960002pt;}
.y2b{bottom:37.759989pt;}
.y46{bottom:39.520020pt;}
.ya{bottom:41.600016pt;}
.y6{bottom:49.919998pt;}
.y5{bottom:62.911997pt;}
.y9{bottom:73.280029pt;}
.y4{bottom:75.871999pt;}
.y3{bottom:89.792002pt;}
.y14c{bottom:108.832000pt;}
.ycc{bottom:109.951996pt;}
.ye7{bottom:117.631999pt;}
.y36{bottom:117.951996pt;}
.y14b{bottom:128.032003pt;}
.ycb{bottom:129.151998pt;}
.ye6{bottom:136.986664pt;}
.y12c{bottom:140.026662pt;}
.ya0{bottom:142.746663pt;}
.y14a{bottom:147.386667pt;}
.y35{bottom:147.866669pt;}
.yca{bottom:148.506663pt;}
.ye5{bottom:156.346670pt;}
.y12b{bottom:159.386667pt;}
.y9f{bottom:162.106669pt;}
.y33{bottom:162.906667pt;}
.y149{bottom:166.586670pt;}
.ye4{bottom:176.346659pt;}
.yc9{bottom:178.426676pt;}
.y12a{bottom:178.746663pt;}
.y9e{bottom:181.306661pt;}
.y2f{bottom:183.226664pt;}
.y148{bottom:185.946676pt;}
.yc8{bottom:197.786662pt;}
.y129{bottom:197.946676pt;}
.ye3{bottom:199.226664pt;}
.y9d{bottom:200.666667pt;}
.y147{bottom:205.306661pt;}
.yc7{bottom:216.986674pt;}
.y128{bottom:217.306661pt;}
.y2a{bottom:219.546672pt;}
.y146{bottom:224.506673pt;}
.y9c{bottom:230.586670pt;}
.ye2{bottom:231.866659pt;}
.yc6{bottom:236.346659pt;}
.y127{bottom:236.506673pt;}
.y145{bottom:243.866659pt;}
.y9b{bottom:249.946676pt;}
.ye1{bottom:251.066671pt;}
.yc5{bottom:255.706665pt;}
.y126{bottom:255.866659pt;}
.y114{bottom:256.986674pt;}
.y144{bottom:263.066671pt;}
.y9a{bottom:269.146667pt;}
.ye0{bottom:270.426676pt;}
.y29{bottom:271.386658pt;}
.yc4{bottom:274.906657pt;}
.y125{bottom:275.066671pt;}
.y113{bottom:276.346659pt;}
.y143{bottom:282.426676pt;}
.y99{bottom:288.506673pt;}
.y27{bottom:291.706665pt;}
.ydf{bottom:292.026672pt;}
.yc3{bottom:295.066671pt;}
.y112{bottom:295.546672pt;}
.y142{bottom:301.826660pt;}
.y124{bottom:305.186666pt;}
.y24{bottom:312.226664pt;}
.y111{bottom:314.946676pt;}
.y98{bottom:318.466675pt;}
.y141{bottom:321.026672pt;}
.y123{bottom:324.386658pt;}
.yc2{bottom:327.746663pt;}
.y22{bottom:331.426676pt;}
.yde{bottom:333.826660pt;}
.y110{bottom:334.146667pt;}
.y97{bottom:337.826660pt;}
.y140{bottom:340.386658pt;}
.y100{bottom:341.506673pt;}
.y122{bottom:343.746663pt;}
.yc1{bottom:347.106649pt;}
.y1f{bottom:351.746663pt;}
.ydd{bottom:353.186686pt;}
.y10f{bottom:353.506673pt;}
.y96{bottom:357.026652pt;}
.yff{bottom:360.866659pt;}
.y13f{bottom:361.826660pt;}
.yc0{bottom:366.306681pt;}
.y1c{bottom:372.226685pt;}
.ydc{bottom:372.386678pt;}
.y10e{bottom:372.866659pt;}
.y121{bottom:373.666667pt;}
.y95{bottom:376.386678pt;}
.yfe{bottom:380.066650pt;}
.ydb{bottom:391.746663pt;}
.y120{bottom:393.026652pt;}
.y94{bottom:395.586670pt;}
.ybf{bottom:396.226685pt;}
.y10d{bottom:402.786662pt;}
.y13e{bottom:403.746663pt;}
.yfd{bottom:410.146647pt;}
.yda{bottom:410.946655pt;}
.y19{bottom:412.226685pt;}
.y11f{bottom:413.026652pt;}
.ybe{bottom:415.586670pt;}
.y10c{bottom:421.986654pt;}
.y93{bottom:425.666667pt;}
.yfc{bottom:429.346680pt;}
.y13d{bottom:434.146647pt;}
.ybd{bottom:434.946655pt;}
.yd9{bottom:441.026652pt;}
.y10b{bottom:441.346680pt;}
.y11e{bottom:445.666667pt;}
.y18{bottom:448.226685pt;}
.yfb{bottom:448.706665pt;}
.y92{bottom:455.586670pt;}
.y13c{bottom:457.986654pt;}
.yd8{bottom:460.226685pt;}
.y79{bottom:460.706665pt;}
.ybc{bottom:464.866659pt;}
.y11d{bottom:465.026652pt;}
.yfa{bottom:467.906657pt;}
.y17{bottom:478.306681pt;}
.yd7{bottom:479.586670pt;}
.ybb{bottom:484.066650pt;}
.y11c{bottom:484.386678pt;}
.y91{bottom:485.506673pt;}
.yf9{bottom:487.266683pt;}
.y78{bottom:490.626668pt;}
.yd6{bottom:498.786662pt;}
.yba{bottom:503.426676pt;}
.y90{bottom:504.866659pt;}
.yf8{bottom:506.626668pt;}
.y16{bottom:508.226685pt;}
.y10a{bottom:509.826660pt;}
.y11b{bottom:514.306681pt;}
.yd5{bottom:518.146647pt;}
.y77{bottom:520.706665pt;}
.yb9{bottom:522.786662pt;}
.y8f{bottom:524.066650pt;}
.y109{bottom:529.186686pt;}
.y11a{bottom:533.506673pt;}
.yf7{bottom:536.573324pt;}
.yd4{bottom:537.533325pt;}
.y15{bottom:538.173340pt;}
.yb8{bottom:542.013346pt;}
.y8e{bottom:543.453328pt;}
.y108{bottom:548.573324pt;}
.y76{bottom:550.653320pt;}
.y119{bottom:552.893351pt;}
.yf6{bottom:555.773315pt;}
.yd3{bottom:557.533325pt;}
.yb7{bottom:561.373332pt;}
.y65{bottom:562.013346pt;}
.y14{bottom:568.093343pt;}
.y13b{bottom:570.013346pt;}
.y8d{bottom:573.373332pt;}
.y118{bottom:574.493327pt;}
.yf5{bottom:575.133341pt;}
.y75{bottom:576.573324pt;}
.y64{bottom:576.893351pt;}
.y107{bottom:578.493327pt;}
.yb6{bottom:580.573324pt;}
.y13a{bottom:589.373332pt;}
.yd2{bottom:590.813314pt;}
.y8c{bottom:592.733317pt;}
.yf4{bottom:594.493327pt;}
.y62{bottom:596.573324pt;}
.y106{bottom:597.693319pt;}
.y13{bottom:598.173340pt;}
.yb5{bottom:599.933350pt;}
.y74{bottom:602.493327pt;}
.y139{bottom:608.573324pt;}
.y8b{bottom:611.933350pt;}
.yf3{bottom:613.693319pt;}
.yd1{bottom:614.493327pt;}
.y117{bottom:616.253337pt;}
.y105{bottom:617.053345pt;}
.yb4{bottom:619.133341pt;}
.y61{bottom:622.973348pt;}
.y138{bottom:627.933350pt;}
.y12{bottom:628.093343pt;}
.y73{bottom:628.573324pt;}
.y8a{bottom:631.293335pt;}
.yf2{bottom:633.053345pt;}
.y104{bottom:637.213338pt;}
.y60{bottom:642.493327pt;}
.y116{bottom:646.813314pt;}
.y137{bottom:647.133341pt;}
.yb3{bottom:649.213338pt;}
.y89{bottom:650.493327pt;}
.y72{bottom:654.493327pt;}
.y11{bottom:658.013346pt;}
.y103{bottom:659.933350pt;}
.y5f{bottom:661.213338pt;}
.yf1{bottom:662.973348pt;}
.y136{bottom:666.493327pt;}
.yb2{bottom:668.413330pt;}
.y115{bottom:670.493327pt;}
.y5d{bottom:679.933350pt;}
.y71{bottom:680.413330pt;}
.y88{bottom:680.573324pt;}
.y49{bottom:681.213338pt;}
.yf0{bottom:682.333333pt;}
.y135{bottom:685.853353pt;}
.yb1{bottom:687.773356pt;}
.y10{bottom:687.933350pt;}
.y102{bottom:693.213298pt;}
.y5a{bottom:699.613363pt;}
.y87{bottom:699.773356pt;}
.yef{bottom:702.333333pt;}
.y70{bottom:706.333333pt;}
.yb0{bottom:706.973307pt;}
.y48{bottom:711.133301pt;}
.y134{bottom:715.773356pt;}
.y101{bottom:716.893311pt;}
.yf{bottom:718.013346pt;}
.y86{bottom:719.133301pt;}
.y58{bottom:719.773356pt;}
.yee{bottom:725.213298pt;}
.y6f{bottom:725.693359pt;}
.y45{bottom:726.013346pt;}
.yaf{bottom:726.333333pt;}
.y133{bottom:734.973307pt;}
.y85{bottom:738.333333pt;}
.ye{bottom:741.533366pt;}
.y150{bottom:743.453369pt;}
.y56{bottom:745.213298pt;}
.yae{bottom:747.933350pt;}
.y6e{bottom:751.613363pt;}
.y132{bottom:754.333333pt;}
.yed{bottom:757.853353pt;}
.y84{bottom:768.413330pt;}
.y6d{bottom:770.973307pt;}
.y14f{bottom:773.533366pt;}
.y131{bottom:773.693359pt;}
.yec{bottom:777.253337pt;}
.y42{bottom:780.453369pt;}
.y55{bottom:781.733317pt;}
.yd{bottom:787.013346pt;}
.yad{bottom:789.733317pt;}
.y130{bottom:792.933350pt;}
.yeb{bottom:796.453369pt;}
.y6c{bottom:796.933350pt;}
.y83{bottom:798.373372pt;}
.y54{bottom:801.413330pt;}
.y14e{bottom:803.493327pt;}
.yac{bottom:809.093343pt;}
.y6b{bottom:816.293294pt;}
.y82{bottom:817.733317pt;}
.y3f{bottom:821.093343pt;}
.y12f{bottom:822.853353pt;}
.yea{bottom:826.373372pt;}
.yab{bottom:828.293294pt;}
.y14d{bottom:829.733317pt;}
.yc{bottom:832.613363pt;}
.y81{bottom:836.933350pt;}
.y52{bottom:840.773356pt;}
.y6a{bottom:842.213298pt;}
.ye9{bottom:845.733317pt;}
.yaa{bottom:847.653320pt;}
.y80{bottom:856.293294pt;}
.y51{bottom:859.333333pt;}
.y3c{bottom:861.893311pt;}
.y12e{bottom:862.373372pt;}
.ye8{bottom:865.093343pt;}
.ya9{bottom:866.853353pt;}
.y69{bottom:868.133301pt;}
.y8{bottom:869.413330pt;}
.y7f{bottom:875.493327pt;}
.y4f{bottom:879.013346pt;}
.yd0{bottom:884.293294pt;}
.ya8{bottom:886.213298pt;}
.y68{bottom:894.213298pt;}
.y7e{bottom:894.853353pt;}
.y12d{bottom:895.013346pt;}
.y4d{bottom:898.693359pt;}
.ya5{bottom:903.653320pt;}
.ya7{bottom:905.573324pt;}
.y7d{bottom:914.213298pt;}
.y3b{bottom:916.293294pt;}
.y4c{bottom:919.813314pt;}
.y67{bottom:920.133301pt;}
.ycf{bottom:922.853353pt;}
.ya6{bottom:924.773356pt;}
.ya4{bottom:933.573324pt;}
.yce{bottom:942.213298pt;}
.y7c{bottom:944.133301pt;}
.y66{bottom:946.053304pt;}
.y3a{bottom:952.773356pt;}
.ya3{bottom:952.933350pt;}
.ycd{bottom:961.573324pt;}
.y7b{bottom:963.333333pt;}
.y39{bottom:971.973307pt;}
.ya2{bottom:972.133301pt;}
.y4b{bottom:974.373372pt;}
.y7a{bottom:982.693359pt;}
.y7{bottom:988.773356pt;}
.ya1{bottom:991.493327pt;}
.y38{bottom:1004.293294pt;}
.y4a{bottom:1010.693359pt;}
.y2{bottom:1028.639974pt;}
.y1{bottom:1043.040039pt;}
.y37{bottom:1066.932533pt;}
.h17{height:17.919999pt;}
.h1c{height:18.080000pt;}
.ha{height:18.560000pt;}
.h1d{height:18.880000pt;}
.h16{height:19.040000pt;}
.he{height:19.520000pt;}
.h7{height:19.680000pt;}
.hb{height:19.712000pt;}
.h15{height:20.480000pt;}
.h19{height:24.800000pt;}
.h1e{height:25.600000pt;}
.hd{height:35.680000pt;}
.h14{height:35.839999pt;}
.h18{height:35.871999pt;}
.hf{height:37.631250pt;}
.h9{height:39.360000pt;}
.h12{height:40.000000pt;}
.h11{height:40.160000pt;}
.h20{height:42.048000pt;}
.h4{height:42.794240pt;}
.h1b{height:44.687500pt;}
.hc{height:51.200002pt;}
.h8{height:51.307520pt;}
.h13{height:53.631999pt;}
.h21{height:54.817280pt;}
.h3{height:58.762240pt;}
.h1a{height:63.872000pt;}
.h1f{height:64.350720pt;}
.h10{height:79.246720pt;}
.h6{height:109.440002pt;}
.h5{height:145.391995pt;}
.h2{height:1122.559977pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:40.160000pt;}
.w6{width:46.399999pt;}
.wd{width:73.120000pt;}
.w7{width:76.511998pt;}
.w8{width:121.599996pt;}
.w9{width:122.272003pt;}
.w4{width:167.226664pt;}
.wa{width:196.986674pt;}
.w5{width:426.626668pt;}
.wc{width:503.933350pt;}
.w3{width:565.693319pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.359996pt;}
.x18{left:10.880005pt;}
.x1b{left:25.920003pt;}
.x1a{left:27.039998pt;}
.x1c{left:30.079997pt;}
.x19{left:32.479980pt;}
.x15{left:87.711995pt;}
.x8{left:91.194661pt;}
.x2{left:113.471983pt;}
.x16{left:128.512004pt;}
.x4{left:129.631987pt;}
.xf{left:133.151998pt;}
.xa{left:136.346658pt;}
.x1d{left:137.466653pt;}
.x20{left:151.866657pt;}
.x5{left:156.026650pt;}
.x1e{left:161.466653pt;}
.x9{left:172.034667pt;}
.x7{left:176.034667pt;}
.x23{left:178.746652pt;}
.x10{left:180.186666pt;}
.x1{left:196.666655pt;}
.x25{left:221.946664pt;}
.xb{left:253.026661pt;}
.x11{left:257.346659pt;}
.xd{left:281.986674pt;}
.x12{left:379.586670pt;}
.x6{left:396.866647pt;}
.x13{left:502.493327pt;}
.xe{left:600.316813pt;}
.x17{left:633.093343pt;}
.x21{left:665.413318pt;}
.x24{left:666.853341pt;}
.x14{left:670.693307pt;}
.x3{left:672.133330pt;}
.x1f{left:673.573312pt;}
.x22{left:680.453317pt;}
.x26{left:728.453357pt;}
}




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