
    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_4348438bf42dc356fe76095c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_90b72cf6cfaf2daa752295b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_2595ddba73cf6948f494b071.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877441;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_b3beba8c776a8f692214a91e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.776855;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_c42ea4204e291fc2a46abafd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_fbb2f8b9829b53c6f7279308.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_51e30f3fab136a5781448d1a.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_30be4a4205162aad328869b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688965;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_da7e21fb9adbe06e8571a371.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b55d8b28943753d8793c633e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_b425de59a34fa749f4f07414.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.549805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f01115fda37dac57b4e5e06c.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.549805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.284875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284875,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v7{vertical-align:-9.360000px;}
.v5{vertical-align:-2.880000px;}
.v8{vertical-align:-1.560000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.v3{vertical-align:36.000000px;}
.v2{vertical-align:42.480000px;}
.v6{vertical-align:75.600000px;}
.v4{vertical-align:78.480000px;}
.ls4{letter-spacing:-0.754143px;}
.lsa{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.342600px;}
.ls5{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.078600px;}
.lse{letter-spacing:-0.056880px;}
.ls17{letter-spacing:-0.050700px;}
.lsf{letter-spacing:-0.023040px;}
.ls3{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.078000px;}
.ls9{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.162000px;}
.ls15{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.224640px;}
.ls13{letter-spacing:0.273600px;}
.ls6{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.385200px;}
.lsc{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.565200px;}
.lsb{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.357829px;}
.ls10{letter-spacing:12.161520px;}
.ls11{letter-spacing:14.785200px;}
.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;}
}
.ws7{word-spacing:-40.608000px;}
.wsa{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.432000px;}
.ws9{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.657400px;}
.ws13{word-spacing:-16.056000px;}
.ws2{word-spacing:-15.984000px;}
.ws10{word-spacing:-15.840000px;}
.ws17{word-spacing:-14.940000px;}
.ws15{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.246400px;}
.wse{word-spacing:-11.223360px;}
.wsd{word-spacing:-11.189520px;}
.ws14{word-spacing:-11.167800px;}
.ws4{word-spacing:0.000000px;}
.ws1{word-spacing:0.704878px;}
.wsf{word-spacing:54.720000px;}
.ws26{word-spacing:84.780240px;}
.ws1a{word-spacing:86.297520px;}
.ws29{word-spacing:86.357520px;}
.ws1e{word-spacing:86.417520px;}
.ws22{word-spacing:86.477520px;}
.ws12{word-spacing:86.616000px;}
.ws1b{word-spacing:98.581680px;}
.ws11{word-spacing:140.616000px;}
.ws1f{word-spacing:151.560240px;}
.ws23{word-spacing:182.400240px;}
.ws16{word-spacing:275.701680px;}
.ws0{word-spacing:420.975840px;}
.ws24{word-spacing:881.057520px;}
.ws27{word-spacing:894.617520px;}
.ws1c{word-spacing:899.057520px;}
.ws18{word-spacing:908.117520px;}
.ws20{word-spacing:923.837520px;}
.ws25{word-spacing:1064.520720px;}
.ws28{word-spacing:1078.080720px;}
.ws19{word-spacing:1091.580720px;}
.ws1d{word-spacing:1097.520720px;}
.ws21{word-spacing:1107.300720px;}
._4{margin-left:-6.590880px;}
._3{margin-left:-5.272560px;}
._5{margin-left:-4.029120px;}
._2{margin-left:-2.232000px;}
._1{margin-left:-1.135440px;}
._0{width:1.434240px;}
._7{width:2.831040px;}
._8{width:4.271040px;}
._a{width:5.936640px;}
._c{width:7.632000px;}
._d{width:8.712000px;}
._15{width:10.368000px;}
._16{width:11.393760px;}
._1b{width:12.510240px;}
._e{width:13.752000px;}
._f{width:15.048000px;}
._20{width:16.416000px;}
._9{width:19.013760px;}
._11{width:20.730240px;}
._14{width:21.894480px;}
._13{width:22.968000px;}
._12{width:24.048000px;}
._19{width:25.056000px;}
._1a{width:26.712000px;}
._1f{width:28.063440px;}
._25{width:29.304000px;}
._18{width:30.312000px;}
._21{width:31.752000px;}
._22{width:33.120000px;}
._23{width:35.208000px;}
._24{width:36.365760px;}
._31{width:38.376000px;}
._32{width:39.648000px;}
._30{width:40.824000px;}
._17{width:42.120000px;}
._1d{width:43.560000px;}
._1e{width:44.585280px;}
._27{width:46.525200px;}
._b{width:47.592000px;}
._2f{width:52.788600px;}
._1c{width:59.256000px;}
._10{width:62.064000px;}
._38{width:72.008640px;}
._2b{width:73.872000px;}
._29{width:86.033520px;}
._28{width:93.617760px;}
._37{width:114.899760px;}
._34{width:136.200000px;}
._2e{width:166.614240px;}
._35{width:181.440000px;}
._2c{width:193.145520px;}
._2a{width:198.000000px;}
._2d{width:199.079760px;}
._36{width:212.400000px;}
._33{width:314.099040px;}
._6{width:431.756880px;}
._26{width:1048.752000px;}
.fc5{color:rgb(0,98,155);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:49.264682px;}
.fs9{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y10{bottom:-1.980000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.700000px;}
.y12{bottom:3.330266px;}
.yd1{bottom:4.125000px;}
.ye3{bottom:4.140000px;}
.yd5{bottom:5.925000px;}
.ydc{bottom:5.940000px;}
.yd9{bottom:5.970000px;}
.yd6{bottom:6.285000px;}
.ydd{bottom:6.300000px;}
.yda{bottom:6.330000px;}
.y14{bottom:15.840000px;}
.y107{bottom:16.815000px;}
.y130{bottom:16.845000px;}
.y117{bottom:16.890000px;}
.yf{bottom:17.100000px;}
.y45{bottom:18.360000px;}
.yd0{bottom:24.825000px;}
.ye2{bottom:24.840000px;}
.yd3{bottom:25.185000px;}
.ye5{bottom:25.200000px;}
.ye{bottom:46.800000px;}
.y15{bottom:53.460000px;}
.yc{bottom:56.700000px;}
.y106{bottom:57.240000px;}
.y12f{bottom:57.270000px;}
.y116{bottom:57.315000px;}
.y12a{bottom:57.345000px;}
.y105{bottom:78.945000px;}
.y115{bottom:78.990000px;}
.y129{bottom:79.020000px;}
.y104{bottom:97.710000px;}
.y12e{bottom:97.740000px;}
.y114{bottom:97.770000px;}
.y7c{bottom:114.120000px;}
.y73{bottom:114.480000px;}
.y144{bottom:121.320000px;}
.ye0{bottom:122.220000px;}
.y102{bottom:125.175000px;}
.y12d{bottom:125.205000px;}
.y112{bottom:125.250000px;}
.ycb{bottom:126.540000px;}
.yfe{bottom:129.780000px;}
.y78{bottom:130.140000px;}
.y43{bottom:131.940000px;}
.y7b{bottom:134.820000px;}
.y72{bottom:135.180000px;}
.y143{bottom:142.020000px;}
.y83{bottom:142.560000px;}
.ydf{bottom:142.920000px;}
.y77{bottom:146.340000px;}
.yca{bottom:147.240000px;}
.y126{bottom:149.400000px;}
.yfd{bottom:150.480000px;}
.y42{bottom:152.640000px;}
.y71{bottom:155.880000px;}
.y142{bottom:162.720000px;}
.y82{bottom:163.260000px;}
.yde{bottom:163.980000px;}
.yfc{bottom:166.680000px;}
.yff{bottom:167.040000px;}
.yc9{bottom:167.940000px;}
.y125{bottom:170.100000px;}
.y7a{bottom:172.080000px;}
.y41{bottom:173.340000px;}
.y70{bottom:176.580000px;}
.ydb{bottom:181.080000px;}
.y81{bottom:182.340000px;}
.y141{bottom:183.780000px;}
.yc8{bottom:188.640000px;}
.y124{bottom:190.800000px;}
.y80{bottom:191.340000px;}
.y40{bottom:194.040000px;}
.y6f{bottom:197.280000px;}
.y100{bottom:200.985000px;}
.y12c{bottom:201.030000px;}
.y110{bottom:201.060000px;}
.yd8{bottom:204.300000px;}
.yc7{bottom:209.370000px;}
.y123{bottom:211.530000px;}
.y3f{bottom:214.770000px;}
.y7f{bottom:217.110000px;}
.y6e{bottom:218.010000px;}
.y103{bottom:222.735000px;}
.y113{bottom:222.810000px;}
.y140{bottom:225.030000px;}
.yd7{bottom:227.565000px;}
.yc6{bottom:230.070000px;}
.y122{bottom:232.230000px;}
.yad{bottom:233.850000px;}
.y3e{bottom:235.470000px;}
.y6d{bottom:238.710000px;}
.y101{bottom:242.850000px;}
.y111{bottom:242.895000px;}
.y128{bottom:242.925000px;}
.y13f{bottom:245.730000px;}
.yc5{bottom:250.770000px;}
.yd4{bottom:250.785000px;}
.y121{bottom:252.570000px;}
.yac{bottom:254.550000px;}
.y3d{bottom:256.170000px;}
.y6c{bottom:259.410000px;}
.y13e{bottom:266.430000px;}
.y120{bottom:269.130000px;}
.y12b{bottom:269.460000px;}
.yc4{bottom:271.470000px;}
.yd2{bottom:274.005000px;}
.yab{bottom:275.250000px;}
.y3c{bottom:276.870000px;}
.y6b{bottom:280.110000px;}
.y13d{bottom:287.130000px;}
.yc3{bottom:292.170000px;}
.yaa{bottom:295.950000px;}
.y3b{bottom:297.570000px;}
.y6a{bottom:300.810000px;}
.y13c{bottom:307.830000px;}
.yc2{bottom:312.870000px;}
.ycf{bottom:316.125000px;}
.ya9{bottom:316.650000px;}
.y3a{bottom:318.270000px;}
.y69{bottom:321.510000px;}
.y13b{bottom:328.530000px;}
.yc1{bottom:333.570000px;}
.ya8{bottom:337.350000px;}
.y39{bottom:338.970000px;}
.y68{bottom:342.210000px;}
.y13a{bottom:349.230000px;}
.yc0{bottom:354.270000px;}
.ya7{bottom:358.050000px;}
.y38{bottom:359.670000px;}
.y67{bottom:362.910000px;}
.y139{bottom:369.930000px;}
.ybf{bottom:374.970000px;}
.ya6{bottom:378.750000px;}
.y37{bottom:380.370000px;}
.y66{bottom:383.610000px;}
.y138{bottom:390.630000px;}
.ybe{bottom:395.670000px;}
.ya5{bottom:399.450000px;}
.y36{bottom:401.070000px;}
.yce{bottom:403.950000px;}
.y65{bottom:404.310000px;}
.y137{bottom:411.330000px;}
.ybd{bottom:416.370000px;}
.ya4{bottom:420.150000px;}
.y35{bottom:421.770000px;}
.y64{bottom:425.010000px;}
.y10e{bottom:432.030000px;}
.ybc{bottom:437.070000px;}
.ya3{bottom:440.895000px;}
.y34{bottom:442.515000px;}
.y63{bottom:445.755000px;}
.y10d{bottom:452.775000px;}
.ybb{bottom:457.815000px;}
.ya2{bottom:461.595000px;}
.y33{bottom:463.215000px;}
.y62{bottom:466.455000px;}
.y10c{bottom:473.475000px;}
.yba{bottom:478.515000px;}
.ya1{bottom:482.295000px;}
.y32{bottom:483.915000px;}
.y61{bottom:487.155000px;}
.y10b{bottom:494.175000px;}
.yfb{bottom:495.255000px;}
.yb9{bottom:499.215000px;}
.ya0{bottom:502.995000px;}
.y31{bottom:504.615000px;}
.y60{bottom:507.855000px;}
.y10a{bottom:514.875000px;}
.yfa{bottom:515.955000px;}
.yb8{bottom:519.915000px;}
.y9f{bottom:523.695000px;}
.y30{bottom:525.315000px;}
.y5f{bottom:528.375000px;}
.y109{bottom:535.215000px;}
.y136{bottom:535.575000px;}
.yf9{bottom:536.655000px;}
.yb7{bottom:540.615000px;}
.y9e{bottom:544.395000px;}
.y2f{bottom:546.015000px;}
.y5e{bottom:549.075000px;}
.y108{bottom:551.775000px;}
.y10f{bottom:552.060000px;}
.y135{bottom:556.275000px;}
.yf8{bottom:557.355000px;}
.yb6{bottom:561.315000px;}
.y9d{bottom:565.095000px;}
.y2e{bottom:566.715000px;}
.y5d{bottom:569.775000px;}
.y134{bottom:576.975000px;}
.yf7{bottom:578.055000px;}
.yb5{bottom:582.015000px;}
.y9c{bottom:585.795000px;}
.y2d{bottom:587.415000px;}
.y5c{bottom:590.475000px;}
.y44{bottom:590.655000px;}
.y133{bottom:597.315000px;}
.y11f{bottom:597.675000px;}
.yf6{bottom:598.755000px;}
.yb4{bottom:602.715000px;}
.y9b{bottom:606.495000px;}
.y2c{bottom:608.115000px;}
.y5b{bottom:611.175000px;}
.y132{bottom:618.015000px;}
.y11e{bottom:618.375000px;}
.yf5{bottom:619.455000px;}
.yb3{bottom:623.415000px;}
.y9a{bottom:627.195000px;}
.y2b{bottom:628.815000px;}
.y5a{bottom:631.875000px;}
.y11d{bottom:639.075000px;}
.yf4{bottom:640.155000px;}
.yb2{bottom:644.115000px;}
.y99{bottom:647.895000px;}
.y2a{bottom:649.515000px;}
.y59{bottom:652.575000px;}
.y11c{bottom:659.775000px;}
.yf3{bottom:660.855000px;}
.yb1{bottom:664.815000px;}
.y98{bottom:668.595000px;}
.y29{bottom:670.215000px;}
.y7e{bottom:672.915000px;}
.y58{bottom:673.275000px;}
.y11b{bottom:680.505000px;}
.yf2{bottom:681.585000px;}
.yb0{bottom:685.545000px;}
.y97{bottom:689.325000px;}
.y28{bottom:690.945000px;}
.y57{bottom:694.005000px;}
.y11a{bottom:701.205000px;}
.yf1{bottom:702.285000px;}
.yaf{bottom:706.245000px;}
.y96{bottom:708.405000px;}
.y27{bottom:711.645000px;}
.y56{bottom:714.705000px;}
.y95{bottom:717.405000px;}
.y119{bottom:721.545000px;}
.y131{bottom:721.905000px;}
.yae{bottom:722.445000px;}
.yf0{bottom:722.985000px;}
.y26{bottom:731.985000px;}
.y145{bottom:735.045000px;}
.y55{bottom:735.405000px;}
.y118{bottom:738.105000px;}
.y127{bottom:738.360000px;}
.y94{bottom:743.505000px;}
.yef{bottom:743.685000px;}
.y25{bottom:752.685000px;}
.ycd{bottom:755.745000px;}
.y54{bottom:756.105000px;}
.y93{bottom:764.205000px;}
.yee{bottom:764.385000px;}
.y24{bottom:773.745000px;}
.ycc{bottom:776.445000px;}
.y53{bottom:776.805000px;}
.y92{bottom:783.465000px;}
.yed{bottom:785.085000px;}
.y91{bottom:792.465000px;}
.y23{bottom:794.445000px;}
.y52{bottom:797.505000px;}
.yec{bottom:805.785000px;}
.y22{bottom:814.785000px;}
.y51{bottom:818.205000px;}
.y90{bottom:818.565000px;}
.yeb{bottom:826.485000px;}
.y21{bottom:835.485000px;}
.y50{bottom:838.905000px;}
.y8f{bottom:839.265000px;}
.yea{bottom:847.185000px;}
.y20{bottom:856.545000px;}
.y4f{bottom:859.245000px;}
.y76{bottom:859.605000px;}
.y8e{bottom:859.965000px;}
.ye9{bottom:864.105000px;}
.y1f{bottom:877.245000px;}
.y4e{bottom:879.945000px;}
.y75{bottom:880.305000px;}
.y8d{bottom:880.665000px;}
.ye8{bottom:887.325000px;}
.y1e{bottom:897.585000px;}
.y8c{bottom:899.745000px;}
.y79{bottom:900.645000px;}
.y4d{bottom:901.005000px;}
.y8b{bottom:908.745000px;}
.ye7{bottom:910.770000px;}
.y1d{bottom:918.330000px;}
.y4c{bottom:921.750000px;}
.ye6{bottom:933.990000px;}
.y8a{bottom:935.430000px;}
.y1c{bottom:939.390000px;}
.y4b{bottom:942.090000px;}
.y74{bottom:942.450000px;}
.y89{bottom:956.130000px;}
.ye4{bottom:957.210000px;}
.y1b{bottom:960.090000px;}
.y4a{bottom:963.150000px;}
.y88{bottom:976.830000px;}
.y1a{bottom:980.430000px;}
.y49{bottom:983.850000px;}
.y87{bottom:997.530000px;}
.ye1{bottom:999.330000px;}
.y19{bottom:1000.950000px;}
.y48{bottom:1004.550000px;}
.y18{bottom:1018.590000px;}
.y85{bottom:1022.550000px;}
.y86{bottom:1023.270000px;}
.y47{bottom:1025.250000px;}
.y84{bottom:1031.550000px;}
.y17{bottom:1042.710000px;}
.y7d{bottom:1045.590000px;}
.y46{bottom:1045.950000px;}
.yd{bottom:1056.750000px;}
.yb{bottom:1065.030000px;}
.y11{bottom:1080.635319px;}
.ya{bottom:1081.230000px;}
.y13{bottom:1088.790000px;}
.y9{bottom:1097.610000px;}
.y8{bottom:1113.810000px;}
.y7{bottom:1130.190000px;}
.y6{bottom:1146.420000px;}
.y5{bottom:1162.800000px;}
.y2{bottom:1176.300000px;}
.y4{bottom:1179.000000px;}
.y3{bottom:1195.380000px;}
.y1{bottom:1197.000000px;}
.h9{height:15.648467px;}
.hc{height:16.198500px;}
.h1c{height:22.485000px;}
.h1e{height:22.500000px;}
.h1d{height:22.536000px;}
.hb{height:29.685000px;}
.h7{height:31.952109px;}
.h6{height:39.247031px;}
.he{height:40.472227px;}
.h4{height:41.027344px;}
.h1b{height:41.385000px;}
.h2{height:42.602344px;}
.h12{height:49.485000px;}
.h8{height:50.326875px;}
.h3{height:51.328125px;}
.ha{height:51.381523px;}
.h20{height:58.651172px;}
.h21{height:58.792500px;}
.h5{height:58.845000px;}
.h13{height:66.757500px;}
.h10{height:70.664062px;}
.hf{height:72.562500px;}
.h11{height:81.736875px;}
.hd{height:84.898125px;}
.h16{height:106.664062px;}
.h14{height:112.394531px;}
.h15{height:122.280117px;}
.h1a{height:122.460117px;}
.h19{height:145.514531px;}
.h18{height:155.400117px;}
.h17{height:158.280117px;}
.h1f{height:323.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:71.856000px;}
.w3{width:103.946873px;}
.wb{width:105.681000px;}
.w9{width:116.301000px;}
.w7{width:120.801000px;}
.w6{width:199.830000px;}
.w8{width:228.270000px;}
.wa{width:281.370000px;}
.w2{width:330.733500px;}
.w4{width:403.980000px;}
.wf{width:601.740000px;}
.w10{width:608.580000px;}
.wd{width:610.740000px;}
.wc{width:615.240000px;}
.we{width:623.160000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.725000px;}
.x5{left:10.798500px;}
.x9{left:15.105000px;}
.x45{left:16.995000px;}
.x30{left:32.040000px;}
.xe{left:47.880000px;}
.x2e{left:49.110000px;}
.x3d{left:50.730000px;}
.x41{left:55.335000px;}
.x4{left:59.221500px;}
.xf{left:61.560000px;}
.x6{left:74.514189px;}
.x10{left:84.960000px;}
.x11{left:97.770000px;}
.x2d{left:106.200000px;}
.x3c{left:109.950000px;}
.x12{left:111.450000px;}
.x35{left:115.590000px;}
.x13{left:125.310000px;}
.x3{left:135.036000px;}
.x14{left:139.170000px;}
.x15{left:152.130000px;}
.xb{left:153.390000px;}
.xc{left:181.470000px;}
.x47{left:189.030000px;}
.x28{left:191.925000px;}
.x7{left:199.168689px;}
.x1{left:204.150000px;}
.x24{left:213.165000px;}
.x21{left:228.810000px;}
.x22{left:230.250000px;}
.x3f{left:235.005000px;}
.x23{left:236.550000px;}
.x37{left:238.650000px;}
.x31{left:240.915000px;}
.x3e{left:244.830000px;}
.x16{left:247.710000px;}
.x3a{left:253.440000px;}
.x1d{left:271.515000px;}
.x1e{left:279.255000px;}
.x1f{left:303.915000px;}
.x46{left:311.010000px;}
.x29{left:313.455000px;}
.x42{left:326.805000px;}
.x2f{left:330.450000px;}
.x26{left:334.695000px;}
.x36{left:341.100000px;}
.xd{left:345.315000px;}
.x34{left:376.275000px;}
.x20{left:387.615000px;}
.xa{left:410.655000px;}
.x1c{left:446.505000px;}
.x2{left:475.305000px;}
.x8{left:487.380000px;}
.x44{left:492.585000px;}
.x40{left:499.290000px;}
.x18{left:506.085000px;}
.x33{left:515.805000px;}
.x2c{left:521.790000px;}
.x3b{left:524.550000px;}
.x19{left:532.725000px;}
.x27{left:563.700000px;}
.x2a{left:595.560000px;}
.x1a{left:717.810000px;}
.x39{left:738.150000px;}
.x43{left:744.810000px;}
.x32{left:747.150000px;}
.x2b{left:751.650000px;}
.x38{left:758.310000px;}
.x1b{left:837.180000px;}
.x17{left:984.090000px;}
@media print{
.v7{vertical-align:-8.320000pt;}
.v5{vertical-align:-2.560000pt;}
.v8{vertical-align:-1.386667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.v3{vertical-align:32.000000pt;}
.v2{vertical-align:37.760000pt;}
.v6{vertical-align:67.200000pt;}
.v4{vertical-align:69.760000pt;}
.ls4{letter-spacing:-0.670349pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.304533pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.069867pt;}
.lse{letter-spacing:-0.050560pt;}
.ls17{letter-spacing:-0.045067pt;}
.lsf{letter-spacing:-0.020480pt;}
.ls3{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.069333pt;}
.ls9{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.144000pt;}
.ls15{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.199680pt;}
.ls13{letter-spacing:0.243200pt;}
.ls6{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.342400pt;}
.lsc{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.502400pt;}
.lsb{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.206959pt;}
.ls10{letter-spacing:10.810240pt;}
.ls11{letter-spacing:13.142400pt;}
.ws7{word-spacing:-36.096000pt;}
.wsa{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.384000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.695467pt;}
.ws13{word-spacing:-14.272000pt;}
.ws2{word-spacing:-14.208000pt;}
.ws10{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.280000pt;}
.ws15{word-spacing:-10.720000pt;}
.wsc{word-spacing:-9.996800pt;}
.wse{word-spacing:-9.976320pt;}
.wsd{word-spacing:-9.946240pt;}
.ws14{word-spacing:-9.926933pt;}
.ws4{word-spacing:0.000000pt;}
.ws1{word-spacing:0.626559pt;}
.wsf{word-spacing:48.640000pt;}
.ws26{word-spacing:75.360213pt;}
.ws1a{word-spacing:76.708907pt;}
.ws29{word-spacing:76.762240pt;}
.ws1e{word-spacing:76.815573pt;}
.ws22{word-spacing:76.868907pt;}
.ws12{word-spacing:76.992000pt;}
.ws1b{word-spacing:87.628160pt;}
.ws11{word-spacing:124.992000pt;}
.ws1f{word-spacing:134.720213pt;}
.ws23{word-spacing:162.133547pt;}
.ws16{word-spacing:245.068160pt;}
.ws0{word-spacing:374.200747pt;}
.ws24{word-spacing:783.162240pt;}
.ws27{word-spacing:795.215573pt;}
.ws1c{word-spacing:799.162240pt;}
.ws18{word-spacing:807.215573pt;}
.ws20{word-spacing:821.188907pt;}
.ws25{word-spacing:946.240640pt;}
.ws28{word-spacing:958.293973pt;}
.ws19{word-spacing:970.293973pt;}
.ws1d{word-spacing:975.573973pt;}
.ws21{word-spacing:984.267307pt;}
._4{margin-left:-5.858560pt;}
._3{margin-left:-4.686720pt;}
._5{margin-left:-3.581440pt;}
._2{margin-left:-1.984000pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.274880pt;}
._7{width:2.516480pt;}
._8{width:3.796480pt;}
._a{width:5.277013pt;}
._c{width:6.784000pt;}
._d{width:7.744000pt;}
._15{width:9.216000pt;}
._16{width:10.127787pt;}
._1b{width:11.120213pt;}
._e{width:12.224000pt;}
._f{width:13.376000pt;}
._20{width:14.592000pt;}
._9{width:16.901120pt;}
._11{width:18.426880pt;}
._14{width:19.461760pt;}
._13{width:20.416000pt;}
._12{width:21.376000pt;}
._19{width:22.272000pt;}
._1a{width:23.744000pt;}
._1f{width:24.945280pt;}
._25{width:26.048000pt;}
._18{width:26.944000pt;}
._21{width:28.224000pt;}
._22{width:29.440000pt;}
._23{width:31.296000pt;}
._24{width:32.325120pt;}
._31{width:34.112000pt;}
._32{width:35.242667pt;}
._30{width:36.288000pt;}
._17{width:37.440000pt;}
._1d{width:38.720000pt;}
._1e{width:39.631360pt;}
._27{width:41.355733pt;}
._b{width:42.304000pt;}
._2f{width:46.923200pt;}
._1c{width:52.672000pt;}
._10{width:55.168000pt;}
._38{width:64.007680pt;}
._2b{width:65.664000pt;}
._29{width:76.474240pt;}
._28{width:83.215787pt;}
._37{width:102.133120pt;}
._34{width:121.066667pt;}
._2e{width:148.101547pt;}
._35{width:161.280000pt;}
._2c{width:171.684907pt;}
._2a{width:176.000000pt;}
._2d{width:176.959787pt;}
._36{width:188.800000pt;}
._33{width:279.199147pt;}
._6{width:383.783893pt;}
._26{width:932.224000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:43.790828pt;}
.fs9{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y10{bottom:-1.760000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.400000pt;}
.y12{bottom:2.960237pt;}
.yd1{bottom:3.666667pt;}
.ye3{bottom:3.680000pt;}
.yd5{bottom:5.266667pt;}
.ydc{bottom:5.280000pt;}
.yd9{bottom:5.306667pt;}
.yd6{bottom:5.586667pt;}
.ydd{bottom:5.600000pt;}
.yda{bottom:5.626667pt;}
.y14{bottom:14.080000pt;}
.y107{bottom:14.946667pt;}
.y130{bottom:14.973333pt;}
.y117{bottom:15.013333pt;}
.yf{bottom:15.200000pt;}
.y45{bottom:16.320000pt;}
.yd0{bottom:22.066667pt;}
.ye2{bottom:22.080000pt;}
.yd3{bottom:22.386667pt;}
.ye5{bottom:22.400000pt;}
.ye{bottom:41.600000pt;}
.y15{bottom:47.520000pt;}
.yc{bottom:50.400000pt;}
.y106{bottom:50.880000pt;}
.y12f{bottom:50.906667pt;}
.y116{bottom:50.946667pt;}
.y12a{bottom:50.973333pt;}
.y105{bottom:70.173333pt;}
.y115{bottom:70.213333pt;}
.y129{bottom:70.240000pt;}
.y104{bottom:86.853333pt;}
.y12e{bottom:86.880000pt;}
.y114{bottom:86.906667pt;}
.y7c{bottom:101.440000pt;}
.y73{bottom:101.760000pt;}
.y144{bottom:107.840000pt;}
.ye0{bottom:108.640000pt;}
.y102{bottom:111.266667pt;}
.y12d{bottom:111.293333pt;}
.y112{bottom:111.333333pt;}
.ycb{bottom:112.480000pt;}
.yfe{bottom:115.360000pt;}
.y78{bottom:115.680000pt;}
.y43{bottom:117.280000pt;}
.y7b{bottom:119.840000pt;}
.y72{bottom:120.160000pt;}
.y143{bottom:126.240000pt;}
.y83{bottom:126.720000pt;}
.ydf{bottom:127.040000pt;}
.y77{bottom:130.080000pt;}
.yca{bottom:130.880000pt;}
.y126{bottom:132.800000pt;}
.yfd{bottom:133.760000pt;}
.y42{bottom:135.680000pt;}
.y71{bottom:138.560000pt;}
.y142{bottom:144.640000pt;}
.y82{bottom:145.120000pt;}
.yde{bottom:145.760000pt;}
.yfc{bottom:148.160000pt;}
.yff{bottom:148.480000pt;}
.yc9{bottom:149.280000pt;}
.y125{bottom:151.200000pt;}
.y7a{bottom:152.960000pt;}
.y41{bottom:154.080000pt;}
.y70{bottom:156.960000pt;}
.ydb{bottom:160.960000pt;}
.y81{bottom:162.080000pt;}
.y141{bottom:163.360000pt;}
.yc8{bottom:167.680000pt;}
.y124{bottom:169.600000pt;}
.y80{bottom:170.080000pt;}
.y40{bottom:172.480000pt;}
.y6f{bottom:175.360000pt;}
.y100{bottom:178.653333pt;}
.y12c{bottom:178.693333pt;}
.y110{bottom:178.720000pt;}
.yd8{bottom:181.600000pt;}
.yc7{bottom:186.106667pt;}
.y123{bottom:188.026667pt;}
.y3f{bottom:190.906667pt;}
.y7f{bottom:192.986667pt;}
.y6e{bottom:193.786667pt;}
.y103{bottom:197.986667pt;}
.y113{bottom:198.053333pt;}
.y140{bottom:200.026667pt;}
.yd7{bottom:202.280000pt;}
.yc6{bottom:204.506667pt;}
.y122{bottom:206.426667pt;}
.yad{bottom:207.866667pt;}
.y3e{bottom:209.306667pt;}
.y6d{bottom:212.186667pt;}
.y101{bottom:215.866667pt;}
.y111{bottom:215.906667pt;}
.y128{bottom:215.933333pt;}
.y13f{bottom:218.426667pt;}
.yc5{bottom:222.906667pt;}
.yd4{bottom:222.920000pt;}
.y121{bottom:224.506667pt;}
.yac{bottom:226.266667pt;}
.y3d{bottom:227.706667pt;}
.y6c{bottom:230.586667pt;}
.y13e{bottom:236.826667pt;}
.y120{bottom:239.226667pt;}
.y12b{bottom:239.520000pt;}
.yc4{bottom:241.306667pt;}
.yd2{bottom:243.560000pt;}
.yab{bottom:244.666667pt;}
.y3c{bottom:246.106667pt;}
.y6b{bottom:248.986667pt;}
.y13d{bottom:255.226667pt;}
.yc3{bottom:259.706667pt;}
.yaa{bottom:263.066667pt;}
.y3b{bottom:264.506667pt;}
.y6a{bottom:267.386667pt;}
.y13c{bottom:273.626667pt;}
.yc2{bottom:278.106667pt;}
.ycf{bottom:281.000000pt;}
.ya9{bottom:281.466667pt;}
.y3a{bottom:282.906667pt;}
.y69{bottom:285.786667pt;}
.y13b{bottom:292.026667pt;}
.yc1{bottom:296.506667pt;}
.ya8{bottom:299.866667pt;}
.y39{bottom:301.306667pt;}
.y68{bottom:304.186667pt;}
.y13a{bottom:310.426667pt;}
.yc0{bottom:314.906667pt;}
.ya7{bottom:318.266667pt;}
.y38{bottom:319.706667pt;}
.y67{bottom:322.586667pt;}
.y139{bottom:328.826667pt;}
.ybf{bottom:333.306667pt;}
.ya6{bottom:336.666667pt;}
.y37{bottom:338.106667pt;}
.y66{bottom:340.986667pt;}
.y138{bottom:347.226667pt;}
.ybe{bottom:351.706667pt;}
.ya5{bottom:355.066667pt;}
.y36{bottom:356.506667pt;}
.yce{bottom:359.066667pt;}
.y65{bottom:359.386667pt;}
.y137{bottom:365.626667pt;}
.ybd{bottom:370.106667pt;}
.ya4{bottom:373.466667pt;}
.y35{bottom:374.906667pt;}
.y64{bottom:377.786667pt;}
.y10e{bottom:384.026667pt;}
.ybc{bottom:388.506667pt;}
.ya3{bottom:391.906667pt;}
.y34{bottom:393.346667pt;}
.y63{bottom:396.226667pt;}
.y10d{bottom:402.466667pt;}
.ybb{bottom:406.946667pt;}
.ya2{bottom:410.306667pt;}
.y33{bottom:411.746667pt;}
.y62{bottom:414.626667pt;}
.y10c{bottom:420.866667pt;}
.yba{bottom:425.346667pt;}
.ya1{bottom:428.706667pt;}
.y32{bottom:430.146667pt;}
.y61{bottom:433.026667pt;}
.y10b{bottom:439.266667pt;}
.yfb{bottom:440.226667pt;}
.yb9{bottom:443.746667pt;}
.ya0{bottom:447.106667pt;}
.y31{bottom:448.546667pt;}
.y60{bottom:451.426667pt;}
.y10a{bottom:457.666667pt;}
.yfa{bottom:458.626667pt;}
.yb8{bottom:462.146667pt;}
.y9f{bottom:465.506667pt;}
.y30{bottom:466.946667pt;}
.y5f{bottom:469.666667pt;}
.y109{bottom:475.746667pt;}
.y136{bottom:476.066667pt;}
.yf9{bottom:477.026667pt;}
.yb7{bottom:480.546667pt;}
.y9e{bottom:483.906667pt;}
.y2f{bottom:485.346667pt;}
.y5e{bottom:488.066667pt;}
.y108{bottom:490.466667pt;}
.y10f{bottom:490.720000pt;}
.y135{bottom:494.466667pt;}
.yf8{bottom:495.426667pt;}
.yb6{bottom:498.946667pt;}
.y9d{bottom:502.306667pt;}
.y2e{bottom:503.746667pt;}
.y5d{bottom:506.466667pt;}
.y134{bottom:512.866667pt;}
.yf7{bottom:513.826667pt;}
.yb5{bottom:517.346667pt;}
.y9c{bottom:520.706667pt;}
.y2d{bottom:522.146667pt;}
.y5c{bottom:524.866667pt;}
.y44{bottom:525.026667pt;}
.y133{bottom:530.946667pt;}
.y11f{bottom:531.266667pt;}
.yf6{bottom:532.226667pt;}
.yb4{bottom:535.746667pt;}
.y9b{bottom:539.106667pt;}
.y2c{bottom:540.546667pt;}
.y5b{bottom:543.266667pt;}
.y132{bottom:549.346667pt;}
.y11e{bottom:549.666667pt;}
.yf5{bottom:550.626667pt;}
.yb3{bottom:554.146667pt;}
.y9a{bottom:557.506667pt;}
.y2b{bottom:558.946667pt;}
.y5a{bottom:561.666667pt;}
.y11d{bottom:568.066667pt;}
.yf4{bottom:569.026667pt;}
.yb2{bottom:572.546667pt;}
.y99{bottom:575.906667pt;}
.y2a{bottom:577.346667pt;}
.y59{bottom:580.066667pt;}
.y11c{bottom:586.466667pt;}
.yf3{bottom:587.426667pt;}
.yb1{bottom:590.946667pt;}
.y98{bottom:594.306667pt;}
.y29{bottom:595.746667pt;}
.y7e{bottom:598.146667pt;}
.y58{bottom:598.466667pt;}
.y11b{bottom:604.893333pt;}
.yf2{bottom:605.853333pt;}
.yb0{bottom:609.373333pt;}
.y97{bottom:612.733333pt;}
.y28{bottom:614.173333pt;}
.y57{bottom:616.893333pt;}
.y11a{bottom:623.293333pt;}
.yf1{bottom:624.253333pt;}
.yaf{bottom:627.773333pt;}
.y96{bottom:629.693333pt;}
.y27{bottom:632.573333pt;}
.y56{bottom:635.293333pt;}
.y95{bottom:637.693333pt;}
.y119{bottom:641.373333pt;}
.y131{bottom:641.693333pt;}
.yae{bottom:642.173333pt;}
.yf0{bottom:642.653333pt;}
.y26{bottom:650.653333pt;}
.y145{bottom:653.373333pt;}
.y55{bottom:653.693333pt;}
.y118{bottom:656.093333pt;}
.y127{bottom:656.320000pt;}
.y94{bottom:660.893333pt;}
.yef{bottom:661.053333pt;}
.y25{bottom:669.053333pt;}
.ycd{bottom:671.773333pt;}
.y54{bottom:672.093333pt;}
.y93{bottom:679.293333pt;}
.yee{bottom:679.453333pt;}
.y24{bottom:687.773333pt;}
.ycc{bottom:690.173333pt;}
.y53{bottom:690.493333pt;}
.y92{bottom:696.413333pt;}
.yed{bottom:697.853333pt;}
.y91{bottom:704.413333pt;}
.y23{bottom:706.173333pt;}
.y52{bottom:708.893333pt;}
.yec{bottom:716.253333pt;}
.y22{bottom:724.253333pt;}
.y51{bottom:727.293333pt;}
.y90{bottom:727.613333pt;}
.yeb{bottom:734.653333pt;}
.y21{bottom:742.653333pt;}
.y50{bottom:745.693333pt;}
.y8f{bottom:746.013333pt;}
.yea{bottom:753.053333pt;}
.y20{bottom:761.373333pt;}
.y4f{bottom:763.773333pt;}
.y76{bottom:764.093333pt;}
.y8e{bottom:764.413333pt;}
.ye9{bottom:768.093333pt;}
.y1f{bottom:779.773333pt;}
.y4e{bottom:782.173333pt;}
.y75{bottom:782.493333pt;}
.y8d{bottom:782.813333pt;}
.ye8{bottom:788.733333pt;}
.y1e{bottom:797.853333pt;}
.y8c{bottom:799.773333pt;}
.y79{bottom:800.573333pt;}
.y4d{bottom:800.893333pt;}
.y8b{bottom:807.773333pt;}
.ye7{bottom:809.573333pt;}
.y1d{bottom:816.293333pt;}
.y4c{bottom:819.333333pt;}
.ye6{bottom:830.213333pt;}
.y8a{bottom:831.493333pt;}
.y1c{bottom:835.013333pt;}
.y4b{bottom:837.413333pt;}
.y74{bottom:837.733333pt;}
.y89{bottom:849.893333pt;}
.ye4{bottom:850.853333pt;}
.y1b{bottom:853.413333pt;}
.y4a{bottom:856.133333pt;}
.y88{bottom:868.293333pt;}
.y1a{bottom:871.493333pt;}
.y49{bottom:874.533333pt;}
.y87{bottom:886.693333pt;}
.ye1{bottom:888.293333pt;}
.y19{bottom:889.733333pt;}
.y48{bottom:892.933333pt;}
.y18{bottom:905.413333pt;}
.y85{bottom:908.933333pt;}
.y86{bottom:909.573333pt;}
.y47{bottom:911.333333pt;}
.y84{bottom:916.933333pt;}
.y17{bottom:926.853333pt;}
.y7d{bottom:929.413333pt;}
.y46{bottom:929.733333pt;}
.yd{bottom:939.333333pt;}
.yb{bottom:946.693333pt;}
.y11{bottom:960.564728pt;}
.ya{bottom:961.093333pt;}
.y13{bottom:967.813333pt;}
.y9{bottom:975.653333pt;}
.y8{bottom:990.053333pt;}
.y7{bottom:1004.613333pt;}
.y6{bottom:1019.040000pt;}
.y5{bottom:1033.600000pt;}
.y2{bottom:1045.600000pt;}
.y4{bottom:1048.000000pt;}
.y3{bottom:1062.560000pt;}
.y1{bottom:1064.000000pt;}
.h9{height:13.909749pt;}
.hc{height:14.398667pt;}
.h1c{height:19.986667pt;}
.h1e{height:20.000000pt;}
.h1d{height:20.032000pt;}
.hb{height:26.386667pt;}
.h7{height:28.401875pt;}
.h6{height:34.886250pt;}
.he{height:35.975313pt;}
.h4{height:36.468750pt;}
.h1b{height:36.786667pt;}
.h2{height:37.868750pt;}
.h12{height:43.986667pt;}
.h8{height:44.735000pt;}
.h3{height:45.625000pt;}
.ha{height:45.672465pt;}
.h20{height:52.134375pt;}
.h21{height:52.260000pt;}
.h5{height:52.306667pt;}
.h13{height:59.340000pt;}
.h10{height:62.812500pt;}
.hf{height:64.500000pt;}
.h11{height:72.655000pt;}
.hd{height:75.465000pt;}
.h16{height:94.812500pt;}
.h14{height:99.906250pt;}
.h15{height:108.693437pt;}
.h1a{height:108.853437pt;}
.h19{height:129.346250pt;}
.h18{height:138.133437pt;}
.h17{height:140.693438pt;}
.h1f{height:287.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:63.872000pt;}
.w3{width:92.397221pt;}
.wb{width:93.938667pt;}
.w9{width:103.378667pt;}
.w7{width:107.378667pt;}
.w6{width:177.626667pt;}
.w8{width:202.906667pt;}
.wa{width:250.106667pt;}
.w2{width:293.985333pt;}
.w4{width:359.093333pt;}
.wf{width:534.880000pt;}
.w10{width:540.960000pt;}
.wd{width:542.880000pt;}
.wc{width:546.880000pt;}
.we{width:553.920000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.866667pt;}
.x5{left:9.598667pt;}
.x9{left:13.426667pt;}
.x45{left:15.106667pt;}
.x30{left:28.480000pt;}
.xe{left:42.560000pt;}
.x2e{left:43.653333pt;}
.x3d{left:45.093333pt;}
.x41{left:49.186667pt;}
.x4{left:52.641333pt;}
.xf{left:54.720000pt;}
.x6{left:66.234834pt;}
.x10{left:75.520000pt;}
.x11{left:86.906667pt;}
.x2d{left:94.400000pt;}
.x3c{left:97.733333pt;}
.x12{left:99.066667pt;}
.x35{left:102.746667pt;}
.x13{left:111.386667pt;}
.x3{left:120.032000pt;}
.x14{left:123.706667pt;}
.x15{left:135.226667pt;}
.xb{left:136.346667pt;}
.xc{left:161.306667pt;}
.x47{left:168.026667pt;}
.x28{left:170.600000pt;}
.x7{left:177.038834pt;}
.x1{left:181.466667pt;}
.x24{left:189.480000pt;}
.x21{left:203.386667pt;}
.x22{left:204.666667pt;}
.x3f{left:208.893333pt;}
.x23{left:210.266667pt;}
.x37{left:212.133333pt;}
.x31{left:214.146667pt;}
.x3e{left:217.626667pt;}
.x16{left:220.186667pt;}
.x3a{left:225.280000pt;}
.x1d{left:241.346667pt;}
.x1e{left:248.226667pt;}
.x1f{left:270.146667pt;}
.x46{left:276.453333pt;}
.x29{left:278.626667pt;}
.x42{left:290.493333pt;}
.x2f{left:293.733333pt;}
.x26{left:297.506667pt;}
.x36{left:303.200000pt;}
.xd{left:306.946667pt;}
.x34{left:334.466667pt;}
.x20{left:344.546667pt;}
.xa{left:365.026667pt;}
.x1c{left:396.893333pt;}
.x2{left:422.493333pt;}
.x8{left:433.226667pt;}
.x44{left:437.853333pt;}
.x40{left:443.813333pt;}
.x18{left:449.853333pt;}
.x33{left:458.493333pt;}
.x2c{left:463.813333pt;}
.x3b{left:466.266667pt;}
.x19{left:473.533333pt;}
.x27{left:501.066667pt;}
.x2a{left:529.386667pt;}
.x1a{left:638.053333pt;}
.x39{left:656.133333pt;}
.x43{left:662.053333pt;}
.x32{left:664.133333pt;}
.x2b{left:668.133333pt;}
.x38{left:674.053333pt;}
.x1b{left:744.160000pt;}
.x17{left:874.746667pt;}
}




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