
    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_1bde1625338a623d1301fe4f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_d29ccac52aa9aa0ccc1244e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_cbea568a6b732e29c30ed710.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.866211;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_6027eb77e6aa072d819fa96d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.808105;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_391246e6940c60a2cc45e2cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_e0ac7eb4a168fa910aafbbda.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_3b578a08e7567917b49ee69d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls1f{letter-spacing:-0.342144px;}
.ls23{letter-spacing:-0.310464px;}
.ls14{letter-spacing:-0.297792px;}
.ls24{letter-spacing:-0.266112px;}
.ls26{letter-spacing:-0.259776px;}
.ls11{letter-spacing:-0.253440px;}
.ls27{letter-spacing:-0.247104px;}
.lsf{letter-spacing:-0.234432px;}
.ls28{letter-spacing:-0.228096px;}
.ls12{letter-spacing:-0.221760px;}
.ls18{letter-spacing:-0.215424px;}
.ls1b{letter-spacing:-0.209088px;}
.ls20{letter-spacing:-0.202752px;}
.ls9{letter-spacing:-0.196416px;}
.ls8{letter-spacing:-0.190080px;}
.ls21{letter-spacing:-0.183744px;}
.ls22{letter-spacing:-0.177408px;}
.ls13{letter-spacing:-0.171072px;}
.lsa{letter-spacing:-0.164736px;}
.lsd{letter-spacing:-0.158400px;}
.lse{letter-spacing:-0.152064px;}
.ls17{letter-spacing:-0.145728px;}
.ls6{letter-spacing:-0.133056px;}
.ls25{letter-spacing:-0.126720px;}
.ls15{letter-spacing:-0.120384px;}
.ls1a{letter-spacing:-0.101376px;}
.ls1c{letter-spacing:-0.095040px;}
.ls29{letter-spacing:-0.088704px;}
.ls19{letter-spacing:-0.063360px;}
.ls16{letter-spacing:-0.050688px;}
.ls2d{letter-spacing:-0.014400px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.057600px;}
.ls10{letter-spacing:0.112752px;}
.ls3{letter-spacing:0.115200px;}
.ls2{letter-spacing:0.170784px;}
.lsb{letter-spacing:0.267264px;}
.lsc{letter-spacing:0.325728px;}
.ls1d{letter-spacing:1.656288px;}
.ls5{letter-spacing:2.013120px;}
.ls2c{letter-spacing:6.392160px;}
.ls2a{letter-spacing:7.298640px;}
.ls2e{letter-spacing:12.912192px;}
.ls2b{letter-spacing:13.456944px;}
.ls1e{letter-spacing:68.946768px;}
.ls1{letter-spacing:1191.114144px;}
.ls0{letter-spacing:2005.099920px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.147264px;}
.ws1{word-spacing:-14.319360px;}
.ws9{word-spacing:-14.268672px;}
.ws14{word-spacing:-14.256000px;}
.ws16{word-spacing:-14.230656px;}
.ws6{word-spacing:-14.198976px;}
.ws8{word-spacing:-14.186304px;}
.ws13{word-spacing:-14.173632px;}
.ws4{word-spacing:-14.167296px;}
.ws2{word-spacing:-14.154624px;}
.wsd{word-spacing:-14.148288px;}
.ws10{word-spacing:-14.141952px;}
.ws15{word-spacing:-14.135616px;}
.ws0{word-spacing:-14.129280px;}
.wsf{word-spacing:-14.122944px;}
.ws12{word-spacing:-14.116608px;}
.wsa{word-spacing:-14.110272px;}
.ws5{word-spacing:-14.097600px;}
.ws17{word-spacing:-14.084928px;}
.ws11{word-spacing:-14.072256px;}
.wsc{word-spacing:-14.053248px;}
.wsb{word-spacing:-14.021568px;}
.wse{word-spacing:-14.008896px;}
.ws7{word-spacing:0.000000px;}
.ws18{word-spacing:0.024912px;}
._27{margin-left:-89.256384px;}
._15{margin-left:-4.435200px;}
._7{margin-left:-3.421440px;}
._8{margin-left:-2.383200px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._3{width:2.217600px;}
._4{width:3.251520px;}
._5{width:4.688640px;}
._6{width:5.829120px;}
._a{width:6.969600px;}
._e{width:7.983360px;}
._c{width:9.060480px;}
._b{width:10.327680px;}
._9{width:11.404800px;}
._f{width:12.595968px;}
._d{width:15.396480px;}
._17{width:16.790400px;}
._16{width:17.867520px;}
._13{width:18.881280px;}
._14{width:19.895040px;}
._10{width:21.076128px;}
._11{width:22.150368px;}
._25{width:23.823360px;}
._24{width:24.963840px;}
._12{width:28.638720px;}
._19{width:45.365760px;}
._1c{width:53.222400px;}
._18{width:58.164480px;}
._1b{width:63.423360px;}
._20{width:68.682240px;}
._26{width:73.452240px;}
._1f{width:75.905280px;}
._1a{width:81.671040px;}
._21{width:90.414720px;}
._22{width:142.179840px;}
._23{width:154.978560px;}
._1e{width:172.972800px;}
._1d{width:195.782400px;}
._1{width:2478.560832px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y71{bottom:4.500000px;}
.y80{bottom:4.620000px;}
.yb4{bottom:4.680000px;}
.y8b{bottom:4.740000px;}
.y87{bottom:4.860000px;}
.yd0{bottom:4.920000px;}
.yb2{bottom:4.980000px;}
.y77{bottom:5.040000px;}
.y83{bottom:5.160000px;}
.yc7{bottom:5.220000px;}
.y7e{bottom:5.280000px;}
.y8a{bottom:5.400000px;}
.y7c{bottom:5.580000px;}
.yd8{bottom:5.640000px;}
.y75{bottom:5.700000px;}
.y82{bottom:5.820000px;}
.ya2{bottom:5.880000px;}
.yc2{bottom:5.940000px;}
.ya5{bottom:6.000000px;}
.yd2{bottom:6.120000px;}
.y78{bottom:6.240000px;}
.yce{bottom:6.300000px;}
.ycd{bottom:7.020000px;}
.ya4{bottom:7.080000px;}
.yc0{bottom:7.620000px;}
.yab{bottom:7.860000px;}
.ybd{bottom:8.820000px;}
.yb7{bottom:9.060000px;}
.ybf{bottom:10.140000px;}
.yaa{bottom:10.740000px;}
.ybc{bottom:11.700000px;}
.yc5{bottom:13.080000px;}
.yb6{bottom:13.380000px;}
.yba{bottom:14.220000px;}
.yfb{bottom:14.400000px;}
.yef{bottom:14.640000px;}
.yca{bottom:14.700000px;}
.ya8{bottom:14.760000px;}
.yf7{bottom:14.880000px;}
.yd9{bottom:15.000000px;}
.ydb{bottom:15.120000px;}
.yd5{bottom:15.240000px;}
.yfe{bottom:15.360000px;}
.yc4{bottom:20.640000px;}
.yb9{bottom:23.940000px;}
.yc9{bottom:24.060000px;}
.yfa{bottom:24.120000px;}
.yae{bottom:24.240000px;}
.yee{bottom:24.360000px;}
.yb1{bottom:24.420000px;}
.ya7{bottom:24.480000px;}
.yf6{bottom:24.600000px;}
.yd7{bottom:24.720000px;}
.yec{bottom:24.900000px;}
.yd4{bottom:24.960000px;}
.ya1{bottom:25.320000px;}
.yf2{bottom:25.380000px;}
.y73{bottom:26.040000px;}
.y85{bottom:34.980000px;}
.yb0{bottom:43.500000px;}
.yad{bottom:43.680000px;}
.yf1{bottom:44.460000px;}
.y7a{bottom:45.120000px;}
.y2{bottom:58.320000px;}
.y37{bottom:93.960000px;}
.y9f{bottom:95.040000px;}
.yea{bottom:103.320000px;}
.y6f{bottom:105.480000px;}
.y36{bottom:113.400000px;}
.y9e{bottom:114.480000px;}
.y11c{bottom:115.200000px;}
.y143{bottom:122.040000px;}
.ye9{bottom:122.400000px;}
.y6e{bottom:124.920000px;}
.y35{bottom:132.480000px;}
.y9d{bottom:133.560000px;}
.y11b{bottom:134.280000px;}
.ye8{bottom:141.480000px;}
.y6d{bottom:144.000000px;}
.y34{bottom:151.560000px;}
.y9c{bottom:152.640000px;}
.y11a{bottom:153.720000px;}
.y142{bottom:160.560000px;}
.ye7{bottom:160.920000px;}
.y6c{bottom:163.440000px;}
.y33{bottom:171.000000px;}
.y9b{bottom:172.080000px;}
.y119{bottom:172.800000px;}
.y141{bottom:179.640000px;}
.ye6{bottom:180.000000px;}
.y6b{bottom:182.520000px;}
.y32{bottom:190.080000px;}
.y9a{bottom:191.160000px;}
.y118{bottom:191.880000px;}
.y140{bottom:199.080000px;}
.ye5{bottom:199.440000px;}
.y6a{bottom:201.600000px;}
.y31{bottom:209.520000px;}
.y99{bottom:210.600000px;}
.y117{bottom:211.320000px;}
.y13f{bottom:218.160000px;}
.ye4{bottom:218.520000px;}
.y69{bottom:221.040000px;}
.y30{bottom:228.600000px;}
.y98{bottom:229.680000px;}
.y116{bottom:230.400000px;}
.ye3{bottom:237.600000px;}
.y68{bottom:240.120000px;}
.y2f{bottom:247.680000px;}
.y97{bottom:249.120000px;}
.y115{bottom:249.840000px;}
.y13e{bottom:256.680000px;}
.ye2{bottom:257.040000px;}
.y67{bottom:259.560000px;}
.y2e{bottom:267.120000px;}
.y96{bottom:268.200000px;}
.y114{bottom:268.920000px;}
.y13d{bottom:275.760000px;}
.ye1{bottom:276.120000px;}
.y66{bottom:278.640000px;}
.y2d{bottom:286.200000px;}
.y95{bottom:287.280000px;}
.y113{bottom:288.000000px;}
.y13c{bottom:295.200000px;}
.ye0{bottom:295.560000px;}
.y65{bottom:297.720000px;}
.y2c{bottom:305.640000px;}
.y94{bottom:306.720000px;}
.y112{bottom:307.440000px;}
.y13b{bottom:314.280000px;}
.ydf{bottom:314.640000px;}
.y64{bottom:317.160000px;}
.y2b{bottom:324.720000px;}
.y93{bottom:325.800000px;}
.y111{bottom:326.520000px;}
.y13a{bottom:333.720000px;}
.yde{bottom:334.080000px;}
.y63{bottom:336.240000px;}
.y2a{bottom:343.800000px;}
.y92{bottom:345.240000px;}
.y110{bottom:345.960000px;}
.y139{bottom:352.800000px;}
.ydd{bottom:353.160000px;}
.y62{bottom:355.680000px;}
.y29{bottom:363.240000px;}
.y91{bottom:364.320000px;}
.y10f{bottom:365.040000px;}
.y138{bottom:371.880000px;}
.ydc{bottom:372.240000px;}
.y61{bottom:374.760000px;}
.y28{bottom:382.320000px;}
.y90{bottom:383.400000px;}
.y10e{bottom:384.120000px;}
.yda{bottom:387.000000px;}
.y137{bottom:391.320000px;}
.y60{bottom:394.200000px;}
.y27{bottom:401.760000px;}
.y8f{bottom:402.840000px;}
.y10d{bottom:403.560000px;}
.y136{bottom:410.400000px;}
.y5f{bottom:413.280000px;}
.y26{bottom:420.840000px;}
.y8e{bottom:421.920000px;}
.y10c{bottom:422.640000px;}
.yd6{bottom:426.000000px;}
.y135{bottom:429.840000px;}
.y5e{bottom:432.360000px;}
.y25{bottom:440.280000px;}
.y8d{bottom:441.360000px;}
.y10b{bottom:442.080000px;}
.y134{bottom:448.920000px;}
.y5d{bottom:451.800000px;}
.y24{bottom:459.360000px;}
.y8c{bottom:460.440000px;}
.y10a{bottom:461.160000px;}
.yd3{bottom:465.000000px;}
.y133{bottom:468.360000px;}
.y5c{bottom:470.880000px;}
.y84{bottom:475.500000px;}
.y23{bottom:478.440000px;}
.y109{bottom:480.240000px;}
.y132{bottom:487.440000px;}
.y5b{bottom:490.320000px;}
.y89{bottom:495.000000px;}
.y22{bottom:497.880000px;}
.y108{bottom:499.680000px;}
.yd1{bottom:504.000000px;}
.y131{bottom:506.520000px;}
.y5a{bottom:509.400000px;}
.y88{bottom:514.500000px;}
.y21{bottom:516.960000px;}
.y107{bottom:518.760000px;}
.ycf{bottom:525.000000px;}
.y130{bottom:525.960000px;}
.y59{bottom:528.480000px;}
.y86{bottom:535.500000px;}
.y20{bottom:536.400000px;}
.y106{bottom:538.200000px;}
.ycc{bottom:544.500000px;}
.y12f{bottom:545.040000px;}
.y58{bottom:547.920000px;}
.y79{bottom:555.000000px;}
.y1f{bottom:555.480000px;}
.y105{bottom:557.280000px;}
.y12e{bottom:564.480000px;}
.ycb{bottom:565.500000px;}
.y57{bottom:567.000000px;}
.y81{bottom:574.500000px;}
.y1e{bottom:574.560000px;}
.y104{bottom:576.360000px;}
.y12d{bottom:583.560000px;}
.y56{bottom:586.440000px;}
.yc8{bottom:586.500000px;}
.y1d{bottom:594.000000px;}
.y7f{bottom:595.500000px;}
.y103{bottom:595.800000px;}
.y12c{bottom:602.640000px;}
.y55{bottom:605.520000px;}
.y1c{bottom:613.080000px;}
.y102{bottom:614.880000px;}
.y7d{bottom:615.000000px;}
.y12b{bottom:622.080000px;}
.y54{bottom:624.600000px;}
.yc6{bottom:625.500000px;}
.y1b{bottom:632.520000px;}
.y101{bottom:634.320000px;}
.y7b{bottom:634.500000px;}
.y12a{bottom:641.160000px;}
.y53{bottom:644.040000px;}
.yc3{bottom:645.000000px;}
.y1a{bottom:651.600000px;}
.y100{bottom:653.400000px;}
.y72{bottom:654.000000px;}
.y129{bottom:660.600000px;}
.y52{bottom:663.120000px;}
.y19{bottom:670.680000px;}
.yff{bottom:672.840000px;}
.y76{bottom:675.000000px;}
.yc1{bottom:679.500000px;}
.y128{bottom:679.680000px;}
.y51{bottom:682.560000px;}
.yfd{bottom:687.000000px;}
.y18{bottom:690.120000px;}
.y74{bottom:694.500000px;}
.y127{bottom:698.760000px;}
.ybe{bottom:700.500000px;}
.y50{bottom:701.640000px;}
.y17{bottom:709.200000px;}
.y70{bottom:715.500000px;}
.y126{bottom:718.200000px;}
.y4f{bottom:720.720000px;}
.ybb{bottom:724.500000px;}
.yfc{bottom:726.000000px;}
.y16{bottom:728.640000px;}
.y125{bottom:737.280000px;}
.y4e{bottom:740.160000px;}
.yf9{bottom:747.000000px;}
.y15{bottom:747.720000px;}
.yb8{bottom:751.500000px;}
.y124{bottom:756.720000px;}
.y4d{bottom:759.240000px;}
.y14{bottom:766.800000px;}
.y123{bottom:775.800000px;}
.y4c{bottom:778.680000px;}
.yf8{bottom:786.000000px;}
.y13{bottom:786.240000px;}
.yb5{bottom:790.500000px;}
.y122{bottom:794.880000px;}
.y4b{bottom:797.760000px;}
.y12{bottom:810.720000px;}
.y121{bottom:814.320000px;}
.y4a{bottom:816.840000px;}
.yb3{bottom:819.000000px;}
.yf5{bottom:825.000000px;}
.y11{bottom:830.160000px;}
.y120{bottom:833.400000px;}
.y49{bottom:836.280000px;}
.yaf{bottom:838.500000px;}
.y10{bottom:849.240000px;}
.y11f{bottom:852.840000px;}
.y48{bottom:855.360000px;}
.yf4{bottom:864.000000px;}
.yf{bottom:868.320000px;}
.y11e{bottom:871.920000px;}
.y47{bottom:874.800000px;}
.ye{bottom:883.080000px;}
.y11d{bottom:891.360000px;}
.y46{bottom:893.880000px;}
.yac{bottom:897.000000px;}
.yd{bottom:902.520000px;}
.yf3{bottom:903.000000px;}
.y45{bottom:912.960000px;}
.yc{bottom:921.600000px;}
.yf0{bottom:922.500000px;}
.y44{bottom:932.400000px;}
.yb{bottom:941.040000px;}
.y43{bottom:951.480000px;}
.ya9{bottom:955.500000px;}
.ya{bottom:960.120000px;}
.y42{bottom:970.920000px;}
.y9{bottom:979.560000px;}
.ya6{bottom:981.000000px;}
.y41{bottom:990.000000px;}
.y8{bottom:999.720000px;}
.yed{bottom:1002.000000px;}
.y40{bottom:1009.440000px;}
.ya3{bottom:1020.000000px;}
.y7{bottom:1024.920000px;}
.y3f{bottom:1028.520000px;}
.ya0{bottom:1041.000000px;}
.y3e{bottom:1047.600000px;}
.y6{bottom:1049.760000px;}
.yeb{bottom:1060.500000px;}
.y3d{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y3c{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.y3{bottom:1103.040000px;}
.y3b{bottom:1105.560000px;}
.y3a{bottom:1124.640000px;}
.y39{bottom:1143.720000px;}
.y38{bottom:1163.160000px;}
.y1{bottom:1193.760000px;}
.h8{height:19.500000px;}
.ha{height:21.000000px;}
.he{height:22.500000px;}
.hf{height:25.500000px;}
.h13{height:27.000000px;}
.h6{height:27.833203px;}
.h11{height:28.500000px;}
.h14{height:36.000000px;}
.h12{height:39.000000px;}
.hd{height:40.500000px;}
.h7{height:43.312500px;}
.h3{height:44.055000px;}
.h2{height:45.478125px;}
.h16{height:47.988281px;}
.h5{height:49.433203px;}
.h10{height:58.500000px;}
.h15{height:60.000000px;}
.h9{height:61.500000px;}
.h4{height:61.987500px;}
.hc{height:79.500000px;}
.hb{height:100.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:57.000000px;}
.w9{width:66.000000px;}
.w10{width:73.500000px;}
.w8{width:75.000000px;}
.wc{width:76.500000px;}
.w11{width:78.000000px;}
.wb{width:79.500000px;}
.w2{width:82.500000px;}
.wa{width:96.000000px;}
.wf{width:103.500000px;}
.w5{width:151.500000px;}
.w4{width:157.500000px;}
.w3{width:177.000000px;}
.we{width:187.500000px;}
.w7{width:204.000000px;}
.w12{width:243.000000px;}
.wd{width:259.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x10{left:8.099856px;}
.x2f{left:9.120000px;}
.x37{left:18.141480px;}
.x2a{left:19.253556px;}
.x29{left:21.496440px;}
.x26{left:23.425440px;}
.x2b{left:24.469680px;}
.x2c{left:26.367480px;}
.x27{left:28.461000px;}
.x36{left:31.812240px;}
.x28{left:34.465680px;}
.x34{left:35.803560px;}
.x18{left:37.333368px;}
.x16{left:40.909440px;}
.x1c{left:45.910740px;}
.x14{left:49.780560px;}
.x35{left:55.689696px;}
.x12{left:60.737916px;}
.x1{left:62.009748px;}
.x1b{left:64.533120px;}
.x1a{left:66.972360px;}
.x1e{left:68.524440px;}
.x1d{left:70.963680px;}
.x19{left:76.722672px;}
.xf{left:84.959856px;}
.x5{left:104.181156px;}
.x4{left:106.184700px;}
.x1f{left:141.000000px;}
.x6{left:163.735848px;}
.x11{left:168.000000px;}
.x3{left:181.064592px;}
.x2d{left:327.000000px;}
.x13{left:343.500000px;}
.x20{left:345.000000px;}
.x2e{left:402.000000px;}
.x21{left:420.000000px;}
.x2{left:442.885680px;}
.x30{left:480.000000px;}
.x22{left:484.500000px;}
.x15{left:501.000000px;}
.x31{left:553.500000px;}
.x23{left:558.000000px;}
.xb{left:574.515000px;}
.xe{left:600.841800px;}
.xd{left:604.402560px;}
.xc{left:605.589480px;}
.xa{left:624.562200px;}
.x9{left:640.927440px;}
.x8{left:642.080880px;}
.x17{left:651.000000px;}
.x24{left:654.000000px;}
.x32{left:657.000000px;}
.x7{left:679.656240px;}
.x33{left:730.500000px;}
.x25{left:732.000000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls1f{letter-spacing:-0.304128pt;}
.ls23{letter-spacing:-0.275968pt;}
.ls14{letter-spacing:-0.264704pt;}
.ls24{letter-spacing:-0.236544pt;}
.ls26{letter-spacing:-0.230912pt;}
.ls11{letter-spacing:-0.225280pt;}
.ls27{letter-spacing:-0.219648pt;}
.lsf{letter-spacing:-0.208384pt;}
.ls28{letter-spacing:-0.202752pt;}
.ls12{letter-spacing:-0.197120pt;}
.ls18{letter-spacing:-0.191488pt;}
.ls1b{letter-spacing:-0.185856pt;}
.ls20{letter-spacing:-0.180224pt;}
.ls9{letter-spacing:-0.174592pt;}
.ls8{letter-spacing:-0.168960pt;}
.ls21{letter-spacing:-0.163328pt;}
.ls22{letter-spacing:-0.157696pt;}
.ls13{letter-spacing:-0.152064pt;}
.lsa{letter-spacing:-0.146432pt;}
.lsd{letter-spacing:-0.140800pt;}
.lse{letter-spacing:-0.135168pt;}
.ls17{letter-spacing:-0.129536pt;}
.ls6{letter-spacing:-0.118272pt;}
.ls25{letter-spacing:-0.112640pt;}
.ls15{letter-spacing:-0.107008pt;}
.ls1a{letter-spacing:-0.090112pt;}
.ls1c{letter-spacing:-0.084480pt;}
.ls29{letter-spacing:-0.078848pt;}
.ls19{letter-spacing:-0.056320pt;}
.ls16{letter-spacing:-0.045056pt;}
.ls2d{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.051200pt;}
.ls10{letter-spacing:0.100224pt;}
.ls3{letter-spacing:0.102400pt;}
.ls2{letter-spacing:0.151808pt;}
.lsb{letter-spacing:0.237568pt;}
.lsc{letter-spacing:0.289536pt;}
.ls1d{letter-spacing:1.472256pt;}
.ls5{letter-spacing:1.789440pt;}
.ls2c{letter-spacing:5.681920pt;}
.ls2a{letter-spacing:6.487680pt;}
.ls2e{letter-spacing:11.477504pt;}
.ls2b{letter-spacing:11.961728pt;}
.ls1e{letter-spacing:61.286016pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls0{letter-spacing:1782.311040pt;}
.ws3{word-spacing:-18.797568pt;}
.ws1{word-spacing:-12.728320pt;}
.ws9{word-spacing:-12.683264pt;}
.ws14{word-spacing:-12.672000pt;}
.ws16{word-spacing:-12.649472pt;}
.ws6{word-spacing:-12.621312pt;}
.ws8{word-spacing:-12.610048pt;}
.ws13{word-spacing:-12.598784pt;}
.ws4{word-spacing:-12.593152pt;}
.ws2{word-spacing:-12.581888pt;}
.wsd{word-spacing:-12.576256pt;}
.ws10{word-spacing:-12.570624pt;}
.ws15{word-spacing:-12.564992pt;}
.ws0{word-spacing:-12.559360pt;}
.wsf{word-spacing:-12.553728pt;}
.ws12{word-spacing:-12.548096pt;}
.wsa{word-spacing:-12.542464pt;}
.ws5{word-spacing:-12.531200pt;}
.ws17{word-spacing:-12.519936pt;}
.ws11{word-spacing:-12.508672pt;}
.wsc{word-spacing:-12.491776pt;}
.wsb{word-spacing:-12.463616pt;}
.wse{word-spacing:-12.452352pt;}
.ws7{word-spacing:0.000000pt;}
.ws18{word-spacing:0.022144pt;}
._27{margin-left:-79.339008pt;}
._15{margin-left:-3.942400pt;}
._7{margin-left:-3.041280pt;}
._8{margin-left:-2.118400pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._3{width:1.971200pt;}
._4{width:2.890240pt;}
._5{width:4.167680pt;}
._6{width:5.181440pt;}
._a{width:6.195200pt;}
._e{width:7.096320pt;}
._c{width:8.053760pt;}
._b{width:9.180160pt;}
._9{width:10.137600pt;}
._f{width:11.196416pt;}
._d{width:13.685760pt;}
._17{width:14.924800pt;}
._16{width:15.882240pt;}
._13{width:16.783360pt;}
._14{width:17.684480pt;}
._10{width:18.734336pt;}
._11{width:19.689216pt;}
._25{width:21.176320pt;}
._24{width:22.190080pt;}
._12{width:25.456640pt;}
._19{width:40.325120pt;}
._1c{width:47.308800pt;}
._18{width:51.701760pt;}
._1b{width:56.376320pt;}
._20{width:61.050880pt;}
._26{width:65.290880pt;}
._1f{width:67.471360pt;}
._1a{width:72.596480pt;}
._21{width:80.368640pt;}
._22{width:126.382080pt;}
._23{width:137.758720pt;}
._1e{width:153.753600pt;}
._1d{width:174.028800pt;}
._1{width:2203.165184pt;}
.fs2{font-size:37.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:4.000000pt;}
.y80{bottom:4.106667pt;}
.yb4{bottom:4.160000pt;}
.y8b{bottom:4.213333pt;}
.y87{bottom:4.320000pt;}
.yd0{bottom:4.373333pt;}
.yb2{bottom:4.426667pt;}
.y77{bottom:4.480000pt;}
.y83{bottom:4.586667pt;}
.yc7{bottom:4.640000pt;}
.y7e{bottom:4.693333pt;}
.y8a{bottom:4.800000pt;}
.y7c{bottom:4.960000pt;}
.yd8{bottom:5.013333pt;}
.y75{bottom:5.066667pt;}
.y82{bottom:5.173333pt;}
.ya2{bottom:5.226667pt;}
.yc2{bottom:5.280000pt;}
.ya5{bottom:5.333333pt;}
.yd2{bottom:5.440000pt;}
.y78{bottom:5.546667pt;}
.yce{bottom:5.600000pt;}
.ycd{bottom:6.240000pt;}
.ya4{bottom:6.293333pt;}
.yc0{bottom:6.773333pt;}
.yab{bottom:6.986667pt;}
.ybd{bottom:7.840000pt;}
.yb7{bottom:8.053333pt;}
.ybf{bottom:9.013333pt;}
.yaa{bottom:9.546667pt;}
.ybc{bottom:10.400000pt;}
.yc5{bottom:11.626667pt;}
.yb6{bottom:11.893333pt;}
.yba{bottom:12.640000pt;}
.yfb{bottom:12.800000pt;}
.yef{bottom:13.013333pt;}
.yca{bottom:13.066667pt;}
.ya8{bottom:13.120000pt;}
.yf7{bottom:13.226667pt;}
.yd9{bottom:13.333333pt;}
.ydb{bottom:13.440000pt;}
.yd5{bottom:13.546667pt;}
.yfe{bottom:13.653333pt;}
.yc4{bottom:18.346667pt;}
.yb9{bottom:21.280000pt;}
.yc9{bottom:21.386667pt;}
.yfa{bottom:21.440000pt;}
.yae{bottom:21.546667pt;}
.yee{bottom:21.653333pt;}
.yb1{bottom:21.706667pt;}
.ya7{bottom:21.760000pt;}
.yf6{bottom:21.866667pt;}
.yd7{bottom:21.973333pt;}
.yec{bottom:22.133333pt;}
.yd4{bottom:22.186667pt;}
.ya1{bottom:22.506667pt;}
.yf2{bottom:22.560000pt;}
.y73{bottom:23.146667pt;}
.y85{bottom:31.093333pt;}
.yb0{bottom:38.666667pt;}
.yad{bottom:38.826667pt;}
.yf1{bottom:39.520000pt;}
.y7a{bottom:40.106667pt;}
.y2{bottom:51.840000pt;}
.y37{bottom:83.520000pt;}
.y9f{bottom:84.480000pt;}
.yea{bottom:91.840000pt;}
.y6f{bottom:93.760000pt;}
.y36{bottom:100.800000pt;}
.y9e{bottom:101.760000pt;}
.y11c{bottom:102.400000pt;}
.y143{bottom:108.480000pt;}
.ye9{bottom:108.800000pt;}
.y6e{bottom:111.040000pt;}
.y35{bottom:117.760000pt;}
.y9d{bottom:118.720000pt;}
.y11b{bottom:119.360000pt;}
.ye8{bottom:125.760000pt;}
.y6d{bottom:128.000000pt;}
.y34{bottom:134.720000pt;}
.y9c{bottom:135.680000pt;}
.y11a{bottom:136.640000pt;}
.y142{bottom:142.720000pt;}
.ye7{bottom:143.040000pt;}
.y6c{bottom:145.280000pt;}
.y33{bottom:152.000000pt;}
.y9b{bottom:152.960000pt;}
.y119{bottom:153.600000pt;}
.y141{bottom:159.680000pt;}
.ye6{bottom:160.000000pt;}
.y6b{bottom:162.240000pt;}
.y32{bottom:168.960000pt;}
.y9a{bottom:169.920000pt;}
.y118{bottom:170.560000pt;}
.y140{bottom:176.960000pt;}
.ye5{bottom:177.280000pt;}
.y6a{bottom:179.200000pt;}
.y31{bottom:186.240000pt;}
.y99{bottom:187.200000pt;}
.y117{bottom:187.840000pt;}
.y13f{bottom:193.920000pt;}
.ye4{bottom:194.240000pt;}
.y69{bottom:196.480000pt;}
.y30{bottom:203.200000pt;}
.y98{bottom:204.160000pt;}
.y116{bottom:204.800000pt;}
.ye3{bottom:211.200000pt;}
.y68{bottom:213.440000pt;}
.y2f{bottom:220.160000pt;}
.y97{bottom:221.440000pt;}
.y115{bottom:222.080000pt;}
.y13e{bottom:228.160000pt;}
.ye2{bottom:228.480000pt;}
.y67{bottom:230.720000pt;}
.y2e{bottom:237.440000pt;}
.y96{bottom:238.400000pt;}
.y114{bottom:239.040000pt;}
.y13d{bottom:245.120000pt;}
.ye1{bottom:245.440000pt;}
.y66{bottom:247.680000pt;}
.y2d{bottom:254.400000pt;}
.y95{bottom:255.360000pt;}
.y113{bottom:256.000000pt;}
.y13c{bottom:262.400000pt;}
.ye0{bottom:262.720000pt;}
.y65{bottom:264.640000pt;}
.y2c{bottom:271.680000pt;}
.y94{bottom:272.640000pt;}
.y112{bottom:273.280000pt;}
.y13b{bottom:279.360000pt;}
.ydf{bottom:279.680000pt;}
.y64{bottom:281.920000pt;}
.y2b{bottom:288.640000pt;}
.y93{bottom:289.600000pt;}
.y111{bottom:290.240000pt;}
.y13a{bottom:296.640000pt;}
.yde{bottom:296.960000pt;}
.y63{bottom:298.880000pt;}
.y2a{bottom:305.600000pt;}
.y92{bottom:306.880000pt;}
.y110{bottom:307.520000pt;}
.y139{bottom:313.600000pt;}
.ydd{bottom:313.920000pt;}
.y62{bottom:316.160000pt;}
.y29{bottom:322.880000pt;}
.y91{bottom:323.840000pt;}
.y10f{bottom:324.480000pt;}
.y138{bottom:330.560000pt;}
.ydc{bottom:330.880000pt;}
.y61{bottom:333.120000pt;}
.y28{bottom:339.840000pt;}
.y90{bottom:340.800000pt;}
.y10e{bottom:341.440000pt;}
.yda{bottom:344.000000pt;}
.y137{bottom:347.840000pt;}
.y60{bottom:350.400000pt;}
.y27{bottom:357.120000pt;}
.y8f{bottom:358.080000pt;}
.y10d{bottom:358.720000pt;}
.y136{bottom:364.800000pt;}
.y5f{bottom:367.360000pt;}
.y26{bottom:374.080000pt;}
.y8e{bottom:375.040000pt;}
.y10c{bottom:375.680000pt;}
.yd6{bottom:378.666667pt;}
.y135{bottom:382.080000pt;}
.y5e{bottom:384.320000pt;}
.y25{bottom:391.360000pt;}
.y8d{bottom:392.320000pt;}
.y10b{bottom:392.960000pt;}
.y134{bottom:399.040000pt;}
.y5d{bottom:401.600000pt;}
.y24{bottom:408.320000pt;}
.y8c{bottom:409.280000pt;}
.y10a{bottom:409.920000pt;}
.yd3{bottom:413.333333pt;}
.y133{bottom:416.320000pt;}
.y5c{bottom:418.560000pt;}
.y84{bottom:422.666667pt;}
.y23{bottom:425.280000pt;}
.y109{bottom:426.880000pt;}
.y132{bottom:433.280000pt;}
.y5b{bottom:435.840000pt;}
.y89{bottom:440.000000pt;}
.y22{bottom:442.560000pt;}
.y108{bottom:444.160000pt;}
.yd1{bottom:448.000000pt;}
.y131{bottom:450.240000pt;}
.y5a{bottom:452.800000pt;}
.y88{bottom:457.333333pt;}
.y21{bottom:459.520000pt;}
.y107{bottom:461.120000pt;}
.ycf{bottom:466.666667pt;}
.y130{bottom:467.520000pt;}
.y59{bottom:469.760000pt;}
.y86{bottom:476.000000pt;}
.y20{bottom:476.800000pt;}
.y106{bottom:478.400000pt;}
.ycc{bottom:484.000000pt;}
.y12f{bottom:484.480000pt;}
.y58{bottom:487.040000pt;}
.y79{bottom:493.333333pt;}
.y1f{bottom:493.760000pt;}
.y105{bottom:495.360000pt;}
.y12e{bottom:501.760000pt;}
.ycb{bottom:502.666667pt;}
.y57{bottom:504.000000pt;}
.y81{bottom:510.666667pt;}
.y1e{bottom:510.720000pt;}
.y104{bottom:512.320000pt;}
.y12d{bottom:518.720000pt;}
.y56{bottom:521.280000pt;}
.yc8{bottom:521.333333pt;}
.y1d{bottom:528.000000pt;}
.y7f{bottom:529.333333pt;}
.y103{bottom:529.600000pt;}
.y12c{bottom:535.680000pt;}
.y55{bottom:538.240000pt;}
.y1c{bottom:544.960000pt;}
.y102{bottom:546.560000pt;}
.y7d{bottom:546.666667pt;}
.y12b{bottom:552.960000pt;}
.y54{bottom:555.200000pt;}
.yc6{bottom:556.000000pt;}
.y1b{bottom:562.240000pt;}
.y101{bottom:563.840000pt;}
.y7b{bottom:564.000000pt;}
.y12a{bottom:569.920000pt;}
.y53{bottom:572.480000pt;}
.yc3{bottom:573.333333pt;}
.y1a{bottom:579.200000pt;}
.y100{bottom:580.800000pt;}
.y72{bottom:581.333333pt;}
.y129{bottom:587.200000pt;}
.y52{bottom:589.440000pt;}
.y19{bottom:596.160000pt;}
.yff{bottom:598.080000pt;}
.y76{bottom:600.000000pt;}
.yc1{bottom:604.000000pt;}
.y128{bottom:604.160000pt;}
.y51{bottom:606.720000pt;}
.yfd{bottom:610.666667pt;}
.y18{bottom:613.440000pt;}
.y74{bottom:617.333333pt;}
.y127{bottom:621.120000pt;}
.ybe{bottom:622.666667pt;}
.y50{bottom:623.680000pt;}
.y17{bottom:630.400000pt;}
.y70{bottom:636.000000pt;}
.y126{bottom:638.400000pt;}
.y4f{bottom:640.640000pt;}
.ybb{bottom:644.000000pt;}
.yfc{bottom:645.333333pt;}
.y16{bottom:647.680000pt;}
.y125{bottom:655.360000pt;}
.y4e{bottom:657.920000pt;}
.yf9{bottom:664.000000pt;}
.y15{bottom:664.640000pt;}
.yb8{bottom:668.000000pt;}
.y124{bottom:672.640000pt;}
.y4d{bottom:674.880000pt;}
.y14{bottom:681.600000pt;}
.y123{bottom:689.600000pt;}
.y4c{bottom:692.160000pt;}
.yf8{bottom:698.666667pt;}
.y13{bottom:698.880000pt;}
.yb5{bottom:702.666667pt;}
.y122{bottom:706.560000pt;}
.y4b{bottom:709.120000pt;}
.y12{bottom:720.640000pt;}
.y121{bottom:723.840000pt;}
.y4a{bottom:726.080000pt;}
.yb3{bottom:728.000000pt;}
.yf5{bottom:733.333333pt;}
.y11{bottom:737.920000pt;}
.y120{bottom:740.800000pt;}
.y49{bottom:743.360000pt;}
.yaf{bottom:745.333333pt;}
.y10{bottom:754.880000pt;}
.y11f{bottom:758.080000pt;}
.y48{bottom:760.320000pt;}
.yf4{bottom:768.000000pt;}
.yf{bottom:771.840000pt;}
.y11e{bottom:775.040000pt;}
.y47{bottom:777.600000pt;}
.ye{bottom:784.960000pt;}
.y11d{bottom:792.320000pt;}
.y46{bottom:794.560000pt;}
.yac{bottom:797.333333pt;}
.yd{bottom:802.240000pt;}
.yf3{bottom:802.666667pt;}
.y45{bottom:811.520000pt;}
.yc{bottom:819.200000pt;}
.yf0{bottom:820.000000pt;}
.y44{bottom:828.800000pt;}
.yb{bottom:836.480000pt;}
.y43{bottom:845.760000pt;}
.ya9{bottom:849.333333pt;}
.ya{bottom:853.440000pt;}
.y42{bottom:863.040000pt;}
.y9{bottom:870.720000pt;}
.ya6{bottom:872.000000pt;}
.y41{bottom:880.000000pt;}
.y8{bottom:888.640000pt;}
.yed{bottom:890.666667pt;}
.y40{bottom:897.280000pt;}
.ya3{bottom:906.666667pt;}
.y7{bottom:911.040000pt;}
.y3f{bottom:914.240000pt;}
.ya0{bottom:925.333333pt;}
.y3e{bottom:931.200000pt;}
.y6{bottom:933.120000pt;}
.yeb{bottom:942.666667pt;}
.y3d{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y3c{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.y3{bottom:980.480000pt;}
.y3b{bottom:982.720000pt;}
.y3a{bottom:999.680000pt;}
.y39{bottom:1016.640000pt;}
.y38{bottom:1033.920000pt;}
.y1{bottom:1061.120000pt;}
.h8{height:17.333333pt;}
.ha{height:18.666667pt;}
.he{height:20.000000pt;}
.hf{height:22.666667pt;}
.h13{height:24.000000pt;}
.h6{height:24.740625pt;}
.h11{height:25.333333pt;}
.h14{height:32.000000pt;}
.h12{height:34.666667pt;}
.hd{height:36.000000pt;}
.h7{height:38.500000pt;}
.h3{height:39.160000pt;}
.h2{height:40.425000pt;}
.h16{height:42.656250pt;}
.h5{height:43.940625pt;}
.h10{height:52.000000pt;}
.h15{height:53.333333pt;}
.h9{height:54.666667pt;}
.h4{height:55.100000pt;}
.hc{height:70.666667pt;}
.hb{height:89.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:50.666667pt;}
.w9{width:58.666667pt;}
.w10{width:65.333333pt;}
.w8{width:66.666667pt;}
.wc{width:68.000000pt;}
.w11{width:69.333333pt;}
.wb{width:70.666667pt;}
.w2{width:73.333333pt;}
.wa{width:85.333333pt;}
.wf{width:92.000000pt;}
.w5{width:134.666667pt;}
.w4{width:140.000000pt;}
.w3{width:157.333333pt;}
.we{width:166.666667pt;}
.w7{width:181.333333pt;}
.w12{width:216.000000pt;}
.wd{width:230.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x10{left:7.199872pt;}
.x2f{left:8.106667pt;}
.x37{left:16.125760pt;}
.x2a{left:17.114272pt;}
.x29{left:19.107947pt;}
.x26{left:20.822613pt;}
.x2b{left:21.750827pt;}
.x2c{left:23.437760pt;}
.x27{left:25.298667pt;}
.x36{left:28.277547pt;}
.x28{left:30.636160pt;}
.x34{left:31.825387pt;}
.x18{left:33.185216pt;}
.x16{left:36.363947pt;}
.x1c{left:40.809547pt;}
.x14{left:44.249387pt;}
.x35{left:49.501952pt;}
.x12{left:53.989259pt;}
.x1{left:55.119776pt;}
.x1b{left:57.362773pt;}
.x1a{left:59.530987pt;}
.x1e{left:60.910613pt;}
.x1d{left:63.078827pt;}
.x19{left:68.197931pt;}
.xf{left:75.519872pt;}
.x5{left:92.605472pt;}
.x4{left:94.386400pt;}
.x1f{left:125.333333pt;}
.x6{left:145.542976pt;}
.x11{left:149.333333pt;}
.x3{left:160.946304pt;}
.x2d{left:290.666667pt;}
.x13{left:305.333333pt;}
.x20{left:306.666667pt;}
.x2e{left:357.333333pt;}
.x21{left:373.333333pt;}
.x2{left:393.676160pt;}
.x30{left:426.666667pt;}
.x22{left:430.666667pt;}
.x15{left:445.333333pt;}
.x31{left:492.000000pt;}
.x23{left:496.000000pt;}
.xb{left:510.680000pt;}
.xe{left:534.081600pt;}
.xd{left:537.246720pt;}
.xc{left:538.301760pt;}
.xa{left:555.166400pt;}
.x9{left:569.713280pt;}
.x8{left:570.738560pt;}
.x17{left:578.666667pt;}
.x24{left:581.333333pt;}
.x32{left:584.000000pt;}
.x7{left:604.138880pt;}
.x33{left:649.333333pt;}
.x25{left:650.666667pt;}
}




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