
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_5b6bfab779dbaee720812f12.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952637;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_d1c5db8cc85e88ddec295baa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_a16a4d1dd75561f5469d4d76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_230fea56bef0b54fcebeb833.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_b2fac36717cfe95aed898ba7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.729412;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_be41b9cb1e81715254576af7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.899902;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_5af9331d9c3c1a683eec57cc.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8fbaecdf721055aac7745a19.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_17106b64c146bd859ec434f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_806bf7f22a8ccfa60cdb32c5.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_bc65ef9b4e1bb1d47a86026c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.959473;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:ff12;src:url('chunks/assets/font_9f411e01569b3c830b32ac1a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.952637;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls8{letter-spacing:-20.880000px;}
.ls18{letter-spacing:-15.660000px;}
.lsf{letter-spacing:-14.220000px;}
.ls1a{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.331200px;}
.ls1b{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.274800px;}
.ls6{letter-spacing:-0.205800px;}
.ls2{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.047520px;}
.ls0{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.094800px;}
.ls13{letter-spacing:0.132600px;}
.lsa{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.239040px;}
.ls9{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.444960px;}
.lsd{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.485280px;}
.ls5{letter-spacing:0.624000px;}
.ls15{letter-spacing:125.460000px;}
.ls16{letter-spacing:145.699920px;}
.ls7{letter-spacing:146.280000px;}
.ls10{letter-spacing:172.002720px;}
.lsc{letter-spacing:172.026720px;}
.lsb{letter-spacing:172.206720px;}
.ls3{letter-spacing:1431.096000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-72.000000px;}
.ws9{word-spacing:-59.760000px;}
.ws0{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.712000px;}
.ws5{word-spacing:-16.527000px;}
.wsc{word-spacing:-15.072600px;}
.wsd{word-spacing:-14.987520px;}
.ws8{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.665200px;}
.wsa{word-spacing:-9.388800px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:0.262800px;}
._24{margin-left:-145.180080px;}
._23{margin-left:-140.317200px;}
._21{margin-left:-51.104880px;}
._20{margin-left:-38.620080px;}
._8{margin-left:-4.536000px;}
._7{margin-left:-3.456000px;}
._e{margin-left:-2.340000px;}
._0{margin-left:-1.026000px;}
._3{width:1.020000px;}
._1{width:2.436000px;}
._2{width:3.672000px;}
._6{width:4.752000px;}
._f{width:5.820000px;}
._12{width:6.984000px;}
._15{width:8.208000px;}
._14{width:9.216000px;}
._11{width:10.890000px;}
._d{width:12.024000px;}
._a{width:13.032000px;}
._9{width:14.112000px;}
._b{width:15.120000px;}
._c{width:16.920000px;}
._13{width:19.008000px;}
._19{width:20.292000px;}
._1b{width:21.372000px;}
._1a{width:23.256000px;}
._17{width:25.002000px;}
._16{width:26.208000px;}
._2a{width:28.224000px;}
._25{width:43.027200px;}
._1e{width:48.764160px;}
._27{width:73.656000px;}
._26{width:74.928000px;}
._28{width:107.784000px;}
._29{width:108.804000px;}
._1d{width:141.744000px;}
._18{width:144.696000px;}
._1c{width:146.568000px;}
._1f{width:189.618480px;}
._22{width:331.369200px;}
._5{width:470.916000px;}
._10{width:1261.794240px;}
._4{width:1433.832000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc1{color:rgb(118,113,113);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:75.893905px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y35{bottom:1.800000px;}
.yff{bottom:3.960000px;}
.y122{bottom:4.320000px;}
.y119{bottom:5.040000px;}
.y101{bottom:6.120000px;}
.y37{bottom:8.100000px;}
.y123{bottom:19.980000px;}
.yfe{bottom:20.880000px;}
.y121{bottom:21.240000px;}
.y11e{bottom:21.780000px;}
.y118{bottom:21.960000px;}
.y33{bottom:51.840000px;}
.y8{bottom:57.600000px;}
.y36{bottom:67.680000px;}
.y34{bottom:74.700000px;}
.y7{bottom:76.860000px;}
.yfc{bottom:83.160000px;}
.y6{bottom:91.980000px;}
.yfb{bottom:100.080000px;}
.y5{bottom:107.280000px;}
.y4{bottom:122.400000px;}
.y32{bottom:122.580000px;}
.y3{bottom:137.520000px;}
.ye2{bottom:139.500000px;}
.yac{bottom:144.000000px;}
.y11d{bottom:146.520000px;}
.y163{bottom:147.960000px;}
.y125{bottom:153.210000px;}
.y2f{bottom:154.290000px;}
.yc4{bottom:155.190000px;}
.ye1{bottom:159.870000px;}
.y107{bottom:161.310000px;}
.y11c{bottom:163.440000px;}
.yab{bottom:164.370000px;}
.y14b{bottom:167.610000px;}
.y162{bottom:168.330000px;}
.y83{bottom:173.190000px;}
.y124{bottom:173.550000px;}
.y2e{bottom:174.450000px;}
.yc3{bottom:175.530000px;}
.y62{bottom:178.410000px;}
.y106{bottom:181.650000px;}
.yaa{bottom:184.530000px;}
.y14a{bottom:187.950000px;}
.ye0{bottom:189.030000px;}
.y11b{bottom:189.930000px;}
.y2d{bottom:194.790000px;}
.yc2{bottom:195.870000px;}
.y161{bottom:197.490000px;}
.y61{bottom:198.750000px;}
.y82{bottom:202.530000px;}
.ya9{bottom:204.870000px;}
.ydf{bottom:209.370000px;}
.y105{bottom:210.810000px;}
.yc1{bottom:216.030000px;}
.y149{bottom:217.110000px;}
.y160{bottom:217.830000px;}
.y60{bottom:218.910000px;}
.y81{bottom:222.870000px;}
.y2c{bottom:223.950000px;}
.y120{bottom:224.670000px;}
.ya8{bottom:225.030000px;}
.yde{bottom:229.530000px;}
.yc0{bottom:236.370000px;}
.y148{bottom:237.450000px;}
.y5f{bottom:239.250000px;}
.y104{bottom:239.970000px;}
.y2b{bottom:244.290000px;}
.ya7{bottom:245.370000px;}
.y15f{bottom:246.990000px;}
.ydd{bottom:249.870000px;}
.y80{bottom:252.030000px;}
.yfa{bottom:256.350000px;}
.ybf{bottom:256.530000px;}
.y147{bottom:257.610000px;}
.y11f{bottom:260.310000px;}
.y2a{bottom:264.450000px;}
.ya6{bottom:265.530000px;}
.y15e{bottom:267.330000px;}
.y5e{bottom:268.410000px;}
.ydc{bottom:270.030000px;}
.y103{bottom:276.150000px;}
.y146{bottom:277.950000px;}
.y7f{bottom:281.190000px;}
.y29{bottom:284.790000px;}
.ybe{bottom:285.690000px;}
.ya5{bottom:285.870000px;}
.y102{bottom:295.950000px;}
.y15d{bottom:296.490000px;}
.y5d{bottom:297.570000px;}
.ydb{bottom:299.190000px;}
.y7e{bottom:301.530000px;}
.y28{bottom:304.950000px;}
.ya4{bottom:306.030000px;}
.y145{bottom:307.110000px;}
.y100{bottom:315.750000px;}
.y15c{bottom:316.830000px;}
.y5c{bottom:317.910000px;}
.yda{bottom:319.530000px;}
.y27{bottom:325.290000px;}
.ya3{bottom:326.370000px;}
.y144{bottom:327.450000px;}
.y7d{bottom:330.690000px;}
.y11a{bottom:331.410000px;}
.yfd{bottom:335.550000px;}
.y5b{bottom:338.250000px;}
.yd9{bottom:339.870000px;}
.y15b{bottom:345.990000px;}
.ya2{bottom:346.530000px;}
.y143{bottom:347.610000px;}
.y26{bottom:354.450000px;}
.y5a{bottom:358.410000px;}
.y7c{bottom:360.030000px;}
.y15a{bottom:366.330000px;}
.ybd{bottom:366.870000px;}
.y117{bottom:367.050000px;}
.y142{bottom:367.950000px;}
.y25{bottom:374.790000px;}
.ya1{bottom:375.690000px;}
.y7b{bottom:380.370000px;}
.yf9{bottom:383.610000px;}
.y159{bottom:386.670000px;}
.y59{bottom:387.570000px;}
.y141{bottom:388.110000px;}
.y24{bottom:394.950000px;}
.ybc{bottom:396.030000px;}
.yf8{bottom:403.995000px;}
.ya0{bottom:405.075000px;}
.y58{bottom:407.955000px;}
.y7a{bottom:409.575000px;}
.y23{bottom:415.335000px;}
.y158{bottom:415.875000px;}
.y116{bottom:416.235000px;}
.y140{bottom:417.315000px;}
.ybb{bottom:425.235000px;}
.y9f{bottom:425.415000px;}
.y57{bottom:428.295000px;}
.yd8{bottom:429.915000px;}
.yf7{bottom:433.155000px;}
.y22{bottom:435.495000px;}
.y157{bottom:436.215000px;}
.y115{bottom:436.575000px;}
.y13f{bottom:437.655000px;}
.y79{bottom:438.735000px;}
.y9e{bottom:445.575000px;}
.y56{bottom:448.455000px;}
.y175{bottom:450.075000px;}
.yba{bottom:454.575000px;}
.y21{bottom:455.835000px;}
.y156{bottom:456.375000px;}
.y13e{bottom:457.995000px;}
.y78{bottom:459.075000px;}
.yf6{bottom:462.315000px;}
.y114{bottom:465.735000px;}
.y55{bottom:468.795000px;}
.y9d{bottom:474.735000px;}
.yb9{bottom:474.915000px;}
.y13d{bottom:478.155000px;}
.yd7{bottom:479.415000px;}
.y174{bottom:483.735000px;}
.y20{bottom:485.715000px;}
.y155{bottom:486.435000px;}
.y77{bottom:488.235000px;}
.yf5{bottom:491.655000px;}
.y9c{bottom:495.075000px;}
.y54{bottom:497.955000px;}
.yd6{bottom:499.575000px;}
.y13c{bottom:508.215000px;}
.y173{bottom:513.075000px;}
.y9b{bottom:515.415000px;}
.y1f{bottom:517.575000px;}
.y154{bottom:518.115000px;}
.y53{bottom:518.295000px;}
.yd5{bottom:519.915000px;}
.yf4{bottom:520.815000px;}
.yb8{bottom:524.235000px;}
.y172{bottom:533.415000px;}
.y52{bottom:538.455000px;}
.y13b{bottom:540.075000px;}
.y9a{bottom:544.575000px;}
.y1e{bottom:546.735000px;}
.y153{bottom:547.455000px;}
.yd4{bottom:549.075000px;}
.yf3{bottom:550.155000px;}
.y113{bottom:553.575000px;}
.y51{bottom:558.795000px;}
.y99{bottom:564.915000px;}
.y1d{bottom:567.075000px;}
.y152{bottom:567.795000px;}
.y13a{bottom:569.235000px;}
.y112{bottom:573.915000px;}
.y76{bottom:576.075000px;}
.yd3{bottom:578.235000px;}
.y50{bottom:578.955000px;}
.yf2{bottom:579.315000px;}
.y171{bottom:582.735000px;}
.y98{bottom:585.075000px;}
.y1c{bottom:587.415000px;}
.y151{bottom:587.955000px;}
.y139{bottom:589.575000px;}
.yb7{bottom:594.075000px;}
.yd2{bottom:598.575000px;}
.yf1{bottom:599.655000px;}
.y111{bottom:603.075000px;}
.y75{bottom:605.235000px;}
.y97{bottom:605.415000px;}
.y4f{bottom:608.115000px;}
.y150{bottom:608.295000px;}
.y138{bottom:609.915000px;}
.yb6{bottom:614.415000px;}
.y1b{bottom:616.575000px;}
.yd1{bottom:618.915000px;}
.y170{bottom:623.415000px;}
.y96{bottom:625.575000px;}
.y14f{bottom:628.455000px;}
.yf0{bottom:628.815000px;}
.y137{bottom:630.075000px;}
.y110{bottom:632.235000px;}
.y74{bottom:634.575000px;}
.y4e{bottom:637.455000px;}
.yd0{bottom:639.075000px;}
.y1a{bottom:645.735000px;}
.y95{bottom:645.915000px;}
.yef{bottom:649.185000px;}
.y16f{bottom:652.605000px;}
.y4d{bottom:657.825000px;}
.y14e{bottom:658.545000px;}
.y136{bottom:659.265000px;}
.ycf{bottom:659.445000px;}
.y10f{bottom:661.605000px;}
.y73{bottom:663.765000px;}
.y94{bottom:666.105000px;}
.yee{bottom:669.525000px;}
.y16e{bottom:672.945000px;}
.y19{bottom:675.105000px;}
.y4c{bottom:677.985000px;}
.yce{bottom:679.605000px;}
.y10e{bottom:681.945000px;}
.yb5{bottom:684.105000px;}
.yed{bottom:689.685000px;}
.y72{bottom:693.105000px;}
.y93{bottom:695.265000px;}
.y4b{bottom:698.325000px;}
.ycd{bottom:699.945000px;}
.y10d{bottom:702.105000px;}
.y18{bottom:704.265000px;}
.yb4{bottom:713.265000px;}
.y4a{bottom:718.485000px;}
.yec{bottom:718.845000px;}
.ycc{bottom:720.105000px;}
.y71{bottom:722.265000px;}
.y10c{bottom:722.445000px;}
.y17{bottom:724.605000px;}
.y135{bottom:729.105000px;}
.yb3{bottom:733.605000px;}
.y49{bottom:738.825000px;}
.ycb{bottom:740.445000px;}
.y16d{bottom:742.605000px;}
.y16{bottom:744.945000px;}
.yeb{bottom:748.185000px;}
.y134{bottom:749.445000px;}
.y70{bottom:751.605000px;}
.y92{bottom:753.765000px;}
.yb2{bottom:753.945000px;}
.y48{bottom:758.985000px;}
.yca{bottom:760.605000px;}
.y16c{bottom:762.945000px;}
.y15{bottom:765.105000px;}
.y133{bottom:769.605000px;}
.y91{bottom:774.105000px;}
.yea{bottom:778.245000px;}
.y6f{bottom:780.765000px;}
.y14d{bottom:780.945000px;}
.y14{bottom:785.445000px;}
.y47{bottom:788.145000px;}
.yc9{bottom:789.765000px;}
.y16b{bottom:792.105000px;}
.y90{bottom:794.445000px;}
.y132{bottom:798.765000px;}
.y10b{bottom:801.105000px;}
.y13{bottom:805.605000px;}
.y46{bottom:808.485000px;}
.y6e{bottom:810.105000px;}
.y16a{bottom:812.445000px;}
.y131{bottom:819.105000px;}
.y10a{bottom:821.445000px;}
.y8f{bottom:823.605000px;}
.y12{bottom:825.945000px;}
.y45{bottom:828.825000px;}
.y14c{bottom:830.265000px;}
.y6d{bottom:830.445000px;}
.y169{bottom:832.605000px;}
.ye9{bottom:839.265000px;}
.y130{bottom:839.445000px;}
.y8e{bottom:843.945000px;}
.y11{bottom:846.105000px;}
.y44{bottom:848.985000px;}
.y6c{bottom:850.605000px;}
.yb1{bottom:852.765000px;}
.ye8{bottom:859.605000px;}
.y168{bottom:861.765000px;}
.y12f{bottom:868.605000px;}
.y43{bottom:869.325000px;}
.y6b{bottom:870.945000px;}
.y8d{bottom:873.105000px;}
.y10{bottom:876.165000px;}
.ye7{bottom:879.945000px;}
.y167{bottom:882.105000px;}
.y12e{bottom:888.945000px;}
.y42{bottom:889.485000px;}
.yc8{bottom:891.105000px;}
.y8c{bottom:893.445000px;}
.y6a{bottom:900.150000px;}
.yb0{bottom:902.310000px;}
.y166{bottom:902.490000px;}
.yf{bottom:908.070000px;}
.y12d{bottom:909.150000px;}
.y109{bottom:911.490000px;}
.y41{bottom:918.690000px;}
.yc7{bottom:920.310000px;}
.y69{bottom:920.490000px;}
.y8b{bottom:922.650000px;}
.y12c{bottom:929.490000px;}
.y165{bottom:931.650000px;}
.ye{bottom:937.230000px;}
.y68{bottom:940.650000px;}
.y8a{bottom:942.990000px;}
.y40{bottom:948.930000px;}
.yc6{bottom:949.650000px;}
.yaf{bottom:951.810000px;}
.y164{bottom:951.990000px;}
.yd{bottom:957.570000px;}
.y12b{bottom:958.650000px;}
.y67{bottom:960.990000px;}
.yc5{bottom:969.990000px;}
.y89{bottom:972.150000px;}
.y12a{bottom:978.990000px;}
.y3f{bottom:980.070000px;}
.ye6{bottom:981.150000px;}
.y66{bottom:990.150000px;}
.y88{bottom:992.490000px;}
.yc{bottom:997.530000px;}
.y129{bottom:999.150000px;}
.yae{bottom:1001.310000px;}
.y108{bottom:1001.490000px;}
.y3e{bottom:1010.310000px;}
.y65{bottom:1010.490000px;}
.y128{bottom:1019.490000px;}
.y87{bottom:1021.650000px;}
.yb{bottom:1024.530000px;}
.y3d{bottom:1030.650000px;}
.y127{bottom:1039.650000px;}
.y86{bottom:1041.990000px;}
.yad{bottom:1050.810000px;}
.y3c{bottom:1050.990000px;}
.ya{bottom:1051.530000px;}
.y126{bottom:1059.990000px;}
.y85{bottom:1062.150000px;}
.y3b{bottom:1071.150000px;}
.y64{bottom:1080.150000px;}
.y9{bottom:1085.730000px;}
.y84{bottom:1091.310000px;}
.ye5{bottom:1091.490000px;}
.y3a{bottom:1100.310000px;}
.y63{bottom:1100.490000px;}
.y2{bottom:1101.390000px;}
.ye4{bottom:1111.650000px;}
.y39{bottom:1120.650000px;}
.ye3{bottom:1140.810000px;}
.y38{bottom:1140.990000px;}
.y31{bottom:1178.820000px;}
.y1{bottom:1194.120000px;}
.y30{bottom:1196.280000px;}
.h17{height:19.080000px;}
.hb{height:22.500000px;}
.hd{height:24.120000px;}
.h16{height:33.660000px;}
.h1e{height:34.020000px;}
.h1d{height:34.740000px;}
.h1b{height:34.920000px;}
.h1a{height:34.956000px;}
.h3{height:37.599609px;}
.h15{height:40.472227px;}
.h19{height:41.451328px;}
.h1f{height:41.493516px;}
.h9{height:41.610234px;}
.h18{height:43.506914px;}
.ha{height:47.796328px;}
.h10{height:48.761719px;}
.he{height:49.992188px;}
.h4{height:50.132812px;}
.h11{height:51.398851px;}
.h13{height:52.417969px;}
.h12{height:52.695866px;}
.h7{height:57.051211px;}
.hf{height:58.655391px;}
.h8{height:59.439023px;}
.h5{height:64.853086px;}
.h2{height:65.884219px;}
.h6{height:66.676641px;}
.hc{height:67.375547px;}
.h14{height:112.860000px;}
.h1c{height:176.400000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.536000px;}
.wb{width:56.700000px;}
.w7{width:72.396000px;}
.wa{width:84.996000px;}
.w9{width:107.820000px;}
.wd{width:132.120000px;}
.w5{width:141.840000px;}
.w6{width:155.370000px;}
.wc{width:236.415000px;}
.w8{width:306.930000px;}
.w4{width:677.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.xd{left:10.800000px;}
.x1a{left:12.960000px;}
.x21{left:17.460000px;}
.x25{left:38.880000px;}
.x24{left:43.920000px;}
.x3{left:106.415987px;}
.x1c{left:124.775987px;}
.x28{left:148.895987px;}
.x4{left:165.629987px;}
.xb{left:180.209987px;}
.x1e{left:215.670000px;}
.x1d{left:220.889987px;}
.x5{left:227.189987px;}
.x17{left:249.690000px;}
.x10{left:257.969987px;}
.x13{left:269.714987px;}
.x12{left:278.714987px;}
.x1f{left:301.575000px;}
.x6{left:305.174987px;}
.xf{left:307.694987px;}
.x15{left:309.674987px;}
.x11{left:319.214987px;}
.x14{left:342.614987px;}
.x20{left:359.175000px;}
.x8{left:362.234987px;}
.x7{left:374.654987px;}
.xe{left:387.254987px;}
.xa{left:390.134987px;}
.x26{left:391.754987px;}
.x27{left:397.694987px;}
.x18{left:405.975000px;}
.x9{left:409.394987px;}
.x22{left:416.775000px;}
.x1{left:446.504987px;}
.x19{left:479.085000px;}
.x23{left:653.910000px;}
.x1b{left:728.609987px;}
.x2{left:786.749987px;}
.xc{left:789.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls8{letter-spacing:-18.560000pt;}
.ls18{letter-spacing:-13.920000pt;}
.lsf{letter-spacing:-12.640000pt;}
.ls1a{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.294400pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.244267pt;}
.ls6{letter-spacing:-0.182933pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.042240pt;}
.ls0{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.084267pt;}
.ls13{letter-spacing:0.117867pt;}
.lsa{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.212480pt;}
.ls9{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.395520pt;}
.lsd{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.431360pt;}
.ls5{letter-spacing:0.554667pt;}
.ls15{letter-spacing:111.520000pt;}
.ls16{letter-spacing:129.511040pt;}
.ls7{letter-spacing:130.026667pt;}
.ls10{letter-spacing:152.891307pt;}
.lsc{letter-spacing:152.912640pt;}
.lsb{letter-spacing:153.072640pt;}
.ls3{letter-spacing:1272.085333pt;}
.ws10{word-spacing:-64.000000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.690667pt;}
.wsc{word-spacing:-13.397867pt;}
.wsd{word-spacing:-13.322240pt;}
.ws8{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.035733pt;}
.wsa{word-spacing:-8.345600pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:0.233600pt;}
._24{margin-left:-129.048960pt;}
._23{margin-left:-124.726400pt;}
._21{margin-left:-45.426560pt;}
._20{margin-left:-34.328960pt;}
._8{margin-left:-4.032000pt;}
._7{margin-left:-3.072000pt;}
._e{margin-left:-2.080000pt;}
._0{margin-left:-0.912000pt;}
._3{width:0.906667pt;}
._1{width:2.165333pt;}
._2{width:3.264000pt;}
._6{width:4.224000pt;}
._f{width:5.173333pt;}
._12{width:6.208000pt;}
._15{width:7.296000pt;}
._14{width:8.192000pt;}
._11{width:9.680000pt;}
._d{width:10.688000pt;}
._a{width:11.584000pt;}
._9{width:12.544000pt;}
._b{width:13.440000pt;}
._c{width:15.040000pt;}
._13{width:16.896000pt;}
._19{width:18.037333pt;}
._1b{width:18.997333pt;}
._1a{width:20.672000pt;}
._17{width:22.224000pt;}
._16{width:23.296000pt;}
._2a{width:25.088000pt;}
._25{width:38.246400pt;}
._1e{width:43.345920pt;}
._27{width:65.472000pt;}
._26{width:66.602667pt;}
._28{width:95.808000pt;}
._29{width:96.714667pt;}
._1d{width:125.994667pt;}
._18{width:128.618667pt;}
._1c{width:130.282667pt;}
._1f{width:168.549760pt;}
._22{width:294.550400pt;}
._5{width:418.592000pt;}
._10{width:1121.594880pt;}
._4{width:1274.517333pt;}
.fs7{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:67.461249pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:1.600000pt;}
.yff{bottom:3.520000pt;}
.y122{bottom:3.840000pt;}
.y119{bottom:4.480000pt;}
.y101{bottom:5.440000pt;}
.y37{bottom:7.200000pt;}
.y123{bottom:17.760000pt;}
.yfe{bottom:18.560000pt;}
.y121{bottom:18.880000pt;}
.y11e{bottom:19.360000pt;}
.y118{bottom:19.520000pt;}
.y33{bottom:46.080000pt;}
.y8{bottom:51.200000pt;}
.y36{bottom:60.160000pt;}
.y34{bottom:66.400000pt;}
.y7{bottom:68.320000pt;}
.yfc{bottom:73.920000pt;}
.y6{bottom:81.760000pt;}
.yfb{bottom:88.960000pt;}
.y5{bottom:95.360000pt;}
.y4{bottom:108.800000pt;}
.y32{bottom:108.960000pt;}
.y3{bottom:122.240000pt;}
.ye2{bottom:124.000000pt;}
.yac{bottom:128.000000pt;}
.y11d{bottom:130.240000pt;}
.y163{bottom:131.520000pt;}
.y125{bottom:136.186667pt;}
.y2f{bottom:137.146667pt;}
.yc4{bottom:137.946667pt;}
.ye1{bottom:142.106667pt;}
.y107{bottom:143.386667pt;}
.y11c{bottom:145.280000pt;}
.yab{bottom:146.106667pt;}
.y14b{bottom:148.986667pt;}
.y162{bottom:149.626667pt;}
.y83{bottom:153.946667pt;}
.y124{bottom:154.266667pt;}
.y2e{bottom:155.066667pt;}
.yc3{bottom:156.026667pt;}
.y62{bottom:158.586667pt;}
.y106{bottom:161.466667pt;}
.yaa{bottom:164.026667pt;}
.y14a{bottom:167.066667pt;}
.ye0{bottom:168.026667pt;}
.y11b{bottom:168.826667pt;}
.y2d{bottom:173.146667pt;}
.yc2{bottom:174.106667pt;}
.y161{bottom:175.546667pt;}
.y61{bottom:176.666667pt;}
.y82{bottom:180.026667pt;}
.ya9{bottom:182.106667pt;}
.ydf{bottom:186.106667pt;}
.y105{bottom:187.386667pt;}
.yc1{bottom:192.026667pt;}
.y149{bottom:192.986667pt;}
.y160{bottom:193.626667pt;}
.y60{bottom:194.586667pt;}
.y81{bottom:198.106667pt;}
.y2c{bottom:199.066667pt;}
.y120{bottom:199.706667pt;}
.ya8{bottom:200.026667pt;}
.yde{bottom:204.026667pt;}
.yc0{bottom:210.106667pt;}
.y148{bottom:211.066667pt;}
.y5f{bottom:212.666667pt;}
.y104{bottom:213.306667pt;}
.y2b{bottom:217.146667pt;}
.ya7{bottom:218.106667pt;}
.y15f{bottom:219.546667pt;}
.ydd{bottom:222.106667pt;}
.y80{bottom:224.026667pt;}
.yfa{bottom:227.866667pt;}
.ybf{bottom:228.026667pt;}
.y147{bottom:228.986667pt;}
.y11f{bottom:231.386667pt;}
.y2a{bottom:235.066667pt;}
.ya6{bottom:236.026667pt;}
.y15e{bottom:237.626667pt;}
.y5e{bottom:238.586667pt;}
.ydc{bottom:240.026667pt;}
.y103{bottom:245.466667pt;}
.y146{bottom:247.066667pt;}
.y7f{bottom:249.946667pt;}
.y29{bottom:253.146667pt;}
.ybe{bottom:253.946667pt;}
.ya5{bottom:254.106667pt;}
.y102{bottom:263.066667pt;}
.y15d{bottom:263.546667pt;}
.y5d{bottom:264.506667pt;}
.ydb{bottom:265.946667pt;}
.y7e{bottom:268.026667pt;}
.y28{bottom:271.066667pt;}
.ya4{bottom:272.026667pt;}
.y145{bottom:272.986667pt;}
.y100{bottom:280.666667pt;}
.y15c{bottom:281.626667pt;}
.y5c{bottom:282.586667pt;}
.yda{bottom:284.026667pt;}
.y27{bottom:289.146667pt;}
.ya3{bottom:290.106667pt;}
.y144{bottom:291.066667pt;}
.y7d{bottom:293.946667pt;}
.y11a{bottom:294.586667pt;}
.yfd{bottom:298.266667pt;}
.y5b{bottom:300.666667pt;}
.yd9{bottom:302.106667pt;}
.y15b{bottom:307.546667pt;}
.ya2{bottom:308.026667pt;}
.y143{bottom:308.986667pt;}
.y26{bottom:315.066667pt;}
.y5a{bottom:318.586667pt;}
.y7c{bottom:320.026667pt;}
.y15a{bottom:325.626667pt;}
.ybd{bottom:326.106667pt;}
.y117{bottom:326.266667pt;}
.y142{bottom:327.066667pt;}
.y25{bottom:333.146667pt;}
.ya1{bottom:333.946667pt;}
.y7b{bottom:338.106667pt;}
.yf9{bottom:340.986667pt;}
.y159{bottom:343.706667pt;}
.y59{bottom:344.506667pt;}
.y141{bottom:344.986667pt;}
.y24{bottom:351.066667pt;}
.ybc{bottom:352.026667pt;}
.yf8{bottom:359.106667pt;}
.ya0{bottom:360.066667pt;}
.y58{bottom:362.626667pt;}
.y7a{bottom:364.066667pt;}
.y23{bottom:369.186667pt;}
.y158{bottom:369.666667pt;}
.y116{bottom:369.986667pt;}
.y140{bottom:370.946667pt;}
.ybb{bottom:377.986667pt;}
.y9f{bottom:378.146667pt;}
.y57{bottom:380.706667pt;}
.yd8{bottom:382.146667pt;}
.yf7{bottom:385.026667pt;}
.y22{bottom:387.106667pt;}
.y157{bottom:387.746667pt;}
.y115{bottom:388.066667pt;}
.y13f{bottom:389.026667pt;}
.y79{bottom:389.986667pt;}
.y9e{bottom:396.066667pt;}
.y56{bottom:398.626667pt;}
.y175{bottom:400.066667pt;}
.yba{bottom:404.066667pt;}
.y21{bottom:405.186667pt;}
.y156{bottom:405.666667pt;}
.y13e{bottom:407.106667pt;}
.y78{bottom:408.066667pt;}
.yf6{bottom:410.946667pt;}
.y114{bottom:413.986667pt;}
.y55{bottom:416.706667pt;}
.y9d{bottom:421.986667pt;}
.yb9{bottom:422.146667pt;}
.y13d{bottom:425.026667pt;}
.yd7{bottom:426.146667pt;}
.y174{bottom:429.986667pt;}
.y20{bottom:431.746667pt;}
.y155{bottom:432.386667pt;}
.y77{bottom:433.986667pt;}
.yf5{bottom:437.026667pt;}
.y9c{bottom:440.066667pt;}
.y54{bottom:442.626667pt;}
.yd6{bottom:444.066667pt;}
.y13c{bottom:451.746667pt;}
.y173{bottom:456.066667pt;}
.y9b{bottom:458.146667pt;}
.y1f{bottom:460.066667pt;}
.y154{bottom:460.546667pt;}
.y53{bottom:460.706667pt;}
.yd5{bottom:462.146667pt;}
.yf4{bottom:462.946667pt;}
.yb8{bottom:465.986667pt;}
.y172{bottom:474.146667pt;}
.y52{bottom:478.626667pt;}
.y13b{bottom:480.066667pt;}
.y9a{bottom:484.066667pt;}
.y1e{bottom:485.986667pt;}
.y153{bottom:486.626667pt;}
.yd4{bottom:488.066667pt;}
.yf3{bottom:489.026667pt;}
.y113{bottom:492.066667pt;}
.y51{bottom:496.706667pt;}
.y99{bottom:502.146667pt;}
.y1d{bottom:504.066667pt;}
.y152{bottom:504.706667pt;}
.y13a{bottom:505.986667pt;}
.y112{bottom:510.146667pt;}
.y76{bottom:512.066667pt;}
.yd3{bottom:513.986667pt;}
.y50{bottom:514.626667pt;}
.yf2{bottom:514.946667pt;}
.y171{bottom:517.986667pt;}
.y98{bottom:520.066667pt;}
.y1c{bottom:522.146667pt;}
.y151{bottom:522.626667pt;}
.y139{bottom:524.066667pt;}
.yb7{bottom:528.066667pt;}
.yd2{bottom:532.066667pt;}
.yf1{bottom:533.026667pt;}
.y111{bottom:536.066667pt;}
.y75{bottom:537.986667pt;}
.y97{bottom:538.146667pt;}
.y4f{bottom:540.546667pt;}
.y150{bottom:540.706667pt;}
.y138{bottom:542.146667pt;}
.yb6{bottom:546.146667pt;}
.y1b{bottom:548.066667pt;}
.yd1{bottom:550.146667pt;}
.y170{bottom:554.146667pt;}
.y96{bottom:556.066667pt;}
.y14f{bottom:558.626667pt;}
.yf0{bottom:558.946667pt;}
.y137{bottom:560.066667pt;}
.y110{bottom:561.986667pt;}
.y74{bottom:564.066667pt;}
.y4e{bottom:566.626667pt;}
.yd0{bottom:568.066667pt;}
.y1a{bottom:573.986667pt;}
.y95{bottom:574.146667pt;}
.yef{bottom:577.053333pt;}
.y16f{bottom:580.093333pt;}
.y4d{bottom:584.733333pt;}
.y14e{bottom:585.373333pt;}
.y136{bottom:586.013333pt;}
.ycf{bottom:586.173333pt;}
.y10f{bottom:588.093333pt;}
.y73{bottom:590.013333pt;}
.y94{bottom:592.093333pt;}
.yee{bottom:595.133333pt;}
.y16e{bottom:598.173333pt;}
.y19{bottom:600.093333pt;}
.y4c{bottom:602.653333pt;}
.yce{bottom:604.093333pt;}
.y10e{bottom:606.173333pt;}
.yb5{bottom:608.093333pt;}
.yed{bottom:613.053333pt;}
.y72{bottom:616.093333pt;}
.y93{bottom:618.013333pt;}
.y4b{bottom:620.733333pt;}
.ycd{bottom:622.173333pt;}
.y10d{bottom:624.093333pt;}
.y18{bottom:626.013333pt;}
.yb4{bottom:634.013333pt;}
.y4a{bottom:638.653333pt;}
.yec{bottom:638.973333pt;}
.ycc{bottom:640.093333pt;}
.y71{bottom:642.013333pt;}
.y10c{bottom:642.173333pt;}
.y17{bottom:644.093333pt;}
.y135{bottom:648.093333pt;}
.yb3{bottom:652.093333pt;}
.y49{bottom:656.733333pt;}
.ycb{bottom:658.173333pt;}
.y16d{bottom:660.093333pt;}
.y16{bottom:662.173333pt;}
.yeb{bottom:665.053333pt;}
.y134{bottom:666.173333pt;}
.y70{bottom:668.093333pt;}
.y92{bottom:670.013333pt;}
.yb2{bottom:670.173333pt;}
.y48{bottom:674.653333pt;}
.yca{bottom:676.093333pt;}
.y16c{bottom:678.173333pt;}
.y15{bottom:680.093333pt;}
.y133{bottom:684.093333pt;}
.y91{bottom:688.093333pt;}
.yea{bottom:691.773333pt;}
.y6f{bottom:694.013333pt;}
.y14d{bottom:694.173333pt;}
.y14{bottom:698.173333pt;}
.y47{bottom:700.573333pt;}
.yc9{bottom:702.013333pt;}
.y16b{bottom:704.093333pt;}
.y90{bottom:706.173333pt;}
.y132{bottom:710.013333pt;}
.y10b{bottom:712.093333pt;}
.y13{bottom:716.093333pt;}
.y46{bottom:718.653333pt;}
.y6e{bottom:720.093333pt;}
.y16a{bottom:722.173333pt;}
.y131{bottom:728.093333pt;}
.y10a{bottom:730.173333pt;}
.y8f{bottom:732.093333pt;}
.y12{bottom:734.173333pt;}
.y45{bottom:736.733333pt;}
.y14c{bottom:738.013333pt;}
.y6d{bottom:738.173333pt;}
.y169{bottom:740.093333pt;}
.ye9{bottom:746.013333pt;}
.y130{bottom:746.173333pt;}
.y8e{bottom:750.173333pt;}
.y11{bottom:752.093333pt;}
.y44{bottom:754.653333pt;}
.y6c{bottom:756.093333pt;}
.yb1{bottom:758.013333pt;}
.ye8{bottom:764.093333pt;}
.y168{bottom:766.013333pt;}
.y12f{bottom:772.093333pt;}
.y43{bottom:772.733333pt;}
.y6b{bottom:774.173333pt;}
.y8d{bottom:776.093333pt;}
.y10{bottom:778.813333pt;}
.ye7{bottom:782.173333pt;}
.y167{bottom:784.093333pt;}
.y12e{bottom:790.173333pt;}
.y42{bottom:790.653333pt;}
.yc8{bottom:792.093333pt;}
.y8c{bottom:794.173333pt;}
.y6a{bottom:800.133333pt;}
.yb0{bottom:802.053333pt;}
.y166{bottom:802.213333pt;}
.yf{bottom:807.173333pt;}
.y12d{bottom:808.133333pt;}
.y109{bottom:810.213333pt;}
.y41{bottom:816.613333pt;}
.yc7{bottom:818.053333pt;}
.y69{bottom:818.213333pt;}
.y8b{bottom:820.133333pt;}
.y12c{bottom:826.213333pt;}
.y165{bottom:828.133333pt;}
.ye{bottom:833.093333pt;}
.y68{bottom:836.133333pt;}
.y8a{bottom:838.213333pt;}
.y40{bottom:843.493333pt;}
.yc6{bottom:844.133333pt;}
.yaf{bottom:846.053333pt;}
.y164{bottom:846.213333pt;}
.yd{bottom:851.173333pt;}
.y12b{bottom:852.133333pt;}
.y67{bottom:854.213333pt;}
.yc5{bottom:862.213333pt;}
.y89{bottom:864.133333pt;}
.y12a{bottom:870.213333pt;}
.y3f{bottom:871.173333pt;}
.ye6{bottom:872.133333pt;}
.y66{bottom:880.133333pt;}
.y88{bottom:882.213333pt;}
.yc{bottom:886.693333pt;}
.y129{bottom:888.133333pt;}
.yae{bottom:890.053333pt;}
.y108{bottom:890.213333pt;}
.y3e{bottom:898.053333pt;}
.y65{bottom:898.213333pt;}
.y128{bottom:906.213333pt;}
.y87{bottom:908.133333pt;}
.yb{bottom:910.693333pt;}
.y3d{bottom:916.133333pt;}
.y127{bottom:924.133333pt;}
.y86{bottom:926.213333pt;}
.yad{bottom:934.053333pt;}
.y3c{bottom:934.213333pt;}
.ya{bottom:934.693333pt;}
.y126{bottom:942.213333pt;}
.y85{bottom:944.133333pt;}
.y3b{bottom:952.133333pt;}
.y64{bottom:960.133333pt;}
.y9{bottom:965.093333pt;}
.y84{bottom:970.053333pt;}
.ye5{bottom:970.213333pt;}
.y3a{bottom:978.053333pt;}
.y63{bottom:978.213333pt;}
.y2{bottom:979.013333pt;}
.ye4{bottom:988.133333pt;}
.y39{bottom:996.133333pt;}
.ye3{bottom:1014.053333pt;}
.y38{bottom:1014.213333pt;}
.y31{bottom:1047.840000pt;}
.y1{bottom:1061.440000pt;}
.y30{bottom:1063.360000pt;}
.h17{height:16.960000pt;}
.hb{height:20.000000pt;}
.hd{height:21.440000pt;}
.h16{height:29.920000pt;}
.h1e{height:30.240000pt;}
.h1d{height:30.880000pt;}
.h1b{height:31.040000pt;}
.h1a{height:31.072000pt;}
.h3{height:33.421875pt;}
.h15{height:35.975313pt;}
.h19{height:36.845625pt;}
.h1f{height:36.883125pt;}
.h9{height:36.986875pt;}
.h18{height:38.672812pt;}
.ha{height:42.485625pt;}
.h10{height:43.343750pt;}
.he{height:44.437500pt;}
.h4{height:44.562500pt;}
.h11{height:45.687867pt;}
.h13{height:46.593750pt;}
.h12{height:46.840769pt;}
.h7{height:50.712187pt;}
.hf{height:52.138125pt;}
.h8{height:52.834688pt;}
.h5{height:57.647187pt;}
.h2{height:58.563750pt;}
.h6{height:59.268125pt;}
.hc{height:59.889375pt;}
.h14{height:100.320000pt;}
.h1c{height:156.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.032000pt;}
.wb{width:50.400000pt;}
.w7{width:64.352000pt;}
.wa{width:75.552000pt;}
.w9{width:95.840000pt;}
.wd{width:117.440000pt;}
.w5{width:126.080000pt;}
.w6{width:138.106667pt;}
.wc{width:210.146667pt;}
.w8{width:272.826667pt;}
.w4{width:602.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.xd{left:9.600000pt;}
.x1a{left:11.520000pt;}
.x21{left:15.520000pt;}
.x25{left:34.560000pt;}
.x24{left:39.040000pt;}
.x3{left:94.591988pt;}
.x1c{left:110.911988pt;}
.x28{left:132.351988pt;}
.x4{left:147.226655pt;}
.xb{left:160.186655pt;}
.x1e{left:191.706667pt;}
.x1d{left:196.346655pt;}
.x5{left:201.946655pt;}
.x17{left:221.946667pt;}
.x10{left:229.306655pt;}
.x13{left:239.746655pt;}
.x12{left:247.746655pt;}
.x1f{left:268.066667pt;}
.x6{left:271.266655pt;}
.xf{left:273.506655pt;}
.x15{left:275.266655pt;}
.x11{left:283.746655pt;}
.x14{left:304.546655pt;}
.x20{left:319.266667pt;}
.x8{left:321.986655pt;}
.x7{left:333.026655pt;}
.xe{left:344.226655pt;}
.xa{left:346.786655pt;}
.x26{left:348.226655pt;}
.x27{left:353.506655pt;}
.x18{left:360.866667pt;}
.x9{left:363.906655pt;}
.x22{left:370.466667pt;}
.x1{left:396.893322pt;}
.x19{left:425.853333pt;}
.x23{left:581.253333pt;}
.x1b{left:647.653322pt;}
.x2{left:699.333322pt;}
.xc{left:701.413333pt;}
}




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