
    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_c0898fceb52a5a2f409d4c77.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929688;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_1dd9c78a90e26dfb79d0ecc7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918945;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_30123f73efb452510d8a3c1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_49bbcc7abb375d43a23d4d32.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0dbe26731d82f4938b74f818.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.677734;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.189120px;}
.ls16{letter-spacing:-0.993600px;}
.ls19{letter-spacing:-0.794880px;}
.ls17{letter-spacing:-0.662400px;}
.ls31{letter-spacing:-0.596160px;}
.ls15{letter-spacing:-0.397440px;}
.ls22{letter-spacing:-0.324000px;}
.ls1d{letter-spacing:-0.292320px;}
.ls10{letter-spacing:-0.264960px;}
.ls1a{letter-spacing:-0.208800px;}
.ls14{letter-spacing:-0.198720px;}
.ls27{letter-spacing:-0.162000px;}
.ls18{letter-spacing:-0.132480px;}
.ls1c{letter-spacing:-0.125280px;}
.ls21{letter-spacing:-0.108000px;}
.ls3e{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.066240px;}
.lsf{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.041760px;}
.ls13{letter-spacing:0.066240px;}
.ls37{letter-spacing:0.083520px;}
.ls2{letter-spacing:0.132480px;}
.ls2b{letter-spacing:0.178848px;}
.ls1e{letter-spacing:0.198720px;}
.lsc{letter-spacing:0.208800px;}
.ls11{letter-spacing:0.240480px;}
.lsa{letter-spacing:0.250560px;}
.ls23{letter-spacing:0.264960px;}
.ls1b{letter-spacing:0.292320px;}
.ls6{letter-spacing:0.331200px;}
.ls9{letter-spacing:0.334080px;}
.lse{letter-spacing:0.375840px;}
.ls32{letter-spacing:0.459360px;}
.ls36{letter-spacing:0.584640px;}
.ls39{letter-spacing:0.728640px;}
.ls30{letter-spacing:0.897840px;}
.ls3d{letter-spacing:1.085760px;}
.ls7{letter-spacing:1.457280px;}
.ls4{letter-spacing:2.848320px;}
.ls25{letter-spacing:3.576960px;}
.lsd{letter-spacing:3.967200px;}
.ls38{letter-spacing:5.034240px;}
.ls1{letter-spacing:5.762880px;}
.ls35{letter-spacing:6.138720px;}
.ls3{letter-spacing:6.491520px;}
.ls29{letter-spacing:7.220160px;}
.ls8{letter-spacing:8.268480px;}
.ls5{letter-spacing:10.797120px;}
.ls3c{letter-spacing:11.859840px;}
.ls28{letter-spacing:15.102720px;}
.ls2c{letter-spacing:15.831360px;}
.ls2f{letter-spacing:16.560000px;}
.ls1f{letter-spacing:17.288640px;}
.ls2a{letter-spacing:18.017280px;}
.ls33{letter-spacing:19.408320px;}
.ls26{letter-spacing:20.136960px;}
.ls3a{letter-spacing:21.594240px;}
.ls3b{letter-spacing:22.322880px;}
.ls34{letter-spacing:23.051520px;}
.ls20{letter-spacing:24.508800px;}
.ls2d{letter-spacing:25.171200px;}
.ls2e{letter-spacing:25.899840px;}
.ls0{letter-spacing:30.271680px;}
.ls24{letter-spacing:1288.278000px;}
.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;}
}
.ws0{word-spacing:-21.060000px;}
.ws30{word-spacing:-17.928000px;}
.ws1e{word-spacing:-16.824960px;}
.ws8{word-spacing:-16.626240px;}
.ws1{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.493760px;}
.ws7{word-spacing:-16.427520px;}
.ws3{word-spacing:-16.361280px;}
.ws4{word-spacing:-16.295040px;}
.ws6{word-spacing:-15.897600px;}
.ws1d{word-spacing:-13.176000px;}
.ws2d{word-spacing:-11.024640px;}
.wsa{word-spacing:-10.732320px;}
.ws2{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.314720px;}
.wsb{word-spacing:-10.147680px;}
.ws2c{word-spacing:-0.459360px;}
.ws24{word-spacing:-0.331200px;}
.ws17{word-spacing:-0.292320px;}
.ws28{word-spacing:-0.264960px;}
.ws19{word-spacing:-0.208800px;}
.ws2a{word-spacing:-0.132480px;}
.ws2f{word-spacing:-0.083520px;}
.wsf{word-spacing:-0.066240px;}
.wsd{word-spacing:0.000000px;}
.wse{word-spacing:0.066240px;}
.ws1f{word-spacing:0.108000px;}
.ws18{word-spacing:0.125280px;}
.ws1c{word-spacing:0.132480px;}
.ws21{word-spacing:0.162000px;}
.ws10{word-spacing:0.198720px;}
.ws16{word-spacing:0.208800px;}
.wsc{word-spacing:0.264960px;}
.ws1b{word-spacing:0.292320px;}
.ws20{word-spacing:0.375840px;}
.ws11{word-spacing:0.397440px;}
.ws29{word-spacing:0.596160px;}
.ws26{word-spacing:0.662400px;}
.ws15{word-spacing:0.794880px;}
.ws12{word-spacing:0.993600px;}
.ws14{word-spacing:2.980800px;}
.ws2b{word-spacing:4.677120px;}
.ws22{word-spacing:5.100480px;}
.ws2e{word-spacing:6.264000px;}
.ws13{word-spacing:6.557760px;}
.ws1a{word-spacing:7.934400px;}
.ws23{word-spacing:11.062080px;}
.ws25{word-spacing:15.168960px;}
.ws27{word-spacing:27.555840px;}
._14{margin-left:-11.989440px;}
._1{margin-left:-1.118232px;}
._0{width:1.154592px;}
._9{width:2.334600px;}
._8{width:3.583584px;}
._13{width:4.695408px;}
._4{width:6.218712px;}
._5{width:7.553448px;}
._12{width:9.227376px;}
._3{width:10.696536px;}
._2{width:11.757600px;}
._6{width:13.353984px;}
._10{width:14.790168px;}
._11{width:16.062048px;}
._1c{width:17.628696px;}
._19{width:18.718200px;}
._17{width:19.825632px;}
._1d{width:21.097440px;}
._26{width:22.303008px;}
._e{width:24.070392px;}
._f{width:25.259688px;}
._18{width:26.476128px;}
._a{width:28.244736px;}
._7{width:30.150432px;}
._b{width:31.593888px;}
._29{width:33.394176px;}
._1b{width:34.442208px;}
._d{width:35.496000px;}
._c{width:36.822816px;}
._23{width:37.915776px;}
._28{width:39.144384px;}
._1e{width:41.400000px;}
._25{width:42.963264px;}
._24{width:44.327808px;}
._1a{width:45.328032px;}
._27{width:46.553472px;}
._21{width:52.389720px;}
._1f{width:53.455680px;}
._20{width:54.737280px;}
._22{width:55.972800px;}
._2b{width:65.632176px;}
._2a{width:66.661920px;}
._16{width:110.235384px;}
._15{width:1515.942000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y81{bottom:187.566480px;}
.y80{bottom:207.720000px;}
.y28{bottom:237.768120px;}
.ye4{bottom:237.773880px;}
.y108{bottom:237.775320px;}
.y56{bottom:237.775680px;}
.y9f{bottom:237.777120px;}
.y7f{bottom:237.778560px;}
.y12c{bottom:237.780000px;}
.y12d{bottom:252.900000px;}
.y27{bottom:256.309560px;}
.ye3{bottom:256.315320px;}
.y107{bottom:256.316760px;}
.y55{bottom:256.317120px;}
.y9e{bottom:256.318560px;}
.y7e{bottom:256.320000px;}
.y82{bottom:271.440000px;}
.y26{bottom:274.851000px;}
.ye2{bottom:274.856760px;}
.y106{bottom:274.858200px;}
.y54{bottom:274.858560px;}
.y9d{bottom:274.860000px;}
.y12b{bottom:283.284000px;}
.ya0{bottom:289.980000px;}
.y25{bottom:293.392440px;}
.ye1{bottom:293.398200px;}
.y105{bottom:293.399640px;}
.y53{bottom:293.400000px;}
.y12a{bottom:301.831200px;}
.y57{bottom:308.520000px;}
.y24{bottom:312.111360px;}
.ye0{bottom:312.117120px;}
.y104{bottom:312.118560px;}
.y129{bottom:320.378400px;}
.ybe{bottom:320.421600px;}
.y7d{bottom:320.436000px;}
.y9c{bottom:320.472000px;}
.y23{bottom:330.652800px;}
.ydf{bottom:330.658560px;}
.y103{bottom:330.660000px;}
.y128{bottom:338.925600px;}
.ybd{bottom:338.968800px;}
.y7c{bottom:338.983200px;}
.y9b{bottom:339.019200px;}
.y52{bottom:339.098400px;}
.y109{bottom:345.780000px;}
.y22{bottom:349.194240px;}
.yde{bottom:349.200000px;}
.y127{bottom:357.472800px;}
.ybc{bottom:357.516000px;}
.y7b{bottom:357.530400px;}
.y9a{bottom:357.566400px;}
.y51{bottom:357.645600px;}
.ye5{bottom:364.320000px;}
.y21{bottom:367.735680px;}
.y126{bottom:376.020000px;}
.ybb{bottom:376.063200px;}
.y7a{bottom:376.077600px;}
.y99{bottom:376.113600px;}
.y50{bottom:376.192800px;}
.y20{bottom:386.277120px;}
.y125{bottom:394.567200px;}
.y4f{bottom:394.581600px;}
.yba{bottom:394.610400px;}
.y79{bottom:394.624800px;}
.y98{bottom:394.660800px;}
.ydd{bottom:394.711200px;}
.y1f{bottom:404.818560px;}
.y124{bottom:413.280000px;}
.y4e{bottom:413.294400px;}
.yb9{bottom:413.323200px;}
.y78{bottom:413.337600px;}
.y97{bottom:413.373600px;}
.y114{bottom:413.395200px;}
.y102{bottom:413.402400px;}
.ydc{bottom:413.424000px;}
.y1e{bottom:423.360000px;}
.y123{bottom:431.827200px;}
.y4d{bottom:431.841600px;}
.yb8{bottom:431.870400px;}
.y77{bottom:431.884800px;}
.y96{bottom:431.920800px;}
.y113{bottom:431.942400px;}
.y101{bottom:431.949600px;}
.ydb{bottom:431.971200px;}
.y29{bottom:438.480000px;}
.y122{bottom:450.374400px;}
.y4c{bottom:450.388800px;}
.yb7{bottom:450.417600px;}
.y76{bottom:450.432000px;}
.y95{bottom:450.468000px;}
.y112{bottom:450.489600px;}
.y100{bottom:450.496800px;}
.yda{bottom:450.518400px;}
.y143{bottom:466.106400px;}
.y1d{bottom:468.172800px;}
.y121{bottom:468.921600px;}
.y4b{bottom:468.936000px;}
.yb6{bottom:468.964800px;}
.y75{bottom:468.979200px;}
.y94{bottom:469.015200px;}
.y111{bottom:469.036800px;}
.yff{bottom:469.044000px;}
.yd9{bottom:469.065600px;}
.y142{bottom:484.819200px;}
.y1c{bottom:486.676800px;}
.y120{bottom:487.468800px;}
.y4a{bottom:487.483200px;}
.yb5{bottom:487.512000px;}
.y74{bottom:487.526400px;}
.y93{bottom:487.562400px;}
.y110{bottom:487.584000px;}
.yfe{bottom:487.591200px;}
.yd8{bottom:487.612800px;}
.y141{bottom:503.366400px;}
.y1b{bottom:505.224000px;}
.y11f{bottom:506.016000px;}
.y49{bottom:506.030400px;}
.yd7{bottom:506.052000px;}
.yb4{bottom:506.059200px;}
.y73{bottom:506.073600px;}
.y92{bottom:506.109600px;}
.y10f{bottom:506.131200px;}
.yfd{bottom:506.138400px;}
.y140{bottom:521.913600px;}
.y1a{bottom:523.771200px;}
.y11e{bottom:524.563200px;}
.y48{bottom:524.577600px;}
.yd6{bottom:524.599200px;}
.yb3{bottom:524.606400px;}
.y72{bottom:524.620800px;}
.y91{bottom:524.656800px;}
.y10e{bottom:524.678400px;}
.yfc{bottom:524.685600px;}
.y13f{bottom:540.460800px;}
.y19{bottom:542.318400px;}
.y11d{bottom:543.110400px;}
.y47{bottom:543.124800px;}
.yd5{bottom:543.146400px;}
.yb2{bottom:543.153600px;}
.y71{bottom:543.168000px;}
.y90{bottom:543.204000px;}
.y10d{bottom:543.225600px;}
.yfb{bottom:543.232800px;}
.y13e{bottom:559.008000px;}
.y18{bottom:560.865600px;}
.y11c{bottom:561.823200px;}
.y46{bottom:561.837600px;}
.yd4{bottom:561.859200px;}
.yb1{bottom:561.866400px;}
.y70{bottom:561.880800px;}
.y8f{bottom:561.916800px;}
.y10c{bottom:561.938400px;}
.yfa{bottom:561.945600px;}
.y13d{bottom:577.555200px;}
.y17{bottom:579.412800px;}
.y11b{bottom:580.370400px;}
.y45{bottom:580.384800px;}
.yd3{bottom:580.406400px;}
.yb0{bottom:580.413600px;}
.y6f{bottom:580.428000px;}
.y8e{bottom:580.464000px;}
.y10b{bottom:580.485600px;}
.yf9{bottom:580.492800px;}
.y13c{bottom:596.102400px;}
.y16{bottom:597.960000px;}
.yf8{bottom:598.910400px;}
.y11a{bottom:598.917600px;}
.y44{bottom:598.932000px;}
.yd2{bottom:598.953600px;}
.yaf{bottom:598.960800px;}
.y6e{bottom:598.975200px;}
.y8d{bottom:599.011200px;}
.y10a{bottom:599.032800px;}
.y13b{bottom:614.649600px;}
.y15{bottom:616.672800px;}
.yf7{bottom:617.457600px;}
.y119{bottom:617.464800px;}
.y43{bottom:617.479200px;}
.yd1{bottom:617.500800px;}
.yae{bottom:617.508000px;}
.y6d{bottom:617.522400px;}
.y8c{bottom:617.558400px;}
.y13a{bottom:633.362400px;}
.y14{bottom:635.191200px;}
.yf6{bottom:636.004800px;}
.y118{bottom:636.012000px;}
.y42{bottom:636.026400px;}
.yd0{bottom:636.048000px;}
.yad{bottom:636.055200px;}
.y6c{bottom:636.069600px;}
.y8b{bottom:636.105600px;}
.y139{bottom:651.909600px;}
.y13{bottom:653.738400px;}
.yf5{bottom:654.552000px;}
.y117{bottom:654.559200px;}
.y41{bottom:654.573600px;}
.ycf{bottom:654.595200px;}
.yac{bottom:654.602400px;}
.y6b{bottom:654.616800px;}
.y8a{bottom:654.652800px;}
.y138{bottom:670.456800px;}
.y12{bottom:672.285600px;}
.yf4{bottom:673.099200px;}
.y116{bottom:673.106400px;}
.y40{bottom:673.120800px;}
.yce{bottom:673.142400px;}
.yab{bottom:673.149600px;}
.y6a{bottom:673.164000px;}
.y89{bottom:673.200000px;}
.y137{bottom:689.004000px;}
.y11{bottom:690.832800px;}
.yf3{bottom:691.646400px;}
.y115{bottom:691.653600px;}
.y3f{bottom:691.668000px;}
.ycd{bottom:691.689600px;}
.yaa{bottom:691.696800px;}
.y69{bottom:691.711200px;}
.y88{bottom:691.747200px;}
.y136{bottom:707.551200px;}
.y10{bottom:709.336800px;}
.yf2{bottom:710.359200px;}
.y87{bottom:710.366400px;}
.y3e{bottom:710.380800px;}
.ycc{bottom:710.402400px;}
.ya9{bottom:710.409600px;}
.y68{bottom:710.424000px;}
.y135{bottom:726.098400px;}
.yf{bottom:727.884000px;}
.yf1{bottom:728.906400px;}
.y86{bottom:728.913600px;}
.y3d{bottom:728.928000px;}
.ycb{bottom:728.949600px;}
.ya8{bottom:728.956800px;}
.y67{bottom:728.971200px;}
.y134{bottom:744.645600px;}
.ye{bottom:746.431200px;}
.yf0{bottom:747.453600px;}
.y85{bottom:747.460800px;}
.y3c{bottom:747.475200px;}
.yca{bottom:747.496800px;}
.ya7{bottom:747.504000px;}
.y66{bottom:747.518400px;}
.y133{bottom:763.192800px;}
.yd{bottom:765.144000px;}
.yef{bottom:766.000800px;}
.y84{bottom:766.008000px;}
.y3b{bottom:766.022400px;}
.yc9{bottom:766.044000px;}
.ya6{bottom:766.051200px;}
.y65{bottom:766.065600px;}
.y132{bottom:781.905600px;}
.yc{bottom:783.691200px;}
.yee{bottom:784.548000px;}
.y83{bottom:784.555200px;}
.y3a{bottom:784.569600px;}
.yc8{bottom:784.591200px;}
.ya5{bottom:784.598400px;}
.y64{bottom:784.612800px;}
.y131{bottom:800.452800px;}
.yb{bottom:802.238400px;}
.yed{bottom:803.095200px;}
.y63{bottom:803.102400px;}
.y39{bottom:803.116800px;}
.yc7{bottom:803.138400px;}
.ya4{bottom:803.145600px;}
.y130{bottom:819.000000px;}
.ya{bottom:820.785600px;}
.yec{bottom:821.642400px;}
.y62{bottom:821.649600px;}
.y38{bottom:821.664000px;}
.yc6{bottom:821.685600px;}
.ya3{bottom:821.692800px;}
.y9{bottom:839.332800px;}
.yeb{bottom:840.189600px;}
.y61{bottom:840.196800px;}
.y37{bottom:840.211200px;}
.yc5{bottom:840.232800px;}
.ya2{bottom:840.240000px;}
.y12f{bottom:855.900000px;}
.y8{bottom:857.862720px;}
.yea{bottom:858.902400px;}
.y60{bottom:858.909600px;}
.y36{bottom:858.924000px;}
.yc4{bottom:858.945600px;}
.ya1{bottom:858.952800px;}
.y7{bottom:876.409920px;}
.ye9{bottom:877.449600px;}
.y5f{bottom:877.456800px;}
.y35{bottom:877.471200px;}
.yc3{bottom:877.492800px;}
.y12e{bottom:893.520000px;}
.y6{bottom:894.957120px;}
.ye8{bottom:895.996800px;}
.y5e{bottom:896.004000px;}
.yc2{bottom:896.011200px;}
.y34{bottom:896.018400px;}
.y5{bottom:913.669920px;}
.ye7{bottom:914.544000px;}
.y5d{bottom:914.551200px;}
.yc1{bottom:914.558400px;}
.y33{bottom:914.565600px;}
.y4{bottom:932.217120px;}
.ye6{bottom:933.091200px;}
.y5c{bottom:933.098400px;}
.yc0{bottom:933.105600px;}
.y32{bottom:933.112800px;}
.y3{bottom:950.400000px;}
.y31{bottom:951.638400px;}
.y5b{bottom:951.645600px;}
.ybf{bottom:951.652800px;}
.y30{bottom:970.185600px;}
.y5a{bottom:970.192800px;}
.y2{bottom:973.440000px;}
.y2f{bottom:988.732800px;}
.y59{bottom:988.740000px;}
.y2e{bottom:1007.445600px;}
.y58{bottom:1007.452800px;}
.y2d{bottom:1025.992800px;}
.y1{bottom:1031.760000px;}
.y2c{bottom:1044.540000px;}
.y2b{bottom:1076.580000px;}
.y2a{bottom:1094.040000px;}
.h9{height:34.949531px;}
.hc{height:35.991211px;}
.ha{height:44.149219px;}
.hb{height:45.193359px;}
.h13{height:47.988281px;}
.h5{height:55.437187px;}
.he{height:55.465988px;}
.h11{height:55.494788px;}
.h6{height:55.506307px;}
.h10{height:55.523587px;}
.h8{height:55.552388px;}
.h7{height:55.609987px;}
.hf{height:55.811588px;}
.hd{height:56.070788px;}
.h2{height:56.146289px;}
.h4{height:65.010937px;}
.h12{height:72.562500px;}
.h3{height:80.140430px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:178.560000px;}
.x4{left:191.338560px;}
.x6{left:195.649920px;}
.x2{left:337.500000px;}
.x1{left:388.080000px;}
.x5{left:454.860000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.501440pt;}
.ls16{letter-spacing:-0.883200pt;}
.ls19{letter-spacing:-0.706560pt;}
.ls17{letter-spacing:-0.588800pt;}
.ls31{letter-spacing:-0.529920pt;}
.ls15{letter-spacing:-0.353280pt;}
.ls22{letter-spacing:-0.288000pt;}
.ls1d{letter-spacing:-0.259840pt;}
.ls10{letter-spacing:-0.235520pt;}
.ls1a{letter-spacing:-0.185600pt;}
.ls14{letter-spacing:-0.176640pt;}
.ls27{letter-spacing:-0.144000pt;}
.ls18{letter-spacing:-0.117760pt;}
.ls1c{letter-spacing:-0.111360pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls3e{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.058880pt;}
.lsf{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.037120pt;}
.ls13{letter-spacing:0.058880pt;}
.ls37{letter-spacing:0.074240pt;}
.ls2{letter-spacing:0.117760pt;}
.ls2b{letter-spacing:0.158976pt;}
.ls1e{letter-spacing:0.176640pt;}
.lsc{letter-spacing:0.185600pt;}
.ls11{letter-spacing:0.213760pt;}
.lsa{letter-spacing:0.222720pt;}
.ls23{letter-spacing:0.235520pt;}
.ls1b{letter-spacing:0.259840pt;}
.ls6{letter-spacing:0.294400pt;}
.ls9{letter-spacing:0.296960pt;}
.lse{letter-spacing:0.334080pt;}
.ls32{letter-spacing:0.408320pt;}
.ls36{letter-spacing:0.519680pt;}
.ls39{letter-spacing:0.647680pt;}
.ls30{letter-spacing:0.798080pt;}
.ls3d{letter-spacing:0.965120pt;}
.ls7{letter-spacing:1.295360pt;}
.ls4{letter-spacing:2.531840pt;}
.ls25{letter-spacing:3.179520pt;}
.lsd{letter-spacing:3.526400pt;}
.ls38{letter-spacing:4.474880pt;}
.ls1{letter-spacing:5.122560pt;}
.ls35{letter-spacing:5.456640pt;}
.ls3{letter-spacing:5.770240pt;}
.ls29{letter-spacing:6.417920pt;}
.ls8{letter-spacing:7.349760pt;}
.ls5{letter-spacing:9.597440pt;}
.ls3c{letter-spacing:10.542080pt;}
.ls28{letter-spacing:13.424640pt;}
.ls2c{letter-spacing:14.072320pt;}
.ls2f{letter-spacing:14.720000pt;}
.ls1f{letter-spacing:15.367680pt;}
.ls2a{letter-spacing:16.015360pt;}
.ls33{letter-spacing:17.251840pt;}
.ls26{letter-spacing:17.899520pt;}
.ls3a{letter-spacing:19.194880pt;}
.ls3b{letter-spacing:19.842560pt;}
.ls34{letter-spacing:20.490240pt;}
.ls20{letter-spacing:21.785600pt;}
.ls2d{letter-spacing:22.374400pt;}
.ls2e{letter-spacing:23.022080pt;}
.ls0{letter-spacing:26.908160pt;}
.ls24{letter-spacing:1145.136000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws30{word-spacing:-15.936000pt;}
.ws1e{word-spacing:-14.955520pt;}
.ws8{word-spacing:-14.778880pt;}
.ws1{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.661120pt;}
.ws7{word-spacing:-14.602240pt;}
.ws3{word-spacing:-14.543360pt;}
.ws4{word-spacing:-14.484480pt;}
.ws6{word-spacing:-14.131200pt;}
.ws1d{word-spacing:-11.712000pt;}
.ws2d{word-spacing:-9.799680pt;}
.wsa{word-spacing:-9.539840pt;}
.ws2{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.168640pt;}
.wsb{word-spacing:-9.020160pt;}
.ws2c{word-spacing:-0.408320pt;}
.ws24{word-spacing:-0.294400pt;}
.ws17{word-spacing:-0.259840pt;}
.ws28{word-spacing:-0.235520pt;}
.ws19{word-spacing:-0.185600pt;}
.ws2a{word-spacing:-0.117760pt;}
.ws2f{word-spacing:-0.074240pt;}
.wsf{word-spacing:-0.058880pt;}
.wsd{word-spacing:0.000000pt;}
.wse{word-spacing:0.058880pt;}
.ws1f{word-spacing:0.096000pt;}
.ws18{word-spacing:0.111360pt;}
.ws1c{word-spacing:0.117760pt;}
.ws21{word-spacing:0.144000pt;}
.ws10{word-spacing:0.176640pt;}
.ws16{word-spacing:0.185600pt;}
.wsc{word-spacing:0.235520pt;}
.ws1b{word-spacing:0.259840pt;}
.ws20{word-spacing:0.334080pt;}
.ws11{word-spacing:0.353280pt;}
.ws29{word-spacing:0.529920pt;}
.ws26{word-spacing:0.588800pt;}
.ws15{word-spacing:0.706560pt;}
.ws12{word-spacing:0.883200pt;}
.ws14{word-spacing:2.649600pt;}
.ws2b{word-spacing:4.157440pt;}
.ws22{word-spacing:4.533760pt;}
.ws2e{word-spacing:5.568000pt;}
.ws13{word-spacing:5.829120pt;}
.ws1a{word-spacing:7.052800pt;}
.ws23{word-spacing:9.832960pt;}
.ws25{word-spacing:13.483520pt;}
.ws27{word-spacing:24.494080pt;}
._14{margin-left:-10.657280pt;}
._1{margin-left:-0.993984pt;}
._0{width:1.026304pt;}
._9{width:2.075200pt;}
._8{width:3.185408pt;}
._13{width:4.173696pt;}
._4{width:5.527744pt;}
._5{width:6.714176pt;}
._12{width:8.202112pt;}
._3{width:9.508032pt;}
._2{width:10.451200pt;}
._6{width:11.870208pt;}
._10{width:13.146816pt;}
._11{width:14.277376pt;}
._1c{width:15.669952pt;}
._19{width:16.638400pt;}
._17{width:17.622784pt;}
._1d{width:18.753280pt;}
._26{width:19.824896pt;}
._e{width:21.395904pt;}
._f{width:22.453056pt;}
._18{width:23.534336pt;}
._a{width:25.106432pt;}
._7{width:26.800384pt;}
._b{width:28.083456pt;}
._29{width:29.683712pt;}
._1b{width:30.615296pt;}
._d{width:31.552000pt;}
._c{width:32.731392pt;}
._23{width:33.702912pt;}
._28{width:34.795008pt;}
._1e{width:36.800000pt;}
._25{width:38.189568pt;}
._24{width:39.402496pt;}
._1a{width:40.291584pt;}
._27{width:41.380864pt;}
._21{width:46.568640pt;}
._1f{width:47.516160pt;}
._20{width:48.655360pt;}
._22{width:49.753600pt;}
._2b{width:58.339712pt;}
._2a{width:59.255040pt;}
._16{width:97.987008pt;}
._15{width:1347.504000pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:166.725760pt;}
.y80{bottom:184.640000pt;}
.y28{bottom:211.349440pt;}
.ye4{bottom:211.354560pt;}
.y108{bottom:211.355840pt;}
.y56{bottom:211.356160pt;}
.y9f{bottom:211.357440pt;}
.y7f{bottom:211.358720pt;}
.y12c{bottom:211.360000pt;}
.y12d{bottom:224.800000pt;}
.y27{bottom:227.830720pt;}
.ye3{bottom:227.835840pt;}
.y107{bottom:227.837120pt;}
.y55{bottom:227.837440pt;}
.y9e{bottom:227.838720pt;}
.y7e{bottom:227.840000pt;}
.y82{bottom:241.280000pt;}
.y26{bottom:244.312000pt;}
.ye2{bottom:244.317120pt;}
.y106{bottom:244.318400pt;}
.y54{bottom:244.318720pt;}
.y9d{bottom:244.320000pt;}
.y12b{bottom:251.808000pt;}
.ya0{bottom:257.760000pt;}
.y25{bottom:260.793280pt;}
.ye1{bottom:260.798400pt;}
.y105{bottom:260.799680pt;}
.y53{bottom:260.800000pt;}
.y12a{bottom:268.294400pt;}
.y57{bottom:274.240000pt;}
.y24{bottom:277.432320pt;}
.ye0{bottom:277.437440pt;}
.y104{bottom:277.438720pt;}
.y129{bottom:284.780800pt;}
.ybe{bottom:284.819200pt;}
.y7d{bottom:284.832000pt;}
.y9c{bottom:284.864000pt;}
.y23{bottom:293.913600pt;}
.ydf{bottom:293.918720pt;}
.y103{bottom:293.920000pt;}
.y128{bottom:301.267200pt;}
.ybd{bottom:301.305600pt;}
.y7c{bottom:301.318400pt;}
.y9b{bottom:301.350400pt;}
.y52{bottom:301.420800pt;}
.y109{bottom:307.360000pt;}
.y22{bottom:310.394880pt;}
.yde{bottom:310.400000pt;}
.y127{bottom:317.753600pt;}
.ybc{bottom:317.792000pt;}
.y7b{bottom:317.804800pt;}
.y9a{bottom:317.836800pt;}
.y51{bottom:317.907200pt;}
.ye5{bottom:323.840000pt;}
.y21{bottom:326.876160pt;}
.y126{bottom:334.240000pt;}
.ybb{bottom:334.278400pt;}
.y7a{bottom:334.291200pt;}
.y99{bottom:334.323200pt;}
.y50{bottom:334.393600pt;}
.y20{bottom:343.357440pt;}
.y125{bottom:350.726400pt;}
.y4f{bottom:350.739200pt;}
.yba{bottom:350.764800pt;}
.y79{bottom:350.777600pt;}
.y98{bottom:350.809600pt;}
.ydd{bottom:350.854400pt;}
.y1f{bottom:359.838720pt;}
.y124{bottom:367.360000pt;}
.y4e{bottom:367.372800pt;}
.yb9{bottom:367.398400pt;}
.y78{bottom:367.411200pt;}
.y97{bottom:367.443200pt;}
.y114{bottom:367.462400pt;}
.y102{bottom:367.468800pt;}
.ydc{bottom:367.488000pt;}
.y1e{bottom:376.320000pt;}
.y123{bottom:383.846400pt;}
.y4d{bottom:383.859200pt;}
.yb8{bottom:383.884800pt;}
.y77{bottom:383.897600pt;}
.y96{bottom:383.929600pt;}
.y113{bottom:383.948800pt;}
.y101{bottom:383.955200pt;}
.ydb{bottom:383.974400pt;}
.y29{bottom:389.760000pt;}
.y122{bottom:400.332800pt;}
.y4c{bottom:400.345600pt;}
.yb7{bottom:400.371200pt;}
.y76{bottom:400.384000pt;}
.y95{bottom:400.416000pt;}
.y112{bottom:400.435200pt;}
.y100{bottom:400.441600pt;}
.yda{bottom:400.460800pt;}
.y143{bottom:414.316800pt;}
.y1d{bottom:416.153600pt;}
.y121{bottom:416.819200pt;}
.y4b{bottom:416.832000pt;}
.yb6{bottom:416.857600pt;}
.y75{bottom:416.870400pt;}
.y94{bottom:416.902400pt;}
.y111{bottom:416.921600pt;}
.yff{bottom:416.928000pt;}
.yd9{bottom:416.947200pt;}
.y142{bottom:430.950400pt;}
.y1c{bottom:432.601600pt;}
.y120{bottom:433.305600pt;}
.y4a{bottom:433.318400pt;}
.yb5{bottom:433.344000pt;}
.y74{bottom:433.356800pt;}
.y93{bottom:433.388800pt;}
.y110{bottom:433.408000pt;}
.yfe{bottom:433.414400pt;}
.yd8{bottom:433.433600pt;}
.y141{bottom:447.436800pt;}
.y1b{bottom:449.088000pt;}
.y11f{bottom:449.792000pt;}
.y49{bottom:449.804800pt;}
.yd7{bottom:449.824000pt;}
.yb4{bottom:449.830400pt;}
.y73{bottom:449.843200pt;}
.y92{bottom:449.875200pt;}
.y10f{bottom:449.894400pt;}
.yfd{bottom:449.900800pt;}
.y140{bottom:463.923200pt;}
.y1a{bottom:465.574400pt;}
.y11e{bottom:466.278400pt;}
.y48{bottom:466.291200pt;}
.yd6{bottom:466.310400pt;}
.yb3{bottom:466.316800pt;}
.y72{bottom:466.329600pt;}
.y91{bottom:466.361600pt;}
.y10e{bottom:466.380800pt;}
.yfc{bottom:466.387200pt;}
.y13f{bottom:480.409600pt;}
.y19{bottom:482.060800pt;}
.y11d{bottom:482.764800pt;}
.y47{bottom:482.777600pt;}
.yd5{bottom:482.796800pt;}
.yb2{bottom:482.803200pt;}
.y71{bottom:482.816000pt;}
.y90{bottom:482.848000pt;}
.y10d{bottom:482.867200pt;}
.yfb{bottom:482.873600pt;}
.y13e{bottom:496.896000pt;}
.y18{bottom:498.547200pt;}
.y11c{bottom:499.398400pt;}
.y46{bottom:499.411200pt;}
.yd4{bottom:499.430400pt;}
.yb1{bottom:499.436800pt;}
.y70{bottom:499.449600pt;}
.y8f{bottom:499.481600pt;}
.y10c{bottom:499.500800pt;}
.yfa{bottom:499.507200pt;}
.y13d{bottom:513.382400pt;}
.y17{bottom:515.033600pt;}
.y11b{bottom:515.884800pt;}
.y45{bottom:515.897600pt;}
.yd3{bottom:515.916800pt;}
.yb0{bottom:515.923200pt;}
.y6f{bottom:515.936000pt;}
.y8e{bottom:515.968000pt;}
.y10b{bottom:515.987200pt;}
.yf9{bottom:515.993600pt;}
.y13c{bottom:529.868800pt;}
.y16{bottom:531.520000pt;}
.yf8{bottom:532.364800pt;}
.y11a{bottom:532.371200pt;}
.y44{bottom:532.384000pt;}
.yd2{bottom:532.403200pt;}
.yaf{bottom:532.409600pt;}
.y6e{bottom:532.422400pt;}
.y8d{bottom:532.454400pt;}
.y10a{bottom:532.473600pt;}
.y13b{bottom:546.355200pt;}
.y15{bottom:548.153600pt;}
.yf7{bottom:548.851200pt;}
.y119{bottom:548.857600pt;}
.y43{bottom:548.870400pt;}
.yd1{bottom:548.889600pt;}
.yae{bottom:548.896000pt;}
.y6d{bottom:548.908800pt;}
.y8c{bottom:548.940800pt;}
.y13a{bottom:562.988800pt;}
.y14{bottom:564.614400pt;}
.yf6{bottom:565.337600pt;}
.y118{bottom:565.344000pt;}
.y42{bottom:565.356800pt;}
.yd0{bottom:565.376000pt;}
.yad{bottom:565.382400pt;}
.y6c{bottom:565.395200pt;}
.y8b{bottom:565.427200pt;}
.y139{bottom:579.475200pt;}
.y13{bottom:581.100800pt;}
.yf5{bottom:581.824000pt;}
.y117{bottom:581.830400pt;}
.y41{bottom:581.843200pt;}
.ycf{bottom:581.862400pt;}
.yac{bottom:581.868800pt;}
.y6b{bottom:581.881600pt;}
.y8a{bottom:581.913600pt;}
.y138{bottom:595.961600pt;}
.y12{bottom:597.587200pt;}
.yf4{bottom:598.310400pt;}
.y116{bottom:598.316800pt;}
.y40{bottom:598.329600pt;}
.yce{bottom:598.348800pt;}
.yab{bottom:598.355200pt;}
.y6a{bottom:598.368000pt;}
.y89{bottom:598.400000pt;}
.y137{bottom:612.448000pt;}
.y11{bottom:614.073600pt;}
.yf3{bottom:614.796800pt;}
.y115{bottom:614.803200pt;}
.y3f{bottom:614.816000pt;}
.ycd{bottom:614.835200pt;}
.yaa{bottom:614.841600pt;}
.y69{bottom:614.854400pt;}
.y88{bottom:614.886400pt;}
.y136{bottom:628.934400pt;}
.y10{bottom:630.521600pt;}
.yf2{bottom:631.430400pt;}
.y87{bottom:631.436800pt;}
.y3e{bottom:631.449600pt;}
.ycc{bottom:631.468800pt;}
.ya9{bottom:631.475200pt;}
.y68{bottom:631.488000pt;}
.y135{bottom:645.420800pt;}
.yf{bottom:647.008000pt;}
.yf1{bottom:647.916800pt;}
.y86{bottom:647.923200pt;}
.y3d{bottom:647.936000pt;}
.ycb{bottom:647.955200pt;}
.ya8{bottom:647.961600pt;}
.y67{bottom:647.974400pt;}
.y134{bottom:661.907200pt;}
.ye{bottom:663.494400pt;}
.yf0{bottom:664.403200pt;}
.y85{bottom:664.409600pt;}
.y3c{bottom:664.422400pt;}
.yca{bottom:664.441600pt;}
.ya7{bottom:664.448000pt;}
.y66{bottom:664.460800pt;}
.y133{bottom:678.393600pt;}
.yd{bottom:680.128000pt;}
.yef{bottom:680.889600pt;}
.y84{bottom:680.896000pt;}
.y3b{bottom:680.908800pt;}
.yc9{bottom:680.928000pt;}
.ya6{bottom:680.934400pt;}
.y65{bottom:680.947200pt;}
.y132{bottom:695.027200pt;}
.yc{bottom:696.614400pt;}
.yee{bottom:697.376000pt;}
.y83{bottom:697.382400pt;}
.y3a{bottom:697.395200pt;}
.yc8{bottom:697.414400pt;}
.ya5{bottom:697.420800pt;}
.y64{bottom:697.433600pt;}
.y131{bottom:711.513600pt;}
.yb{bottom:713.100800pt;}
.yed{bottom:713.862400pt;}
.y63{bottom:713.868800pt;}
.y39{bottom:713.881600pt;}
.yc7{bottom:713.900800pt;}
.ya4{bottom:713.907200pt;}
.y130{bottom:728.000000pt;}
.ya{bottom:729.587200pt;}
.yec{bottom:730.348800pt;}
.y62{bottom:730.355200pt;}
.y38{bottom:730.368000pt;}
.yc6{bottom:730.387200pt;}
.ya3{bottom:730.393600pt;}
.y9{bottom:746.073600pt;}
.yeb{bottom:746.835200pt;}
.y61{bottom:746.841600pt;}
.y37{bottom:746.854400pt;}
.yc5{bottom:746.873600pt;}
.ya2{bottom:746.880000pt;}
.y12f{bottom:760.800000pt;}
.y8{bottom:762.544640pt;}
.yea{bottom:763.468800pt;}
.y60{bottom:763.475200pt;}
.y36{bottom:763.488000pt;}
.yc4{bottom:763.507200pt;}
.ya1{bottom:763.513600pt;}
.y7{bottom:779.031040pt;}
.ye9{bottom:779.955200pt;}
.y5f{bottom:779.961600pt;}
.y35{bottom:779.974400pt;}
.yc3{bottom:779.993600pt;}
.y12e{bottom:794.240000pt;}
.y6{bottom:795.517440pt;}
.ye8{bottom:796.441600pt;}
.y5e{bottom:796.448000pt;}
.yc2{bottom:796.454400pt;}
.y34{bottom:796.460800pt;}
.y5{bottom:812.151040pt;}
.ye7{bottom:812.928000pt;}
.y5d{bottom:812.934400pt;}
.yc1{bottom:812.940800pt;}
.y33{bottom:812.947200pt;}
.y4{bottom:828.637440pt;}
.ye6{bottom:829.414400pt;}
.y5c{bottom:829.420800pt;}
.yc0{bottom:829.427200pt;}
.y32{bottom:829.433600pt;}
.y3{bottom:844.800000pt;}
.y31{bottom:845.900800pt;}
.y5b{bottom:845.907200pt;}
.ybf{bottom:845.913600pt;}
.y30{bottom:862.387200pt;}
.y5a{bottom:862.393600pt;}
.y2{bottom:865.280000pt;}
.y2f{bottom:878.873600pt;}
.y59{bottom:878.880000pt;}
.y2e{bottom:895.507200pt;}
.y58{bottom:895.513600pt;}
.y2d{bottom:911.993600pt;}
.y1{bottom:917.120000pt;}
.y2c{bottom:928.480000pt;}
.y2b{bottom:956.960000pt;}
.y2a{bottom:972.480000pt;}
.h9{height:31.066250pt;}
.hc{height:31.992188pt;}
.ha{height:39.243750pt;}
.hb{height:40.171875pt;}
.h13{height:42.656250pt;}
.h5{height:49.277500pt;}
.he{height:49.303100pt;}
.h11{height:49.328700pt;}
.h6{height:49.338940pt;}
.h10{height:49.354300pt;}
.h8{height:49.379900pt;}
.h7{height:49.431100pt;}
.hf{height:49.610300pt;}
.hd{height:49.840700pt;}
.h2{height:49.907812pt;}
.h4{height:57.787500pt;}
.h12{height:64.500000pt;}
.h3{height:71.235937pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:158.720000pt;}
.x4{left:170.078720pt;}
.x6{left:173.911040pt;}
.x2{left:300.000000pt;}
.x1{left:344.960000pt;}
.x5{left:404.320000pt;}
}




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