
    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_6b06b403e0f69cc83daff2d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_6290497f8c9bf808deeafd4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a3805a24608d97db47cda454.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_13f1211a511a28861bc6ab3e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_0ddc5d99b336606d8fbefe60.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_5cf77da32119a07efbc647be.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_9af737f1914d73900c0e78e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.117676;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_5829e2ea55dacc2392894d41.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.115234;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_3ba45ad2995de53baee75361.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.776855;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.457800px;}
.ls1b{letter-spacing:-0.414600px;}
.ls1f{letter-spacing:-0.262200px;}
.ls15{letter-spacing:-0.226200px;}
.lsc{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.181200px;}
.lsf{letter-spacing:-0.152400px;}
.ls7{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.109200px;}
.ls20{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.018720px;}
.ls11{letter-spacing:0.037440px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.305400px;}
.ls1d{letter-spacing:0.322560px;}
.ls1c{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.408000px;}
.ls3{letter-spacing:0.612000px;}
.ls1e{letter-spacing:0.738720px;}
.ls14{letter-spacing:1.745280px;}
.ls17{letter-spacing:34.841280px;}
.ls1a{letter-spacing:55.362720px;}
.lse{letter-spacing:59.321280px;}
.ls18{letter-spacing:64.002720px;}
.ls19{letter-spacing:64.026720px;}
.ls9{letter-spacing:87.408000px;}
.lsa{letter-spacing:123.984000px;}
.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;}
}
.wsc{word-spacing:-66.240000px;}
.ws11{word-spacing:-59.760000px;}
.wsd{word-spacing:-26.621280px;}
.ws6{word-spacing:-20.304000px;}
.ws0{word-spacing:-20.232000px;}
.ws9{word-spacing:-20.160000px;}
.ws8{word-spacing:-20.016000px;}
.ws7{word-spacing:-19.872000px;}
.wsa{word-spacing:-18.720120px;}
.ws10{word-spacing:-18.676920px;}
.wse{word-spacing:-18.414720px;}
.wsb{word-spacing:-18.305520px;}
.ws14{word-spacing:-18.152520px;}
.ws12{word-spacing:-17.956920px;}
.ws3{word-spacing:-17.225280px;}
.ws2{word-spacing:-16.613280px;}
.ws4{word-spacing:-13.229520px;}
.wsf{word-spacing:-11.383080px;}
.ws13{word-spacing:-2.520000px;}
.ws1{word-spacing:-1.800000px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-16.759680px;}
._a{margin-left:-14.100000px;}
._9{margin-left:-8.016000px;}
._e{margin-left:-5.625120px;}
._8{margin-left:-4.560000px;}
._c{margin-left:-2.604000px;}
._3{margin-left:-1.296000px;}
._0{width:1.656480px;}
._b{width:2.832000px;}
._1b{width:4.405920px;}
._19{width:5.947680px;}
._14{width:7.193760px;}
._12{width:8.582400px;}
._13{width:9.815520px;}
._16{width:11.323680px;}
._1d{width:12.358080px;}
._1c{width:13.495200px;}
._1e{width:15.698880px;}
._10{width:17.354880px;}
._22{width:18.720000px;}
._11{width:19.862880px;}
._1a{width:22.190400px;}
._17{width:23.515200px;}
._18{width:24.716160px;}
._1f{width:25.767360px;}
._20{width:26.818560px;}
._f{width:49.736160px;}
._15{width:59.090880px;}
._7{width:844.140000px;}
._21{width:845.741280px;}
._4{width:930.933360px;}
._1{width:937.566720px;}
._2{width:1026.966720px;}
._5{width:1137.846720px;}
._6{width:1265.304000px;}
.fc6{color:rgb(128,141,144);}
.fc5{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(71,79,81);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs4{font-size:120.240000px;}
.fs3{font-size:156.240000px;}
.fsa{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y150{bottom:3.240000px;}
.yab{bottom:3.600000px;}
.y13f{bottom:3.780000px;}
.y105{bottom:7.020000px;}
.ya8{bottom:8.100000px;}
.yf3{bottom:12.960000px;}
.y26{bottom:14.040000px;}
.y2f{bottom:14.085000px;}
.y2b{bottom:14.220000px;}
.y50{bottom:14.250000px;}
.y3f{bottom:14.265000px;}
.y148{bottom:19.440000px;}
.y14f{bottom:20.520000px;}
.yaa{bottom:22.500000px;}
.y24{bottom:23.475000px;}
.y143{bottom:30.240000px;}
.y141{bottom:35.640000px;}
.y145{bottom:36.390000px;}
.y147{bottom:37.080000px;}
.y14e{bottom:37.620000px;}
.y3b{bottom:45.000000px;}
.y44{bottom:45.174000px;}
.y28{bottom:45.180000px;}
.y4f{bottom:45.210000px;}
.y48{bottom:45.225000px;}
.y14d{bottom:54.900000px;}
.y5{bottom:57.636000px;}
.y23{bottom:72.075000px;}
.y14c{bottom:72.180000px;}
.y4{bottom:78.336000px;}
.y43{bottom:116.496000px;}
.y22{bottom:120.495000px;}
.y20{bottom:126.036000px;}
.yc3{bottom:138.996000px;}
.y5c{bottom:140.796000px;}
.yef{bottom:151.050000px;}
.y128{bottom:155.370000px;}
.y1f{bottom:156.630000px;}
.yc2{bottom:157.890000px;}
.yee{bottom:171.390000px;}
.y127{bottom:174.450000px;}
.y5b{bottom:175.170000px;}
.yc1{bottom:176.790000px;}
.y42{bottom:179.310000px;}
.yed{bottom:191.910000px;}
.y5a{bottom:192.810000px;}
.yc0{bottom:195.870000px;}
.y103{bottom:206.490000px;}
.y41{bottom:211.170000px;}
.yec{bottom:212.430000px;}
.ybf{bottom:214.770000px;}
.y59{bottom:224.670000px;}
.y102{bottom:226.830000px;}
.yeb{bottom:232.950000px;}
.ybe{bottom:233.850000px;}
.y40{bottom:242.850000px;}
.y101{bottom:247.350000px;}
.ybd{bottom:252.750000px;}
.y58{bottom:256.350000px;}
.yea{bottom:264.810000px;}
.y100{bottom:267.690000px;}
.ybc{bottom:271.650000px;}
.y3e{bottom:274.710000px;}
.y151{bottom:279.930000px;}
.y57{bottom:288.255000px;}
.ybb{bottom:290.775000px;}
.y14b{bottom:296.895000px;}
.yff{bottom:300.495000px;}
.y3d{bottom:306.615000px;}
.ye9{bottom:308.775000px;}
.yba{bottom:309.675000px;}
.y56{bottom:320.115000px;}
.y21{bottom:324.540000px;}
.ye8{bottom:327.855000px;}
.yb9{bottom:328.755000px;}
.yfe{bottom:332.895000px;}
.y1e{bottom:345.135000px;}
.ye7{bottom:346.755000px;}
.yb8{bottom:347.655000px;}
.y55{bottom:351.795000px;}
.yfd{bottom:365.475000px;}
.ye6{bottom:365.835000px;}
.yb7{bottom:366.555000px;}
.y3c{bottom:369.435000px;}
.y1d{bottom:379.515000px;}
.y54{bottom:383.655000px;}
.ye5{bottom:384.735000px;}
.yb6{bottom:385.635000px;}
.yfc{bottom:397.875000px;}
.y3a{bottom:401.295000px;}
.ye4{bottom:403.635000px;}
.yb5{bottom:404.535000px;}
.y14a{bottom:408.495000px;}
.y1c{bottom:413.895000px;}
.ye3{bottom:422.715000px;}
.yb4{bottom:423.615000px;}
.y149{bottom:425.775000px;}
.yfb{bottom:430.455000px;}
.ya5{bottom:436.035000px;}
.y13d{bottom:439.815000px;}
.ye2{bottom:441.615000px;}
.yb3{bottom:442.515000px;}
.y53{bottom:446.475000px;}
.y8a{bottom:447.735000px;}
.y1b{bottom:448.095000px;}
.ye1{bottom:460.695000px;}
.yb2{bottom:461.595000px;}
.yfa{bottom:462.855000px;}
.y39{bottom:464.115000px;}
.ya4{bottom:469.875000px;}
.y146{bottom:476.175000px;}
.y52{bottom:478.335000px;}
.ye0{bottom:479.595000px;}
.yb1{bottom:480.495000px;}
.y89{bottom:481.755000px;}
.y1a{bottom:482.475000px;}
.ya3{bottom:490.215000px;}
.yf9{bottom:495.255000px;}
.y38{bottom:495.795000px;}
.ydf{bottom:498.675000px;}
.yb0{bottom:499.395000px;}
.y88{bottom:501.915000px;}
.y51{bottom:510.015000px;}
.ya2{bottom:510.735000px;}
.y126{bottom:511.995000px;}
.y70{bottom:514.875000px;}
.y19{bottom:515.235000px;}
.yde{bottom:517.575000px;}
.yaf{bottom:518.475000px;}
.y113{bottom:520.455000px;}
.y87{bottom:522.435000px;}
.yf8{bottom:527.835000px;}
.y144{bottom:530.175000px;}
.ya1{bottom:531.255000px;}
.y125{bottom:533.055000px;}
.ydd{bottom:536.475000px;}
.yae{bottom:537.375000px;}
.y4e{bottom:541.875000px;}
.y18{bottom:547.845000px;}
.y6f{bottom:549.285000px;}
.ya0{bottom:551.625000px;}
.y112{bottom:552.885000px;}
.y37{bottom:553.785000px;}
.y86{bottom:555.225000px;}
.y124{bottom:555.405000px;}
.ydc{bottom:555.585000px;}
.yad{bottom:556.485000px;}
.yf7{bottom:560.265000px;}
.y6e{bottom:570.885000px;}
.y36{bottom:571.425000px;}
.y9f{bottom:572.145000px;}
.y111{bottom:573.225000px;}
.ydb{bottom:574.485000px;}
.y85{bottom:575.385000px;}
.y17{bottom:580.605000px;}
.y142{bottom:583.485000px;}
.yac{bottom:589.245000px;}
.y6d{bottom:591.405000px;}
.y9e{bottom:592.665000px;}
.yda{bottom:593.565000px;}
.y110{bottom:593.745000px;}
.y84{bottom:595.905000px;}
.y35{bottom:603.285000px;}
.y4d{bottom:604.725000px;}
.ya9{bottom:606.165000px;}
.y123{bottom:609.585000px;}
.y6c{bottom:611.925000px;}
.yd9{bottom:612.465000px;}
.yf6{bottom:613.185000px;}
.y10f{bottom:614.265000px;}
.y16{bottom:614.985000px;}
.y83{bottom:616.425000px;}
.y9d{bottom:625.245000px;}
.y140{bottom:630.645000px;}
.y122{bottom:631.185000px;}
.yd8{bottom:631.365000px;}
.y6b{bottom:632.445000px;}
.yf5{bottom:633.525000px;}
.y10e{bottom:634.605000px;}
.y34{bottom:635.145000px;}
.y4c{bottom:636.585000px;}
.y82{bottom:636.945000px;}
.ya7{bottom:644.145000px;}
.y9c{bottom:645.585000px;}
.y15{bottom:649.365000px;}
.yd7{bottom:650.445000px;}
.y6a{bottom:652.785000px;}
.y10d{bottom:655.125000px;}
.y81{bottom:657.285000px;}
.y9b{bottom:666.105000px;}
.y33{bottom:666.825000px;}
.yf4{bottom:667.185000px;}
.yd6{bottom:669.345000px;}
.y121{bottom:673.305000px;}
.y80{bottom:677.805000px;}
.y13e{bottom:683.205000px;}
.y14{bottom:683.565000px;}
.y9a{bottom:686.625000px;}
.y69{bottom:686.985000px;}
.y10c{bottom:687.885000px;}
.y7f{bottom:698.325000px;}
.y32{bottom:698.685000px;}
.y4b{bottom:699.405000px;}
.yf2{bottom:705.165000px;}
.y99{bottom:706.965000px;}
.y10b{bottom:708.045000px;}
.yd5{bottom:709.305000px;}
.y13{bottom:717.945000px;}
.y7e{bottom:718.845000px;}
.y68{bottom:724.065000px;}
.y13c{bottom:727.305000px;}
.y98{bottom:727.485000px;}
.y10a{bottom:728.565000px;}
.y31{bottom:730.545000px;}
.y4a{bottom:731.265000px;}
.y7d{bottom:739.185000px;}
.y120{bottom:739.365000px;}
.y97{bottom:748.005000px;}
.y109{bottom:749.085000px;}
.yd4{bottom:749.625000px;}
.y12{bottom:752.325000px;}
.y67{bottom:753.765000px;}
.y11f{bottom:759.705000px;}
.y30{bottom:762.225000px;}
.y49{bottom:762.945000px;}
.y13b{bottom:767.625000px;}
.y108{bottom:769.605000px;}
.yd3{bottom:770.325000px;}
.y7c{bottom:771.765000px;}
.y134{bottom:778.245000px;}
.y11e{bottom:780.225000px;}
.y96{bottom:780.585000px;}
.y66{bottom:783.645000px;}
.y11{bottom:786.705000px;}
.y107{bottom:789.945000px;}
.yd2{bottom:791.025000px;}
.y7b{bottom:793.365000px;}
.y2e{bottom:794.085000px;}
.y47{bottom:794.805000px;}
.y11d{bottom:800.745000px;}
.y95{bottom:800.925000px;}
.y65{bottom:805.965000px;}
.y13a{bottom:807.990000px;}
.yd1{bottom:811.770000px;}
.y133{bottom:812.670000px;}
.y7a{bottom:813.930000px;}
.y106{bottom:814.650000px;}
.y10{bottom:820.950000px;}
.y11c{bottom:821.310000px;}
.y94{bottom:821.490000px;}
.y2d{bottom:825.810000px;}
.yd0{bottom:832.470000px;}
.y104{bottom:833.730000px;}
.y79{bottom:835.350000px;}
.y64{bottom:835.890000px;}
.y11b{bottom:841.650000px;}
.y93{bottom:841.830000px;}
.y132{bottom:846.510000px;}
.y139{bottom:848.310000px;}
.ycf{bottom:853.170000px;}
.yf{bottom:855.330000px;}
.y78{bottom:855.870000px;}
.y2c{bottom:857.670000px;}
.y92{bottom:862.350000px;}
.y63{bottom:865.770000px;}
.y131{bottom:866.850000px;}
.yce{bottom:873.510000px;}
.y11a{bottom:874.410000px;}
.ye{bottom:875.490000px;}
.y91{bottom:882.870000px;}
.y130{bottom:887.370000px;}
.y62{bottom:888.090000px;}
.y138{bottom:888.810000px;}
.y77{bottom:889.710000px;}
.ycd{bottom:892.590000px;}
.yd{bottom:892.770000px;}
.y119{bottom:894.570000px;}
.y90{bottom:903.390000px;}
.y12f{bottom:907.710000px;}
.y76{bottom:909.870000px;}
.yc{bottom:910.050000px;}
.ycc{bottom:911.490000px;}
.y118{bottom:915.090000px;}
.y61{bottom:917.970000px;}
.y2a{bottom:920.490000px;}
.y8f{bottom:923.730000px;}
.yb{bottom:927.330000px;}
.y12e{bottom:928.230000px;}
.y137{bottom:929.130000px;}
.ycb{bottom:930.570000px;}
.y117{bottom:935.610000px;}
.y60{bottom:940.290000px;}
.y75{bottom:942.630000px;}
.y8e{bottom:944.250000px;}
.ya{bottom:944.430000px;}
.y12d{bottom:948.750000px;}
.yca{bottom:949.470000px;}
.y29{bottom:952.350000px;}
.y116{bottom:956.130000px;}
.y9{bottom:961.710000px;}
.y74{bottom:962.970000px;}
.y136{bottom:963.330000px;}
.y8d{bottom:964.770000px;}
.yc9{bottom:968.370000px;}
.y5f{bottom:969.990000px;}
.ya6{bottom:972.510000px;}
.y12c{bottom:981.330000px;}
.y46{bottom:983.310000px;}
.y27{bottom:984.210000px;}
.yc8{bottom:987.450000px;}
.y115{bottom:987.990000px;}
.y8{bottom:993.210000px;}
.y8c{bottom:996.630000px;}
.y5e{bottom:1000.950000px;}
.y12b{bottom:1001.670000px;}
.y73{bottom:1003.830000px;}
.y135{bottom:1005.090000px;}
.yc7{bottom:1006.350000px;}
.y45{bottom:1015.170000px;}
.y114{bottom:1017.690000px;}
.y12a{bottom:1022.190000px;}
.y72{bottom:1024.350000px;}
.yc6{bottom:1025.430000px;}
.y8b{bottom:1026.510000px;}
.y7{bottom:1027.590000px;}
.y129{bottom:1042.710000px;}
.yf1{bottom:1042.890000px;}
.yc5{bottom:1044.330000px;}
.y25{bottom:1047.030000px;}
.y5d{bottom:1050.630000px;}
.y71{bottom:1056.210000px;}
.y6{bottom:1061.790000px;}
.yf0{bottom:1063.050000px;}
.yc4{bottom:1063.230000px;}
.y3{bottom:1081.980000px;}
.y2{bottom:1099.260000px;}
.y1{bottom:1117.080000px;}
.h14{height:19.080000px;}
.h19{height:20.700000px;}
.h7{height:30.960000px;}
.h5{height:30.996000px;}
.h8{height:31.140000px;}
.ha{height:31.176000px;}
.h1e{height:36.360000px;}
.h11{height:37.980000px;}
.h1b{height:47.160000px;}
.h1a{height:52.560000px;}
.h1c{height:53.316000px;}
.h1d{height:54.000000px;}
.h15{height:59.415469px;}
.h16{height:59.932969px;}
.h9{height:61.920000px;}
.h6{height:62.100000px;}
.hb{height:62.136000px;}
.h2{height:62.327813px;}
.he{height:69.086250px;}
.h1{height:75.093750px;}
.hd{height:87.859687px;}
.hf{height:99.874688px;}
.h1f{height:108.360000px;}
.hc{height:125.406562px;}
.h3{height:157.140000px;}
.h4{height:162.953438px;}
.h17{height:174.968437px;}
.h13{height:245.010000px;}
.h18{height:264.090000px;}
.h10{height:310.890000px;}
.h12{height:320.610000px;}
.h0{height:1188.000000px;}
.w6{width:62.820000px;}
.wb{width:118.620000px;}
.wd{width:179.100000px;}
.w4{width:342.750000px;}
.w5{width:342.795000px;}
.we{width:523.005000px;}
.w9{width:549.825000px;}
.w8{width:555.585000px;}
.w2{width:561.780000px;}
.wc{width:583.485000px;}
.w7{width:622.725000px;}
.wa{width:667.905000px;}
.w3{width:686.265000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x6{left:10.836000px;}
.x1a{left:16.740000px;}
.x10{left:19.440000px;}
.x14{left:28.620000px;}
.x1c{left:85.494000px;}
.x5{left:96.660000px;}
.x18{left:104.934000px;}
.x1{left:108.035986px;}
.x16{left:125.136000px;}
.xb{left:135.035986px;}
.xd{left:140.435986px;}
.xa{left:144.035986px;}
.x11{left:148.905000px;}
.xc{left:162.029986px;}
.x1d{left:170.994000px;}
.x9{left:172.290000px;}
.xe{left:181.290000px;}
.x13{left:184.170000px;}
.x12{left:189.029986px;}
.x15{left:225.765000px;}
.x1e{left:287.130000px;}
.x1b{left:414.074986px;}
.x8{left:452.235000px;}
.xf{left:537.240000px;}
.x17{left:646.494000px;}
.x4{left:660.344986px;}
.x2{left:710.069986px;}
.x19{left:715.469986px;}
.x3{left:725.369986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.406933pt;}
.ls1b{letter-spacing:-0.368533pt;}
.ls1f{letter-spacing:-0.233067pt;}
.ls15{letter-spacing:-0.201067pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.161067pt;}
.lsf{letter-spacing:-0.135467pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls20{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.016640pt;}
.ls11{letter-spacing:0.033280pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.271467pt;}
.ls1d{letter-spacing:0.286720pt;}
.ls1c{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.362667pt;}
.ls3{letter-spacing:0.544000pt;}
.ls1e{letter-spacing:0.656640pt;}
.ls14{letter-spacing:1.551360pt;}
.ls17{letter-spacing:30.970027pt;}
.ls1a{letter-spacing:49.211307pt;}
.lse{letter-spacing:52.730027pt;}
.ls18{letter-spacing:56.891307pt;}
.ls19{letter-spacing:56.912640pt;}
.ls9{letter-spacing:77.696000pt;}
.lsa{letter-spacing:110.208000pt;}
.wsc{word-spacing:-58.880000pt;}
.ws11{word-spacing:-53.120000pt;}
.wsd{word-spacing:-23.663360pt;}
.ws6{word-spacing:-18.048000pt;}
.ws0{word-spacing:-17.984000pt;}
.ws9{word-spacing:-17.920000pt;}
.ws8{word-spacing:-17.792000pt;}
.ws7{word-spacing:-17.664000pt;}
.wsa{word-spacing:-16.640107pt;}
.ws10{word-spacing:-16.601707pt;}
.wse{word-spacing:-16.368640pt;}
.wsb{word-spacing:-16.271573pt;}
.ws14{word-spacing:-16.135573pt;}
.ws12{word-spacing:-15.961707pt;}
.ws3{word-spacing:-15.311360pt;}
.ws2{word-spacing:-14.767360pt;}
.ws4{word-spacing:-11.759573pt;}
.wsf{word-spacing:-10.118293pt;}
.ws13{word-spacing:-2.240000pt;}
.ws1{word-spacing:-1.600000pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-14.897493pt;}
._a{margin-left:-12.533333pt;}
._9{margin-left:-7.125333pt;}
._e{margin-left:-5.000107pt;}
._8{margin-left:-4.053333pt;}
._c{margin-left:-2.314667pt;}
._3{margin-left:-1.152000pt;}
._0{width:1.472427pt;}
._b{width:2.517333pt;}
._1b{width:3.916373pt;}
._19{width:5.286827pt;}
._14{width:6.394453pt;}
._12{width:7.628800pt;}
._13{width:8.724907pt;}
._16{width:10.065493pt;}
._1d{width:10.984960pt;}
._1c{width:11.995733pt;}
._1e{width:13.954560pt;}
._10{width:15.426560pt;}
._22{width:16.640000pt;}
._11{width:17.655893pt;}
._1a{width:19.724800pt;}
._17{width:20.902400pt;}
._18{width:21.969920pt;}
._1f{width:22.904320pt;}
._20{width:23.838720pt;}
._f{width:44.209920pt;}
._15{width:52.525227pt;}
._7{width:750.346667pt;}
._21{width:751.770027pt;}
._4{width:827.496320pt;}
._1{width:833.392640pt;}
._2{width:912.859307pt;}
._5{width:1011.419307pt;}
._6{width:1124.714667pt;}
.fs8{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs4{font-size:106.880000pt;}
.fs3{font-size:138.880000pt;}
.fsa{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y150{bottom:2.880000pt;}
.yab{bottom:3.200000pt;}
.y13f{bottom:3.360000pt;}
.y105{bottom:6.240000pt;}
.ya8{bottom:7.200000pt;}
.yf3{bottom:11.520000pt;}
.y26{bottom:12.480000pt;}
.y2f{bottom:12.520000pt;}
.y2b{bottom:12.640000pt;}
.y50{bottom:12.666667pt;}
.y3f{bottom:12.680000pt;}
.y148{bottom:17.280000pt;}
.y14f{bottom:18.240000pt;}
.yaa{bottom:20.000000pt;}
.y24{bottom:20.866667pt;}
.y143{bottom:26.880000pt;}
.y141{bottom:31.680000pt;}
.y145{bottom:32.346667pt;}
.y147{bottom:32.960000pt;}
.y14e{bottom:33.440000pt;}
.y3b{bottom:40.000000pt;}
.y44{bottom:40.154667pt;}
.y28{bottom:40.160000pt;}
.y4f{bottom:40.186667pt;}
.y48{bottom:40.200000pt;}
.y14d{bottom:48.800000pt;}
.y5{bottom:51.232000pt;}
.y23{bottom:64.066667pt;}
.y14c{bottom:64.160000pt;}
.y4{bottom:69.632000pt;}
.y43{bottom:103.552000pt;}
.y22{bottom:107.106667pt;}
.y20{bottom:112.032000pt;}
.yc3{bottom:123.552000pt;}
.y5c{bottom:125.152000pt;}
.yef{bottom:134.266667pt;}
.y128{bottom:138.106667pt;}
.y1f{bottom:139.226667pt;}
.yc2{bottom:140.346667pt;}
.yee{bottom:152.346667pt;}
.y127{bottom:155.066667pt;}
.y5b{bottom:155.706667pt;}
.yc1{bottom:157.146667pt;}
.y42{bottom:159.386667pt;}
.yed{bottom:170.586667pt;}
.y5a{bottom:171.386667pt;}
.yc0{bottom:174.106667pt;}
.y103{bottom:183.546667pt;}
.y41{bottom:187.706667pt;}
.yec{bottom:188.826667pt;}
.ybf{bottom:190.906667pt;}
.y59{bottom:199.706667pt;}
.y102{bottom:201.626667pt;}
.yeb{bottom:207.066667pt;}
.ybe{bottom:207.866667pt;}
.y40{bottom:215.866667pt;}
.y101{bottom:219.866667pt;}
.ybd{bottom:224.666667pt;}
.y58{bottom:227.866667pt;}
.yea{bottom:235.386667pt;}
.y100{bottom:237.946667pt;}
.ybc{bottom:241.466667pt;}
.y3e{bottom:244.186667pt;}
.y151{bottom:248.826667pt;}
.y57{bottom:256.226667pt;}
.ybb{bottom:258.466667pt;}
.y14b{bottom:263.906667pt;}
.yff{bottom:267.106667pt;}
.y3d{bottom:272.546667pt;}
.ye9{bottom:274.466667pt;}
.yba{bottom:275.266667pt;}
.y56{bottom:284.546667pt;}
.y21{bottom:288.480000pt;}
.ye8{bottom:291.426667pt;}
.yb9{bottom:292.226667pt;}
.yfe{bottom:295.906667pt;}
.y1e{bottom:306.786667pt;}
.ye7{bottom:308.226667pt;}
.yb8{bottom:309.026667pt;}
.y55{bottom:312.706667pt;}
.yfd{bottom:324.866667pt;}
.ye6{bottom:325.186667pt;}
.yb7{bottom:325.826667pt;}
.y3c{bottom:328.386667pt;}
.y1d{bottom:337.346667pt;}
.y54{bottom:341.026667pt;}
.ye5{bottom:341.986667pt;}
.yb6{bottom:342.786667pt;}
.yfc{bottom:353.666667pt;}
.y3a{bottom:356.706667pt;}
.ye4{bottom:358.786667pt;}
.yb5{bottom:359.586667pt;}
.y14a{bottom:363.106667pt;}
.y1c{bottom:367.906667pt;}
.ye3{bottom:375.746667pt;}
.yb4{bottom:376.546667pt;}
.y149{bottom:378.466667pt;}
.yfb{bottom:382.626667pt;}
.ya5{bottom:387.586667pt;}
.y13d{bottom:390.946667pt;}
.ye2{bottom:392.546667pt;}
.yb3{bottom:393.346667pt;}
.y53{bottom:396.866667pt;}
.y8a{bottom:397.986667pt;}
.y1b{bottom:398.306667pt;}
.ye1{bottom:409.506667pt;}
.yb2{bottom:410.306667pt;}
.yfa{bottom:411.426667pt;}
.y39{bottom:412.546667pt;}
.ya4{bottom:417.666667pt;}
.y146{bottom:423.266667pt;}
.y52{bottom:425.186667pt;}
.ye0{bottom:426.306667pt;}
.yb1{bottom:427.106667pt;}
.y89{bottom:428.226667pt;}
.y1a{bottom:428.866667pt;}
.ya3{bottom:435.746667pt;}
.yf9{bottom:440.226667pt;}
.y38{bottom:440.706667pt;}
.ydf{bottom:443.266667pt;}
.yb0{bottom:443.906667pt;}
.y88{bottom:446.146667pt;}
.y51{bottom:453.346667pt;}
.ya2{bottom:453.986667pt;}
.y126{bottom:455.106667pt;}
.y70{bottom:457.666667pt;}
.y19{bottom:457.986667pt;}
.yde{bottom:460.066667pt;}
.yaf{bottom:460.866667pt;}
.y113{bottom:462.626667pt;}
.y87{bottom:464.386667pt;}
.yf8{bottom:469.186667pt;}
.y144{bottom:471.266667pt;}
.ya1{bottom:472.226667pt;}
.y125{bottom:473.826667pt;}
.ydd{bottom:476.866667pt;}
.yae{bottom:477.666667pt;}
.y4e{bottom:481.666667pt;}
.y18{bottom:486.973333pt;}
.y6f{bottom:488.253333pt;}
.ya0{bottom:490.333333pt;}
.y112{bottom:491.453333pt;}
.y37{bottom:492.253333pt;}
.y86{bottom:493.533333pt;}
.y124{bottom:493.693333pt;}
.ydc{bottom:493.853333pt;}
.yad{bottom:494.653333pt;}
.yf7{bottom:498.013333pt;}
.y6e{bottom:507.453333pt;}
.y36{bottom:507.933333pt;}
.y9f{bottom:508.573333pt;}
.y111{bottom:509.533333pt;}
.ydb{bottom:510.653333pt;}
.y85{bottom:511.453333pt;}
.y17{bottom:516.093333pt;}
.y142{bottom:518.653333pt;}
.yac{bottom:523.773333pt;}
.y6d{bottom:525.693333pt;}
.y9e{bottom:526.813333pt;}
.yda{bottom:527.613333pt;}
.y110{bottom:527.773333pt;}
.y84{bottom:529.693333pt;}
.y35{bottom:536.253333pt;}
.y4d{bottom:537.533333pt;}
.ya9{bottom:538.813333pt;}
.y123{bottom:541.853333pt;}
.y6c{bottom:543.933333pt;}
.yd9{bottom:544.413333pt;}
.yf6{bottom:545.053333pt;}
.y10f{bottom:546.013333pt;}
.y16{bottom:546.653333pt;}
.y83{bottom:547.933333pt;}
.y9d{bottom:555.773333pt;}
.y140{bottom:560.573333pt;}
.y122{bottom:561.053333pt;}
.yd8{bottom:561.213333pt;}
.y6b{bottom:562.173333pt;}
.yf5{bottom:563.133333pt;}
.y10e{bottom:564.093333pt;}
.y34{bottom:564.573333pt;}
.y4c{bottom:565.853333pt;}
.y82{bottom:566.173333pt;}
.ya7{bottom:572.573333pt;}
.y9c{bottom:573.853333pt;}
.y15{bottom:577.213333pt;}
.yd7{bottom:578.173333pt;}
.y6a{bottom:580.253333pt;}
.y10d{bottom:582.333333pt;}
.y81{bottom:584.253333pt;}
.y9b{bottom:592.093333pt;}
.y33{bottom:592.733333pt;}
.yf4{bottom:593.053333pt;}
.yd6{bottom:594.973333pt;}
.y121{bottom:598.493333pt;}
.y80{bottom:602.493333pt;}
.y13e{bottom:607.293333pt;}
.y14{bottom:607.613333pt;}
.y9a{bottom:610.333333pt;}
.y69{bottom:610.653333pt;}
.y10c{bottom:611.453333pt;}
.y7f{bottom:620.733333pt;}
.y32{bottom:621.053333pt;}
.y4b{bottom:621.693333pt;}
.yf2{bottom:626.813333pt;}
.y99{bottom:628.413333pt;}
.y10b{bottom:629.373333pt;}
.yd5{bottom:630.493333pt;}
.y13{bottom:638.173333pt;}
.y7e{bottom:638.973333pt;}
.y68{bottom:643.613333pt;}
.y13c{bottom:646.493333pt;}
.y98{bottom:646.653333pt;}
.y10a{bottom:647.613333pt;}
.y31{bottom:649.373333pt;}
.y4a{bottom:650.013333pt;}
.y7d{bottom:657.053333pt;}
.y120{bottom:657.213333pt;}
.y97{bottom:664.893333pt;}
.y109{bottom:665.853333pt;}
.yd4{bottom:666.333333pt;}
.y12{bottom:668.733333pt;}
.y67{bottom:670.013333pt;}
.y11f{bottom:675.293333pt;}
.y30{bottom:677.533333pt;}
.y49{bottom:678.173333pt;}
.y13b{bottom:682.333333pt;}
.y108{bottom:684.093333pt;}
.yd3{bottom:684.733333pt;}
.y7c{bottom:686.013333pt;}
.y134{bottom:691.773333pt;}
.y11e{bottom:693.533333pt;}
.y96{bottom:693.853333pt;}
.y66{bottom:696.573333pt;}
.y11{bottom:699.293333pt;}
.y107{bottom:702.173333pt;}
.yd2{bottom:703.133333pt;}
.y7b{bottom:705.213333pt;}
.y2e{bottom:705.853333pt;}
.y47{bottom:706.493333pt;}
.y11d{bottom:711.773333pt;}
.y95{bottom:711.933333pt;}
.y65{bottom:716.413333pt;}
.y13a{bottom:718.213333pt;}
.yd1{bottom:721.573333pt;}
.y133{bottom:722.373333pt;}
.y7a{bottom:723.493333pt;}
.y106{bottom:724.133333pt;}
.y10{bottom:729.733333pt;}
.y11c{bottom:730.053333pt;}
.y94{bottom:730.213333pt;}
.y2d{bottom:734.053333pt;}
.yd0{bottom:739.973333pt;}
.y104{bottom:741.093333pt;}
.y79{bottom:742.533333pt;}
.y64{bottom:743.013333pt;}
.y11b{bottom:748.133333pt;}
.y93{bottom:748.293333pt;}
.y132{bottom:752.453333pt;}
.y139{bottom:754.053333pt;}
.ycf{bottom:758.373333pt;}
.yf{bottom:760.293333pt;}
.y78{bottom:760.773333pt;}
.y2c{bottom:762.373333pt;}
.y92{bottom:766.533333pt;}
.y63{bottom:769.573333pt;}
.y131{bottom:770.533333pt;}
.yce{bottom:776.453333pt;}
.y11a{bottom:777.253333pt;}
.ye{bottom:778.213333pt;}
.y91{bottom:784.773333pt;}
.y130{bottom:788.773333pt;}
.y62{bottom:789.413333pt;}
.y138{bottom:790.053333pt;}
.y77{bottom:790.853333pt;}
.ycd{bottom:793.413333pt;}
.yd{bottom:793.573333pt;}
.y119{bottom:795.173333pt;}
.y90{bottom:803.013333pt;}
.y12f{bottom:806.853333pt;}
.y76{bottom:808.773333pt;}
.yc{bottom:808.933333pt;}
.ycc{bottom:810.213333pt;}
.y118{bottom:813.413333pt;}
.y61{bottom:815.973333pt;}
.y2a{bottom:818.213333pt;}
.y8f{bottom:821.093333pt;}
.yb{bottom:824.293333pt;}
.y12e{bottom:825.093333pt;}
.y137{bottom:825.893333pt;}
.ycb{bottom:827.173333pt;}
.y117{bottom:831.653333pt;}
.y60{bottom:835.813333pt;}
.y75{bottom:837.893333pt;}
.y8e{bottom:839.333333pt;}
.ya{bottom:839.493333pt;}
.y12d{bottom:843.333333pt;}
.yca{bottom:843.973333pt;}
.y29{bottom:846.533333pt;}
.y116{bottom:849.893333pt;}
.y9{bottom:854.853333pt;}
.y74{bottom:855.973333pt;}
.y136{bottom:856.293333pt;}
.y8d{bottom:857.573333pt;}
.yc9{bottom:860.773333pt;}
.y5f{bottom:862.213333pt;}
.ya6{bottom:864.453333pt;}
.y12c{bottom:872.293333pt;}
.y46{bottom:874.053333pt;}
.y27{bottom:874.853333pt;}
.yc8{bottom:877.733333pt;}
.y115{bottom:878.213333pt;}
.y8{bottom:882.853333pt;}
.y8c{bottom:885.893333pt;}
.y5e{bottom:889.733333pt;}
.y12b{bottom:890.373333pt;}
.y73{bottom:892.293333pt;}
.y135{bottom:893.413333pt;}
.yc7{bottom:894.533333pt;}
.y45{bottom:902.373333pt;}
.y114{bottom:904.613333pt;}
.y12a{bottom:908.613333pt;}
.y72{bottom:910.533333pt;}
.yc6{bottom:911.493333pt;}
.y8b{bottom:912.453333pt;}
.y7{bottom:913.413333pt;}
.y129{bottom:926.853333pt;}
.yf1{bottom:927.013333pt;}
.yc5{bottom:928.293333pt;}
.y25{bottom:930.693333pt;}
.y5d{bottom:933.893333pt;}
.y71{bottom:938.853333pt;}
.y6{bottom:943.813333pt;}
.yf0{bottom:944.933333pt;}
.yc4{bottom:945.093333pt;}
.y3{bottom:961.760000pt;}
.y2{bottom:977.120000pt;}
.y1{bottom:992.960000pt;}
.h14{height:16.960000pt;}
.h19{height:18.400000pt;}
.h7{height:27.520000pt;}
.h5{height:27.552000pt;}
.h8{height:27.680000pt;}
.ha{height:27.712000pt;}
.h1e{height:32.320000pt;}
.h11{height:33.760000pt;}
.h1b{height:41.920000pt;}
.h1a{height:46.720000pt;}
.h1c{height:47.392000pt;}
.h1d{height:48.000000pt;}
.h15{height:52.813750pt;}
.h16{height:53.273750pt;}
.h9{height:55.040000pt;}
.h6{height:55.200000pt;}
.hb{height:55.232000pt;}
.h2{height:55.402500pt;}
.he{height:61.410000pt;}
.h1{height:66.750000pt;}
.hd{height:78.097500pt;}
.hf{height:88.777500pt;}
.h1f{height:96.320000pt;}
.hc{height:111.472500pt;}
.h3{height:139.680000pt;}
.h4{height:144.847500pt;}
.h17{height:155.527500pt;}
.h13{height:217.786667pt;}
.h18{height:234.746667pt;}
.h10{height:276.346667pt;}
.h12{height:284.986667pt;}
.h0{height:1056.000000pt;}
.w6{width:55.840000pt;}
.wb{width:105.440000pt;}
.wd{width:159.200000pt;}
.w4{width:304.666667pt;}
.w5{width:304.706667pt;}
.we{width:464.893333pt;}
.w9{width:488.733333pt;}
.w8{width:493.853333pt;}
.w2{width:499.360000pt;}
.wc{width:518.653333pt;}
.w7{width:553.533333pt;}
.wa{width:593.693333pt;}
.w3{width:610.013333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x6{left:9.632000pt;}
.x1a{left:14.880000pt;}
.x10{left:17.280000pt;}
.x14{left:25.440000pt;}
.x1c{left:75.994667pt;}
.x5{left:85.920000pt;}
.x18{left:93.274667pt;}
.x1{left:96.031988pt;}
.x16{left:111.232000pt;}
.xb{left:120.031988pt;}
.xd{left:124.831988pt;}
.xa{left:128.031988pt;}
.x11{left:132.360000pt;}
.xc{left:144.026655pt;}
.x1d{left:151.994667pt;}
.x9{left:153.146667pt;}
.xe{left:161.146667pt;}
.x13{left:163.706667pt;}
.x12{left:168.026655pt;}
.x15{left:200.680000pt;}
.x1e{left:255.226667pt;}
.x1b{left:368.066655pt;}
.x8{left:401.986667pt;}
.xf{left:477.546667pt;}
.x17{left:574.661333pt;}
.x4{left:586.973321pt;}
.x2{left:631.173321pt;}
.x19{left:635.973321pt;}
.x3{left:644.773321pt;}
}




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