
    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_e6cb7fa6ab9bfa65eb082684.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061000;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_5e9c216998a74b54babffd72.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.083000;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_ae63f3bd3a3d9f8dd028546c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.076000;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_52a74cd2e72de26e78b76a43.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_abd1198e364f1117087a2d8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_07fecb7803533503dc815d74.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091797;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_d7d99654fe9fcc085c15340e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.067500;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_b53261e66e1cfa4781ee09d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.067500;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m3{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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;}
.ls4{letter-spacing:8.997725px;}
.ls5{letter-spacing:9.713480px;}
.ls3{letter-spacing:10.429560px;}
.ls1{letter-spacing:102.614356px;}
.ls6{letter-spacing:111.996519px;}
.ls2{letter-spacing:132.157390px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,205),0 0.015em rgb(0,0,205),0.015em 0 rgb(0,0,205),0 -0.015em  rgb(0,0,205);}
.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(0,0,205);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-30.663144px;}
.ws4{word-spacing:-29.013120px;}
.ws4a{word-spacing:-27.555840px;}
.ws4c{word-spacing:-26.994616px;}
.ws7{word-spacing:-26.893440px;}
.ws4b{word-spacing:-25.542000px;}
.ws4e{word-spacing:-24.710400px;}
.ws1{word-spacing:-23.178960px;}
.wsf{word-spacing:-20.340720px;}
.ws4f{word-spacing:-20.003760px;}
.wse{word-spacing:-18.854640px;}
.ws10{word-spacing:-14.762038px;}
.ws12{word-spacing:-14.506560px;}
.ws11{word-spacing:-13.446720px;}
.ws1f{word-spacing:-11.668320px;}
.ws18{word-spacing:-10.815840px;}
.ws2{word-spacing:-10.249200px;}
.ws16{word-spacing:-9.734400px;}
.ws47{word-spacing:-9.584640px;}
.ws24{word-spacing:-2.750580px;}
.ws36{word-spacing:-2.743914px;}
.ws20{word-spacing:-2.104539px;}
.ws1e{word-spacing:-2.044555px;}
.ws30{word-spacing:-1.901560px;}
.ws21{word-spacing:-1.651745px;}
.ws49{word-spacing:-1.625411px;}
.ws33{word-spacing:-1.598405px;}
.ws3f{word-spacing:-1.545133px;}
.ws2f{word-spacing:-1.541855px;}
.ws2a{word-spacing:-1.445142px;}
.ws25{word-spacing:-1.385410px;}
.ws13{word-spacing:-1.357839px;}
.ws2e{word-spacing:-1.338595px;}
.ws19{word-spacing:-1.278785px;}
.ws1b{word-spacing:-1.202195px;}
.ws29{word-spacing:-1.142190px;}
.ws26{word-spacing:-1.125475px;}
.ws3a{word-spacing:-1.092240px;}
.ws2c{word-spacing:-1.039090px;}
.ws1a{word-spacing:-0.992405px;}
.ws35{word-spacing:-0.676185px;}
.ws39{word-spacing:-0.666023px;}
.ws1c{word-spacing:-0.659275px;}
.ws27{word-spacing:-0.642690px;}
.ws3c{word-spacing:-0.639357px;}
.ws1d{word-spacing:-0.606125px;}
.ws38{word-spacing:-0.589540px;}
.ws23{word-spacing:-0.589378px;}
.ws28{word-spacing:-0.559310px;}
.ws2d{word-spacing:-0.556240px;}
.ws32{word-spacing:-0.542790px;}
.ws40{word-spacing:-0.459670px;}
.ws44{word-spacing:-0.439690px;}
.ws3b{word-spacing:-0.266387px;}
.ws37{word-spacing:-0.239755px;}
.ws46{word-spacing:-0.092880px;}
.ws43{word-spacing:-0.079920px;}
.ws31{word-spacing:-0.076447px;}
.ws0{word-spacing:0.000000px;}
.ws22{word-spacing:0.026510px;}
.ws3e{word-spacing:0.056480px;}
.ws34{word-spacing:0.239765px;}
.ws42{word-spacing:0.266382px;}
.ws3d{word-spacing:0.403073px;}
.ws17{word-spacing:0.426240px;}
.ws2b{word-spacing:0.426253px;}
.ws45{word-spacing:0.439430px;}
.ws41{word-spacing:0.556110px;}
.ws48{word-spacing:0.650203px;}
.ws15{word-spacing:0.733023px;}
.ws14{word-spacing:0.794718px;}
.ws4d{word-spacing:1.722571px;}
.ws8{word-spacing:1.854681px;}
.wsd{word-spacing:2.782105px;}
.wsa{word-spacing:2.848377px;}
.ws3{word-spacing:3.378208px;}
.ws9{word-spacing:3.378329px;}
.wsb{word-spacing:3.510898px;}
.wsc{word-spacing:4.106857px;}
.ws6{word-spacing:5.829156px;}
._4{margin-left:-3872.733529px;}
._1a{margin-left:-2919.098547px;}
._23{margin-left:-2282.987388px;}
._1c{margin-left:-1974.200350px;}
._17{margin-left:-1956.577475px;}
._1d{margin-left:-1940.433970px;}
._18{margin-left:-1858.216257px;}
._1e{margin-left:-1831.289360px;}
._1b{margin-left:-1809.825790px;}
._24{margin-left:-1638.043741px;}
._d{margin-left:-1563.764992px;}
._e{margin-left:-1544.351007px;}
._22{margin-left:-3.865680px;}
._3{margin-left:-2.649600px;}
._0{margin-left:-1.110240px;}
._1{width:1.480320px;}
._2{width:3.145680px;}
._21{width:4.661280px;}
._19{width:8.916660px;}
._15{width:10.499765px;}
._16{width:11.969770px;}
._f{width:15.229656px;}
._20{width:19.139040px;}
._1f{width:21.919680px;}
._a{width:27.256277px;}
._9{width:28.880617px;}
._8{width:29.962894px;}
._b{width:31.164427px;}
._7{width:41.703120px;}
._11{width:516.504240px;}
._12{width:732.628080px;}
._10{width:765.406072px;}
._14{width:767.555833px;}
._13{width:771.870208px;}
._c{width:775.467901px;}
._5{width:776.915833px;}
._6{width:3758.449757px;}
.fc5{color:rgb(0,0,128);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,205);}
.fc3{color:rgb(66,66,66);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:46.080000px;}
.fs1{font-size:46.800000px;}
.fsd{font-size:53.280000px;}
.fsb{font-size:66.240000px;}
.fsc{font-size:70.007178px;}
.fsa{font-size:72.719399px;}
.fs7{font-size:92.880000px;}
.fse{font-size:98.162239px;}
.fs4{font-size:105.839491px;}
.fs3{font-size:105.840000px;}
.fs11{font-size:112.320000px;}
.fs6{font-size:118.800000px;}
.fs10{font-size:125.556352px;}
.fs2{font-size:132.480000px;}
.fs8{font-size:132.480366px;}
.fs9{font-size:140.014356px;}
.fsf{font-size:159.120000px;}
.fs0{font-size:185.040000px;}
.y0{bottom:0.000000px;}
.y133{bottom:27.546473px;}
.y10{bottom:33.838027px;}
.y11{bottom:33.840010px;}
.y3{bottom:34.017198px;}
.y12f{bottom:56.702224px;}
.y87{bottom:59.582496px;}
.yaa{bottom:61.197106px;}
.yc0{bottom:64.269332px;}
.y28{bottom:64.802443px;}
.y10d{bottom:70.919448px;}
.y3a{bottom:74.336400px;}
.yf6{bottom:76.676282px;}
.yc{bottom:82.444028px;}
.y11c{bottom:85.678689px;}
.y86{bottom:88.381371px;}
.y12e{bottom:88.733685px;}
.ya9{bottom:88.919540px;}
.y27{bottom:89.821979px;}
.ybf{bottom:97.565989px;}
.y74{bottom:102.592979px;}
.yc8{bottom:106.562373px;}
.y4c{bottom:106.919528px;}
.y39{bottom:110.162055px;}
.yf4{bottom:111.062678px;}
.yf{bottom:111.245764px;}
.y10c{bottom:112.497760px;}
.yb{bottom:114.116651px;}
.y26{bottom:114.841515px;}
.ya8{bottom:116.636871px;}
.y85{bottom:117.004275px;}
.y47{bottom:117.723621px;}
.yf5{bottom:118.800782px;}
.y12d{bottom:120.958203px;}
.yf3{bottom:126.900990px;}
.y11b{bottom:127.264229px;}
.y73{bottom:127.627042px;}
.ybe{bottom:131.037873px;}
.y4b{bottom:138.605394px;}
.y25{bottom:139.861051px;}
.yc7{bottom:139.862260px;}
.y5a{bottom:143.275623px;}
.ya7{bottom:144.359356px;}
.ye{bottom:144.545651px;}
.y38{bottom:145.792790px;}
.y84{bottom:145.803150px;}
.ya{bottom:145.974514px;}
.y72{bottom:152.646578px;}
.y46{bottom:153.357239px;}
.y10b{bottom:154.257479px;}
.yf1{bottom:163.618468px;}
.ya6{bottom:164.158885px;}
.ybd{bottom:164.337760px;}
.y11a{bottom:169.015232px;}
.y4a{bottom:170.463257px;}
.yf2{bottom:171.360718px;}
.yc6{bottom:173.334144px;}
.y83{bottom:174.596871px;}
.y59{bottom:176.575510px;}
.y9{bottom:177.660380px;}
.y71{bottom:177.664696px;}
.yd{bottom:178.017616px;}
.yf0{bottom:179.460927px;}
.y37{bottom:181.625773px;}
.y12c{bottom:185.407194px;}
.y45{bottom:189.180010px;}
.y24{bottom:189.901611px;}
.y82{bottom:194.220481px;}
.ya5{bottom:195.835040px;}
.y10a{bottom:196.020103px;}
.y70{bottom:202.684232px;}
.yc5{bottom:206.634032px;}
.yef{bottom:207.357969px;}
.y58{bottom:210.060637px;}
.y119{bottom:210.776439px;}
.y8{bottom:211.317503px;}
.ybc{bottom:214.373630px;}
.y23{bottom:214.921146px;}
.yed{bottom:215.279239px;}
.y36{bottom:217.265756px;}
.y12b{bottom:217.438655px;}
.ye6{bottom:217.980677px;}
.yee{bottom:223.196282px;}
.y7e{bottom:224.462199px;}
.y44{bottom:224.999299px;}
.y6f{bottom:227.703768px;}
.y13d{bottom:228.423884px;}
.y81{bottom:228.955040px;}
.yb7{bottom:232.743150px;}
.y49{bottom:233.993702px;}
.y109{bottom:237.781239px;}
.y22{bottom:239.940753px;}
.yec{bottom:242.456177px;}
.y57{bottom:243.360565px;}
.yf9{bottom:245.881434px;}
.ybb{bottom:247.858757px;}
.y12a{bottom:249.663173px;}
.yea{bottom:250.198427px;}
.yb6{bottom:252.356400px;}
.y6e{bottom:252.723375px;}
.y35{bottom:253.085044px;}
.y80{bottom:257.583150px;}
.yeb{bottom:258.302823px;}
.y43{bottom:260.641751px;}
.y21{bottom:264.960289px;}
.y7d{bottom:264.968491px;}
.y48{bottom:265.679569px;}
.y13c{bottom:276.121279px;}
.y56{bottom:276.845692px;}
.ye9{bottom:277.383739px;}
.y6d{bottom:277.742910px;}
.yba{bottom:281.158644px;}
.ye7{bottom:285.300782px;}
.yb5{bottom:285.476400px;}
.y2{bottom:285.840663px;}
.y7f{bottom:286.376871px;}
.y34{bottom:288.894097px;}
.ye8{bottom:293.222052px;}
.y118{bottom:294.124603px;}
.y42{bottom:296.462593px;}
.yb4{bottom:305.100010px;}
.y7c{bottom:305.286181px;}
.y55{bottom:310.145579px;}
.y20{bottom:314.999396px;}
.y108{bottom:321.117853px;}
.ye5{bottom:321.298114px;}
.y9b{bottom:324.361371px;}
.y6c{bottom:327.781982px;}
.y117{bottom:335.874153px;}
.ye4{bottom:337.144719px;}
.yb3{bottom:338.220010px;}
.y1f{bottom:340.018932px;}
.y135{bottom:341.460720px;}
.y54{bottom:343.445507px;}
.y7b{bottom:345.782503px;}
.y129{bottom:346.143625px;}
.y9a{bottom:351.178231px;}
.y6b{bottom:352.801553px;}
.y33{bottom:360.360722px;}
.y107{bottom:362.879025px;}
.y1e{bottom:365.038468px;}
.yb2{bottom:367.018885px;}
.y41{bottom:367.912078px;}
.y13b{bottom:371.519569px;}
.y134{bottom:375.297129px;}
.y53{bottom:376.917391px;}
.y116{bottom:377.635325px;}
.y6a{bottom:377.821089px;}
.y128{bottom:378.175041px;}
.y99{bottom:378.179299px;}
.y132{bottom:381.418591px;}
.yfd{bottom:383.395688px;}
.y7a{bottom:386.101277px;}
.yb1{bottom:386.641434px;}
.ye3{bottom:396.718427px;}
.y1{bottom:402.670280px;}
.y69{bottom:402.840625px;}
.y106{bottom:404.454432px;}
.y98{bottom:405.362553px;}
.y52{bottom:410.217319px;}
.y127{bottom:410.399559px;}
.ye2{bottom:412.560927px;}
.y1d{bottom:415.077575px;}
.y13a{bottom:419.040803px;}
.y115{bottom:419.222353px;}
.yb0{bottom:419.761434px;}
.y97{bottom:424.977875px;}
.y79{bottom:426.606485px;}
.y68{bottom:427.860196px;}
.y32{bottom:431.817112px;}
.ye1{bottom:439.742052px;}
.y1c{bottom:440.097146px;}
.y126{bottom:442.624077px;}
.y131{bottom:442.801430px;}
.yfc{bottom:442.978587px;}
.y105{bottom:446.215603px;}
.yaf{bottom:448.203265px;}
.y67{bottom:452.879732px;}
.y96{bottom:457.923977px;}
.y1b{bottom:465.302446px;}
.ye0{bottom:466.918990px;}
.y78{bottom:466.925286px;}
.y31{bottom:467.642327px;}
.y125{bottom:474.833730px;}
.y40{bottom:475.194635px;}
.yae{bottom:475.560366px;}
.y66{bottom:477.899303px;}
.y130{bottom:478.976848px;}
.ydf{bottom:482.757302px;}
.y95{bottom:485.098943px;}
.y104{bottom:487.976775px;}
.y1a{bottom:490.321982px;}
.yad{bottom:495.183977px;}
.yfb{bottom:502.557521px;}
.y114{bottom:502.744696px;}
.y65{bottom:502.918839px;}
.y30{bottom:503.273527px;}
.y77{bottom:507.421608px;}
.ydd{bottom:510.662719px;}
.y3f{bottom:510.841460px;}
.y94{bottom:512.100010px;}
.y139{bottom:514.441045px;}
.yac{bottom:514.981460px;}
.y19{bottom:515.341553px;}
.yde{bottom:518.581468px;}
.ydc{bottom:526.500177px;}
.y64{bottom:528.124139px;}
.y103{bottom:529.563803px;}
.yab{bottom:538.562883px;}
.y2f{bottom:539.106045px;}
.y124{bottom:542.876419px;}
.y113{bottom:544.320103px;}
.y3e{bottom:546.658354px;}
.y76{bottom:547.740382px;}
.y63{bottom:553.143710px;}
.yda{bottom:554.398927px;}
.ya4{bottom:555.122883px;}
.yfa{bottom:562.144333px;}
.ydb{bottom:562.317677px;}
.y18{bottom:565.380625px;}
.yd9{bottom:570.243073px;}
.y102{bottom:571.324975px;}
.y93{bottom:573.297494px;}
.ya3{bottom:574.738205px;}
.y2e{bottom:574.746494px;}
.y123{bottom:574.922721px;}
.ycf{bottom:578.521448px;}
.y75{bottom:579.244447px;}
.y3d{bottom:582.480010px;}
.y51{bottom:583.738561px;}
.y112{bottom:586.081275px;}
.y17{bottom:590.400196px;}
.y92{bottom:597.963621px;}
.yd8{bottom:598.321635px;}
.y62{bottom:603.182800px;}
.yd6{bottom:606.060552px;}
.y122{bottom:607.147217px;}
.ya2{bottom:609.663239px;}
.y138{bottom:609.844788px;}
.y2d{bottom:610.565782px;}
.y101{bottom:613.074525px;}
.yd7{bottom:614.159115px;}
.y16{bottom:615.419732px;}
.y7{bottom:615.782172px;}
.y3c{bottom:618.122047px;}
.y91{bottom:622.621460px;}
.y111{bottom:627.842446px;}
.y61{bottom:628.202353px;}
.ya1{bottom:637.020366px;}
.y15{bottom:640.439286px;}
.yc4{bottom:640.804333px;}
.y50{bottom:643.321460px;}
.yd5{bottom:644.402177px;}
.y2b{bottom:646.374394px;}
.y2c{bottom:646.385044px;}
.y90{bottom:647.097138px;}
.yd3{bottom:652.320906px;}
.y60{bottom:653.221907px;}
.y100{bottom:654.835696px;}
.ya0{bottom:656.643977px;}
.y137{bottom:657.360530px;}
.yd4{bottom:660.239656px;}
.y14{bottom:665.458839px;}
.y110{bottom:669.603618px;}
.y8f{bottom:671.763239px;}
.y121{bottom:674.996870px;}
.y6{bottom:675.365044px;}
.y5f{bottom:678.241443px;}
.yd2{bottom:684.182344px;}
.yf8{bottom:686.874252px;}
.y3b{bottom:689.573527px;}
.y9f{bottom:691.560735px;}
.yd0{bottom:692.101094px;}
.y8e{bottom:696.238930px;}
.yd1{bottom:700.019823px;}
.yc3{bottom:700.387205px;}
.y4f{bottom:702.904333px;}
.y5e{bottom:703.260996px;}
.y120{bottom:707.043162px;}
.y10f{bottom:711.179025px;}
.y8d{bottom:716.036413px;}
.y13{bottom:717.126313px;}
.y2a{bottom:717.841447px;}
.y9e{bottom:718.743977px;}
.y5d{bottom:728.280550px;}
.ycd{bottom:730.442708px;}
.y5{bottom:734.947930px;}
.y9d{bottom:738.359286px;}
.yce{bottom:738.361448px;}
.y11f{bottom:739.252816px;}
.yff{bottom:742.681447px;}
.y8c{bottom:744.122172px;}
.ycc{bottom:746.280188px;}
.yf7{bottom:746.457125px;}
.y12{bottom:749.335955px;}
.y29{bottom:753.478574px;}
.yc2{bottom:759.953527px;}
.y4e{bottom:762.487205px;}
.y136{bottom:764.093527px;}
.y8b{bottom:768.780010px;}
.y11e{bottom:771.655515px;}
.y9c{bottom:773.276044px;}
.y5c{bottom:779.941806px;}
.yc9{bottom:789.123970px;}
.yca{bottom:789.297849px;}
.ycb{bottom:793.263970px;}
.y8a{bottom:793.437849px;}
.y4{bottom:794.514252px;}
.yfe{bottom:802.264333px;}
.y5b{bottom:812.166313px;}
.y10e{bottom:817.019292px;}
.y89{bottom:817.921809px;}
.yc1{bottom:819.536413px;}
.y4d{bottom:822.053527px;}
.yb9{bottom:822.605861px;}
.y11d{bottom:842.041719px;}
.y88{bottom:842.579651px;}
.yb8{bottom:860.220911px;}
.h1c{height:40.177800px;}
.h8{height:40.227840px;}
.h4{height:40.856400px;}
.h21{height:45.740880px;}
.h22{height:46.859760px;}
.h1e{height:56.867040px;}
.h2d{height:57.423591px;}
.h1d{height:58.258080px;}
.h1f{height:60.101162px;}
.h1a{height:62.848309px;}
.h1b{height:63.132369px;}
.hb{height:79.737480px;}
.h27{height:80.294760px;}
.h26{height:81.084240px;}
.ha{height:81.687960px;}
.h23{height:84.272282px;}
.h7{height:90.863640px;}
.h2e{height:91.471370px;}
.h32{height:91.485634px;}
.h2f{height:91.498680px;}
.h31{height:91.502290px;}
.h30{height:91.507528px;}
.h20{height:93.086280px;}
.h24{height:96.449329px;}
.h2c{height:97.100640px;}
.h2a{height:102.702600px;}
.h29{height:103.712400px;}
.h9{height:104.484600px;}
.h2b{height:108.543466px;}
.h6{height:113.734080px;}
.hd{height:113.776683px;}
.h25{height:114.528960px;}
.h5{height:115.655040px;}
.h12{height:116.461380px;}
.hf{height:116.463241px;}
.h17{height:116.488542px;}
.h13{height:116.490694px;}
.h10{height:116.492454px;}
.h18{height:116.494758px;}
.h14{height:116.496521px;}
.hc{height:116.516160px;}
.h15{height:116.525635px;}
.h19{height:116.530092px;}
.h16{height:116.554950px;}
.h11{height:116.557102px;}
.he{height:120.202325px;}
.h28{height:138.911760px;}
.h2{height:158.856840px;}
.h3{height:162.742680px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w2{width:583.739308px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x8{left:51.663151px;}
.x30{left:62.277661px;}
.x4{left:67.134242px;}
.x23{left:68.227201px;}
.x3{left:69.480448px;}
.x1{left:72.905761px;}
.x31{left:75.232081px;}
.x10{left:82.435678px;}
.x33{left:85.863598px;}
.x36{left:87.481350px;}
.xb{left:89.092799px;}
.x35{left:91.624501px;}
.x21{left:94.501890px;}
.xe{left:96.478557px;}
.xf{left:100.084952px;}
.x2f{left:107.818740px;}
.x34{left:109.627195px;}
.x11{left:111.780267px;}
.x3a{left:142.018564px;}
.x3b{left:179.636938px;}
.x1a{left:217.797127px;}
.x28{left:219.776034px;}
.x9{left:228.064322px;}
.x18{left:232.022161px;}
.x1c{left:265.498195px;}
.xa{left:371.341449px;}
.x1b{left:394.558551px;}
.x2{left:397.257750px;}
.x17{left:405.363966px;}
.x2e{left:414.898000px;}
.x24{left:422.460370px;}
.x2d{left:428.217188px;}
.x27{left:431.280356px;}
.x6{left:594.000555px;}
.x37{left:603.177289px;}
.x32{left:625.680000px;}
.x7{left:628.020000px;}
.x39{left:642.960452px;}
.x1e{left:684.724970px;}
.x2c{left:693.181125px;}
.x22{left:696.056754px;}
.x2b{left:706.501125px;}
.x26{left:767.157515px;}
.x20{left:801.902485px;}
.x19{left:822.602485px;}
.x14{left:830.332270px;}
.x1d{left:880.919530px;}
.xc{left:893.693492px;}
.x38{left:963.718594px;}
.x1f{left:970.736810px;}
.x2a{left:995.037333px;}
.x25{left:1001.880000px;}
.x29{left:1008.357333px;}
.xd{left:1046.871470px;}
.x13{left:1086.652126px;}
.x12{left:1114.192668px;}
.x15{left:1126.254150px;}
.x16{left:1131.108694px;}
.x5{left:1138.859747px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:7.997978pt;}
.ls5{letter-spacing:8.634204pt;}
.ls3{letter-spacing:9.270720pt;}
.ls1{letter-spacing:91.212761pt;}
.ls6{letter-spacing:99.552461pt;}
.ls2{letter-spacing:117.473235pt;}
.ws5{word-spacing:-27.256128pt;}
.ws4{word-spacing:-25.789440pt;}
.ws4a{word-spacing:-24.494080pt;}
.ws4c{word-spacing:-23.995214pt;}
.ws7{word-spacing:-23.905280pt;}
.ws4b{word-spacing:-22.704000pt;}
.ws4e{word-spacing:-21.964800pt;}
.ws1{word-spacing:-20.603520pt;}
.wsf{word-spacing:-18.080640pt;}
.ws4f{word-spacing:-17.781120pt;}
.wse{word-spacing:-16.759680pt;}
.ws10{word-spacing:-13.121812pt;}
.ws12{word-spacing:-12.894720pt;}
.ws11{word-spacing:-11.952640pt;}
.ws1f{word-spacing:-10.371840pt;}
.ws18{word-spacing:-9.614080pt;}
.ws2{word-spacing:-9.110400pt;}
.ws16{word-spacing:-8.652800pt;}
.ws47{word-spacing:-8.519680pt;}
.ws24{word-spacing:-2.444960pt;}
.ws36{word-spacing:-2.439034pt;}
.ws20{word-spacing:-1.870701pt;}
.ws1e{word-spacing:-1.817382pt;}
.ws30{word-spacing:-1.690276pt;}
.ws21{word-spacing:-1.468218pt;}
.ws49{word-spacing:-1.444810pt;}
.ws33{word-spacing:-1.420804pt;}
.ws3f{word-spacing:-1.373452pt;}
.ws2f{word-spacing:-1.370538pt;}
.ws2a{word-spacing:-1.284571pt;}
.ws25{word-spacing:-1.231476pt;}
.ws13{word-spacing:-1.206968pt;}
.ws2e{word-spacing:-1.189862pt;}
.ws19{word-spacing:-1.136698pt;}
.ws1b{word-spacing:-1.068618pt;}
.ws29{word-spacing:-1.015280pt;}
.ws26{word-spacing:-1.000422pt;}
.ws3a{word-spacing:-0.970880pt;}
.ws2c{word-spacing:-0.923636pt;}
.ws1a{word-spacing:-0.882138pt;}
.ws35{word-spacing:-0.601053pt;}
.ws39{word-spacing:-0.592020pt;}
.ws1c{word-spacing:-0.586022pt;}
.ws27{word-spacing:-0.571280pt;}
.ws3c{word-spacing:-0.568317pt;}
.ws1d{word-spacing:-0.538778pt;}
.ws38{word-spacing:-0.524036pt;}
.ws23{word-spacing:-0.523891pt;}
.ws28{word-spacing:-0.497164pt;}
.ws2d{word-spacing:-0.494436pt;}
.ws32{word-spacing:-0.482480pt;}
.ws40{word-spacing:-0.408596pt;}
.ws44{word-spacing:-0.390836pt;}
.ws3b{word-spacing:-0.236788pt;}
.ws37{word-spacing:-0.213116pt;}
.ws46{word-spacing:-0.082560pt;}
.ws43{word-spacing:-0.071040pt;}
.ws31{word-spacing:-0.067953pt;}
.ws0{word-spacing:0.000000pt;}
.ws22{word-spacing:0.023564pt;}
.ws3e{word-spacing:0.050204pt;}
.ws34{word-spacing:0.213124pt;}
.ws42{word-spacing:0.236784pt;}
.ws3d{word-spacing:0.358287pt;}
.ws17{word-spacing:0.378880pt;}
.ws2b{word-spacing:0.378892pt;}
.ws45{word-spacing:0.390604pt;}
.ws41{word-spacing:0.494320pt;}
.ws48{word-spacing:0.577958pt;}
.ws15{word-spacing:0.651576pt;}
.ws14{word-spacing:0.706416pt;}
.ws4d{word-spacing:1.531174pt;}
.ws8{word-spacing:1.648605pt;}
.wsd{word-spacing:2.472982pt;}
.wsa{word-spacing:2.531890pt;}
.ws3{word-spacing:3.002851pt;}
.ws9{word-spacing:3.002959pt;}
.wsb{word-spacing:3.120798pt;}
.wsc{word-spacing:3.650539pt;}
.ws6{word-spacing:5.181472pt;}
._4{margin-left:-3442.429804pt;}
._1a{margin-left:-2594.754264pt;}
._23{margin-left:-2029.322123pt;}
._1c{margin-left:-1754.844756pt;}
._17{margin-left:-1739.179978pt;}
._1d{margin-left:-1724.830196pt;}
._18{margin-left:-1651.747784pt;}
._1e{margin-left:-1627.812764pt;}
._1b{margin-left:-1608.734036pt;}
._24{margin-left:-1456.038881pt;}
._d{margin-left:-1390.013326pt;}
._e{margin-left:-1372.756451pt;}
._22{margin-left:-3.436160pt;}
._3{margin-left:-2.355200pt;}
._0{margin-left:-0.986880pt;}
._1{width:1.315840pt;}
._2{width:2.796160pt;}
._21{width:4.143360pt;}
._19{width:7.925920pt;}
._15{width:9.333124pt;}
._16{width:10.639796pt;}
._f{width:13.537472pt;}
._20{width:17.012480pt;}
._1f{width:19.484160pt;}
._a{width:24.227801pt;}
._9{width:25.671659pt;}
._8{width:26.633684pt;}
._b{width:27.701713pt;}
._7{width:37.069440pt;}
._11{width:459.114880pt;}
._12{width:651.224960pt;}
._10{width:680.360953pt;}
._14{width:682.271851pt;}
._13{width:686.106851pt;}
._c{width:689.304801pt;}
._5{width:690.591851pt;}
._6{width:3340.844229pt;}
.fs5{font-size:40.960000pt;}
.fs1{font-size:41.600000pt;}
.fsd{font-size:47.360000pt;}
.fsb{font-size:58.880000pt;}
.fsc{font-size:62.228603pt;}
.fsa{font-size:64.639466pt;}
.fs7{font-size:82.560000pt;}
.fse{font-size:87.255323pt;}
.fs4{font-size:94.079547pt;}
.fs3{font-size:94.080000pt;}
.fs11{font-size:99.840000pt;}
.fs6{font-size:105.600000pt;}
.fs10{font-size:111.605646pt;}
.fs2{font-size:117.760000pt;}
.fs8{font-size:117.760325pt;}
.fs9{font-size:124.457205pt;}
.fsf{font-size:141.440000pt;}
.fs0{font-size:164.480000pt;}
.y0{bottom:0.000000pt;}
.y133{bottom:24.485754pt;}
.y10{bottom:30.078247pt;}
.y11{bottom:30.080009pt;}
.y3{bottom:30.237509pt;}
.y12f{bottom:50.401977pt;}
.y87{bottom:52.962218pt;}
.yaa{bottom:54.397427pt;}
.yc0{bottom:57.128295pt;}
.y28{bottom:57.602172pt;}
.y10d{bottom:63.039509pt;}
.y3a{bottom:66.076800pt;}
.yf6{bottom:68.156695pt;}
.yc{bottom:73.283581pt;}
.y11c{bottom:76.158835pt;}
.y86{bottom:78.561218pt;}
.y12e{bottom:78.874387pt;}
.ya9{bottom:79.039591pt;}
.y27{bottom:79.841759pt;}
.ybf{bottom:86.725324pt;}
.y74{bottom:91.193759pt;}
.yc8{bottom:94.722109pt;}
.y4c{bottom:95.039581pt;}
.y39{bottom:97.921827pt;}
.yf4{bottom:98.722380pt;}
.yf{bottom:98.885124pt;}
.y10c{bottom:99.998009pt;}
.yb{bottom:101.437023pt;}
.y26{bottom:102.081347pt;}
.ya8{bottom:103.677218pt;}
.y85{bottom:104.003800pt;}
.y47{bottom:104.643218pt;}
.yf5{bottom:105.600695pt;}
.y12d{bottom:107.518403pt;}
.yf3{bottom:112.800880pt;}
.y11b{bottom:113.123759pt;}
.y73{bottom:113.446259pt;}
.ybe{bottom:116.478109pt;}
.y4b{bottom:123.204795pt;}
.y25{bottom:124.320934pt;}
.yc7{bottom:124.322009pt;}
.y5a{bottom:127.356109pt;}
.ya7{bottom:128.319427pt;}
.ye{bottom:128.485023pt;}
.y38{bottom:129.593591pt;}
.y84{bottom:129.602800pt;}
.ya{bottom:129.755124pt;}
.y72{bottom:135.685847pt;}
.y46{bottom:136.317546pt;}
.y10b{bottom:137.117759pt;}
.yf1{bottom:145.438638pt;}
.ya6{bottom:145.919009pt;}
.ybd{bottom:146.078009pt;}
.y11a{bottom:150.235762pt;}
.y4a{bottom:151.522895pt;}
.yf2{bottom:152.320638pt;}
.yc6{bottom:154.074795pt;}
.y83{bottom:155.197218pt;}
.y59{bottom:156.956009pt;}
.y9{bottom:157.920338pt;}
.y71{bottom:157.924174pt;}
.yd{bottom:158.237881pt;}
.yf0{bottom:159.520824pt;}
.y37{bottom:161.445132pt;}
.y12c{bottom:164.806395pt;}
.y45{bottom:168.160009pt;}
.y24{bottom:168.801432pt;}
.y82{bottom:172.640427pt;}
.ya5{bottom:174.075591pt;}
.y10a{bottom:174.240092pt;}
.y70{bottom:180.163762pt;}
.yc5{bottom:183.674695pt;}
.yef{bottom:184.318195pt;}
.y58{bottom:186.720566pt;}
.y119{bottom:187.356835pt;}
.y8{bottom:187.837781pt;}
.ybc{bottom:190.554338pt;}
.y23{bottom:191.041019pt;}
.yed{bottom:191.359324pt;}
.y36{bottom:193.125117pt;}
.y12b{bottom:193.278804pt;}
.ye6{bottom:193.760602pt;}
.yee{bottom:198.396695pt;}
.y7e{bottom:199.521955pt;}
.y44{bottom:199.999377pt;}
.y6f{bottom:202.403349pt;}
.y13d{bottom:203.043452pt;}
.y81{bottom:203.515591pt;}
.yb7{bottom:206.882800pt;}
.y49{bottom:207.994402pt;}
.y109{bottom:211.361102pt;}
.y22{bottom:213.280669pt;}
.yec{bottom:215.516602pt;}
.y57{bottom:216.320502pt;}
.yf9{bottom:218.561275pt;}
.ybb{bottom:220.318895pt;}
.y12a{bottom:221.922821pt;}
.yea{bottom:222.398602pt;}
.yb6{bottom:224.316800pt;}
.y6e{bottom:224.643000pt;}
.y35{bottom:224.964484pt;}
.y80{bottom:228.962800pt;}
.yeb{bottom:229.602509pt;}
.y43{bottom:231.681556pt;}
.y21{bottom:235.520257pt;}
.y7d{bottom:235.527547pt;}
.y48{bottom:236.159617pt;}
.y13c{bottom:245.441137pt;}
.y56{bottom:246.085059pt;}
.ye9{bottom:246.563324pt;}
.y6d{bottom:246.882587pt;}
.yba{bottom:249.918795pt;}
.ye7{bottom:253.600695pt;}
.yb5{bottom:253.756800pt;}
.y2{bottom:254.080589pt;}
.y7f{bottom:254.557218pt;}
.y34{bottom:256.794753pt;}
.ye8{bottom:260.641824pt;}
.y118{bottom:261.444092pt;}
.y42{bottom:263.522305pt;}
.yb4{bottom:271.200009pt;}
.y7c{bottom:271.365494pt;}
.y55{bottom:275.684959pt;}
.y20{bottom:279.999463pt;}
.y108{bottom:285.438092pt;}
.ye5{bottom:285.598324pt;}
.y9b{bottom:288.321218pt;}
.y6c{bottom:291.361762pt;}
.y117{bottom:298.554803pt;}
.ye4{bottom:299.684195pt;}
.yb3{bottom:300.640009pt;}
.y1f{bottom:302.239051pt;}
.y135{bottom:303.520640pt;}
.y54{bottom:305.284895pt;}
.y7b{bottom:307.362225pt;}
.y129{bottom:307.683222pt;}
.y9a{bottom:312.158427pt;}
.y6b{bottom:313.601381pt;}
.y33{bottom:320.320642pt;}
.y107{bottom:322.559133pt;}
.y1e{bottom:324.478638pt;}
.yb2{bottom:326.239009pt;}
.y41{bottom:327.032959pt;}
.y13b{bottom:330.239617pt;}
.y134{bottom:333.597448pt;}
.y53{bottom:335.037681pt;}
.y116{bottom:335.675844pt;}
.y6a{bottom:335.840968pt;}
.y128{bottom:336.155592pt;}
.y99{bottom:336.159377pt;}
.y132{bottom:339.038748pt;}
.yfd{bottom:340.796167pt;}
.y7a{bottom:343.201135pt;}
.yb1{bottom:343.681275pt;}
.ye3{bottom:352.638602pt;}
.y1{bottom:357.929138pt;}
.y69{bottom:358.080555pt;}
.y106{bottom:359.515051pt;}
.y98{bottom:360.322269pt;}
.y52{bottom:364.637617pt;}
.y127{bottom:364.799608pt;}
.ye2{bottom:366.720824pt;}
.y1d{bottom:368.957844pt;}
.y13a{bottom:372.480714pt;}
.y115{bottom:372.642092pt;}
.yb0{bottom:373.121275pt;}
.y97{bottom:377.758111pt;}
.y79{bottom:379.205764pt;}
.y68{bottom:380.320174pt;}
.y32{bottom:383.837433pt;}
.ye1{bottom:390.881824pt;}
.y1c{bottom:391.197463pt;}
.y126{bottom:393.443624pt;}
.y131{bottom:393.601271pt;}
.yfc{bottom:393.758744pt;}
.y105{bottom:396.636092pt;}
.yaf{bottom:398.402902pt;}
.y67{bottom:402.559762pt;}
.y96{bottom:407.043535pt;}
.y1b{bottom:413.602174pt;}
.ye0{bottom:415.039102pt;}
.y78{bottom:415.044698pt;}
.y31{bottom:415.682068pt;}
.y125{bottom:422.074427pt;}
.y40{bottom:422.395231pt;}
.yae{bottom:422.720326pt;}
.y66{bottom:424.799381pt;}
.y130{bottom:425.757198pt;}
.ydf{bottom:429.117602pt;}
.y95{bottom:431.199060pt;}
.y104{bottom:433.757133pt;}
.y1a{bottom:435.841762pt;}
.yad{bottom:440.163535pt;}
.yfb{bottom:446.717796pt;}
.y114{bottom:446.884174pt;}
.y65{bottom:447.038968pt;}
.y30{bottom:447.354247pt;}
.y77{bottom:451.041429pt;}
.ydd{bottom:453.922417pt;}
.y3f{bottom:454.081297pt;}
.y94{bottom:455.200009pt;}
.y139{bottom:457.280929pt;}
.yac{bottom:457.761297pt;}
.y19{bottom:458.081381pt;}
.yde{bottom:460.961305pt;}
.ydc{bottom:468.000158pt;}
.y64{bottom:469.443679pt;}
.y103{bottom:470.723381pt;}
.yab{bottom:478.722563pt;}
.y2f{bottom:479.205374pt;}
.y124{bottom:482.556817pt;}
.y113{bottom:483.840092pt;}
.y3e{bottom:485.918537pt;}
.y76{bottom:486.880339pt;}
.y63{bottom:491.683298pt;}
.yda{bottom:492.799046pt;}
.ya4{bottom:493.442563pt;}
.yfa{bottom:499.683851pt;}
.ydb{bottom:499.837935pt;}
.y18{bottom:502.560555pt;}
.yd9{bottom:506.882732pt;}
.y102{bottom:507.844422pt;}
.y93{bottom:509.597772pt;}
.ya3{bottom:510.878405pt;}
.y2e{bottom:510.885772pt;}
.y123{bottom:511.042419pt;}
.ycf{bottom:514.241287pt;}
.y75{bottom:514.883953pt;}
.y3d{bottom:517.760009pt;}
.y51{bottom:518.878721pt;}
.y112{bottom:520.961133pt;}
.y17{bottom:524.800174pt;}
.y92{bottom:531.523218pt;}
.yd8{bottom:531.841454pt;}
.y62{bottom:536.162489pt;}
.yd6{bottom:538.720491pt;}
.y122{bottom:539.686415pt;}
.ya2{bottom:541.922879pt;}
.y138{bottom:542.084256pt;}
.y2d{bottom:542.725139pt;}
.y101{bottom:544.955133pt;}
.yd7{bottom:545.919213pt;}
.y16{bottom:547.039762pt;}
.y7{bottom:547.361930pt;}
.y3c{bottom:549.441820pt;}
.y91{bottom:553.441297pt;}
.y111{bottom:558.082174pt;}
.y61{bottom:558.402092pt;}
.ya1{bottom:566.240326pt;}
.y15{bottom:569.279365pt;}
.yc4{bottom:569.603851pt;}
.y50{bottom:571.841297pt;}
.yd5{bottom:572.801935pt;}
.y2b{bottom:574.555016pt;}
.y2c{bottom:574.564484pt;}
.y90{bottom:575.197456pt;}
.yd3{bottom:579.840806pt;}
.y60{bottom:580.641695pt;}
.y100{bottom:582.076174pt;}
.ya0{bottom:583.683535pt;}
.y137{bottom:584.320471pt;}
.yd4{bottom:586.879694pt;}
.y14{bottom:591.518968pt;}
.y110{bottom:595.203216pt;}
.y8f{bottom:597.122879pt;}
.y121{bottom:599.997218pt;}
.y6{bottom:600.324484pt;}
.y5f{bottom:602.881282pt;}
.yd2{bottom:608.162084pt;}
.yf8{bottom:610.554891pt;}
.y3b{bottom:612.954247pt;}
.y9f{bottom:614.720653pt;}
.yd0{bottom:615.200972pt;}
.y8e{bottom:618.879049pt;}
.yd1{bottom:622.239843pt;}
.yc3{bottom:622.566405pt;}
.y4f{bottom:624.803851pt;}
.y5e{bottom:625.120886pt;}
.y120{bottom:628.482811pt;}
.y10f{bottom:632.159133pt;}
.y8d{bottom:636.476812pt;}
.y13{bottom:637.445612pt;}
.y2a{bottom:638.081286pt;}
.y9e{bottom:638.883535pt;}
.y5d{bottom:647.360489pt;}
.ycd{bottom:649.282408pt;}
.y5{bottom:653.287049pt;}
.y9d{bottom:656.319365pt;}
.yce{bottom:656.321287pt;}
.y11f{bottom:657.113614pt;}
.yff{bottom:660.161286pt;}
.y8c{bottom:661.441930pt;}
.ycc{bottom:663.360167pt;}
.yf7{bottom:663.517444pt;}
.y12{bottom:666.076405pt;}
.y29{bottom:669.758732pt;}
.yc2{bottom:675.514247pt;}
.y4e{bottom:677.766405pt;}
.y136{bottom:679.194247pt;}
.y8b{bottom:683.360009pt;}
.y11e{bottom:685.916013pt;}
.y9c{bottom:687.356484pt;}
.y5c{bottom:693.281606pt;}
.yc9{bottom:701.443529pt;}
.yca{bottom:701.598088pt;}
.ycb{bottom:705.123529pt;}
.y8a{bottom:705.278088pt;}
.y4{bottom:706.234891pt;}
.yfe{bottom:713.123851pt;}
.y5b{bottom:721.925612pt;}
.y10e{bottom:726.239371pt;}
.y89{bottom:727.041608pt;}
.yc1{bottom:728.476812pt;}
.y4d{bottom:730.714247pt;}
.yb9{bottom:731.205210pt;}
.y11d{bottom:748.481528pt;}
.y88{bottom:748.959690pt;}
.yb8{bottom:764.640810pt;}
.h1c{height:35.713600pt;}
.h8{height:35.758080pt;}
.h4{height:36.316800pt;}
.h21{height:40.658560pt;}
.h22{height:41.653120pt;}
.h1e{height:50.548480pt;}
.h2d{height:51.043192pt;}
.h1d{height:51.784960pt;}
.h1f{height:53.423255pt;}
.h1a{height:55.865164pt;}
.h1b{height:56.117662pt;}
.hb{height:70.877760pt;}
.h27{height:71.373120pt;}
.h26{height:72.074880pt;}
.ha{height:72.611520pt;}
.h23{height:74.908695pt;}
.h7{height:80.767680pt;}
.h2e{height:81.307884pt;}
.h32{height:81.320564pt;}
.h2f{height:81.332160pt;}
.h31{height:81.335369pt;}
.h30{height:81.340025pt;}
.h20{height:82.743360pt;}
.h24{height:85.732737pt;}
.h2c{height:86.311680pt;}
.h2a{height:91.291200pt;}
.h29{height:92.188800pt;}
.h9{height:92.875200pt;}
.h2b{height:96.483081pt;}
.h6{height:101.096960pt;}
.hd{height:101.134830pt;}
.h25{height:101.803520pt;}
.h5{height:102.804480pt;}
.h12{height:103.521227pt;}
.hf{height:103.522881pt;}
.h17{height:103.545370pt;}
.h13{height:103.547284pt;}
.h10{height:103.548848pt;}
.h18{height:103.550896pt;}
.h14{height:103.552463pt;}
.hc{height:103.569920pt;}
.h15{height:103.578342pt;}
.h19{height:103.582304pt;}
.h16{height:103.604400pt;}
.h11{height:103.606313pt;}
.he{height:106.846511pt;}
.h28{height:123.477120pt;}
.h2{height:141.206080pt;}
.h3{height:144.660160pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w2{width:518.879385pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x8{left:45.922801pt;}
.x30{left:55.357921pt;}
.x4{left:59.674881pt;}
.x23{left:60.646401pt;}
.x3{left:61.760398pt;}
.x1{left:64.805121pt;}
.x31{left:66.872960pt;}
.x10{left:73.276158pt;}
.x33{left:76.323198pt;}
.x36{left:77.761200pt;}
.xb{left:79.193599pt;}
.x35{left:81.444001pt;}
.x21{left:84.001680pt;}
.xe{left:85.758718pt;}
.xf{left:88.964402pt;}
.x2f{left:95.838880pt;}
.x34{left:97.446395pt;}
.x11{left:99.360238pt;}
.x3a{left:126.238723pt;}
.x3b{left:159.677279pt;}
.x1a{left:193.597446pt;}
.x28{left:195.356475pt;}
.x9{left:202.723842pt;}
.x18{left:206.241921pt;}
.x1c{left:235.998395pt;}
.xa{left:330.081288pt;}
.x1b{left:350.718712pt;}
.x2{left:353.118000pt;}
.x17{left:360.323525pt;}
.x2e{left:368.798223pt;}
.x24{left:375.520329pt;}
.x2d{left:380.637500pt;}
.x27{left:383.360316pt;}
.x6{left:528.000493pt;}
.x37{left:536.157590pt;}
.x32{left:556.160000pt;}
.x7{left:558.240000pt;}
.x39{left:571.520402pt;}
.x1e{left:608.644418pt;}
.x2c{left:616.161000pt;}
.x22{left:618.717114pt;}
.x2b{left:628.001000pt;}
.x26{left:681.917791pt;}
.x20{left:712.802209pt;}
.x19{left:731.202209pt;}
.x14{left:738.073129pt;}
.x1d{left:783.039582pt;}
.xc{left:794.394215pt;}
.x38{left:856.638750pt;}
.x1f{left:862.877164pt;}
.x2a{left:884.477629pt;}
.x25{left:890.560000pt;}
.x29{left:896.317629pt;}
.xd{left:930.552418pt;}
.x13{left:965.913001pt;}
.x12{left:990.393482pt;}
.x15{left:1001.114800pt;}
.x16{left:1005.429950pt;}
.x5{left:1012.319775pt;}
}




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