
    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_9f24d0c23423648c59840b38.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.707031;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_b7dbc16281ff2bc5842cb81c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.917480;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_971954e542dc727d9113df64.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922363;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_8edc9e0ed16bb681b277cb43.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_81d8e0f70af8cd3127b53202.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1278f5459feaf63e26d3a7bd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e3832fda76f264f5854d1b01.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_e726f62d45d3007b75c39542.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bc0d64ae5de737c69d5a0299.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861328;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_10d3a8fc1b20112db0e175be.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5efc8198c78c2e9e2e995048.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.164640px;}
.ls5{letter-spacing:5.527258px;}
.ls4{letter-spacing:25.126219px;}
.ls1{letter-spacing:189.003224px;}
.ls2{letter-spacing:189.005024px;}
.ls6{letter-spacing:189.108304px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-26.265139px;}
.ws4{word-spacing:-20.494048px;}
.ws7{word-spacing:-20.486842px;}
.ws1{word-spacing:-18.028421px;}
.ws2{word-spacing:-17.510093px;}
.ws5{word-spacing:-10.605462px;}
.ws6{word-spacing:-8.937136px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-189.108304px;}
._1b{margin-left:-3.503588px;}
._0{margin-left:-2.207994px;}
._2{margin-left:-1.149588px;}
._1{width:1.148973px;}
._3{width:2.488333px;}
._4{width:3.901871px;}
._15{width:4.931934px;}
._c{width:5.992699px;}
._11{width:7.128585px;}
._f{width:8.588665px;}
._e{width:9.861967px;}
._d{width:10.938038px;}
._14{width:12.066474px;}
._5{width:13.856553px;}
._12{width:15.202296px;}
._10{width:16.371588px;}
._18{width:18.524522px;}
._a{width:19.793796px;}
._b{width:21.012182px;}
._8{width:22.200925px;}
._9{width:23.695883px;}
._13{width:25.215935px;}
._7{width:26.817457px;}
._6{width:28.794015px;}
._17{width:30.680414px;}
._16{width:32.214890px;}
._19{width:34.320132px;}
._1a{width:36.150492px;}
._27{width:38.670894px;}
._28{width:39.759472px;}
._21{width:41.356001px;}
._20{width:49.102183px;}
._1f{width:50.427877px;}
._22{width:56.732834px;}
._23{width:58.040194px;}
._1d{width:119.067232px;}
._26{width:160.762434px;}
._1c{width:189.108304px;}
._24{width:262.633555px;}
._25{width:263.780974px;}
.fc5{color:rgb(40,69,127);}
.fc4{color:transparent;}
.fc3{color:rgb(59,75,167);}
.fc2{color:rgb(63,77,104);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(83,126,197);}
.fs8{font-size:40.623344px;}
.fs7{font-size:46.926821px;}
.fs9{font-size:52.530459px;}
.fs4{font-size:64.436974px;}
.fs6{font-size:64.437574px;}
.fs2{font-size:70.040372px;}
.fs1{font-size:81.947367px;}
.fs0{font-size:93.153563px;}
.fs5{font-size:93.154763px;}
.fs3{font-size:105.060558px;}
.y11f{bottom:-16.189837px;}
.y126{bottom:-14.932821px;}
.y12e{bottom:-13.493072px;}
.y12a{bottom:-13.491895px;}
.y121{bottom:-0.000655px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.503438px;}
.y123{bottom:2.158429px;}
.y11a{bottom:2.518136px;}
.yf2{bottom:3.778911px;}
.y7{bottom:3.957246px;}
.yee{bottom:4.133556px;}
.yd5{bottom:5.217059px;}
.y4{bottom:5.217217px;}
.y2c{bottom:5.217479px;}
.yd8{bottom:109.021568px;}
.y8{bottom:109.193918px;}
.y3{bottom:126.606780px;}
.y6{bottom:131.103900px;}
.y2{bottom:131.320559px;}
.yd7{bottom:132.043259px;}
.y2e{bottom:132.219059px;}
.y5{bottom:134.557708px;}
.yd4{bottom:147.647880px;}
.y2b{bottom:147.833460px;}
.yd6{bottom:157.773498px;}
.y2d{bottom:157.944498px;}
.yac{bottom:165.498795px;}
.y2a{bottom:168.019994px;}
.yd3{bottom:172.156093px;}
.y17a{bottom:181.330839px;}
.y4d{bottom:183.128288px;}
.y1b2{bottom:183.128588px;}
.y118{bottom:183.129038px;}
.y10a{bottom:183.130538px;}
.y1ce{bottom:186.006937px;}
.ybb{bottom:187.265436px;}
.y7c{bottom:189.785135px;}
.y8d{bottom:190.684535px;}
.y161{bottom:193.024684px;}
.yab{bottom:195.720483px;}
.y147{bottom:197.159733px;}
.y68{bottom:198.238982px;}
.y29{bottom:198.421682px;}
.yd2{bottom:199.859131px;}
.yf9{bottom:205.983479px;}
.y179{bottom:211.551777px;}
.y58{bottom:213.529976px;}
.y4c{bottom:213.530726px;}
.y1b1{bottom:213.531026px;}
.y117{bottom:213.531476px;}
.y196{bottom:213.531626px;}
.y109{bottom:213.532976px;}
.yba{bottom:214.971625px;}
.y1cd{bottom:216.227275px;}
.y7b{bottom:217.488174px;}
.y8c{bottom:220.906223px;}
.yaa{bottom:225.942921px;}
.y146{bottom:227.202171px;}
.y67{bottom:227.382920px;}
.y28{bottom:228.463370px;}
.y18c{bottom:235.838717px;}
.yf8{bottom:236.019617px;}
.y178{bottom:241.773465px;}
.yb9{bottom:243.215414px;}
.y57{bottom:243.570314px;}
.y4b{bottom:243.571064px;}
.y1b0{bottom:243.571364px;}
.y116{bottom:243.571814px;}
.y195{bottom:243.571964px;}
.y108{bottom:243.573314px;}
.y7a{bottom:245.191963px;}
.y1cc{bottom:246.449713px;}
.y8b{bottom:251.126561px;}
.y66{bottom:255.085959px;}
.y151{bottom:256.162959px;}
.ya9{bottom:256.163259px;}
.y145{bottom:257.603858px;}
.y27{bottom:258.863708px;}
.yf7{bottom:266.244155px;}
.y18b{bottom:266.419655px;}
.y177{bottom:271.995153px;}
.y4a{bottom:273.252752px;}
.y56{bottom:273.612002px;}
.y79{bottom:273.612752px;}
.y1af{bottom:273.613052px;}
.y115{bottom:273.613502px;}
.y194{bottom:273.613952px;}
.y107{bottom:273.615002px;}
.yb8{bottom:273.615752px;}
.y1cb{bottom:276.671401px;}
.y8a{bottom:281.348999px;}
.y65{bottom:282.969748px;}
.ya8{bottom:286.204947px;}
.y150{bottom:286.385397px;}
.y144{bottom:287.646296px;}
.y26{bottom:288.905396px;}
.yf6{bottom:296.109443px;}
.y18a{bottom:296.641343px;}
.y176{bottom:302.217591px;}
.y55{bottom:304.014440px;}
.y49{bottom:304.015190px;}
.y1ae{bottom:304.015490px;}
.y114{bottom:304.015940px;}
.y106{bottom:304.017440px;}
.yb7{bottom:304.018190px;}
.y1ca{bottom:306.713089px;}
.y64{bottom:310.671437px;}
.y89{bottom:311.571437px;}
.ya7{bottom:316.607385px;}
.y14f{bottom:316.607835px;}
.y143{bottom:318.046634px;}
.y25{bottom:319.127834px;}
.yf5{bottom:326.146931px;}
.y189{bottom:326.683031px;}
.y175{bottom:332.259278px;}
.y193{bottom:334.056728px;}
.y48{bottom:334.056878px;}
.y78{bottom:334.057628px;}
.y1a7{bottom:334.057928px;}
.y105{bottom:334.059128px;}
.yb6{bottom:334.059878px;}
.y1c9{bottom:337.115527px;}
.yd1{bottom:339.093876px;}
.y63{bottom:339.095226px;}
.y88{bottom:341.793875px;}
.ya6{bottom:346.649073px;}
.y14e{bottom:346.830273px;}
.y142{bottom:348.088322px;}
.y24{bottom:349.349522px;}
.yed{bottom:355.618800px;}
.y188{bottom:357.085469px;}
.y174{bottom:362.659616px;}
.y137{bottom:364.099316px;}
.y192{bottom:364.458416px;}
.y47{bottom:364.458566px;}
.y77{bottom:364.459316px;}
.y1ad{bottom:364.459616px;}
.y104{bottom:364.460816px;}
.yb5{bottom:364.461566px;}
.y1c8{bottom:367.157215px;}
.yd0{bottom:369.495564px;}
.y62{bottom:369.496914px;}
.y87{bottom:371.835563px;}
.ya5{bottom:377.051511px;}
.y14d{bottom:377.052711px;}
.y141{bottom:378.310010px;}
.y23{bottom:379.211960px;}
.y187{bottom:387.127157px;}
.y173{bottom:392.702054px;}
.y46{bottom:394.501004px;}
.y76{bottom:394.501754px;}
.y191{bottom:394.501904px;}
.y1a6{bottom:394.502054px;}
.y103{bottom:394.503254px;}
.yb4{bottom:394.504004px;}
.y1c7{bottom:397.378902px;}
.yf4{bottom:399.006402px;}
.ycf{bottom:399.535902px;}
.y61{bottom:399.537252px;}
.y86{bottom:402.235901px;}
.ya4{bottom:407.091849px;}
.y14c{bottom:407.273048px;}
.y140{bottom:408.531698px;}
.y22{bottom:409.792297px;}
.y186{bottom:417.347494px;}
.y172{bottom:422.743742px;}
.y45{bottom:424.721342px;}
.y75{bottom:424.722092px;}
.y190{bottom:424.722392px;}
.y102{bottom:424.723592px;}
.yb3{bottom:424.724342px;}
.y1c6{bottom:427.600590px;}
.yce{bottom:429.938339px;}
.y60{bottom:429.939689px;}
.y85{bottom:431.379389px;}
.yf3{bottom:435.883887px;}
.ya3{bottom:437.313536px;}
.y14b{bottom:437.314736px;}
.y13f{bottom:438.753386px;}
.y21{bottom:440.013985px;}
.y185{bottom:447.569182px;}
.y171{bottom:453.145430px;}
.y1a5{bottom:454.942879px;}
.y54{bottom:454.943029px;}
.y44{bottom:454.943779px;}
.y18f{bottom:454.943929px;}
.y74{bottom:454.944529px;}
.y101{bottom:454.945279px;}
.yb2{bottom:454.946029px;}
.y1c5{bottom:457.822278px;}
.y84{bottom:459.081078px;}
.ycd{bottom:459.980027px;}
.y5f{bottom:459.981377px;}
.y14a{bottom:467.357174px;}
.ya2{bottom:467.535974px;}
.y13e{bottom:468.975074px;}
.yf1{bottom:469.121400px;}
.y160{bottom:469.696574px;}
.y20{bottom:470.055673px;}
.yf0{bottom:472.396872px;}
.y184{bottom:477.790870px;}
.y170{bottom:483.365768px;}
.y53{bottom:485.165467px;}
.y43{bottom:485.166217px;}
.y18e{bottom:485.166367px;}
.y73{bottom:485.166967px;}
.yb1{bottom:485.167717px;}
.y83{bottom:486.783817px;}
.y1c4{bottom:488.043966px;}
.y5e{bottom:489.303066px;}
.ycc{bottom:490.202465px;}
.y149{bottom:497.757362px;}
.ya1{bottom:497.757662px;}
.y13d{bottom:499.196762px;}
.y15f{bottom:500.098261px;}
.y1f{bottom:500.457361px;}
.y183{bottom:507.113009px;}
.yef{bottom:509.274358px;}
.y16f{bottom:509.448958px;}
.y82{bottom:515.387005px;}
.y52{bottom:515.387155px;}
.y42{bottom:515.387905px;}
.y18d{bottom:515.388355px;}
.y72{bottom:515.388655px;}
.yb0{bottom:515.389405px;}
.y5d{bottom:516.825655px;}
.y1c3{bottom:518.265654px;}
.ycb{bottom:520.424153px;}
.y148{bottom:523.841152px;}
.ya0{bottom:527.979350px;}
.y13c{bottom:529.238450px;}
.y15e{bottom:530.139949px;}
.y1e{bottom:530.499049px;}
.y182{bottom:534.816047px;}
.y5c{bottom:545.248843px;}
.y71{bottom:545.250343px;}
.y81{bottom:545.608693px;}
.y51{bottom:545.608843px;}
.y41{bottom:545.609593px;}
.y1ac{bottom:545.609893px;}
.y100{bottom:545.610343px;}
.yaf{bottom:545.611093px;}
.yec{bottom:545.967343px;}
.y1c2{bottom:548.485992px;}
.yca{bottom:550.285841px;}
.y9f{bottom:558.200288px;}
.y13b{bottom:559.280888px;}
.y15d{bottom:560.542387px;}
.y1d{bottom:560.899987px;}
.y181{bottom:562.339836px;}
.y1c1{bottom:568.093984px;}
.y80{bottom:575.649631px;}
.y50{bottom:575.649781px;}
.y40{bottom:575.650531px;}
.y1a4{bottom:575.650831px;}
.yff{bottom:575.651281px;}
.y70{bottom:575.652031px;}
.yc9{bottom:580.506179px;}
.yeb{bottom:583.031128px;}
.y1c0{bottom:585.004827px;}
.y9e{bottom:588.241976px;}
.y13a{bottom:589.322576px;}
.y15c{bottom:590.582725px;}
.y1c{bottom:590.941675px;}
.y180{bottom:591.121675px;}
.y113{bottom:605.692969px;}
.y7f{bottom:606.051319px;}
.y3f{bottom:606.052219px;}
.yfe{bottom:606.052969px;}
.y6f{bottom:606.053719px;}
.y1bf{bottom:606.952369px;}
.yc8{bottom:611.088617px;}
.yea{bottom:613.425766px;}
.y9d{bottom:618.643664px;}
.y139{bottom:620.084263px;}
.y15b{bottom:620.804413px;}
.y1b{bottom:621.163363px;}
.y1be{bottom:630.337659px;}
.y1a3{bottom:636.093307px;}
.y3e{bottom:636.093907px;}
.y1ab{bottom:636.094357px;}
.yfd{bottom:636.094657px;}
.y6e{bottom:636.095407px;}
.yc7{bottom:641.130305px;}
.ye9{bottom:643.473154px;}
.y138{bottom:646.168053px;}
.y9c{bottom:648.686102px;}
.y15a{bottom:651.026101px;}
.y1a{bottom:651.385801px;}
.y17f{bottom:651.565801px;}
.y1bd{bottom:653.724300px;}
.y112{bottom:666.137095px;}
.y3d{bottom:666.496345px;}
.y1a2{bottom:666.496795px;}
.yfc{bottom:666.497095px;}
.y6d{bottom:666.497845px;}
.yc6{bottom:671.533793px;}
.ye8{bottom:673.696942px;}
.y1bc{bottom:677.287790px;}
.y9b{bottom:679.087790px;}
.y17e{bottom:681.247489px;}
.y159{bottom:681.247789px;}
.y19{bottom:681.607489px;}
.y12d{bottom:694.522800px;}
.y111{bottom:696.178783px;}
.y16e{bottom:696.536383px;}
.y1a1{bottom:696.537283px;}
.y3c{bottom:696.538033px;}
.yfb{bottom:696.538783px;}
.y6c{bottom:696.539533px;}
.y12c{bottom:699.594522px;}
.y1bb{bottom:701.395031px;}
.yc5{bottom:701.575781px;}
.ye7{bottom:703.920130px;}
.y9a{bottom:709.130228px;}
.y158{bottom:711.469477px;}
.y18{bottom:711.827827px;}
.y17d{bottom:712.007827px;}
.y12b{bottom:713.266776px;}
.y5b{bottom:726.400471px;}
.y110{bottom:726.401221px;}
.y16d{bottom:726.756721px;}
.y1a0{bottom:726.757771px;}
.y3b{bottom:726.758371px;}
.yfa{bottom:726.759121px;}
.y6b{bottom:726.759871px;}
.y1ba{bottom:728.198070px;}
.yc4{bottom:731.974769px;}
.ye6{bottom:734.134768px;}
.y99{bottom:739.350566px;}
.y157{bottom:741.690415px;}
.y17c{bottom:742.049665px;}
.y17{bottom:742.050265px;}
.y129{bottom:750.468600px;}
.y1b9{bottom:755.001859px;}
.y128{bottom:755.541394px;}
.y5a{bottom:756.620809px;}
.y10f{bottom:756.621559px;}
.y16c{bottom:756.979159px;}
.y136{bottom:756.980059px;}
.y3a{bottom:756.980809px;}
.y19f{bottom:756.981259px;}
.y6a{bottom:756.981559px;}
.yc3{bottom:762.017057px;}
.y16{bottom:763.097056px;}
.ye5{bottom:764.358556px;}
.y17b{bottom:768.134204px;}
.y127{bottom:769.212254px;}
.y98{bottom:769.572254px;}
.y156{bottom:771.732103px;}
.y1b8{bottom:781.984899px;}
.y15{bottom:786.481597px;}
.y10e{bottom:786.843247px;}
.y16b{bottom:787.200847px;}
.y135{bottom:787.201747px;}
.y39{bottom:787.202497px;}
.y69{bottom:787.203247px;}
.yc2{bottom:792.058745px;}
.ye4{bottom:794.581744px;}
.y97{bottom:799.794691px;}
.y155{bottom:802.133791px;}
.y1b7{bottom:808.968688px;}
.y14{bottom:809.688238px;}
.y38{bottom:817.064935px;}
.y125{bottom:817.209000px;}
.y16a{bottom:817.423284px;}
.y134{bottom:817.423434px;}
.y7e{bottom:817.424184px;}
.y4f{bottom:817.424934px;}
.y19e{bottom:817.425234px;}
.yae{bottom:817.425684px;}
.y124{bottom:820.842233px;}
.yc1{bottom:822.460432px;}
.ye3{bottom:824.805531px;}
.y11c{bottom:825.339366px;}
.y96{bottom:830.016379px;}
.y154{bottom:832.175629px;}
.y13{bottom:833.974728px;}
.y11b{bottom:838.830226px;}
.y1b6{bottom:839.190376px;}
.y10d{bottom:847.286622px;}
.yad{bottom:847.287372px;}
.y169{bottom:847.644972px;}
.y133{bottom:847.645122px;}
.y19d{bottom:847.645722px;}
.y7d{bottom:847.645872px;}
.y1aa{bottom:847.646022px;}
.y37{bottom:847.646622px;}
.yc0{bottom:852.502870px;}
.ye2{bottom:854.663020px;}
.y12{bottom:856.279719px;}
.y11e{bottom:858.762000px;}
.y95{bottom:860.238067px;}
.y11d{bottom:861.136717px;}
.y153{bottom:862.577316px;}
.y1b5{bottom:869.412814px;}
.y11{bottom:876.787561px;}
.y10c{bottom:877.328310px;}
.y168{bottom:877.686660px;}
.y132{bottom:877.687560px;}
.y19c{bottom:877.687710px;}
.y36{bottom:877.688310px;}
.ybf{bottom:882.903208px;}
.ye1{bottom:885.064707px;}
.y120{bottom:886.285800px;}
.y152{bottom:888.661106px;}
.y94{bottom:890.279005px;}
.y10{bottom:895.495553px;}
.y1b4{bottom:899.634502px;}
.y119{bottom:906.255000px;}
.y35{bottom:907.729248px;}
.y167{bottom:908.087598px;}
.y131{bottom:908.088498px;}
.y4e{bottom:908.089248px;}
.y1a9{bottom:908.089698px;}
.ybe{bottom:912.944896px;}
.ye0{bottom:914.385196px;}
.yf{bottom:916.183545px;}
.y93{bottom:920.680693px;}
.y122{bottom:924.424200px;}
.y1b3{bottom:929.676190px;}
.y166{bottom:937.769286px;}
.y10b{bottom:937.770936px;}
.y130{bottom:938.130186px;}
.y34{bottom:938.130936px;}
.ydf{bottom:942.270484px;}
.ye{bottom:943.167334px;}
.y92{bottom:949.822981px;}
.y165{bottom:968.171724px;}
.y12f{bottom:968.172624px;}
.y19b{bottom:968.532174px;}
.y33{bottom:968.532624px;}
.yde{bottom:969.793673px;}
.ydd{bottom:969.796223px;}
.yd{bottom:973.389022px;}
.y91{bottom:977.526770px;}
.y59{bottom:998.215062px;}
.ydc{bottom:998.395062px;}
.y164{bottom:998.574162px;}
.y19a{bottom:998.574462px;}
.y32{bottom:998.575062px;}
.y1a8{bottom:998.575662px;}
.yc{bottom:1003.610710px;}
.y90{bottom:1005.229809px;}
.y163{bottom:1028.795850px;}
.y199{bottom:1028.796150px;}
.y31{bottom:1028.796750px;}
.ydb{bottom:1028.798250px;}
.y8f{bottom:1032.933598px;}
.yb{bottom:1033.833148px;}
.yda{bottom:1058.842038px;}
.y162{bottom:1059.016188px;}
.y198{bottom:1059.016638px;}
.y30{bottom:1059.017088px;}
.y8e{bottom:1060.636637px;}
.ya{bottom:1062.615736px;}
.ybd{bottom:1062.974836px;}
.y9{bottom:1086.361027px;}
.yd9{bottom:1089.058176px;}
.y197{bottom:1089.238626px;}
.y2f{bottom:1089.239526px;}
.ybc{bottom:1090.858625px;}
.h1c{height:0.360000px;}
.h22{height:1.618200px;}
.h23{height:3.058200px;}
.h1d{height:9.714600px;}
.h1f{height:11.154600px;}
.h20{height:11.871000px;}
.h21{height:13.311000px;}
.h19{height:13.491000px;}
.h17{height:19.780200px;}
.h18{height:19.794600px;}
.h5{height:20.508120px;}
.h13{height:27.163080px;}
.hf{height:27.163800px;}
.h3{height:27.343800px;}
.h1e{height:28.602960px;}
.h1a{height:32.078882px;}
.h1b{height:33.041248px;}
.h2a{height:35.909493px;}
.h12{height:44.772370px;}
.h16{height:44.772787px;}
.h9{height:45.370174px;}
.h10{height:46.314075px;}
.h15{height:46.314506px;}
.h29{height:46.682182px;}
.h24{height:47.434568px;}
.he{height:47.947559px;}
.h11{height:48.631547px;}
.hd{height:48.665747px;}
.h26{height:48.668147px;}
.h25{height:48.671747px;}
.h27{height:48.674147px;}
.ha{height:48.939342px;}
.h6{height:49.315535px;}
.hb{height:56.939015px;}
.hc{height:57.699269px;}
.h4{height:58.899670px;}
.h8{height:64.679866px;}
.h28{height:64.725351px;}
.h2{height:65.089233px;}
.h14{height:65.090071px;}
.h7{height:71.921339px;}
.h1{height:1262.115562px;}
.h0{height:1263.000000px;}
.wb{width:2.698200px;}
.w8{width:4.676400px;}
.w9{width:4.687200px;}
.w7{width:6.288120px;}
.w2{width:6.295320px;}
.w11{width:6.656400px;}
.we{width:6.834600px;}
.w3{width:7.916400px;}
.wf{width:10.432800px;}
.w13{width:11.154600px;}
.w4{width:13.852260px;}
.w12{width:22.485600px;}
.w10{width:22.845600px;}
.w5{width:27.703800px;}
.w6{width:27.708120px;}
.wd{width:36.340200px;}
.wc{width:39.574800px;}
.wa{width:78.611400px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:124.124650px;}
.xb{left:128.261949px;}
.xd{left:149.129280px;}
.x1b{left:150.208290px;}
.x1{left:162.980935px;}
.x1a{left:172.334931px;}
.xc{left:175.752232px;}
.x2{left:176.833080px;}
.x2b{left:188.165925px;}
.xa{left:192.662923px;}
.xe{left:213.710269px;}
.x20{left:227.382059px;}
.x9{left:248.249736px;}
.x28{left:252.207049px;}
.x6{left:265.879394px;}
.x12{left:272.534891px;}
.x2c{left:276.491769px;}
.x13{left:279.725268px;}
.x23{left:306.533577px;}
.x25{left:323.264571px;}
.x2d{left:331.898837px;}
.x15{left:334.238400px;}
.x2a{left:337.295565px;}
.x14{left:348.807910px;}
.x7{left:359.601741px;}
.x1f{left:364.819054px;}
.xf{left:366.982200px;}
.x10{left:382.625847px;}
.x16{left:412.849800px;}
.x17{left:415.548000px;}
.x8{left:446.489656px;}
.x18{left:455.122800px;}
.x19{left:491.283000px;}
.x3{left:549.566780px;}
.x11{left:563.594400px;}
.x22{left:577.809969px;}
.x26{left:584.286369px;}
.x1c{left:594.540000px;}
.x27{left:615.946404px;}
.x1d{left:617.385600px;}
.x1e{left:628.000200px;}
.x21{left:635.733493px;}
.x29{left:642.210943px;}
.x24{left:671.892931px;}
.x4{left:768.853800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.146347pt;}
.ls5{letter-spacing:4.913118pt;}
.ls4{letter-spacing:22.334417pt;}
.ls1{letter-spacing:168.002866pt;}
.ls2{letter-spacing:168.004466pt;}
.ls6{letter-spacing:168.096270pt;}
.ws0{word-spacing:-23.346791pt;}
.ws4{word-spacing:-18.216931pt;}
.ws7{word-spacing:-18.210526pt;}
.ws1{word-spacing:-16.025263pt;}
.ws2{word-spacing:-15.564527pt;}
.ws5{word-spacing:-9.427077pt;}
.ws6{word-spacing:-7.944121pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-168.096270pt;}
._1b{margin-left:-3.114300pt;}
._0{margin-left:-1.962661pt;}
._2{margin-left:-1.021856pt;}
._1{width:1.021309pt;}
._3{width:2.211852pt;}
._4{width:3.468329pt;}
._15{width:4.383941pt;}
._c{width:5.326844pt;}
._11{width:6.336520pt;}
._f{width:7.634369pt;}
._e{width:8.766193pt;}
._d{width:9.722701pt;}
._14{width:10.725754pt;}
._5{width:12.316936pt;}
._12{width:13.513152pt;}
._10{width:14.552523pt;}
._18{width:16.466241pt;}
._a{width:17.594485pt;}
._b{width:18.677495pt;}
._8{width:19.734156pt;}
._9{width:21.063007pt;}
._13{width:22.414164pt;}
._7{width:23.837739pt;}
._6{width:25.594680pt;}
._17{width:27.271479pt;}
._16{width:28.635458pt;}
._19{width:30.506784pt;}
._1a{width:32.133771pt;}
._27{width:34.374128pt;}
._28{width:35.341753pt;}
._21{width:36.760890pt;}
._20{width:43.646385pt;}
._1f{width:44.824780pt;}
._22{width:50.429186pt;}
._23{width:51.591283pt;}
._1d{width:105.837539pt;}
._26{width:142.899941pt;}
._1c{width:168.096270pt;}
._24{width:233.452049pt;}
._25{width:234.471977pt;}
.fs8{font-size:36.109639pt;}
.fs7{font-size:41.712730pt;}
.fs9{font-size:46.693741pt;}
.fs4{font-size:57.277310pt;}
.fs6{font-size:57.277844pt;}
.fs2{font-size:62.258108pt;}
.fs1{font-size:72.842104pt;}
.fs0{font-size:82.803167pt;}
.fs5{font-size:82.804234pt;}
.fs3{font-size:93.387163pt;}
.y11f{bottom:-14.390966pt;}
.y126{bottom:-13.273619pt;}
.y12e{bottom:-11.993842pt;}
.y12a{bottom:-11.992795pt;}
.y121{bottom:-0.000582pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.447501pt;}
.y123{bottom:1.918604pt;}
.y11a{bottom:2.238344pt;}
.yf2{bottom:3.359032pt;}
.y7{bottom:3.517552pt;}
.yee{bottom:3.674272pt;}
.yd5{bottom:4.637386pt;}
.y4{bottom:4.637526pt;}
.y2c{bottom:4.637759pt;}
.yd8{bottom:96.908060pt;}
.y8{bottom:97.061260pt;}
.y3{bottom:112.539360pt;}
.y6{bottom:116.536800pt;}
.y2{bottom:116.729386pt;}
.yd7{bottom:117.371785pt;}
.y2e{bottom:117.528052pt;}
.y5{bottom:119.606851pt;}
.yd4{bottom:131.242560pt;}
.y2b{bottom:131.407520pt;}
.yd6{bottom:140.243110pt;}
.y2d{bottom:140.395110pt;}
.yac{bottom:147.110040pt;}
.y2a{bottom:149.351106pt;}
.yd3{bottom:153.027638pt;}
.y17a{bottom:161.182968pt;}
.y4d{bottom:162.780701pt;}
.y1b2{bottom:162.780967pt;}
.y118{bottom:162.781367pt;}
.y10a{bottom:162.782701pt;}
.y1ce{bottom:165.339500pt;}
.ybb{bottom:166.458166pt;}
.y7c{bottom:168.697898pt;}
.y8d{bottom:169.497365pt;}
.y161{bottom:171.577497pt;}
.yab{bottom:173.973763pt;}
.y147{bottom:175.253096pt;}
.y68{bottom:176.212429pt;}
.y29{bottom:176.374828pt;}
.yd2{bottom:177.652561pt;}
.yf9{bottom:183.096426pt;}
.y179{bottom:188.046024pt;}
.y58{bottom:189.804423pt;}
.y4c{bottom:189.805090pt;}
.y1b1{bottom:189.805356pt;}
.y117{bottom:189.805756pt;}
.y196{bottom:189.805890pt;}
.y109{bottom:189.807090pt;}
.yba{bottom:191.085889pt;}
.y1cd{bottom:192.202022pt;}
.y7b{bottom:193.322822pt;}
.y8c{bottom:196.361087pt;}
.yaa{bottom:200.838152pt;}
.y146{bottom:201.957485pt;}
.y67{bottom:202.118152pt;}
.y28{bottom:203.078551pt;}
.y18c{bottom:209.634415pt;}
.yf8{bottom:209.795215pt;}
.y178{bottom:214.909746pt;}
.yb9{bottom:216.191479pt;}
.y57{bottom:216.506946pt;}
.y4b{bottom:216.507612pt;}
.y1b0{bottom:216.507879pt;}
.y116{bottom:216.508279pt;}
.y195{bottom:216.508412pt;}
.y108{bottom:216.509612pt;}
.y7a{bottom:217.948412pt;}
.y1cc{bottom:219.066411pt;}
.y8b{bottom:223.223610pt;}
.y66{bottom:226.743075pt;}
.y151{bottom:227.700408pt;}
.ya9{bottom:227.700675pt;}
.y145{bottom:228.981207pt;}
.y27{bottom:230.101074pt;}
.yf7{bottom:236.661471pt;}
.y18b{bottom:236.817471pt;}
.y177{bottom:241.773469pt;}
.y4a{bottom:242.891335pt;}
.y56{bottom:243.210668pt;}
.y79{bottom:243.211335pt;}
.y1af{bottom:243.211602pt;}
.y115{bottom:243.212002pt;}
.y194{bottom:243.212402pt;}
.y107{bottom:243.213335pt;}
.yb8{bottom:243.214002pt;}
.y1cb{bottom:245.930134pt;}
.y8a{bottom:250.087999pt;}
.y65{bottom:251.528665pt;}
.ya8{bottom:254.404397pt;}
.y150{bottom:254.564797pt;}
.y144{bottom:255.685597pt;}
.y26{bottom:256.804796pt;}
.yf6{bottom:263.208394pt;}
.y18a{bottom:263.681194pt;}
.y176{bottom:268.637858pt;}
.y55{bottom:270.235058pt;}
.y49{bottom:270.235724pt;}
.y1ae{bottom:270.235991pt;}
.y114{bottom:270.236391pt;}
.y106{bottom:270.237724pt;}
.yb7{bottom:270.238391pt;}
.y1ca{bottom:272.633857pt;}
.y64{bottom:276.152389pt;}
.y89{bottom:276.952388pt;}
.ya7{bottom:281.428786pt;}
.y14f{bottom:281.429186pt;}
.y143{bottom:282.708119pt;}
.y25{bottom:283.669186pt;}
.yf5{bottom:289.908383pt;}
.y189{bottom:290.384916pt;}
.y175{bottom:295.341581pt;}
.y193{bottom:296.939314pt;}
.y48{bottom:296.939447pt;}
.y78{bottom:296.940114pt;}
.y1a7{bottom:296.940380pt;}
.y105{bottom:296.941447pt;}
.yb6{bottom:296.942114pt;}
.y1c9{bottom:299.658246pt;}
.yd1{bottom:301.416778pt;}
.y63{bottom:301.417978pt;}
.y88{bottom:303.816777pt;}
.ya6{bottom:308.132509pt;}
.y14e{bottom:308.293576pt;}
.y142{bottom:309.411842pt;}
.y24{bottom:310.532908pt;}
.yed{bottom:316.105600pt;}
.y188{bottom:317.409305pt;}
.y174{bottom:322.364103pt;}
.y137{bottom:323.643836pt;}
.y192{bottom:323.963036pt;}
.y47{bottom:323.963169pt;}
.y77{bottom:323.963836pt;}
.y1ad{bottom:323.964103pt;}
.y104{bottom:323.965169pt;}
.yb5{bottom:323.965836pt;}
.y1c8{bottom:326.361968pt;}
.yd0{bottom:328.440501pt;}
.y62{bottom:328.441701pt;}
.y87{bottom:330.520500pt;}
.ya5{bottom:335.156898pt;}
.y14d{bottom:335.157965pt;}
.y141{bottom:336.275565pt;}
.y23{bottom:337.077298pt;}
.y187{bottom:344.113028pt;}
.y173{bottom:349.068493pt;}
.y46{bottom:350.667559pt;}
.y76{bottom:350.668225pt;}
.y191{bottom:350.668359pt;}
.y1a6{bottom:350.668492pt;}
.y103{bottom:350.669559pt;}
.yb4{bottom:350.670225pt;}
.y1c7{bottom:353.225691pt;}
.yf4{bottom:354.672357pt;}
.ycf{bottom:355.143024pt;}
.y61{bottom:355.144224pt;}
.y86{bottom:357.543023pt;}
.ya4{bottom:361.859421pt;}
.y14c{bottom:362.020488pt;}
.y140{bottom:363.139287pt;}
.y22{bottom:364.259820pt;}
.y186{bottom:370.975551pt;}
.y172{bottom:375.772215pt;}
.y45{bottom:377.530081pt;}
.y75{bottom:377.530748pt;}
.y190{bottom:377.531015pt;}
.y102{bottom:377.532081pt;}
.yb3{bottom:377.532748pt;}
.y1c6{bottom:380.089414pt;}
.yce{bottom:382.167413pt;}
.y60{bottom:382.168613pt;}
.y85{bottom:383.448346pt;}
.yf3{bottom:387.452344pt;}
.ya3{bottom:388.723144pt;}
.y14b{bottom:388.724210pt;}
.y13f{bottom:390.003010pt;}
.y21{bottom:391.123543pt;}
.y185{bottom:397.839273pt;}
.y171{bottom:402.795938pt;}
.y1a5{bottom:404.393671pt;}
.y54{bottom:404.393804pt;}
.y44{bottom:404.394471pt;}
.y18f{bottom:404.394604pt;}
.y74{bottom:404.395137pt;}
.y101{bottom:404.395804pt;}
.yb2{bottom:404.396471pt;}
.y1c5{bottom:406.953136pt;}
.y84{bottom:408.072069pt;}
.ycd{bottom:408.871135pt;}
.y5f{bottom:408.872335pt;}
.y14a{bottom:415.428600pt;}
.ya2{bottom:415.587533pt;}
.y13e{bottom:416.866732pt;}
.yf1{bottom:416.996800pt;}
.y160{bottom:417.508065pt;}
.y20{bottom:417.827265pt;}
.yf0{bottom:419.908331pt;}
.y184{bottom:424.702996pt;}
.y170{bottom:429.658460pt;}
.y53{bottom:431.258193pt;}
.y43{bottom:431.258860pt;}
.y18e{bottom:431.258993pt;}
.y73{bottom:431.259527pt;}
.yb1{bottom:431.260193pt;}
.y83{bottom:432.696726pt;}
.y1c4{bottom:433.816859pt;}
.y5e{bottom:434.936058pt;}
.ycc{bottom:435.735525pt;}
.y149{bottom:442.450989pt;}
.ya1{bottom:442.451255pt;}
.y13d{bottom:443.730455pt;}
.y15f{bottom:444.531788pt;}
.y1f{bottom:444.850988pt;}
.y183{bottom:450.767119pt;}
.yef{bottom:452.688318pt;}
.y16f{bottom:452.843518pt;}
.y82{bottom:458.121782pt;}
.y52{bottom:458.121916pt;}
.y42{bottom:458.122582pt;}
.y18d{bottom:458.122982pt;}
.y72{bottom:458.123249pt;}
.yb0{bottom:458.123916pt;}
.y5d{bottom:459.400582pt;}
.y1c3{bottom:460.680581pt;}
.ycb{bottom:462.599247pt;}
.y148{bottom:465.636579pt;}
.ya0{bottom:469.314978pt;}
.y13c{bottom:470.434178pt;}
.y15e{bottom:471.235511pt;}
.y1e{bottom:471.554710pt;}
.y182{bottom:475.392042pt;}
.y5c{bottom:484.665638pt;}
.y71{bottom:484.666972pt;}
.y81{bottom:484.985505pt;}
.y51{bottom:484.985638pt;}
.y41{bottom:484.986305pt;}
.y1ac{bottom:484.986572pt;}
.y100{bottom:484.986972pt;}
.yaf{bottom:484.987638pt;}
.yec{bottom:485.304305pt;}
.y1c2{bottom:487.543104pt;}
.yca{bottom:489.142970pt;}
.y9f{bottom:496.178034pt;}
.y13b{bottom:497.138567pt;}
.y15d{bottom:498.259900pt;}
.y1d{bottom:498.577766pt;}
.y181{bottom:499.857632pt;}
.y1c1{bottom:504.972430pt;}
.y80{bottom:511.688561pt;}
.y50{bottom:511.688694pt;}
.y40{bottom:511.689361pt;}
.y1a4{bottom:511.689628pt;}
.yff{bottom:511.690028pt;}
.y70{bottom:511.690694pt;}
.yc9{bottom:516.005493pt;}
.yeb{bottom:518.249892pt;}
.y1c0{bottom:520.004291pt;}
.y9e{bottom:522.881757pt;}
.y13a{bottom:523.842289pt;}
.y15c{bottom:524.962422pt;}
.y1c{bottom:525.281489pt;}
.y180{bottom:525.441489pt;}
.y113{bottom:538.393750pt;}
.y7f{bottom:538.712284pt;}
.y3f{bottom:538.713084pt;}
.yfe{bottom:538.713750pt;}
.y6f{bottom:538.714417pt;}
.y1bf{bottom:539.513217pt;}
.yc8{bottom:543.189882pt;}
.yea{bottom:545.267348pt;}
.y9d{bottom:549.905479pt;}
.y139{bottom:551.186012pt;}
.y15b{bottom:551.826145pt;}
.y1b{bottom:552.145211pt;}
.y1be{bottom:560.300142pt;}
.y1a3{bottom:565.416273pt;}
.y3e{bottom:565.416806pt;}
.y1ab{bottom:565.417206pt;}
.yfd{bottom:565.417473pt;}
.y6e{bottom:565.418140pt;}
.yc7{bottom:569.893604pt;}
.ye9{bottom:571.976137pt;}
.y138{bottom:574.371603pt;}
.y9c{bottom:576.609868pt;}
.y15a{bottom:578.689868pt;}
.y1a{bottom:579.009601pt;}
.y17f{bottom:579.169601pt;}
.y1bd{bottom:581.088267pt;}
.y112{bottom:592.121862pt;}
.y3d{bottom:592.441195pt;}
.y1a2{bottom:592.441595pt;}
.yfc{bottom:592.441862pt;}
.y6d{bottom:592.442529pt;}
.yc6{bottom:596.918927pt;}
.ye8{bottom:598.841726pt;}
.y1bc{bottom:602.033592pt;}
.y9b{bottom:603.633591pt;}
.y17e{bottom:605.553323pt;}
.y159{bottom:605.553590pt;}
.y19{bottom:605.873323pt;}
.y12d{bottom:617.353600pt;}
.y111{bottom:618.825585pt;}
.y16e{bottom:619.143451pt;}
.y1a1{bottom:619.144251pt;}
.y3c{bottom:619.144918pt;}
.yfb{bottom:619.145585pt;}
.y6c{bottom:619.146251pt;}
.y12c{bottom:621.861797pt;}
.y1bb{bottom:623.462250pt;}
.yc5{bottom:623.622916pt;}
.ye7{bottom:625.706782pt;}
.y9a{bottom:630.337980pt;}
.y158{bottom:632.417313pt;}
.y18{bottom:632.735846pt;}
.y17d{bottom:632.895846pt;}
.y12b{bottom:634.014912pt;}
.y5b{bottom:645.689307pt;}
.y110{bottom:645.689974pt;}
.y16d{bottom:646.005974pt;}
.y1a0{bottom:646.006907pt;}
.y3b{bottom:646.007441pt;}
.yfa{bottom:646.008107pt;}
.y6b{bottom:646.008774pt;}
.y1ba{bottom:647.287173pt;}
.yc4{bottom:650.644239pt;}
.ye6{bottom:652.564238pt;}
.y99{bottom:657.200503pt;}
.y157{bottom:659.280369pt;}
.y17c{bottom:659.599702pt;}
.y17{bottom:659.600235pt;}
.y129{bottom:667.083200pt;}
.y1b9{bottom:671.112764pt;}
.y128{bottom:671.592350pt;}
.y5a{bottom:672.551830pt;}
.y10f{bottom:672.552497pt;}
.y16c{bottom:672.870363pt;}
.y136{bottom:672.871163pt;}
.y3a{bottom:672.871830pt;}
.y19f{bottom:672.872230pt;}
.y6a{bottom:672.872497pt;}
.yc3{bottom:677.348495pt;}
.y16{bottom:678.308494pt;}
.ye5{bottom:679.429827pt;}
.y17b{bottom:682.785959pt;}
.y127{bottom:683.744226pt;}
.y98{bottom:684.064225pt;}
.y156{bottom:685.984091pt;}
.y1b8{bottom:695.097688pt;}
.y15{bottom:699.094753pt;}
.y10e{bottom:699.416219pt;}
.y16b{bottom:699.734086pt;}
.y135{bottom:699.734886pt;}
.y39{bottom:699.735552pt;}
.y69{bottom:699.736219pt;}
.yc2{bottom:704.052217pt;}
.ye4{bottom:706.294883pt;}
.y97{bottom:710.928615pt;}
.y155{bottom:713.007814pt;}
.y1b7{bottom:719.083278pt;}
.y14{bottom:719.722878pt;}
.y38{bottom:726.279942pt;}
.y125{bottom:726.408000pt;}
.y16a{bottom:726.598475pt;}
.y134{bottom:726.598608pt;}
.y7e{bottom:726.599275pt;}
.y4f{bottom:726.599942pt;}
.y19e{bottom:726.600208pt;}
.yae{bottom:726.600608pt;}
.y124{bottom:729.637540pt;}
.yc1{bottom:731.075940pt;}
.ye3{bottom:733.160472pt;}
.y11c{bottom:733.634992pt;}
.y96{bottom:737.792337pt;}
.y154{bottom:739.711670pt;}
.y13{bottom:741.310869pt;}
.y11b{bottom:745.626867pt;}
.y1b6{bottom:745.947001pt;}
.y10d{bottom:753.143664pt;}
.yad{bottom:753.144331pt;}
.y169{bottom:753.462198pt;}
.y133{bottom:753.462331pt;}
.y19d{bottom:753.462864pt;}
.y7d{bottom:753.462998pt;}
.y1aa{bottom:753.463131pt;}
.y37{bottom:753.463664pt;}
.yc0{bottom:757.780329pt;}
.ye2{bottom:759.700462pt;}
.y12{bottom:761.137528pt;}
.y11e{bottom:763.344000pt;}
.y95{bottom:764.656060pt;}
.y11d{bottom:765.454860pt;}
.y153{bottom:766.735392pt;}
.y1b5{bottom:772.811390pt;}
.y11{bottom:779.366721pt;}
.y10c{bottom:779.847387pt;}
.y168{bottom:780.165920pt;}
.y132{bottom:780.166720pt;}
.y19c{bottom:780.166854pt;}
.y36{bottom:780.167387pt;}
.ybf{bottom:784.802852pt;}
.ye1{bottom:786.724184pt;}
.y120{bottom:787.809600pt;}
.y152{bottom:789.920983pt;}
.y94{bottom:791.359116pt;}
.y10{bottom:795.996047pt;}
.y1b4{bottom:799.675112pt;}
.y119{bottom:805.560000pt;}
.y35{bottom:806.870443pt;}
.y167{bottom:807.188976pt;}
.y131{bottom:807.189776pt;}
.y4e{bottom:807.190443pt;}
.y1a9{bottom:807.190843pt;}
.ybe{bottom:811.506574pt;}
.ye0{bottom:812.786841pt;}
.yf{bottom:814.385373pt;}
.y93{bottom:818.382838pt;}
.y122{bottom:821.710400pt;}
.y1b3{bottom:826.378835pt;}
.y166{bottom:833.572699pt;}
.y10b{bottom:833.574166pt;}
.y130{bottom:833.893499pt;}
.y34{bottom:833.894165pt;}
.ydf{bottom:837.573764pt;}
.ye{bottom:838.370964pt;}
.y92{bottom:844.287095pt;}
.y165{bottom:860.597088pt;}
.y12f{bottom:860.597888pt;}
.y19b{bottom:860.917488pt;}
.y33{bottom:860.917888pt;}
.yde{bottom:862.038821pt;}
.ydd{bottom:862.041088pt;}
.yd{bottom:865.234686pt;}
.y91{bottom:868.912685pt;}
.y59{bottom:887.302277pt;}
.ydc{bottom:887.462277pt;}
.y164{bottom:887.621477pt;}
.y19a{bottom:887.621744pt;}
.y32{bottom:887.622277pt;}
.y1a8{bottom:887.622811pt;}
.yc{bottom:892.098409pt;}
.y90{bottom:893.537608pt;}
.y163{bottom:914.485200pt;}
.y199{bottom:914.485467pt;}
.y31{bottom:914.486000pt;}
.ydb{bottom:914.487333pt;}
.y8f{bottom:918.163198pt;}
.yb{bottom:918.962798pt;}
.yda{bottom:941.192923pt;}
.y162{bottom:941.347722pt;}
.y198{bottom:941.348122pt;}
.y30{bottom:941.348522pt;}
.y8e{bottom:942.788122pt;}
.ya{bottom:944.547321pt;}
.ybd{bottom:944.866521pt;}
.y9{bottom:965.654246pt;}
.yd9{bottom:968.051712pt;}
.y197{bottom:968.212112pt;}
.y2f{bottom:968.212912pt;}
.ybc{bottom:969.652111pt;}
.h1c{height:0.320000pt;}
.h22{height:1.438400pt;}
.h23{height:2.718400pt;}
.h1d{height:8.635200pt;}
.h1f{height:9.915200pt;}
.h20{height:10.552000pt;}
.h21{height:11.832000pt;}
.h19{height:11.992000pt;}
.h17{height:17.582400pt;}
.h18{height:17.595200pt;}
.h5{height:18.229440pt;}
.h13{height:24.144960pt;}
.hf{height:24.145600pt;}
.h3{height:24.305600pt;}
.h1e{height:25.424853pt;}
.h1a{height:28.514562pt;}
.h1b{height:29.369998pt;}
.h2a{height:31.919550pt;}
.h12{height:39.797662pt;}
.h16{height:39.798033pt;}
.h9{height:40.329044pt;}
.h10{height:41.168067pt;}
.h15{height:41.168450pt;}
.h29{height:41.495272pt;}
.h24{height:42.164061pt;}
.he{height:42.620053pt;}
.h11{height:43.228042pt;}
.hd{height:43.258442pt;}
.h26{height:43.260575pt;}
.h25{height:43.263775pt;}
.h27{height:43.265908pt;}
.ha{height:43.501637pt;}
.h6{height:43.836031pt;}
.hb{height:50.612458pt;}
.hc{height:51.288239pt;}
.h4{height:52.355262pt;}
.h8{height:57.493215pt;}
.h28{height:57.533646pt;}
.h2{height:57.857096pt;}
.h14{height:57.857841pt;}
.h7{height:63.930079pt;}
.h1{height:1121.880499pt;}
.h0{height:1122.666667pt;}
.wb{width:2.398400pt;}
.w8{width:4.156800pt;}
.w9{width:4.166400pt;}
.w7{width:5.589440pt;}
.w2{width:5.595840pt;}
.w11{width:5.916800pt;}
.we{width:6.075200pt;}
.w3{width:7.036800pt;}
.wf{width:9.273600pt;}
.w13{width:9.915200pt;}
.w4{width:12.313120pt;}
.w12{width:19.987200pt;}
.w10{width:20.307200pt;}
.w5{width:24.625600pt;}
.w6{width:24.629440pt;}
.wd{width:32.302400pt;}
.wc{width:35.177600pt;}
.wa{width:69.876800pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:110.333023pt;}
.xb{left:114.010621pt;}
.xd{left:132.559360pt;}
.x1b{left:133.518480pt;}
.x1{left:144.871942pt;}
.x1a{left:153.186605pt;}
.xc{left:156.224207pt;}
.x2{left:157.184960pt;}
.x2b{left:167.258600pt;}
.xa{left:171.255931pt;}
.xe{left:189.964684pt;}
.x20{left:202.117386pt;}
.x9{left:220.666432pt;}
.x28{left:224.184044pt;}
.x6{left:236.337239pt;}
.x12{left:242.253236pt;}
.x2c{left:245.770462pt;}
.x13{left:248.644682pt;}
.x23{left:272.474291pt;}
.x25{left:287.346285pt;}
.x2d{left:295.021189pt;}
.x15{left:297.100800pt;}
.x2a{left:299.818280pt;}
.x14{left:310.051476pt;}
.x7{left:319.645992pt;}
.x1f{left:324.283604pt;}
.xf{left:326.206400pt;}
.x10{left:340.111864pt;}
.x16{left:366.977600pt;}
.x17{left:369.376000pt;}
.x8{left:396.879695pt;}
.x18{left:404.553600pt;}
.x19{left:436.696000pt;}
.x3{left:488.503805pt;}
.x11{left:500.972800pt;}
.x22{left:513.608861pt;}
.x26{left:519.365661pt;}
.x1c{left:528.480000pt;}
.x27{left:547.507914pt;}
.x1d{left:548.787200pt;}
.x1e{left:558.222400pt;}
.x21{left:565.096438pt;}
.x29{left:570.854172pt;}
.x24{left:597.238161pt;}
.x4{left:683.425600pt;}
}




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