
    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_c3d6475911664def34a520e4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_04188980175fb718b59a2f91.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3eda68fbca025407b245920a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_2d89b5f8c0bfc5365073cfd5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.703613;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_35721bdc509eeb3373d54088.woff')format("woff");}.ff5{font-family:ff5;line-height:0.752441;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_391185f014ea520f91f44e1e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_7dff302dd4461c2ee5a62ee9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d4297d24e56f3e46c6fcaaaf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.927734;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_3d62cca6434b68f387481355.woff')format("woff");}.ff9{font-family:ff9;line-height:0.928223;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_b297523465f30f165f41a2a3.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cd8e7bfcc605c241845928b0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.783203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3432c595662eb9b2392bfdaa.woff')format("woff");}.ffc{font-family:ffc;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2e897b5c456cc14251944953.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fc84fa99953f2256b04d8e5f.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_62526f5a79f417fdf417a4d5.woff')format("woff");}.fff{font-family:fff;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.096000px;}
.ls3{letter-spacing:-6.120000px;}
.ls7{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.864000px;}
.ls8{letter-spacing:33.984000px;}
.ls11{letter-spacing:87.840000px;}
.lsa{letter-spacing:192.240000px;}
.ls10{letter-spacing:197.976000px;}
.lsc{letter-spacing:207.360000px;}
.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:-95.797440px;}
.ws4{word-spacing:-95.760000px;}
.ws7{word-spacing:-21.096000px;}
.ws1{word-spacing:-18.036000px;}
.ws5{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wsb{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.ws9{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.860000px;}
.ws3{word-spacing:-0.095760px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-12.387312px;}
._26{margin-left:-9.362832px;}
._5{margin-left:-8.255520px;}
._6{margin-left:-6.656976px;}
._2{margin-left:-5.468976px;}
._8{margin-left:-4.392000px;}
._3{margin-left:-2.585952px;}
._0{margin-left:-1.515024px;}
._4{width:1.757952px;}
._1e{width:2.805264px;}
._10{width:4.228512px;}
._1{width:5.395584px;}
._17{width:6.497760px;}
._a{width:7.704000px;}
._9{width:8.784000px;}
._12{width:10.224000px;}
._11{width:11.736000px;}
._e{width:12.744000px;}
._b{width:13.752000px;}
._f{width:14.784096px;}
._16{width:16.532496px;}
._13{width:19.944000px;}
._25{width:21.029952px;}
._20{width:22.077072px;}
._14{width:23.760000px;}
._15{width:25.056000px;}
._c{width:26.784000px;}
._d{width:28.080000px;}
._1d{width:29.280096px;}
._1c{width:30.312000px;}
._1f{width:32.070144px;}
._1a{width:33.984000px;}
._1b{width:34.992000px;}
._23{width:36.720000px;}
._24{width:38.100000px;}
._29{width:39.402048px;}
._34{width:40.956000px;}
._21{width:44.607024px;}
._18{width:49.104000px;}
._19{width:50.328000px;}
._22{width:51.600000px;}
._27{width:53.208000px;}
._28{width:54.288000px;}
._2a{width:63.936000px;}
._2b{width:66.264096px;}
._33{width:78.048000px;}
._36{width:86.400000px;}
._35{width:87.408000px;}
._2d{width:94.994928px;}
._2c{width:96.123024px;}
._31{width:150.228000px;}
._2e{width:188.856000px;}
._2f{width:190.008000px;}
._32{width:197.558928px;}
._30{width:198.561072px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,176,240);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(100,100,100);}
.fc1{color:rgb(12,12,12);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs8{font-size:63.504000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:72.144000px;}
.fs5{font-size:84.240000px;}
.fsa{font-size:84.384000px;}
.fs7{font-size:95.760000px;}
.fs6{font-size:144.000000px;}
.y28{bottom:-16.344000px;}
.y12{bottom:-10.470000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:3.780000px;}
.y27{bottom:4.356000px;}
.yec{bottom:4.500000px;}
.y9{bottom:5.220000px;}
.yd1{bottom:5.400000px;}
.ydf{bottom:5.925000px;}
.yd3{bottom:5.940000px;}
.yd9{bottom:6.105000px;}
.yd5{bottom:6.120000px;}
.ydb{bottom:6.285000px;}
.yef{bottom:6.300000px;}
.yf4{bottom:6.480000px;}
.y11{bottom:7.710000px;}
.y9f{bottom:9.000000px;}
.yb6{bottom:9.165000px;}
.yb{bottom:9.360000px;}
.ybb{bottom:9.540000px;}
.y5c{bottom:11.160000px;}
.y9c{bottom:21.060000px;}
.y7{bottom:21.240000px;}
.yeb{bottom:25.200000px;}
.y10{bottom:30.210000px;}
.y9b{bottom:38.160000px;}
.y6{bottom:42.516000px;}
.y25{bottom:45.750000px;}
.yea{bottom:45.900000px;}
.y2{bottom:57.060000px;}
.ye{bottom:58.830000px;}
.y5{bottom:65.700000px;}
.y1{bottom:72.720000px;}
.y14{bottom:75.885000px;}
.y8{bottom:86.940000px;}
.yd{bottom:89.790000px;}
.ye8{bottom:117.540000px;}
.ye3{bottom:119.520000px;}
.y8e{bottom:124.200000px;}
.y5a{bottom:126.900000px;}
.ye7{bottom:138.240000px;}
.ye2{bottom:143.280000px;}
.y8d{bottom:144.900000px;}
.y17{bottom:145.440000px;}
.y59{bottom:147.600000px;}
.yb8{bottom:149.040000px;}
.ye6{bottom:158.940000px;}
.y8c{bottom:165.600000px;}
.y58{bottom:168.300000px;}
.y26{bottom:170.490000px;}
.ye5{bottom:179.640000px;}
.ye1{bottom:180.540000px;}
.y8b{bottom:186.300000px;}
.y57{bottom:189.000000px;}
.yb7{bottom:189.540000px;}
.ye4{bottom:200.340000px;}
.y8a{bottom:207.030000px;}
.y56{bottom:209.730000px;}
.y24{bottom:211.530000px;}
.ye0{bottom:218.025000px;}
.yf5{bottom:224.130000px;}
.y97{bottom:227.370000px;}
.y89{bottom:227.730000px;}
.yb5{bottom:229.905000px;}
.y55{bottom:230.430000px;}
.y23{bottom:232.230000px;}
.y88{bottom:248.070000px;}
.yf8{bottom:248.430000px;}
.y54{bottom:251.130000px;}
.y22{bottom:253.290000px;}
.yde{bottom:255.465000px;}
.yf3{bottom:261.570000px;}
.yb4{bottom:267.150000px;}
.y87{bottom:268.770000px;}
.y96{bottom:269.130000px;}
.y53{bottom:271.830000px;}
.y21{bottom:273.990000px;}
.yb3{bottom:287.850000px;}
.y86{bottom:289.470000px;}
.y95{bottom:289.830000px;}
.y52{bottom:292.530000px;}
.ydd{bottom:292.725000px;}
.y20{bottom:294.735000px;}
.yf2{bottom:299.190000px;}
.yb2{bottom:308.550000px;}
.y85{bottom:310.530000px;}
.y51{bottom:313.230000px;}
.y18{bottom:313.845000px;}
.y1f{bottom:315.075000px;}
.yb1{bottom:329.250000px;}
.ydc{bottom:329.985000px;}
.y84{bottom:331.230000px;}
.y50{bottom:333.930000px;}
.y1e{bottom:336.135000px;}
.yf1{bottom:336.630000px;}
.yb0{bottom:349.590000px;}
.y83{bottom:351.930000px;}
.y4f{bottom:354.630000px;}
.y1d{bottom:356.835000px;}
.yda{bottom:367.245000px;}
.yaf{bottom:370.290000px;}
.y94{bottom:372.270000px;}
.y82{bottom:372.630000px;}
.yf0{bottom:374.250000px;}
.y4e{bottom:375.330000px;}
.y1c{bottom:377.175000px;}
.yae{bottom:391.350000px;}
.y93{bottom:392.970000px;}
.y81{bottom:393.330000px;}
.y4d{bottom:396.030000px;}
.y1b{bottom:397.875000px;}
.yd8{bottom:404.685000px;}
.yee{bottom:411.690000px;}
.yad{bottom:412.050000px;}
.yfe{bottom:413.670000px;}
.y80{bottom:414.030000px;}
.y4c{bottom:416.730000px;}
.y1a{bottom:418.935000px;}
.yac{bottom:432.750000px;}
.yfd{bottom:434.370000px;}
.y7f{bottom:434.730000px;}
.y4b{bottom:437.430000px;}
.y19{bottom:439.635000px;}
.yd7{bottom:441.975000px;}
.yed{bottom:449.175000px;}
.yab{bottom:453.495000px;}
.y7e{bottom:455.475000px;}
.y4a{bottom:458.175000px;}
.yaa{bottom:474.195000px;}
.y7d{bottom:476.175000px;}
.y49{bottom:478.875000px;}
.yd6{bottom:479.415000px;}
.ye9{bottom:484.815000px;}
.ya9{bottom:494.895000px;}
.y7c{bottom:496.875000px;}
.y48{bottom:499.575000px;}
.y13{bottom:509.220000px;}
.ya8{bottom:515.595000px;}
.yd4{bottom:516.675000px;}
.y7b{bottom:517.575000px;}
.y47{bottom:520.275000px;}
.y16{bottom:531.645000px;}
.ya7{bottom:536.295000px;}
.y7a{bottom:538.275000px;}
.y46{bottom:540.975000px;}
.yd2{bottom:554.115000px;}
.ya6{bottom:556.995000px;}
.y15{bottom:557.385000px;}
.y79{bottom:558.975000px;}
.y45{bottom:561.675000px;}
.ya5{bottom:577.695000px;}
.y78{bottom:579.675000px;}
.y44{bottom:582.375000px;}
.yd0{bottom:591.375000px;}
.y77{bottom:600.375000px;}
.ya4{bottom:601.455000px;}
.y43{bottom:603.075000px;}
.y76{bottom:621.075000px;}
.y42{bottom:623.415000px;}
.ycf{bottom:625.035000px;}
.ya3{bottom:638.895000px;}
.y75{bottom:641.775000px;}
.y41{bottom:644.115000px;}
.yce{bottom:645.735000px;}
.y92{bottom:662.115000px;}
.y74{bottom:662.475000px;}
.y40{bottom:665.175000px;}
.ycd{bottom:666.435000px;}
.ya2{bottom:676.545000px;}
.y91{bottom:682.845000px;}
.y73{bottom:683.205000px;}
.y3f{bottom:685.905000px;}
.ycc{bottom:686.805000px;}
.yc{bottom:702.540000px;}
.yfc{bottom:703.545000px;}
.y72{bottom:703.905000px;}
.y3e{bottom:706.245000px;}
.ycb{bottom:707.505000px;}
.y4{bottom:707.550000px;}
.ya1{bottom:713.985000px;}
.yfb{bottom:724.245000px;}
.y71{bottom:724.605000px;}
.y3d{bottom:727.305000px;}
.yca{bottom:728.565000px;}
.y3{bottom:743.730000px;}
.y70{bottom:745.305000px;}
.y3c{bottom:748.005000px;}
.yc9{bottom:749.265000px;}
.ya0{bottom:751.425000px;}
.yf{bottom:761.370000px;}
.y6f{bottom:766.005000px;}
.y3b{bottom:768.705000px;}
.yc8{bottom:769.965000px;}
.y6e{bottom:786.705000px;}
.y9e{bottom:789.045000px;}
.y3a{bottom:789.405000px;}
.yc7{bottom:790.665000px;}
.y6d{bottom:807.405000px;}
.y39{bottom:810.105000px;}
.yc6{bottom:811.365000px;}
.y9a{bottom:826.485000px;}
.y6c{bottom:828.105000px;}
.y38{bottom:830.805000px;}
.yc5{bottom:832.065000px;}
.ya{bottom:843.300000px;}
.y6b{bottom:848.805000px;}
.y37{bottom:851.505000px;}
.yc4{bottom:852.765000px;}
.yf7{bottom:869.145000px;}
.y6a{bottom:869.505000px;}
.y36{bottom:872.205000px;}
.yc3{bottom:873.465000px;}
.yf6{bottom:889.845000px;}
.y69{bottom:890.205000px;}
.y35{bottom:892.725000px;}
.yc2{bottom:894.165000px;}
.y68{bottom:910.950000px;}
.y34{bottom:913.470000px;}
.yc1{bottom:914.910000px;}
.y67{bottom:931.650000px;}
.y33{bottom:934.170000px;}
.yc0{bottom:935.610000px;}
.yfa{bottom:951.990000px;}
.y66{bottom:952.350000px;}
.y32{bottom:954.870000px;}
.ybf{bottom:956.310000px;}
.yf9{bottom:972.690000px;}
.y65{bottom:973.050000px;}
.y31{bottom:975.570000px;}
.ybe{bottom:977.010000px;}
.y64{bottom:993.750000px;}
.y30{bottom:996.270000px;}
.ybd{bottom:1000.590000px;}
.y63{bottom:1014.450000px;}
.y2f{bottom:1016.970000px;}
.y99{bottom:1034.790000px;}
.y62{bottom:1035.150000px;}
.y2e{bottom:1037.670000px;}
.ybc{bottom:1041.270000px;}
.y98{bottom:1055.490000px;}
.y61{bottom:1055.850000px;}
.y2d{bottom:1058.370000px;}
.y90{bottom:1076.190000px;}
.y60{bottom:1076.550000px;}
.y2c{bottom:1079.070000px;}
.yba{bottom:1081.410000px;}
.y8f{bottom:1096.890000px;}
.y5f{bottom:1097.250000px;}
.y2b{bottom:1099.770000px;}
.y5e{bottom:1117.950000px;}
.y2a{bottom:1120.470000px;}
.yb9{bottom:1122.090000px;}
.y5d{bottom:1138.650000px;}
.y29{bottom:1140.630000px;}
.y5b{bottom:1145.880000px;}
.h32{height:20.700000px;}
.h2c{height:21.585000px;}
.h2d{height:22.125000px;}
.h2e{height:22.305000px;}
.h30{height:22.315500px;}
.h2f{height:22.320000px;}
.h24{height:22.485000px;}
.h23{height:22.500000px;}
.h33{height:22.680000px;}
.h2a{height:25.200000px;}
.h28{height:25.222500px;}
.h26{height:25.236000px;}
.h25{height:25.365000px;}
.h27{height:25.555500px;}
.h2b{height:25.560000px;}
.h29{height:25.740000px;}
.h8{height:30.912187px;}
.h9{height:34.920000px;}
.h1c{height:37.980000px;}
.h7{height:49.675781px;}
.h6{height:49.746094px;}
.h5{height:49.845586px;}
.hf{height:51.328125px;}
.h20{height:51.660000px;}
.h2{height:52.998047px;}
.h22{height:53.573906px;}
.h21{height:58.651172px;}
.h4{height:61.020000px;}
.h31{height:62.100000px;}
.h3{height:62.184375px;}
.h15{height:64.000125px;}
.h18{height:64.546875px;}
.h13{height:64.948711px;}
.h11{height:67.565039px;}
.hd{height:68.266406px;}
.h16{height:70.664062px;}
.h1f{height:71.824219px;}
.h17{height:72.562500px;}
.h1e{height:74.004654px;}
.h19{height:80.440922px;}
.ha{height:84.898125px;}
.h1d{height:85.043250px;}
.h12{height:96.508125px;}
.h10{height:98.280000px;}
.he{height:99.687656px;}
.hc{height:102.656250px;}
.hb{height:124.200000px;}
.h14{height:328.500000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.h1a{height:1262.880000px;}
.h1b{height:1263.000000px;}
.w19{width:34.920000px;}
.w12{width:49.356000px;}
.w10{width:59.385000px;}
.wf{width:66.081000px;}
.we{width:66.225000px;}
.w1a{width:76.356000px;}
.wc{width:77.400000px;}
.wd{width:77.436000px;}
.wb{width:77.616000px;}
.w15{width:85.701000px;}
.wa{width:88.371000px;}
.w13{width:110.520000px;}
.w14{width:114.336000px;}
.w17{width:120.411000px;}
.w1b{width:128.541000px;}
.w11{width:129.951000px;}
.w18{width:137.916000px;}
.w1c{width:140.025000px;}
.w1e{width:146.016000px;}
.w16{width:148.305000px;}
.w20{width:156.990000px;}
.w1f{width:166.860000px;}
.w1d{width:168.330000px;}
.w9{width:178.020000px;}
.w3{width:264.420000px;}
.w2{width:415.980000px;}
.w4{width:545.940000px;}
.w6{width:585.360000px;}
.w5{width:759.600000px;}
.w7{width:892.980000px;}
.w8{width:893.250000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1d{left:7.560000px;}
.x23{left:9.345000px;}
.x3{left:10.836000px;}
.x26{left:12.045000px;}
.x2a{left:13.680000px;}
.x1c{left:15.120000px;}
.x1b{left:16.920000px;}
.x21{left:18.000000px;}
.x2f{left:19.080000px;}
.x2c{left:20.160000px;}
.x19{left:22.140000px;}
.xa{left:24.840000px;}
.x2b{left:27.540000px;}
.x29{left:29.325000px;}
.x1f{left:30.780000px;}
.x13{left:31.935000px;}
.xb{left:34.560000px;}
.x5{left:37.080000px;}
.x34{left:39.234000px;}
.x8{left:42.510000px;}
.x3b{left:43.545000px;}
.x3f{left:46.260000px;}
.x3a{left:50.445000px;}
.x33{left:53.280000px;}
.x41{left:54.540000px;}
.x47{left:57.954000px;}
.x6{left:59.760000px;}
.x44{left:61.920000px;}
.x3c{left:64.254000px;}
.x46{left:82.665000px;}
.x43{left:84.054000px;}
.x3d{left:88.194000px;}
.x45{left:91.800000px;}
.x2{left:108.000000px;}
.x18{left:127.476000px;}
.x17{left:133.956000px;}
.x11{left:135.036000px;}
.x16{left:136.116000px;}
.x14{left:162.030000px;}
.x7{left:184.500000px;}
.x15{left:189.030000px;}
.x1a{left:215.850000px;}
.x4{left:236.910000px;}
.xc{left:246.450000px;}
.x35{left:247.890000px;}
.x2d{left:257.430000px;}
.x1e{left:293.475000px;}
.x3e{left:295.815000px;}
.x9{left:301.710000px;}
.x2e{left:306.795000px;}
.x12{left:345.420000px;}
.x20{left:370.875000px;}
.x36{left:385.815000px;}
.xd{left:404.535000px;}
.x30{left:417.315000px;}
.x37{left:420.735000px;}
.x40{left:441.825000px;}
.x22{left:448.320000px;}
.x38{left:497.100000px;}
.x24{left:514.380000px;}
.x31{left:531.660000px;}
.x25{left:580.620000px;}
.x42{left:608.685000px;}
.x32{left:617.370000px;}
.x39{left:625.650000px;}
.xe{left:631.800000px;}
.xf{left:642.705000px;}
.x27{left:646.710000px;}
.x28{left:706.110000px;}
.x10{left:737.790000px;}
.x1{left:1134.720000px;}
@media print{
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.418667pt;}
.ls3{letter-spacing:-5.440000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.768000pt;}
.ls8{letter-spacing:30.208000pt;}
.ls11{letter-spacing:78.080000pt;}
.lsa{letter-spacing:170.880000pt;}
.ls10{letter-spacing:175.978667pt;}
.lsc{letter-spacing:184.320000pt;}
.ws2{word-spacing:-85.153280pt;}
.ws4{word-spacing:-85.120000pt;}
.ws7{word-spacing:-18.752000pt;}
.ws1{word-spacing:-16.032000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws3{word-spacing:-0.085120pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-11.010944pt;}
._26{margin-left:-8.322517pt;}
._5{margin-left:-7.338240pt;}
._6{margin-left:-5.917312pt;}
._2{margin-left:-4.861312pt;}
._8{margin-left:-3.904000pt;}
._3{margin-left:-2.298624pt;}
._0{margin-left:-1.346688pt;}
._4{width:1.562624pt;}
._1e{width:2.493568pt;}
._10{width:3.758677pt;}
._1{width:4.796075pt;}
._17{width:5.775787pt;}
._a{width:6.848000pt;}
._9{width:7.808000pt;}
._12{width:9.088000pt;}
._11{width:10.432000pt;}
._e{width:11.328000pt;}
._b{width:12.224000pt;}
._f{width:13.141419pt;}
._16{width:14.695552pt;}
._13{width:17.728000pt;}
._25{width:18.693291pt;}
._20{width:19.624064pt;}
._14{width:21.120000pt;}
._15{width:22.272000pt;}
._c{width:23.808000pt;}
._d{width:24.960000pt;}
._1d{width:26.026752pt;}
._1c{width:26.944000pt;}
._1f{width:28.506795pt;}
._1a{width:30.208000pt;}
._1b{width:31.104000pt;}
._23{width:32.640000pt;}
._24{width:33.866667pt;}
._29{width:35.024043pt;}
._34{width:36.405333pt;}
._21{width:39.650688pt;}
._18{width:43.648000pt;}
._19{width:44.736000pt;}
._22{width:45.866667pt;}
._27{width:47.296000pt;}
._28{width:48.256000pt;}
._2a{width:56.832000pt;}
._2b{width:58.901419pt;}
._33{width:69.376000pt;}
._36{width:76.800000pt;}
._35{width:77.696000pt;}
._2d{width:84.439936pt;}
._2c{width:85.442688pt;}
._31{width:133.536000pt;}
._2e{width:167.872000pt;}
._2f{width:168.896000pt;}
._32{width:175.607936pt;}
._30{width:176.498731pt;}
.fs4{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs8{font-size:56.448000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:64.128000pt;}
.fs5{font-size:74.880000pt;}
.fsa{font-size:75.008000pt;}
.fs7{font-size:85.120000pt;}
.fs6{font-size:128.000000pt;}
.y28{bottom:-14.528000pt;}
.y12{bottom:-9.306667pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:3.360000pt;}
.y27{bottom:3.872000pt;}
.yec{bottom:4.000000pt;}
.y9{bottom:4.640000pt;}
.yd1{bottom:4.800000pt;}
.ydf{bottom:5.266667pt;}
.yd3{bottom:5.280000pt;}
.yd9{bottom:5.426667pt;}
.yd5{bottom:5.440000pt;}
.ydb{bottom:5.586667pt;}
.yef{bottom:5.600000pt;}
.yf4{bottom:5.760000pt;}
.y11{bottom:6.853333pt;}
.y9f{bottom:8.000000pt;}
.yb6{bottom:8.146667pt;}
.yb{bottom:8.320000pt;}
.ybb{bottom:8.480000pt;}
.y5c{bottom:9.920000pt;}
.y9c{bottom:18.720000pt;}
.y7{bottom:18.880000pt;}
.yeb{bottom:22.400000pt;}
.y10{bottom:26.853333pt;}
.y9b{bottom:33.920000pt;}
.y6{bottom:37.792000pt;}
.y25{bottom:40.666667pt;}
.yea{bottom:40.800000pt;}
.y2{bottom:50.720000pt;}
.ye{bottom:52.293333pt;}
.y5{bottom:58.400000pt;}
.y1{bottom:64.640000pt;}
.y14{bottom:67.453333pt;}
.y8{bottom:77.280000pt;}
.yd{bottom:79.813333pt;}
.ye8{bottom:104.480000pt;}
.ye3{bottom:106.240000pt;}
.y8e{bottom:110.400000pt;}
.y5a{bottom:112.800000pt;}
.ye7{bottom:122.880000pt;}
.ye2{bottom:127.360000pt;}
.y8d{bottom:128.800000pt;}
.y17{bottom:129.280000pt;}
.y59{bottom:131.200000pt;}
.yb8{bottom:132.480000pt;}
.ye6{bottom:141.280000pt;}
.y8c{bottom:147.200000pt;}
.y58{bottom:149.600000pt;}
.y26{bottom:151.546667pt;}
.ye5{bottom:159.680000pt;}
.ye1{bottom:160.480000pt;}
.y8b{bottom:165.600000pt;}
.y57{bottom:168.000000pt;}
.yb7{bottom:168.480000pt;}
.ye4{bottom:178.080000pt;}
.y8a{bottom:184.026667pt;}
.y56{bottom:186.426667pt;}
.y24{bottom:188.026667pt;}
.ye0{bottom:193.800000pt;}
.yf5{bottom:199.226667pt;}
.y97{bottom:202.106667pt;}
.y89{bottom:202.426667pt;}
.yb5{bottom:204.360000pt;}
.y55{bottom:204.826667pt;}
.y23{bottom:206.426667pt;}
.y88{bottom:220.506667pt;}
.yf8{bottom:220.826667pt;}
.y54{bottom:223.226667pt;}
.y22{bottom:225.146667pt;}
.yde{bottom:227.080000pt;}
.yf3{bottom:232.506667pt;}
.yb4{bottom:237.466667pt;}
.y87{bottom:238.906667pt;}
.y96{bottom:239.226667pt;}
.y53{bottom:241.626667pt;}
.y21{bottom:243.546667pt;}
.yb3{bottom:255.866667pt;}
.y86{bottom:257.306667pt;}
.y95{bottom:257.626667pt;}
.y52{bottom:260.026667pt;}
.ydd{bottom:260.200000pt;}
.y20{bottom:261.986667pt;}
.yf2{bottom:265.946667pt;}
.yb2{bottom:274.266667pt;}
.y85{bottom:276.026667pt;}
.y51{bottom:278.426667pt;}
.y18{bottom:278.973333pt;}
.y1f{bottom:280.066667pt;}
.yb1{bottom:292.666667pt;}
.ydc{bottom:293.320000pt;}
.y84{bottom:294.426667pt;}
.y50{bottom:296.826667pt;}
.y1e{bottom:298.786667pt;}
.yf1{bottom:299.226667pt;}
.yb0{bottom:310.746667pt;}
.y83{bottom:312.826667pt;}
.y4f{bottom:315.226667pt;}
.y1d{bottom:317.186667pt;}
.yda{bottom:326.440000pt;}
.yaf{bottom:329.146667pt;}
.y94{bottom:330.906667pt;}
.y82{bottom:331.226667pt;}
.yf0{bottom:332.666667pt;}
.y4e{bottom:333.626667pt;}
.y1c{bottom:335.266667pt;}
.yae{bottom:347.866667pt;}
.y93{bottom:349.306667pt;}
.y81{bottom:349.626667pt;}
.y4d{bottom:352.026667pt;}
.y1b{bottom:353.666667pt;}
.yd8{bottom:359.720000pt;}
.yee{bottom:365.946667pt;}
.yad{bottom:366.266667pt;}
.yfe{bottom:367.706667pt;}
.y80{bottom:368.026667pt;}
.y4c{bottom:370.426667pt;}
.y1a{bottom:372.386667pt;}
.yac{bottom:384.666667pt;}
.yfd{bottom:386.106667pt;}
.y7f{bottom:386.426667pt;}
.y4b{bottom:388.826667pt;}
.y19{bottom:390.786667pt;}
.yd7{bottom:392.866667pt;}
.yed{bottom:399.266667pt;}
.yab{bottom:403.106667pt;}
.y7e{bottom:404.866667pt;}
.y4a{bottom:407.266667pt;}
.yaa{bottom:421.506667pt;}
.y7d{bottom:423.266667pt;}
.y49{bottom:425.666667pt;}
.yd6{bottom:426.146667pt;}
.ye9{bottom:430.946667pt;}
.ya9{bottom:439.906667pt;}
.y7c{bottom:441.666667pt;}
.y48{bottom:444.066667pt;}
.y13{bottom:452.640000pt;}
.ya8{bottom:458.306667pt;}
.yd4{bottom:459.266667pt;}
.y7b{bottom:460.066667pt;}
.y47{bottom:462.466667pt;}
.y16{bottom:472.573333pt;}
.ya7{bottom:476.706667pt;}
.y7a{bottom:478.466667pt;}
.y46{bottom:480.866667pt;}
.yd2{bottom:492.546667pt;}
.ya6{bottom:495.106667pt;}
.y15{bottom:495.453333pt;}
.y79{bottom:496.866667pt;}
.y45{bottom:499.266667pt;}
.ya5{bottom:513.506667pt;}
.y78{bottom:515.266667pt;}
.y44{bottom:517.666667pt;}
.yd0{bottom:525.666667pt;}
.y77{bottom:533.666667pt;}
.ya4{bottom:534.626667pt;}
.y43{bottom:536.066667pt;}
.y76{bottom:552.066667pt;}
.y42{bottom:554.146667pt;}
.ycf{bottom:555.586667pt;}
.ya3{bottom:567.906667pt;}
.y75{bottom:570.466667pt;}
.y41{bottom:572.546667pt;}
.yce{bottom:573.986667pt;}
.y92{bottom:588.546667pt;}
.y74{bottom:588.866667pt;}
.y40{bottom:591.266667pt;}
.ycd{bottom:592.386667pt;}
.ya2{bottom:601.373333pt;}
.y91{bottom:606.973333pt;}
.y73{bottom:607.293333pt;}
.y3f{bottom:609.693333pt;}
.ycc{bottom:610.493333pt;}
.yc{bottom:624.480000pt;}
.yfc{bottom:625.373333pt;}
.y72{bottom:625.693333pt;}
.y3e{bottom:627.773333pt;}
.ycb{bottom:628.893333pt;}
.y4{bottom:628.933333pt;}
.ya1{bottom:634.653333pt;}
.yfb{bottom:643.773333pt;}
.y71{bottom:644.093333pt;}
.y3d{bottom:646.493333pt;}
.yca{bottom:647.613333pt;}
.y3{bottom:661.093333pt;}
.y70{bottom:662.493333pt;}
.y3c{bottom:664.893333pt;}
.yc9{bottom:666.013333pt;}
.ya0{bottom:667.933333pt;}
.yf{bottom:676.773333pt;}
.y6f{bottom:680.893333pt;}
.y3b{bottom:683.293333pt;}
.yc8{bottom:684.413333pt;}
.y6e{bottom:699.293333pt;}
.y9e{bottom:701.373333pt;}
.y3a{bottom:701.693333pt;}
.yc7{bottom:702.813333pt;}
.y6d{bottom:717.693333pt;}
.y39{bottom:720.093333pt;}
.yc6{bottom:721.213333pt;}
.y9a{bottom:734.653333pt;}
.y6c{bottom:736.093333pt;}
.y38{bottom:738.493333pt;}
.yc5{bottom:739.613333pt;}
.ya{bottom:749.600000pt;}
.y6b{bottom:754.493333pt;}
.y37{bottom:756.893333pt;}
.yc4{bottom:758.013333pt;}
.yf7{bottom:772.573333pt;}
.y6a{bottom:772.893333pt;}
.y36{bottom:775.293333pt;}
.yc3{bottom:776.413333pt;}
.yf6{bottom:790.973333pt;}
.y69{bottom:791.293333pt;}
.y35{bottom:793.533333pt;}
.yc2{bottom:794.813333pt;}
.y68{bottom:809.733333pt;}
.y34{bottom:811.973333pt;}
.yc1{bottom:813.253333pt;}
.y67{bottom:828.133333pt;}
.y33{bottom:830.373333pt;}
.yc0{bottom:831.653333pt;}
.yfa{bottom:846.213333pt;}
.y66{bottom:846.533333pt;}
.y32{bottom:848.773333pt;}
.ybf{bottom:850.053333pt;}
.yf9{bottom:864.613333pt;}
.y65{bottom:864.933333pt;}
.y31{bottom:867.173333pt;}
.ybe{bottom:868.453333pt;}
.y64{bottom:883.333333pt;}
.y30{bottom:885.573333pt;}
.ybd{bottom:889.413333pt;}
.y63{bottom:901.733333pt;}
.y2f{bottom:903.973333pt;}
.y99{bottom:919.813333pt;}
.y62{bottom:920.133333pt;}
.y2e{bottom:922.373333pt;}
.ybc{bottom:925.573333pt;}
.y98{bottom:938.213333pt;}
.y61{bottom:938.533333pt;}
.y2d{bottom:940.773333pt;}
.y90{bottom:956.613333pt;}
.y60{bottom:956.933333pt;}
.y2c{bottom:959.173333pt;}
.yba{bottom:961.253333pt;}
.y8f{bottom:975.013333pt;}
.y5f{bottom:975.333333pt;}
.y2b{bottom:977.573333pt;}
.y5e{bottom:993.733333pt;}
.y2a{bottom:995.973333pt;}
.yb9{bottom:997.413333pt;}
.y5d{bottom:1012.133333pt;}
.y29{bottom:1013.893333pt;}
.y5b{bottom:1018.560000pt;}
.h32{height:18.400000pt;}
.h2c{height:19.186667pt;}
.h2d{height:19.666667pt;}
.h2e{height:19.826667pt;}
.h30{height:19.836000pt;}
.h2f{height:19.840000pt;}
.h24{height:19.986667pt;}
.h23{height:20.000000pt;}
.h33{height:20.160000pt;}
.h2a{height:22.400000pt;}
.h28{height:22.420000pt;}
.h26{height:22.432000pt;}
.h25{height:22.546667pt;}
.h27{height:22.716000pt;}
.h2b{height:22.720000pt;}
.h29{height:22.880000pt;}
.h8{height:27.477500pt;}
.h9{height:31.040000pt;}
.h1c{height:33.760000pt;}
.h7{height:44.156250pt;}
.h6{height:44.218750pt;}
.h5{height:44.307187pt;}
.hf{height:45.625000pt;}
.h20{height:45.920000pt;}
.h2{height:47.109375pt;}
.h22{height:47.621250pt;}
.h21{height:52.134375pt;}
.h4{height:54.240000pt;}
.h31{height:55.200000pt;}
.h3{height:55.275000pt;}
.h15{height:56.889000pt;}
.h18{height:57.375000pt;}
.h13{height:57.732187pt;}
.h11{height:60.057813pt;}
.hd{height:60.681250pt;}
.h16{height:62.812500pt;}
.h1f{height:63.843750pt;}
.h17{height:64.500000pt;}
.h1e{height:65.781915pt;}
.h19{height:71.503042pt;}
.ha{height:75.465000pt;}
.h1d{height:75.594000pt;}
.h12{height:85.785000pt;}
.h10{height:87.360000pt;}
.he{height:88.611250pt;}
.hc{height:91.250000pt;}
.hb{height:110.400000pt;}
.h14{height:292.000000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.h1a{height:1122.560000pt;}
.h1b{height:1122.666667pt;}
.w19{width:31.040000pt;}
.w12{width:43.872000pt;}
.w10{width:52.786667pt;}
.wf{width:58.738667pt;}
.we{width:58.866667pt;}
.w1a{width:67.872000pt;}
.wc{width:68.800000pt;}
.wd{width:68.832000pt;}
.wb{width:68.992000pt;}
.w15{width:76.178667pt;}
.wa{width:78.552000pt;}
.w13{width:98.240000pt;}
.w14{width:101.632000pt;}
.w17{width:107.032000pt;}
.w1b{width:114.258667pt;}
.w11{width:115.512000pt;}
.w18{width:122.592000pt;}
.w1c{width:124.466667pt;}
.w1e{width:129.792000pt;}
.w16{width:131.826667pt;}
.w20{width:139.546667pt;}
.w1f{width:148.320000pt;}
.w1d{width:149.626667pt;}
.w9{width:158.240000pt;}
.w3{width:235.040000pt;}
.w2{width:369.760000pt;}
.w4{width:485.280000pt;}
.w6{width:520.320000pt;}
.w5{width:675.200000pt;}
.w7{width:793.760000pt;}
.w8{width:794.000000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:6.720000pt;}
.x23{left:8.306667pt;}
.x3{left:9.632000pt;}
.x26{left:10.706667pt;}
.x2a{left:12.160000pt;}
.x1c{left:13.440000pt;}
.x1b{left:15.040000pt;}
.x21{left:16.000000pt;}
.x2f{left:16.960000pt;}
.x2c{left:17.920000pt;}
.x19{left:19.680000pt;}
.xa{left:22.080000pt;}
.x2b{left:24.480000pt;}
.x29{left:26.066667pt;}
.x1f{left:27.360000pt;}
.x13{left:28.386667pt;}
.xb{left:30.720000pt;}
.x5{left:32.960000pt;}
.x34{left:34.874667pt;}
.x8{left:37.786667pt;}
.x3b{left:38.706667pt;}
.x3f{left:41.120000pt;}
.x3a{left:44.840000pt;}
.x33{left:47.360000pt;}
.x41{left:48.480000pt;}
.x47{left:51.514667pt;}
.x6{left:53.120000pt;}
.x44{left:55.040000pt;}
.x3c{left:57.114667pt;}
.x46{left:73.480000pt;}
.x43{left:74.714667pt;}
.x3d{left:78.394667pt;}
.x45{left:81.600000pt;}
.x2{left:96.000000pt;}
.x18{left:113.312000pt;}
.x17{left:119.072000pt;}
.x11{left:120.032000pt;}
.x16{left:120.992000pt;}
.x14{left:144.026667pt;}
.x7{left:164.000000pt;}
.x15{left:168.026667pt;}
.x1a{left:191.866667pt;}
.x4{left:210.586667pt;}
.xc{left:219.066667pt;}
.x35{left:220.346667pt;}
.x2d{left:228.826667pt;}
.x1e{left:260.866667pt;}
.x3e{left:262.946667pt;}
.x9{left:268.186667pt;}
.x2e{left:272.706667pt;}
.x12{left:307.040000pt;}
.x20{left:329.666667pt;}
.x36{left:342.946667pt;}
.xd{left:359.586667pt;}
.x30{left:370.946667pt;}
.x37{left:373.986667pt;}
.x40{left:392.733333pt;}
.x22{left:398.506667pt;}
.x38{left:441.866667pt;}
.x24{left:457.226667pt;}
.x31{left:472.586667pt;}
.x25{left:516.106667pt;}
.x42{left:541.053333pt;}
.x32{left:548.773333pt;}
.x39{left:556.133333pt;}
.xe{left:561.600000pt;}
.xf{left:571.293333pt;}
.x27{left:574.853333pt;}
.x28{left:627.653333pt;}
.x10{left:655.813333pt;}
.x1{left:1008.640000pt;}
}




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