
    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_a4fb336f64e1165eb058a221.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bd1bbaf56fc5db5f686108f0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_199209b46e10534891bdc483.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_99b16d5d9bd9b6dddb11a062.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_897d8bc0cea72b9d535d8daf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_3060f512bd5c51ef58144d59.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c20fe61df91d7da8bcc4a38f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2506b9f868408627b501dfb8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_47fdda53b1b22d91c896234f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_0a9a52c4ff6d3d9e5d1f9447.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_eb16b2334307632c4dfa1a02.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_307d1e6088b2b643fe3d6a9a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_e44c44c58fd8da9a44b5d6c0.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;}
.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:-76.320000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.lsc{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.792000px;}
.ls1f{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.108000px;}
.ls19{letter-spacing:-0.017280px;}
.lsd{letter-spacing:-0.008640px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.018000px;}
.ls16{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.106800px;}
.ls1a{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.900000px;}
.ls3{letter-spacing:1.049760px;}
.ls4{letter-spacing:5.022720px;}
.ls11{letter-spacing:5.220000px;}
.ls13{letter-spacing:8.820000px;}
.ls1d{letter-spacing:12.600000px;}
.ls6{letter-spacing:17.460000px;}
.ls15{letter-spacing:25.308000px;}
.ls14{letter-spacing:28.062720px;}
.ls17{letter-spacing:33.300000px;}
.ls1e{letter-spacing:52.668000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.440000px;}
.ws6{word-spacing:-19.431360px;}
.wsd{word-spacing:-19.422720px;}
.ws2{word-spacing:-17.208000px;}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.626000px;}
.wse{word-spacing:-13.608000px;}
.wsb{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.392000px;}
.wsc{word-spacing:-13.284000px;}
.ws12{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.672000px;}
.ws10{word-spacing:-9.792000px;}
.wsf{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._25{margin-left:-526.086000px;}
._29{margin-left:-430.182000px;}
._24{margin-left:-346.104000px;}
._27{margin-left:-334.116000px;}
._28{margin-left:-162.720000px;}
._26{margin-left:-149.772000px;}
._2a{margin-left:-17.873280px;}
._2d{margin-left:-12.960000px;}
._0{margin-left:-1.026000px;}
._1{width:1.146000px;}
._f{width:2.380080px;}
._3{width:4.073040px;}
._4{width:5.101920px;}
._e{width:6.210000px;}
._7{width:7.614000px;}
._b{width:9.216000px;}
._15{width:10.746000px;}
._8{width:12.258000px;}
._13{width:14.730000px;}
._12{width:15.822000px;}
._d{width:17.118000px;}
._c{width:18.144000px;}
._1b{width:19.440000px;}
._5{width:20.628000px;}
._6{width:22.104000px;}
._16{width:24.084000px;}
._14{width:25.326000px;}
._10{width:26.892000px;}
._2c{width:28.044000px;}
._11{width:29.052000px;}
._1c{width:30.132000px;}
._1f{width:31.308000px;}
._a{width:32.508000px;}
._9{width:34.128000px;}
._19{width:35.316000px;}
._18{width:36.342000px;}
._20{width:38.124000px;}
._21{width:39.420000px;}
._36{width:40.554000px;}
._37{width:41.718000px;}
._34{width:43.494000px;}
._1d{width:44.550000px;}
._1e{width:45.564000px;}
._1a{width:48.114000px;}
._2b{width:50.760000px;}
._32{width:51.918000px;}
._17{width:53.190000px;}
._38{width:54.204000px;}
._35{width:55.782000px;}
._30{width:56.862000px;}
._31{width:57.888000px;}
._2e{width:59.130000px;}
._2f{width:60.696000px;}
._39{width:67.014000px;}
._3b{width:69.822000px;}
._3a{width:71.010000px;}
._22{width:72.954000px;}
._3c{width:76.194000px;}
._23{width:81.403200px;}
._3e{width:86.376000px;}
._3d{width:87.588000px;}
._3f{width:108.324000px;}
._33{width:388.548000px;}
._2{width:1224.300000px;}
.fca{color:rgb(255,0,0);}
.fc8{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc9{color:rgb(34,34,34);}
.fc7{color:rgb(51,51,51);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:87.120000px;}
.fs3{font-size:90.000000px;}
.y3f{bottom:-4.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y119{bottom:10.065000px;}
.yf9{bottom:10.080000px;}
.yfa{bottom:10.260000px;}
.y108{bottom:14.580000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y11b{bottom:28.110000px;}
.yfd{bottom:32.400000px;}
.yf7{bottom:37.800000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y3c{bottom:68.970000px;}
.y3b{bottom:88.770000px;}
.y2e{bottom:106.740000px;}
.yac{bottom:107.100000px;}
.y16d{bottom:107.460000px;}
.ye8{bottom:108.000000px;}
.y3a{bottom:108.570000px;}
.y140{bottom:108.900000px;}
.y79{bottom:109.080000px;}
.y11e{bottom:111.780000px;}
.y33{bottom:115.560000px;}
.yc2{bottom:118.080000px;}
.y2d{bottom:124.560000px;}
.yab{bottom:124.920000px;}
.y16c{bottom:125.280000px;}
.ye7{bottom:125.820000px;}
.y13f{bottom:126.720000px;}
.y78{bottom:126.900000px;}
.y39{bottom:128.370000px;}
.y11d{bottom:129.600000px;}
.y32{bottom:133.560000px;}
.yc1{bottom:135.900000px;}
.y2c{bottom:142.560000px;}
.yaa{bottom:142.740000px;}
.y16b{bottom:143.100000px;}
.y13e{bottom:144.540000px;}
.y77{bottom:144.720000px;}
.y38{bottom:148.170000px;}
.y31{bottom:151.380000px;}
.y11c{bottom:151.560000px;}
.y12d{bottom:151.740000px;}
.ye6{bottom:152.640000px;}
.y2b{bottom:160.380000px;}
.ya9{bottom:160.560000px;}
.y16a{bottom:161.100000px;}
.y13d{bottom:162.360000px;}
.y76{bottom:162.540000px;}
.yc0{bottom:162.720000px;}
.y37{bottom:168.150000px;}
.y30{bottom:169.200000px;}
.y12c{bottom:169.560000px;}
.ye5{bottom:170.460000px;}
.y2a{bottom:178.200000px;}
.ya8{bottom:178.380000px;}
.y169{bottom:178.920000px;}
.y11a{bottom:179.100000px;}
.y75{bottom:180.360000px;}
.ybf{bottom:180.540000px;}
.y2f{bottom:187.020000px;}
.y12b{bottom:187.380000px;}
.y36{bottom:187.995000px;}
.ye4{bottom:188.280000px;}
.y13c{bottom:191.340000px;}
.y29{bottom:196.020000px;}
.ya7{bottom:196.200000px;}
.y168{bottom:196.740000px;}
.y74{bottom:198.180000px;}
.ybe{bottom:198.360000px;}
.y12a{bottom:205.410000px;}
.ye3{bottom:206.310000px;}
.ya6{bottom:214.230000px;}
.y167{bottom:214.590000px;}
.y28{bottom:215.850000px;}
.y73{bottom:216.210000px;}
.y35{bottom:218.235000px;}
.y129{bottom:223.230000px;}
.ye2{bottom:224.130000px;}
.y118{bottom:224.685000px;}
.ya5{bottom:232.050000px;}
.y166{bottom:232.410000px;}
.y72{bottom:234.030000px;}
.ybd{bottom:234.210000px;}
.y27{bottom:239.430000px;}
.y128{bottom:241.050000px;}
.ye1{bottom:241.950000px;}
.ya4{bottom:249.870000px;}
.y165{bottom:250.230000px;}
.y71{bottom:251.850000px;}
.ybc{bottom:252.030000px;}
.y26{bottom:257.250000px;}
.y117{bottom:257.430000px;}
.y127{bottom:258.870000px;}
.ye0{bottom:259.770000px;}
.ya3{bottom:267.690000px;}
.y164{bottom:268.230000px;}
.y70{bottom:269.670000px;}
.ybb{bottom:269.850000px;}
.y34{bottom:273.420000px;}
.y25{bottom:275.070000px;}
.y116{bottom:275.250000px;}
.y126{bottom:276.690000px;}
.ydf{bottom:277.590000px;}
.ya2{bottom:285.510000px;}
.y163{bottom:286.050000px;}
.y13b{bottom:286.590000px;}
.y6f{bottom:287.130000px;}
.yba{bottom:287.670000px;}
.y3e{bottom:293.790000px;}
.y125{bottom:294.690000px;}
.yde{bottom:295.410000px;}
.y24{bottom:301.890000px;}
.y115{bottom:302.610000px;}
.ya1{bottom:303.510000px;}
.y162{bottom:303.870000px;}
.y13a{bottom:304.410000px;}
.yb9{bottom:307.470000px;}
.ydd{bottom:313.050000px;}
.y6e{bottom:314.490000px;}
.y114{bottom:320.430000px;}
.ya0{bottom:320.970000px;}
.y161{bottom:321.690000px;}
.y3d{bottom:322.410000px;}
.y23{bottom:328.710000px;}
.y6d{bottom:332.310000px;}
.yb8{bottom:333.390000px;}
.y113{bottom:338.250000px;}
.y160{bottom:339.510000px;}
.ydc{bottom:340.230000px;}
.y124{bottom:347.250000px;}
.y9f{bottom:348.150000px;}
.y6c{bottom:350.130000px;}
.y22{bottom:355.530000px;}
.y112{bottom:356.070000px;}
.y15f{bottom:357.510000px;}
.ydb{bottom:358.050000px;}
.y123{bottom:365.070000px;}
.y9e{bottom:365.970000px;}
.yb7{bottom:366.150000px;}
.y6b{bottom:367.950000px;}
.y111{bottom:373.890000px;}
.y15e{bottom:375.330000px;}
.yda{bottom:375.870000px;}
.y21{bottom:382.530000px;}
.y122{bottom:382.890000px;}
.y9d{bottom:383.790000px;}
.yb6{bottom:383.970000px;}
.y6a{bottom:385.770000px;}
.y110{bottom:391.890000px;}
.y15d{bottom:393.150000px;}
.yd9{bottom:393.690000px;}
.y121{bottom:400.890000px;}
.y9c{bottom:401.610000px;}
.yb5{bottom:401.790000px;}
.y69{bottom:403.590000px;}
.y10f{bottom:409.710000px;}
.y15c{bottom:410.970000px;}
.yd8{bottom:411.690000px;}
.y20{bottom:418.170000px;}
.y120{bottom:418.710000px;}
.yb4{bottom:419.610000px;}
.y68{bottom:421.590000px;}
.y10e{bottom:427.530000px;}
.y9b{bottom:428.610000px;}
.y15b{bottom:428.790000px;}
.yd7{bottom:429.150000px;}
.y139{bottom:431.490000px;}
.y1f{bottom:435.990000px;}
.y11f{bottom:436.530000px;}
.yb3{bottom:437.610000px;}
.y67{bottom:439.410000px;}
.y9a{bottom:446.475000px;}
.y15a{bottom:446.655000px;}
.y10d{bottom:454.395000px;}
.yb2{bottom:455.475000px;}
.y1e{bottom:455.655000px;}
.yd6{bottom:456.375000px;}
.y66{bottom:457.275000px;}
.y99{bottom:464.295000px;}
.y159{bottom:464.655000px;}
.yb1{bottom:473.295000px;}
.yd5{bottom:474.195000px;}
.y65{bottom:475.095000px;}
.y10c{bottom:476.355000px;}
.y1d{bottom:479.595000px;}
.y138{bottom:482.115000px;}
.y158{bottom:482.475000px;}
.y98{bottom:491.115000px;}
.yd4{bottom:492.015000px;}
.y64{bottom:492.915000px;}
.y137{bottom:499.935000px;}
.y157{bottom:500.295000px;}
.y1c{bottom:503.355000px;}
.y10b{bottom:504.075000px;}
.y97{bottom:508.935000px;}
.yd3{bottom:509.835000px;}
.y63{bottom:512.895000px;}
.y136{bottom:517.935000px;}
.y156{bottom:518.115000px;}
.y96{bottom:526.935000px;}
.y1b{bottom:527.115000px;}
.yd2{bottom:527.835000px;}
.y10a{bottom:531.615000px;}
.y135{bottom:535.755000px;}
.y155{bottom:535.935000px;}
.y62{bottom:538.635000px;}
.y95{bottom:544.755000px;}
.yd1{bottom:545.655000px;}
.y1a{bottom:550.695000px;}
.y154{bottom:553.935000px;}
.y109{bottom:559.155000px;}
.y94{bottom:562.575000px;}
.yd0{bottom:563.475000px;}
.y61{bottom:571.395000px;}
.y153{bottom:571.755000px;}
.y19{bottom:572.655000px;}
.y93{bottom:580.395000px;}
.ycf{bottom:581.295000px;}
.y107{bottom:586.875000px;}
.y60{bottom:589.215000px;}
.y152{bottom:589.575000px;}
.y92{bottom:598.215000px;}
.yce{bottom:599.115000px;}
.y18{bottom:603.435000px;}
.y5f{bottom:607.035000px;}
.yb0{bottom:607.215000px;}
.y151{bottom:607.395000px;}
.y134{bottom:616.035000px;}
.ycd{bottom:617.115000px;}
.y5e{bottom:625.035000px;}
.y150{bottom:625.215000px;}
.y133{bottom:634.035000px;}
.y17{bottom:634.215000px;}
.ycc{bottom:634.935000px;}
.y106{bottom:641.955000px;}
.y5d{bottom:642.855000px;}
.y91{bottom:643.035000px;}
.y132{bottom:651.855000px;}
.ycb{bottom:652.755000px;}
.y5c{bottom:660.675000px;}
.y90{bottom:660.855000px;}
.y14f{bottom:661.035000px;}
.y102{bottom:669.135000px;}
.y131{bottom:669.675000px;}
.yca{bottom:670.215000px;}
.y17f{bottom:674.175000px;}
.y5b{bottom:678.525000px;}
.y8f{bottom:678.705000px;}
.y14e{bottom:678.885000px;}
.y16{bottom:683.025000px;}
.y101{bottom:687.165000px;}
.y130{bottom:687.525000px;}
.yc9{bottom:688.065000px;}
.y17e{bottom:692.025000px;}
.y105{bottom:696.165000px;}
.y5a{bottom:696.345000px;}
.y8e{bottom:696.525000px;}
.y14d{bottom:696.705000px;}
.y15{bottom:704.805000px;}
.y100{bottom:704.985000px;}
.yc8{bottom:708.225000px;}
.y17d{bottom:709.845000px;}
.y104{bottom:713.985000px;}
.y59{bottom:714.165000px;}
.y8d{bottom:714.345000px;}
.y14c{bottom:714.525000px;}
.yff{bottom:722.805000px;}
.y17c{bottom:727.665000px;}
.y103{bottom:731.805000px;}
.y58{bottom:732.165000px;}
.y14b{bottom:732.345000px;}
.yc7{bottom:741.165000px;}
.yfe{bottom:744.765000px;}
.y17b{bottom:745.485000px;}
.y8c{bottom:750.165000px;}
.y14{bottom:753.405000px;}
.y57{bottom:758.985000px;}
.y17a{bottom:763.485000px;}
.y8b{bottom:767.985000px;}
.y14a{bottom:768.165000px;}
.yfc{bottom:772.485000px;}
.y56{bottom:776.805000px;}
.y179{bottom:781.305000px;}
.y8a{bottom:785.805000px;}
.y149{bottom:785.985000px;}
.y55{bottom:794.625000px;}
.yaf{bottom:794.805000px;}
.y178{bottom:799.125000px;}
.y13{bottom:799.665000px;}
.y12f{bottom:803.625000px;}
.y148{bottom:803.805000px;}
.yc6{bottom:812.085000px;}
.y54{bottom:812.445000px;}
.y89{bottom:812.625000px;}
.y177{bottom:816.945000px;}
.y12e{bottom:821.445000px;}
.y147{bottom:821.625000px;}
.yfb{bottom:822.345000px;}
.y12{bottom:828.465000px;}
.y53{bottom:830.445000px;}
.y176{bottom:834.765000px;}
.yc5{bottom:839.445000px;}
.y52{bottom:848.265000px;}
.y88{bottom:848.445000px;}
.yf6{bottom:849.885000px;}
.y175{bottom:852.585000px;}
.yc4{bottom:857.265000px;}
.y146{bottom:857.445000px;}
.y51{bottom:866.085000px;}
.y87{bottom:866.265000px;}
.y11{bottom:866.445000px;}
.y174{bottom:870.585000px;}
.yc3{bottom:875.085000px;}
.y145{bottom:875.265000px;}
.yf8{bottom:877.605000px;}
.y86{bottom:884.085000px;}
.y173{bottom:888.405000px;}
.y10{bottom:889.125000px;}
.y50{bottom:892.905000px;}
.y144{bottom:893.085000px;}
.y85{bottom:901.905000px;}
.y172{bottom:906.225000px;}
.yf5{bottom:910.410000px;}
.y4f{bottom:910.770000px;}
.yf{bottom:910.950000px;}
.y84{bottom:919.770000px;}
.y171{bottom:924.090000px;}
.y4e{bottom:928.590000px;}
.y143{bottom:928.770000px;}
.ye{bottom:932.730000px;}
.y83{bottom:937.590000px;}
.yf4{bottom:938.670000px;}
.y170{bottom:941.910000px;}
.y4d{bottom:946.590000px;}
.yd{bottom:954.150000px;}
.y82{bottom:955.590000px;}
.yf3{bottom:956.490000px;}
.y16f{bottom:959.910000px;}
.y4c{bottom:964.410000px;}
.y142{bottom:964.590000px;}
.y81{bottom:973.410000px;}
.yf2{bottom:974.310000px;}
.yc{bottom:976.290000px;}
.y4b{bottom:982.230000px;}
.y141{bottom:982.410000px;}
.yae{bottom:991.230000px;}
.yf1{bottom:992.130000px;}
.y16e{bottom:996.090000px;}
.y4a{bottom:1000.050000px;}
.y80{bottom:1000.230000px;}
.yad{bottom:1009.050000px;}
.yf0{bottom:1009.950000px;}
.yb{bottom:1017.510000px;}
.y7f{bottom:1018.050000px;}
.y49{bottom:1026.870000px;}
.ya{bottom:1029.570000px;}
.y7e{bottom:1035.870000px;}
.yef{bottom:1036.770000px;}
.y9{bottom:1041.630000px;}
.ye9{bottom:1044.510000px;}
.y48{bottom:1044.870000px;}
.y8{bottom:1053.690000px;}
.y7d{bottom:1053.870000px;}
.yee{bottom:1054.770000px;}
.y47{bottom:1062.690000px;}
.y7{bottom:1068.270000px;}
.y7c{bottom:1071.690000px;}
.yed{bottom:1072.590000px;}
.y46{bottom:1080.510000px;}
.y7b{bottom:1089.510000px;}
.yec{bottom:1090.410000px;}
.y6{bottom:1093.830000px;}
.y45{bottom:1098.330000px;}
.y7a{bottom:1107.330000px;}
.yeb{bottom:1108.230000px;}
.y44{bottom:1125.150000px;}
.yea{bottom:1128.030000px;}
.y43{bottom:1142.970000px;}
.y42{bottom:1161.000000px;}
.y41{bottom:1178.820000px;}
.y40{bottom:1196.640000px;}
.h20{height:26.805000px;}
.h1b{height:26.820000px;}
.h1c{height:27.000000px;}
.h2{height:31.135500px;}
.h7{height:40.985156px;}
.h1f{height:44.507812px;}
.h21{height:44.856000px;}
.h17{height:48.410156px;}
.h1e{height:49.125000px;}
.h1d{height:49.140000px;}
.h15{height:52.971680px;}
.h3{height:52.998047px;}
.hf{height:54.421875px;}
.h1a{height:54.540000px;}
.h19{height:55.503491px;}
.h16{height:56.214844px;}
.h14{height:58.621992px;}
.h8{height:58.651172px;}
.h13{height:58.763250px;}
.h18{height:59.092031px;}
.h9{height:60.226875px;}
.hd{height:65.010937px;}
.h4{height:65.884219px;}
.hc{height:66.757500px;}
.h22{height:70.664062px;}
.he{height:72.562500px;}
.h12{height:78.367500px;}
.h10{height:80.949375px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.hb{height:87.800625px;}
.h6{height:90.703125px;}
.h11{height:245.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:61.920000px;}
.w3{width:80.310000px;}
.w13{width:92.902500px;}
.w10{width:94.320000px;}
.wb{width:95.076000px;}
.w6{width:100.461000px;}
.we{width:113.961000px;}
.w15{width:113.976000px;}
.w9{width:114.105000px;}
.w12{width:114.336000px;}
.w16{width:121.702500px;}
.w14{width:131.220000px;}
.wf{width:140.976000px;}
.w5{width:141.150000px;}
.wd{width:151.950000px;}
.wc{width:152.665500px;}
.wa{width:169.950000px;}
.w8{width:248.470500px;}
.w7{width:284.790000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.560000px;}
.x5{left:8.640000px;}
.x15{left:10.800000px;}
.x2a{left:19.440000px;}
.x31{left:22.680000px;}
.x14{left:39.240000px;}
.x1{left:45.364500px;}
.x16{left:50.040000px;}
.x2f{left:52.564500px;}
.x6{left:54.000000px;}
.x1e{left:58.144500px;}
.xf{left:61.380000px;}
.x29{left:64.440000px;}
.x2c{left:67.500000px;}
.x13{left:81.000000px;}
.x30{left:89.820000px;}
.xc{left:95.976000px;}
.x17{left:108.036000px;}
.x2b{left:113.610000px;}
.x1a{left:115.056000px;}
.x21{left:126.936000px;}
.x28{left:152.670000px;}
.x2e{left:174.990000px;}
.x20{left:211.530000px;}
.x2{left:222.370500px;}
.x27{left:267.915000px;}
.x3{left:271.330500px;}
.xd{left:274.035000px;}
.x9{left:283.575000px;}
.x2d{left:289.875000px;}
.xa{left:297.075000px;}
.x7{left:300.495000px;}
.x1d{left:307.335000px;}
.x11{left:314.355000px;}
.x26{left:330.555000px;}
.xe{left:355.755000px;}
.x8{left:364.395000px;}
.xb{left:378.795000px;}
.x10{left:422.535000px;}
.x25{left:425.775000px;}
.x32{left:452.265000px;}
.x12{left:473.505000px;}
.x1f{left:478.020000px;}
.x18{left:500.505000px;}
.x19{left:527.505000px;}
.x24{left:567.480000px;}
.x1c{left:592.860000px;}
.x22{left:682.350000px;}
.x1b{left:694.050000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls1f{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.096000pt;}
.ls19{letter-spacing:-0.015360pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.016000pt;}
.ls16{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.094933pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.800000pt;}
.ls3{letter-spacing:0.933120pt;}
.ls4{letter-spacing:4.464640pt;}
.ls11{letter-spacing:4.640000pt;}
.ls13{letter-spacing:7.840000pt;}
.ls1d{letter-spacing:11.200000pt;}
.ls6{letter-spacing:15.520000pt;}
.ls15{letter-spacing:22.496000pt;}
.ls14{letter-spacing:24.944640pt;}
.ls17{letter-spacing:29.600000pt;}
.ls1e{letter-spacing:46.816000pt;}
.ws8{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.280000pt;}
.ws6{word-spacing:-17.272320pt;}
.wsd{word-spacing:-17.264640pt;}
.ws2{word-spacing:-15.296000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.112000pt;}
.wse{word-spacing:-12.096000pt;}
.wsb{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.808000pt;}
.ws12{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.264000pt;}
.ws10{word-spacing:-8.704000pt;}
.wsf{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._25{margin-left:-467.632000pt;}
._29{margin-left:-382.384000pt;}
._24{margin-left:-307.648000pt;}
._27{margin-left:-296.992000pt;}
._28{margin-left:-144.640000pt;}
._26{margin-left:-133.130667pt;}
._2a{margin-left:-15.887360pt;}
._2d{margin-left:-11.520000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.018667pt;}
._f{width:2.115627pt;}
._3{width:3.620480pt;}
._4{width:4.535040pt;}
._e{width:5.520000pt;}
._7{width:6.768000pt;}
._b{width:8.192000pt;}
._15{width:9.552000pt;}
._8{width:10.896000pt;}
._13{width:13.093333pt;}
._12{width:14.064000pt;}
._d{width:15.216000pt;}
._c{width:16.128000pt;}
._1b{width:17.280000pt;}
._5{width:18.336000pt;}
._6{width:19.648000pt;}
._16{width:21.408000pt;}
._14{width:22.512000pt;}
._10{width:23.904000pt;}
._2c{width:24.928000pt;}
._11{width:25.824000pt;}
._1c{width:26.784000pt;}
._1f{width:27.829333pt;}
._a{width:28.896000pt;}
._9{width:30.336000pt;}
._19{width:31.392000pt;}
._18{width:32.304000pt;}
._20{width:33.888000pt;}
._21{width:35.040000pt;}
._36{width:36.048000pt;}
._37{width:37.082667pt;}
._34{width:38.661333pt;}
._1d{width:39.600000pt;}
._1e{width:40.501333pt;}
._1a{width:42.768000pt;}
._2b{width:45.120000pt;}
._32{width:46.149333pt;}
._17{width:47.280000pt;}
._38{width:48.181333pt;}
._35{width:49.584000pt;}
._30{width:50.544000pt;}
._31{width:51.456000pt;}
._2e{width:52.560000pt;}
._2f{width:53.952000pt;}
._39{width:59.568000pt;}
._3b{width:62.064000pt;}
._3a{width:63.120000pt;}
._22{width:64.848000pt;}
._3c{width:67.728000pt;}
._23{width:72.358400pt;}
._3e{width:76.778667pt;}
._3d{width:77.856000pt;}
._3f{width:96.288000pt;}
._33{width:345.376000pt;}
._2{width:1088.266667pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:77.440000pt;}
.fs3{font-size:80.000000pt;}
.y3f{bottom:-4.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y119{bottom:8.946667pt;}
.yf9{bottom:8.960000pt;}
.yfa{bottom:9.120000pt;}
.y108{bottom:12.960000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y11b{bottom:24.986667pt;}
.yfd{bottom:28.800000pt;}
.yf7{bottom:33.600000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y3c{bottom:61.306667pt;}
.y3b{bottom:78.906667pt;}
.y2e{bottom:94.880000pt;}
.yac{bottom:95.200000pt;}
.y16d{bottom:95.520000pt;}
.ye8{bottom:96.000000pt;}
.y3a{bottom:96.506667pt;}
.y140{bottom:96.800000pt;}
.y79{bottom:96.960000pt;}
.y11e{bottom:99.360000pt;}
.y33{bottom:102.720000pt;}
.yc2{bottom:104.960000pt;}
.y2d{bottom:110.720000pt;}
.yab{bottom:111.040000pt;}
.y16c{bottom:111.360000pt;}
.ye7{bottom:111.840000pt;}
.y13f{bottom:112.640000pt;}
.y78{bottom:112.800000pt;}
.y39{bottom:114.106667pt;}
.y11d{bottom:115.200000pt;}
.y32{bottom:118.720000pt;}
.yc1{bottom:120.800000pt;}
.y2c{bottom:126.720000pt;}
.yaa{bottom:126.880000pt;}
.y16b{bottom:127.200000pt;}
.y13e{bottom:128.480000pt;}
.y77{bottom:128.640000pt;}
.y38{bottom:131.706667pt;}
.y31{bottom:134.560000pt;}
.y11c{bottom:134.720000pt;}
.y12d{bottom:134.880000pt;}
.ye6{bottom:135.680000pt;}
.y2b{bottom:142.560000pt;}
.ya9{bottom:142.720000pt;}
.y16a{bottom:143.200000pt;}
.y13d{bottom:144.320000pt;}
.y76{bottom:144.480000pt;}
.yc0{bottom:144.640000pt;}
.y37{bottom:149.466667pt;}
.y30{bottom:150.400000pt;}
.y12c{bottom:150.720000pt;}
.ye5{bottom:151.520000pt;}
.y2a{bottom:158.400000pt;}
.ya8{bottom:158.560000pt;}
.y169{bottom:159.040000pt;}
.y11a{bottom:159.200000pt;}
.y75{bottom:160.320000pt;}
.ybf{bottom:160.480000pt;}
.y2f{bottom:166.240000pt;}
.y12b{bottom:166.560000pt;}
.y36{bottom:167.106667pt;}
.ye4{bottom:167.360000pt;}
.y13c{bottom:170.080000pt;}
.y29{bottom:174.240000pt;}
.ya7{bottom:174.400000pt;}
.y168{bottom:174.880000pt;}
.y74{bottom:176.160000pt;}
.ybe{bottom:176.320000pt;}
.y12a{bottom:182.586667pt;}
.ye3{bottom:183.386667pt;}
.ya6{bottom:190.426667pt;}
.y167{bottom:190.746667pt;}
.y28{bottom:191.866667pt;}
.y73{bottom:192.186667pt;}
.y35{bottom:193.986667pt;}
.y129{bottom:198.426667pt;}
.ye2{bottom:199.226667pt;}
.y118{bottom:199.720000pt;}
.ya5{bottom:206.266667pt;}
.y166{bottom:206.586667pt;}
.y72{bottom:208.026667pt;}
.ybd{bottom:208.186667pt;}
.y27{bottom:212.826667pt;}
.y128{bottom:214.266667pt;}
.ye1{bottom:215.066667pt;}
.ya4{bottom:222.106667pt;}
.y165{bottom:222.426667pt;}
.y71{bottom:223.866667pt;}
.ybc{bottom:224.026667pt;}
.y26{bottom:228.666667pt;}
.y117{bottom:228.826667pt;}
.y127{bottom:230.106667pt;}
.ye0{bottom:230.906667pt;}
.ya3{bottom:237.946667pt;}
.y164{bottom:238.426667pt;}
.y70{bottom:239.706667pt;}
.ybb{bottom:239.866667pt;}
.y34{bottom:243.040000pt;}
.y25{bottom:244.506667pt;}
.y116{bottom:244.666667pt;}
.y126{bottom:245.946667pt;}
.ydf{bottom:246.746667pt;}
.ya2{bottom:253.786667pt;}
.y163{bottom:254.266667pt;}
.y13b{bottom:254.746667pt;}
.y6f{bottom:255.226667pt;}
.yba{bottom:255.706667pt;}
.y3e{bottom:261.146667pt;}
.y125{bottom:261.946667pt;}
.yde{bottom:262.586667pt;}
.y24{bottom:268.346667pt;}
.y115{bottom:268.986667pt;}
.ya1{bottom:269.786667pt;}
.y162{bottom:270.106667pt;}
.y13a{bottom:270.586667pt;}
.yb9{bottom:273.306667pt;}
.ydd{bottom:278.266667pt;}
.y6e{bottom:279.546667pt;}
.y114{bottom:284.826667pt;}
.ya0{bottom:285.306667pt;}
.y161{bottom:285.946667pt;}
.y3d{bottom:286.586667pt;}
.y23{bottom:292.186667pt;}
.y6d{bottom:295.386667pt;}
.yb8{bottom:296.346667pt;}
.y113{bottom:300.666667pt;}
.y160{bottom:301.786667pt;}
.ydc{bottom:302.426667pt;}
.y124{bottom:308.666667pt;}
.y9f{bottom:309.466667pt;}
.y6c{bottom:311.226667pt;}
.y22{bottom:316.026667pt;}
.y112{bottom:316.506667pt;}
.y15f{bottom:317.786667pt;}
.ydb{bottom:318.266667pt;}
.y123{bottom:324.506667pt;}
.y9e{bottom:325.306667pt;}
.yb7{bottom:325.466667pt;}
.y6b{bottom:327.066667pt;}
.y111{bottom:332.346667pt;}
.y15e{bottom:333.626667pt;}
.yda{bottom:334.106667pt;}
.y21{bottom:340.026667pt;}
.y122{bottom:340.346667pt;}
.y9d{bottom:341.146667pt;}
.yb6{bottom:341.306667pt;}
.y6a{bottom:342.906667pt;}
.y110{bottom:348.346667pt;}
.y15d{bottom:349.466667pt;}
.yd9{bottom:349.946667pt;}
.y121{bottom:356.346667pt;}
.y9c{bottom:356.986667pt;}
.yb5{bottom:357.146667pt;}
.y69{bottom:358.746667pt;}
.y10f{bottom:364.186667pt;}
.y15c{bottom:365.306667pt;}
.yd8{bottom:365.946667pt;}
.y20{bottom:371.706667pt;}
.y120{bottom:372.186667pt;}
.yb4{bottom:372.986667pt;}
.y68{bottom:374.746667pt;}
.y10e{bottom:380.026667pt;}
.y9b{bottom:380.986667pt;}
.y15b{bottom:381.146667pt;}
.yd7{bottom:381.466667pt;}
.y139{bottom:383.546667pt;}
.y1f{bottom:387.546667pt;}
.y11f{bottom:388.026667pt;}
.yb3{bottom:388.986667pt;}
.y67{bottom:390.586667pt;}
.y9a{bottom:396.866667pt;}
.y15a{bottom:397.026667pt;}
.y10d{bottom:403.906667pt;}
.yb2{bottom:404.866667pt;}
.y1e{bottom:405.026667pt;}
.yd6{bottom:405.666667pt;}
.y66{bottom:406.466667pt;}
.y99{bottom:412.706667pt;}
.y159{bottom:413.026667pt;}
.yb1{bottom:420.706667pt;}
.yd5{bottom:421.506667pt;}
.y65{bottom:422.306667pt;}
.y10c{bottom:423.426667pt;}
.y1d{bottom:426.306667pt;}
.y138{bottom:428.546667pt;}
.y158{bottom:428.866667pt;}
.y98{bottom:436.546667pt;}
.yd4{bottom:437.346667pt;}
.y64{bottom:438.146667pt;}
.y137{bottom:444.386667pt;}
.y157{bottom:444.706667pt;}
.y1c{bottom:447.426667pt;}
.y10b{bottom:448.066667pt;}
.y97{bottom:452.386667pt;}
.yd3{bottom:453.186667pt;}
.y63{bottom:455.906667pt;}
.y136{bottom:460.386667pt;}
.y156{bottom:460.546667pt;}
.y96{bottom:468.386667pt;}
.y1b{bottom:468.546667pt;}
.yd2{bottom:469.186667pt;}
.y10a{bottom:472.546667pt;}
.y135{bottom:476.226667pt;}
.y155{bottom:476.386667pt;}
.y62{bottom:478.786667pt;}
.y95{bottom:484.226667pt;}
.yd1{bottom:485.026667pt;}
.y1a{bottom:489.506667pt;}
.y154{bottom:492.386667pt;}
.y109{bottom:497.026667pt;}
.y94{bottom:500.066667pt;}
.yd0{bottom:500.866667pt;}
.y61{bottom:507.906667pt;}
.y153{bottom:508.226667pt;}
.y19{bottom:509.026667pt;}
.y93{bottom:515.906667pt;}
.ycf{bottom:516.706667pt;}
.y107{bottom:521.666667pt;}
.y60{bottom:523.746667pt;}
.y152{bottom:524.066667pt;}
.y92{bottom:531.746667pt;}
.yce{bottom:532.546667pt;}
.y18{bottom:536.386667pt;}
.y5f{bottom:539.586667pt;}
.yb0{bottom:539.746667pt;}
.y151{bottom:539.906667pt;}
.y134{bottom:547.586667pt;}
.ycd{bottom:548.546667pt;}
.y5e{bottom:555.586667pt;}
.y150{bottom:555.746667pt;}
.y133{bottom:563.586667pt;}
.y17{bottom:563.746667pt;}
.ycc{bottom:564.386667pt;}
.y106{bottom:570.626667pt;}
.y5d{bottom:571.426667pt;}
.y91{bottom:571.586667pt;}
.y132{bottom:579.426667pt;}
.ycb{bottom:580.226667pt;}
.y5c{bottom:587.266667pt;}
.y90{bottom:587.426667pt;}
.y14f{bottom:587.586667pt;}
.y102{bottom:594.786667pt;}
.y131{bottom:595.266667pt;}
.yca{bottom:595.746667pt;}
.y17f{bottom:599.266667pt;}
.y5b{bottom:603.133333pt;}
.y8f{bottom:603.293333pt;}
.y14e{bottom:603.453333pt;}
.y16{bottom:607.133333pt;}
.y101{bottom:610.813333pt;}
.y130{bottom:611.133333pt;}
.yc9{bottom:611.613333pt;}
.y17e{bottom:615.133333pt;}
.y105{bottom:618.813333pt;}
.y5a{bottom:618.973333pt;}
.y8e{bottom:619.133333pt;}
.y14d{bottom:619.293333pt;}
.y15{bottom:626.493333pt;}
.y100{bottom:626.653333pt;}
.yc8{bottom:629.533333pt;}
.y17d{bottom:630.973333pt;}
.y104{bottom:634.653333pt;}
.y59{bottom:634.813333pt;}
.y8d{bottom:634.973333pt;}
.y14c{bottom:635.133333pt;}
.yff{bottom:642.493333pt;}
.y17c{bottom:646.813333pt;}
.y103{bottom:650.493333pt;}
.y58{bottom:650.813333pt;}
.y14b{bottom:650.973333pt;}
.yc7{bottom:658.813333pt;}
.yfe{bottom:662.013333pt;}
.y17b{bottom:662.653333pt;}
.y8c{bottom:666.813333pt;}
.y14{bottom:669.693333pt;}
.y57{bottom:674.653333pt;}
.y17a{bottom:678.653333pt;}
.y8b{bottom:682.653333pt;}
.y14a{bottom:682.813333pt;}
.yfc{bottom:686.653333pt;}
.y56{bottom:690.493333pt;}
.y179{bottom:694.493333pt;}
.y8a{bottom:698.493333pt;}
.y149{bottom:698.653333pt;}
.y55{bottom:706.333333pt;}
.yaf{bottom:706.493333pt;}
.y178{bottom:710.333333pt;}
.y13{bottom:710.813333pt;}
.y12f{bottom:714.333333pt;}
.y148{bottom:714.493333pt;}
.yc6{bottom:721.853333pt;}
.y54{bottom:722.173333pt;}
.y89{bottom:722.333333pt;}
.y177{bottom:726.173333pt;}
.y12e{bottom:730.173333pt;}
.y147{bottom:730.333333pt;}
.yfb{bottom:730.973333pt;}
.y12{bottom:736.413333pt;}
.y53{bottom:738.173333pt;}
.y176{bottom:742.013333pt;}
.yc5{bottom:746.173333pt;}
.y52{bottom:754.013333pt;}
.y88{bottom:754.173333pt;}
.yf6{bottom:755.453333pt;}
.y175{bottom:757.853333pt;}
.yc4{bottom:762.013333pt;}
.y146{bottom:762.173333pt;}
.y51{bottom:769.853333pt;}
.y87{bottom:770.013333pt;}
.y11{bottom:770.173333pt;}
.y174{bottom:773.853333pt;}
.yc3{bottom:777.853333pt;}
.y145{bottom:778.013333pt;}
.yf8{bottom:780.093333pt;}
.y86{bottom:785.853333pt;}
.y173{bottom:789.693333pt;}
.y10{bottom:790.333333pt;}
.y50{bottom:793.693333pt;}
.y144{bottom:793.853333pt;}
.y85{bottom:801.693333pt;}
.y172{bottom:805.533333pt;}
.yf5{bottom:809.253333pt;}
.y4f{bottom:809.573333pt;}
.yf{bottom:809.733333pt;}
.y84{bottom:817.573333pt;}
.y171{bottom:821.413333pt;}
.y4e{bottom:825.413333pt;}
.y143{bottom:825.573333pt;}
.ye{bottom:829.093333pt;}
.y83{bottom:833.413333pt;}
.yf4{bottom:834.373333pt;}
.y170{bottom:837.253333pt;}
.y4d{bottom:841.413333pt;}
.yd{bottom:848.133333pt;}
.y82{bottom:849.413333pt;}
.yf3{bottom:850.213333pt;}
.y16f{bottom:853.253333pt;}
.y4c{bottom:857.253333pt;}
.y142{bottom:857.413333pt;}
.y81{bottom:865.253333pt;}
.yf2{bottom:866.053333pt;}
.yc{bottom:867.813333pt;}
.y4b{bottom:873.093333pt;}
.y141{bottom:873.253333pt;}
.yae{bottom:881.093333pt;}
.yf1{bottom:881.893333pt;}
.y16e{bottom:885.413333pt;}
.y4a{bottom:888.933333pt;}
.y80{bottom:889.093333pt;}
.yad{bottom:896.933333pt;}
.yf0{bottom:897.733333pt;}
.yb{bottom:904.453333pt;}
.y7f{bottom:904.933333pt;}
.y49{bottom:912.773333pt;}
.ya{bottom:915.173333pt;}
.y7e{bottom:920.773333pt;}
.yef{bottom:921.573333pt;}
.y9{bottom:925.893333pt;}
.ye9{bottom:928.453333pt;}
.y48{bottom:928.773333pt;}
.y8{bottom:936.613333pt;}
.y7d{bottom:936.773333pt;}
.yee{bottom:937.573333pt;}
.y47{bottom:944.613333pt;}
.y7{bottom:949.573333pt;}
.y7c{bottom:952.613333pt;}
.yed{bottom:953.413333pt;}
.y46{bottom:960.453333pt;}
.y7b{bottom:968.453333pt;}
.yec{bottom:969.253333pt;}
.y6{bottom:972.293333pt;}
.y45{bottom:976.293333pt;}
.y7a{bottom:984.293333pt;}
.yeb{bottom:985.093333pt;}
.y44{bottom:1000.133333pt;}
.yea{bottom:1002.693333pt;}
.y43{bottom:1015.973333pt;}
.y42{bottom:1032.000000pt;}
.y41{bottom:1047.840000pt;}
.y40{bottom:1063.680000pt;}
.h20{height:23.826667pt;}
.h1b{height:23.840000pt;}
.h1c{height:24.000000pt;}
.h2{height:27.676000pt;}
.h7{height:36.431250pt;}
.h1f{height:39.562500pt;}
.h21{height:39.872000pt;}
.h17{height:43.031250pt;}
.h1e{height:43.666667pt;}
.h1d{height:43.680000pt;}
.h15{height:47.085938pt;}
.h3{height:47.109375pt;}
.hf{height:48.375000pt;}
.h1a{height:48.480000pt;}
.h19{height:49.336436pt;}
.h16{height:49.968750pt;}
.h14{height:52.108438pt;}
.h8{height:52.134375pt;}
.h13{height:52.234000pt;}
.h18{height:52.526250pt;}
.h9{height:53.535000pt;}
.hd{height:57.787500pt;}
.h4{height:58.563750pt;}
.hc{height:59.340000pt;}
.h22{height:62.812500pt;}
.he{height:64.500000pt;}
.h12{height:69.660000pt;}
.h10{height:71.955000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.hb{height:78.045000pt;}
.h6{height:80.625000pt;}
.h11{height:218.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:55.040000pt;}
.w3{width:71.386667pt;}
.w13{width:82.580000pt;}
.w10{width:83.840000pt;}
.wb{width:84.512000pt;}
.w6{width:89.298667pt;}
.we{width:101.298667pt;}
.w15{width:101.312000pt;}
.w9{width:101.426667pt;}
.w12{width:101.632000pt;}
.w16{width:108.180000pt;}
.w14{width:116.640000pt;}
.wf{width:125.312000pt;}
.w5{width:125.466667pt;}
.wd{width:135.066667pt;}
.wc{width:135.702667pt;}
.wa{width:151.066667pt;}
.w8{width:220.862667pt;}
.w7{width:253.146667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.720000pt;}
.x5{left:7.680000pt;}
.x15{left:9.600000pt;}
.x2a{left:17.280000pt;}
.x31{left:20.160000pt;}
.x14{left:34.880000pt;}
.x1{left:40.324000pt;}
.x16{left:44.480000pt;}
.x2f{left:46.724000pt;}
.x6{left:48.000000pt;}
.x1e{left:51.684000pt;}
.xf{left:54.560000pt;}
.x29{left:57.280000pt;}
.x2c{left:60.000000pt;}
.x13{left:72.000000pt;}
.x30{left:79.840000pt;}
.xc{left:85.312000pt;}
.x17{left:96.032000pt;}
.x2b{left:100.986667pt;}
.x1a{left:102.272000pt;}
.x21{left:112.832000pt;}
.x28{left:135.706667pt;}
.x2e{left:155.546667pt;}
.x20{left:188.026667pt;}
.x2{left:197.662667pt;}
.x27{left:238.146667pt;}
.x3{left:241.182667pt;}
.xd{left:243.586667pt;}
.x9{left:252.066667pt;}
.x2d{left:257.666667pt;}
.xa{left:264.066667pt;}
.x7{left:267.106667pt;}
.x1d{left:273.186667pt;}
.x11{left:279.426667pt;}
.x26{left:293.826667pt;}
.xe{left:316.226667pt;}
.x8{left:323.906667pt;}
.xb{left:336.706667pt;}
.x10{left:375.586667pt;}
.x25{left:378.466667pt;}
.x32{left:402.013333pt;}
.x12{left:420.893333pt;}
.x1f{left:424.906667pt;}
.x18{left:444.893333pt;}
.x19{left:468.893333pt;}
.x24{left:504.426667pt;}
.x1c{left:526.986667pt;}
.x22{left:606.533333pt;}
.x1b{left:616.933333pt;}
.x4{left:682.213333pt;}
}




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