
    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_b3ea8a86f00ad1a0fecc5212.woff')format("woff");}.ff1{font-family:ff1;line-height:1.305176;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_452d9d673a80a307edaf544d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_159dbf2371cb0cc22aa6fe87.woff')format("woff");}.ff3{font-family:ff3;line-height:1.305176;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_e1a891e2486f4bc06e37784e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7a4d75fb11b4b6d04ef267a1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_adea08bd6cccec33f93e4606.woff')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_4933f77e0986019fdc9a4c23.woff')format("woff");}.ff8{font-family:ff8;line-height:1.579590;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_a90468d9d21e2a4b9061c37f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.579590;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);}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:30.240000px;}
.ls29{letter-spacing:-1.008000px;}
.ls38{letter-spacing:-0.864000px;}
.ls56{letter-spacing:-0.720000px;}
.ls4b{letter-spacing:-0.654000px;}
.ls35{letter-spacing:-0.648000px;}
.ls37{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.325200px;}
.ls3a{letter-spacing:-0.312000px;}
.ls2b{letter-spacing:-0.301200px;}
.ls28{letter-spacing:-0.288000px;}
.ls47{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.207600px;}
.ls36{letter-spacing:-0.144000px;}
.ls49{letter-spacing:-0.129600px;}
.ls39{letter-spacing:-0.072000px;}
.ls27{letter-spacing:-0.000003px;}
.ls7{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.000001px;}
.ls1{letter-spacing:0.015840px;}
.ls42{letter-spacing:0.049680px;}
.ls3c{letter-spacing:0.054720px;}
.ls2c{letter-spacing:0.055440px;}
.ls4{letter-spacing:0.063360px;}
.ls8{letter-spacing:0.063600px;}
.ls2a{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.103800px;}
.ls31{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.109440px;}
.ls1d{letter-spacing:0.120240px;}
.ls11{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.154800px;}
.ls22{letter-spacing:0.172200px;}
.ls25{letter-spacing:0.179280px;}
.ls17{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.205800px;}
.ls40{letter-spacing:0.205920px;}
.ls10{letter-spacing:0.216000px;}
.ls4c{letter-spacing:0.218880px;}
.ls2e{letter-spacing:0.260640px;}
.lsf{letter-spacing:0.264000px;}
.ls58{letter-spacing:0.265200px;}
.lse{letter-spacing:0.267840px;}
.ls4a{letter-spacing:0.269400px;}
.ls13{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.324000px;}
.ls48{letter-spacing:0.346200px;}
.ls0{letter-spacing:0.360000px;}
.ls3b{letter-spacing:0.408000px;}
.lsd{letter-spacing:0.432000px;}
.ls4e{letter-spacing:0.468000px;}
.ls5{letter-spacing:0.487440px;}
.ls6{letter-spacing:0.576000px;}
.ls46{letter-spacing:0.607440px;}
.ls16{letter-spacing:0.648000px;}
.ls3e{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.775440px;}
.ls2d{letter-spacing:0.786000px;}
.ls5c{letter-spacing:0.840000px;}
.ls20{letter-spacing:0.840240px;}
.ls15{letter-spacing:0.936000px;}
.ls1f{letter-spacing:1.927440px;}
.ls1a{letter-spacing:2.376000px;}
.ls41{letter-spacing:2.519280px;}
.ls45{letter-spacing:2.647440px;}
.ls1b{letter-spacing:2.808000px;}
.ls5a{letter-spacing:3.504000px;}
.ls30{letter-spacing:3.528000px;}
.ls19{letter-spacing:4.248000px;}
.ls53{letter-spacing:4.536000px;}
.ls32{letter-spacing:4.968000px;}
.ls3f{letter-spacing:5.688000px;}
.ls23{letter-spacing:6.247440px;}
.ls14{letter-spacing:6.408000px;}
.ls3d{letter-spacing:7.128000px;}
.ls5b{letter-spacing:7.687440px;}
.ls33{letter-spacing:7.848000px;}
.ls12{letter-spacing:8.136000px;}
.ls2{letter-spacing:8.407440px;}
.ls51{letter-spacing:8.832000px;}
.ls52{letter-spacing:8.856000px;}
.ls18{letter-spacing:11.016000px;}
.ls54{letter-spacing:11.736000px;}
.ls2f{letter-spacing:12.168000px;}
.ls57{letter-spacing:17.496000px;}
.ls44{letter-spacing:22.525920px;}
.ls59{letter-spacing:25.128000px;}
.ls43{letter-spacing:28.146960px;}
.ls34{letter-spacing:29.880000px;}
.ls55{letter-spacing:31.896000px;}
.ls50{letter-spacing:63.576000px;}
.ls4f{letter-spacing:64.128000px;}
.ls4d{letter-spacing:136.848000px;}
.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;}
}
.ws3{word-spacing:-23.671440px;}
.ws2d{word-spacing:-20.592000px;}
.ws1d{word-spacing:-20.448000px;}
.ws25{word-spacing:-20.304000px;}
.wsc{word-spacing:-20.232001px;}
.ws4{word-spacing:-20.232000px;}
.ws2c{word-spacing:-19.512000px;}
.ws2f{word-spacing:-19.440000px;}
.ws5{word-spacing:-18.613440px;}
.ws6{word-spacing:-18.288240px;}
.ws1c{word-spacing:-18.000000px;}
.ws23{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws22{word-spacing:-17.783997px;}
.ws1b{word-spacing:-17.352000px;}
.ws1{word-spacing:-17.152560px;}
.ws7{word-spacing:-16.947360px;}
.ws9{word-spacing:-16.896360px;}
.ws0{word-spacing:-16.792560px;}
.ws2{word-spacing:-16.432560px;}
.wsa{word-spacing:-16.135200px;}
.ws21{word-spacing:-15.168720px;}
.ws16{word-spacing:-14.966520px;}
.ws15{word-spacing:-14.932920px;}
.ws8{word-spacing:-14.760720px;}
.ws30{word-spacing:-14.459520px;}
.ws1f{word-spacing:-14.448720px;}
.ws2e{word-spacing:-11.999760px;}
.ws17{word-spacing:-10.314720px;}
.ws1e{word-spacing:-9.972000px;}
.ws19{word-spacing:-0.144000px;}
.ws27{word-spacing:-0.072000px;}
.wsb{word-spacing:0.000000px;}
.ws12{word-spacing:0.144000px;}
.ws13{word-spacing:0.216000px;}
.ws24{word-spacing:0.432000px;}
.ws29{word-spacing:0.648000px;}
.ws26{word-spacing:0.912000px;}
.ws2b{word-spacing:1.080000px;}
.ws14{word-spacing:6.487920px;}
.ws18{word-spacing:8.280009px;}
.ws1a{word-spacing:8.352000px;}
.wse{word-spacing:8.352009px;}
.wsf{word-spacing:8.424000px;}
.ws28{word-spacing:9.792000px;}
.ws2a{word-spacing:12.666240px;}
.ws20{word-spacing:15.839280px;}
.ws10{word-spacing:15.912000px;}
._c{margin-left:-5.400000px;}
._b{margin-left:-3.561120px;}
._1{margin-left:-2.390400px;}
._9{margin-left:-1.010880px;}
._0{width:1.314720px;}
._a{width:2.826240px;}
._2{width:4.422240px;}
._3{width:5.438160px;}
._11{width:6.474960px;}
._8{width:8.067600px;}
._7{width:9.107040px;}
._12{width:10.140000px;}
._f{width:11.269920px;}
._13{width:12.682080px;}
._d{width:14.904000px;}
._14{width:16.400640px;}
._e{width:17.424000px;}
._25{width:18.455966px;}
._16{width:19.524011px;}
._10{width:21.456000px;}
._1a{width:23.412000px;}
._17{width:24.768000px;}
._19{width:25.992000px;}
._18{width:27.137280px;}
._20{width:31.104000px;}
._21{width:32.182560px;}
._1f{width:33.240000px;}
._22{width:34.885440px;}
._4{width:39.089280px;}
._5{width:40.094400px;}
._6{width:41.432880px;}
._15{width:43.920000px;}
._24{width:47.712000px;}
._23{width:49.248000px;}
._26{width:51.480000px;}
._27{width:52.860000px;}
._28{width:61.344000px;}
._29{width:62.712000px;}
._1d{width:63.864000px;}
._1e{width:64.872000px;}
._1c{width:135.497280px;}
._1b{width:136.656000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.990000px;}
.y2{bottom:4.350000px;}
.y5{bottom:25.410000px;}
.y4{bottom:47.010000px;}
.y3{bottom:68.430000px;}
.y11{bottom:76.176000px;}
.y10{bottom:95.256000px;}
.yf{bottom:116.136000px;}
.y88{bottom:125.856000px;}
.ye{bottom:137.736000px;}
.y69{bottom:143.676000px;}
.y87{bottom:151.770000px;}
.yd{bottom:159.150000px;}
.yaa{bottom:159.510000px;}
.y68{bottom:160.230000px;}
.yc{bottom:180.750000px;}
.y86{bottom:182.010000px;}
.ya9{bottom:185.430000px;}
.yb{bottom:202.350000px;}
.y67{bottom:205.770000px;}
.y85{bottom:207.930000px;}
.yc5{bottom:208.290000px;}
.ya8{bottom:215.670000px;}
.ya{bottom:223.770000px;}
.yc4{bottom:224.850000px;}
.y66{bottom:231.510000px;}
.y84{bottom:238.170000px;}
.ya7{bottom:241.590000px;}
.y9{bottom:245.370000px;}
.y65{bottom:257.430000px;}
.y83{bottom:264.090000px;}
.y5a{bottom:266.790000px;}
.ya6{bottom:271.830000px;}
.yc3{bottom:279.210000px;}
.y64{bottom:283.170000px;}
.y8{bottom:284.070000px;}
.y59{bottom:288.390000px;}
.y82{bottom:289.830000px;}
.y58{bottom:294.330000px;}
.ya5{bottom:297.570000px;}
.y63{bottom:309.090000px;}
.y57{bottom:309.810000px;}
.y61{bottom:310.890000px;}
.y81{bottom:320.070000px;}
.ya4{bottom:327.990000px;}
.y56{bottom:331.410000px;}
.y60{bottom:334.830000px;}
.yc2{bottom:339.015000px;}
.y80{bottom:346.035000px;}
.y32{bottom:346.395000px;}
.y55{bottom:352.875000px;}
.ya3{bottom:358.275000px;}
.y5f{bottom:360.615000px;}
.yc1{bottom:369.075000px;}
.y7f{bottom:371.775000px;}
.y31{bottom:372.135000px;}
.y54{bottom:374.475000px;}
.ya2{bottom:384.195000px;}
.y5e{bottom:386.535000px;}
.y53{bottom:395.895000px;}
.y30{bottom:398.055000px;}
.yc0{bottom:398.955000px;}
.y52{bottom:401.835000px;}
.y7e{bottom:402.195000px;}
.y5d{bottom:412.275000px;}
.ya1{bottom:414.435000px;}
.y51{bottom:418.575000px;}
.y2f{bottom:423.075000px;}
.y7d{bottom:427.935000px;}
.ybf{bottom:428.835000px;}
.y5c{bottom:438.195000px;}
.ya0{bottom:440.355000px;}
.y2e{bottom:444.495000px;}
.y7c{bottom:458.355000px;}
.ybd{bottom:458.715000px;}
.y50{bottom:463.935000px;}
.y2d{bottom:466.095000px;}
.ybe{bottom:466.275000px;}
.y9f{bottom:470.595000px;}
.y7b{bottom:484.095000px;}
.y2c{bottom:487.515000px;}
.ybc{bottom:488.595000px;}
.y4f{bottom:489.855000px;}
.y9e{bottom:496.515000px;}
.y2b{bottom:509.115000px;}
.y7a{bottom:514.515000px;}
.y4e{bottom:515.595000px;}
.y9d{bottom:526.755000px;}
.y2a{bottom:530.535000px;}
.y79{bottom:540.255000px;}
.y4d{bottom:541.515000px;}
.y29{bottom:552.135000px;}
.y9c{bottom:552.675000px;}
.y78{bottom:566.175000px;}
.y4c{bottom:567.255000px;}
.y28{bottom:573.555000px;}
.y9b{bottom:578.415000px;}
.ybb{bottom:591.915000px;}
.y4b{bottom:593.175000px;}
.y77{bottom:596.415000px;}
.y9a{bottom:608.685000px;}
.y27{bottom:610.305000px;}
.yba{bottom:617.685000px;}
.y4a{bottom:618.945000px;}
.y76{bottom:626.685000px;}
.y26{bottom:628.305000px;}
.y99{bottom:634.605000px;}
.yb9{bottom:643.605000px;}
.y49{bottom:644.685000px;}
.y25{bottom:649.905000px;}
.y75{bottom:652.605000px;}
.y98{bottom:660.345000px;}
.yb8{bottom:669.345000px;}
.y48{bottom:670.605000px;}
.y24{bottom:671.325000px;}
.y74{bottom:682.845000px;}
.y97{bottom:686.265000px;}
.y23{bottom:692.925000px;}
.yb7{bottom:695.265000px;}
.y46{bottom:696.345000px;}
.y47{bottom:703.905000px;}
.y73{bottom:708.765000px;}
.y22{bottom:714.525000px;}
.y96{bottom:716.505000px;}
.yb6{bottom:721.005000px;}
.y45{bottom:722.265000px;}
.y21{bottom:735.945000px;}
.y72{bottom:739.005000px;}
.y95{bottom:746.925000px;}
.y44{bottom:748.005000px;}
.yb5{bottom:751.425000px;}
.y20{bottom:757.545000px;}
.y71{bottom:764.925000px;}
.y94{bottom:772.665000px;}
.y43{bottom:773.925000px;}
.y1f{bottom:778.965000px;}
.yb4{bottom:781.665000px;}
.y70{bottom:790.665000px;}
.y93{bottom:798.585000px;}
.y42{bottom:799.665000px;}
.y1e{bottom:800.565000px;}
.yb3{bottom:807.585000px;}
.y6f{bottom:816.585000px;}
.y1d{bottom:822.345000px;}
.y41{bottom:825.585000px;}
.y92{bottom:828.825000px;}
.yb2{bottom:837.825000px;}
.y6e{bottom:842.325000px;}
.y1c{bottom:846.465000px;}
.y40{bottom:851.325000px;}
.y91{bottom:854.745000px;}
.yb1{bottom:863.745000px;}
.y6d{bottom:868.245000px;}
.y1b{bottom:871.890000px;}
.y3f{bottom:877.290000px;}
.y90{bottom:880.530000px;}
.yb0{bottom:889.530000px;}
.y6c{bottom:894.030000px;}
.y1a{bottom:895.650000px;}
.y3e{bottom:903.030000px;}
.y8f{bottom:910.950000px;}
.y19{bottom:919.230000px;}
.y6b{bottom:919.950000px;}
.y3d{bottom:928.950000px;}
.y62{bottom:936.510000px;}
.y8e{bottom:936.690000px;}
.y18{bottom:942.990000px;}
.yaf{bottom:945.690000px;}
.y6a{bottom:950.190000px;}
.y3c{bottom:954.690000px;}
.y17{bottom:966.570000px;}
.y8d{bottom:966.930000px;}
.yae{bottom:971.430000px;}
.y3b{bottom:980.430000px;}
.y5b{bottom:987.990000px;}
.y16{bottom:990.330000px;}
.y8c{bottom:992.850000px;}
.yad{bottom:997.350000px;}
.y3a{bottom:1006.350000px;}
.y15{bottom:1013.550000px;}
.y8b{bottom:1023.090000px;}
.yac{bottom:1027.590000px;}
.y39{bottom:1032.090000px;}
.y14{bottom:1035.870000px;}
.y8a{bottom:1049.010000px;}
.yab{bottom:1053.510000px;}
.y37{bottom:1058.010000px;}
.y13{bottom:1062.510000px;}
.y38{bottom:1065.570000px;}
.yc7{bottom:1075.650000px;}
.y89{bottom:1079.250000px;}
.y36{bottom:1083.750000px;}
.y12{bottom:1091.490000px;}
.yc6{bottom:1105.530000px;}
.y35{bottom:1109.670000px;}
.y7{bottom:1115.790000px;}
.y1{bottom:1134.330000px;}
.y34{bottom:1135.410000px;}
.y33{bottom:1203.480000px;}
.h10{height:38.601562px;}
.h7{height:43.506914px;}
.hf{height:44.777812px;}
.h4{height:51.618867px;}
.hd{height:51.793945px;}
.h6{height:57.902344px;}
.ha{height:62.191406px;}
.h5{height:62.402344px;}
.h3{height:64.078594px;}
.hc{height:65.858555px;}
.h8{height:71.026875px;}
.h9{height:72.763945px;}
.hb{height:77.203125px;}
.he{height:79.347656px;}
.h2{height:86.076000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.796000px;}
.w4{width:329.610000px;}
.w2{width:331.950000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x8{left:104.975987px;}
.x1{left:106.416000px;}
.xf{left:110.915987px;}
.x13{left:148.895987px;}
.xa{left:158.249973px;}
.x9{left:160.409987px;}
.xb{left:163.469987px;}
.x2{left:176.799000px;}
.xe{left:322.454987px;}
.x14{left:371.954987px;}
.x12{left:434.054973px;}
.x3{left:438.375000px;}
.x7{left:446.474987px;}
.x5{left:489.165000px;}
.x15{left:708.809973px;}
.xc{left:711.869973px;}
.x16{left:714.029987px;}
.xd{left:717.089987px;}
.x6{left:777.209987px;}
.x10{left:781.529973px;}
.x11{left:786.749987px;}
@media print{
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:26.880000pt;}
.ls29{letter-spacing:-0.896000pt;}
.ls38{letter-spacing:-0.768000pt;}
.ls56{letter-spacing:-0.640000pt;}
.ls4b{letter-spacing:-0.581333pt;}
.ls35{letter-spacing:-0.576000pt;}
.ls37{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.289067pt;}
.ls3a{letter-spacing:-0.277333pt;}
.ls2b{letter-spacing:-0.267733pt;}
.ls28{letter-spacing:-0.256000pt;}
.ls47{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.184533pt;}
.ls36{letter-spacing:-0.128000pt;}
.ls49{letter-spacing:-0.115200pt;}
.ls39{letter-spacing:-0.064000pt;}
.ls27{letter-spacing:-0.000003pt;}
.ls7{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.000001pt;}
.ls1{letter-spacing:0.014080pt;}
.ls42{letter-spacing:0.044160pt;}
.ls3c{letter-spacing:0.048640pt;}
.ls2c{letter-spacing:0.049280pt;}
.ls4{letter-spacing:0.056320pt;}
.ls8{letter-spacing:0.056533pt;}
.ls2a{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.092267pt;}
.ls31{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.097280pt;}
.ls1d{letter-spacing:0.106880pt;}
.ls11{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.137600pt;}
.ls22{letter-spacing:0.153067pt;}
.ls25{letter-spacing:0.159360pt;}
.ls17{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.182933pt;}
.ls40{letter-spacing:0.183040pt;}
.ls10{letter-spacing:0.192000pt;}
.ls4c{letter-spacing:0.194560pt;}
.ls2e{letter-spacing:0.231680pt;}
.lsf{letter-spacing:0.234667pt;}
.ls58{letter-spacing:0.235733pt;}
.lse{letter-spacing:0.238080pt;}
.ls4a{letter-spacing:0.239467pt;}
.ls13{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.288000pt;}
.ls48{letter-spacing:0.307733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3b{letter-spacing:0.362667pt;}
.lsd{letter-spacing:0.384000pt;}
.ls4e{letter-spacing:0.416000pt;}
.ls5{letter-spacing:0.433280pt;}
.ls6{letter-spacing:0.512000pt;}
.ls46{letter-spacing:0.539947pt;}
.ls16{letter-spacing:0.576000pt;}
.ls3e{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.689280pt;}
.ls2d{letter-spacing:0.698667pt;}
.ls5c{letter-spacing:0.746667pt;}
.ls20{letter-spacing:0.746880pt;}
.ls15{letter-spacing:0.832000pt;}
.ls1f{letter-spacing:1.713280pt;}
.ls1a{letter-spacing:2.112000pt;}
.ls41{letter-spacing:2.239360pt;}
.ls45{letter-spacing:2.353280pt;}
.ls1b{letter-spacing:2.496000pt;}
.ls5a{letter-spacing:3.114667pt;}
.ls30{letter-spacing:3.136000pt;}
.ls19{letter-spacing:3.776000pt;}
.ls53{letter-spacing:4.032000pt;}
.ls32{letter-spacing:4.416000pt;}
.ls3f{letter-spacing:5.056000pt;}
.ls23{letter-spacing:5.553280pt;}
.ls14{letter-spacing:5.696000pt;}
.ls3d{letter-spacing:6.336000pt;}
.ls5b{letter-spacing:6.833280pt;}
.ls33{letter-spacing:6.976000pt;}
.ls12{letter-spacing:7.232000pt;}
.ls2{letter-spacing:7.473280pt;}
.ls51{letter-spacing:7.850667pt;}
.ls52{letter-spacing:7.872000pt;}
.ls18{letter-spacing:9.792000pt;}
.ls54{letter-spacing:10.432000pt;}
.ls2f{letter-spacing:10.816000pt;}
.ls57{letter-spacing:15.552000pt;}
.ls44{letter-spacing:20.023040pt;}
.ls59{letter-spacing:22.336000pt;}
.ls43{letter-spacing:25.019520pt;}
.ls34{letter-spacing:26.560000pt;}
.ls55{letter-spacing:28.352000pt;}
.ls50{letter-spacing:56.512000pt;}
.ls4f{letter-spacing:57.002667pt;}
.ls4d{letter-spacing:121.642667pt;}
.ws3{word-spacing:-21.041280pt;}
.ws2d{word-spacing:-18.304000pt;}
.ws1d{word-spacing:-18.176000pt;}
.ws25{word-spacing:-18.048000pt;}
.wsc{word-spacing:-17.984001pt;}
.ws4{word-spacing:-17.984000pt;}
.ws2c{word-spacing:-17.344000pt;}
.ws2f{word-spacing:-17.280000pt;}
.ws5{word-spacing:-16.545280pt;}
.ws6{word-spacing:-16.256213pt;}
.ws1c{word-spacing:-16.000000pt;}
.ws23{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws22{word-spacing:-15.807997pt;}
.ws1b{word-spacing:-15.424000pt;}
.ws1{word-spacing:-15.246720pt;}
.ws7{word-spacing:-15.064320pt;}
.ws9{word-spacing:-15.018987pt;}
.ws0{word-spacing:-14.926720pt;}
.ws2{word-spacing:-14.606720pt;}
.wsa{word-spacing:-14.342400pt;}
.ws21{word-spacing:-13.483307pt;}
.ws16{word-spacing:-13.303573pt;}
.ws15{word-spacing:-13.273707pt;}
.ws8{word-spacing:-13.120640pt;}
.ws30{word-spacing:-12.852907pt;}
.ws1f{word-spacing:-12.843307pt;}
.ws2e{word-spacing:-10.666453pt;}
.ws17{word-spacing:-9.168640pt;}
.ws1e{word-spacing:-8.864000pt;}
.ws19{word-spacing:-0.128000pt;}
.ws27{word-spacing:-0.064000pt;}
.wsb{word-spacing:0.000000pt;}
.ws12{word-spacing:0.128000pt;}
.ws13{word-spacing:0.192000pt;}
.ws24{word-spacing:0.384000pt;}
.ws29{word-spacing:0.576000pt;}
.ws26{word-spacing:0.810667pt;}
.ws2b{word-spacing:0.960000pt;}
.ws14{word-spacing:5.767040pt;}
.ws18{word-spacing:7.360008pt;}
.ws1a{word-spacing:7.424000pt;}
.wse{word-spacing:7.424008pt;}
.wsf{word-spacing:7.488000pt;}
.ws28{word-spacing:8.704000pt;}
.ws2a{word-spacing:11.258880pt;}
.ws20{word-spacing:14.079360pt;}
.ws10{word-spacing:14.144000pt;}
._c{margin-left:-4.800000pt;}
._b{margin-left:-3.165440pt;}
._1{margin-left:-2.124800pt;}
._9{margin-left:-0.898560pt;}
._0{width:1.168640pt;}
._a{width:2.512213pt;}
._2{width:3.930880pt;}
._3{width:4.833920pt;}
._11{width:5.755520pt;}
._8{width:7.171200pt;}
._7{width:8.095147pt;}
._12{width:9.013333pt;}
._f{width:10.017707pt;}
._13{width:11.272960pt;}
._d{width:13.248000pt;}
._14{width:14.578347pt;}
._e{width:15.488000pt;}
._25{width:16.405303pt;}
._16{width:17.354677pt;}
._10{width:19.072000pt;}
._1a{width:20.810667pt;}
._17{width:22.016000pt;}
._19{width:23.104000pt;}
._18{width:24.122027pt;}
._20{width:27.648000pt;}
._21{width:28.606720pt;}
._1f{width:29.546667pt;}
._22{width:31.009280pt;}
._4{width:34.746027pt;}
._5{width:35.639467pt;}
._6{width:36.829227pt;}
._15{width:39.040000pt;}
._24{width:42.410667pt;}
._23{width:43.776000pt;}
._26{width:45.760000pt;}
._27{width:46.986667pt;}
._28{width:54.528000pt;}
._29{width:55.744000pt;}
._1d{width:56.768000pt;}
._1e{width:57.664000pt;}
._1c{width:120.442027pt;}
._1b{width:121.472000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.546667pt;}
.y2{bottom:3.866667pt;}
.y5{bottom:22.586667pt;}
.y4{bottom:41.786667pt;}
.y3{bottom:60.826667pt;}
.y11{bottom:67.712000pt;}
.y10{bottom:84.672000pt;}
.yf{bottom:103.232000pt;}
.y88{bottom:111.872000pt;}
.ye{bottom:122.432000pt;}
.y69{bottom:127.712000pt;}
.y87{bottom:134.906667pt;}
.yd{bottom:141.466667pt;}
.yaa{bottom:141.786667pt;}
.y68{bottom:142.426667pt;}
.yc{bottom:160.666667pt;}
.y86{bottom:161.786667pt;}
.ya9{bottom:164.826667pt;}
.yb{bottom:179.866667pt;}
.y67{bottom:182.906667pt;}
.y85{bottom:184.826667pt;}
.yc5{bottom:185.146667pt;}
.ya8{bottom:191.706667pt;}
.ya{bottom:198.906667pt;}
.yc4{bottom:199.866667pt;}
.y66{bottom:205.786667pt;}
.y84{bottom:211.706667pt;}
.ya7{bottom:214.746667pt;}
.y9{bottom:218.106667pt;}
.y65{bottom:228.826667pt;}
.y83{bottom:234.746667pt;}
.y5a{bottom:237.146667pt;}
.ya6{bottom:241.626667pt;}
.yc3{bottom:248.186667pt;}
.y64{bottom:251.706667pt;}
.y8{bottom:252.506667pt;}
.y59{bottom:256.346667pt;}
.y82{bottom:257.626667pt;}
.y58{bottom:261.626667pt;}
.ya5{bottom:264.506667pt;}
.y63{bottom:274.746667pt;}
.y57{bottom:275.386667pt;}
.y61{bottom:276.346667pt;}
.y81{bottom:284.506667pt;}
.ya4{bottom:291.546667pt;}
.y56{bottom:294.586667pt;}
.y60{bottom:297.626667pt;}
.yc2{bottom:301.346667pt;}
.y80{bottom:307.586667pt;}
.y32{bottom:307.906667pt;}
.y55{bottom:313.666667pt;}
.ya3{bottom:318.466667pt;}
.y5f{bottom:320.546667pt;}
.yc1{bottom:328.066667pt;}
.y7f{bottom:330.466667pt;}
.y31{bottom:330.786667pt;}
.y54{bottom:332.866667pt;}
.ya2{bottom:341.506667pt;}
.y5e{bottom:343.586667pt;}
.y53{bottom:351.906667pt;}
.y30{bottom:353.826667pt;}
.yc0{bottom:354.626667pt;}
.y52{bottom:357.186667pt;}
.y7e{bottom:357.506667pt;}
.y5d{bottom:366.466667pt;}
.ya1{bottom:368.386667pt;}
.y51{bottom:372.066667pt;}
.y2f{bottom:376.066667pt;}
.y7d{bottom:380.386667pt;}
.ybf{bottom:381.186667pt;}
.y5c{bottom:389.506667pt;}
.ya0{bottom:391.426667pt;}
.y2e{bottom:395.106667pt;}
.y7c{bottom:407.426667pt;}
.ybd{bottom:407.746667pt;}
.y50{bottom:412.386667pt;}
.y2d{bottom:414.306667pt;}
.ybe{bottom:414.466667pt;}
.y9f{bottom:418.306667pt;}
.y7b{bottom:430.306667pt;}
.y2c{bottom:433.346667pt;}
.ybc{bottom:434.306667pt;}
.y4f{bottom:435.426667pt;}
.y9e{bottom:441.346667pt;}
.y2b{bottom:452.546667pt;}
.y7a{bottom:457.346667pt;}
.y4e{bottom:458.306667pt;}
.y9d{bottom:468.226667pt;}
.y2a{bottom:471.586667pt;}
.y79{bottom:480.226667pt;}
.y4d{bottom:481.346667pt;}
.y29{bottom:490.786667pt;}
.y9c{bottom:491.266667pt;}
.y78{bottom:503.266667pt;}
.y4c{bottom:504.226667pt;}
.y28{bottom:509.826667pt;}
.y9b{bottom:514.146667pt;}
.ybb{bottom:526.146667pt;}
.y4b{bottom:527.266667pt;}
.y77{bottom:530.146667pt;}
.y9a{bottom:541.053333pt;}
.y27{bottom:542.493333pt;}
.yba{bottom:549.053333pt;}
.y4a{bottom:550.173333pt;}
.y76{bottom:557.053333pt;}
.y26{bottom:558.493333pt;}
.y99{bottom:564.093333pt;}
.yb9{bottom:572.093333pt;}
.y49{bottom:573.053333pt;}
.y25{bottom:577.693333pt;}
.y75{bottom:580.093333pt;}
.y98{bottom:586.973333pt;}
.yb8{bottom:594.973333pt;}
.y48{bottom:596.093333pt;}
.y24{bottom:596.733333pt;}
.y74{bottom:606.973333pt;}
.y97{bottom:610.013333pt;}
.y23{bottom:615.933333pt;}
.yb7{bottom:618.013333pt;}
.y46{bottom:618.973333pt;}
.y47{bottom:625.693333pt;}
.y73{bottom:630.013333pt;}
.y22{bottom:635.133333pt;}
.y96{bottom:636.893333pt;}
.yb6{bottom:640.893333pt;}
.y45{bottom:642.013333pt;}
.y21{bottom:654.173333pt;}
.y72{bottom:656.893333pt;}
.y95{bottom:663.933333pt;}
.y44{bottom:664.893333pt;}
.yb5{bottom:667.933333pt;}
.y20{bottom:673.373333pt;}
.y71{bottom:679.933333pt;}
.y94{bottom:686.813333pt;}
.y43{bottom:687.933333pt;}
.y1f{bottom:692.413333pt;}
.yb4{bottom:694.813333pt;}
.y70{bottom:702.813333pt;}
.y93{bottom:709.853333pt;}
.y42{bottom:710.813333pt;}
.y1e{bottom:711.613333pt;}
.yb3{bottom:717.853333pt;}
.y6f{bottom:725.853333pt;}
.y1d{bottom:730.973333pt;}
.y41{bottom:733.853333pt;}
.y92{bottom:736.733333pt;}
.yb2{bottom:744.733333pt;}
.y6e{bottom:748.733333pt;}
.y1c{bottom:752.413333pt;}
.y40{bottom:756.733333pt;}
.y91{bottom:759.773333pt;}
.yb1{bottom:767.773333pt;}
.y6d{bottom:771.773333pt;}
.y1b{bottom:775.013333pt;}
.y3f{bottom:779.813333pt;}
.y90{bottom:782.693333pt;}
.yb0{bottom:790.693333pt;}
.y6c{bottom:794.693333pt;}
.y1a{bottom:796.133333pt;}
.y3e{bottom:802.693333pt;}
.y8f{bottom:809.733333pt;}
.y19{bottom:817.093333pt;}
.y6b{bottom:817.733333pt;}
.y3d{bottom:825.733333pt;}
.y62{bottom:832.453333pt;}
.y8e{bottom:832.613333pt;}
.y18{bottom:838.213333pt;}
.yaf{bottom:840.613333pt;}
.y6a{bottom:844.613333pt;}
.y3c{bottom:848.613333pt;}
.y17{bottom:859.173333pt;}
.y8d{bottom:859.493333pt;}
.yae{bottom:863.493333pt;}
.y3b{bottom:871.493333pt;}
.y5b{bottom:878.213333pt;}
.y16{bottom:880.293333pt;}
.y8c{bottom:882.533333pt;}
.yad{bottom:886.533333pt;}
.y3a{bottom:894.533333pt;}
.y15{bottom:900.933333pt;}
.y8b{bottom:909.413333pt;}
.yac{bottom:913.413333pt;}
.y39{bottom:917.413333pt;}
.y14{bottom:920.773333pt;}
.y8a{bottom:932.453333pt;}
.yab{bottom:936.453333pt;}
.y37{bottom:940.453333pt;}
.y13{bottom:944.453333pt;}
.y38{bottom:947.173333pt;}
.yc7{bottom:956.133333pt;}
.y89{bottom:959.333333pt;}
.y36{bottom:963.333333pt;}
.y12{bottom:970.213333pt;}
.yc6{bottom:982.693333pt;}
.y35{bottom:986.373333pt;}
.y7{bottom:991.813333pt;}
.y1{bottom:1008.293333pt;}
.y34{bottom:1009.253333pt;}
.y33{bottom:1069.760000pt;}
.h10{height:34.312500pt;}
.h7{height:38.672812pt;}
.hf{height:39.802500pt;}
.h4{height:45.883437pt;}
.hd{height:46.039063pt;}
.h6{height:51.468750pt;}
.ha{height:55.281250pt;}
.h5{height:55.468750pt;}
.h3{height:56.958750pt;}
.hc{height:58.540937pt;}
.h8{height:63.135000pt;}
.h9{height:64.679063pt;}
.hb{height:68.625000pt;}
.he{height:70.531250pt;}
.h2{height:76.512000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.152000pt;}
.w4{width:292.986667pt;}
.w2{width:295.066667pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x8{left:93.311988pt;}
.x1{left:94.592000pt;}
.xf{left:98.591988pt;}
.x13{left:132.351988pt;}
.xa{left:140.666643pt;}
.x9{left:142.586655pt;}
.xb{left:145.306655pt;}
.x2{left:157.154667pt;}
.xe{left:286.626655pt;}
.x14{left:330.626655pt;}
.x12{left:385.826643pt;}
.x3{left:389.666667pt;}
.x7{left:396.866655pt;}
.x5{left:434.813333pt;}
.x15{left:630.053310pt;}
.xc{left:632.773310pt;}
.x16{left:634.693322pt;}
.xd{left:637.413322pt;}
.x6{left:690.853322pt;}
.x10{left:694.693310pt;}
.x11{left:699.333322pt;}
}




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