
    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_04f86bfb84c3e3dfccf267ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.208008;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_46fec73ab8edaea5fef1094f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7bca86e01ab505a971f2893c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_965fb2511e68ef51f8d9e517.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.096680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6b27d9f32d2abe649f816db6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.096680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7d95ef879ea1623f27800c98.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.208008;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_1dce126b875c25e929775ea3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_213c0d9ab4a697d4572943c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0fdba31025e5735936dc81be.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c1f5eec2160fc5c1da3ea50f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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_04d392d664c850fb2e0b73b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064941;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:-6.120000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.185400px;}
.ls3{letter-spacing:-0.161400px;}
.ls8{letter-spacing:-0.137400px;}
.ls1f{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.112200px;}
.ls6{letter-spacing:-0.097800px;}
.ls1a{letter-spacing:-0.036000px;}
.ls12{letter-spacing:-0.027000px;}
.ls14{letter-spacing:-0.010440px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.033840px;}
.lsc{letter-spacing:0.034560px;}
.ls13{letter-spacing:0.045360px;}
.ls9{letter-spacing:0.052560px;}
.ls2{letter-spacing:0.060000px;}
.ls20{letter-spacing:0.065520px;}
.ls10{letter-spacing:0.087840px;}
.ls19{letter-spacing:0.090000px;}
.ls17{letter-spacing:0.100200px;}
.ls1b{letter-spacing:0.135600px;}
.lsd{letter-spacing:0.174600px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.222600px;}
.ls1c{letter-spacing:0.238800px;}
.ls7{letter-spacing:0.247800px;}
.ls11{letter-spacing:0.266400px;}
.ls16{letter-spacing:0.300000px;}
.ls1d{letter-spacing:0.393600px;}
.ls15{letter-spacing:0.534600px;}
.ls18{letter-spacing:0.540000px;}
.lsf{letter-spacing:1.706400px;}
.ls4{letter-spacing:6.026400px;}
.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;}
}
.ws2{word-spacing:-65.880000px;}
.ws9{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.ws13{word-spacing:-14.732400px;}
.ws8{word-spacing:-14.716200px;}
.ws12{word-spacing:-14.629200px;}
.wsf{word-spacing:-14.593800px;}
.ws0{word-spacing:-14.553600px;}
.ws7{word-spacing:-14.546160px;}
.wse{word-spacing:-14.538960px;}
.wsb{word-spacing:-14.527440px;}
.ws1{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.483160px;}
.wsc{word-spacing:-14.466600px;}
.ws5{word-spacing:-14.395800px;}
.ws14{word-spacing:-14.372400px;}
.ws6{word-spacing:-14.356200px;}
.ws3{word-spacing:-14.332200px;}
.ws10{word-spacing:-11.880000px;}
.ws11{word-spacing:-11.844000px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-4.776120px;}
._5{margin-left:-3.359880px;}
._2{margin-left:-2.191680px;}
._4{margin-left:-1.188840px;}
._0{width:1.124400px;}
._1{width:2.460360px;}
._3{width:4.326000px;}
._6{width:6.060960px;}
._9{width:7.180920px;}
._14{width:8.587080px;}
._e{width:9.608160px;}
._f{width:10.771680px;}
._a{width:11.924280px;}
._b{width:13.015320px;}
._1f{width:14.052000px;}
._1e{width:15.336000px;}
._11{width:16.338240px;}
._17{width:17.919360px;}
._8{width:19.062480px;}
._7{width:20.159280px;}
._c{width:21.674520px;}
._d{width:22.733880px;}
._10{width:24.375600px;}
._1a{width:25.637520px;}
._1b{width:27.568680px;}
._18{width:28.740960px;}
._13{width:30.461160px;}
._12{width:31.966680px;}
._21{width:32.986560px;}
._16{width:34.072680px;}
._1d{width:35.599200px;}
._19{width:36.613560px;}
._25{width:38.210400px;}
._3b{width:39.337200px;}
._3a{width:40.450320px;}
._35{width:42.492600px;}
._34{width:43.612560px;}
._33{width:49.607640px;}
._2e{width:50.661720px;}
._1c{width:52.638120px;}
._2f{width:53.758080px;}
._3c{width:54.812160px;}
._2d{width:61.400160px;}
._2c{width:62.586000px;}
._26{width:65.748240px;}
._2a{width:80.373600px;}
._24{width:97.238880px;}
._38{width:104.749200px;}
._20{width:106.593840px;}
._31{width:110.744280px;}
._30{width:116.926200px;}
._27{width:119.703960px;}
._28{width:120.823920px;}
._22{width:143.759520px;}
._29{width:145.265400px;}
._2b{width:146.588280px;}
._37{width:153.326880px;}
._36{width:154.596240px;}
._32{width:179.918280px;}
._39{width:213.132600px;}
._23{width:427.428720px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:42.120000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.fs1{font-size:155.880000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:18.630000px;}
.y123{bottom:19.890000px;}
.yc3{bottom:21.150000px;}
.y62{bottom:22.320000px;}
.y6a{bottom:22.350000px;}
.y60{bottom:22.410000px;}
.y63{bottom:23.490000px;}
.y65{bottom:36.810000px;}
.y6b{bottom:36.840000px;}
.y5e{bottom:36.900000px;}
.y122{bottom:43.650000px;}
.yc2{bottom:47.520000px;}
.y66{bottom:51.300000px;}
.y69{bottom:51.330000px;}
.y5f{bottom:51.390000px;}
.y3{bottom:57.600000px;}
.y121{bottom:67.320000px;}
.yc1{bottom:73.890000px;}
.y2{bottom:76.950000px;}
.y120{bottom:91.080000px;}
.yc0{bottom:100.260000px;}
.y11f{bottom:114.840000px;}
.yab{bottom:119.250000px;}
.y15a{bottom:121.770000px;}
.yba{bottom:126.720000px;}
.ybf{bottom:126.750000px;}
.ycf{bottom:127.710000px;}
.yeb{bottom:127.800000px;}
.y103{bottom:128.250000px;}
.y71{bottom:133.200000px;}
.y11e{bottom:138.600000px;}
.y3a{bottom:140.130000px;}
.y17c{bottom:141.750000px;}
.y1c{bottom:142.290000px;}
.y127{bottom:144.270000px;}
.y141{bottom:144.810000px;}
.yaa{bottom:148.320000px;}
.y159{bottom:150.750000px;}
.yb9{bottom:155.820000px;}
.yce{bottom:156.720000px;}
.yea{bottom:156.900000px;}
.y102{bottom:157.350000px;}
.y58{bottom:158.340000px;}
.y169{bottom:161.850000px;}
.y11d{bottom:162.270000px;}
.y8d{bottom:165.090000px;}
.y17b{bottom:170.850000px;}
.y39{bottom:171.210000px;}
.y1b{bottom:171.390000px;}
.y126{bottom:173.280000px;}
.y140{bottom:173.820000px;}
.ya9{bottom:177.330000px;}
.y158{bottom:179.850000px;}
.yb8{bottom:184.800000px;}
.ycd{bottom:185.700000px;}
.y11c{bottom:186.030000px;}
.y101{bottom:186.330000px;}
.y57{bottom:187.320000px;}
.y18b{bottom:188.850000px;}
.y168{bottom:190.830000px;}
.y8c{bottom:194.070000px;}
.ye9{bottom:194.880000px;}
.y17a{bottom:199.830000px;}
.y1a{bottom:200.370000px;}
.y38{bottom:202.260000px;}
.y13f{bottom:202.890000px;}
.y157{bottom:208.830000px;}
.y11b{bottom:209.790000px;}
.ya8{bottom:211.530000px;}
.yb7{bottom:213.780000px;}
.ycc{bottom:214.770000px;}
.y70{bottom:215.220000px;}
.y100{bottom:215.400000px;}
.y56{bottom:216.390000px;}
.y18a{bottom:217.830000px;}
.y8b{bottom:223.140000px;}
.ye8{bottom:223.860000px;}
.y112{bottom:224.850000px;}
.y167{bottom:228.900000px;}
.y19{bottom:229.350000px;}
.y125{bottom:231.330000px;}
.y13e{bottom:231.870000px;}
.y37{bottom:233.310000px;}
.y11a{bottom:233.550000px;}
.y179{bottom:237.900000px;}
.yb6{bottom:242.850000px;}
.ycb{bottom:243.750000px;}
.yff{bottom:244.380000px;}
.y55{bottom:245.370000px;}
.y156{bottom:246.900000px;}
.y8a{bottom:252.120000px;}
.ye7{bottom:252.930000px;}
.y119{bottom:257.310000px;}
.y166{bottom:257.880000px;}
.y18{bottom:258.420000px;}
.ya7{bottom:262.830000px;}
.y36{bottom:264.360000px;}
.y178{bottom:266.880000px;}
.y13d{bottom:269.850000px;}
.yb5{bottom:271.830000px;}
.yca{bottom:272.820000px;}
.yfe{bottom:273.360000px;}
.y54{bottom:274.350000px;}
.y124{bottom:274.440000px;}
.y155{bottom:275.880000px;}
.y118{bottom:281.010000px;}
.y89{bottom:281.100000px;}
.ye6{bottom:281.910000px;}
.y189{bottom:284.880000px;}
.y165{bottom:286.860000px;}
.y17{bottom:287.400000px;}
.ya6{bottom:291.900000px;}
.y177{bottom:295.860000px;}
.y6f{bottom:297.300000px;}
.y13c{bottom:298.920000px;}
.yb4{bottom:300.900000px;}
.yc9{bottom:301.800000px;}
.yfd{bottom:302.430000px;}
.y53{bottom:303.420000px;}
.y35{bottom:303.600000px;}
.y117{bottom:304.770000px;}
.y154{bottom:304.860000px;}
.y88{bottom:310.170000px;}
.ye5{bottom:310.980000px;}
.y188{bottom:313.860000px;}
.y16{bottom:316.470000px;}
.ya5{bottom:320.880000px;}
.y164{bottom:324.930000px;}
.y116{bottom:328.530000px;}
.yb3{bottom:329.880000px;}
.yc8{bottom:330.780000px;}
.yfc{bottom:331.410000px;}
.y52{bottom:332.400000px;}
.y34{bottom:332.580000px;}
.y176{bottom:333.930000px;}
.y13b{bottom:336.900000px;}
.y87{bottom:339.150000px;}
.ye4{bottom:339.960000px;}
.y153{bottom:342.930000px;}
.y15{bottom:345.450000px;}
.ya4{bottom:349.860000px;}
.y6e{bottom:350.310000px;}
.y115{bottom:352.290000px;}
.y163{bottom:353.910000px;}
.yb2{bottom:358.860000px;}
.yc7{bottom:359.850000px;}
.yfb{bottom:360.480000px;}
.y51{bottom:361.470000px;}
.y33{bottom:361.560000px;}
.y175{bottom:362.910000px;}
.y13a{bottom:365.970000px;}
.y86{bottom:368.220000px;}
.ye3{bottom:368.940000px;}
.y152{bottom:371.910000px;}
.y14{bottom:374.430000px;}
.y114{bottom:376.050000px;}
.y111{bottom:378.930000px;}
.y162{bottom:382.980000px;}
.ya3{bottom:387.930000px;}
.yc6{bottom:388.830000px;}
.yfa{bottom:389.460000px;}
.y50{bottom:390.450000px;}
.y32{bottom:390.630000px;}
.y174{bottom:391.980000px;}
.y85{bottom:397.200000px;}
.ye2{bottom:398.010000px;}
.y151{bottom:400.980000px;}
.y13{bottom:403.500000px;}
.y139{bottom:403.950000px;}
.y110{bottom:407.910000px;}
.y187{bottom:409.980000px;}
.ya2{bottom:416.910000px;}
.yc5{bottom:417.900000px;}
.yf9{bottom:418.440000px;}
.y4f{bottom:419.430000px;}
.y31{bottom:419.610000px;}
.y161{bottom:420.960000px;}
.y84{bottom:426.180000px;}
.ye1{bottom:426.990000px;}
.y150{bottom:429.960000px;}
.y6d{bottom:432.300000px;}
.y12{bottom:432.480000px;}
.y138{bottom:432.930000px;}
.y10f{bottom:436.980000px;}
.y186{bottom:438.960000px;}
.ya1{bottom:445.980000px;}
.yc4{bottom:446.880000px;}
.y30{bottom:448.680000px;}
.y160{bottom:449.940000px;}
.y4e{bottom:453.630000px;}
.y83{bottom:455.250000px;}
.ye0{bottom:456.060000px;}
.yf8{bottom:456.510000px;}
.y14f{bottom:458.940000px;}
.y11{bottom:461.550000px;}
.y137{bottom:462.000000px;}
.y10e{bottom:465.960000px;}
.y18c{bottom:467.940000px;}
.ybe{bottom:471.540000px;}
.ya0{bottom:474.960000px;}
.y185{bottom:476.940000px;}
.y2f{bottom:477.660000px;}
.y15f{bottom:479.010000px;}
.y4d{bottom:483.150000px;}
.y82{bottom:484.230000px;}
.ydf{bottom:485.040000px;}
.y6c{bottom:485.310000px;}
.yf7{bottom:485.490000px;}
.y173{bottom:488.010000px;}
.y10{bottom:490.530000px;}
.y136{bottom:490.980000px;}
.y10d{bottom:494.940000px;}
.y14e{bottom:497.010000px;}
.y9f{bottom:503.940000px;}
.y184{bottom:506.010000px;}
.y2e{bottom:506.640000px;}
.y81{bottom:513.300000px;}
.yde{bottom:514.020000px;}
.yf6{bottom:514.560000px;}
.y15e{bottom:516.990000px;}
.yf{bottom:519.510000px;}
.y10c{bottom:524.010000px;}
.y14d{bottom:525.990000px;}
.y135{bottom:529.050000px;}
.y9e{bottom:533.010000px;}
.y183{bottom:534.990000px;}
.y4c{bottom:535.260000px;}
.y2d{bottom:535.710000px;}
.y80{bottom:542.280000px;}
.ydd{bottom:543.090000px;}
.yf5{bottom:543.540000px;}
.y15d{bottom:546.060000px;}
.ye{bottom:548.580000px;}
.y10b{bottom:552.990000px;}
.y14c{bottom:555.060000px;}
.y134{bottom:558.030000px;}
.y9d{bottom:561.990000px;}
.y182{bottom:564.060000px;}
.y2c{bottom:564.690000px;}
.y4b{bottom:566.310000px;}
.y68{bottom:567.390000px;}
.y7f{bottom:571.260000px;}
.ydc{bottom:572.070000px;}
.yf4{bottom:572.520000px;}
.y10a{bottom:582.090000px;}
.y15c{bottom:584.070000px;}
.y133{bottom:587.040000px;}
.y9c{bottom:591.090000px;}
.yd{bottom:591.720000px;}
.y14b{bottom:593.070000px;}
.y2b{bottom:593.790000px;}
.y4a{bottom:597.390000px;}
.y7e{bottom:600.360000px;}
.ydb{bottom:601.170000px;}
.yf3{bottom:601.620000px;}
.y181{bottom:602.070000px;}
.y109{bottom:611.070000px;}
.y172{bottom:613.050000px;}
.y132{bottom:616.110000px;}
.y9b{bottom:620.070000px;}
.ybc{bottom:621.510000px;}
.y14a{bottom:622.050000px;}
.y2a{bottom:622.770000px;}
.y49{bottom:628.440000px;}
.y7d{bottom:629.340000px;}
.yda{bottom:630.150000px;}
.yf2{bottom:630.600000px;}
.y180{bottom:631.050000px;}
.yc{bottom:634.020000px;}
.y108{bottom:640.050000px;}
.y171{bottom:642.120000px;}
.y9a{bottom:649.050000px;}
.y67{bottom:649.410000px;}
.y149{bottom:651.120000px;}
.y29{bottom:651.750000px;}
.y131{bottom:654.090000px;}
.yb1{bottom:658.050000px;}
.y7c{bottom:658.410000px;}
.yd9{bottom:659.130000px;}
.y48{bottom:659.490000px;}
.yf1{bottom:659.670000px;}
.y17f{bottom:660.120000px;}
.yb{bottom:672.090000px;}
.y99{bottom:678.120000px;}
.y148{bottom:680.100000px;}
.y28{bottom:680.820000px;}
.y130{bottom:683.160000px;}
.yb0{bottom:687.120000px;}
.y7b{bottom:687.390000px;}
.yd8{bottom:688.200000px;}
.yf0{bottom:688.650000px;}
.y17e{bottom:689.100000px;}
.y47{bottom:690.540000px;}
.ya{bottom:701.070000px;}
.y113{bottom:701.340000px;}
.y98{bottom:707.100000px;}
.y170{bottom:709.170000px;}
.y27{bottom:709.800000px;}
.y12f{bottom:712.140000px;}
.yaf{bottom:716.100000px;}
.y7a{bottom:716.370000px;}
.yd7{bottom:717.180000px;}
.yef{bottom:717.630000px;}
.y147{bottom:718.170000px;}
.y46{bottom:721.590000px;}
.y64{bottom:731.490000px;}
.y97{bottom:736.170000px;}
.y16f{bottom:738.150000px;}
.y26{bottom:738.870000px;}
.y12e{bottom:741.120000px;}
.y9{bottom:744.180000px;}
.yae{bottom:745.170000px;}
.y79{bottom:745.440000px;}
.yd6{bottom:746.250000px;}
.yee{bottom:746.700000px;}
.y146{bottom:747.150000px;}
.y45{bottom:752.640000px;}
.y17d{bottom:756.150000px;}
.y96{bottom:765.150000px;}
.y25{bottom:767.850000px;}
.yad{bottom:774.150000px;}
.y78{bottom:774.420000px;}
.yd5{bottom:775.230000px;}
.yed{bottom:775.680000px;}
.y145{bottom:776.130000px;}
.y12d{bottom:779.190000px;}
.y44{bottom:783.690000px;}
.y15b{bottom:785.130000px;}
.y8{bottom:786.570000px;}
.y95{bottom:794.130000px;}
.y24{bottom:796.830000px;}
.yac{bottom:803.130000px;}
.y77{bottom:803.490000px;}
.yd4{bottom:804.210000px;}
.y16e{bottom:805.200000px;}
.y12c{bottom:808.170000px;}
.yec{bottom:809.880000px;}
.y61{bottom:813.480000px;}
.y144{bottom:814.200000px;}
.y43{bottom:814.740000px;}
.y107{bottom:823.200000px;}
.y7{bottom:824.550000px;}
.y23{bottom:825.900000px;}
.y94{bottom:832.200000px;}
.y76{bottom:832.470000px;}
.yd3{bottom:833.280000px;}
.y16d{bottom:834.180000px;}
.y143{bottom:843.180000px;}
.y42{bottom:845.790000px;}
.y12b{bottom:846.240000px;}
.y106{bottom:852.180000px;}
.y22{bottom:854.880000px;}
.y93{bottom:861.180000px;}
.y75{bottom:861.450000px;}
.yd2{bottom:862.260000px;}
.y16c{bottom:863.250000px;}
.y5d{bottom:866.490000px;}
.y142{bottom:872.250000px;}
.y12a{bottom:875.220000px;}
.y41{bottom:876.840000px;}
.y105{bottom:881.250000px;}
.y21{bottom:889.080000px;}
.y92{bottom:890.250000px;}
.y74{bottom:890.520000px;}
.y6{bottom:890.970000px;}
.yd1{bottom:896.460000px;}
.y16b{bottom:901.230000px;}
.y129{bottom:904.200000px;}
.y40{bottom:907.890000px;}
.y104{bottom:910.230000px;}
.y73{bottom:918.510000px;}
.y91{bottom:919.230000px;}
.yd0{bottom:925.890000px;}
.y16a{bottom:930.210000px;}
.y128{bottom:933.270000px;}
.y3f{bottom:938.940000px;}
.ybb{bottom:939.210000px;}
.y20{bottom:945.510000px;}
.y90{bottom:948.210000px;}
.y5{bottom:962.430000px;}
.y5c{bottom:968.280000px;}
.y3e{bottom:969.990000px;}
.y8f{bottom:977.280000px;}
.y1f{bottom:987.810000px;}
.y5b{bottom:997.290000px;}
.y72{bottom:1000.620000px;}
.y3d{bottom:1001.070000px;}
.y8e{bottom:1006.290000px;}
.y1e{bottom:1016.910000px;}
.y3c{bottom:1032.120000px;}
.y4{bottom:1033.830000px;}
.y5a{bottom:1035.360000px;}
.y1d{bottom:1060.020000px;}
.y3b{bottom:1063.170000px;}
.y59{bottom:1064.340000px;}
.y1{bottom:1118.340000px;}
.h7{height:46.980000px;}
.ha{height:47.070000px;}
.h11{height:53.446289px;}
.h12{height:55.779258px;}
.h6{height:57.838008px;}
.he{height:59.503535px;}
.h1{height:65.204473px;}
.h4{height:70.664062px;}
.h8{height:75.960000px;}
.h9{height:75.990000px;}
.h5{height:76.050000px;}
.hb{height:76.080000px;}
.h3{height:85.886895px;}
.hd{height:149.970000px;}
.h2{height:155.042754px;}
.hc{height:295.380000px;}
.hf{height:378.660000px;}
.h10{height:397.920000px;}
.h0{height:1188.000000px;}
.w4{width:112.500000px;}
.w3{width:140.160000px;}
.w5{width:166.500000px;}
.w2{width:217.650000px;}
.w6{width:648.060000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:1.170000px;}
.xc{left:8.100000px;}
.x1{left:134.999986px;}
.x3{left:136.799986px;}
.x4{left:169.679986px;}
.xe{left:177.599986px;}
.x6{left:304.499986px;}
.x5{left:321.689986px;}
.x8{left:357.150000px;}
.xd{left:449.849986px;}
.x2{left:454.439986px;}
.x9{left:499.560000px;}
.xa{left:614.310000px;}
.xb{left:644.910000px;}
@media print{
.v1{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.164800pt;}
.ls3{letter-spacing:-0.143467pt;}
.ls8{letter-spacing:-0.122133pt;}
.ls1f{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.099733pt;}
.ls6{letter-spacing:-0.086933pt;}
.ls1a{letter-spacing:-0.032000pt;}
.ls12{letter-spacing:-0.024000pt;}
.ls14{letter-spacing:-0.009280pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.030080pt;}
.lsc{letter-spacing:0.030720pt;}
.ls13{letter-spacing:0.040320pt;}
.ls9{letter-spacing:0.046720pt;}
.ls2{letter-spacing:0.053333pt;}
.ls20{letter-spacing:0.058240pt;}
.ls10{letter-spacing:0.078080pt;}
.ls19{letter-spacing:0.080000pt;}
.ls17{letter-spacing:0.089067pt;}
.ls1b{letter-spacing:0.120533pt;}
.lsd{letter-spacing:0.155200pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.197867pt;}
.ls1c{letter-spacing:0.212267pt;}
.ls7{letter-spacing:0.220267pt;}
.ls11{letter-spacing:0.236800pt;}
.ls16{letter-spacing:0.266667pt;}
.ls1d{letter-spacing:0.349867pt;}
.ls15{letter-spacing:0.475200pt;}
.ls18{letter-spacing:0.480000pt;}
.lsf{letter-spacing:1.516800pt;}
.ls4{letter-spacing:5.356800pt;}
.ws2{word-spacing:-58.560000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws13{word-spacing:-13.095467pt;}
.ws8{word-spacing:-13.081067pt;}
.ws12{word-spacing:-13.003733pt;}
.wsf{word-spacing:-12.972267pt;}
.ws0{word-spacing:-12.936533pt;}
.ws7{word-spacing:-12.929920pt;}
.wse{word-spacing:-12.923520pt;}
.wsb{word-spacing:-12.913280pt;}
.ws1{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.873920pt;}
.wsc{word-spacing:-12.859200pt;}
.ws5{word-spacing:-12.796267pt;}
.ws14{word-spacing:-12.775467pt;}
.ws6{word-spacing:-12.761067pt;}
.ws3{word-spacing:-12.739733pt;}
.ws10{word-spacing:-10.560000pt;}
.ws11{word-spacing:-10.528000pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-4.245440pt;}
._5{margin-left:-2.986560pt;}
._2{margin-left:-1.948160pt;}
._4{margin-left:-1.056747pt;}
._0{width:0.999467pt;}
._1{width:2.186987pt;}
._3{width:3.845333pt;}
._6{width:5.387520pt;}
._9{width:6.383040pt;}
._14{width:7.632960pt;}
._e{width:8.540587pt;}
._f{width:9.574827pt;}
._a{width:10.599360pt;}
._b{width:11.569173pt;}
._1f{width:12.490667pt;}
._1e{width:13.632000pt;}
._11{width:14.522880pt;}
._17{width:15.928320pt;}
._8{width:16.944427pt;}
._7{width:17.919360pt;}
._c{width:19.266240pt;}
._d{width:20.207893pt;}
._10{width:21.667200pt;}
._1a{width:22.788907pt;}
._1b{width:24.505493pt;}
._18{width:25.547520pt;}
._13{width:27.076587pt;}
._12{width:28.414827pt;}
._21{width:29.321387pt;}
._16{width:30.286827pt;}
._1d{width:31.643733pt;}
._19{width:32.545387pt;}
._25{width:33.964800pt;}
._3b{width:34.966400pt;}
._3a{width:35.955840pt;}
._35{width:37.771200pt;}
._34{width:38.766720pt;}
._33{width:44.095680pt;}
._2e{width:45.032640pt;}
._1c{width:46.789440pt;}
._2f{width:47.784960pt;}
._3c{width:48.721920pt;}
._2d{width:54.577920pt;}
._2c{width:55.632000pt;}
._26{width:58.442880pt;}
._2a{width:71.443200pt;}
._24{width:86.434560pt;}
._38{width:93.110400pt;}
._20{width:94.750080pt;}
._31{width:98.439360pt;}
._30{width:103.934400pt;}
._27{width:106.403520pt;}
._28{width:107.399040pt;}
._22{width:127.786240pt;}
._29{width:129.124800pt;}
._2b{width:130.300693pt;}
._37{width:136.290560pt;}
._36{width:137.418880pt;}
._32{width:159.927360pt;}
._39{width:189.451200pt;}
._23{width:379.936640pt;}
.fs6{font-size:37.440000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.fs1{font-size:138.560000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:16.560000pt;}
.y123{bottom:17.680000pt;}
.yc3{bottom:18.800000pt;}
.y62{bottom:19.840000pt;}
.y6a{bottom:19.866667pt;}
.y60{bottom:19.920000pt;}
.y63{bottom:20.880000pt;}
.y65{bottom:32.720000pt;}
.y6b{bottom:32.746667pt;}
.y5e{bottom:32.800000pt;}
.y122{bottom:38.800000pt;}
.yc2{bottom:42.240000pt;}
.y66{bottom:45.600000pt;}
.y69{bottom:45.626667pt;}
.y5f{bottom:45.680000pt;}
.y3{bottom:51.200000pt;}
.y121{bottom:59.840000pt;}
.yc1{bottom:65.680000pt;}
.y2{bottom:68.400000pt;}
.y120{bottom:80.960000pt;}
.yc0{bottom:89.120000pt;}
.y11f{bottom:102.080000pt;}
.yab{bottom:106.000000pt;}
.y15a{bottom:108.240000pt;}
.yba{bottom:112.640000pt;}
.ybf{bottom:112.666667pt;}
.ycf{bottom:113.520000pt;}
.yeb{bottom:113.600000pt;}
.y103{bottom:114.000000pt;}
.y71{bottom:118.400000pt;}
.y11e{bottom:123.200000pt;}
.y3a{bottom:124.560000pt;}
.y17c{bottom:126.000000pt;}
.y1c{bottom:126.480000pt;}
.y127{bottom:128.240000pt;}
.y141{bottom:128.720000pt;}
.yaa{bottom:131.840000pt;}
.y159{bottom:134.000000pt;}
.yb9{bottom:138.506667pt;}
.yce{bottom:139.306667pt;}
.yea{bottom:139.466667pt;}
.y102{bottom:139.866667pt;}
.y58{bottom:140.746667pt;}
.y169{bottom:143.866667pt;}
.y11d{bottom:144.240000pt;}
.y8d{bottom:146.746667pt;}
.y17b{bottom:151.866667pt;}
.y39{bottom:152.186667pt;}
.y1b{bottom:152.346667pt;}
.y126{bottom:154.026667pt;}
.y140{bottom:154.506667pt;}
.ya9{bottom:157.626667pt;}
.y158{bottom:159.866667pt;}
.yb8{bottom:164.266667pt;}
.ycd{bottom:165.066667pt;}
.y11c{bottom:165.360000pt;}
.y101{bottom:165.626667pt;}
.y57{bottom:166.506667pt;}
.y18b{bottom:167.866667pt;}
.y168{bottom:169.626667pt;}
.y8c{bottom:172.506667pt;}
.ye9{bottom:173.226667pt;}
.y17a{bottom:177.626667pt;}
.y1a{bottom:178.106667pt;}
.y38{bottom:179.786667pt;}
.y13f{bottom:180.346667pt;}
.y157{bottom:185.626667pt;}
.y11b{bottom:186.480000pt;}
.ya8{bottom:188.026667pt;}
.yb7{bottom:190.026667pt;}
.ycc{bottom:190.906667pt;}
.y70{bottom:191.306667pt;}
.y100{bottom:191.466667pt;}
.y56{bottom:192.346667pt;}
.y18a{bottom:193.626667pt;}
.y8b{bottom:198.346667pt;}
.ye8{bottom:198.986667pt;}
.y112{bottom:199.866667pt;}
.y167{bottom:203.466667pt;}
.y19{bottom:203.866667pt;}
.y125{bottom:205.626667pt;}
.y13e{bottom:206.106667pt;}
.y37{bottom:207.386667pt;}
.y11a{bottom:207.600000pt;}
.y179{bottom:211.466667pt;}
.yb6{bottom:215.866667pt;}
.ycb{bottom:216.666667pt;}
.yff{bottom:217.226667pt;}
.y55{bottom:218.106667pt;}
.y156{bottom:219.466667pt;}
.y8a{bottom:224.106667pt;}
.ye7{bottom:224.826667pt;}
.y119{bottom:228.720000pt;}
.y166{bottom:229.226667pt;}
.y18{bottom:229.706667pt;}
.ya7{bottom:233.626667pt;}
.y36{bottom:234.986667pt;}
.y178{bottom:237.226667pt;}
.y13d{bottom:239.866667pt;}
.yb5{bottom:241.626667pt;}
.yca{bottom:242.506667pt;}
.yfe{bottom:242.986667pt;}
.y54{bottom:243.866667pt;}
.y124{bottom:243.946667pt;}
.y155{bottom:245.226667pt;}
.y118{bottom:249.786667pt;}
.y89{bottom:249.866667pt;}
.ye6{bottom:250.586667pt;}
.y189{bottom:253.226667pt;}
.y165{bottom:254.986667pt;}
.y17{bottom:255.466667pt;}
.ya6{bottom:259.466667pt;}
.y177{bottom:262.986667pt;}
.y6f{bottom:264.266667pt;}
.y13c{bottom:265.706667pt;}
.yb4{bottom:267.466667pt;}
.yc9{bottom:268.266667pt;}
.yfd{bottom:268.826667pt;}
.y53{bottom:269.706667pt;}
.y35{bottom:269.866667pt;}
.y117{bottom:270.906667pt;}
.y154{bottom:270.986667pt;}
.y88{bottom:275.706667pt;}
.ye5{bottom:276.426667pt;}
.y188{bottom:278.986667pt;}
.y16{bottom:281.306667pt;}
.ya5{bottom:285.226667pt;}
.y164{bottom:288.826667pt;}
.y116{bottom:292.026667pt;}
.yb3{bottom:293.226667pt;}
.yc8{bottom:294.026667pt;}
.yfc{bottom:294.586667pt;}
.y52{bottom:295.466667pt;}
.y34{bottom:295.626667pt;}
.y176{bottom:296.826667pt;}
.y13b{bottom:299.466667pt;}
.y87{bottom:301.466667pt;}
.ye4{bottom:302.186667pt;}
.y153{bottom:304.826667pt;}
.y15{bottom:307.066667pt;}
.ya4{bottom:310.986667pt;}
.y6e{bottom:311.386667pt;}
.y115{bottom:313.146667pt;}
.y163{bottom:314.586667pt;}
.yb2{bottom:318.986667pt;}
.yc7{bottom:319.866667pt;}
.yfb{bottom:320.426667pt;}
.y51{bottom:321.306667pt;}
.y33{bottom:321.386667pt;}
.y175{bottom:322.586667pt;}
.y13a{bottom:325.306667pt;}
.y86{bottom:327.306667pt;}
.ye3{bottom:327.946667pt;}
.y152{bottom:330.586667pt;}
.y14{bottom:332.826667pt;}
.y114{bottom:334.266667pt;}
.y111{bottom:336.826667pt;}
.y162{bottom:340.426667pt;}
.ya3{bottom:344.826667pt;}
.yc6{bottom:345.626667pt;}
.yfa{bottom:346.186667pt;}
.y50{bottom:347.066667pt;}
.y32{bottom:347.226667pt;}
.y174{bottom:348.426667pt;}
.y85{bottom:353.066667pt;}
.ye2{bottom:353.786667pt;}
.y151{bottom:356.426667pt;}
.y13{bottom:358.666667pt;}
.y139{bottom:359.066667pt;}
.y110{bottom:362.586667pt;}
.y187{bottom:364.426667pt;}
.ya2{bottom:370.586667pt;}
.yc5{bottom:371.466667pt;}
.yf9{bottom:371.946667pt;}
.y4f{bottom:372.826667pt;}
.y31{bottom:372.986667pt;}
.y161{bottom:374.186667pt;}
.y84{bottom:378.826667pt;}
.ye1{bottom:379.546667pt;}
.y150{bottom:382.186667pt;}
.y6d{bottom:384.266667pt;}
.y12{bottom:384.426667pt;}
.y138{bottom:384.826667pt;}
.y10f{bottom:388.426667pt;}
.y186{bottom:390.186667pt;}
.ya1{bottom:396.426667pt;}
.yc4{bottom:397.226667pt;}
.y30{bottom:398.826667pt;}
.y160{bottom:399.946667pt;}
.y4e{bottom:403.226667pt;}
.y83{bottom:404.666667pt;}
.ye0{bottom:405.386667pt;}
.yf8{bottom:405.786667pt;}
.y14f{bottom:407.946667pt;}
.y11{bottom:410.266667pt;}
.y137{bottom:410.666667pt;}
.y10e{bottom:414.186667pt;}
.y18c{bottom:415.946667pt;}
.ybe{bottom:419.146667pt;}
.ya0{bottom:422.186667pt;}
.y185{bottom:423.946667pt;}
.y2f{bottom:424.586667pt;}
.y15f{bottom:425.786667pt;}
.y4d{bottom:429.466667pt;}
.y82{bottom:430.426667pt;}
.ydf{bottom:431.146667pt;}
.y6c{bottom:431.386667pt;}
.yf7{bottom:431.546667pt;}
.y173{bottom:433.786667pt;}
.y10{bottom:436.026667pt;}
.y136{bottom:436.426667pt;}
.y10d{bottom:439.946667pt;}
.y14e{bottom:441.786667pt;}
.y9f{bottom:447.946667pt;}
.y184{bottom:449.786667pt;}
.y2e{bottom:450.346667pt;}
.y81{bottom:456.266667pt;}
.yde{bottom:456.906667pt;}
.yf6{bottom:457.386667pt;}
.y15e{bottom:459.546667pt;}
.yf{bottom:461.786667pt;}
.y10c{bottom:465.786667pt;}
.y14d{bottom:467.546667pt;}
.y135{bottom:470.266667pt;}
.y9e{bottom:473.786667pt;}
.y183{bottom:475.546667pt;}
.y4c{bottom:475.786667pt;}
.y2d{bottom:476.186667pt;}
.y80{bottom:482.026667pt;}
.ydd{bottom:482.746667pt;}
.yf5{bottom:483.146667pt;}
.y15d{bottom:485.386667pt;}
.ye{bottom:487.626667pt;}
.y10b{bottom:491.546667pt;}
.y14c{bottom:493.386667pt;}
.y134{bottom:496.026667pt;}
.y9d{bottom:499.546667pt;}
.y182{bottom:501.386667pt;}
.y2c{bottom:501.946667pt;}
.y4b{bottom:503.386667pt;}
.y68{bottom:504.346667pt;}
.y7f{bottom:507.786667pt;}
.ydc{bottom:508.506667pt;}
.yf4{bottom:508.906667pt;}
.y10a{bottom:517.413333pt;}
.y15c{bottom:519.173333pt;}
.y133{bottom:521.813333pt;}
.y9c{bottom:525.413333pt;}
.yd{bottom:525.973333pt;}
.y14b{bottom:527.173333pt;}
.y2b{bottom:527.813333pt;}
.y4a{bottom:531.013333pt;}
.y7e{bottom:533.653333pt;}
.ydb{bottom:534.373333pt;}
.yf3{bottom:534.773333pt;}
.y181{bottom:535.173333pt;}
.y109{bottom:543.173333pt;}
.y172{bottom:544.933333pt;}
.y132{bottom:547.653333pt;}
.y9b{bottom:551.173333pt;}
.ybc{bottom:552.453333pt;}
.y14a{bottom:552.933333pt;}
.y2a{bottom:553.573333pt;}
.y49{bottom:558.613333pt;}
.y7d{bottom:559.413333pt;}
.yda{bottom:560.133333pt;}
.yf2{bottom:560.533333pt;}
.y180{bottom:560.933333pt;}
.yc{bottom:563.573333pt;}
.y108{bottom:568.933333pt;}
.y171{bottom:570.773333pt;}
.y9a{bottom:576.933333pt;}
.y67{bottom:577.253333pt;}
.y149{bottom:578.773333pt;}
.y29{bottom:579.333333pt;}
.y131{bottom:581.413333pt;}
.yb1{bottom:584.933333pt;}
.y7c{bottom:585.253333pt;}
.yd9{bottom:585.893333pt;}
.y48{bottom:586.213333pt;}
.yf1{bottom:586.373333pt;}
.y17f{bottom:586.773333pt;}
.yb{bottom:597.413333pt;}
.y99{bottom:602.773333pt;}
.y148{bottom:604.533333pt;}
.y28{bottom:605.173333pt;}
.y130{bottom:607.253333pt;}
.yb0{bottom:610.773333pt;}
.y7b{bottom:611.013333pt;}
.yd8{bottom:611.733333pt;}
.yf0{bottom:612.133333pt;}
.y17e{bottom:612.533333pt;}
.y47{bottom:613.813333pt;}
.ya{bottom:623.173333pt;}
.y113{bottom:623.413333pt;}
.y98{bottom:628.533333pt;}
.y170{bottom:630.373333pt;}
.y27{bottom:630.933333pt;}
.y12f{bottom:633.013333pt;}
.yaf{bottom:636.533333pt;}
.y7a{bottom:636.773333pt;}
.yd7{bottom:637.493333pt;}
.yef{bottom:637.893333pt;}
.y147{bottom:638.373333pt;}
.y46{bottom:641.413333pt;}
.y64{bottom:650.213333pt;}
.y97{bottom:654.373333pt;}
.y16f{bottom:656.133333pt;}
.y26{bottom:656.773333pt;}
.y12e{bottom:658.773333pt;}
.y9{bottom:661.493333pt;}
.yae{bottom:662.373333pt;}
.y79{bottom:662.613333pt;}
.yd6{bottom:663.333333pt;}
.yee{bottom:663.733333pt;}
.y146{bottom:664.133333pt;}
.y45{bottom:669.013333pt;}
.y17d{bottom:672.133333pt;}
.y96{bottom:680.133333pt;}
.y25{bottom:682.533333pt;}
.yad{bottom:688.133333pt;}
.y78{bottom:688.373333pt;}
.yd5{bottom:689.093333pt;}
.yed{bottom:689.493333pt;}
.y145{bottom:689.893333pt;}
.y12d{bottom:692.613333pt;}
.y44{bottom:696.613333pt;}
.y15b{bottom:697.893333pt;}
.y8{bottom:699.173333pt;}
.y95{bottom:705.893333pt;}
.y24{bottom:708.293333pt;}
.yac{bottom:713.893333pt;}
.y77{bottom:714.213333pt;}
.yd4{bottom:714.853333pt;}
.y16e{bottom:715.733333pt;}
.y12c{bottom:718.373333pt;}
.yec{bottom:719.893333pt;}
.y61{bottom:723.093333pt;}
.y144{bottom:723.733333pt;}
.y43{bottom:724.213333pt;}
.y107{bottom:731.733333pt;}
.y7{bottom:732.933333pt;}
.y23{bottom:734.133333pt;}
.y94{bottom:739.733333pt;}
.y76{bottom:739.973333pt;}
.yd3{bottom:740.693333pt;}
.y16d{bottom:741.493333pt;}
.y143{bottom:749.493333pt;}
.y42{bottom:751.813333pt;}
.y12b{bottom:752.213333pt;}
.y106{bottom:757.493333pt;}
.y22{bottom:759.893333pt;}
.y93{bottom:765.493333pt;}
.y75{bottom:765.733333pt;}
.yd2{bottom:766.453333pt;}
.y16c{bottom:767.333333pt;}
.y5d{bottom:770.213333pt;}
.y142{bottom:775.333333pt;}
.y12a{bottom:777.973333pt;}
.y41{bottom:779.413333pt;}
.y105{bottom:783.333333pt;}
.y21{bottom:790.293333pt;}
.y92{bottom:791.333333pt;}
.y74{bottom:791.573333pt;}
.y6{bottom:791.973333pt;}
.yd1{bottom:796.853333pt;}
.y16b{bottom:801.093333pt;}
.y129{bottom:803.733333pt;}
.y40{bottom:807.013333pt;}
.y104{bottom:809.093333pt;}
.y73{bottom:816.453333pt;}
.y91{bottom:817.093333pt;}
.yd0{bottom:823.013333pt;}
.y16a{bottom:826.853333pt;}
.y128{bottom:829.573333pt;}
.y3f{bottom:834.613333pt;}
.ybb{bottom:834.853333pt;}
.y20{bottom:840.453333pt;}
.y90{bottom:842.853333pt;}
.y5{bottom:855.493333pt;}
.y5c{bottom:860.693333pt;}
.y3e{bottom:862.213333pt;}
.y8f{bottom:868.693333pt;}
.y1f{bottom:878.053333pt;}
.y5b{bottom:886.480000pt;}
.y72{bottom:889.440000pt;}
.y3d{bottom:889.840000pt;}
.y8e{bottom:894.480000pt;}
.y1e{bottom:903.920000pt;}
.y3c{bottom:917.440000pt;}
.y4{bottom:918.960000pt;}
.y5a{bottom:920.320000pt;}
.y1d{bottom:942.240000pt;}
.y3b{bottom:945.040000pt;}
.y59{bottom:946.080000pt;}
.y1{bottom:994.080000pt;}
.h7{height:41.760000pt;}
.ha{height:41.840000pt;}
.h11{height:47.507812pt;}
.h12{height:49.581562pt;}
.h6{height:51.411562pt;}
.he{height:52.892031pt;}
.h1{height:57.959531pt;}
.h4{height:62.812500pt;}
.h8{height:67.520000pt;}
.h9{height:67.546667pt;}
.h5{height:67.600000pt;}
.hb{height:67.626667pt;}
.h3{height:76.343906pt;}
.hd{height:133.306667pt;}
.h2{height:137.815781pt;}
.hc{height:262.560000pt;}
.hf{height:336.586667pt;}
.h10{height:353.706667pt;}
.h0{height:1056.000000pt;}
.w4{width:100.000000pt;}
.w3{width:124.586667pt;}
.w5{width:148.000000pt;}
.w2{width:193.466667pt;}
.w6{width:576.053333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:1.040000pt;}
.xc{left:7.200000pt;}
.x1{left:119.999988pt;}
.x3{left:121.599988pt;}
.x4{left:150.826655pt;}
.xe{left:157.866655pt;}
.x6{left:270.666655pt;}
.x5{left:285.946655pt;}
.x8{left:317.466667pt;}
.xd{left:399.866655pt;}
.x2{left:403.946655pt;}
.x9{left:444.053333pt;}
.xa{left:546.053333pt;}
.xb{left:573.253333pt;}
}




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