
    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_e5b68693c99dab0297462846.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2b274914d697031eb155727a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.681152;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_68587b771f4318ace55f3fec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_e785ad8dabf378680eaa20a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2e47c7c6ba16b829c3e062e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ca41ad77cac3ea08ecf6666d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_90120e59aa684ec233f22fd9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_63523b4b13629c23e1e126ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5b26b34d1f3e67dbd17f3241.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_cb1fc1db268250b2cb53526a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-31.088400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.791400px;}
.lsc{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.003483px;}
.ls12{letter-spacing:0.062176px;}
.ls15{letter-spacing:0.096327px;}
.ls14{letter-spacing:0.177050px;}
.ls5{letter-spacing:0.177105px;}
.ls2{letter-spacing:0.213100px;}
.ls10{letter-spacing:0.215408px;}
.ls9{letter-spacing:0.224376px;}
.lsb{letter-spacing:0.253420px;}
.ls4{letter-spacing:0.359542px;}
.lsd{letter-spacing:0.450872px;}
.ls8{letter-spacing:0.469111px;}
.ls7{letter-spacing:0.476793px;}
.ls3{letter-spacing:0.626372px;}
.ls13{letter-spacing:0.682854px;}
.ls1{letter-spacing:0.727090px;}
.ls6{letter-spacing:0.892531px;}
.ls11{letter-spacing:0.954398px;}
.lsa{letter-spacing:17.461213px;}
.ls0{letter-spacing:23.155965px;}
.lse{letter-spacing:52.584517px;}
.lsf{letter-spacing:59.560433px;}
.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;}
}
.ws8{word-spacing:-33.880762px;}
.ws4{word-spacing:-22.471380px;}
.ws11{word-spacing:-19.768065px;}
.ws19{word-spacing:-16.895775px;}
.ws16{word-spacing:-15.606286px;}
.wsc{word-spacing:-15.544110px;}
.ws9{word-spacing:-14.868284px;}
.wsa{word-spacing:-14.023494px;}
.ws15{word-spacing:-11.996001px;}
.ws2{word-spacing:-5.206350px;}
.wsf{word-spacing:-4.192582px;}
.wsb{word-spacing:-4.101593px;}
.ws13{word-spacing:-3.958258px;}
.wsd{word-spacing:0.000000px;}
.wse{word-spacing:0.292110px;}
.ws14{word-spacing:0.374193px;}
.ws7{word-spacing:0.414370px;}
.ws12{word-spacing:0.476550px;}
.ws10{word-spacing:0.493626px;}
.ws17{word-spacing:0.545338px;}
.ws5{word-spacing:0.556727px;}
.ws1{word-spacing:0.867044px;}
.ws3{word-spacing:1.161320px;}
.ws6{word-spacing:2.205830px;}
.ws18{word-spacing:48.296188px;}
.ws0{word-spacing:1686.660497px;}
._1{margin-left:-1.227985px;}
._0{width:1.655110px;}
._4{width:2.661502px;}
._3{width:4.053685px;}
._11{width:5.056349px;}
._a{width:6.058149px;}
._b{width:7.375344px;}
._e{width:8.518172px;}
._f{width:9.723177px;}
._12{width:10.814038px;}
._13{width:11.830624px;}
._7{width:12.901614px;}
._15{width:13.938181px;}
._1a{width:15.265812px;}
._9{width:16.739519px;}
._5{width:18.315528px;}
._8{width:19.792741px;}
._10{width:21.951785px;}
._17{width:23.371339px;}
._2{width:25.461655px;}
._16{width:27.215205px;}
._1c{width:28.759972px;}
._d{width:29.785225px;}
._c{width:30.907781px;}
._14{width:32.827271px;}
._6{width:35.685202px;}
._18{width:42.342156px;}
._19{width:47.625404px;}
._1b{width:53.759763px;}
._1d{width:62.375776px;}
._20{width:75.698483px;}
._21{width:77.269114px;}
._22{width:78.546435px;}
._1e{width:102.847967px;}
._1f{width:289.248249px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:45.280680px;}
.fs5{font-size:47.984004px;}
.fs0{font-size:53.390652px;}
.fs1{font-size:56.093976px;}
.fs8{font-size:59.473134px;}
.fsa{font-size:62.176440px;}
.fs7{font-size:67.583100px;}
.fs4{font-size:72.989760px;}
.fs9{font-size:79.072260px;}
.fs3{font-size:89.885520px;}
.fs2{font-size:112.863780px;}
.ya7{bottom:-0.169050px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.891540px;}
.y77{bottom:2.703300px;}
.y7f{bottom:3.210150px;}
.yf3{bottom:4.055100px;}
.y108{bottom:5.068650px;}
.y112{bottom:5.913600px;}
.yd2{bottom:8.785800px;}
.y87{bottom:12.165000px;}
.yb0{bottom:12.333900px;}
.ya6{bottom:15.882000px;}
.y7e{bottom:17.064750px;}
.yf2{bottom:18.078600px;}
.y76{bottom:18.923250px;}
.y107{bottom:19.261050px;}
.y111{bottom:19.599150px;}
.yd1{bottom:24.498900px;}
.y86{bottom:28.384950px;}
.y7d{bottom:30.750300px;}
.yf1{bottom:31.933050px;}
.ya5{bottom:32.101950px;}
.y106{bottom:33.115650px;}
.y110{bottom:33.453750px;}
.yaa{bottom:34.974300px;}
.y75{bottom:35.143200px;}
.yd0{bottom:38.353500px;}
.y7c{bottom:44.435850px;}
.yaf{bottom:44.604750px;}
.y85{bottom:44.604900px;}
.yf0{bottom:45.618600px;}
.y105{bottom:46.801200px;}
.y10f{bottom:47.139300px;}
.ya4{bottom:48.321900px;}
.ya9{bottom:51.194250px;}
.y74{bottom:51.363150px;}
.ycf{bottom:52.039050px;}
.y7b{bottom:58.290450px;}
.yef{bottom:59.473200px;}
.y104{bottom:60.655800px;}
.y84{bottom:60.824850px;}
.ya3{bottom:64.541850px;}
.yce{bottom:65.893500px;}
.y73{bottom:67.414200px;}
.y7a{bottom:71.976000px;}
.yee{bottom:73.158750px;}
.y10e{bottom:74.679450px;}
.y83{bottom:76.875750px;}
.yae{bottom:77.044800px;}
.ya2{bottom:80.761800px;}
.y79{bottom:85.830600px;}
.yed{bottom:86.844300px;}
.y10d{bottom:88.365000px;}
.y82{bottom:93.095700px;}
.yad{bottom:93.264750px;}
.ya1{bottom:96.981750px;}
.yec{bottom:100.698900px;}
.y10c{bottom:102.219450px;}
.y3{bottom:108.808800px;}
.y81{bottom:109.315650px;}
.yac{bottom:109.484550px;}
.y28{bottom:112.187955px;}
.yeb{bottom:114.384450px;}
.y10b{bottom:115.905150px;}
.yea{bottom:128.239050px;}
.y27{bottom:129.083730px;}
.y10a{bottom:129.759600px;}
.y9f{bottom:131.449140px;}
.y12d{bottom:136.011000px;}
.y65{bottom:138.038490px;}
.ye9{bottom:141.924600px;}
.y26{bottom:146.824305px;}
.y9e{bottom:149.358660px;}
.y12c{bottom:153.920460px;}
.ye8{bottom:155.779050px;}
.y64{bottom:155.948010px;}
.y25{bottom:164.733810px;}
.y9d{bottom:167.099160px;}
.y48{bottom:182.474460px;}
.y9c{bottom:185.008710px;}
.y12b{bottom:187.712010px;}
.y63{bottom:193.287660px;}
.y11b{bottom:194.639310px;}
.ycc{bottom:196.328910px;}
.y24{bottom:200.214960px;}
.y9b{bottom:202.749360px;}
.y11a{bottom:212.548860px;}
.ycb{bottom:214.069560px;}
.y47{bottom:216.434910px;}
.y23{bottom:218.124510px;}
.y119{bottom:230.289510px;}
.y62{bottom:230.458410px;}
.yca{bottom:231.978960px;}
.y22{bottom:235.865010px;}
.y9a{bottom:238.399410px;}
.ye6{bottom:239.919960px;}
.y61{bottom:248.198910px;}
.y71{bottom:249.719610px;}
.y21{bottom:253.774560px;}
.y99{bottom:256.139910px;}
.ye5{bottom:257.829510px;}
.y60{bottom:265.939560px;}
.yc9{bottom:267.460110px;}
.y70{bottom:267.629160px;}
.y20{bottom:271.515060px;}
.y98{bottom:274.049460px;}
.ye4{bottom:275.570160px;}
.y102{bottom:280.469910px;}
.y118{bottom:283.680060px;}
.y6f{bottom:285.369660px;}
.y1f{bottom:289.255710px;}
.y97{bottom:291.790110px;}
.ye3{bottom:293.479710px;}
.y101{bottom:298.210410px;}
.y5f{bottom:301.589610px;}
.yc8{bottom:303.110160px;}
.y145{bottom:305.137710px;}
.y1e{bottom:307.165260px;}
.y96{bottom:309.699510px;}
.ye2{bottom:311.220210px;}
.y6e{bottom:315.951060px;}
.y100{bottom:316.119960px;}
.y5e{bottom:319.499160px;}
.y144{bottom:321.357660px;}
.y1d{bottom:324.905760px;}
.y95{bottom:327.440160px;}
.ye1{bottom:329.129760px;}
.yff{bottom:333.860610px;}
.y5d{bottom:337.239660px;}
.y143{bottom:337.577610px;}
.yc7{bottom:338.760360px;}
.y117{bottom:338.929260px;}
.y1c{bottom:342.815310px;}
.y94{bottom:345.180660px;}
.ye0{bottom:346.870260px;}
.y78{bottom:348.099750px;}
.y142{bottom:353.628660px;}
.y5c{bottom:354.980310px;}
.yc6{bottom:356.500860px;}
.y1b{bottom:360.555810px;}
.y93{bottom:363.090210px;}
.ydf{bottom:364.610910px;}
.yfe{bottom:369.510660px;}
.y141{bottom:369.848460px;}
.yc5{bottom:374.410410px;}
.y116{bottom:376.100010px;}
.y1a{bottom:378.296460px;}
.yde{bottom:382.520310px;}
.y140{bottom:386.068560px;}
.yfd{bottom:387.251160px;}
.y5b{bottom:392.319960px;}
.y115{bottom:393.840510px;}
.y92{bottom:398.571360px;}
.ydd{bottom:400.260960px;}
.y13f{bottom:402.288510px;}
.yfc{bottom:405.160710px;}
.y19{bottom:409.722510px;}
.yc4{bottom:410.060460px;}
.y114{bottom:411.581160px;}
.ydc{bottom:418.170510px;}
.y13e{bottom:418.508310px;}
.yfb{bottom:422.901210px;}
.yc3{bottom:427.801110px;}
.y5a{bottom:429.490560px;}
.y13d{bottom:434.728260px;}
.ydb{bottom:435.911010px;}
.yab{bottom:437.140500px;}
.y46{bottom:440.641860px;}
.yfa{bottom:440.810760px;}
.yc2{bottom:445.541610px;}
.y13c{bottom:450.779310px;}
.y18{bottom:451.117260px;}
.y12a{bottom:452.130960px;}
.y45{bottom:458.551410px;}
.yc1{bottom:463.451160px;}
.y113{bottom:464.971710px;}
.y13b{bottom:466.999260px;}
.y17{bottom:467.337210px;}
.yda{bottom:471.392160px;}
.y44{bottom:476.460960px;}
.y129{bottom:486.260460px;}
.y43{bottom:494.201460px;}
.yc0{bottom:498.932310px;}
.y16{bottom:503.156160px;}
.y13a{bottom:506.704260px;}
.ye7{bottom:510.637050px;}
.y42{bottom:511.941960px;}
.y128{bottom:524.951760px;}
.y41{bottom:529.851510px;}
.y109{bottom:540.035700px;}
.y15{bottom:540.158010px;}
.ycd{bottom:545.104500px;}
.y139{bottom:551.309160px;}
.y14{bottom:556.377960px;}
.y40{bottom:562.122510px;}
.y127{bottom:562.291410px;}
.y6d{bottom:565.332660px;}
.y138{bottom:569.725560px;}
.y13{bottom:572.597910px;}
.y3f{bottom:580.031910px;}
.y91{bottom:586.452360px;}
.y137{bottom:588.648810px;}
.y12{bottom:588.817860px;}
.y80{bottom:596.129700px;}
.y3e{bottom:597.772560px;}
.y126{bottom:600.982710px;}
.y90{bottom:604.361910px;}
.y11{bottom:604.868760px;}
.y136{bottom:607.065210px;}
.y125{bottom:618.892260px;}
.y10{bottom:621.088710px;}
.y8f{bottom:622.102410px;}
.y135{bottom:625.819560px;}
.y3d{bottom:631.733160px;}
.y124{bottom:636.632910px;}
.yf{bottom:637.308660px;}
.y8e{bottom:639.843060px;}
.y134{bottom:643.560060px;}
.y3c{bottom:649.642560px;}
.y59{bottom:651.163260px;}
.y123{bottom:654.542310px;}
.y8d{bottom:657.752610px;}
.y133{bottom:661.976460px;}
.y3b{bottom:667.383210px;}
.y58{bottom:669.072810px;}
.y122{bottom:672.282960px;}
.ye{bottom:673.296660px;}
.ybf{bottom:675.493110px;}
.y132{bottom:680.899860px;}
.y3a{bottom:685.292610px;}
.y57{bottom:686.813310px;}
.y8c{bottom:693.233760px;}
.y131{bottom:698.640360px;}
.yf9{bottom:704.722860px;}
.y121{bottom:709.622610px;}
.ybe{bottom:711.143160px;}
.y130{bottom:716.549910px;}
.yd9{bottom:717.563610px;}
.y39{bottom:720.773760px;}
.y56{bottom:722.463360px;}
.ybd{bottom:728.883810px;}
.yd{bottom:732.938760px;}
.y153{bottom:733.783560px;}
.ya8{bottom:733.830300px;}
.y6c{bottom:735.473160px;}
.y38{bottom:738.683310px;}
.y55{bottom:740.204010px;}
.ybc{bottom:746.793360px;}
.yc{bottom:749.496660px;}
.y6b{bottom:753.213660px;}
.y37{bottom:756.423960px;}
.y12f{bottom:757.606560px;}
.y54{bottom:758.113560px;}
.ybb{bottom:764.533860px;}
.y152{bottom:766.054560px;}
.y6a{bottom:771.123210px;}
.yd8{bottom:772.812810px;}
.y36{bottom:774.333360px;}
.y53{bottom:775.854060px;}
.yb{bottom:776.698860px;}
.y151{bottom:782.274510px;}
.y120{bottom:782.443410px;}
.y69{bottom:788.863710px;}
.y35{bottom:792.074010px;}
.y150{bottom:798.494310px;}
.yba{bottom:800.184060px;}
.y12e{bottom:802.211460px;}
.y68{bottom:806.604360px;}
.ya{bottom:807.111210px;}
.yd7{bottom:809.983560px;}
.y52{bottom:811.504110px;}
.y14f{bottom:814.714260px;}
.yf8{bottom:817.079760px;}
.y11f{bottom:817.924560px;}
.y9{bottom:823.669110px;}
.y67{bottom:824.513910px;}
.yd6{bottom:827.724060px;}
.y51{bottom:829.413660px;}
.y34{bottom:829.920510px;}
.y8b{bottom:832.623810px;}
.yb9{bottom:841.240710px;}
.yd5{bottom:845.464710px;}
.y14e{bottom:846.985260px;}
.y50{bottom:847.154160px;}
.y8a{bottom:850.364460px;}
.y8{bottom:850.871310px;}
.y11e{bottom:855.264210px;}
.y66{bottom:858.305460px;}
.yf7{bottom:861.684660px;}
.y14d{bottom:863.205210px;}
.yd4{bottom:863.374110px;}
.y33{bottom:866.584410px;}
.y89{bottom:868.274010px;}
.yf6{bottom:879.594060px;}
.yb8{bottom:881.114760px;}
.y7{bottom:883.649160px;}
.y32{bottom:884.324910px;}
.y4f{bottom:888.210960px;}
.y72{bottom:891.805800px;}
.y11d{bottom:892.434960px;}
.y14c{bottom:895.645110px;}
.yf5{bottom:897.334710px;}
.yb7{bottom:899.024160px;}
.y31{bottom:902.234460px;}
.y88{bottom:903.755010px;}
.y11c{bottom:910.344510px;}
.y14b{bottom:911.865060px;}
.yb6{bottom:916.764810px;}
.y30{bottom:919.975110px;}
.y14a{bottom:927.916110px;}
.y4e{bottom:928.085010px;}
.yf4{bottom:932.815860px;}
.yb5{bottom:934.505460px;}
.y2f{bottom:937.884510px;}
.y6{bottom:939.236160px;}
.ya0{bottom:942.155250px;}
.y149{bottom:944.136060px;}
.y4d{bottom:945.825510px;}
.yd3{bottom:952.415010px;}
.y2e{bottom:955.625160px;}
.y148{bottom:960.356010px;}
.y4c{bottom:963.735060px;}
.yb4{bottom:970.155510px;}
.y5{bottom:971.000310px;}
.y2d{bottom:973.365660px;}
.y103{bottom:973.581450px;}
.y147{bottom:976.575960px;}
.y4b{bottom:981.475560px;}
.yb3{bottom:988.065060px;}
.y2c{bottom:991.275210px;}
.y146{bottom:992.795910px;}
.y4a{bottom:999.385110px;}
.y4{bottom:1002.595410px;}
.yb2{bottom:1005.805560px;}
.y2b{bottom:1009.015710px;}
.y2a{bottom:1026.925260px;}
.y49{bottom:1040.441910px;}
.yb1{bottom:1043.145210px;}
.y29{bottom:1044.665910px;}
.y2{bottom:1078.119510px;}
.he{height:34.933667px;}
.h6{height:44.440511px;}
.h10{height:47.093676px;}
.h2{height:52.400005px;}
.h8{height:55.025780px;}
.h3{height:55.053170px;}
.h19{height:56.532210px;}
.hb{height:61.022776px;}
.h13{height:64.035000px;}
.h7{height:66.329117px;}
.hc{height:68.111093px;}
.h17{height:71.440380px;}
.h9{height:71.599818px;}
.h4{height:75.224150px;}
.h15{height:76.624110px;}
.ha{height:79.690012px;}
.hd{height:80.240565px;}
.h5{height:80.885076px;}
.hf{height:96.582705px;}
.h12{height:109.822500px;}
.h11{height:122.120520px;}
.h14{height:122.325450px;}
.h18{height:140.572950px;}
.h16{height:166.592400px;}
.h1{height:1185.407550px;}
.h0{height:1188.000000px;}
.w5{width:306.055200px;}
.w3{width:306.055350px;}
.w6{width:312.945300px;}
.w4{width:313.165050px;}
.w2{width:326.538000px;}
.w8{width:329.563350px;}
.w7{width:329.584950px;}
.w1{width:839.790000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:10.156650px;}
.x1b{left:13.203600px;}
.x1d{left:16.250700px;}
.x26{left:19.297800px;}
.x16{left:22.344750px;}
.x25{left:28.438800px;}
.x1{left:38.898015px;}
.x17{left:60.940200px;}
.x18{left:63.987300px;}
.x3{left:120.018285px;}
.x2{left:125.943135px;}
.xe{left:145.410135px;}
.xb{left:147.102885px;}
.x8{left:149.134185px;}
.x2a{left:151.842735px;}
.x4{left:159.629535px;}
.xf{left:170.801835px;}
.x5{left:175.372335px;}
.x7{left:200.256285px;}
.xa{left:215.660685px;}
.x29{left:249.854835px;}
.x6{left:264.751335px;}
.x24{left:280.966050px;}
.x27{left:284.711850px;}
.x22{left:286.080435px;}
.x28{left:289.973835px;}
.x21{left:295.354800px;}
.x12{left:301.654035px;}
.x23{left:303.685335px;}
.x14{left:306.865650px;}
.x20{left:309.440835px;}
.x9{left:310.625835px;}
.x1c{left:311.774700px;}
.x13{left:313.503585px;}
.x1f{left:317.191650px;}
.x19{left:320.613135px;}
.x1a{left:323.152335px;}
.x1e{left:324.690300px;}
.xc{left:327.722985px;}
.x11{left:338.218185px;}
.x10{left:346.343535px;}
.xd{left:716.047485px;}
@media print{
.v2{vertical-align:-27.634133pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.036800pt;}
.lsc{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.003096pt;}
.ls12{letter-spacing:0.055268pt;}
.ls15{letter-spacing:0.085624pt;}
.ls14{letter-spacing:0.157378pt;}
.ls5{letter-spacing:0.157426pt;}
.ls2{letter-spacing:0.189422pt;}
.ls10{letter-spacing:0.191474pt;}
.ls9{letter-spacing:0.199445pt;}
.lsb{letter-spacing:0.225263pt;}
.ls4{letter-spacing:0.319593pt;}
.lsd{letter-spacing:0.400776pt;}
.ls8{letter-spacing:0.416988pt;}
.ls7{letter-spacing:0.423816pt;}
.ls3{letter-spacing:0.556775pt;}
.ls13{letter-spacing:0.606981pt;}
.ls1{letter-spacing:0.646302pt;}
.ls6{letter-spacing:0.793361pt;}
.ls11{letter-spacing:0.848354pt;}
.lsa{letter-spacing:15.521078pt;}
.ls0{letter-spacing:20.583080pt;}
.lse{letter-spacing:46.741793pt;}
.lsf{letter-spacing:52.942607pt;}
.ws8{word-spacing:-30.116232pt;}
.ws4{word-spacing:-19.974560pt;}
.ws11{word-spacing:-17.571613pt;}
.ws19{word-spacing:-15.018467pt;}
.ws16{word-spacing:-13.872255pt;}
.wsc{word-spacing:-13.816987pt;}
.ws9{word-spacing:-13.216252pt;}
.wsa{word-spacing:-12.465328pt;}
.ws15{word-spacing:-10.663112pt;}
.ws2{word-spacing:-4.627867pt;}
.wsf{word-spacing:-3.726740pt;}
.wsb{word-spacing:-3.645861pt;}
.ws13{word-spacing:-3.518451pt;}
.wsd{word-spacing:0.000000pt;}
.wse{word-spacing:0.259653pt;}
.ws14{word-spacing:0.332616pt;}
.ws7{word-spacing:0.368329pt;}
.ws12{word-spacing:0.423600pt;}
.ws10{word-spacing:0.438778pt;}
.ws17{word-spacing:0.484745pt;}
.ws5{word-spacing:0.494869pt;}
.ws1{word-spacing:0.770706pt;}
.ws3{word-spacing:1.032285pt;}
.ws6{word-spacing:1.960738pt;}
.ws18{word-spacing:42.929945pt;}
.ws0{word-spacing:1499.253775pt;}
._1{margin-left:-1.091542pt;}
._0{width:1.471209pt;}
._4{width:2.365779pt;}
._3{width:3.603275pt;}
._11{width:4.494533pt;}
._a{width:5.385022pt;}
._b{width:6.555861pt;}
._e{width:7.571709pt;}
._f{width:8.642824pt;}
._12{width:9.612478pt;}
._13{width:10.516110pt;}
._7{width:11.468102pt;}
._15{width:12.389494pt;}
._1a{width:13.569610pt;}
._9{width:14.879572pt;}
._5{width:16.280469pt;}
._8{width:17.593547pt;}
._10{width:19.512698pt;}
._17{width:20.774523pt;}
._2{width:22.632583pt;}
._16{width:24.191293pt;}
._1c{width:25.564419pt;}
._d{width:26.475756pt;}
._c{width:27.473583pt;}
._14{width:29.179797pt;}
._6{width:31.720180pt;}
._18{width:37.637472pt;}
._19{width:42.333692pt;}
._1b{width:47.786456pt;}
._1d{width:55.445134pt;}
._20{width:67.287540pt;}
._21{width:68.683657pt;}
._22{width:69.819053pt;}
._1e{width:91.420415pt;}
._1f{width:257.109555pt;}
.fs6{font-size:40.249493pt;}
.fs5{font-size:42.652448pt;}
.fs0{font-size:47.458357pt;}
.fs1{font-size:49.861312pt;}
.fs8{font-size:52.865008pt;}
.fsa{font-size:55.267947pt;}
.fs7{font-size:60.073867pt;}
.fs4{font-size:64.879787pt;}
.fs9{font-size:70.286453pt;}
.fs3{font-size:79.898240pt;}
.fs2{font-size:100.323360pt;}
.ya7{bottom:-0.150267pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.792480pt;}
.y77{bottom:2.402933pt;}
.y7f{bottom:2.853467pt;}
.yf3{bottom:3.604533pt;}
.y108{bottom:4.505467pt;}
.y112{bottom:5.256533pt;}
.yd2{bottom:7.809600pt;}
.y87{bottom:10.813333pt;}
.yb0{bottom:10.963467pt;}
.ya6{bottom:14.117333pt;}
.y7e{bottom:15.168667pt;}
.yf2{bottom:16.069867pt;}
.y76{bottom:16.820667pt;}
.y107{bottom:17.120933pt;}
.y111{bottom:17.421467pt;}
.yd1{bottom:21.776800pt;}
.y86{bottom:25.231067pt;}
.y7d{bottom:27.333600pt;}
.yf1{bottom:28.384933pt;}
.ya5{bottom:28.535067pt;}
.y106{bottom:29.436133pt;}
.y110{bottom:29.736667pt;}
.yaa{bottom:31.088267pt;}
.y75{bottom:31.238400pt;}
.yd0{bottom:34.092000pt;}
.y7c{bottom:39.498533pt;}
.yaf{bottom:39.648667pt;}
.y85{bottom:39.648800pt;}
.yf0{bottom:40.549867pt;}
.y105{bottom:41.601067pt;}
.y10f{bottom:41.901600pt;}
.ya4{bottom:42.952800pt;}
.ya9{bottom:45.506000pt;}
.y74{bottom:45.656133pt;}
.ycf{bottom:46.256933pt;}
.y7b{bottom:51.813733pt;}
.yef{bottom:52.865067pt;}
.y104{bottom:53.916267pt;}
.y84{bottom:54.066533pt;}
.ya3{bottom:57.370533pt;}
.yce{bottom:58.572000pt;}
.y73{bottom:59.923733pt;}
.y7a{bottom:63.978667pt;}
.yee{bottom:65.030000pt;}
.y10e{bottom:66.381733pt;}
.y83{bottom:68.334000pt;}
.yae{bottom:68.484267pt;}
.ya2{bottom:71.788267pt;}
.y79{bottom:76.293867pt;}
.yed{bottom:77.194933pt;}
.y10d{bottom:78.546667pt;}
.y82{bottom:82.751733pt;}
.yad{bottom:82.902000pt;}
.ya1{bottom:86.206000pt;}
.yec{bottom:89.510133pt;}
.y10c{bottom:90.861733pt;}
.y3{bottom:96.718933pt;}
.y81{bottom:97.169467pt;}
.yac{bottom:97.319600pt;}
.y28{bottom:99.722627pt;}
.yeb{bottom:101.675067pt;}
.y10b{bottom:103.026800pt;}
.yea{bottom:113.990267pt;}
.y27{bottom:114.741093pt;}
.y10a{bottom:115.341867pt;}
.y9f{bottom:116.843680pt;}
.y12d{bottom:120.898667pt;}
.y65{bottom:122.700880pt;}
.ye9{bottom:126.155200pt;}
.y26{bottom:130.510493pt;}
.y9e{bottom:132.763253pt;}
.y12c{bottom:136.818187pt;}
.ye8{bottom:138.470267pt;}
.y64{bottom:138.620453pt;}
.y25{bottom:146.430053pt;}
.y9d{bottom:148.532587pt;}
.y48{bottom:162.199520pt;}
.y9c{bottom:164.452187pt;}
.y12b{bottom:166.855120pt;}
.y63{bottom:171.811253pt;}
.y11b{bottom:173.012720pt;}
.ycc{bottom:174.514587pt;}
.y24{bottom:177.968853pt;}
.y9b{bottom:180.221653pt;}
.y11a{bottom:188.932320pt;}
.ycb{bottom:190.284053pt;}
.y47{bottom:192.386587pt;}
.y23{bottom:193.888453pt;}
.y119{bottom:204.701787pt;}
.y62{bottom:204.851920pt;}
.yca{bottom:206.203520pt;}
.y22{bottom:209.657787pt;}
.y9a{bottom:211.910587pt;}
.ye6{bottom:213.262187pt;}
.y61{bottom:220.621253pt;}
.y71{bottom:221.972987pt;}
.y21{bottom:225.577387pt;}
.y99{bottom:227.679920pt;}
.ye5{bottom:229.181787pt;}
.y60{bottom:236.390720pt;}
.yc9{bottom:237.742320pt;}
.y70{bottom:237.892587pt;}
.y20{bottom:241.346720pt;}
.y98{bottom:243.599520pt;}
.ye4{bottom:244.951253pt;}
.y102{bottom:249.306587pt;}
.y118{bottom:252.160053pt;}
.y6f{bottom:253.661920pt;}
.y1f{bottom:257.116187pt;}
.y97{bottom:259.368987pt;}
.ye3{bottom:260.870853pt;}
.y101{bottom:265.075920pt;}
.y5f{bottom:268.079653pt;}
.yc8{bottom:269.431253pt;}
.y145{bottom:271.233520pt;}
.y1e{bottom:273.035787pt;}
.y96{bottom:275.288453pt;}
.ye2{bottom:276.640187pt;}
.y6e{bottom:280.845387pt;}
.y100{bottom:280.995520pt;}
.y5e{bottom:283.999253pt;}
.y144{bottom:285.651253pt;}
.y1d{bottom:288.805120pt;}
.y95{bottom:291.057920pt;}
.ye1{bottom:292.559787pt;}
.yff{bottom:296.764987pt;}
.y5d{bottom:299.768587pt;}
.y143{bottom:300.068987pt;}
.yc7{bottom:301.120320pt;}
.y117{bottom:301.270453pt;}
.y1c{bottom:304.724720pt;}
.y94{bottom:306.827253pt;}
.ye0{bottom:308.329120pt;}
.y78{bottom:309.422000pt;}
.y142{bottom:314.336587pt;}
.y5c{bottom:315.538053pt;}
.yc6{bottom:316.889653pt;}
.y1b{bottom:320.494053pt;}
.y93{bottom:322.746853pt;}
.ydf{bottom:324.098587pt;}
.yfe{bottom:328.453920pt;}
.y141{bottom:328.754187pt;}
.yc5{bottom:332.809253pt;}
.y116{bottom:334.311120pt;}
.y1a{bottom:336.263520pt;}
.yde{bottom:340.018053pt;}
.y140{bottom:343.172053pt;}
.yfd{bottom:344.223253pt;}
.y5b{bottom:348.728853pt;}
.y115{bottom:350.080453pt;}
.y92{bottom:354.285653pt;}
.ydd{bottom:355.787520pt;}
.y13f{bottom:357.589787pt;}
.yfc{bottom:360.142853pt;}
.y19{bottom:364.197787pt;}
.yc4{bottom:364.498187pt;}
.y114{bottom:365.849920pt;}
.ydc{bottom:371.707120pt;}
.y13e{bottom:372.007387pt;}
.yfb{bottom:375.912187pt;}
.yc3{bottom:380.267653pt;}
.y5a{bottom:381.769387pt;}
.y13d{bottom:386.425120pt;}
.ydb{bottom:387.476453pt;}
.yab{bottom:388.569333pt;}
.y46{bottom:391.681653pt;}
.yfa{bottom:391.831787pt;}
.yc2{bottom:396.036987pt;}
.y13c{bottom:400.692720pt;}
.y18{bottom:400.993120pt;}
.y12a{bottom:401.894187pt;}
.y45{bottom:407.601253pt;}
.yc1{bottom:411.956587pt;}
.y113{bottom:413.308187pt;}
.y13b{bottom:415.110453pt;}
.y17{bottom:415.410853pt;}
.yda{bottom:419.015253pt;}
.y44{bottom:423.520853pt;}
.y129{bottom:432.231520pt;}
.y43{bottom:439.290187pt;}
.yc0{bottom:443.495387pt;}
.y16{bottom:447.249920pt;}
.y13a{bottom:450.403787pt;}
.ye7{bottom:453.899600pt;}
.y42{bottom:455.059520pt;}
.y128{bottom:466.623787pt;}
.y41{bottom:470.979120pt;}
.y109{bottom:480.031733pt;}
.y15{bottom:480.140453pt;}
.ycd{bottom:484.537333pt;}
.y139{bottom:490.052587pt;}
.y14{bottom:494.558187pt;}
.y40{bottom:499.664453pt;}
.y127{bottom:499.814587pt;}
.y6d{bottom:502.517920pt;}
.y138{bottom:506.422720pt;}
.y13{bottom:508.975920pt;}
.y3f{bottom:515.583920pt;}
.y91{bottom:521.290987pt;}
.y137{bottom:523.243387pt;}
.y12{bottom:523.393653pt;}
.y80{bottom:529.893067pt;}
.y3e{bottom:531.353387pt;}
.y126{bottom:534.206853pt;}
.y90{bottom:537.210587pt;}
.y11{bottom:537.661120pt;}
.y136{bottom:539.613520pt;}
.y125{bottom:550.126453pt;}
.y10{bottom:552.078853pt;}
.y8f{bottom:552.979920pt;}
.y135{bottom:556.284053pt;}
.y3d{bottom:561.540587pt;}
.y124{bottom:565.895920pt;}
.yf{bottom:566.496587pt;}
.y8e{bottom:568.749387pt;}
.y134{bottom:572.053387pt;}
.y3c{bottom:577.460053pt;}
.y59{bottom:578.811787pt;}
.y123{bottom:581.815387pt;}
.y8d{bottom:584.668987pt;}
.y133{bottom:588.423520pt;}
.y3b{bottom:593.229520pt;}
.y58{bottom:594.731387pt;}
.y122{bottom:597.584853pt;}
.ye{bottom:598.485920pt;}
.ybf{bottom:600.438320pt;}
.y132{bottom:605.244320pt;}
.y3a{bottom:609.148987pt;}
.y57{bottom:610.500720pt;}
.y8c{bottom:616.207787pt;}
.y131{bottom:621.013653pt;}
.yf9{bottom:626.420320pt;}
.y121{bottom:630.775653pt;}
.ybe{bottom:632.127253pt;}
.y130{bottom:636.933253pt;}
.yd9{bottom:637.834320pt;}
.y39{bottom:640.687787pt;}
.y56{bottom:642.189653pt;}
.ybd{bottom:647.896720pt;}
.yd{bottom:651.501120pt;}
.y153{bottom:652.252053pt;}
.ya8{bottom:652.293600pt;}
.y6c{bottom:653.753920pt;}
.y38{bottom:656.607387pt;}
.y55{bottom:657.959120pt;}
.ybc{bottom:663.816320pt;}
.yc{bottom:666.219253pt;}
.y6b{bottom:669.523253pt;}
.y37{bottom:672.376853pt;}
.y12f{bottom:673.428053pt;}
.y54{bottom:673.878720pt;}
.ybb{bottom:679.585653pt;}
.y152{bottom:680.937387pt;}
.y6a{bottom:685.442853pt;}
.yd8{bottom:686.944720pt;}
.y36{bottom:688.296320pt;}
.y53{bottom:689.648053pt;}
.yb{bottom:690.398987pt;}
.y151{bottom:695.355120pt;}
.y120{bottom:695.505253pt;}
.y69{bottom:701.212187pt;}
.y35{bottom:704.065787pt;}
.y150{bottom:709.772720pt;}
.yba{bottom:711.274720pt;}
.y12e{bottom:713.076853pt;}
.y68{bottom:716.981653pt;}
.ya{bottom:717.432187pt;}
.yd7{bottom:719.985387pt;}
.y52{bottom:721.336987pt;}
.y14f{bottom:724.190453pt;}
.yf8{bottom:726.293120pt;}
.y11f{bottom:727.044053pt;}
.y9{bottom:732.150320pt;}
.y67{bottom:732.901253pt;}
.yd6{bottom:735.754720pt;}
.y51{bottom:737.256587pt;}
.y34{bottom:737.707120pt;}
.y8b{bottom:740.110053pt;}
.yb9{bottom:747.769520pt;}
.yd5{bottom:751.524187pt;}
.y14e{bottom:752.875787pt;}
.y50{bottom:753.025920pt;}
.y8a{bottom:755.879520pt;}
.y8{bottom:756.330053pt;}
.y11e{bottom:760.234853pt;}
.y66{bottom:762.938187pt;}
.yf7{bottom:765.941920pt;}
.y14d{bottom:767.293520pt;}
.yd4{bottom:767.443653pt;}
.y33{bottom:770.297253pt;}
.y89{bottom:771.799120pt;}
.yf6{bottom:781.861387pt;}
.yb8{bottom:783.213120pt;}
.y7{bottom:785.465920pt;}
.y32{bottom:786.066587pt;}
.y4f{bottom:789.520853pt;}
.y72{bottom:792.716267pt;}
.y11d{bottom:793.275520pt;}
.y14c{bottom:796.128987pt;}
.yf5{bottom:797.630853pt;}
.yb7{bottom:799.132587pt;}
.y31{bottom:801.986187pt;}
.y88{bottom:803.337787pt;}
.y11c{bottom:809.195120pt;}
.y14b{bottom:810.546720pt;}
.yb6{bottom:814.902053pt;}
.y30{bottom:817.755653pt;}
.y14a{bottom:824.814320pt;}
.y4e{bottom:824.964453pt;}
.yf4{bottom:829.169653pt;}
.yb5{bottom:830.671520pt;}
.y2f{bottom:833.675120pt;}
.y6{bottom:834.876587pt;}
.ya0{bottom:837.471333pt;}
.y149{bottom:839.232053pt;}
.y4d{bottom:840.733787pt;}
.yd3{bottom:846.591120pt;}
.y2e{bottom:849.444587pt;}
.y148{bottom:853.649787pt;}
.y4c{bottom:856.653387pt;}
.yb4{bottom:862.360453pt;}
.y5{bottom:863.111387pt;}
.y2d{bottom:865.213920pt;}
.y103{bottom:865.405733pt;}
.y147{bottom:868.067520pt;}
.y4b{bottom:872.422720pt;}
.yb3{bottom:878.280053pt;}
.y2c{bottom:881.133520pt;}
.y146{bottom:882.485253pt;}
.y4a{bottom:888.342320pt;}
.y4{bottom:891.195920pt;}
.yb2{bottom:894.049387pt;}
.y2b{bottom:896.902853pt;}
.y2a{bottom:912.822453pt;}
.y49{bottom:924.837253pt;}
.yb1{bottom:927.240187pt;}
.y29{bottom:928.591920pt;}
.y2{bottom:958.328453pt;}
.he{height:31.052148pt;}
.h6{height:39.502677pt;}
.h10{height:41.861045pt;}
.h2{height:46.577782pt;}
.h8{height:48.911805pt;}
.h3{height:48.936151pt;}
.h19{height:50.250853pt;}
.hb{height:54.242467pt;}
.h13{height:56.920000pt;}
.h7{height:58.959215pt;}
.hc{height:60.543194pt;}
.h17{height:63.502560pt;}
.h9{height:63.644283pt;}
.h4{height:66.865911pt;}
.h15{height:68.110320pt;}
.ha{height:70.835566pt;}
.hd{height:71.324947pt;}
.h5{height:71.897845pt;}
.hf{height:85.851293pt;}
.h12{height:97.620000pt;}
.h11{height:108.551573pt;}
.h14{height:108.733733pt;}
.h18{height:124.953733pt;}
.h16{height:148.082133pt;}
.h1{height:1053.695600pt;}
.h0{height:1056.000000pt;}
.w5{width:272.049067pt;}
.w3{width:272.049200pt;}
.w6{width:278.173600pt;}
.w4{width:278.368933pt;}
.w2{width:290.256000pt;}
.w8{width:292.945200pt;}
.w7{width:292.964400pt;}
.w1{width:746.480000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:9.028133pt;}
.x1b{left:11.736533pt;}
.x1d{left:14.445067pt;}
.x26{left:17.153600pt;}
.x16{left:19.862000pt;}
.x25{left:25.278933pt;}
.x1{left:34.576013pt;}
.x17{left:54.169067pt;}
.x18{left:56.877600pt;}
.x3{left:106.682920pt;}
.x2{left:111.949453pt;}
.xe{left:129.253453pt;}
.xb{left:130.758120pt;}
.x8{left:132.563720pt;}
.x2a{left:134.971320pt;}
.x4{left:141.892920pt;}
.xf{left:151.823853pt;}
.x5{left:155.886520pt;}
.x7{left:178.005587pt;}
.xa{left:191.698387pt;}
.x29{left:222.093187pt;}
.x6{left:235.334520pt;}
.x24{left:249.747600pt;}
.x27{left:253.077200pt;}
.x22{left:254.293720pt;}
.x28{left:257.754520pt;}
.x21{left:262.537600pt;}
.x12{left:268.136920pt;}
.x23{left:269.942520pt;}
.x14{left:272.769467pt;}
.x20{left:275.058520pt;}
.x9{left:276.111853pt;}
.x1c{left:277.133067pt;}
.x13{left:278.669853pt;}
.x1f{left:281.948133pt;}
.x19{left:284.989453pt;}
.x1a{left:287.246520pt;}
.x1e{left:288.613600pt;}
.xc{left:291.309320pt;}
.x11{left:300.638387pt;}
.x10{left:307.860920pt;}
.xd{left:636.486653pt;}
}




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