
    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_f7fbe9a51d1b7019297b6eac.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d903b16ec79eb08e4be81ccc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_a3c0c0f6cbc4e7dad3525ea2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_09721f5a6b10e210237e1e71.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1e51e157fe4a180c7a564f71.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8a05df122ec3752316f99e52.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.649414;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_22dc991b42aa14e328f65d9e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f2e4f67410d0323edd5125c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_e115aa9934bdcbdb1f3ccbd0.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-20.880000px;}
.v5{vertical-align:-13.680000px;}
.v6{vertical-align:-10.080000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:5.760000px;}
.v9{vertical-align:13.680000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.vd{vertical-align:38.880000px;}
.v8{vertical-align:44.640000px;}
.ve{vertical-align:46.800000px;}
.v7{vertical-align:50.520000px;}
.vc{vertical-align:58.320000px;}
.vb{vertical-align:95.040000px;}
.ls28{letter-spacing:-0.870000px;}
.lsf{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.612000px;}
.ls29{letter-spacing:-0.433200px;}
.ls2b{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.262200px;}
.ls10{letter-spacing:-0.028800px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.041760px;}
.ls1{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.089280px;}
.ls1f{letter-spacing:0.109200px;}
.ls15{letter-spacing:0.128640px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.262200px;}
.ls2a{letter-spacing:0.286800px;}
.lsd{letter-spacing:0.305400px;}
.lsc{letter-spacing:0.315360px;}
.ls0{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.782400px;}
.ls20{letter-spacing:0.810000px;}
.ls6{letter-spacing:1.025280px;}
.ls1e{letter-spacing:1.411200px;}
.ls9{letter-spacing:1.800000px;}
.lsb{letter-spacing:2.727360px;}
.ls1a{letter-spacing:2.908800px;}
.lsa{letter-spacing:2.934720px;}
.ls22{letter-spacing:3.620160px;}
.ls18{letter-spacing:3.628800px;}
.ls1d{letter-spacing:3.947760px;}
.ls17{letter-spacing:4.091760px;}
.ls19{letter-spacing:4.178160px;}
.ls24{letter-spacing:9.950400px;}
.ls23{letter-spacing:14.598720px;}
.ls8{letter-spacing:17.478720px;}
.ls21{letter-spacing:18.198720px;}
.ls1c{letter-spacing:19.067760px;}
.ls25{letter-spacing:21.620160px;}
.ls1b{letter-spacing:21.947760px;}
.ls16{letter-spacing:22.091760px;}
.ls7{letter-spacing:23.666400px;}
.ls5{letter-spacing:33.984000px;}
.ls2c{letter-spacing:40.625280px;}
.ls26{letter-spacing:144.318720px;}
.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;}
}
.ws10{word-spacing:-66.240000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.822200px;}
.wse{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.297800px;}
.ws1e{word-spacing:-16.254600px;}
.wsc{word-spacing:-15.948000px;}
.ws7{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.690000px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.572800px;}
.wsb{word-spacing:-14.544000px;}
.wsf{word-spacing:-11.250000px;}
.ws16{word-spacing:-10.899600px;}
.wsa{word-spacing:-10.654560px;}
.ws9{word-spacing:-10.612800px;}
.ws1{word-spacing:-10.440000px;}
.ws18{word-spacing:-10.179600px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:2.905920px;}
.ws11{word-spacing:3.625920px;}
.ws12{word-spacing:3.745920px;}
.ws13{word-spacing:6.096240px;}
.ws19{word-spacing:7.065360px;}
.ws1d{word-spacing:7.110000px;}
.ws17{word-spacing:9.696240px;}
.ws1a{word-spacing:10.715760px;}
.ws15{word-spacing:12.223920px;}
.ws1c{word-spacing:16.475760px;}
._17{margin-left:-12.837360px;}
._14{margin-left:-8.928000px;}
._16{margin-left:-7.632000px;}
._15{margin-left:-6.364800px;}
._6{margin-left:-4.168800px;}
._4{margin-left:-3.113280px;}
._0{margin-left:-1.591920px;}
._1{width:1.000080px;}
._2{width:2.685360px;}
._5{width:3.810720px;}
._a{width:5.187360px;}
._7{width:6.491520px;}
._d{width:7.583520px;}
._b{width:8.611200px;}
._c{width:10.004400px;}
._8{width:11.459520px;}
._9{width:12.581280px;}
._10{width:14.181840px;}
._3{width:15.310080px;}
._1a{width:17.622000px;}
._13{width:19.303680px;}
._12{width:20.944800px;}
._11{width:21.991680px;}
._e{width:24.906240px;}
._f{width:25.968240px;}
._18{width:29.586000px;}
._19{width:43.253280px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ydf{bottom:3.600000px;}
.y8d{bottom:3.645000px;}
.ye4{bottom:3.945000px;}
.y91{bottom:3.960000px;}
.ye3{bottom:5.385000px;}
.y90{bottom:5.400000px;}
.y8e{bottom:5.445000px;}
.yf7{bottom:5.940000px;}
.yf4{bottom:7.380000px;}
.y3{bottom:12.780000px;}
.y115{bottom:19.080000px;}
.y2{bottom:22.860000px;}
.y114{bottom:38.160000px;}
.y2a{bottom:40.860000px;}
.y1{bottom:46.080000px;}
.y29{bottom:64.080000px;}
.y85{bottom:129.780000px;}
.yf2{bottom:140.040000px;}
.y5a{bottom:140.940000px;}
.y84{bottom:149.220000px;}
.y113{bottom:159.840000px;}
.y59{bottom:160.560000px;}
.yf1{bottom:165.420000px;}
.y83{bottom:168.840000px;}
.yd7{bottom:176.940000px;}
.y58{bottom:180.000000px;}
.yf0{bottom:187.920000px;}
.yac{bottom:192.420000px;}
.y82{bottom:197.280000px;}
.y57{bottom:199.440000px;}
.yd6{bottom:205.560000px;}
.yef{bottom:210.420000px;}
.yab{bottom:211.860000px;}
.y81{bottom:216.720000px;}
.y56{bottom:219.060000px;}
.yd5{bottom:225.000000px;}
.yaa{bottom:231.300000px;}
.yee{bottom:232.920000px;}
.y80{bottom:236.340000px;}
.y55{bottom:238.500000px;}
.yd4{bottom:244.470000px;}
.ya9{bottom:250.950000px;}
.y27{bottom:253.290000px;}
.yed{bottom:255.465000px;}
.yd3{bottom:264.090000px;}
.y7f{bottom:264.810000px;}
.y54{bottom:267.330000px;}
.y26{bottom:272.730000px;}
.yec{bottom:277.965000px;}
.ya8{bottom:279.390000px;}
.yd2{bottom:283.530000px;}
.y7e{bottom:284.250000px;}
.y25{bottom:292.170000px;}
.yeb{bottom:300.465000px;}
.yd1{bottom:302.970000px;}
.y7d{bottom:303.870000px;}
.ya7{bottom:307.830000px;}
.y24{bottom:311.790000px;}
.y53{bottom:314.670000px;}
.yd0{bottom:322.590000px;}
.yea{bottom:322.965000px;}
.y7c{bottom:323.310000px;}
.ya6{bottom:327.450000px;}
.y23{bottom:331.230000px;}
.y52{bottom:334.290000px;}
.y7b{bottom:342.750000px;}
.ye9{bottom:345.465000px;}
.y22{bottom:350.670000px;}
.ycf{bottom:351.210000px;}
.y51{bottom:353.730000px;}
.ya5{bottom:355.710000px;}
.ye8{bottom:367.965000px;}
.y21{bottom:370.290000px;}
.y7a{bottom:371.190000px;}
.y50{bottom:373.170000px;}
.y20{bottom:389.730000px;}
.ye7{bottom:390.465000px;}
.y4f{bottom:392.790000px;}
.yce{bottom:398.730000px;}
.y79{bottom:408.270000px;}
.y1f{bottom:409.170000px;}
.y4e{bottom:412.230000px;}
.ya4{bottom:412.410000px;}
.ye6{bottom:412.965000px;}
.ycd{bottom:418.170000px;}
.y78{bottom:427.710000px;}
.y1e{bottom:428.790000px;}
.y4d{bottom:431.670000px;}
.ya3{bottom:431.850000px;}
.ye5{bottom:435.465000px;}
.ycc{bottom:437.610000px;}
.y77{bottom:447.330000px;}
.y1d{bottom:448.230000px;}
.y4c{bottom:451.290000px;}
.ycb{bottom:457.230000px;}
.ye2{bottom:457.965000px;}
.y76{bottom:466.770000px;}
.y1c{bottom:467.670000px;}
.ya2{bottom:470.910000px;}
.yca{bottom:476.715000px;}
.y4b{bottom:479.775000px;}
.ye1{bottom:480.495000px;}
.y1b{bottom:487.335000px;}
.y75{bottom:495.255000px;}
.yc9{bottom:496.155000px;}
.y4a{bottom:499.215000px;}
.ya1{bottom:499.395000px;}
.ye0{bottom:502.995000px;}
.y112{bottom:503.535000px;}
.y1a{bottom:506.775000px;}
.yc8{bottom:515.775000px;}
.y49{bottom:518.835000px;}
.y19{bottom:526.215000px;}
.y111{bottom:532.155000px;}
.y74{bottom:532.335000px;}
.y123{bottom:534.315000px;}
.yc7{bottom:535.215000px;}
.y48{bottom:538.275000px;}
.ya0{bottom:538.455000px;}
.y18{bottom:545.835000px;}
.y110{bottom:551.595000px;}
.y73{bottom:551.775000px;}
.y122{bottom:553.935000px;}
.y47{bottom:557.715000px;}
.y9f{bottom:557.895000px;}
.yc6{bottom:563.655000px;}
.y17{bottom:565.275000px;}
.yde{bottom:568.515000px;}
.y10f{bottom:571.035000px;}
.y72{bottom:571.395000px;}
.y46{bottom:577.335000px;}
.y121{bottom:582.735000px;}
.y16{bottom:584.715000px;}
.y9e{bottom:586.335000px;}
.y10e{bottom:590.655000px;}
.ydd{bottom:596.235000px;}
.y71{bottom:599.835000px;}
.yc5{bottom:600.735000px;}
.y15{bottom:604.335000px;}
.y45{bottom:605.775000px;}
.y9d{bottom:605.955000px;}
.y10d{bottom:610.095000px;}
.ydc{bottom:615.855000px;}
.y70{bottom:619.275000px;}
.yc4{bottom:620.175000px;}
.y14{bottom:623.775000px;}
.y44{bottom:625.215000px;}
.y10c{bottom:629.535000px;}
.y120{bottom:630.075000px;}
.y9c{bottom:634.395000px;}
.ydb{bottom:635.295000px;}
.y6f{bottom:638.895000px;}
.yc3{bottom:639.795000px;}
.y13{bottom:643.215000px;}
.y43{bottom:644.835000px;}
.y11f{bottom:649.515000px;}
.yda{bottom:654.735000px;}
.y10b{bottom:658.155000px;}
.y6e{bottom:658.335000px;}
.yc2{bottom:659.235000px;}
.y12{bottom:662.835000px;}
.y42{bottom:664.275000px;}
.yd9{bottom:674.355000px;}
.y10a{bottom:677.595000px;}
.y11e{bottom:678.135000px;}
.yc1{bottom:678.675000px;}
.y11{bottom:682.275000px;}
.y9b{bottom:682.455000px;}
.y41{bottom:683.715000px;}
.y6d{bottom:686.415000px;}
.y109{bottom:697.035000px;}
.y6c{bottom:697.575000px;}
.y10{bottom:701.745000px;}
.y9a{bottom:701.925000px;}
.yd8{bottom:702.825000px;}
.y40{bottom:703.365000px;}
.y11d{bottom:706.605000px;}
.yc0{bottom:706.785000px;}
.ybf{bottom:715.065000px;}
.y108{bottom:716.685000px;}
.yf3{bottom:718.665000px;}
.yf{bottom:721.365000px;}
.y3f{bottom:722.805000px;}
.y99{bottom:730.185000px;}
.ybe{bottom:733.965000px;}
.y11c{bottom:735.045000px;}
.y107{bottom:736.125000px;}
.y6b{bottom:736.845000px;}
.ye{bottom:740.805000px;}
.y3e{bottom:742.245000px;}
.y106{bottom:755.565000px;}
.y6a{bottom:756.285000px;}
.yd{bottom:760.245000px;}
.y3d{bottom:761.865000px;}
.y11b{bottom:763.665000px;}
.y98{bottom:767.625000px;}
.ybd{bottom:772.665000px;}
.y69{bottom:775.725000px;}
.yc{bottom:779.865000px;}
.y105{bottom:781.140000px;}
.y3c{bottom:781.305000px;}
.y97{bottom:786.525000px;}
.ybc{bottom:792.105000px;}
.y11a{bottom:792.465000px;}
.yb{bottom:799.305000px;}
.y3b{bottom:800.745000px;}
.y104{bottom:803.640000px;}
.y68{bottom:804.345000px;}
.y96{bottom:805.605000px;}
.ybb{bottom:820.365000px;}
.y67{bottom:823.785000px;}
.y95{bottom:824.505000px;}
.y103{bottom:826.140000px;}
.y3a{bottom:829.365000px;}
.yba{bottom:831.525000px;}
.ya{bottom:837.105000px;}
.y119{bottom:839.805000px;}
.y66{bottom:843.225000px;}
.y94{bottom:843.585000px;}
.y102{bottom:848.640000px;}
.y39{bottom:848.805000px;}
.y93{bottom:859.245000px;}
.y65{bottom:862.845000px;}
.y38{bottom:868.245000px;}
.yb9{bottom:870.045000px;}
.y101{bottom:871.140000px;}
.y118{bottom:878.865000px;}
.y92{bottom:881.745000px;}
.y64{bottom:882.285000px;}
.y37{bottom:887.865000px;}
.yb8{bottom:889.485000px;}
.y9{bottom:889.665000px;}
.y100{bottom:893.640000px;}
.y8f{bottom:904.245000px;}
.y36{bottom:907.305000px;}
.yb7{bottom:909.105000px;}
.y8{bottom:910.725000px;}
.yff{bottom:916.125000px;}
.y35{bottom:926.745000px;}
.y8c{bottom:927.465000px;}
.y7{bottom:936.870000px;}
.yb6{bottom:937.230000px;}
.yfe{bottom:938.670000px;}
.y34{bottom:946.410000px;}
.y63{bottom:947.850000px;}
.yb5{bottom:948.390000px;}
.yfd{bottom:961.170000px;}
.y33{bottom:965.850000px;}
.y62{bottom:967.290000px;}
.y8b{bottom:969.810000px;}
.y6{bottom:980.790000px;}
.yfc{bottom:983.670000px;}
.y32{bottom:985.290000px;}
.yb4{bottom:987.090000px;}
.y61{bottom:996.090000px;}
.y8a{bottom:997.530000px;}
.y31{bottom:1004.910000px;}
.yfb{bottom:1006.170000px;}
.y117{bottom:1013.910000px;}
.yb3{bottom:1015.530000px;}
.y89{bottom:1016.970000px;}
.y30{bottom:1024.350000px;}
.yfa{bottom:1028.670000px;}
.y116{bottom:1033.350000px;}
.yb2{bottom:1034.970000px;}
.y88{bottom:1036.590000px;}
.y60{bottom:1043.610000px;}
.y5{bottom:1045.050000px;}
.yf9{bottom:1051.170000px;}
.y2f{bottom:1052.790000px;}
.yb1{bottom:1054.590000px;}
.y87{bottom:1056.030000px;}
.y5f{bottom:1063.050000px;}
.y4{bottom:1072.050000px;}
.y2e{bottom:1072.410000px;}
.yf8{bottom:1073.670000px;}
.yb0{bottom:1074.030000px;}
.y5e{bottom:1082.490000px;}
.y86{bottom:1084.470000px;}
.y2d{bottom:1091.850000px;}
.yaf{bottom:1093.470000px;}
.yf6{bottom:1097.610000px;}
.y5d{bottom:1102.110000px;}
.y2c{bottom:1111.290000px;}
.yae{bottom:1113.090000px;}
.y5c{bottom:1121.550000px;}
.y2b{bottom:1140.090000px;}
.y5b{bottom:1140.990000px;}
.yad{bottom:1141.350000px;}
.yf5{bottom:1141.710000px;}
.y28{bottom:1204.920000px;}
.h18{height:22.485000px;}
.h12{height:22.500000px;}
.h19{height:22.521000px;}
.h11{height:22.522500px;}
.h1a{height:22.536000px;}
.h1c{height:23.565000px;}
.h1b{height:31.320000px;}
.h3{height:37.440000px;}
.h8{height:38.158594px;}
.ha{height:47.321367px;}
.h2{height:52.971680px;}
.h1d{height:53.100000px;}
.h7{height:58.651172px;}
.h6{height:60.226875px;}
.h4{height:65.010937px;}
.h10{height:66.757500px;}
.h1e{height:68.084282px;}
.hc{height:68.956875px;}
.h9{height:72.562500px;}
.hf{height:73.582031px;}
.hb{height:74.953125px;}
.h5{height:84.898125px;}
.h17{height:106.702031px;}
.he{height:109.650938px;}
.h15{height:112.462031px;}
.h13{height:123.982031px;}
.hd{height:124.102031px;}
.h16{height:145.582031px;}
.h14{height:168.622031px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1d{width:32.565000px;}
.w21{width:33.645000px;}
.w23{width:34.005000px;}
.w1f{width:36.165000px;}
.w1e{width:36.201000px;}
.w1c{width:37.065000px;}
.w18{width:37.260000px;}
.w17{width:37.641000px;}
.w2{width:38.160000px;}
.w22{width:38.505000px;}
.w14{width:38.511000px;}
.w20{width:38.865000px;}
.wb{width:38.910000px;}
.w16{width:39.045000px;}
.wd{width:39.051000px;}
.w1a{width:39.060000px;}
.w4{width:39.240000px;}
.wa{width:39.261000px;}
.w7{width:39.276000px;}
.w9{width:39.405000px;}
.w5{width:39.420000px;}
.w19{width:41.580000px;}
.w6{width:41.760000px;}
.w1b{width:42.516000px;}
.w8{width:42.645000px;}
.w13{width:47.190000px;}
.w12{width:47.505000px;}
.wf{width:47.541000px;}
.w11{width:47.556000px;}
.we{width:47.685000px;}
.w10{width:47.700000px;}
.wc{width:133.582500px;}
.w3{width:133.942500px;}
.w24{width:631.215000px;}
.w15{width:679.635000px;}
.w1{width:892.500000px;}
.w0{width:892.620000px;}
.x0{left:0.000000px;}
.x11{left:5.211000px;}
.x38{left:12.945000px;}
.x49{left:19.065000px;}
.x4b{left:20.700000px;}
.x4a{left:22.665000px;}
.x46{left:24.150000px;}
.x48{left:25.380000px;}
.x47{left:28.080000px;}
.x3{left:29.700000px;}
.x4d{left:32.385000px;}
.x39{left:34.005000px;}
.x3a{left:39.771000px;}
.xb{left:106.416000px;}
.xf{left:108.936000px;}
.x5{left:123.516000px;}
.x4{left:126.936000px;}
.x4c{left:130.185000px;}
.x10{left:139.905000px;}
.x37{left:141.165000px;}
.x22{left:171.930000px;}
.x1{left:173.190000px;}
.x3b{left:176.610000px;}
.x2c{left:180.045000px;}
.x3c{left:199.845000px;}
.x2d{left:227.745000px;}
.x3d{left:239.625000px;}
.x6{left:256.035000px;}
.x12{left:274.395000px;}
.x8{left:277.995000px;}
.x13{left:313.635000px;}
.x2e{left:322.995000px;}
.x14{left:353.055000px;}
.x3e{left:356.115000px;}
.x1e{left:359.535000px;}
.x28{left:361.335000px;}
.x23{left:364.395000px;}
.x2f{left:370.695000px;}
.x1f{left:380.775000px;}
.x7{left:390.495000px;}
.x20{left:392.475000px;}
.x15{left:394.815000px;}
.xd{left:398.955000px;}
.xa{left:401.295000px;}
.x9{left:405.975000px;}
.x29{left:408.705000px;}
.x30{left:418.260000px;}
.xc{left:427.425000px;}
.x16{left:434.100000px;}
.x3f{left:437.700000px;}
.x21{left:444.165000px;}
.xe{left:449.745000px;}
.x2a{left:463.065000px;}
.x31{left:465.960000px;}
.x24{left:470.805000px;}
.x40{left:474.780000px;}
.x17{left:476.760000px;}
.x41{left:507.360000px;}
.x32{left:513.480000px;}
.x18{left:516.180000px;}
.x2b{left:531.465000px;}
.x42{left:546.420000px;}
.x19{left:555.600000px;}
.x33{left:561.180000px;}
.x25{left:578.490000px;}
.x43{left:582.630000px;}
.x1a{left:594.870000px;}
.x34{left:608.730000px;}
.x44{left:618.810000px;}
.x26{left:632.490000px;}
.x1b{left:634.290000px;}
.x35{left:656.430000px;}
.x45{left:657.690000px;}
.x1c{left:673.710000px;}
.x27{left:677.850000px;}
.x36{left:704.130000px;}
.x1d{left:713.130000px;}
.x2{left:748.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-12.160000pt;}
.v6{vertical-align:-8.960000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:5.120000pt;}
.v9{vertical-align:12.160000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.vd{vertical-align:34.560000pt;}
.v8{vertical-align:39.680000pt;}
.ve{vertical-align:41.600000pt;}
.v7{vertical-align:44.906667pt;}
.vc{vertical-align:51.840000pt;}
.vb{vertical-align:84.480000pt;}
.ls28{letter-spacing:-0.773333pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls29{letter-spacing:-0.385067pt;}
.ls2b{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.233067pt;}
.ls10{letter-spacing:-0.025600pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.037120pt;}
.ls1{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.079360pt;}
.ls1f{letter-spacing:0.097067pt;}
.ls15{letter-spacing:0.114347pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.233067pt;}
.ls2a{letter-spacing:0.254933pt;}
.lsd{letter-spacing:0.271467pt;}
.lsc{letter-spacing:0.280320pt;}
.ls0{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.695467pt;}
.ls20{letter-spacing:0.720000pt;}
.ls6{letter-spacing:0.911360pt;}
.ls1e{letter-spacing:1.254400pt;}
.ls9{letter-spacing:1.600000pt;}
.lsb{letter-spacing:2.424320pt;}
.ls1a{letter-spacing:2.585600pt;}
.lsa{letter-spacing:2.608640pt;}
.ls22{letter-spacing:3.217920pt;}
.ls18{letter-spacing:3.225600pt;}
.ls1d{letter-spacing:3.509120pt;}
.ls17{letter-spacing:3.637120pt;}
.ls19{letter-spacing:3.713920pt;}
.ls24{letter-spacing:8.844800pt;}
.ls23{letter-spacing:12.976640pt;}
.ls8{letter-spacing:15.536640pt;}
.ls21{letter-spacing:16.176640pt;}
.ls1c{letter-spacing:16.949120pt;}
.ls25{letter-spacing:19.217920pt;}
.ls1b{letter-spacing:19.509120pt;}
.ls16{letter-spacing:19.637120pt;}
.ls7{letter-spacing:21.036800pt;}
.ls5{letter-spacing:30.208000pt;}
.ls2c{letter-spacing:36.111360pt;}
.ls26{letter-spacing:128.283307pt;}
.ws10{word-spacing:-58.880000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.953067pt;}
.wse{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.486933pt;}
.ws1e{word-spacing:-14.448533pt;}
.wsc{word-spacing:-14.176000pt;}
.ws7{word-spacing:-14.080000pt;}
.ws14{word-spacing:-13.946667pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.953600pt;}
.wsb{word-spacing:-12.928000pt;}
.wsf{word-spacing:-10.000000pt;}
.ws16{word-spacing:-9.688533pt;}
.wsa{word-spacing:-9.470720pt;}
.ws9{word-spacing:-9.433600pt;}
.ws1{word-spacing:-9.280000pt;}
.ws18{word-spacing:-9.048533pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:2.583040pt;}
.ws11{word-spacing:3.223040pt;}
.ws12{word-spacing:3.329707pt;}
.ws13{word-spacing:5.418880pt;}
.ws19{word-spacing:6.280320pt;}
.ws1d{word-spacing:6.320000pt;}
.ws17{word-spacing:8.618880pt;}
.ws1a{word-spacing:9.525120pt;}
.ws15{word-spacing:10.865707pt;}
.ws1c{word-spacing:14.645120pt;}
._17{margin-left:-11.410987pt;}
._14{margin-left:-7.936000pt;}
._16{margin-left:-6.784000pt;}
._15{margin-left:-5.657600pt;}
._6{margin-left:-3.705600pt;}
._4{margin-left:-2.767360pt;}
._0{margin-left:-1.415040pt;}
._1{width:0.888960pt;}
._2{width:2.386987pt;}
._5{width:3.387307pt;}
._a{width:4.610987pt;}
._7{width:5.770240pt;}
._d{width:6.740907pt;}
._b{width:7.654400pt;}
._c{width:8.892800pt;}
._8{width:10.186240pt;}
._9{width:11.183360pt;}
._10{width:12.606080pt;}
._3{width:13.608960pt;}
._1a{width:15.664000pt;}
._13{width:17.158827pt;}
._12{width:18.617600pt;}
._11{width:19.548160pt;}
._e{width:22.138880pt;}
._f{width:23.082880pt;}
._18{width:26.298667pt;}
._19{width:38.447360pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:3.200000pt;}
.y8d{bottom:3.240000pt;}
.ye4{bottom:3.506667pt;}
.y91{bottom:3.520000pt;}
.ye3{bottom:4.786667pt;}
.y90{bottom:4.800000pt;}
.y8e{bottom:4.840000pt;}
.yf7{bottom:5.280000pt;}
.yf4{bottom:6.560000pt;}
.y3{bottom:11.360000pt;}
.y115{bottom:16.960000pt;}
.y2{bottom:20.320000pt;}
.y114{bottom:33.920000pt;}
.y2a{bottom:36.320000pt;}
.y1{bottom:40.960000pt;}
.y29{bottom:56.960000pt;}
.y85{bottom:115.360000pt;}
.yf2{bottom:124.480000pt;}
.y5a{bottom:125.280000pt;}
.y84{bottom:132.640000pt;}
.y113{bottom:142.080000pt;}
.y59{bottom:142.720000pt;}
.yf1{bottom:147.040000pt;}
.y83{bottom:150.080000pt;}
.yd7{bottom:157.280000pt;}
.y58{bottom:160.000000pt;}
.yf0{bottom:167.040000pt;}
.yac{bottom:171.040000pt;}
.y82{bottom:175.360000pt;}
.y57{bottom:177.280000pt;}
.yd6{bottom:182.720000pt;}
.yef{bottom:187.040000pt;}
.yab{bottom:188.320000pt;}
.y81{bottom:192.640000pt;}
.y56{bottom:194.720000pt;}
.yd5{bottom:200.000000pt;}
.yaa{bottom:205.600000pt;}
.yee{bottom:207.040000pt;}
.y80{bottom:210.080000pt;}
.y55{bottom:212.000000pt;}
.yd4{bottom:217.306667pt;}
.ya9{bottom:223.066667pt;}
.y27{bottom:225.146667pt;}
.yed{bottom:227.080000pt;}
.yd3{bottom:234.746667pt;}
.y7f{bottom:235.386667pt;}
.y54{bottom:237.626667pt;}
.y26{bottom:242.426667pt;}
.yec{bottom:247.080000pt;}
.ya8{bottom:248.346667pt;}
.yd2{bottom:252.026667pt;}
.y7e{bottom:252.666667pt;}
.y25{bottom:259.706667pt;}
.yeb{bottom:267.080000pt;}
.yd1{bottom:269.306667pt;}
.y7d{bottom:270.106667pt;}
.ya7{bottom:273.626667pt;}
.y24{bottom:277.146667pt;}
.y53{bottom:279.706667pt;}
.yd0{bottom:286.746667pt;}
.yea{bottom:287.080000pt;}
.y7c{bottom:287.386667pt;}
.ya6{bottom:291.066667pt;}
.y23{bottom:294.426667pt;}
.y52{bottom:297.146667pt;}
.y7b{bottom:304.666667pt;}
.ye9{bottom:307.080000pt;}
.y22{bottom:311.706667pt;}
.ycf{bottom:312.186667pt;}
.y51{bottom:314.426667pt;}
.ya5{bottom:316.186667pt;}
.ye8{bottom:327.080000pt;}
.y21{bottom:329.146667pt;}
.y7a{bottom:329.946667pt;}
.y50{bottom:331.706667pt;}
.y20{bottom:346.426667pt;}
.ye7{bottom:347.080000pt;}
.y4f{bottom:349.146667pt;}
.yce{bottom:354.426667pt;}
.y79{bottom:362.906667pt;}
.y1f{bottom:363.706667pt;}
.y4e{bottom:366.426667pt;}
.ya4{bottom:366.586667pt;}
.ye6{bottom:367.080000pt;}
.ycd{bottom:371.706667pt;}
.y78{bottom:380.186667pt;}
.y1e{bottom:381.146667pt;}
.y4d{bottom:383.706667pt;}
.ya3{bottom:383.866667pt;}
.ye5{bottom:387.080000pt;}
.ycc{bottom:388.986667pt;}
.y77{bottom:397.626667pt;}
.y1d{bottom:398.426667pt;}
.y4c{bottom:401.146667pt;}
.ycb{bottom:406.426667pt;}
.ye2{bottom:407.080000pt;}
.y76{bottom:414.906667pt;}
.y1c{bottom:415.706667pt;}
.ya2{bottom:418.586667pt;}
.yca{bottom:423.746667pt;}
.y4b{bottom:426.466667pt;}
.ye1{bottom:427.106667pt;}
.y1b{bottom:433.186667pt;}
.y75{bottom:440.226667pt;}
.yc9{bottom:441.026667pt;}
.y4a{bottom:443.746667pt;}
.ya1{bottom:443.906667pt;}
.ye0{bottom:447.106667pt;}
.y112{bottom:447.586667pt;}
.y1a{bottom:450.466667pt;}
.yc8{bottom:458.466667pt;}
.y49{bottom:461.186667pt;}
.y19{bottom:467.746667pt;}
.y111{bottom:473.026667pt;}
.y74{bottom:473.186667pt;}
.y123{bottom:474.946667pt;}
.yc7{bottom:475.746667pt;}
.y48{bottom:478.466667pt;}
.ya0{bottom:478.626667pt;}
.y18{bottom:485.186667pt;}
.y110{bottom:490.306667pt;}
.y73{bottom:490.466667pt;}
.y122{bottom:492.386667pt;}
.y47{bottom:495.746667pt;}
.y9f{bottom:495.906667pt;}
.yc6{bottom:501.026667pt;}
.y17{bottom:502.466667pt;}
.yde{bottom:505.346667pt;}
.y10f{bottom:507.586667pt;}
.y72{bottom:507.906667pt;}
.y46{bottom:513.186667pt;}
.y121{bottom:517.986667pt;}
.y16{bottom:519.746667pt;}
.y9e{bottom:521.186667pt;}
.y10e{bottom:525.026667pt;}
.ydd{bottom:529.986667pt;}
.y71{bottom:533.186667pt;}
.yc5{bottom:533.986667pt;}
.y15{bottom:537.186667pt;}
.y45{bottom:538.466667pt;}
.y9d{bottom:538.626667pt;}
.y10d{bottom:542.306667pt;}
.ydc{bottom:547.426667pt;}
.y70{bottom:550.466667pt;}
.yc4{bottom:551.266667pt;}
.y14{bottom:554.466667pt;}
.y44{bottom:555.746667pt;}
.y10c{bottom:559.586667pt;}
.y120{bottom:560.066667pt;}
.y9c{bottom:563.906667pt;}
.ydb{bottom:564.706667pt;}
.y6f{bottom:567.906667pt;}
.yc3{bottom:568.706667pt;}
.y13{bottom:571.746667pt;}
.y43{bottom:573.186667pt;}
.y11f{bottom:577.346667pt;}
.yda{bottom:581.986667pt;}
.y10b{bottom:585.026667pt;}
.y6e{bottom:585.186667pt;}
.yc2{bottom:585.986667pt;}
.y12{bottom:589.186667pt;}
.y42{bottom:590.466667pt;}
.yd9{bottom:599.426667pt;}
.y10a{bottom:602.306667pt;}
.y11e{bottom:602.786667pt;}
.yc1{bottom:603.266667pt;}
.y11{bottom:606.466667pt;}
.y9b{bottom:606.626667pt;}
.y41{bottom:607.746667pt;}
.y6d{bottom:610.146667pt;}
.y109{bottom:619.586667pt;}
.y6c{bottom:620.066667pt;}
.y10{bottom:623.773333pt;}
.y9a{bottom:623.933333pt;}
.yd8{bottom:624.733333pt;}
.y40{bottom:625.213333pt;}
.y11d{bottom:628.093333pt;}
.yc0{bottom:628.253333pt;}
.ybf{bottom:635.613333pt;}
.y108{bottom:637.053333pt;}
.yf3{bottom:638.813333pt;}
.yf{bottom:641.213333pt;}
.y3f{bottom:642.493333pt;}
.y99{bottom:649.053333pt;}
.ybe{bottom:652.413333pt;}
.y11c{bottom:653.373333pt;}
.y107{bottom:654.333333pt;}
.y6b{bottom:654.973333pt;}
.ye{bottom:658.493333pt;}
.y3e{bottom:659.773333pt;}
.y106{bottom:671.613333pt;}
.y6a{bottom:672.253333pt;}
.yd{bottom:675.773333pt;}
.y3d{bottom:677.213333pt;}
.y11b{bottom:678.813333pt;}
.y98{bottom:682.333333pt;}
.ybd{bottom:686.813333pt;}
.y69{bottom:689.533333pt;}
.yc{bottom:693.213333pt;}
.y105{bottom:694.346667pt;}
.y3c{bottom:694.493333pt;}
.y97{bottom:699.133333pt;}
.ybc{bottom:704.093333pt;}
.y11a{bottom:704.413333pt;}
.yb{bottom:710.493333pt;}
.y3b{bottom:711.773333pt;}
.y104{bottom:714.346667pt;}
.y68{bottom:714.973333pt;}
.y96{bottom:716.093333pt;}
.ybb{bottom:729.213333pt;}
.y67{bottom:732.253333pt;}
.y95{bottom:732.893333pt;}
.y103{bottom:734.346667pt;}
.y3a{bottom:737.213333pt;}
.yba{bottom:739.133333pt;}
.ya{bottom:744.093333pt;}
.y119{bottom:746.493333pt;}
.y66{bottom:749.533333pt;}
.y94{bottom:749.853333pt;}
.y102{bottom:754.346667pt;}
.y39{bottom:754.493333pt;}
.y93{bottom:763.773333pt;}
.y65{bottom:766.973333pt;}
.y38{bottom:771.773333pt;}
.yb9{bottom:773.373333pt;}
.y101{bottom:774.346667pt;}
.y118{bottom:781.213333pt;}
.y92{bottom:783.773333pt;}
.y64{bottom:784.253333pt;}
.y37{bottom:789.213333pt;}
.yb8{bottom:790.653333pt;}
.y9{bottom:790.813333pt;}
.y100{bottom:794.346667pt;}
.y8f{bottom:803.773333pt;}
.y36{bottom:806.493333pt;}
.yb7{bottom:808.093333pt;}
.y8{bottom:809.533333pt;}
.yff{bottom:814.333333pt;}
.y35{bottom:823.773333pt;}
.y8c{bottom:824.413333pt;}
.y7{bottom:832.773333pt;}
.yb6{bottom:833.093333pt;}
.yfe{bottom:834.373333pt;}
.y34{bottom:841.253333pt;}
.y63{bottom:842.533333pt;}
.yb5{bottom:843.013333pt;}
.yfd{bottom:854.373333pt;}
.y33{bottom:858.533333pt;}
.y62{bottom:859.813333pt;}
.y8b{bottom:862.053333pt;}
.y6{bottom:871.813333pt;}
.yfc{bottom:874.373333pt;}
.y32{bottom:875.813333pt;}
.yb4{bottom:877.413333pt;}
.y61{bottom:885.413333pt;}
.y8a{bottom:886.693333pt;}
.y31{bottom:893.253333pt;}
.yfb{bottom:894.373333pt;}
.y117{bottom:901.253333pt;}
.yb3{bottom:902.693333pt;}
.y89{bottom:903.973333pt;}
.y30{bottom:910.533333pt;}
.yfa{bottom:914.373333pt;}
.y116{bottom:918.533333pt;}
.yb2{bottom:919.973333pt;}
.y88{bottom:921.413333pt;}
.y60{bottom:927.653333pt;}
.y5{bottom:928.933333pt;}
.yf9{bottom:934.373333pt;}
.y2f{bottom:935.813333pt;}
.yb1{bottom:937.413333pt;}
.y87{bottom:938.693333pt;}
.y5f{bottom:944.933333pt;}
.y4{bottom:952.933333pt;}
.y2e{bottom:953.253333pt;}
.yf8{bottom:954.373333pt;}
.yb0{bottom:954.693333pt;}
.y5e{bottom:962.213333pt;}
.y86{bottom:963.973333pt;}
.y2d{bottom:970.533333pt;}
.yaf{bottom:971.973333pt;}
.yf6{bottom:975.653333pt;}
.y5d{bottom:979.653333pt;}
.y2c{bottom:987.813333pt;}
.yae{bottom:989.413333pt;}
.y5c{bottom:996.933333pt;}
.y2b{bottom:1013.413333pt;}
.y5b{bottom:1014.213333pt;}
.yad{bottom:1014.533333pt;}
.yf5{bottom:1014.853333pt;}
.y28{bottom:1071.040000pt;}
.h18{height:19.986667pt;}
.h12{height:20.000000pt;}
.h19{height:20.018667pt;}
.h11{height:20.020000pt;}
.h1a{height:20.032000pt;}
.h1c{height:20.946667pt;}
.h1b{height:27.840000pt;}
.h3{height:33.280000pt;}
.h8{height:33.918750pt;}
.ha{height:42.063437pt;}
.h2{height:47.085938pt;}
.h1d{height:47.200000pt;}
.h7{height:52.134375pt;}
.h6{height:53.535000pt;}
.h4{height:57.787500pt;}
.h10{height:59.340000pt;}
.h1e{height:60.519362pt;}
.hc{height:61.295000pt;}
.h9{height:64.500000pt;}
.hf{height:65.406250pt;}
.hb{height:66.625000pt;}
.h5{height:75.465000pt;}
.h17{height:94.846250pt;}
.he{height:97.467500pt;}
.h15{height:99.966250pt;}
.h13{height:110.206250pt;}
.hd{height:110.312917pt;}
.h16{height:129.406250pt;}
.h14{height:149.886250pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1d{width:28.946667pt;}
.w21{width:29.906667pt;}
.w23{width:30.226667pt;}
.w1f{width:32.146667pt;}
.w1e{width:32.178667pt;}
.w1c{width:32.946667pt;}
.w18{width:33.120000pt;}
.w17{width:33.458667pt;}
.w2{width:33.920000pt;}
.w22{width:34.226667pt;}
.w14{width:34.232000pt;}
.w20{width:34.546667pt;}
.wb{width:34.586667pt;}
.w16{width:34.706667pt;}
.wd{width:34.712000pt;}
.w1a{width:34.720000pt;}
.w4{width:34.880000pt;}
.wa{width:34.898667pt;}
.w7{width:34.912000pt;}
.w9{width:35.026667pt;}
.w5{width:35.040000pt;}
.w19{width:36.960000pt;}
.w6{width:37.120000pt;}
.w1b{width:37.792000pt;}
.w8{width:37.906667pt;}
.w13{width:41.946667pt;}
.w12{width:42.226667pt;}
.wf{width:42.258667pt;}
.w11{width:42.272000pt;}
.we{width:42.386667pt;}
.w10{width:42.400000pt;}
.wc{width:118.740000pt;}
.w3{width:119.060000pt;}
.w24{width:561.080000pt;}
.w15{width:604.120000pt;}
.w1{width:793.333333pt;}
.w0{width:793.440000pt;}
.x0{left:0.000000pt;}
.x11{left:4.632000pt;}
.x38{left:11.506667pt;}
.x49{left:16.946667pt;}
.x4b{left:18.400000pt;}
.x4a{left:20.146667pt;}
.x46{left:21.466667pt;}
.x48{left:22.560000pt;}
.x47{left:24.960000pt;}
.x3{left:26.400000pt;}
.x4d{left:28.786667pt;}
.x39{left:30.226667pt;}
.x3a{left:35.352000pt;}
.xb{left:94.592000pt;}
.xf{left:96.832000pt;}
.x5{left:109.792000pt;}
.x4{left:112.832000pt;}
.x4c{left:115.720000pt;}
.x10{left:124.360000pt;}
.x37{left:125.480000pt;}
.x22{left:152.826667pt;}
.x1{left:153.946667pt;}
.x3b{left:156.986667pt;}
.x2c{left:160.040000pt;}
.x3c{left:177.640000pt;}
.x2d{left:202.440000pt;}
.x3d{left:213.000000pt;}
.x6{left:227.586667pt;}
.x12{left:243.906667pt;}
.x8{left:247.106667pt;}
.x13{left:278.786667pt;}
.x2e{left:287.106667pt;}
.x14{left:313.826667pt;}
.x3e{left:316.546667pt;}
.x1e{left:319.586667pt;}
.x28{left:321.186667pt;}
.x23{left:323.906667pt;}
.x2f{left:329.506667pt;}
.x1f{left:338.466667pt;}
.x7{left:347.106667pt;}
.x20{left:348.866667pt;}
.x15{left:350.946667pt;}
.xd{left:354.626667pt;}
.xa{left:356.706667pt;}
.x9{left:360.866667pt;}
.x29{left:363.293333pt;}
.x30{left:371.786667pt;}
.xc{left:379.933333pt;}
.x16{left:385.866667pt;}
.x3f{left:389.066667pt;}
.x21{left:394.813333pt;}
.xe{left:399.773333pt;}
.x2a{left:411.613333pt;}
.x31{left:414.186667pt;}
.x24{left:418.493333pt;}
.x40{left:422.026667pt;}
.x17{left:423.786667pt;}
.x41{left:450.986667pt;}
.x32{left:456.426667pt;}
.x18{left:458.826667pt;}
.x2b{left:472.413333pt;}
.x42{left:485.706667pt;}
.x19{left:493.866667pt;}
.x33{left:498.826667pt;}
.x25{left:514.213333pt;}
.x43{left:517.893333pt;}
.x1a{left:528.773333pt;}
.x34{left:541.093333pt;}
.x44{left:550.053333pt;}
.x26{left:562.213333pt;}
.x1b{left:563.813333pt;}
.x35{left:583.493333pt;}
.x45{left:584.613333pt;}
.x1c{left:598.853333pt;}
.x27{left:602.533333pt;}
.x36{left:625.893333pt;}
.x1d{left:633.893333pt;}
.x2{left:665.120000pt;}
}




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