
    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_90d790dacf0e136892d3c74b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_c07f254bec98bf9f879e37ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_35e1bff915fdd39bb3da9c4f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_1d1b72c3449cab6e6b4a9331.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_c926189aedfbe50e4f8e38ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_e38ea054d032e122a68a1f2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_9314f43c6260fe0358b4069a.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m2{transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249792,0.000000,0.000000,0.250000,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;}
.ls17{letter-spacing:-1.457280px;}
.ls16{letter-spacing:-1.324800px;}
.ls14{letter-spacing:-1.059840px;}
.ls13{letter-spacing:-0.861120px;}
.lsf{letter-spacing:-0.728640px;}
.lsd{letter-spacing:-0.596160px;}
.ls12{letter-spacing:-0.463680px;}
.ls11{letter-spacing:-0.397440px;}
.lse{letter-spacing:-0.331200px;}
.lsb{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.264960px;}
.ls8{letter-spacing:-0.253440px;}
.ls1d{letter-spacing:-0.238949px;}
.lsa{letter-spacing:-0.132480px;}
.ls4{letter-spacing:-0.119520px;}
.ls6{letter-spacing:-0.059760px;}
.ls1b{letter-spacing:-0.059737px;}
.ls7{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.132480px;}
.ls3{letter-spacing:0.149760px;}
.ls1c{letter-spacing:0.179212px;}
.ls19{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.264960px;}
.ls2{letter-spacing:0.276480px;}
.ls1e{letter-spacing:0.298686px;}
.lsc{letter-spacing:0.331200px;}
.ls5{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.603576px;}
.ls1{letter-spacing:0.711144px;}
.ls18{letter-spacing:5.762880px;}
.ls1a{letter-spacing:195.871680px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-16.891200px;}
.ws1f{word-spacing:-16.824960px;}
.ws12{word-spacing:-16.692480px;}
.wsb{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.427520px;}
.ws21{word-spacing:-16.295040px;}
.ws1a{word-spacing:-16.228800px;}
.ws11{word-spacing:-16.162560px;}
.ws1e{word-spacing:-16.096320px;}
.ws14{word-spacing:-15.963840px;}
.ws13{word-spacing:-15.831360px;}
.ws1b{word-spacing:-15.698880px;}
.ws23{word-spacing:-15.500160px;}
.ws25{word-spacing:-15.102720px;}
.ws64{word-spacing:-13.799293px;}
.ws62{word-spacing:-13.679819px;}
.ws61{word-spacing:-13.440870px;}
.ws63{word-spacing:-13.261658px;}
.ws15{word-spacing:-1.059840px;}
.ws1d{word-spacing:-0.993600px;}
.ws6{word-spacing:-0.861120px;}
.wsd{word-spacing:-0.728640px;}
.ws1c{word-spacing:-0.596160px;}
.ws4{word-spacing:-0.418320px;}
.wsa{word-spacing:-0.331200px;}
.ws16{word-spacing:-0.264960px;}
.ws8{word-spacing:-0.132480px;}
.ws3{word-spacing:0.000000px;}
.ws65{word-spacing:0.059737px;}
.ws2{word-spacing:0.059760px;}
.ws5{word-spacing:0.119520px;}
.wsc{word-spacing:0.132480px;}
.ws0{word-spacing:0.190080px;}
.ws24{word-spacing:0.264960px;}
.ws7{word-spacing:0.288000px;}
.wsf{word-spacing:0.331200px;}
.ws17{word-spacing:0.397440px;}
.ws19{word-spacing:0.463680px;}
.wse{word-spacing:0.596160px;}
.ws10{word-spacing:0.728640px;}
.ws22{word-spacing:0.861120px;}
.ws9{word-spacing:1.008000px;}
.ws20{word-spacing:1.059840px;}
.ws54{word-spacing:1.126080px;}
.ws27{word-spacing:1.324800px;}
.ws2a{word-spacing:1.457280px;}
.ws59{word-spacing:2.185920px;}
.ws3a{word-spacing:2.782080px;}
.ws32{word-spacing:2.914560px;}
.ws2f{word-spacing:3.444480px;}
.ws28{word-spacing:3.576960px;}
.ws3e{word-spacing:4.173120px;}
.ws26{word-spacing:4.305600px;}
.ws2b{word-spacing:5.034240px;}
.ws2e{word-spacing:5.431680px;}
.ws2d{word-spacing:5.630400px;}
.ws2c{word-spacing:5.762880px;}
.ws56{word-spacing:6.359040px;}
.ws3b{word-spacing:6.491520px;}
.ws58{word-spacing:7.087680px;}
.ws3c{word-spacing:7.220160px;}
.ws37{word-spacing:7.816320px;}
.ws33{word-spacing:7.948800px;}
.ws38{word-spacing:8.611200px;}
.ws60{word-spacing:9.207360px;}
.ws4e{word-spacing:9.339840px;}
.ws5f{word-spacing:9.737280px;}
.ws43{word-spacing:9.936000px;}
.ws3f{word-spacing:10.068480px;}
.ws4a{word-spacing:10.465920px;}
.ws5b{word-spacing:10.664640px;}
.ws4b{word-spacing:10.797120px;}
.ws35{word-spacing:11.525760px;}
.ws45{word-spacing:12.254400px;}
.ws42{word-spacing:12.850560px;}
.ws36{word-spacing:12.983040px;}
.ws57{word-spacing:13.711680px;}
.ws5c{word-spacing:14.241600px;}
.ws55{word-spacing:14.374080px;}
.ws47{word-spacing:15.102720px;}
.ws44{word-spacing:15.698880px;}
.ws3d{word-spacing:15.831360px;}
.ws29{word-spacing:16.560000px;}
.ws40{word-spacing:17.156160px;}
.ws5a{word-spacing:17.288640px;}
.ws39{word-spacing:18.745920px;}
.ws30{word-spacing:19.474560px;}
.ws31{word-spacing:20.136960px;}
.ws46{word-spacing:20.865600px;}
.ws5e{word-spacing:21.263040px;}
.ws5d{word-spacing:21.461760px;}
.ws34{word-spacing:21.594240px;}
.ws49{word-spacing:25.899840px;}
.ws48{word-spacing:26.628480px;}
.ws41{word-spacing:27.953280px;}
.ws50{word-spacing:28.681920px;}
.ws51{word-spacing:28.814400px;}
.ws4f{word-spacing:31.662720px;}
.ws4d{word-spacing:45.043200px;}
.ws4c{word-spacing:45.374400px;}
.ws52{word-spacing:47.494080px;}
.ws53{word-spacing:47.891520px;}
._1{margin-left:-1.338624px;}
._0{width:1.715112px;}
._2{width:5.776704px;}
._3{width:21.589056px;}
.fc2{color:rgb(36,64,97);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.737200px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:22.320000px;}
.ycc{bottom:22.500000px;}
.ydd{bottom:43.665000px;}
.yde{bottom:72.443396px;}
.ydf{bottom:101.221792px;}
.yeb{bottom:129.897300px;}
.ye0{bottom:130.000188px;}
.ye1{bottom:158.778584px;}
.yea{bottom:163.095900px;}
.ye2{bottom:187.556980px;}
.ye9{bottom:196.294650px;}
.ye3{bottom:216.335377px;}
.yc4{bottom:223.777440px;}
.ye8{bottom:229.493400px;}
.y8b{bottom:230.832000px;}
.y83{bottom:230.848560px;}
.y4f{bottom:238.896720px;}
.y5e{bottom:238.913280px;}
.ye4{bottom:245.113773px;}
.y48{bottom:245.967840px;}
.yac{bottom:246.795840px;}
.yc0{bottom:246.812400px;}
.y16{bottom:250.020000px;}
.y82{bottom:253.807920px;}
.y62{bottom:253.866960px;}
.y75{bottom:259.810560px;}
.ya4{bottom:261.732960px;}
.yb7{bottom:261.749520px;}
.y9a{bottom:261.766080px;}
.y8a{bottom:268.804080px;}
.y37{bottom:268.820640px;}
.ye5{bottom:273.892169px;}
.y63{bottom:276.660000px;}
.y4e{bottom:276.703200px;}
.y47{bottom:283.939920px;}
.yab{bottom:284.767920px;}
.yb3{bottom:284.784480px;}
.y15{bottom:290.160000px;}
.y81{bottom:291.780000px;}
.y5d{bottom:291.839040px;}
.y74{bottom:297.782640px;}
.ybc{bottom:299.688480px;}
.ya3{bottom:299.705040px;}
.ya9{bottom:299.721600px;}
.y99{bottom:299.738160px;}
.ye6{bottom:302.670565px;}
.y36{bottom:306.792720px;}
.yf3{bottom:311.907600px;}
.y4d{bottom:314.675280px;}
.y89{bottom:321.729840px;}
.y46{bottom:321.746400px;}
.yb2{bottom:322.590960px;}
.y80{bottom:329.760000px;}
.y5c{bottom:329.811120px;}
.ye7{bottom:331.448961px;}
.y14{bottom:331.560000px;}
.y73{bottom:335.754720px;}
.ybb{bottom:337.660560px;}
.ya2{bottom:337.677120px;}
.ya8{bottom:337.693680px;}
.ybf{bottom:337.710240px;}
.y35{bottom:344.764800px;}
.yc3{bottom:352.647360px;}
.y98{bottom:352.663920px;}
.y88{bottom:359.701920px;}
.y45{bottom:359.718480px;}
.yb1{bottom:360.563040px;}
.yf2{bottom:364.833360px;}
.y4c{bottom:367.601040px;}
.y5b{bottom:367.617600px;}
.y13{bottom:370.798560px;}
.yaa{bottom:375.665760px;}
.ybe{bottom:375.682320px;}
.y7f{bottom:382.715280px;}
.y34{bottom:382.736880px;}
.y72{bottom:388.680480px;}
.yba{bottom:390.586320px;}
.ya1{bottom:390.602880px;}
.ya7{bottom:390.619440px;}
.y97{bottom:390.636000px;}
.y87{bottom:397.674000px;}
.y44{bottom:397.690560px;}
.yc7{bottom:398.535120px;}
.y5a{bottom:405.589680px;}
.y12{bottom:410.940000px;}
.yb0{bottom:413.488800px;}
.ydb{bottom:416.157840px;}
.yf1{bottom:417.759120px;}
.y7e{bottom:420.687360px;}
.y33{bottom:420.708960px;}
.y71{bottom:426.652560px;}
.yb9{bottom:428.558400px;}
.ya0{bottom:428.574960px;}
.ya6{bottom:428.591520px;}
.y96{bottom:428.608080px;}
.y86{bottom:435.646080px;}
.y64{bottom:435.662640px;}
.yc2{bottom:443.545200px;}
.y59{bottom:443.561760px;}
.y11{bottom:448.936560px;}
.y43{bottom:450.616320px;}
.yaf{bottom:451.460880px;}
.y7d{bottom:458.493840px;}
.y32{bottom:458.515440px;}
.y70{bottom:464.624640px;}
.yb8{bottom:466.364880px;}
.ya5{bottom:466.398000px;}
.ybd{bottom:466.414560px;}
.yda{bottom:469.083600px;}
.yf0{bottom:470.684880px;}
.y85{bottom:473.618160px;}
.y4b{bottom:473.634720px;}
.y9f{bottom:481.500720px;}
.yb6{bottom:481.517280px;}
.y61{bottom:481.533840px;}
.y10{bottom:485.832240px;}
.y42{bottom:488.588400px;}
.yc6{bottom:489.432960px;}
.y7c{bottom:496.465920px;}
.y31{bottom:496.487520px;}
.y6f{bottom:502.431120px;}
.yae{bottom:504.386640px;}
.yd9{bottom:506.890080px;}
.y84{bottom:511.424640px;}
.y4a{bottom:511.441200px;}
.y9e{bottom:519.472800px;}
.yb5{bottom:519.489360px;}
.y60{bottom:519.505920px;}
.yf{bottom:522.545760px;}
.yef{bottom:523.610640px;}
.y41{bottom:526.560480px;}
.y7b{bottom:534.438000px;}
.y30{bottom:534.459600px;}
.yca{bottom:540.023760px;}
.y6e{bottom:540.403200px;}
.yad{bottom:542.358720px;}
.yd8{bottom:544.862160px;}
.y49{bottom:549.413280px;}
.y9d{bottom:557.279280px;}
.yb4{bottom:557.295840px;}
.y95{bottom:557.312400px;}
.y24{bottom:558.210240px;}
.ye{bottom:560.517840px;}
.y40{bottom:564.532560px;}
.y7a{bottom:572.410080px;}
.yc1{bottom:572.415120px;}
.y56{bottom:572.431680px;}
.yee{bottom:576.536400px;}
.y6d{bottom:578.375280px;}
.yc5{bottom:580.330800px;}
.yd7{bottom:582.834240px;}
.y2f{bottom:587.385360px;}
.yc9{bottom:592.949520px;}
.y94{bottom:595.284480px;}
.y23{bottom:596.182320px;}
.yd{bottom:597.413520px;}
.y3f{bottom:602.339040px;}
.y9c{bottom:610.387200px;}
.y55{bottom:610.403760px;}
.y79{bottom:625.335840px;}
.y2e{bottom:625.357440px;}
.yed{bottom:629.644320px;}
.y6c{bottom:631.301040px;}
.y93{bottom:633.256560px;}
.y22{bottom:633.988800px;}
.yc{bottom:635.220000px;}
.yd6{bottom:635.760000px;}
.y3e{bottom:640.311120px;}
.yc8{bottom:648.028080px;}
.y9b{bottom:648.193680px;}
.y54{bottom:648.210240px;}
.yd5{bottom:652.860000px;}
.y78{bottom:663.307920px;}
.y2d{bottom:663.329520px;}
.y6b{bottom:669.273120px;}
.y92{bottom:671.228640px;}
.y21{bottom:671.960880px;}
.yb{bottom:675.360000px;}
.y3d{bottom:678.283200px;}
.ydc{bottom:678.840000px;}
.yec{bottom:678.960000px;}
.y53{bottom:686.182320px;}
.yd4{bottom:690.660000px;}
.y77{bottom:701.280000px;}
.y2c{bottom:701.301600px;}
.y6a{bottom:707.245200px;}
.y91{bottom:709.200720px;}
.y20{bottom:709.932960px;}
.ya{bottom:714.600000px;}
.y3c{bottom:716.255280px;}
.y52{bottom:724.154400px;}
.yd3{bottom:728.640000px;}
.y8c{bottom:739.108080px;}
.y69{bottom:745.217280px;}
.y1f{bottom:747.905040px;}
.y76{bottom:754.200000px;}
.y2b{bottom:754.227360px;}
.y9{bottom:754.740000px;}
.y58{bottom:762.126480px;}
.yd2{bottom:766.620000px;}
.y5f{bottom:769.181040px;}
.y51{bottom:777.080160px;}
.y68{bottom:783.189360px;}
.y1e{bottom:785.877120px;}
.y2a{bottom:792.199440px;}
.y8{bottom:793.979850px;}
.y90{bottom:800.098560px;}
.yd1{bottom:804.600000px;}
.y3b{bottom:807.153120px;}
.y57{bottom:815.052240px;}
.y1d{bottom:823.683600px;}
.y67{bottom:829.987920px;}
.y29{bottom:830.005920px;}
.y7{bottom:834.120000px;}
.ycf{bottom:842.580000px;}
.y3a{bottom:845.125200px;}
.y8f{bottom:853.024320px;}
.y1c{bottom:861.655680px;}
.y66{bottom:867.960000px;}
.y28{bottom:867.978000px;}
.y6{bottom:872.092080px;}
.yce{bottom:880.380000px;}
.y39{bottom:882.931680px;}
.y8e{bottom:890.996400px;}
.y1b{bottom:899.280000px;}
.y65{bottom:905.940000px;}
.y27{bottom:905.950080px;}
.ycd{bottom:918.360000px;}
.y38{bottom:920.903760px;}
.y1a{bottom:923.040000px;}
.y5{bottom:925.200000px;}
.y50{bottom:943.922160px;}
.ycb{bottom:957.780000px;}
.y26{bottom:958.875840px;}
.y19{bottom:961.210800px;}
.y4{bottom:981.540000px;}
.y8d{bottom:981.894240px;}
.y25{bottom:996.847920px;}
.y18{bottom:997.924320px;}
.y3{bottom:1001.688840px;}
.y2{bottom:1018.974420px;}
.y17{bottom:1034.820000px;}
.y1{bottom:1036.260000px;}
.hb{height:37.800000px;}
.h9{height:37.980000px;}
.ha{height:37.981500px;}
.hd{height:40.631797px;}
.h2{height:43.506914px;}
.h4{height:44.893125px;}
.h8{height:45.054844px;}
.h7{height:45.992812px;}
.h6{height:55.243125px;}
.h5{height:60.046875px;}
.h3{height:146.917969px;}
.hc{height:371.401500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:64.440000px;}
.w3{width:91.260000px;}
.w6{width:93.240000px;}
.w7{width:128.520000px;}
.w2{width:143.280000px;}
.w4{width:286.200000px;}
.w8{width:495.673500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.xf{left:15.568300px;}
.xe{left:23.148600px;}
.x5{left:74.510640px;}
.x1{left:127.620000px;}
.x7{left:180.752400px;}
.x8{left:186.120000px;}
.xa{left:329.400000px;}
.x3{left:356.578560px;}
.x2{left:359.460000px;}
.x4{left:407.880000px;}
.xb{left:420.660000px;}
.x6{left:446.424480px;}
.xc{left:485.100000px;}
.xd{left:578.340000px;}
.x10{left:676.440000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-1.295360pt;}
.ls16{letter-spacing:-1.177600pt;}
.ls14{letter-spacing:-0.942080pt;}
.ls13{letter-spacing:-0.765440pt;}
.lsf{letter-spacing:-0.647680pt;}
.lsd{letter-spacing:-0.529920pt;}
.ls12{letter-spacing:-0.412160pt;}
.ls11{letter-spacing:-0.353280pt;}
.lse{letter-spacing:-0.294400pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.235520pt;}
.ls8{letter-spacing:-0.225280pt;}
.ls1d{letter-spacing:-0.212399pt;}
.lsa{letter-spacing:-0.117760pt;}
.ls4{letter-spacing:-0.106240pt;}
.ls6{letter-spacing:-0.053120pt;}
.ls1b{letter-spacing:-0.053100pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.117760pt;}
.ls3{letter-spacing:0.133120pt;}
.ls1c{letter-spacing:0.159299pt;}
.ls19{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.235520pt;}
.ls2{letter-spacing:0.245760pt;}
.ls1e{letter-spacing:0.265499pt;}
.lsc{letter-spacing:0.294400pt;}
.ls5{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.536512pt;}
.ls1{letter-spacing:0.632128pt;}
.ls18{letter-spacing:5.122560pt;}
.ls1a{letter-spacing:174.108160pt;}
.ws18{word-spacing:-15.014400pt;}
.ws1f{word-spacing:-14.955520pt;}
.ws12{word-spacing:-14.837760pt;}
.wsb{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.602240pt;}
.ws21{word-spacing:-14.484480pt;}
.ws1a{word-spacing:-14.425600pt;}
.ws11{word-spacing:-14.366720pt;}
.ws1e{word-spacing:-14.307840pt;}
.ws14{word-spacing:-14.190080pt;}
.ws13{word-spacing:-14.072320pt;}
.ws1b{word-spacing:-13.954560pt;}
.ws23{word-spacing:-13.777920pt;}
.ws25{word-spacing:-13.424640pt;}
.ws64{word-spacing:-12.266038pt;}
.ws62{word-spacing:-12.159839pt;}
.ws61{word-spacing:-11.947440pt;}
.ws63{word-spacing:-11.788141pt;}
.ws15{word-spacing:-0.942080pt;}
.ws1d{word-spacing:-0.883200pt;}
.ws6{word-spacing:-0.765440pt;}
.wsd{word-spacing:-0.647680pt;}
.ws1c{word-spacing:-0.529920pt;}
.ws4{word-spacing:-0.371840pt;}
.wsa{word-spacing:-0.294400pt;}
.ws16{word-spacing:-0.235520pt;}
.ws8{word-spacing:-0.117760pt;}
.ws3{word-spacing:0.000000pt;}
.ws65{word-spacing:0.053100pt;}
.ws2{word-spacing:0.053120pt;}
.ws5{word-spacing:0.106240pt;}
.wsc{word-spacing:0.117760pt;}
.ws0{word-spacing:0.168960pt;}
.ws24{word-spacing:0.235520pt;}
.ws7{word-spacing:0.256000pt;}
.wsf{word-spacing:0.294400pt;}
.ws17{word-spacing:0.353280pt;}
.ws19{word-spacing:0.412160pt;}
.wse{word-spacing:0.529920pt;}
.ws10{word-spacing:0.647680pt;}
.ws22{word-spacing:0.765440pt;}
.ws9{word-spacing:0.896000pt;}
.ws20{word-spacing:0.942080pt;}
.ws54{word-spacing:1.000960pt;}
.ws27{word-spacing:1.177600pt;}
.ws2a{word-spacing:1.295360pt;}
.ws59{word-spacing:1.943040pt;}
.ws3a{word-spacing:2.472960pt;}
.ws32{word-spacing:2.590720pt;}
.ws2f{word-spacing:3.061760pt;}
.ws28{word-spacing:3.179520pt;}
.ws3e{word-spacing:3.709440pt;}
.ws26{word-spacing:3.827200pt;}
.ws2b{word-spacing:4.474880pt;}
.ws2e{word-spacing:4.828160pt;}
.ws2d{word-spacing:5.004800pt;}
.ws2c{word-spacing:5.122560pt;}
.ws56{word-spacing:5.652480pt;}
.ws3b{word-spacing:5.770240pt;}
.ws58{word-spacing:6.300160pt;}
.ws3c{word-spacing:6.417920pt;}
.ws37{word-spacing:6.947840pt;}
.ws33{word-spacing:7.065600pt;}
.ws38{word-spacing:7.654400pt;}
.ws60{word-spacing:8.184320pt;}
.ws4e{word-spacing:8.302080pt;}
.ws5f{word-spacing:8.655360pt;}
.ws43{word-spacing:8.832000pt;}
.ws3f{word-spacing:8.949760pt;}
.ws4a{word-spacing:9.303040pt;}
.ws5b{word-spacing:9.479680pt;}
.ws4b{word-spacing:9.597440pt;}
.ws35{word-spacing:10.245120pt;}
.ws45{word-spacing:10.892800pt;}
.ws42{word-spacing:11.422720pt;}
.ws36{word-spacing:11.540480pt;}
.ws57{word-spacing:12.188160pt;}
.ws5c{word-spacing:12.659200pt;}
.ws55{word-spacing:12.776960pt;}
.ws47{word-spacing:13.424640pt;}
.ws44{word-spacing:13.954560pt;}
.ws3d{word-spacing:14.072320pt;}
.ws29{word-spacing:14.720000pt;}
.ws40{word-spacing:15.249920pt;}
.ws5a{word-spacing:15.367680pt;}
.ws39{word-spacing:16.663040pt;}
.ws30{word-spacing:17.310720pt;}
.ws31{word-spacing:17.899520pt;}
.ws46{word-spacing:18.547200pt;}
.ws5e{word-spacing:18.900480pt;}
.ws5d{word-spacing:19.077120pt;}
.ws34{word-spacing:19.194880pt;}
.ws49{word-spacing:23.022080pt;}
.ws48{word-spacing:23.669760pt;}
.ws41{word-spacing:24.847360pt;}
.ws50{word-spacing:25.495040pt;}
.ws51{word-spacing:25.612800pt;}
.ws4f{word-spacing:28.144640pt;}
.ws4d{word-spacing:40.038400pt;}
.ws4c{word-spacing:40.332800pt;}
.ws52{word-spacing:42.216960pt;}
.ws53{word-spacing:42.570240pt;}
._1{margin-left:-1.189888pt;}
._0{width:1.524544pt;}
._2{width:5.134848pt;}
._3{width:19.190272pt;}
.fs5{font-size:53.099733pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:19.840000pt;}
.ycc{bottom:20.000000pt;}
.ydd{bottom:38.813333pt;}
.yde{bottom:64.394130pt;}
.ydf{bottom:89.974926pt;}
.yeb{bottom:115.464267pt;}
.ye0{bottom:115.555723pt;}
.ye1{bottom:141.136519pt;}
.yea{bottom:144.974133pt;}
.ye2{bottom:166.717316pt;}
.ye9{bottom:174.484133pt;}
.ye3{bottom:192.298113pt;}
.yc4{bottom:198.913280pt;}
.ye8{bottom:203.994133pt;}
.y8b{bottom:205.184000pt;}
.y83{bottom:205.198720pt;}
.y4f{bottom:212.352640pt;}
.y5e{bottom:212.367360pt;}
.ye4{bottom:217.878909pt;}
.y48{bottom:218.638080pt;}
.yac{bottom:219.374080pt;}
.yc0{bottom:219.388800pt;}
.y16{bottom:222.240000pt;}
.y82{bottom:225.607040pt;}
.y62{bottom:225.659520pt;}
.y75{bottom:230.942720pt;}
.ya4{bottom:232.651520pt;}
.yb7{bottom:232.666240pt;}
.y9a{bottom:232.680960pt;}
.y8a{bottom:238.936960pt;}
.y37{bottom:238.951680pt;}
.ye5{bottom:243.459706pt;}
.y63{bottom:245.920000pt;}
.y4e{bottom:245.958400pt;}
.y47{bottom:252.391040pt;}
.yab{bottom:253.127040pt;}
.yb3{bottom:253.141760pt;}
.y15{bottom:257.920000pt;}
.y81{bottom:259.360000pt;}
.y5d{bottom:259.412480pt;}
.y74{bottom:264.695680pt;}
.ybc{bottom:266.389760pt;}
.ya3{bottom:266.404480pt;}
.ya9{bottom:266.419200pt;}
.y99{bottom:266.433920pt;}
.ye6{bottom:269.040502pt;}
.y36{bottom:272.704640pt;}
.yf3{bottom:277.251200pt;}
.y4d{bottom:279.711360pt;}
.y89{bottom:285.982080pt;}
.y46{bottom:285.996800pt;}
.yb2{bottom:286.747520pt;}
.y80{bottom:293.120000pt;}
.y5c{bottom:293.165440pt;}
.ye7{bottom:294.621299pt;}
.y14{bottom:294.720000pt;}
.y73{bottom:298.448640pt;}
.ybb{bottom:300.142720pt;}
.ya2{bottom:300.157440pt;}
.ya8{bottom:300.172160pt;}
.ybf{bottom:300.186880pt;}
.y35{bottom:306.457600pt;}
.yc3{bottom:313.464320pt;}
.y98{bottom:313.479040pt;}
.y88{bottom:319.735040pt;}
.y45{bottom:319.749760pt;}
.yb1{bottom:320.500480pt;}
.yf2{bottom:324.296320pt;}
.y4c{bottom:326.756480pt;}
.y5b{bottom:326.771200pt;}
.y13{bottom:329.598720pt;}
.yaa{bottom:333.925120pt;}
.ybe{bottom:333.939840pt;}
.y7f{bottom:340.191360pt;}
.y34{bottom:340.210560pt;}
.y72{bottom:345.493760pt;}
.yba{bottom:347.187840pt;}
.ya1{bottom:347.202560pt;}
.ya7{bottom:347.217280pt;}
.y97{bottom:347.232000pt;}
.y87{bottom:353.488000pt;}
.y44{bottom:353.502720pt;}
.yc7{bottom:354.253440pt;}
.y5a{bottom:360.524160pt;}
.y12{bottom:365.280000pt;}
.yb0{bottom:367.545600pt;}
.ydb{bottom:369.918080pt;}
.yf1{bottom:371.341440pt;}
.y7e{bottom:373.944320pt;}
.y33{bottom:373.963520pt;}
.y71{bottom:379.246720pt;}
.yb9{bottom:380.940800pt;}
.ya0{bottom:380.955520pt;}
.ya6{bottom:380.970240pt;}
.y96{bottom:380.984960pt;}
.y86{bottom:387.240960pt;}
.y64{bottom:387.255680pt;}
.yc2{bottom:394.262400pt;}
.y59{bottom:394.277120pt;}
.y11{bottom:399.054720pt;}
.y43{bottom:400.547840pt;}
.yaf{bottom:401.298560pt;}
.y7d{bottom:407.550080pt;}
.y32{bottom:407.569280pt;}
.y70{bottom:412.999680pt;}
.yb8{bottom:414.546560pt;}
.ya5{bottom:414.576000pt;}
.ybd{bottom:414.590720pt;}
.yda{bottom:416.963200pt;}
.yf0{bottom:418.386560pt;}
.y85{bottom:420.993920pt;}
.y4b{bottom:421.008640pt;}
.y9f{bottom:428.000640pt;}
.yb6{bottom:428.015360pt;}
.y61{bottom:428.030080pt;}
.y10{bottom:431.850880pt;}
.y42{bottom:434.300800pt;}
.yc6{bottom:435.051520pt;}
.y7c{bottom:441.303040pt;}
.y31{bottom:441.322240pt;}
.y6f{bottom:446.605440pt;}
.yae{bottom:448.343680pt;}
.yd9{bottom:450.568960pt;}
.y84{bottom:454.599680pt;}
.y4a{bottom:454.614400pt;}
.y9e{bottom:461.753600pt;}
.yb5{bottom:461.768320pt;}
.y60{bottom:461.783040pt;}
.yf{bottom:464.485120pt;}
.yef{bottom:465.431680pt;}
.y41{bottom:468.053760pt;}
.y7b{bottom:475.056000pt;}
.y30{bottom:475.075200pt;}
.yca{bottom:480.021120pt;}
.y6e{bottom:480.358400pt;}
.yad{bottom:482.096640pt;}
.yd8{bottom:484.321920pt;}
.y49{bottom:488.367360pt;}
.y9d{bottom:495.359360pt;}
.yb4{bottom:495.374080pt;}
.y95{bottom:495.388800pt;}
.y24{bottom:496.186880pt;}
.ye{bottom:498.238080pt;}
.y40{bottom:501.806720pt;}
.y7a{bottom:508.808960pt;}
.yc1{bottom:508.813440pt;}
.y56{bottom:508.828160pt;}
.yee{bottom:512.476800pt;}
.y6d{bottom:514.111360pt;}
.yc5{bottom:515.849600pt;}
.yd7{bottom:518.074880pt;}
.y2f{bottom:522.120320pt;}
.yc9{bottom:527.066240pt;}
.y94{bottom:529.141760pt;}
.y23{bottom:529.939840pt;}
.yd{bottom:531.034240pt;}
.y3f{bottom:535.412480pt;}
.y9c{bottom:542.566400pt;}
.y55{bottom:542.581120pt;}
.y79{bottom:555.854080pt;}
.y2e{bottom:555.873280pt;}
.yed{bottom:559.683840pt;}
.y6c{bottom:561.156480pt;}
.y93{bottom:562.894720pt;}
.y22{bottom:563.545600pt;}
.yc{bottom:564.640000pt;}
.yd6{bottom:565.120000pt;}
.y3e{bottom:569.165440pt;}
.yc8{bottom:576.024960pt;}
.y9b{bottom:576.172160pt;}
.y54{bottom:576.186880pt;}
.yd5{bottom:580.320000pt;}
.y78{bottom:589.607040pt;}
.y2d{bottom:589.626240pt;}
.y6b{bottom:594.909440pt;}
.y92{bottom:596.647680pt;}
.y21{bottom:597.298560pt;}
.yb{bottom:600.320000pt;}
.y3d{bottom:602.918400pt;}
.ydc{bottom:603.413333pt;}
.yec{bottom:603.520000pt;}
.y53{bottom:609.939840pt;}
.yd4{bottom:613.920000pt;}
.y77{bottom:623.360000pt;}
.y2c{bottom:623.379200pt;}
.y6a{bottom:628.662400pt;}
.y91{bottom:630.400640pt;}
.y20{bottom:631.051520pt;}
.ya{bottom:635.200000pt;}
.y3c{bottom:636.671360pt;}
.y52{bottom:643.692800pt;}
.yd3{bottom:647.680000pt;}
.y8c{bottom:656.984960pt;}
.y69{bottom:662.415360pt;}
.y1f{bottom:664.804480pt;}
.y76{bottom:670.400000pt;}
.y2b{bottom:670.424320pt;}
.y9{bottom:670.880000pt;}
.y58{bottom:677.445760pt;}
.yd2{bottom:681.440000pt;}
.y5f{bottom:683.716480pt;}
.y51{bottom:690.737920pt;}
.y68{bottom:696.168320pt;}
.y1e{bottom:698.557440pt;}
.y2a{bottom:704.177280pt;}
.y8{bottom:705.759867pt;}
.y90{bottom:711.198720pt;}
.yd1{bottom:715.200000pt;}
.y3b{bottom:717.469440pt;}
.y57{bottom:724.490880pt;}
.y1d{bottom:732.163200pt;}
.y67{bottom:737.767040pt;}
.y29{bottom:737.783040pt;}
.y7{bottom:741.440000pt;}
.ycf{bottom:748.960000pt;}
.y3a{bottom:751.222400pt;}
.y8f{bottom:758.243840pt;}
.y1c{bottom:765.916160pt;}
.y66{bottom:771.520000pt;}
.y28{bottom:771.536000pt;}
.y6{bottom:775.192960pt;}
.yce{bottom:782.560000pt;}
.y39{bottom:784.828160pt;}
.y8e{bottom:791.996800pt;}
.y1b{bottom:799.360000pt;}
.y65{bottom:805.280000pt;}
.y27{bottom:805.288960pt;}
.ycd{bottom:816.320000pt;}
.y38{bottom:818.581120pt;}
.y1a{bottom:820.480000pt;}
.y5{bottom:822.400000pt;}
.y50{bottom:839.041920pt;}
.ycb{bottom:851.360000pt;}
.y26{bottom:852.334080pt;}
.y19{bottom:854.409600pt;}
.y4{bottom:872.480000pt;}
.y8d{bottom:872.794880pt;}
.y25{bottom:886.087040pt;}
.y18{bottom:887.043840pt;}
.y3{bottom:890.390080pt;}
.y2{bottom:905.755040pt;}
.y17{bottom:919.840000pt;}
.y1{bottom:921.120000pt;}
.hb{height:33.600000pt;}
.h9{height:33.760000pt;}
.ha{height:33.761333pt;}
.hd{height:36.117153pt;}
.h2{height:38.672812pt;}
.h4{height:39.905000pt;}
.h8{height:40.048750pt;}
.h7{height:40.882500pt;}
.h6{height:49.105000pt;}
.h5{height:53.375000pt;}
.h3{height:130.593750pt;}
.hc{height:330.134667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:57.280000pt;}
.w3{width:81.120000pt;}
.w6{width:82.880000pt;}
.w7{width:114.240000pt;}
.w2{width:127.360000pt;}
.w4{width:254.400000pt;}
.w8{width:440.598667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.xf{left:13.838489pt;}
.xe{left:20.576533pt;}
.x5{left:66.231680pt;}
.x1{left:113.440000pt;}
.x7{left:160.668800pt;}
.x8{left:165.440000pt;}
.xa{left:292.800000pt;}
.x3{left:316.958720pt;}
.x2{left:319.520000pt;}
.x4{left:362.560000pt;}
.xb{left:373.920000pt;}
.x6{left:396.821760pt;}
.xc{left:431.200000pt;}
.xd{left:514.080000pt;}
.x10{left:601.280000pt;}
}




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