
    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_1c7a45efaf5096459a86ff7b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003418;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_5cba14b8c63fb593c4371cb5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.184570;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_6f1c8126b0d15fc71ce800c4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.014160;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_8245fa3c8d359c47c791fc7a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003418;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_d532331e4ed1456e394d3997.woff')format("woff");}.ff5{font-family:ff5;line-height:1.184570;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_495010b0796c2588b3efade5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_09f690156a686373725e4277.woff')format("woff");}.ff7{font-family:ff7;line-height:0.800781;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_95b88d4842adc67f7186adef.woff')format("woff");}.ff8{font-family:ff8;line-height:1.014160;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_58238c2e9b2cfbd30eea390d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_3db00823107217e780807396.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cd2d0d491575bc113840e496.woff')format("woff");}.ffb{font-family:ffb;line-height:0.877441;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:-15.600000px;}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.lse{letter-spacing:-1.320000px;}
.ls7{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.462000px;}
.lsd{letter-spacing:-0.384000px;}
.ls8{letter-spacing:-0.036000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.060000px;}
.ls15{letter-spacing:0.204000px;}
.ls2{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.396000px;}
.lsf{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.960000px;}
.ls16{letter-spacing:0.972000px;}
.lsa{letter-spacing:1.320000px;}
.lsb{letter-spacing:3.000000px;}
.ls11{letter-spacing:4.200000px;}
.ls10{letter-spacing:9.000000px;}
.ls3{letter-spacing:10.800000px;}
.ls4{letter-spacing:45.900000px;}
.ls14{letter-spacing:47.700000px;}
.ls0{letter-spacing:55.200000px;}
.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;}
}
.wsd{word-spacing:-60.000000px;}
.ws9{word-spacing:-48.000000px;}
.ws1{word-spacing:-27.000000px;}
.wsb{word-spacing:-15.540000px;}
.wsa{word-spacing:-15.480000px;}
.ws3{word-spacing:-15.000000px;}
.ws11{word-spacing:-14.472000px;}
.wsf{word-spacing:-14.100000px;}
.ws10{word-spacing:-13.704000px;}
.wse{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.300000px;}
.ws4{word-spacing:-12.000000px;}
.ws8{word-spacing:-11.616000px;}
.ws5{word-spacing:-10.500000px;}
.ws6{word-spacing:-10.038000px;}
.ws2{word-spacing:-9.000000px;}
.wsc{word-spacing:-8.400000px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-3.732000px;}
._a{margin-left:-2.172000px;}
._1{margin-left:-1.068000px;}
._0{width:1.188000px;}
._9{width:2.592000px;}
._6{width:4.176000px;}
._7{width:5.382000px;}
._8{width:6.594000px;}
._b{width:8.004000px;}
._c{width:9.048000px;}
._15{width:10.116000px;}
._11{width:11.184000px;}
._d{width:12.468000px;}
._14{width:13.500000px;}
._e{width:17.016000px;}
._12{width:18.120000px;}
._13{width:19.212000px;}
._1c{width:20.316000px;}
._1b{width:21.762000px;}
._3{width:23.004000px;}
._5{width:26.400000px;}
._4{width:37.500000px;}
._1a{width:47.922000px;}
._1d{width:59.292000px;}
._1e{width:60.480000px;}
._16{width:73.350000px;}
._18{width:80.568000px;}
._17{width:81.852000px;}
._19{width:83.826000px;}
._20{width:85.140000px;}
._21{width:86.832000px;}
._2{width:345.048000px;}
._1f{width:1838.496000px;}
._f{width:1862.496000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.000000px;}
.fs9{font-size:33.600000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:51.600000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:3.000000px;}
.yc1{bottom:3.900000px;}
.yb2{bottom:4.500000px;}
.y3{bottom:9.585000px;}
.ybc{bottom:11.400000px;}
.yd1{bottom:12.600000px;}
.yd8{bottom:13.785000px;}
.ye0{bottom:13.792500px;}
.yd4{bottom:14.092500px;}
.ydc{bottom:14.100000px;}
.yc6{bottom:15.600000px;}
.yca{bottom:18.900000px;}
.yc0{bottom:19.500000px;}
.y4{bottom:20.385000px;}
.y4c{bottom:21.000000px;}
.yb7{bottom:21.885000px;}
.ybb{bottom:27.015000px;}
.y2{bottom:28.500000px;}
.y7{bottom:28.837500px;}
.yc5{bottom:31.200000px;}
.yc9{bottom:34.500000px;}
.yb6{bottom:37.485000px;}
.y4b{bottom:39.007500px;}
.y6{bottom:42.637500px;}
.ydf{bottom:43.537500px;}
.ydb{bottom:43.830000px;}
.yd7{bottom:46.500000px;}
.y52{bottom:46.837500px;}
.y4a{bottom:57.037500px;}
.y51{bottom:62.737500px;}
.y49{bottom:75.037500px;}
.ybd{bottom:84.637500px;}
.y48{bottom:93.037500px;}
.ye2{bottom:94.237500px;}
.y86{bottom:94.837500px;}
.y47{bottom:108.337500px;}
.yc4{bottom:108.900000px;}
.ye1{bottom:113.437500px;}
.y85{bottom:114.037500px;}
.y32{bottom:114.637500px;}
.y122{bottom:116.437500px;}
.yaf{bottom:118.537500px;}
.y14c{bottom:119.737500px;}
.y33{bottom:121.237500px;}
.yd3{bottom:127.537500px;}
.yc3{bottom:129.045000px;}
.y84{bottom:133.237500px;}
.y31{bottom:133.837500px;}
.yc8{bottom:134.430000px;}
.yd2{bottom:136.837500px;}
.yae{bottom:137.737500px;}
.y102{bottom:141.037500px;}
.y14b{bottom:144.337500px;}
.yda{bottom:147.330000px;}
.ydd{bottom:147.337500px;}
.yb5{bottom:148.230000px;}
.y46{bottom:151.837500px;}
.y83{bottom:152.430000px;}
.yba{bottom:152.445000px;}
.y30{bottom:153.045000px;}
.ybf{bottom:153.937500px;}
.yad{bottom:156.930000px;}
.yc7{bottom:156.945000px;}
.yde{bottom:159.337500px;}
.y101{bottom:160.245000px;}
.y121{bottom:165.375000px;}
.y45{bottom:168.037500px;}
.yb4{bottom:168.630000px;}
.y14a{bottom:168.675000px;}
.yd6{bottom:171.630000px;}
.y82{bottom:171.675000px;}
.y2f{bottom:172.275000px;}
.yb9{bottom:172.545000px;}
.ybe{bottom:174.337500px;}
.yac{bottom:176.175000px;}
.y100{bottom:179.475000px;}
.y44{bottom:184.237500px;}
.y120{bottom:189.975000px;}
.y81{bottom:190.875000px;}
.y2e{bottom:191.475000px;}
.y149{bottom:193.275000px;}
.yab{bottom:195.375000px;}
.yff{bottom:198.675000px;}
.y43{bottom:200.737500px;}
.y80{bottom:210.075000px;}
.y2d{bottom:210.675000px;}
.y11f{bottom:214.275000px;}
.yaa{bottom:214.575000px;}
.y148{bottom:217.575000px;}
.yfe{bottom:217.875000px;}
.y7f{bottom:229.275000px;}
.y2c{bottom:229.875000px;}
.y42{bottom:232.867500px;}
.ya9{bottom:233.775000px;}
.yfd{bottom:237.075000px;}
.y11e{bottom:238.875000px;}
.y147{bottom:242.175000px;}
.y7e{bottom:248.475000px;}
.y41{bottom:250.882500px;}
.ya8{bottom:252.975000px;}
.y2b{bottom:253.575000px;}
.yfc{bottom:256.275000px;}
.y11d{bottom:263.175000px;}
.y146{bottom:266.475000px;}
.y7d{bottom:267.675000px;}
.y40{bottom:268.882500px;}
.ya7{bottom:272.175000px;}
.yfb{bottom:275.475000px;}
.y7c{bottom:286.875000px;}
.y3f{bottom:286.882500px;}
.y11c{bottom:287.775000px;}
.y145{bottom:291.075000px;}
.ya6{bottom:291.375000px;}
.yfa{bottom:294.675000px;}
.y3e{bottom:304.882500px;}
.y7b{bottom:306.075000px;}
.y2a{bottom:311.775000px;}
.y11b{bottom:312.075000px;}
.yf9{bottom:313.875000px;}
.ya5{bottom:315.075000px;}
.y144{bottom:315.375000px;}
.y3d{bottom:322.867500px;}
.y7a{bottom:325.575000px;}
.y29{bottom:331.575000px;}
.y11a{bottom:336.705000px;}
.yf8{bottom:337.605000px;}
.y143{bottom:340.005000px;}
.y79{bottom:344.805000px;}
.y3c{bottom:349.867500px;}
.y28{bottom:351.405000px;}
.ya4{bottom:352.620000px;}
.y119{bottom:361.005000px;}
.y78{bottom:364.005000px;}
.y142{bottom:364.305000px;}
.ya3{bottom:371.805000px;}
.yf7{bottom:375.120000px;}
.y3b{bottom:376.867500px;}
.y77{bottom:383.205000px;}
.y118{bottom:385.620000px;}
.y27{bottom:388.620000px;}
.y141{bottom:388.920000px;}
.ya2{bottom:391.005000px;}
.yf6{bottom:394.320000px;}
.y3a{bottom:394.912500px;}
.y76{bottom:402.420000px;}
.yd0{bottom:403.905000px;}
.y26{bottom:408.120000px;}
.y117{bottom:409.905000px;}
.ya1{bottom:410.205000px;}
.y39{bottom:412.912500px;}
.y140{bottom:413.205000px;}
.yf5{bottom:413.505000px;}
.y75{bottom:421.620000px;}
.yb8{bottom:424.605000px;}
.y25{bottom:427.620000px;}
.ya0{bottom:429.420000px;}
.y38{bottom:430.912500px;}
.yf4{bottom:432.705000px;}
.y116{bottom:434.505000px;}
.y13f{bottom:437.820000px;}
.y74{bottom:440.820000px;}
.y24{bottom:447.120000px;}
.y9f{bottom:448.620000px;}
.y37{bottom:448.912500px;}
.yf3{bottom:451.905000px;}
.ycf{bottom:454.620000px;}
.y115{bottom:458.820000px;}
.y73{bottom:460.005000px;}
.y13e{bottom:462.120000px;}
.y23{bottom:466.620000px;}
.y36{bottom:466.912500px;}
.y9e{bottom:467.820000px;}
.yf2{bottom:471.105000px;}
.yd9{bottom:478.020000px;}
.y72{bottom:479.205000px;}
.y114{bottom:483.420000px;}
.y35{bottom:484.912500px;}
.y22{bottom:486.105000px;}
.y13d{bottom:486.705000px;}
.y9d{bottom:487.005000px;}
.yf1{bottom:490.320000px;}
.yce{bottom:492.120000px;}
.y71{bottom:498.405000px;}
.y34{bottom:502.912500px;}
.y21{bottom:505.650000px;}
.y9c{bottom:506.250000px;}
.y113{bottom:507.750000px;}
.yf0{bottom:509.550000px;}
.y13c{bottom:511.050000px;}
.ycd{bottom:511.350000px;}
.y70{bottom:517.650000px;}
.y20{bottom:525.150000px;}
.y9b{bottom:525.450000px;}
.yef{bottom:528.750000px;}
.ycc{bottom:530.550000px;}
.y112{bottom:532.350000px;}
.y13b{bottom:535.650000px;}
.y6f{bottom:536.850000px;}
.y1f{bottom:544.650000px;}
.yee{bottom:547.950000px;}
.ycb{bottom:549.750000px;}
.y6e{bottom:556.350000px;}
.y111{bottom:556.650000px;}
.y13a{bottom:559.950000px;}
.y9a{bottom:563.850000px;}
.y1e{bottom:564.150000px;}
.yed{bottom:567.150000px;}
.y6d{bottom:575.550000px;}
.y110{bottom:582.750000px;}
.y99{bottom:583.350000px;}
.y1d{bottom:583.650000px;}
.y139{bottom:584.550000px;}
.yec{bottom:586.350000px;}
.y6c{bottom:594.750000px;}
.y98{bottom:602.550000px;}
.y1c{bottom:603.150000px;}
.yeb{bottom:605.850000px;}
.y138{bottom:608.850000px;}
.y6b{bottom:613.950000px;}
.y10f{bottom:619.350000px;}
.y97{bottom:621.750000px;}
.y1b{bottom:622.650000px;}
.yea{bottom:625.050000px;}
.y6a{bottom:633.150000px;}
.y137{bottom:633.450000px;}
.y96{bottom:640.950000px;}
.y1a{bottom:642.150000px;}
.ye9{bottom:644.250000px;}
.y69{bottom:652.350000px;}
.y10e{bottom:654.750000px;}
.y136{bottom:657.750000px;}
.y95{bottom:660.150000px;}
.y19{bottom:661.650000px;}
.ye8{bottom:663.450000px;}
.y68{bottom:671.595000px;}
.y10d{bottom:672.480000px;}
.y94{bottom:679.380000px;}
.y18{bottom:681.180000px;}
.y135{bottom:682.380000px;}
.ye7{bottom:682.680000px;}
.y67{bottom:690.780000px;}
.y93{bottom:698.595000px;}
.y17{bottom:700.695000px;}
.ye6{bottom:701.880000px;}
.y134{bottom:706.695000px;}
.y10c{bottom:707.580000px;}
.y66{bottom:709.995000px;}
.y92{bottom:717.780000px;}
.y16{bottom:720.195000px;}
.ye5{bottom:721.080000px;}
.y65{bottom:729.195000px;}
.y133{bottom:731.280000px;}
.y15{bottom:739.695000px;}
.ye4{bottom:740.280000px;}
.y91{bottom:741.480000px;}
.y10b{bottom:742.980000px;}
.y64{bottom:748.380000px;}
.y132{bottom:755.580000px;}
.y14{bottom:759.195000px;}
.ye3{bottom:759.480000px;}
.yb3{bottom:761.595000px;}
.y63{bottom:767.595000px;}
.y10a{bottom:778.080000px;}
.y13{bottom:778.695000px;}
.y131{bottom:780.195000px;}
.yd5{bottom:784.695000px;}
.y62{bottom:787.080000px;}
.y90{bottom:797.880000px;}
.y12{bottom:798.195000px;}
.y130{bottom:804.495000px;}
.y61{bottom:806.280000px;}
.y109{bottom:813.195000px;}
.y8f{bottom:817.080000px;}
.y11{bottom:817.695000px;}
.y12f{bottom:829.080000px;}
.y60{bottom:829.995000px;}
.y108{bottom:830.880000px;}
.y8e{bottom:836.580000px;}
.y10{bottom:837.480000px;}
.y12e{bottom:853.425000px;}
.y5f{bottom:853.725000px;}
.y8d{bottom:855.825000px;}
.y107{bottom:866.025000px;}
.yf{bottom:874.725000px;}
.y8c{bottom:875.025000px;}
.y12d{bottom:878.025000px;}
.y106{bottom:883.125000px;}
.yc2{bottom:890.325000px;}
.y5e{bottom:890.925000px;}
.ye{bottom:893.625000px;}
.y8b{bottom:894.225000px;}
.y105{bottom:900.525000px;}
.y12c{bottom:902.325000px;}
.yd{bottom:909.825000px;}
.y5d{bottom:910.125000px;}
.y8a{bottom:913.425000px;}
.y104{bottom:917.925000px;}
.y12b{bottom:926.925000px;}
.y5c{bottom:929.325000px;}
.y89{bottom:932.625000px;}
.y103{bottom:935.325000px;}
.y5b{bottom:948.525000px;}
.yc{bottom:950.925000px;}
.y12a{bottom:951.225000px;}
.y88{bottom:951.825000px;}
.yb{bottom:971.025000px;}
.y5a{bottom:972.225000px;}
.y129{bottom:975.825000px;}
.y87{bottom:990.225000px;}
.y128{bottom:1000.125000px;}
.y59{bottom:1009.455000px;}
.ya{bottom:1022.070000px;}
.y127{bottom:1024.755000px;}
.y58{bottom:1028.670000px;}
.y57{bottom:1047.855000px;}
.y126{bottom:1049.070000px;}
.y9{bottom:1058.355000px;}
.y56{bottom:1067.355000px;}
.y125{bottom:1073.655000px;}
.y55{bottom:1086.570000px;}
.yb1{bottom:1090.455000px;}
.y8{bottom:1091.370000px;}
.y124{bottom:1097.955000px;}
.y54{bottom:1105.755000px;}
.y123{bottom:1122.570000px;}
.yb0{bottom:1124.655000px;}
.y53{bottom:1124.955000px;}
.y5{bottom:1128.255000px;}
.y1{bottom:1134.570000px;}
.y50{bottom:1144.455000px;}
.y4f{bottom:1163.655000px;}
.y4e{bottom:1173.570000px;}
.h12{height:20.100000px;}
.hb{height:30.867188px;}
.h7{height:35.179688px;}
.h18{height:36.600000px;}
.h10{height:37.508789px;}
.hc{height:39.603516px;}
.h8{height:42.867188px;}
.h9{height:43.974609px;}
.h5{height:44.003906px;}
.h4{height:46.082227px;}
.hd{height:48.225586px;}
.h3{height:48.404297px;}
.h2{height:51.637500px;}
.h6{height:53.583984px;}
.h11{height:59.853516px;}
.he{height:62.460938px;}
.ha{height:79.207031px;}
.h16{height:248.745000px;}
.h19{height:266.475000px;}
.h17{height:305.775000px;}
.h13{height:327.960000px;}
.h1b{height:330.075000px;}
.h14{height:336.075000px;}
.h15{height:339.075000px;}
.h1a{height:354.375000px;}
.hf{height:517.920000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:126.675000px;}
.w6{width:180.975000px;}
.w7{width:265.920000px;}
.w3{width:339.975000px;}
.w2{width:372.450000px;}
.w8{width:521.250000px;}
.w5{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:15.937500px;}
.x20{left:30.637500px;}
.x1c{left:32.137500px;}
.x11{left:48.337500px;}
.x15{left:51.037500px;}
.x1{left:54.000000px;}
.x1d{left:55.537500px;}
.xe{left:68.137500px;}
.x9{left:81.637500px;}
.x10{left:83.085000px;}
.x23{left:86.137487px;}
.xb{left:120.937487px;}
.x12{left:132.975000px;}
.x3{left:170.130000px;}
.x22{left:184.230000px;}
.x1a{left:188.130000px;}
.x18{left:191.130000px;}
.x14{left:192.630000px;}
.xd{left:235.574987px;}
.x5{left:249.674987px;}
.x6{left:250.874987px;}
.x1b{left:260.174987px;}
.x7{left:276.674987px;}
.xc{left:281.474987px;}
.x8{left:282.674987px;}
.xf{left:319.920000px;}
.x16{left:356.205000px;}
.x1e{left:370.005000px;}
.x17{left:372.405000px;}
.x21{left:374.205000px;}
.x19{left:380.805000px;}
.x13{left:383.205000px;}
.x2{left:426.450000px;}
.xa{left:512.249987px;}
.x4{left:766.425000px;}
@media print{
.v3{vertical-align:-13.866667pt;}
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.lse{letter-spacing:-1.173333pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.410667pt;}
.lsd{letter-spacing:-0.341333pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.053333pt;}
.ls15{letter-spacing:0.181333pt;}
.ls2{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.352000pt;}
.lsf{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.853333pt;}
.ls16{letter-spacing:0.864000pt;}
.lsa{letter-spacing:1.173333pt;}
.lsb{letter-spacing:2.666667pt;}
.ls11{letter-spacing:3.733333pt;}
.ls10{letter-spacing:8.000000pt;}
.ls3{letter-spacing:9.600000pt;}
.ls4{letter-spacing:40.800000pt;}
.ls14{letter-spacing:42.400000pt;}
.ls0{letter-spacing:49.066667pt;}
.wsd{word-spacing:-53.333333pt;}
.ws9{word-spacing:-42.666667pt;}
.ws1{word-spacing:-24.000000pt;}
.wsb{word-spacing:-13.813333pt;}
.wsa{word-spacing:-13.760000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws11{word-spacing:-12.864000pt;}
.wsf{word-spacing:-12.533333pt;}
.ws10{word-spacing:-12.181333pt;}
.wse{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.933333pt;}
.ws4{word-spacing:-10.666667pt;}
.ws8{word-spacing:-10.325333pt;}
.ws5{word-spacing:-9.333333pt;}
.ws6{word-spacing:-8.922667pt;}
.ws2{word-spacing:-8.000000pt;}
.wsc{word-spacing:-7.466667pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-3.317333pt;}
._a{margin-left:-1.930667pt;}
._1{margin-left:-0.949333pt;}
._0{width:1.056000pt;}
._9{width:2.304000pt;}
._6{width:3.712000pt;}
._7{width:4.784000pt;}
._8{width:5.861333pt;}
._b{width:7.114667pt;}
._c{width:8.042667pt;}
._15{width:8.992000pt;}
._11{width:9.941333pt;}
._d{width:11.082667pt;}
._14{width:12.000000pt;}
._e{width:15.125333pt;}
._12{width:16.106667pt;}
._13{width:17.077333pt;}
._1c{width:18.058667pt;}
._1b{width:19.344000pt;}
._3{width:20.448000pt;}
._5{width:23.466667pt;}
._4{width:33.333333pt;}
._1a{width:42.597333pt;}
._1d{width:52.704000pt;}
._1e{width:53.760000pt;}
._16{width:65.200000pt;}
._18{width:71.616000pt;}
._17{width:72.757333pt;}
._19{width:74.512000pt;}
._20{width:75.680000pt;}
._21{width:77.184000pt;}
._2{width:306.709333pt;}
._1f{width:1634.218667pt;}
._f{width:1655.552000pt;}
.fs6{font-size:26.666667pt;}
.fs9{font-size:29.866667pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:45.866667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:2.666667pt;}
.yc1{bottom:3.466667pt;}
.yb2{bottom:4.000000pt;}
.y3{bottom:8.520000pt;}
.ybc{bottom:10.133333pt;}
.yd1{bottom:11.200000pt;}
.yd8{bottom:12.253333pt;}
.ye0{bottom:12.260000pt;}
.yd4{bottom:12.526667pt;}
.ydc{bottom:12.533333pt;}
.yc6{bottom:13.866667pt;}
.yca{bottom:16.800000pt;}
.yc0{bottom:17.333333pt;}
.y4{bottom:18.120000pt;}
.y4c{bottom:18.666667pt;}
.yb7{bottom:19.453333pt;}
.ybb{bottom:24.013333pt;}
.y2{bottom:25.333333pt;}
.y7{bottom:25.633333pt;}
.yc5{bottom:27.733333pt;}
.yc9{bottom:30.666667pt;}
.yb6{bottom:33.320000pt;}
.y4b{bottom:34.673333pt;}
.y6{bottom:37.900000pt;}
.ydf{bottom:38.700000pt;}
.ydb{bottom:38.960000pt;}
.yd7{bottom:41.333333pt;}
.y52{bottom:41.633333pt;}
.y4a{bottom:50.700000pt;}
.y51{bottom:55.766667pt;}
.y49{bottom:66.700000pt;}
.ybd{bottom:75.233333pt;}
.y48{bottom:82.700000pt;}
.ye2{bottom:83.766667pt;}
.y86{bottom:84.300000pt;}
.y47{bottom:96.300000pt;}
.yc4{bottom:96.800000pt;}
.ye1{bottom:100.833333pt;}
.y85{bottom:101.366667pt;}
.y32{bottom:101.900000pt;}
.y122{bottom:103.500000pt;}
.yaf{bottom:105.366667pt;}
.y14c{bottom:106.433333pt;}
.y33{bottom:107.766667pt;}
.yd3{bottom:113.366667pt;}
.yc3{bottom:114.706667pt;}
.y84{bottom:118.433333pt;}
.y31{bottom:118.966667pt;}
.yc8{bottom:119.493333pt;}
.yd2{bottom:121.633333pt;}
.yae{bottom:122.433333pt;}
.y102{bottom:125.366667pt;}
.y14b{bottom:128.300000pt;}
.yda{bottom:130.960000pt;}
.ydd{bottom:130.966667pt;}
.yb5{bottom:131.760000pt;}
.y46{bottom:134.966667pt;}
.y83{bottom:135.493333pt;}
.yba{bottom:135.506667pt;}
.y30{bottom:136.040000pt;}
.ybf{bottom:136.833333pt;}
.yad{bottom:139.493333pt;}
.yc7{bottom:139.506667pt;}
.yde{bottom:141.633333pt;}
.y101{bottom:142.440000pt;}
.y121{bottom:147.000000pt;}
.y45{bottom:149.366667pt;}
.yb4{bottom:149.893333pt;}
.y14a{bottom:149.933333pt;}
.yd6{bottom:152.560000pt;}
.y82{bottom:152.600000pt;}
.y2f{bottom:153.133333pt;}
.yb9{bottom:153.373333pt;}
.ybe{bottom:154.966667pt;}
.yac{bottom:156.600000pt;}
.y100{bottom:159.533333pt;}
.y44{bottom:163.766667pt;}
.y120{bottom:168.866667pt;}
.y81{bottom:169.666667pt;}
.y2e{bottom:170.200000pt;}
.y149{bottom:171.800000pt;}
.yab{bottom:173.666667pt;}
.yff{bottom:176.600000pt;}
.y43{bottom:178.433333pt;}
.y80{bottom:186.733333pt;}
.y2d{bottom:187.266667pt;}
.y11f{bottom:190.466667pt;}
.yaa{bottom:190.733333pt;}
.y148{bottom:193.400000pt;}
.yfe{bottom:193.666667pt;}
.y7f{bottom:203.800000pt;}
.y2c{bottom:204.333333pt;}
.y42{bottom:206.993333pt;}
.ya9{bottom:207.800000pt;}
.yfd{bottom:210.733333pt;}
.y11e{bottom:212.333333pt;}
.y147{bottom:215.266667pt;}
.y7e{bottom:220.866667pt;}
.y41{bottom:223.006667pt;}
.ya8{bottom:224.866667pt;}
.y2b{bottom:225.400000pt;}
.yfc{bottom:227.800000pt;}
.y11d{bottom:233.933333pt;}
.y146{bottom:236.866667pt;}
.y7d{bottom:237.933333pt;}
.y40{bottom:239.006667pt;}
.ya7{bottom:241.933333pt;}
.yfb{bottom:244.866667pt;}
.y7c{bottom:255.000000pt;}
.y3f{bottom:255.006667pt;}
.y11c{bottom:255.800000pt;}
.y145{bottom:258.733333pt;}
.ya6{bottom:259.000000pt;}
.yfa{bottom:261.933333pt;}
.y3e{bottom:271.006667pt;}
.y7b{bottom:272.066667pt;}
.y2a{bottom:277.133333pt;}
.y11b{bottom:277.400000pt;}
.yf9{bottom:279.000000pt;}
.ya5{bottom:280.066667pt;}
.y144{bottom:280.333333pt;}
.y3d{bottom:286.993333pt;}
.y7a{bottom:289.400000pt;}
.y29{bottom:294.733333pt;}
.y11a{bottom:299.293333pt;}
.yf8{bottom:300.093333pt;}
.y143{bottom:302.226667pt;}
.y79{bottom:306.493333pt;}
.y3c{bottom:310.993333pt;}
.y28{bottom:312.360000pt;}
.ya4{bottom:313.440000pt;}
.y119{bottom:320.893333pt;}
.y78{bottom:323.560000pt;}
.y142{bottom:323.826667pt;}
.ya3{bottom:330.493333pt;}
.yf7{bottom:333.440000pt;}
.y3b{bottom:334.993333pt;}
.y77{bottom:340.626667pt;}
.y118{bottom:342.773333pt;}
.y27{bottom:345.440000pt;}
.y141{bottom:345.706667pt;}
.ya2{bottom:347.560000pt;}
.yf6{bottom:350.506667pt;}
.y3a{bottom:351.033333pt;}
.y76{bottom:357.706667pt;}
.yd0{bottom:359.026667pt;}
.y26{bottom:362.773333pt;}
.y117{bottom:364.360000pt;}
.ya1{bottom:364.626667pt;}
.y39{bottom:367.033333pt;}
.y140{bottom:367.293333pt;}
.yf5{bottom:367.560000pt;}
.y75{bottom:374.773333pt;}
.yb8{bottom:377.426667pt;}
.y25{bottom:380.106667pt;}
.ya0{bottom:381.706667pt;}
.y38{bottom:383.033333pt;}
.yf4{bottom:384.626667pt;}
.y116{bottom:386.226667pt;}
.y13f{bottom:389.173333pt;}
.y74{bottom:391.840000pt;}
.y24{bottom:397.440000pt;}
.y9f{bottom:398.773333pt;}
.y37{bottom:399.033333pt;}
.yf3{bottom:401.693333pt;}
.ycf{bottom:404.106667pt;}
.y115{bottom:407.840000pt;}
.y73{bottom:408.893333pt;}
.y13e{bottom:410.773333pt;}
.y23{bottom:414.773333pt;}
.y36{bottom:415.033333pt;}
.y9e{bottom:415.840000pt;}
.yf2{bottom:418.760000pt;}
.yd9{bottom:424.906667pt;}
.y72{bottom:425.960000pt;}
.y114{bottom:429.706667pt;}
.y35{bottom:431.033333pt;}
.y22{bottom:432.093333pt;}
.y13d{bottom:432.626667pt;}
.y9d{bottom:432.893333pt;}
.yf1{bottom:435.840000pt;}
.yce{bottom:437.440000pt;}
.y71{bottom:443.026667pt;}
.y34{bottom:447.033333pt;}
.y21{bottom:449.466667pt;}
.y9c{bottom:450.000000pt;}
.y113{bottom:451.333333pt;}
.yf0{bottom:452.933333pt;}
.y13c{bottom:454.266667pt;}
.ycd{bottom:454.533333pt;}
.y70{bottom:460.133333pt;}
.y20{bottom:466.800000pt;}
.y9b{bottom:467.066667pt;}
.yef{bottom:470.000000pt;}
.ycc{bottom:471.600000pt;}
.y112{bottom:473.200000pt;}
.y13b{bottom:476.133333pt;}
.y6f{bottom:477.200000pt;}
.y1f{bottom:484.133333pt;}
.yee{bottom:487.066667pt;}
.ycb{bottom:488.666667pt;}
.y6e{bottom:494.533333pt;}
.y111{bottom:494.800000pt;}
.y13a{bottom:497.733333pt;}
.y9a{bottom:501.200000pt;}
.y1e{bottom:501.466667pt;}
.yed{bottom:504.133333pt;}
.y6d{bottom:511.600000pt;}
.y110{bottom:518.000000pt;}
.y99{bottom:518.533333pt;}
.y1d{bottom:518.800000pt;}
.y139{bottom:519.600000pt;}
.yec{bottom:521.200000pt;}
.y6c{bottom:528.666667pt;}
.y98{bottom:535.600000pt;}
.y1c{bottom:536.133333pt;}
.yeb{bottom:538.533333pt;}
.y138{bottom:541.200000pt;}
.y6b{bottom:545.733333pt;}
.y10f{bottom:550.533333pt;}
.y97{bottom:552.666667pt;}
.y1b{bottom:553.466667pt;}
.yea{bottom:555.600000pt;}
.y6a{bottom:562.800000pt;}
.y137{bottom:563.066667pt;}
.y96{bottom:569.733333pt;}
.y1a{bottom:570.800000pt;}
.ye9{bottom:572.666667pt;}
.y69{bottom:579.866667pt;}
.y10e{bottom:582.000000pt;}
.y136{bottom:584.666667pt;}
.y95{bottom:586.800000pt;}
.y19{bottom:588.133333pt;}
.ye8{bottom:589.733333pt;}
.y68{bottom:596.973333pt;}
.y10d{bottom:597.760000pt;}
.y94{bottom:603.893333pt;}
.y18{bottom:605.493333pt;}
.y135{bottom:606.560000pt;}
.ye7{bottom:606.826667pt;}
.y67{bottom:614.026667pt;}
.y93{bottom:620.973333pt;}
.y17{bottom:622.840000pt;}
.ye6{bottom:623.893333pt;}
.y134{bottom:628.173333pt;}
.y10c{bottom:628.960000pt;}
.y66{bottom:631.106667pt;}
.y92{bottom:638.026667pt;}
.y16{bottom:640.173333pt;}
.ye5{bottom:640.960000pt;}
.y65{bottom:648.173333pt;}
.y133{bottom:650.026667pt;}
.y15{bottom:657.506667pt;}
.ye4{bottom:658.026667pt;}
.y91{bottom:659.093333pt;}
.y10b{bottom:660.426667pt;}
.y64{bottom:665.226667pt;}
.y132{bottom:671.626667pt;}
.y14{bottom:674.840000pt;}
.ye3{bottom:675.093333pt;}
.yb3{bottom:676.973333pt;}
.y63{bottom:682.306667pt;}
.y10a{bottom:691.626667pt;}
.y13{bottom:692.173333pt;}
.y131{bottom:693.506667pt;}
.yd5{bottom:697.506667pt;}
.y62{bottom:699.626667pt;}
.y90{bottom:709.226667pt;}
.y12{bottom:709.506667pt;}
.y130{bottom:715.106667pt;}
.y61{bottom:716.693333pt;}
.y109{bottom:722.840000pt;}
.y8f{bottom:726.293333pt;}
.y11{bottom:726.840000pt;}
.y12f{bottom:736.960000pt;}
.y60{bottom:737.773333pt;}
.y108{bottom:738.560000pt;}
.y8e{bottom:743.626667pt;}
.y10{bottom:744.426667pt;}
.y12e{bottom:758.600000pt;}
.y5f{bottom:758.866667pt;}
.y8d{bottom:760.733333pt;}
.y107{bottom:769.800000pt;}
.yf{bottom:777.533333pt;}
.y8c{bottom:777.800000pt;}
.y12d{bottom:780.466667pt;}
.y106{bottom:785.000000pt;}
.yc2{bottom:791.400000pt;}
.y5e{bottom:791.933333pt;}
.ye{bottom:794.333333pt;}
.y8b{bottom:794.866667pt;}
.y105{bottom:800.466667pt;}
.y12c{bottom:802.066667pt;}
.yd{bottom:808.733333pt;}
.y5d{bottom:809.000000pt;}
.y8a{bottom:811.933333pt;}
.y104{bottom:815.933333pt;}
.y12b{bottom:823.933333pt;}
.y5c{bottom:826.066667pt;}
.y89{bottom:829.000000pt;}
.y103{bottom:831.400000pt;}
.y5b{bottom:843.133333pt;}
.yc{bottom:845.266667pt;}
.y12a{bottom:845.533333pt;}
.y88{bottom:846.066667pt;}
.yb{bottom:863.133333pt;}
.y5a{bottom:864.200000pt;}
.y129{bottom:867.400000pt;}
.y87{bottom:880.200000pt;}
.y128{bottom:889.000000pt;}
.y59{bottom:897.293333pt;}
.ya{bottom:908.506667pt;}
.y127{bottom:910.893333pt;}
.y58{bottom:914.373333pt;}
.y57{bottom:931.426667pt;}
.y126{bottom:932.506667pt;}
.y9{bottom:940.760000pt;}
.y56{bottom:948.760000pt;}
.y125{bottom:954.360000pt;}
.y55{bottom:965.840000pt;}
.yb1{bottom:969.293333pt;}
.y8{bottom:970.106667pt;}
.y124{bottom:975.960000pt;}
.y54{bottom:982.893333pt;}
.y123{bottom:997.840000pt;}
.yb0{bottom:999.693333pt;}
.y53{bottom:999.960000pt;}
.y5{bottom:1002.893333pt;}
.y1{bottom:1008.506667pt;}
.y50{bottom:1017.293333pt;}
.y4f{bottom:1034.360000pt;}
.y4e{bottom:1043.173333pt;}
.h12{height:17.866667pt;}
.hb{height:27.437500pt;}
.h7{height:31.270833pt;}
.h18{height:32.533333pt;}
.h10{height:33.341146pt;}
.hc{height:35.203125pt;}
.h8{height:38.104167pt;}
.h9{height:39.088542pt;}
.h5{height:39.114583pt;}
.h4{height:40.961979pt;}
.hd{height:42.867188pt;}
.h3{height:43.026042pt;}
.h2{height:45.900000pt;}
.h6{height:47.630208pt;}
.h11{height:53.203125pt;}
.he{height:55.520833pt;}
.ha{height:70.406250pt;}
.h16{height:221.106667pt;}
.h19{height:236.866667pt;}
.h17{height:271.800000pt;}
.h13{height:291.520000pt;}
.h1b{height:293.400000pt;}
.h14{height:298.733333pt;}
.h15{height:301.400000pt;}
.h1a{height:315.000000pt;}
.hf{height:460.373333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:112.600000pt;}
.w6{width:160.866667pt;}
.w7{width:236.373333pt;}
.w3{width:302.200000pt;}
.w2{width:331.066667pt;}
.w8{width:463.333333pt;}
.w5{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:14.166667pt;}
.x20{left:27.233333pt;}
.x1c{left:28.566667pt;}
.x11{left:42.966667pt;}
.x15{left:45.366667pt;}
.x1{left:48.000000pt;}
.x1d{left:49.366667pt;}
.xe{left:60.566667pt;}
.x9{left:72.566667pt;}
.x10{left:73.853333pt;}
.x23{left:76.566655pt;}
.xb{left:107.499988pt;}
.x12{left:118.200000pt;}
.x3{left:151.226667pt;}
.x22{left:163.760000pt;}
.x1a{left:167.226667pt;}
.x18{left:169.893333pt;}
.x14{left:171.226667pt;}
.xd{left:209.399988pt;}
.x5{left:221.933322pt;}
.x6{left:222.999988pt;}
.x1b{left:231.266655pt;}
.x7{left:245.933322pt;}
.xc{left:250.199988pt;}
.x8{left:251.266655pt;}
.xf{left:284.373333pt;}
.x16{left:316.626667pt;}
.x1e{left:328.893333pt;}
.x17{left:331.026667pt;}
.x21{left:332.626667pt;}
.x19{left:338.493333pt;}
.x13{left:340.626667pt;}
.x2{left:379.066667pt;}
.xa{left:455.333322pt;}
.x4{left:681.266667pt;}
}




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