
    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_980e36d85fb7e8e1ad1e1fc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_7ecba82d53028392f06e6ad4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_568d18f1be429f280e3ef90c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_bb8f7ad29fdb21f321d7aa41.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_b279b1bf8a673fbc35b8e5cd.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_f74e9ddeefa87feca616b3bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_a17644f6a25a81999e0a93e0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8c5a93e26569bcbf8d2a7610.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_699f3019f508dde769c0775f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.v3{vertical-align:4.320000px;}
.ls28{letter-spacing:-0.852000px;}
.ls29{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.702000px;}
.ls2e{letter-spacing:-0.630000px;}
.ls34{letter-spacing:-0.472200px;}
.ls32{letter-spacing:-0.282000px;}
.ls6{letter-spacing:-0.259800px;}
.ls1b{letter-spacing:-0.229800px;}
.ls36{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.208800px;}
.ls26{letter-spacing:-0.164400px;}
.ls14{letter-spacing:-0.142800px;}
.ls1d{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.115800px;}
.ls2b{letter-spacing:-0.115200px;}
.ls4{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.078000px;}
.ls24{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.058320px;}
.ls5{letter-spacing:-0.053280px;}
.ls20{letter-spacing:-0.048960px;}
.ls1c{letter-spacing:-0.034560px;}
.ls25{letter-spacing:-0.025920px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.022320px;}
.ls18{letter-spacing:0.025920px;}
.ls16{letter-spacing:0.031680px;}
.ls12{letter-spacing:0.038880px;}
.ls2{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.060600px;}
.lsa{letter-spacing:0.064080px;}
.ls17{letter-spacing:0.089280px;}
.ls23{letter-spacing:0.089400px;}
.ls31{letter-spacing:0.100800px;}
.ls2f{letter-spacing:0.129600px;}
.ls1e{letter-spacing:0.132600px;}
.ls21{letter-spacing:0.141000px;}
.lsb{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.195000px;}
.ls35{letter-spacing:0.247800px;}
.ls30{letter-spacing:0.256200px;}
.ls27{letter-spacing:0.302400px;}
.ls1f{letter-spacing:0.371400px;}
.ls37{letter-spacing:0.391800px;}
.lse{letter-spacing:0.894240px;}
.ls15{letter-spacing:19.781280px;}
.ls3{letter-spacing:42.426720px;}
.ls2c{letter-spacing:59.345280px;}
.ls2a{letter-spacing:59.489280px;}
.ls2d{letter-spacing:64.026720px;}
.ls33{letter-spacing:64.170720px;}
.ls19{letter-spacing:64.206720px;}
.ls7{letter-spacing:70.709760px;}
.ls8{letter-spacing:91.733760px;}
.lsf{letter-spacing:849.149760px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc2{text-shadow:-0.015em 0 rgb(128,128,128),0 0.015em rgb(128,128,128),0.015em 0 rgb(128,128,128),0 -0.015em  rgb(128,128,128);}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(128,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1f{word-spacing:-66.240000px;}
.ws23{word-spacing:-59.760000px;}
.ws0{word-spacing:-27.174240px;}
.ws19{word-spacing:-21.643200px;}
.ws11{word-spacing:-21.582720px;}
.ws10{word-spacing:-18.808440px;}
.ws2{word-spacing:-16.666560px;}
.ws5{word-spacing:-16.506480px;}
.ws6{word-spacing:-16.353480px;}
.ws28{word-spacing:-15.362040px;}
.ws16{word-spacing:-15.341640px;}
.ws1e{word-spacing:-15.272640px;}
.ws18{word-spacing:-15.111240px;}
.ws14{word-spacing:-15.102840px;}
.ws24{word-spacing:-15.099840px;}
.ws25{word-spacing:-15.071040px;}
.ws1c{word-spacing:-15.059640px;}
.ws1a{word-spacing:-15.030840px;}
.ws12{word-spacing:-15.001920px;}
.ws15{word-spacing:-14.970240px;}
.ws17{word-spacing:-14.921280px;}
.ws13{word-spacing:-14.892240px;}
.ws20{word-spacing:-14.855040px;}
.ws27{word-spacing:-14.837640px;}
.ws1d{word-spacing:-14.805840px;}
.ws26{word-spacing:-14.754240px;}
.ws22{word-spacing:-14.340240px;}
.ws1b{word-spacing:-14.268240px;}
.wse{word-spacing:-13.700760px;}
.wsa{word-spacing:-13.566360px;}
.wsd{word-spacing:-13.544640px;}
.ws3{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.427760px;}
.ws7{word-spacing:-13.389960px;}
.wsf{word-spacing:-13.362960px;}
.wsb{word-spacing:-13.296960px;}
.ws21{word-spacing:-12.204000px;}
.ws1{word-spacing:-10.924560px;}
.ws9{word-spacing:-10.902240px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-12.962640px;}
._15{margin-left:-11.608080px;}
._14{margin-left:-10.318800px;}
._13{margin-left:-9.271440px;}
._7{margin-left:-7.536960px;}
._6{margin-left:-5.239440px;}
._8{margin-left:-4.138560px;}
._5{margin-left:-3.033360px;}
._2{margin-left:-1.563120px;}
._9{width:1.534080px;}
._10{width:3.206880px;}
._20{width:4.371840px;}
._1f{width:5.405040px;}
._24{width:6.425280px;}
._1b{width:7.617600px;}
._1a{width:8.809920px;}
._22{width:10.108080px;}
._1c{width:11.194560px;}
._1e{width:12.225840px;}
._1d{width:13.697280px;}
._21{width:16.361280px;}
._23{width:17.818560px;}
._c{width:18.905760px;}
._25{width:20.666880px;}
._26{width:23.051520px;}
._28{width:28.814400px;}
._29{width:30.297840px;}
._18{width:41.413680px;}
._17{width:42.429600px;}
._11{width:46.873200px;}
._19{width:64.961280px;}
._2b{width:77.825520px;}
._2a{width:78.955200px;}
._12{width:80.436960px;}
._1{width:309.065760px;}
._0{width:533.165760px;}
._3{width:847.383600px;}
._a{width:849.149760px;}
._d{width:856.248960px;}
._27{width:1265.476080px;}
._4{width:1286.672160px;}
._e{width:1289.236080px;}
._b{width:1333.925760px;}
._f{width:1350.197760px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(31,31,31);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs0{font-size:120.240000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:275.760000px;}
.y0{bottom:0.000000px;}
.y13e{bottom:4.500000px;}
.y28{bottom:6.120000px;}
.yd{bottom:7.560000px;}
.ya{bottom:7.740000px;}
.y12{bottom:8.280000px;}
.y35{bottom:8.460000px;}
.y22{bottom:8.820000px;}
.y20{bottom:10.080000px;}
.y2d{bottom:12.240000px;}
.y55{bottom:13.860000px;}
.y5e{bottom:14.040000px;}
.y59{bottom:17.640000px;}
.y57{bottom:21.420000px;}
.y52{bottom:22.905000px;}
.y13d{bottom:24.660000px;}
.y145{bottom:24.705000px;}
.y27{bottom:26.460000px;}
.y34{bottom:26.820000px;}
.y36{bottom:31.680000px;}
.y50{bottom:32.085000px;}
.y2c{bottom:38.520000px;}
.y32{bottom:38.565000px;}
.y51{bottom:41.265000px;}
.y18{bottom:45.000000px;}
.y26{bottom:46.620000px;}
.y2{bottom:56.376000px;}
.y2a{bottom:59.940000px;}
.y17{bottom:64.440000px;}
.y31{bottom:64.665000px;}
.y2b{bottom:64.800000px;}
.y24{bottom:65.160000px;}
.y1e{bottom:65.376000px;}
.y25{bottom:66.960000px;}
.y1d{bottom:79.956000px;}
.y16{bottom:84.060000px;}
.y2f{bottom:86.085000px;}
.y30{bottom:90.945000px;}
.y113{bottom:101.556000px;}
.y15{bottom:107.640000px;}
.yac{bottom:114.876000px;}
.yc4{bottom:117.756000px;}
.yed{bottom:120.456000px;}
.y112{bottom:121.716000px;}
.y132{bottom:122.256000px;}
.y14{bottom:131.400000px;}
.yab{bottom:135.036000px;}
.yec{bottom:140.616000px;}
.y111{bottom:141.876000px;}
.y131{bottom:144.036000px;}
.yaa{bottom:155.190000px;}
.yeb{bottom:160.770000px;}
.y130{bottom:165.630000px;}
.y110{bottom:166.350000px;}
.ya9{bottom:175.350000px;}
.yea{bottom:185.250000px;}
.y10f{bottom:186.510000px;}
.ya8{bottom:195.510000px;}
.y8b{bottom:197.850000px;}
.y12f{bottom:199.470000px;}
.ye9{bottom:205.410000px;}
.y10e{bottom:206.670000px;}
.y8a{bottom:218.010000px;}
.ya7{bottom:220.170000px;}
.y12e{bottom:221.250000px;}
.ye8{bottom:225.570000px;}
.y10d{bottom:231.330000px;}
.y89{bottom:238.170000px;}
.ya6{bottom:240.330000px;}
.y12d{bottom:242.850000px;}
.ye7{bottom:245.730000px;}
.y10c{bottom:251.490000px;}
.y88{bottom:258.330000px;}
.ya5{bottom:260.310000px;}
.y12c{bottom:264.630000px;}
.ye6{bottom:265.890000px;}
.y10b{bottom:271.650000px;}
.y87{bottom:278.535000px;}
.ya4{bottom:280.515000px;}
.y1a{bottom:281.955000px;}
.ye5{bottom:286.095000px;}
.y12b{bottom:286.455000px;}
.y10a{bottom:291.855000px;}
.ya3{bottom:300.675000px;}
.y86{bottom:302.655000px;}
.ye4{bottom:306.255000px;}
.y12a{bottom:308.235000px;}
.y109{bottom:312.015000px;}
.y19{bottom:315.615000px;}
.ya2{bottom:320.835000px;}
.y62{bottom:322.635000px;}
.yc3{bottom:325.335000px;}
.y13{bottom:331.275000px;}
.y108{bottom:332.175000px;}
.y129{bottom:332.895000px;}
.y85{bottom:334.515000px;}
.ye3{bottom:336.495000px;}
.ya1{bottom:340.995000px;}
.y107{bottom:352.335000px;}
.y128{bottom:353.055000px;}
.y61{bottom:357.195000px;}
.y84{bottom:359.175000px;}
.ya0{bottom:361.155000px;}
.y106{bottom:372.495000px;}
.y127{bottom:377.535000px;}
.y83{bottom:379.335000px;}
.y9f{bottom:381.315000px;}
.y105{bottom:396.975000px;}
.y126{bottom:397.695000px;}
.y82{bottom:399.495000px;}
.y9e{bottom:405.975000px;}
.ye2{bottom:414.975000px;}
.y104{bottom:417.135000px;}
.y81{bottom:419.655000px;}
.y9d{bottom:426.135000px;}
.y125{bottom:427.755000px;}
.y60{bottom:431.175000px;}
.ye1{bottom:435.135000px;}
.y103{bottom:437.295000px;}
.y80{bottom:443.775000px;}
.y124{bottom:447.915000px;}
.y9c{bottom:450.615000px;}
.ye0{bottom:455.295000px;}
.y102{bottom:457.455000px;}
.y5f{bottom:469.695000px;}
.y9b{bottom:470.775000px;}
.y123{bottom:472.755000px;}
.ydf{bottom:475.455000px;}
.y7f{bottom:475.635000px;}
.y101{bottom:477.615000px;}
.y11{bottom:478.335000px;}
.y9a{bottom:490.935000px;}
.y122{bottom:491.115000px;}
.yde{bottom:495.615000px;}
.y100{bottom:497.775000px;}
.y7e{bottom:500.295000px;}
.y121{bottom:509.475000px;}
.y99{bottom:511.095000px;}
.ydd{bottom:515.775000px;}
.y7d{bottom:520.455000px;}
.yff{bottom:522.435000px;}
.y5d{bottom:522.975000px;}
.y10{bottom:527.655000px;}
.y98{bottom:531.255000px;}
.y120{bottom:533.595000px;}
.yfe{bottom:542.595000px;}
.y7c{bottom:545.115000px;}
.ydc{bottom:545.655000px;}
.y97{bottom:551.415000px;}
.y11f{bottom:553.755000px;}
.y5c{bottom:561.705000px;}
.yfd{bottom:562.785000px;}
.y7b{bottom:565.305000px;}
.ydb{bottom:565.845000px;}
.yf{bottom:568.905000px;}
.y96{bottom:571.605000px;}
.y11e{bottom:573.945000px;}
.y7a{bottom:585.465000px;}
.yda{bottom:590.505000px;}
.y95{bottom:591.765000px;}
.yfc{bottom:593.025000px;}
.y11d{bottom:594.105000px;}
.y79{bottom:605.625000px;}
.ye{bottom:606.345000px;}
.y94{bottom:611.925000px;}
.y5b{bottom:614.985000px;}
.yd9{bottom:615.165000px;}
.y11c{bottom:623.265000px;}
.y14c{bottom:625.245000px;}
.yc{bottom:626.505000px;}
.y78{bottom:630.105000px;}
.yc2{bottom:631.905000px;}
.yd8{bottom:636.225000px;}
.y93{bottom:642.165000px;}
.y5a{bottom:642.345000px;}
.y11b{bottom:643.425000px;}
.y14b{bottom:649.905000px;}
.yc1{bottom:652.065000px;}
.yb{bottom:652.605000px;}
.y77{bottom:654.765000px;}
.yd7{bottom:656.385000px;}
.y11a{bottom:663.585000px;}
.y58{bottom:669.525000px;}
.yfb{bottom:671.505000px;}
.yc0{bottom:672.225000px;}
.y14a{bottom:674.565000px;}
.y76{bottom:674.925000px;}
.yd6{bottom:677.445000px;}
.y9{bottom:678.885000px;}
.y39{bottom:680.145000px;}
.yfa{bottom:691.665000px;}
.ybf{bottom:692.385000px;}
.y119{bottom:693.825000px;}
.y75{bottom:695.085000px;}
.y149{bottom:699.225000px;}
.yd5{bottom:707.325000px;}
.yf9{bottom:711.825000px;}
.ybe{bottom:712.545000px;}
.y8{bottom:713.265000px;}
.y38{bottom:713.985000px;}
.y56{bottom:715.245000px;}
.y92{bottom:720.645000px;}
.y148{bottom:723.885000px;}
.yd4{bottom:727.485000px;}
.yf8{bottom:731.985000px;}
.ybd{bottom:732.705000px;}
.y74{bottom:735.405000px;}
.y7{bottom:736.665000px;}
.y91{bottom:740.805000px;}
.y37{bottom:747.645000px;}
.y147{bottom:748.545000px;}
.yd3{bottom:752.145000px;}
.y73{bottom:755.565000px;}
.ybc{bottom:757.365000px;}
.y90{bottom:760.965000px;}
.y33{bottom:764.025000px;}
.y6{bottom:764.745000px;}
.y48{bottom:765.465000px;}
.y54{bottom:768.525000px;}
.y146{bottom:771.945000px;}
.yf7{bottom:772.125000px;}
.yd2{bottom:772.305000px;}
.ybb{bottom:776.805000px;}
.y72{bottom:780.225000px;}
.y8f{bottom:781.125000px;}
.yd1{bottom:792.465000px;}
.y47{bottom:794.085000px;}
.yba{bottom:796.965000px;}
.y71{bottom:804.885000px;}
.y8e{bottom:805.245000px;}
.y5{bottom:805.965000px;}
.y53{bottom:806.685000px;}
.y2e{bottom:810.465000px;}
.yd0{bottom:812.625000px;}
.yb9{bottom:817.125000px;}
.y144{bottom:821.265000px;}
.y46{bottom:821.445000px;}
.y70{bottom:825.045000px;}
.yf6{bottom:827.745000px;}
.ycf{bottom:832.785000px;}
.y4f{bottom:834.765000px;}
.yb8{bottom:838.005000px;}
.y8d{bottom:842.190000px;}
.y6f{bottom:845.070000px;}
.y4{bottom:848.670000px;}
.y45{bottom:848.850000px;}
.yf5{bottom:849.390000px;}
.y118{bottom:852.990000px;}
.yce{bottom:857.490000px;}
.yb7{bottom:858.210000px;}
.y8c{bottom:860.370000px;}
.y6e{bottom:865.230000px;}
.y143{bottom:870.630000px;}
.yf4{bottom:871.170000px;}
.y44{bottom:876.030000px;}
.y117{bottom:877.470000px;}
.ycd{bottom:877.650000px;}
.yb6{bottom:878.370000px;}
.y6d{bottom:885.390000px;}
.yf3{bottom:892.950000px;}
.ycc{bottom:897.630000px;}
.yb5{bottom:898.530000px;}
.y142{bottom:899.790000px;}
.y3{bottom:901.410000px;}
.y43{bottom:903.390000px;}
.y6c{bottom:905.550000px;}
.y13a{bottom:908.610000px;}
.yf2{bottom:914.730000px;}
.y29{bottom:916.170000px;}
.ycb{bottom:917.790000px;}
.yb4{bottom:918.690000px;}
.y4e{bottom:924.090000px;}
.y6b{bottom:925.710000px;}
.y42{bottom:930.750000px;}
.yf1{bottom:936.330000px;}
.y116{bottom:937.950000px;}
.yb3{bottom:938.670000px;}
.yca{bottom:942.450000px;}
.y6a{bottom:945.870000px;}
.y141{bottom:949.110000px;}
.y41{bottom:958.110000px;}
.yb2{bottom:958.830000px;}
.yc9{bottom:962.610000px;}
.y139{bottom:964.050000px;}
.y69{bottom:966.030000px;}
.y40{bottom:976.290000px;}
.y140{bottom:978.270000px;}
.yc8{bottom:982.770000px;}
.y138{bottom:985.830000px;}
.y68{bottom:986.190000px;}
.yb1{bottom:989.430000px;}
.y3f{bottom:994.650000px;}
.y23{bottom:995.730000px;}
.y4d{bottom:1002.390000px;}
.yf0{bottom:1002.930000px;}
.y67{bottom:1006.350000px;}
.y13f{bottom:1007.250000px;}
.yc7{bottom:1007.430000px;}
.y137{bottom:1007.610000px;}
.y3e{bottom:1013.010000px;}
.yef{bottom:1023.090000px;}
.y66{bottom:1026.510000px;}
.y4c{bottom:1027.050000px;}
.yc6{bottom:1027.590000px;}
.y136{bottom:1029.390000px;}
.y13c{bottom:1036.410000px;}
.y3d{bottom:1040.190000px;}
.yee{bottom:1043.250000px;}
.y65{bottom:1046.490000px;}
.yc5{bottom:1047.750000px;}
.y135{bottom:1050.990000px;}
.y4b{bottom:1051.710000px;}
.y115{bottom:1063.410000px;}
.y64{bottom:1066.650000px;}
.y3c{bottom:1067.550000px;}
.yb0{bottom:1067.910000px;}
.y134{bottom:1072.770000px;}
.y4a{bottom:1075.830000px;}
.y21{bottom:1080.510000px;}
.y114{bottom:1087.890000px;}
.yaf{bottom:1088.070000px;}
.y63{bottom:1090.950000px;}
.y13b{bottom:1093.650000px;}
.y49{bottom:1094.190000px;}
.y3b{bottom:1094.910000px;}
.y133{bottom:1106.430000px;}
.yae{bottom:1108.050000px;}
.y1f{bottom:1108.590000px;}
.y3a{bottom:1123.920000px;}
.yad{bottom:1128.240000px;}
.y1{bottom:1137.240000px;}
.y1c{bottom:1152.180000px;}
.y1b{bottom:1189.620000px;}
.h27{height:24.480000px;}
.h26{height:24.660000px;}
.ha{height:26.100000px;}
.h8{height:26.280000px;}
.h13{height:27.180000px;}
.h1b{height:27.360000px;}
.h11{height:34.596000px;}
.h19{height:38.160000px;}
.h1d{height:38.520000px;}
.h1c{height:38.736000px;}
.hc{height:41.220000px;}
.h23{height:41.238281px;}
.h21{height:44.118281px;}
.h24{height:44.820000px;}
.h28{height:44.856000px;}
.h17{height:45.720000px;}
.h10{height:45.931641px;}
.h3{height:47.980898px;}
.h1a{height:53.280000px;}
.hf{height:59.439023px;}
.he{height:61.189805px;}
.h9{height:62.327813px;}
.hb{height:65.884219px;}
.h20{height:67.824844px;}
.h7{height:69.086250px;}
.h25{height:71.613281px;}
.h22{height:71.966250px;}
.h18{height:74.556000px;}
.h15{height:78.840000px;}
.h1f{height:81.101250px;}
.h14{height:84.060000px;}
.h12{height:86.255508px;}
.h1e{height:87.859687px;}
.h16{height:104.976000px;}
.h6{height:114.486328px;}
.h2{height:123.116836px;}
.h5{height:137.109375px;}
.hd{height:147.060000px;}
.h4{height:282.357773px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:20.880000px;}
.wa{width:60.876000px;}
.wc{width:151.560000px;}
.w3{width:159.150000px;}
.w8{width:197.850000px;}
.w4{width:201.090000px;}
.wb{width:236.190000px;}
.w5{width:360.435000px;}
.w9{width:513.105000px;}
.w6{width:679.830000px;}
.w7{width:711.690000px;}
.we{width:746.610000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:1.260000px;}
.x3{left:8.100000px;}
.xa{left:23.220000px;}
.x9{left:25.020000px;}
.x17{left:30.096000px;}
.x2{left:59.579987px;}
.x14{left:61.740000px;}
.xb{left:76.139987px;}
.x16{left:84.780000px;}
.xd{left:86.579987px;}
.x12{left:113.615987px;}
.xc{left:121.176000px;}
.x13{left:140.615987px;}
.x11{left:202.529987px;}
.x4{left:219.450000px;}
.x7{left:222.330000px;}
.xf{left:243.569987px;}
.x8{left:258.510000px;}
.x1{left:259.769987px;}
.x5{left:421.275000px;}
.x6{left:493.274987px;}
.x10{left:689.504987px;}
.xe{left:743.549987px;}
@media print{
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.v3{vertical-align:3.840000pt;}
.ls28{letter-spacing:-0.757333pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.624000pt;}
.ls2e{letter-spacing:-0.560000pt;}
.ls34{letter-spacing:-0.419733pt;}
.ls32{letter-spacing:-0.250667pt;}
.ls6{letter-spacing:-0.230933pt;}
.ls1b{letter-spacing:-0.204267pt;}
.ls36{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.185600pt;}
.ls26{letter-spacing:-0.146133pt;}
.ls14{letter-spacing:-0.126933pt;}
.ls1d{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls2b{letter-spacing:-0.102400pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.069333pt;}
.ls24{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls20{letter-spacing:-0.043520pt;}
.ls1c{letter-spacing:-0.030720pt;}
.ls25{letter-spacing:-0.023040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.019840pt;}
.ls18{letter-spacing:0.023040pt;}
.ls16{letter-spacing:0.028160pt;}
.ls12{letter-spacing:0.034560pt;}
.ls2{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.053867pt;}
.lsa{letter-spacing:0.056960pt;}
.ls17{letter-spacing:0.079360pt;}
.ls23{letter-spacing:0.079467pt;}
.ls31{letter-spacing:0.089600pt;}
.ls2f{letter-spacing:0.115200pt;}
.ls1e{letter-spacing:0.117867pt;}
.ls21{letter-spacing:0.125333pt;}
.lsb{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.173333pt;}
.ls35{letter-spacing:0.220267pt;}
.ls30{letter-spacing:0.227733pt;}
.ls27{letter-spacing:0.268800pt;}
.ls1f{letter-spacing:0.330133pt;}
.ls37{letter-spacing:0.348267pt;}
.lse{letter-spacing:0.794880pt;}
.ls15{letter-spacing:17.583360pt;}
.ls3{letter-spacing:37.712640pt;}
.ls2c{letter-spacing:52.751360pt;}
.ls2a{letter-spacing:52.879360pt;}
.ls2d{letter-spacing:56.912640pt;}
.ls33{letter-spacing:57.040640pt;}
.ls19{letter-spacing:57.072640pt;}
.ls7{letter-spacing:62.853120pt;}
.ls8{letter-spacing:81.541120pt;}
.lsf{letter-spacing:754.799787pt;}
.ws1f{word-spacing:-58.880000pt;}
.ws23{word-spacing:-53.120000pt;}
.ws0{word-spacing:-24.154880pt;}
.ws19{word-spacing:-19.238400pt;}
.ws11{word-spacing:-19.184640pt;}
.ws10{word-spacing:-16.718613pt;}
.ws2{word-spacing:-14.814720pt;}
.ws5{word-spacing:-14.672427pt;}
.ws6{word-spacing:-14.536427pt;}
.ws28{word-spacing:-13.655147pt;}
.ws16{word-spacing:-13.637013pt;}
.ws1e{word-spacing:-13.575680pt;}
.ws18{word-spacing:-13.432213pt;}
.ws14{word-spacing:-13.424747pt;}
.ws24{word-spacing:-13.422080pt;}
.ws25{word-spacing:-13.396480pt;}
.ws1c{word-spacing:-13.386347pt;}
.ws1a{word-spacing:-13.360747pt;}
.ws12{word-spacing:-13.335040pt;}
.ws15{word-spacing:-13.306880pt;}
.ws17{word-spacing:-13.263360pt;}
.ws13{word-spacing:-13.237547pt;}
.ws20{word-spacing:-13.204480pt;}
.ws27{word-spacing:-13.189013pt;}
.ws1d{word-spacing:-13.160747pt;}
.ws26{word-spacing:-13.114880pt;}
.ws22{word-spacing:-12.746880pt;}
.ws1b{word-spacing:-12.682880pt;}
.wse{word-spacing:-12.178453pt;}
.wsa{word-spacing:-12.058987pt;}
.wsd{word-spacing:-12.039680pt;}
.ws3{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.935787pt;}
.ws7{word-spacing:-11.902187pt;}
.wsf{word-spacing:-11.878187pt;}
.wsb{word-spacing:-11.819520pt;}
.ws21{word-spacing:-10.848000pt;}
.ws1{word-spacing:-9.710720pt;}
.ws9{word-spacing:-9.690880pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-11.522347pt;}
._15{margin-left:-10.318293pt;}
._14{margin-left:-9.172267pt;}
._13{margin-left:-8.241280pt;}
._7{margin-left:-6.699520pt;}
._6{margin-left:-4.657280pt;}
._8{margin-left:-3.678720pt;}
._5{margin-left:-2.696320pt;}
._2{margin-left:-1.389440pt;}
._9{width:1.363627pt;}
._10{width:2.850560pt;}
._20{width:3.886080pt;}
._1f{width:4.804480pt;}
._24{width:5.711360pt;}
._1b{width:6.771200pt;}
._1a{width:7.831040pt;}
._22{width:8.984960pt;}
._1c{width:9.950720pt;}
._1e{width:10.867413pt;}
._1d{width:12.175360pt;}
._21{width:14.543360pt;}
._23{width:15.838720pt;}
._c{width:16.805120pt;}
._25{width:18.370560pt;}
._26{width:20.490240pt;}
._28{width:25.612800pt;}
._29{width:26.931413pt;}
._18{width:36.812160pt;}
._17{width:37.715200pt;}
._11{width:41.665067pt;}
._19{width:57.743360pt;}
._2b{width:69.178240pt;}
._2a{width:70.182400pt;}
._12{width:71.499520pt;}
._1{width:274.725120pt;}
._0{width:473.925120pt;}
._3{width:753.229867pt;}
._a{width:754.799787pt;}
._d{width:761.110187pt;}
._27{width:1124.867627pt;}
._4{width:1143.708587pt;}
._e{width:1145.987627pt;}
._b{width:1185.711787pt;}
._f{width:1200.175787pt;}
.fs1{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs0{font-size:106.880000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:245.120000pt;}
.y0{bottom:0.000000pt;}
.y13e{bottom:4.000000pt;}
.y28{bottom:5.440000pt;}
.yd{bottom:6.720000pt;}
.ya{bottom:6.880000pt;}
.y12{bottom:7.360000pt;}
.y35{bottom:7.520000pt;}
.y22{bottom:7.840000pt;}
.y20{bottom:8.960000pt;}
.y2d{bottom:10.880000pt;}
.y55{bottom:12.320000pt;}
.y5e{bottom:12.480000pt;}
.y59{bottom:15.680000pt;}
.y57{bottom:19.040000pt;}
.y52{bottom:20.360000pt;}
.y13d{bottom:21.920000pt;}
.y145{bottom:21.960000pt;}
.y27{bottom:23.520000pt;}
.y34{bottom:23.840000pt;}
.y36{bottom:28.160000pt;}
.y50{bottom:28.520000pt;}
.y2c{bottom:34.240000pt;}
.y32{bottom:34.280000pt;}
.y51{bottom:36.680000pt;}
.y18{bottom:40.000000pt;}
.y26{bottom:41.440000pt;}
.y2{bottom:50.112000pt;}
.y2a{bottom:53.280000pt;}
.y17{bottom:57.280000pt;}
.y31{bottom:57.480000pt;}
.y2b{bottom:57.600000pt;}
.y24{bottom:57.920000pt;}
.y1e{bottom:58.112000pt;}
.y25{bottom:59.520000pt;}
.y1d{bottom:71.072000pt;}
.y16{bottom:74.720000pt;}
.y2f{bottom:76.520000pt;}
.y30{bottom:80.840000pt;}
.y113{bottom:90.272000pt;}
.y15{bottom:95.680000pt;}
.yac{bottom:102.112000pt;}
.yc4{bottom:104.672000pt;}
.yed{bottom:107.072000pt;}
.y112{bottom:108.192000pt;}
.y132{bottom:108.672000pt;}
.y14{bottom:116.800000pt;}
.yab{bottom:120.032000pt;}
.yec{bottom:124.992000pt;}
.y111{bottom:126.112000pt;}
.y131{bottom:128.032000pt;}
.yaa{bottom:137.946667pt;}
.yeb{bottom:142.906667pt;}
.y130{bottom:147.226667pt;}
.y110{bottom:147.866667pt;}
.ya9{bottom:155.866667pt;}
.yea{bottom:164.666667pt;}
.y10f{bottom:165.786667pt;}
.ya8{bottom:173.786667pt;}
.y8b{bottom:175.866667pt;}
.y12f{bottom:177.306667pt;}
.ye9{bottom:182.586667pt;}
.y10e{bottom:183.706667pt;}
.y8a{bottom:193.786667pt;}
.ya7{bottom:195.706667pt;}
.y12e{bottom:196.666667pt;}
.ye8{bottom:200.506667pt;}
.y10d{bottom:205.626667pt;}
.y89{bottom:211.706667pt;}
.ya6{bottom:213.626667pt;}
.y12d{bottom:215.866667pt;}
.ye7{bottom:218.426667pt;}
.y10c{bottom:223.546667pt;}
.y88{bottom:229.626667pt;}
.ya5{bottom:231.386667pt;}
.y12c{bottom:235.226667pt;}
.ye6{bottom:236.346667pt;}
.y10b{bottom:241.466667pt;}
.y87{bottom:247.586667pt;}
.ya4{bottom:249.346667pt;}
.y1a{bottom:250.626667pt;}
.ye5{bottom:254.306667pt;}
.y12b{bottom:254.626667pt;}
.y10a{bottom:259.426667pt;}
.ya3{bottom:267.266667pt;}
.y86{bottom:269.026667pt;}
.ye4{bottom:272.226667pt;}
.y12a{bottom:273.986667pt;}
.y109{bottom:277.346667pt;}
.y19{bottom:280.546667pt;}
.ya2{bottom:285.186667pt;}
.y62{bottom:286.786667pt;}
.yc3{bottom:289.186667pt;}
.y13{bottom:294.466667pt;}
.y108{bottom:295.266667pt;}
.y129{bottom:295.906667pt;}
.y85{bottom:297.346667pt;}
.ye3{bottom:299.106667pt;}
.ya1{bottom:303.106667pt;}
.y107{bottom:313.186667pt;}
.y128{bottom:313.826667pt;}
.y61{bottom:317.506667pt;}
.y84{bottom:319.266667pt;}
.ya0{bottom:321.026667pt;}
.y106{bottom:331.106667pt;}
.y127{bottom:335.586667pt;}
.y83{bottom:337.186667pt;}
.y9f{bottom:338.946667pt;}
.y105{bottom:352.866667pt;}
.y126{bottom:353.506667pt;}
.y82{bottom:355.106667pt;}
.y9e{bottom:360.866667pt;}
.ye2{bottom:368.866667pt;}
.y104{bottom:370.786667pt;}
.y81{bottom:373.026667pt;}
.y9d{bottom:378.786667pt;}
.y125{bottom:380.226667pt;}
.y60{bottom:383.266667pt;}
.ye1{bottom:386.786667pt;}
.y103{bottom:388.706667pt;}
.y80{bottom:394.466667pt;}
.y124{bottom:398.146667pt;}
.y9c{bottom:400.546667pt;}
.ye0{bottom:404.706667pt;}
.y102{bottom:406.626667pt;}
.y5f{bottom:417.506667pt;}
.y9b{bottom:418.466667pt;}
.y123{bottom:420.226667pt;}
.ydf{bottom:422.626667pt;}
.y7f{bottom:422.786667pt;}
.y101{bottom:424.546667pt;}
.y11{bottom:425.186667pt;}
.y9a{bottom:436.386667pt;}
.y122{bottom:436.546667pt;}
.yde{bottom:440.546667pt;}
.y100{bottom:442.466667pt;}
.y7e{bottom:444.706667pt;}
.y121{bottom:452.866667pt;}
.y99{bottom:454.306667pt;}
.ydd{bottom:458.466667pt;}
.y7d{bottom:462.626667pt;}
.yff{bottom:464.386667pt;}
.y5d{bottom:464.866667pt;}
.y10{bottom:469.026667pt;}
.y98{bottom:472.226667pt;}
.y120{bottom:474.306667pt;}
.yfe{bottom:482.306667pt;}
.y7c{bottom:484.546667pt;}
.ydc{bottom:485.026667pt;}
.y97{bottom:490.146667pt;}
.y11f{bottom:492.226667pt;}
.y5c{bottom:499.293333pt;}
.yfd{bottom:500.253333pt;}
.y7b{bottom:502.493333pt;}
.ydb{bottom:502.973333pt;}
.yf{bottom:505.693333pt;}
.y96{bottom:508.093333pt;}
.y11e{bottom:510.173333pt;}
.y7a{bottom:520.413333pt;}
.yda{bottom:524.893333pt;}
.y95{bottom:526.013333pt;}
.yfc{bottom:527.133333pt;}
.y11d{bottom:528.093333pt;}
.y79{bottom:538.333333pt;}
.ye{bottom:538.973333pt;}
.y94{bottom:543.933333pt;}
.y5b{bottom:546.653333pt;}
.yd9{bottom:546.813333pt;}
.y11c{bottom:554.013333pt;}
.y14c{bottom:555.773333pt;}
.yc{bottom:556.893333pt;}
.y78{bottom:560.093333pt;}
.yc2{bottom:561.693333pt;}
.yd8{bottom:565.533333pt;}
.y93{bottom:570.813333pt;}
.y5a{bottom:570.973333pt;}
.y11b{bottom:571.933333pt;}
.y14b{bottom:577.693333pt;}
.yc1{bottom:579.613333pt;}
.yb{bottom:580.093333pt;}
.y77{bottom:582.013333pt;}
.yd7{bottom:583.453333pt;}
.y11a{bottom:589.853333pt;}
.y58{bottom:595.133333pt;}
.yfb{bottom:596.893333pt;}
.yc0{bottom:597.533333pt;}
.y14a{bottom:599.613333pt;}
.y76{bottom:599.933333pt;}
.yd6{bottom:602.173333pt;}
.y9{bottom:603.453333pt;}
.y39{bottom:604.573333pt;}
.yfa{bottom:614.813333pt;}
.ybf{bottom:615.453333pt;}
.y119{bottom:616.733333pt;}
.y75{bottom:617.853333pt;}
.y149{bottom:621.533333pt;}
.yd5{bottom:628.733333pt;}
.yf9{bottom:632.733333pt;}
.ybe{bottom:633.373333pt;}
.y8{bottom:634.013333pt;}
.y38{bottom:634.653333pt;}
.y56{bottom:635.773333pt;}
.y92{bottom:640.573333pt;}
.y148{bottom:643.453333pt;}
.yd4{bottom:646.653333pt;}
.yf8{bottom:650.653333pt;}
.ybd{bottom:651.293333pt;}
.y74{bottom:653.693333pt;}
.y7{bottom:654.813333pt;}
.y91{bottom:658.493333pt;}
.y37{bottom:664.573333pt;}
.y147{bottom:665.373333pt;}
.yd3{bottom:668.573333pt;}
.y73{bottom:671.613333pt;}
.ybc{bottom:673.213333pt;}
.y90{bottom:676.413333pt;}
.y33{bottom:679.133333pt;}
.y6{bottom:679.773333pt;}
.y48{bottom:680.413333pt;}
.y54{bottom:683.133333pt;}
.y146{bottom:686.173333pt;}
.yf7{bottom:686.333333pt;}
.yd2{bottom:686.493333pt;}
.ybb{bottom:690.493333pt;}
.y72{bottom:693.533333pt;}
.y8f{bottom:694.333333pt;}
.yd1{bottom:704.413333pt;}
.y47{bottom:705.853333pt;}
.yba{bottom:708.413333pt;}
.y71{bottom:715.453333pt;}
.y8e{bottom:715.773333pt;}
.y5{bottom:716.413333pt;}
.y53{bottom:717.053333pt;}
.y2e{bottom:720.413333pt;}
.yd0{bottom:722.333333pt;}
.yb9{bottom:726.333333pt;}
.y144{bottom:730.013333pt;}
.y46{bottom:730.173333pt;}
.y70{bottom:733.373333pt;}
.yf6{bottom:735.773333pt;}
.ycf{bottom:740.253333pt;}
.y4f{bottom:742.013333pt;}
.yb8{bottom:744.893333pt;}
.y8d{bottom:748.613333pt;}
.y6f{bottom:751.173333pt;}
.y4{bottom:754.373333pt;}
.y45{bottom:754.533333pt;}
.yf5{bottom:755.013333pt;}
.y118{bottom:758.213333pt;}
.yce{bottom:762.213333pt;}
.yb7{bottom:762.853333pt;}
.y8c{bottom:764.773333pt;}
.y6e{bottom:769.093333pt;}
.y143{bottom:773.893333pt;}
.yf4{bottom:774.373333pt;}
.y44{bottom:778.693333pt;}
.y117{bottom:779.973333pt;}
.ycd{bottom:780.133333pt;}
.yb6{bottom:780.773333pt;}
.y6d{bottom:787.013333pt;}
.yf3{bottom:793.733333pt;}
.ycc{bottom:797.893333pt;}
.yb5{bottom:798.693333pt;}
.y142{bottom:799.813333pt;}
.y3{bottom:801.253333pt;}
.y43{bottom:803.013333pt;}
.y6c{bottom:804.933333pt;}
.y13a{bottom:807.653333pt;}
.yf2{bottom:813.093333pt;}
.y29{bottom:814.373333pt;}
.ycb{bottom:815.813333pt;}
.yb4{bottom:816.613333pt;}
.y4e{bottom:821.413333pt;}
.y6b{bottom:822.853333pt;}
.y42{bottom:827.333333pt;}
.yf1{bottom:832.293333pt;}
.y116{bottom:833.733333pt;}
.yb3{bottom:834.373333pt;}
.yca{bottom:837.733333pt;}
.y6a{bottom:840.773333pt;}
.y141{bottom:843.653333pt;}
.y41{bottom:851.653333pt;}
.yb2{bottom:852.293333pt;}
.yc9{bottom:855.653333pt;}
.y139{bottom:856.933333pt;}
.y69{bottom:858.693333pt;}
.y40{bottom:867.813333pt;}
.y140{bottom:869.573333pt;}
.yc8{bottom:873.573333pt;}
.y138{bottom:876.293333pt;}
.y68{bottom:876.613333pt;}
.yb1{bottom:879.493333pt;}
.y3f{bottom:884.133333pt;}
.y23{bottom:885.093333pt;}
.y4d{bottom:891.013333pt;}
.yf0{bottom:891.493333pt;}
.y67{bottom:894.533333pt;}
.y13f{bottom:895.333333pt;}
.yc7{bottom:895.493333pt;}
.y137{bottom:895.653333pt;}
.y3e{bottom:900.453333pt;}
.yef{bottom:909.413333pt;}
.y66{bottom:912.453333pt;}
.y4c{bottom:912.933333pt;}
.yc6{bottom:913.413333pt;}
.y136{bottom:915.013333pt;}
.y13c{bottom:921.253333pt;}
.y3d{bottom:924.613333pt;}
.yee{bottom:927.333333pt;}
.y65{bottom:930.213333pt;}
.yc5{bottom:931.333333pt;}
.y135{bottom:934.213333pt;}
.y4b{bottom:934.853333pt;}
.y115{bottom:945.253333pt;}
.y64{bottom:948.133333pt;}
.y3c{bottom:948.933333pt;}
.yb0{bottom:949.253333pt;}
.y134{bottom:953.573333pt;}
.y4a{bottom:956.293333pt;}
.y21{bottom:960.453333pt;}
.y114{bottom:967.013333pt;}
.yaf{bottom:967.173333pt;}
.y63{bottom:969.733333pt;}
.y13b{bottom:972.133333pt;}
.y49{bottom:972.613333pt;}
.y3b{bottom:973.253333pt;}
.y133{bottom:983.493333pt;}
.yae{bottom:984.933333pt;}
.y1f{bottom:985.413333pt;}
.y3a{bottom:999.040000pt;}
.yad{bottom:1002.880000pt;}
.y1{bottom:1010.880000pt;}
.y1c{bottom:1024.160000pt;}
.y1b{bottom:1057.440000pt;}
.h27{height:21.760000pt;}
.h26{height:21.920000pt;}
.ha{height:23.200000pt;}
.h8{height:23.360000pt;}
.h13{height:24.160000pt;}
.h1b{height:24.320000pt;}
.h11{height:30.752000pt;}
.h19{height:33.920000pt;}
.h1d{height:34.240000pt;}
.h1c{height:34.432000pt;}
.hc{height:36.640000pt;}
.h23{height:36.656250pt;}
.h21{height:39.216250pt;}
.h24{height:39.840000pt;}
.h28{height:39.872000pt;}
.h17{height:40.640000pt;}
.h10{height:40.828125pt;}
.h3{height:42.649687pt;}
.h1a{height:47.360000pt;}
.hf{height:52.834688pt;}
.he{height:54.390938pt;}
.h9{height:55.402500pt;}
.hb{height:58.563750pt;}
.h20{height:60.288750pt;}
.h7{height:61.410000pt;}
.h25{height:63.656250pt;}
.h22{height:63.970000pt;}
.h18{height:66.272000pt;}
.h15{height:70.080000pt;}
.h1f{height:72.090000pt;}
.h14{height:74.720000pt;}
.h12{height:76.671562pt;}
.h1e{height:78.097500pt;}
.h16{height:93.312000pt;}
.h6{height:101.765625pt;}
.h2{height:109.437187pt;}
.h5{height:121.875000pt;}
.hd{height:130.720000pt;}
.h4{height:250.984687pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:18.560000pt;}
.wa{width:54.112000pt;}
.wc{width:134.720000pt;}
.w3{width:141.466667pt;}
.w8{width:175.866667pt;}
.w4{width:178.746667pt;}
.wb{width:209.946667pt;}
.w5{width:320.386667pt;}
.w9{width:456.093333pt;}
.w6{width:604.293333pt;}
.w7{width:632.613333pt;}
.we{width:663.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:1.120000pt;}
.x3{left:7.200000pt;}
.xa{left:20.640000pt;}
.x9{left:22.240000pt;}
.x17{left:26.752000pt;}
.x2{left:52.959988pt;}
.x14{left:54.880000pt;}
.xb{left:67.679988pt;}
.x16{left:75.360000pt;}
.xd{left:76.959988pt;}
.x12{left:100.991988pt;}
.xc{left:107.712000pt;}
.x13{left:124.991988pt;}
.x11{left:180.026655pt;}
.x4{left:195.066667pt;}
.x7{left:197.626667pt;}
.xf{left:216.506655pt;}
.x8{left:229.786667pt;}
.x1{left:230.906655pt;}
.x5{left:374.466667pt;}
.x6{left:438.466655pt;}
.x10{left:612.893322pt;}
.xe{left:660.933322pt;}
}




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