
    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_44bd737267787f2089b0c003.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_17f08e4478ef0f69a07c87cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727539;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_e56d1f3aef969fb480ebe679.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_23b51290db3923d0bb1cdc29.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_4fc6719bb1ebda153cb56aa5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936035;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_167e729dcad44747d15d1baf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2c415e9b81cc312062fe7cb0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_baa611f450ddb2b7cd0d489d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ff16635bdcd3ba47e8805c27.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.196289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0adc1af402e33b3abc51e61d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_982ddb8f8866d470806c4bc9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2f2b4aabaf144c6e56ba634c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.196289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_337c4ffe2fff61fde8772987.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-38.280000px;}
.v2{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-14.220000px;}
.ls1d{letter-spacing:-12.780000px;}
.ls6{letter-spacing:-0.240600px;}
.ls18{letter-spacing:-0.107400px;}
.ls5{letter-spacing:-0.067200px;}
.ls12{letter-spacing:-0.058320px;}
.ls16{letter-spacing:-0.055440px;}
.lsa{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.126720px;}
.lsc{letter-spacing:0.174000px;}
.lsf{letter-spacing:0.174240px;}
.ls23{letter-spacing:0.175200px;}
.lsb{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.198000px;}
.lse{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.243360px;}
.ls1e{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.393600px;}
.ls7{letter-spacing:0.414000px;}
.ls10{letter-spacing:0.433440px;}
.ls11{letter-spacing:0.479520px;}
.ls4{letter-spacing:0.544200px;}
.ls15{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.751680px;}
.ls3{letter-spacing:0.894000px;}
.ls1a{letter-spacing:0.963360px;}
.ls14{letter-spacing:1.614000px;}
.ls22{letter-spacing:9.540000px;}
.ls13{letter-spacing:10.980000px;}
.ls20{letter-spacing:36.780480px;}
.ls24{letter-spacing:97.866720px;}
.ls21{letter-spacing:128.826720px;}
.ls1b{letter-spacing:202.680000px;}
.lsd{letter-spacing:328.494240px;}
.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;}
}
.ws8{word-spacing:-16.488000px;}
.ws9{word-spacing:-14.153760px;}
.wsb{word-spacing:-13.899360px;}
.ws11{word-spacing:-13.680960px;}
.ws0{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.450320px;}
.ws7{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.398360px;}
.ws1{word-spacing:-13.265160px;}
.ws2{word-spacing:-12.618000px;}
.ws3{word-spacing:-12.402000px;}
.ws4{word-spacing:-12.204000px;}
.ws5{word-spacing:-12.186000px;}
.ws6{word-spacing:0.000000px;}
.wsd{word-spacing:5.270400px;}
.ws10{word-spacing:69.552000px;}
.wse{word-spacing:190.740000px;}
._2d{margin-left:-62.915040px;}
._2a{margin-left:-31.366800px;}
._25{margin-left:-10.745760px;}
._10{margin-left:-3.529200px;}
._f{margin-left:-2.481840px;}
._1{margin-left:-1.179360px;}
._2{width:1.202160px;}
._8{width:2.888640px;}
._4{width:3.983760px;}
._3{width:5.697360px;}
._9{width:6.872400px;}
._e{width:8.433360px;}
._a{width:9.559200px;}
._14{width:10.756800px;}
._19{width:12.250800px;}
._1a{width:13.485840px;}
._d{width:15.238800px;}
._13{width:17.270640px;}
._18{width:19.119120px;}
._7{width:20.198880px;}
._5{width:21.573360px;}
._6{width:23.265600px;}
._c{width:24.841200px;}
._b{width:25.995600px;}
._11{width:27.131040px;}
._16{width:28.804320px;}
._17{width:29.903040px;}
._1d{width:31.233120px;}
._15{width:32.748480px;}
._22{width:34.003440px;}
._2c{width:35.251440px;}
._2b{width:36.991440px;}
._12{width:38.425680px;}
._27{width:39.620880px;}
._26{width:40.636800px;}
._2f{width:42.422640px;}
._36{width:43.684560px;}
._28{width:46.470600px;}
._37{width:49.925760px;}
._34{width:53.544960px;}
._21{width:54.799920px;}
._32{width:56.532960px;}
._31{width:57.967200px;}
._2e{width:59.401440px;}
._23{width:61.014960px;}
._24{width:62.030880px;}
._33{width:63.823680px;}
._30{width:69.859440px;}
._35{width:74.011680px;}
._29{width:80.197920px;}
._1c{width:113.832000px;}
._1b{width:115.227360px;}
._1e{width:850.022640px;}
._20{width:1059.800400px;}
._1f{width:1417.176000px;}
._0{width:1431.065760px;}
.fc6{color:rgb(238,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(240,23,6);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs6{font-size:48.384000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y51{bottom:-1133.100000px;}
.y0{bottom:0.000000px;}
.y56{bottom:3.060000px;}
.ye{bottom:3.960000px;}
.ya8{bottom:4.005000px;}
.y7d{bottom:5.220000px;}
.y50{bottom:11.520000px;}
.ycd{bottom:16.530000px;}
.y21{bottom:22.320000px;}
.y4f{bottom:29.340000px;}
.y20{bottom:40.500000px;}
.y95{bottom:41.400000px;}
.ycc{bottom:45.285000px;}
.y4e{bottom:47.160000px;}
.y3{bottom:56.520000px;}
.y54{bottom:57.060000px;}
.y1f{bottom:58.860000px;}
.ycb{bottom:60.810000px;}
.y4d{bottom:64.980000px;}
.y55{bottom:71.820000px;}
.yc0{bottom:76.680000px;}
.y1e{bottom:77.220000px;}
.y4c{bottom:82.800000px;}
.y39{bottom:92.340000px;}
.y1d{bottom:95.580000px;}
.yc1{bottom:95.835000px;}
.ybf{bottom:99.870000px;}
.y4b{bottom:100.440000px;}
.ybc{bottom:109.440000px;}
.y38{bottom:110.520000px;}
.y1c{bottom:113.760000px;}
.yc2{bottom:115.020000px;}
.y4a{bottom:118.290000px;}
.yb9{bottom:119.055000px;}
.yb7{bottom:126.720000px;}
.ybb{bottom:128.625000px;}
.y37{bottom:128.880000px;}
.y1b{bottom:132.150000px;}
.yee{bottom:133.920000px;}
.yc3{bottom:134.175000px;}
.y49{bottom:136.110000px;}
.y8e{bottom:138.060000px;}
.yb6{bottom:145.080000px;}
.y36{bottom:147.240000px;}
.ybe{bottom:147.780000px;}
.y1a{bottom:150.510000px;}
.yed{bottom:152.130000px;}
.yc4{bottom:153.360000px;}
.y48{bottom:153.930000px;}
.y8d{bottom:156.450000px;}
.yb5{bottom:163.470000px;}
.y35{bottom:165.450000px;}
.y19{bottom:168.870000px;}
.yec{bottom:170.490000px;}
.y47{bottom:171.750000px;}
.yc5{bottom:172.515000px;}
.y8c{bottom:174.810000px;}
.yb4{bottom:181.830000px;}
.y34{bottom:183.810000px;}
.y18{bottom:187.050000px;}
.yeb{bottom:188.850000px;}
.y46{bottom:189.390000px;}
.yc6{bottom:191.700000px;}
.y8b{bottom:193.170000px;}
.yb3{bottom:200.010000px;}
.y33{bottom:202.170000px;}
.y17{bottom:205.410000px;}
.yea{bottom:207.030000px;}
.yc7{bottom:210.855000px;}
.y8a{bottom:211.350000px;}
.ybd{bottom:214.890000px;}
.y45{bottom:216.030000px;}
.yb2{bottom:218.370000px;}
.y32{bottom:220.530000px;}
.y16{bottom:223.770000px;}
.ye9{bottom:225.390000px;}
.y89{bottom:229.710000px;}
.yc8{bottom:230.040000px;}
.yba{bottom:234.075000px;}
.yb1{bottom:236.730000px;}
.y31{bottom:238.710000px;}
.y15{bottom:241.950000px;}
.ye8{bottom:243.750000px;}
.y88{bottom:248.070000px;}
.yc9{bottom:249.195000px;}
.yb0{bottom:255.090000px;}
.y30{bottom:257.070000px;}
.y14{bottom:260.310000px;}
.ye7{bottom:262.110000px;}
.y87{bottom:266.250000px;}
.yca{bottom:268.380000px;}
.yaf{bottom:273.270000px;}
.y2f{bottom:275.430000px;}
.y13{bottom:278.670000px;}
.ye6{bottom:280.290000px;}
.y86{bottom:284.610000px;}
.y44{bottom:287.130000px;}
.yae{bottom:291.630000px;}
.y2e{bottom:293.790000px;}
.y12{bottom:297.030000px;}
.ye5{bottom:298.650000px;}
.y85{bottom:302.970000px;}
.y43{bottom:303.690000px;}
.yad{bottom:309.990000px;}
.y2d{bottom:311.970000px;}
.y11{bottom:315.210000px;}
.ye4{bottom:317.010000px;}
.y42{bottom:320.070000px;}
.y84{bottom:321.330000px;}
.yac{bottom:328.170000px;}
.y2c{bottom:330.330000px;}
.y10{bottom:333.570000px;}
.ye3{bottom:335.370000px;}
.y83{bottom:339.510000px;}
.y41{bottom:345.450000px;}
.yab{bottom:346.530000px;}
.y2b{bottom:348.690000px;}
.ye2{bottom:353.550000px;}
.y82{bottom:357.870000px;}
.yaa{bottom:364.890000px;}
.y2a{bottom:366.870000px;}
.ye1{bottom:371.910000px;}
.y40{bottom:375.555000px;}
.y81{bottom:376.230000px;}
.ya9{bottom:380.010000px;}
.y29{bottom:385.230000px;}
.ye0{bottom:390.270000px;}
.y80{bottom:394.590000px;}
.ya7{bottom:399.090000px;}
.y28{bottom:403.635000px;}
.y3f{bottom:405.255000px;}
.ydf{bottom:408.495000px;}
.y7f{bottom:409.575000px;}
.ya6{bottom:418.215000px;}
.y27{bottom:421.995000px;}
.y3e{bottom:422.895000px;}
.yde{bottom:426.855000px;}
.y7e{bottom:428.655000px;}
.ya4{bottom:437.115000px;}
.y26{bottom:440.175000px;}
.y3d{bottom:440.715000px;}
.ydd{bottom:445.215000px;}
.y7c{bottom:447.735000px;}
.y25{bottom:458.535000px;}
.ydc{bottom:463.575000px;}
.y7b{bottom:468.075000px;}
.ya5{bottom:474.555000px;}
.y3c{bottom:476.175000px;}
.y24{bottom:476.895000px;}
.ydb{bottom:481.755000px;}
.y7a{bottom:487.155000px;}
.y23{bottom:495.255000px;}
.ya3{bottom:497.595000px;}
.yda{bottom:500.115000px;}
.y3b{bottom:502.095000px;}
.y79{bottom:506.235000px;}
.y22{bottom:513.435000px;}
.ya2{bottom:515.955000px;}
.yd9{bottom:518.475000px;}
.y78{bottom:525.315000px;}
.yf{bottom:527.835000px;}
.ya1{bottom:534.135000px;}
.yd8{bottom:536.655000px;}
.y3a{bottom:537.015000px;}
.y77{bottom:544.395000px;}
.ya0{bottom:552.495000px;}
.yd7{bottom:555.015000px;}
.y76{bottom:563.475000px;}
.y9f{bottom:570.855000px;}
.yd6{bottom:573.375000px;}
.y75{bottom:582.555000px;}
.y9e{bottom:589.215000px;}
.yd5{bottom:591.735000px;}
.y74{bottom:601.455000px;}
.y9d{bottom:607.395000px;}
.yd4{bottom:609.915000px;}
.y73{bottom:620.535000px;}
.y9c{bottom:625.755000px;}
.yd3{bottom:628.275000px;}
.y72{bottom:639.615000px;}
.y9b{bottom:644.115000px;}
.yd2{bottom:646.635000px;}
.y71{bottom:658.725000px;}
.y9a{bottom:659.265000px;}
.yd1{bottom:665.025000px;}
.y70{bottom:677.805000px;}
.y99{bottom:678.345000px;}
.yd0{bottom:683.205000px;}
.y6f{bottom:696.885000px;}
.y98{bottom:697.245000px;}
.ycf{bottom:701.565000px;}
.y97{bottom:716.325000px;}
.y6e{bottom:719.925000px;}
.y94{bottom:735.405000px;}
.y6d{bottom:738.105000px;}
.y6c{bottom:756.465000px;}
.y96{bottom:772.845000px;}
.y6b{bottom:774.825000px;}
.y6a{bottom:793.185000px;}
.y93{bottom:795.885000px;}
.y69{bottom:811.365000px;}
.y92{bottom:814.065000px;}
.y68{bottom:829.725000px;}
.y91{bottom:832.425000px;}
.y67{bottom:848.085000px;}
.y90{bottom:850.785000px;}
.y8f{bottom:865.185000px;}
.yb8{bottom:866.340000px;}
.y66{bottom:866.445000px;}
.yd{bottom:875.805000px;}
.y65{bottom:884.625000px;}
.yc{bottom:898.530000px;}
.y64{bottom:903.030000px;}
.yb{bottom:918.150000px;}
.y63{bottom:921.390000px;}
.ya{bottom:936.510000px;}
.y62{bottom:939.570000px;}
.y9{bottom:954.870000px;}
.y61{bottom:957.930000px;}
.y8{bottom:973.230000px;}
.y60{bottom:976.290000px;}
.y7{bottom:991.410000px;}
.y5f{bottom:994.650000px;}
.y6{bottom:1011.390000px;}
.y5e{bottom:1012.830000px;}
.y5d{bottom:1031.190000px;}
.y5{bottom:1037.130000px;}
.y5c{bottom:1049.550000px;}
.y4{bottom:1061.610000px;}
.y5b{bottom:1067.910000px;}
.yce{bottom:1068.990000px;}
.y2{bottom:1082.310000px;}
.y5a{bottom:1086.090000px;}
.y1{bottom:1102.110000px;}
.y59{bottom:1104.450000px;}
.y58{bottom:1122.810000px;}
.y57{bottom:1140.990000px;}
.y53{bottom:1159.020000px;}
.y52{bottom:1175.940000px;}
.h7{height:18.180000px;}
.h15{height:18.216000px;}
.hf{height:18.360000px;}
.h10{height:18.396000px;}
.h11{height:19.620000px;}
.hd{height:20.160000px;}
.h17{height:33.683203px;}
.h18{height:33.783750px;}
.h13{height:36.720000px;}
.h19{height:37.705078px;}
.h1a{height:37.805625px;}
.h14{height:45.170156px;}
.h3{height:47.415937px;}
.hc{height:47.980898px;}
.hb{height:53.709961px;}
.ha{height:55.291992px;}
.h12{height:55.800000px;}
.h6{height:59.439023px;}
.h5{height:61.189805px;}
.h2{height:65.884219px;}
.he{height:73.722656px;}
.h4{height:86.255508px;}
.h16{height:289.080000px;}
.h8{height:347.970000px;}
.h9{height:516.495000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:49.500000px;}
.w10{width:83.520000px;}
.wb{width:96.300000px;}
.w8{width:124.920000px;}
.we{width:185.790000px;}
.w12{width:199.110000px;}
.wd{width:203.430000px;}
.w9{width:206.310000px;}
.wc{width:212.970000px;}
.w4{width:216.750000px;}
.w6{width:218.730000px;}
.w11{width:250.590000px;}
.w13{width:334.800000px;}
.w7{width:376.275000px;}
.wa{width:417.315000px;}
.wf{width:450.435000px;}
.w3{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x6{left:10.800000px;}
.x21{left:16.596000px;}
.x22{left:39.780000px;}
.x23{left:43.164000px;}
.x19{left:52.092000px;}
.x1d{left:68.220000px;}
.x1{left:84.995987px;}
.xf{left:101.555987px;}
.x1a{left:105.735000px;}
.x1e{left:121.890000px;}
.x28{left:123.225000px;}
.x15{left:128.735987px;}
.x9{left:145.655987px;}
.x24{left:157.530000px;}
.x1b{left:165.525000px;}
.x11{left:174.089987px;}
.x1f{left:181.695000px;}
.x7{left:202.005000px;}
.x10{left:210.989987px;}
.x25{left:214.275000px;}
.x1c{left:222.270000px;}
.x20{left:238.395000px;}
.x29{left:249.329987px;}
.x26{left:262.725000px;}
.x8{left:265.575000px;}
.x16{left:272.415000px;}
.x27{left:276.225000px;}
.x12{left:292.935000px;}
.xc{left:305.355000px;}
.xb{left:332.894987px;}
.xe{left:420.194987px;}
.x4{left:473.144987px;}
.x14{left:506.805000px;}
.x18{left:523.725000px;}
.x5{left:586.545000px;}
.xd{left:682.350000px;}
.x13{left:710.970000px;}
.x17{left:723.750000px;}
.xa{left:756.330000px;}
.x2{left:808.019987px;}
@media print{
.v1{vertical-align:-34.026667pt;}
.v2{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-12.640000pt;}
.ls1d{letter-spacing:-11.360000pt;}
.ls6{letter-spacing:-0.213867pt;}
.ls18{letter-spacing:-0.095467pt;}
.ls5{letter-spacing:-0.059733pt;}
.ls12{letter-spacing:-0.051840pt;}
.ls16{letter-spacing:-0.049280pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.112640pt;}
.lsc{letter-spacing:0.154667pt;}
.lsf{letter-spacing:0.154880pt;}
.ls23{letter-spacing:0.155733pt;}
.lsb{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.216320pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.349867pt;}
.ls7{letter-spacing:0.368000pt;}
.ls10{letter-spacing:0.385280pt;}
.ls11{letter-spacing:0.426240pt;}
.ls4{letter-spacing:0.483733pt;}
.ls15{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.668160pt;}
.ls3{letter-spacing:0.794667pt;}
.ls1a{letter-spacing:0.856320pt;}
.ls14{letter-spacing:1.434667pt;}
.ls22{letter-spacing:8.480000pt;}
.ls13{letter-spacing:9.760000pt;}
.ls20{letter-spacing:32.693760pt;}
.ls24{letter-spacing:86.992640pt;}
.ls21{letter-spacing:114.512640pt;}
.ls1b{letter-spacing:180.160000pt;}
.lsd{letter-spacing:291.994880pt;}
.ws8{word-spacing:-14.656000pt;}
.ws9{word-spacing:-12.581120pt;}
.wsb{word-spacing:-12.354987pt;}
.ws11{word-spacing:-12.160853pt;}
.ws0{word-spacing:-12.005120pt;}
.wsf{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.955840pt;}
.ws7{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.909653pt;}
.ws1{word-spacing:-11.791253pt;}
.ws2{word-spacing:-11.216000pt;}
.ws3{word-spacing:-11.024000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws5{word-spacing:-10.832000pt;}
.ws6{word-spacing:0.000000pt;}
.wsd{word-spacing:4.684800pt;}
.ws10{word-spacing:61.824000pt;}
.wse{word-spacing:169.546667pt;}
._2d{margin-left:-55.924480pt;}
._2a{margin-left:-27.881600pt;}
._25{margin-left:-9.551787pt;}
._10{margin-left:-3.137067pt;}
._f{margin-left:-2.206080pt;}
._1{margin-left:-1.048320pt;}
._2{width:1.068587pt;}
._8{width:2.567680pt;}
._4{width:3.541120pt;}
._3{width:5.064320pt;}
._9{width:6.108800pt;}
._e{width:7.496320pt;}
._a{width:8.497067pt;}
._14{width:9.561600pt;}
._19{width:10.889600pt;}
._1a{width:11.987413pt;}
._d{width:13.545600pt;}
._13{width:15.351680pt;}
._18{width:16.994773pt;}
._7{width:17.954560pt;}
._5{width:19.176320pt;}
._6{width:20.680533pt;}
._c{width:22.081067pt;}
._b{width:23.107200pt;}
._11{width:24.116480pt;}
._16{width:25.603840pt;}
._17{width:26.580480pt;}
._1d{width:27.762773pt;}
._15{width:29.109760pt;}
._22{width:30.225280pt;}
._2c{width:31.334613pt;}
._2b{width:32.881280pt;}
._12{width:34.156160pt;}
._27{width:35.218560pt;}
._26{width:36.121600pt;}
._2f{width:37.709013pt;}
._36{width:38.830720pt;}
._28{width:41.307200pt;}
._37{width:44.378453pt;}
._34{width:47.595520pt;}
._21{width:48.711040pt;}
._32{width:50.251520pt;}
._31{width:51.526400pt;}
._2e{width:52.801280pt;}
._23{width:54.235520pt;}
._24{width:55.138560pt;}
._33{width:56.732160pt;}
._30{width:62.097280pt;}
._35{width:65.788160pt;}
._29{width:71.287040pt;}
._1c{width:101.184000pt;}
._1b{width:102.424320pt;}
._1e{width:755.575680pt;}
._20{width:942.044800pt;}
._1f{width:1259.712000pt;}
._0{width:1272.058453pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:43.008000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y51{bottom:-1007.200000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:2.720000pt;}
.ye{bottom:3.520000pt;}
.ya8{bottom:3.560000pt;}
.y7d{bottom:4.640000pt;}
.y50{bottom:10.240000pt;}
.ycd{bottom:14.693333pt;}
.y21{bottom:19.840000pt;}
.y4f{bottom:26.080000pt;}
.y20{bottom:36.000000pt;}
.y95{bottom:36.800000pt;}
.ycc{bottom:40.253333pt;}
.y4e{bottom:41.920000pt;}
.y3{bottom:50.240000pt;}
.y54{bottom:50.720000pt;}
.y1f{bottom:52.320000pt;}
.ycb{bottom:54.053333pt;}
.y4d{bottom:57.760000pt;}
.y55{bottom:63.840000pt;}
.yc0{bottom:68.160000pt;}
.y1e{bottom:68.640000pt;}
.y4c{bottom:73.600000pt;}
.y39{bottom:82.080000pt;}
.y1d{bottom:84.960000pt;}
.yc1{bottom:85.186667pt;}
.ybf{bottom:88.773333pt;}
.y4b{bottom:89.280000pt;}
.ybc{bottom:97.280000pt;}
.y38{bottom:98.240000pt;}
.y1c{bottom:101.120000pt;}
.yc2{bottom:102.240000pt;}
.y4a{bottom:105.146667pt;}
.yb9{bottom:105.826667pt;}
.yb7{bottom:112.640000pt;}
.ybb{bottom:114.333333pt;}
.y37{bottom:114.560000pt;}
.y1b{bottom:117.466667pt;}
.yee{bottom:119.040000pt;}
.yc3{bottom:119.266667pt;}
.y49{bottom:120.986667pt;}
.y8e{bottom:122.720000pt;}
.yb6{bottom:128.960000pt;}
.y36{bottom:130.880000pt;}
.ybe{bottom:131.360000pt;}
.y1a{bottom:133.786667pt;}
.yed{bottom:135.226667pt;}
.yc4{bottom:136.320000pt;}
.y48{bottom:136.826667pt;}
.y8d{bottom:139.066667pt;}
.yb5{bottom:145.306667pt;}
.y35{bottom:147.066667pt;}
.y19{bottom:150.106667pt;}
.yec{bottom:151.546667pt;}
.y47{bottom:152.666667pt;}
.yc5{bottom:153.346667pt;}
.y8c{bottom:155.386667pt;}
.yb4{bottom:161.626667pt;}
.y34{bottom:163.386667pt;}
.y18{bottom:166.266667pt;}
.yeb{bottom:167.866667pt;}
.y46{bottom:168.346667pt;}
.yc6{bottom:170.400000pt;}
.y8b{bottom:171.706667pt;}
.yb3{bottom:177.786667pt;}
.y33{bottom:179.706667pt;}
.y17{bottom:182.586667pt;}
.yea{bottom:184.026667pt;}
.yc7{bottom:187.426667pt;}
.y8a{bottom:187.866667pt;}
.ybd{bottom:191.013333pt;}
.y45{bottom:192.026667pt;}
.yb2{bottom:194.106667pt;}
.y32{bottom:196.026667pt;}
.y16{bottom:198.906667pt;}
.ye9{bottom:200.346667pt;}
.y89{bottom:204.186667pt;}
.yc8{bottom:204.480000pt;}
.yba{bottom:208.066667pt;}
.yb1{bottom:210.426667pt;}
.y31{bottom:212.186667pt;}
.y15{bottom:215.066667pt;}
.ye8{bottom:216.666667pt;}
.y88{bottom:220.506667pt;}
.yc9{bottom:221.506667pt;}
.yb0{bottom:226.746667pt;}
.y30{bottom:228.506667pt;}
.y14{bottom:231.386667pt;}
.ye7{bottom:232.986667pt;}
.y87{bottom:236.666667pt;}
.yca{bottom:238.560000pt;}
.yaf{bottom:242.906667pt;}
.y2f{bottom:244.826667pt;}
.y13{bottom:247.706667pt;}
.ye6{bottom:249.146667pt;}
.y86{bottom:252.986667pt;}
.y44{bottom:255.226667pt;}
.yae{bottom:259.226667pt;}
.y2e{bottom:261.146667pt;}
.y12{bottom:264.026667pt;}
.ye5{bottom:265.466667pt;}
.y85{bottom:269.306667pt;}
.y43{bottom:269.946667pt;}
.yad{bottom:275.546667pt;}
.y2d{bottom:277.306667pt;}
.y11{bottom:280.186667pt;}
.ye4{bottom:281.786667pt;}
.y42{bottom:284.506667pt;}
.y84{bottom:285.626667pt;}
.yac{bottom:291.706667pt;}
.y2c{bottom:293.626667pt;}
.y10{bottom:296.506667pt;}
.ye3{bottom:298.106667pt;}
.y83{bottom:301.786667pt;}
.y41{bottom:307.066667pt;}
.yab{bottom:308.026667pt;}
.y2b{bottom:309.946667pt;}
.ye2{bottom:314.266667pt;}
.y82{bottom:318.106667pt;}
.yaa{bottom:324.346667pt;}
.y2a{bottom:326.106667pt;}
.ye1{bottom:330.586667pt;}
.y40{bottom:333.826667pt;}
.y81{bottom:334.426667pt;}
.ya9{bottom:337.786667pt;}
.y29{bottom:342.426667pt;}
.ye0{bottom:346.906667pt;}
.y80{bottom:350.746667pt;}
.ya7{bottom:354.746667pt;}
.y28{bottom:358.786667pt;}
.y3f{bottom:360.226667pt;}
.ydf{bottom:363.106667pt;}
.y7f{bottom:364.066667pt;}
.ya6{bottom:371.746667pt;}
.y27{bottom:375.106667pt;}
.y3e{bottom:375.906667pt;}
.yde{bottom:379.426667pt;}
.y7e{bottom:381.026667pt;}
.ya4{bottom:388.546667pt;}
.y26{bottom:391.266667pt;}
.y3d{bottom:391.746667pt;}
.ydd{bottom:395.746667pt;}
.y7c{bottom:397.986667pt;}
.y25{bottom:407.586667pt;}
.ydc{bottom:412.066667pt;}
.y7b{bottom:416.066667pt;}
.ya5{bottom:421.826667pt;}
.y3c{bottom:423.266667pt;}
.y24{bottom:423.906667pt;}
.ydb{bottom:428.226667pt;}
.y7a{bottom:433.026667pt;}
.y23{bottom:440.226667pt;}
.ya3{bottom:442.306667pt;}
.yda{bottom:444.546667pt;}
.y3b{bottom:446.306667pt;}
.y79{bottom:449.986667pt;}
.y22{bottom:456.386667pt;}
.ya2{bottom:458.626667pt;}
.yd9{bottom:460.866667pt;}
.y78{bottom:466.946667pt;}
.yf{bottom:469.186667pt;}
.ya1{bottom:474.786667pt;}
.yd8{bottom:477.026667pt;}
.y3a{bottom:477.346667pt;}
.y77{bottom:483.906667pt;}
.ya0{bottom:491.106667pt;}
.yd7{bottom:493.346667pt;}
.y76{bottom:500.866667pt;}
.y9f{bottom:507.426667pt;}
.yd6{bottom:509.666667pt;}
.y75{bottom:517.826667pt;}
.y9e{bottom:523.746667pt;}
.yd5{bottom:525.986667pt;}
.y74{bottom:534.626667pt;}
.y9d{bottom:539.906667pt;}
.yd4{bottom:542.146667pt;}
.y73{bottom:551.586667pt;}
.y9c{bottom:556.226667pt;}
.yd3{bottom:558.466667pt;}
.y72{bottom:568.546667pt;}
.y9b{bottom:572.546667pt;}
.yd2{bottom:574.786667pt;}
.y71{bottom:585.533333pt;}
.y9a{bottom:586.013333pt;}
.yd1{bottom:591.133333pt;}
.y70{bottom:602.493333pt;}
.y99{bottom:602.973333pt;}
.yd0{bottom:607.293333pt;}
.y6f{bottom:619.453333pt;}
.y98{bottom:619.773333pt;}
.ycf{bottom:623.613333pt;}
.y97{bottom:636.733333pt;}
.y6e{bottom:639.933333pt;}
.y94{bottom:653.693333pt;}
.y6d{bottom:656.093333pt;}
.y6c{bottom:672.413333pt;}
.y96{bottom:686.973333pt;}
.y6b{bottom:688.733333pt;}
.y6a{bottom:705.053333pt;}
.y93{bottom:707.453333pt;}
.y69{bottom:721.213333pt;}
.y92{bottom:723.613333pt;}
.y68{bottom:737.533333pt;}
.y91{bottom:739.933333pt;}
.y67{bottom:753.853333pt;}
.y90{bottom:756.253333pt;}
.y8f{bottom:769.053333pt;}
.yb8{bottom:770.080000pt;}
.y66{bottom:770.173333pt;}
.yd{bottom:778.493333pt;}
.y65{bottom:786.333333pt;}
.yc{bottom:798.693333pt;}
.y64{bottom:802.693333pt;}
.yb{bottom:816.133333pt;}
.y63{bottom:819.013333pt;}
.ya{bottom:832.453333pt;}
.y62{bottom:835.173333pt;}
.y9{bottom:848.773333pt;}
.y61{bottom:851.493333pt;}
.y8{bottom:865.093333pt;}
.y60{bottom:867.813333pt;}
.y7{bottom:881.253333pt;}
.y5f{bottom:884.133333pt;}
.y6{bottom:899.013333pt;}
.y5e{bottom:900.293333pt;}
.y5d{bottom:916.613333pt;}
.y5{bottom:921.893333pt;}
.y5c{bottom:932.933333pt;}
.y4{bottom:943.653333pt;}
.y5b{bottom:949.253333pt;}
.yce{bottom:950.213333pt;}
.y2{bottom:962.053333pt;}
.y5a{bottom:965.413333pt;}
.y1{bottom:979.653333pt;}
.y59{bottom:981.733333pt;}
.y58{bottom:998.053333pt;}
.y57{bottom:1014.213333pt;}
.y53{bottom:1030.240000pt;}
.y52{bottom:1045.280000pt;}
.h7{height:16.160000pt;}
.h15{height:16.192000pt;}
.hf{height:16.320000pt;}
.h10{height:16.352000pt;}
.h11{height:17.440000pt;}
.hd{height:17.920000pt;}
.h17{height:29.940625pt;}
.h18{height:30.030000pt;}
.h13{height:32.640000pt;}
.h19{height:33.515625pt;}
.h1a{height:33.605000pt;}
.h14{height:40.151250pt;}
.h3{height:42.147500pt;}
.hc{height:42.649687pt;}
.hb{height:47.742188pt;}
.ha{height:49.148438pt;}
.h12{height:49.600000pt;}
.h6{height:52.834688pt;}
.h5{height:54.390938pt;}
.h2{height:58.563750pt;}
.he{height:65.531250pt;}
.h4{height:76.671562pt;}
.h16{height:256.960000pt;}
.h8{height:309.306667pt;}
.h9{height:459.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:44.000000pt;}
.w10{width:74.240000pt;}
.wb{width:85.600000pt;}
.w8{width:111.040000pt;}
.we{width:165.146667pt;}
.w12{width:176.986667pt;}
.wd{width:180.826667pt;}
.w9{width:183.386667pt;}
.wc{width:189.306667pt;}
.w4{width:192.666667pt;}
.w6{width:194.426667pt;}
.w11{width:222.746667pt;}
.w13{width:297.600000pt;}
.w7{width:334.466667pt;}
.wa{width:370.946667pt;}
.wf{width:400.386667pt;}
.w3{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x6{left:9.600000pt;}
.x21{left:14.752000pt;}
.x22{left:35.360000pt;}
.x23{left:38.368000pt;}
.x19{left:46.304000pt;}
.x1d{left:60.640000pt;}
.x1{left:75.551988pt;}
.xf{left:90.271988pt;}
.x1a{left:93.986667pt;}
.x1e{left:108.346667pt;}
.x28{left:109.533333pt;}
.x15{left:114.431988pt;}
.x9{left:129.471988pt;}
.x24{left:140.026667pt;}
.x1b{left:147.133333pt;}
.x11{left:154.746655pt;}
.x1f{left:161.506667pt;}
.x7{left:179.560000pt;}
.x10{left:187.546655pt;}
.x25{left:190.466667pt;}
.x1c{left:197.573333pt;}
.x20{left:211.906667pt;}
.x29{left:221.626655pt;}
.x26{left:233.533333pt;}
.x8{left:236.066667pt;}
.x16{left:242.146667pt;}
.x27{left:245.533333pt;}
.x12{left:260.386667pt;}
.xc{left:271.426667pt;}
.xb{left:295.906655pt;}
.xe{left:373.506655pt;}
.x4{left:420.573322pt;}
.x14{left:450.493333pt;}
.x18{left:465.533333pt;}
.x5{left:521.373333pt;}
.xd{left:606.533333pt;}
.x13{left:631.973333pt;}
.x17{left:643.333333pt;}
.xa{left:672.293333pt;}
.x2{left:718.239988pt;}
}




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