
    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_5339ea924e543e5c266181a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7c9fa9747cde64a959976b06.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6ce2732655bec9f15a5f6630.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6db5e8e761dacf4ee5028635.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_a1bc79103e31bb0b6d5bdfab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1ae3ced222641492247c1a6a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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);}
.v5{vertical-align:-42.900000px;}
.v4{vertical-align:-27.600000px;}
.v2{vertical-align:-21.660000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.660000px;}
.v3{vertical-align:27.600000px;}
.lsb{letter-spacing:-3.600000px;}
.ls1b{letter-spacing:-1.224000px;}
.ls10{letter-spacing:-1.200000px;}
.lsa{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.496200px;}
.lsc{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.420000px;}
.ls17{letter-spacing:-0.378000px;}
.ls20{letter-spacing:-0.348000px;}
.lsf{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.024000px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.024000px;}
.ls16{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.174000px;}
.ls1f{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.270000px;}
.ls1e{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.384000px;}
.ls11{letter-spacing:0.432000px;}
.lse{letter-spacing:0.528000px;}
.ls0{letter-spacing:0.600000px;}
.ls15{letter-spacing:4.800000px;}
.ls1d{letter-spacing:6.852000px;}
.ls18{letter-spacing:8.340000px;}
.ls7{letter-spacing:13.200000px;}
.ls8{letter-spacing:16.800000px;}
.ls1a{letter-spacing:40.452000px;}
.ls3{letter-spacing:71.400000px;}
.ls1{letter-spacing:71.460000px;}
.ls4{letter-spacing:91.500000px;}
.ls2{letter-spacing:92.700000px;}
.ls12{letter-spacing:163.200000px;}
.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:-18.432000px;}
.ws5{word-spacing:-18.384000px;}
.ws6{word-spacing:-18.024000px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.976000px;}
.ws7{word-spacing:-17.568000px;}
.ws15{word-spacing:-17.100000px;}
.ws17{word-spacing:-17.028000px;}
.ws14{word-spacing:-16.776000px;}
.ws2{word-spacing:-16.500000px;}
.ws16{word-spacing:-16.122000px;}
.ws12{word-spacing:-15.600000px;}
.ws1{word-spacing:-15.000000px;}
.ws13{word-spacing:-13.800000px;}
.wsd{word-spacing:-13.560000px;}
.wse{word-spacing:-13.140000px;}
.wsf{word-spacing:-13.097700px;}
.wsa{word-spacing:-12.528000px;}
.ws10{word-spacing:-12.237900px;}
.ws11{word-spacing:-12.204000px;}
.wsb{word-spacing:-11.856000px;}
.ws3{word-spacing:-11.400000px;}
.ws0{word-spacing:-9.900000px;}
.ws9{word-spacing:0.000000px;}
._16{margin-left:-9.324000px;}
._15{margin-left:-8.268000px;}
._13{margin-left:-7.056000px;}
._11{margin-left:-5.616000px;}
._7{margin-left:-4.080000px;}
._6{margin-left:-2.940000px;}
._2{margin-left:-1.020000px;}
._1{width:1.080000px;}
._4{width:3.000000px;}
._5{width:4.590000px;}
._a{width:5.928000px;}
._8{width:6.984000px;}
._9{width:8.352000px;}
._f{width:9.714000px;}
._14{width:10.758000px;}
._10{width:11.874000px;}
._b{width:13.062000px;}
._c{width:14.328000px;}
._d{width:15.912000px;}
._12{width:16.956000px;}
._e{width:20.520000px;}
._0{width:26.820000px;}
._19{width:30.786000px;}
._18{width:34.074000px;}
._17{width:35.244000px;}
._3{width:177.720000px;}
.fca{color:rgb(62,61,64);}
.fc7{color:transparent;}
.fc6{color:rgb(68,114,196);}
.fc9{color:rgb(34,34,34);}
.fc8{color:rgb(33,33,33);}
.fc5{color:rgb(27,27,27);}
.fc4{color:rgb(29,29,29);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,78,154);}
.fc1{color:rgb(238,0,0);}
.fc0{color:rgb(0,176,240);}
.fs3{font-size:39.600000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.150000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:60.150000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y147{bottom:-82.500000px;}
.y146{bottom:-44.400000px;}
.y35{bottom:-29.100000px;}
.y145{bottom:-6.900000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.000000px;}
.y67{bottom:3.300000px;}
.y62{bottom:3.315000px;}
.y95{bottom:4.200000px;}
.y9d{bottom:4.500000px;}
.ybf{bottom:4.800000px;}
.y93{bottom:5.100000px;}
.yae{bottom:5.115000px;}
.yab{bottom:5.145000px;}
.y144{bottom:10.800000px;}
.yca{bottom:11.700000px;}
.y33{bottom:20.700000px;}
.y4{bottom:26.737500px;}
.y143{bottom:28.200000px;}
.y142{bottom:45.300000px;}
.y81{bottom:56.655000px;}
.yed{bottom:58.837500px;}
.yc0{bottom:59.137500px;}
.y5f{bottom:62.437500px;}
.y141{bottom:62.707500px;}
.y31{bottom:65.437500px;}
.y77{bottom:66.037500px;}
.y89{bottom:68.175000px;}
.y7c{bottom:68.430000px;}
.y8a{bottom:70.425000px;}
.ybe{bottom:78.937500px;}
.y140{bottom:79.837500px;}
.yec{bottom:82.537500px;}
.y7e{bottom:85.995000px;}
.y5e{bottom:86.437500px;}
.y7b{bottom:86.745000px;}
.y30{bottom:89.137500px;}
.y76{bottom:90.637500px;}
.y87{bottom:91.800000px;}
.y13f{bottom:97.237500px;}
.ybd{bottom:98.437500px;}
.y82{bottom:103.245000px;}
.y139{bottom:103.537500px;}
.y8b{bottom:104.175000px;}
.y7d{bottom:104.295000px;}
.yeb{bottom:106.537500px;}
.y111{bottom:109.837500px;}
.y2f{bottom:113.137500px;}
.y13e{bottom:114.337500px;}
.ybc{bottom:117.037500px;}
.y5d{bottom:119.137500px;}
.y80{bottom:119.400000px;}
.y88{bottom:121.095000px;}
.y7a{bottom:123.255000px;}
.y110{bottom:128.737500px;}
.yea{bottom:130.237500px;}
.y13d{bottom:131.737500px;}
.y2e{bottom:136.837500px;}
.y79{bottom:141.555000px;}
.y5c{bottom:142.837500px;}
.y10f{bottom:147.637500px;}
.y13c{bottom:148.837500px;}
.y8c{bottom:149.205000px;}
.ybb{bottom:151.830000px;}
.ye9{bottom:153.930000px;}
.y86{bottom:156.870000px;}
.y2d{bottom:160.545000px;}
.y13b{bottom:166.237500px;}
.y10e{bottom:166.545000px;}
.y5b{bottom:166.830000px;}
.yba{bottom:174.675000px;}
.y85{bottom:174.705000px;}
.ye8{bottom:177.975000px;}
.y13a{bottom:183.337500px;}
.y2c{bottom:184.575000px;}
.y10d{bottom:185.775000px;}
.y5a{bottom:190.575000px;}
.y84{bottom:192.570000px;}
.yb9{bottom:198.375000px;}
.ye7{bottom:201.675000px;}
.y10c{bottom:204.675000px;}
.y2b{bottom:208.275000px;}
.y83{bottom:210.405000px;}
.yb8{bottom:222.075000px;}
.y59{bottom:223.275000px;}
.y10b{bottom:223.575000px;}
.ye6{bottom:225.375000px;}
.y2a{bottom:231.975000px;}
.y10a{bottom:242.475000px;}
.yb7{bottom:246.075000px;}
.y58{bottom:247.275000px;}
.ye5{bottom:249.375000px;}
.y29{bottom:255.975000px;}
.y109{bottom:261.675000px;}
.yb6{bottom:269.775000px;}
.y57{bottom:270.975000px;}
.ye4{bottom:273.075000px;}
.y75{bottom:275.475000px;}
.y28{bottom:279.675000px;}
.y108{bottom:280.575000px;}
.yb5{bottom:293.475000px;}
.y56{bottom:294.975000px;}
.ye3{bottom:296.775000px;}
.y74{bottom:299.475000px;}
.y27{bottom:303.375000px;}
.yb4{bottom:317.475000px;}
.y55{bottom:318.675000px;}
.ye2{bottom:320.775000px;}
.y107{bottom:321.975000px;}
.y73{bottom:323.175000px;}
.y26{bottom:327.420000px;}
.yb3{bottom:341.220000px;}
.y54{bottom:342.405000px;}
.ye1{bottom:344.505000px;}
.y72{bottom:345.705000px;}
.y25{bottom:351.120000px;}
.yb2{bottom:364.920000px;}
.y71{bottom:366.120000px;}
.y53{bottom:366.420000px;}
.ye0{bottom:368.220000px;}
.y106{bottom:369.405000px;}
.y138{bottom:373.005000px;}
.y24{bottom:383.820000px;}
.yb1{bottom:388.920000px;}
.y52{bottom:390.120000px;}
.y70{bottom:390.705000px;}
.y137{bottom:391.920000px;}
.ydf{bottom:392.205000px;}
.y7f{bottom:392.700000px;}
.y105{bottom:393.420000px;}
.yb0{bottom:406.320000px;}
.y23{bottom:407.820000px;}
.y136{bottom:411.120000px;}
.y51{bottom:413.820000px;}
.yde{bottom:415.920000px;}
.y104{bottom:417.120000px;}
.yaf{bottom:425.220000px;}
.y135{bottom:430.020000px;}
.y22{bottom:431.520000px;}
.y50{bottom:437.820000px;}
.ydd{bottom:439.620000px;}
.y103{bottom:440.820000px;}
.yad{bottom:445.005000px;}
.y134{bottom:448.905000px;}
.y21{bottom:455.220000px;}
.y4f{bottom:461.505000px;}
.ydc{bottom:463.620000px;}
.yac{bottom:464.505000px;}
.y102{bottom:464.820000px;}
.y133{bottom:467.820000px;}
.y20{bottom:479.220000px;}
.yaa{bottom:483.405000px;}
.y4e{bottom:485.250000px;}
.y132{bottom:487.050000px;}
.ydb{bottom:487.350000px;}
.y101{bottom:488.550000px;}
.y1f{bottom:502.950000px;}
.y131{bottom:505.950000px;}
.y4d{bottom:509.250000px;}
.yda{bottom:511.050000px;}
.y100{bottom:512.250000px;}
.ya9{bottom:518.550000px;}
.y130{bottom:524.850000px;}
.y1e{bottom:526.650000px;}
.yd9{bottom:535.050000px;}
.yff{bottom:536.250000px;}
.ya8{bottom:541.050000px;}
.y4c{bottom:541.950000px;}
.y12f{bottom:543.750000px;}
.y1d{bottom:550.650000px;}
.ya7{bottom:558.450000px;}
.yd8{bottom:558.750000px;}
.yfe{bottom:559.950000px;}
.y12e{bottom:562.950000px;}
.y4b{bottom:565.650000px;}
.y1c{bottom:574.350000px;}
.ya6{bottom:577.350000px;}
.y12d{bottom:581.850000px;}
.yd7{bottom:582.450000px;}
.yfd{bottom:583.650000px;}
.y4a{bottom:589.650000px;}
.ya5{bottom:597.150000px;}
.y1b{bottom:598.050000px;}
.y12c{bottom:600.750000px;}
.yd6{bottom:606.450000px;}
.yfc{bottom:607.650000px;}
.y49{bottom:613.350000px;}
.ya4{bottom:616.650000px;}
.y12b{bottom:619.650000px;}
.y1a{bottom:622.050000px;}
.yd5{bottom:630.150000px;}
.yfb{bottom:631.350000px;}
.ya3{bottom:635.550000px;}
.y48{bottom:637.050000px;}
.y12a{bottom:638.850000px;}
.y6f{bottom:640.650000px;}
.y19{bottom:645.795000px;}
.yd4{bottom:654.195000px;}
.yfa{bottom:655.095000px;}
.y129{bottom:657.780000px;}
.y47{bottom:661.095000px;}
.y6e{bottom:664.395000px;}
.y18{bottom:669.495000px;}
.ya2{bottom:670.695000px;}
.y128{bottom:676.695000px;}
.yd3{bottom:677.895000px;}
.yf9{bottom:679.080000px;}
.y46{bottom:684.780000px;}
.y6d{bottom:688.380000px;}
.ya1{bottom:693.195000px;}
.y17{bottom:693.495000px;}
.y127{bottom:695.595000px;}
.yd2{bottom:701.595000px;}
.yf8{bottom:702.795000px;}
.y45{bottom:708.495000px;}
.ya0{bottom:710.595000px;}
.y6c{bottom:712.095000px;}
.y126{bottom:714.795000px;}
.y16{bottom:717.195000px;}
.yd1{bottom:725.595000px;}
.yf7{bottom:726.495000px;}
.y9f{bottom:729.480000px;}
.y44{bottom:732.495000px;}
.y125{bottom:733.695000px;}
.y6b{bottom:734.580000px;}
.y15{bottom:737.595000px;}
.y9e{bottom:749.280000px;}
.yf6{bottom:750.495000px;}
.y124{bottom:752.595000px;}
.y14{bottom:754.695000px;}
.y6a{bottom:754.980000px;}
.y43{bottom:756.195000px;}
.yd0{bottom:758.280000px;}
.y9c{bottom:768.795000px;}
.y123{bottom:771.495000px;}
.y13{bottom:774.195000px;}
.y69{bottom:779.580000px;}
.y78{bottom:779.700000px;}
.ycf{bottom:781.980000px;}
.y9b{bottom:787.695000px;}
.y42{bottom:788.880000px;}
.y122{bottom:790.695000px;}
.y12{bottom:793.995000px;}
.yf5{bottom:797.880000px;}
.yce{bottom:799.725000px;}
.y121{bottom:809.625000px;}
.y41{bottom:812.925000px;}
.y11{bottom:813.825000px;}
.ycd{bottom:817.725000px;}
.yf4{bottom:821.925000px;}
.y9a{bottom:822.825000px;}
.y10{bottom:827.925000px;}
.y120{bottom:828.525000px;}
.ycc{bottom:835.725000px;}
.y40{bottom:836.625000px;}
.y32{bottom:845.025000px;}
.y99{bottom:845.325000px;}
.yf3{bottom:845.625000px;}
.y11f{bottom:847.425000px;}
.ycb{bottom:853.725000px;}
.y3f{bottom:860.325000px;}
.y98{bottom:863.025000px;}
.y11e{bottom:866.625000px;}
.yf2{bottom:869.325000px;}
.yc9{bottom:871.725000px;}
.y97{bottom:881.925000px;}
.y3e{bottom:884.325000px;}
.y11d{bottom:885.525000px;}
.yf1{bottom:893.325000px;}
.y96{bottom:901.425000px;}
.yf{bottom:903.825000px;}
.y11c{bottom:904.425000px;}
.y3d{bottom:917.025000px;}
.y94{bottom:921.225000px;}
.yc8{bottom:922.125000px;}
.ye{bottom:922.725000px;}
.y11b{bottom:923.325000px;}
.yf0{bottom:926.025000px;}
.y92{bottom:940.125000px;}
.y3c{bottom:940.725000px;}
.y11a{bottom:942.525000px;}
.yc7{bottom:944.625000px;}
.yd{bottom:945.225000px;}
.yef{bottom:949.725000px;}
.y119{bottom:961.455000px;}
.yc6{bottom:962.355000px;}
.yc{bottom:962.670000px;}
.y3b{bottom:964.755000px;}
.y68{bottom:971.070000px;}
.yee{bottom:973.755000px;}
.yb{bottom:974.370000px;}
.y91{bottom:974.955000px;}
.y118{bottom:980.370000px;}
.yc5{bottom:982.170000px;}
.y3a{bottom:988.455000px;}
.y66{bottom:988.770000px;}
.ya{bottom:991.455000px;}
.y90{bottom:997.455000px;}
.y117{bottom:999.255000px;}
.yc4{bottom:1000.770000px;}
.y65{bottom:1006.755000px;}
.y39{bottom:1012.170000px;}
.y9{bottom:1013.070000px;}
.y116{bottom:1018.455000px;}
.yc3{bottom:1020.570000px;}
.y8f{bottom:1021.170000px;}
.y64{bottom:1024.755000px;}
.y8{bottom:1031.370000px;}
.y38{bottom:1036.170000px;}
.y115{bottom:1037.370000px;}
.yc2{bottom:1040.370000px;}
.y63{bottom:1042.755000px;}
.y8e{bottom:1045.170000px;}
.y7{bottom:1055.670000px;}
.y114{bottom:1056.255000px;}
.yc1{bottom:1058.970000px;}
.y37{bottom:1059.870000px;}
.y61{bottom:1060.755000px;}
.y8d{bottom:1068.870000px;}
.y113{bottom:1075.170000px;}
.y6{bottom:1078.455000px;}
.y36{bottom:1092.570000px;}
.y60{bottom:1093.755000px;}
.y112{bottom:1094.070000px;}
.y5{bottom:1095.570000px;}
.y3{bottom:1114.170000px;}
.y2{bottom:1133.100000px;}
.y1{bottom:1152.600000px;}
.h12{height:17.085000px;}
.h11{height:17.100000px;}
.h21{height:17.985000px;}
.h1c{height:18.000000px;}
.h1e{height:18.285000px;}
.h1f{height:18.300000px;}
.h20{height:18.600000px;}
.h22{height:18.885000px;}
.h1d{height:18.900000px;}
.h1b{height:18.937500px;}
.h7{height:27.650391px;}
.hc{height:34.500000px;}
.h3{height:41.894531px;}
.h1{height:42.011719px;}
.h4{height:42.333984px;}
.h13{height:43.330078px;}
.he{height:43.681641px;}
.h24{height:46.083984px;}
.h8{height:46.567383px;}
.h23{height:48.049805px;}
.hd{height:49.250391px;}
.h6{height:49.600430px;}
.hb{height:50.273438px;}
.hf{height:50.414062px;}
.ha{height:50.800781px;}
.h9{height:51.996094px;}
.h18{height:55.291992px;}
.h1a{height:55.445581px;}
.h5{height:59.267578px;}
.h26{height:59.677734px;}
.h10{height:61.115625px;}
.h15{height:61.435547px;}
.h17{height:61.589136px;}
.h2{height:65.645508px;}
.h19{height:177.000000px;}
.h14{height:184.500000px;}
.h25{height:197.145000px;}
.h16{height:241.200000px;}
.h0{height:1188.000000px;}
.w6{width:79.500000px;}
.we{width:81.900000px;}
.w7{width:82.237500px;}
.w11{width:83.100000px;}
.w14{width:86.100000px;}
.w1c{width:92.737500px;}
.w19{width:93.037500px;}
.w1e{width:95.137500px;}
.w18{width:99.600000px;}
.w16{width:99.937500px;}
.w5{width:103.837500px;}
.w4{width:105.937500px;}
.wd{width:106.237500px;}
.w10{width:107.737500px;}
.w1d{width:111.600000px;}
.w13{width:111.637500px;}
.w1a{width:115.237500px;}
.w22{width:116.437500px;}
.w23{width:116.737500px;}
.w3{width:117.637500px;}
.w1f{width:117.937500px;}
.w1b{width:124.837500px;}
.w21{width:125.737500px;}
.w20{width:127.837500px;}
.w17{width:141.075000px;}
.w15{width:155.430000px;}
.w24{width:186.345000px;}
.w12{width:189.675000px;}
.wc{width:190.275000px;}
.wf{width:192.675000px;}
.w8{width:218.475000px;}
.w9{width:369.600000px;}
.wb{width:429.900000px;}
.wa{width:561.900000px;}
.w2{width:737.925000px;}
.w25{width:806.070000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:7.500000px;}
.x10{left:10.800000px;}
.x36{left:16.200000px;}
.x14{left:18.600000px;}
.x1d{left:20.400000px;}
.x45{left:21.600000px;}
.x57{left:23.100000px;}
.x4e{left:25.500000px;}
.x1b{left:26.700000px;}
.x37{left:28.230000px;}
.x3c{left:29.385000px;}
.x48{left:30.900000px;}
.x1c{left:32.100000px;}
.x47{left:33.600000px;}
.x56{left:35.700000px;}
.x4b{left:36.945000px;}
.x5e{left:39.330000px;}
.x5d{left:40.500000px;}
.x43{left:42.645000px;}
.x61{left:44.100000px;}
.x38{left:45.600000px;}
.x39{left:48.045000px;}
.x3a{left:49.500000px;}
.x46{left:51.330000px;}
.x1{left:53.999986px;}
.x4f{left:59.145000px;}
.x50{left:60.945000px;}
.x34{left:62.445000px;}
.x1f{left:69.045000px;}
.x64{left:76.200000px;}
.x3b{left:78.045000px;}
.x40{left:79.245000px;}
.x65{left:81.037486px;}
.x1e{left:96.045000px;}
.x7{left:98.437486px;}
.x13{left:103.237500px;}
.x66{left:108.037486px;}
.xa{left:109.537486px;}
.x9{left:117.937486px;}
.xf{left:124.237500px;}
.x30{left:127.470000px;}
.x2a{left:134.895000px;}
.x31{left:136.425000px;}
.xc{left:139.837486px;}
.x4{left:141.337486px;}
.xe{left:146.437486px;}
.x2f{left:156.825000px;}
.x2d{left:175.275000px;}
.xd{left:177.974986px;}
.x12{left:179.174986px;}
.x58{left:183.675000px;}
.x60{left:185.475000px;}
.x6{left:189.974986px;}
.x52{left:195.075000px;}
.x27{left:202.650000px;}
.x28{left:205.920000px;}
.x29{left:208.920000px;}
.x15{left:221.775000px;}
.x5f{left:237.674986px;}
.x2c{left:243.075000px;}
.x2e{left:245.700000px;}
.x4a{left:260.175000px;}
.x42{left:264.675000px;}
.x3e{left:266.775000px;}
.x33{left:269.175000px;}
.x26{left:273.300000px;}
.x51{left:292.274986px;}
.x8{left:294.674986px;}
.x59{left:296.175000px;}
.x2b{left:299.670000px;}
.x23{left:303.719986px;}
.x21{left:311.219986px;}
.x25{left:321.704986px;}
.x41{left:323.819986px;}
.x3d{left:327.119986px;}
.x17{left:328.320000px;}
.x49{left:335.204986px;}
.x32{left:343.004986px;}
.x2{left:361.019986px;}
.x5{left:363.719986px;}
.x11{left:368.812500px;}
.xb{left:387.104986px;}
.x53{left:388.905000px;}
.x5a{left:392.220000px;}
.x4c{left:416.220000px;}
.x62{left:429.150000px;}
.x18{left:433.050000px;}
.x44{left:455.250000px;}
.x3{left:459.149986px;}
.x54{left:504.750000px;}
.x5b{left:511.050000px;}
.x19{left:513.450000px;}
.x4d{left:517.050000px;}
.x63{left:546.495000px;}
.x35{left:567.195000px;}
.x3f{left:568.395000px;}
.x1a{left:596.280000px;}
.x55{left:630.495000px;}
.x5c{left:639.495000px;}
.x20{left:644.594986px;}
.x24{left:674.024986px;}
.x22{left:740.324986px;}
@media print{
.v5{vertical-align:-38.133333pt;}
.v4{vertical-align:-24.533333pt;}
.v2{vertical-align:-19.253333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.253333pt;}
.v3{vertical-align:24.533333pt;}
.lsb{letter-spacing:-3.200000pt;}
.ls1b{letter-spacing:-1.088000pt;}
.ls10{letter-spacing:-1.066667pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.441067pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.373333pt;}
.ls17{letter-spacing:-0.336000pt;}
.ls20{letter-spacing:-0.309333pt;}
.lsf{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.021333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.021333pt;}
.ls16{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.154667pt;}
.ls1f{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls1e{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.341333pt;}
.ls11{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.469333pt;}
.ls0{letter-spacing:0.533333pt;}
.ls15{letter-spacing:4.266667pt;}
.ls1d{letter-spacing:6.090667pt;}
.ls18{letter-spacing:7.413333pt;}
.ls7{letter-spacing:11.733333pt;}
.ls8{letter-spacing:14.933333pt;}
.ls1a{letter-spacing:35.957333pt;}
.ls3{letter-spacing:63.466667pt;}
.ls1{letter-spacing:63.520000pt;}
.ls4{letter-spacing:81.333333pt;}
.ls2{letter-spacing:82.400000pt;}
.ls12{letter-spacing:145.066667pt;}
.wsc{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.341333pt;}
.ws6{word-spacing:-16.021333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.978667pt;}
.ws7{word-spacing:-15.616000pt;}
.ws15{word-spacing:-15.200000pt;}
.ws17{word-spacing:-15.136000pt;}
.ws14{word-spacing:-14.912000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws16{word-spacing:-14.330667pt;}
.ws12{word-spacing:-13.866667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws13{word-spacing:-12.266667pt;}
.wsd{word-spacing:-12.053333pt;}
.wse{word-spacing:-11.680000pt;}
.wsf{word-spacing:-11.642400pt;}
.wsa{word-spacing:-11.136000pt;}
.ws10{word-spacing:-10.878133pt;}
.ws11{word-spacing:-10.848000pt;}
.wsb{word-spacing:-10.538667pt;}
.ws3{word-spacing:-10.133333pt;}
.ws0{word-spacing:-8.800000pt;}
.ws9{word-spacing:0.000000pt;}
._16{margin-left:-8.288000pt;}
._15{margin-left:-7.349333pt;}
._13{margin-left:-6.272000pt;}
._11{margin-left:-4.992000pt;}
._7{margin-left:-3.626667pt;}
._6{margin-left:-2.613333pt;}
._2{margin-left:-0.906667pt;}
._1{width:0.960000pt;}
._4{width:2.666667pt;}
._5{width:4.080000pt;}
._a{width:5.269333pt;}
._8{width:6.208000pt;}
._9{width:7.424000pt;}
._f{width:8.634667pt;}
._14{width:9.562667pt;}
._10{width:10.554667pt;}
._b{width:11.610667pt;}
._c{width:12.736000pt;}
._d{width:14.144000pt;}
._12{width:15.072000pt;}
._e{width:18.240000pt;}
._0{width:23.840000pt;}
._19{width:27.365333pt;}
._18{width:30.288000pt;}
._17{width:31.328000pt;}
._3{width:157.973333pt;}
.fs3{font-size:35.200000pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.133333pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:53.466667pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y147{bottom:-73.333333pt;}
.y146{bottom:-39.466667pt;}
.y35{bottom:-25.866667pt;}
.y145{bottom:-6.133333pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.666667pt;}
.y67{bottom:2.933333pt;}
.y62{bottom:2.946667pt;}
.y95{bottom:3.733333pt;}
.y9d{bottom:4.000000pt;}
.ybf{bottom:4.266667pt;}
.y93{bottom:4.533333pt;}
.yae{bottom:4.546667pt;}
.yab{bottom:4.573333pt;}
.y144{bottom:9.600000pt;}
.yca{bottom:10.400000pt;}
.y33{bottom:18.400000pt;}
.y4{bottom:23.766667pt;}
.y143{bottom:25.066667pt;}
.y142{bottom:40.266667pt;}
.y81{bottom:50.360000pt;}
.yed{bottom:52.300000pt;}
.yc0{bottom:52.566667pt;}
.y5f{bottom:55.500000pt;}
.y141{bottom:55.740000pt;}
.y31{bottom:58.166667pt;}
.y77{bottom:58.700000pt;}
.y89{bottom:60.600000pt;}
.y7c{bottom:60.826667pt;}
.y8a{bottom:62.600000pt;}
.ybe{bottom:70.166667pt;}
.y140{bottom:70.966667pt;}
.yec{bottom:73.366667pt;}
.y7e{bottom:76.440000pt;}
.y5e{bottom:76.833333pt;}
.y7b{bottom:77.106667pt;}
.y30{bottom:79.233333pt;}
.y76{bottom:80.566667pt;}
.y87{bottom:81.600000pt;}
.y13f{bottom:86.433333pt;}
.ybd{bottom:87.500000pt;}
.y82{bottom:91.773333pt;}
.y139{bottom:92.033333pt;}
.y8b{bottom:92.600000pt;}
.y7d{bottom:92.706667pt;}
.yeb{bottom:94.700000pt;}
.y111{bottom:97.633333pt;}
.y2f{bottom:100.566667pt;}
.y13e{bottom:101.633333pt;}
.ybc{bottom:104.033333pt;}
.y5d{bottom:105.900000pt;}
.y80{bottom:106.133333pt;}
.y88{bottom:107.640000pt;}
.y7a{bottom:109.560000pt;}
.y110{bottom:114.433333pt;}
.yea{bottom:115.766667pt;}
.y13d{bottom:117.100000pt;}
.y2e{bottom:121.633333pt;}
.y79{bottom:125.826667pt;}
.y5c{bottom:126.966667pt;}
.y10f{bottom:131.233333pt;}
.y13c{bottom:132.300000pt;}
.y8c{bottom:132.626667pt;}
.ybb{bottom:134.960000pt;}
.ye9{bottom:136.826667pt;}
.y86{bottom:139.440000pt;}
.y2d{bottom:142.706667pt;}
.y13b{bottom:147.766667pt;}
.y10e{bottom:148.040000pt;}
.y5b{bottom:148.293333pt;}
.yba{bottom:155.266667pt;}
.y85{bottom:155.293333pt;}
.ye8{bottom:158.200000pt;}
.y13a{bottom:162.966667pt;}
.y2c{bottom:164.066667pt;}
.y10d{bottom:165.133333pt;}
.y5a{bottom:169.400000pt;}
.y84{bottom:171.173333pt;}
.yb9{bottom:176.333333pt;}
.ye7{bottom:179.266667pt;}
.y10c{bottom:181.933333pt;}
.y2b{bottom:185.133333pt;}
.y83{bottom:187.026667pt;}
.yb8{bottom:197.400000pt;}
.y59{bottom:198.466667pt;}
.y10b{bottom:198.733333pt;}
.ye6{bottom:200.333333pt;}
.y2a{bottom:206.200000pt;}
.y10a{bottom:215.533333pt;}
.yb7{bottom:218.733333pt;}
.y58{bottom:219.800000pt;}
.ye5{bottom:221.666667pt;}
.y29{bottom:227.533333pt;}
.y109{bottom:232.600000pt;}
.yb6{bottom:239.800000pt;}
.y57{bottom:240.866667pt;}
.ye4{bottom:242.733333pt;}
.y75{bottom:244.866667pt;}
.y28{bottom:248.600000pt;}
.y108{bottom:249.400000pt;}
.yb5{bottom:260.866667pt;}
.y56{bottom:262.200000pt;}
.ye3{bottom:263.800000pt;}
.y74{bottom:266.200000pt;}
.y27{bottom:269.666667pt;}
.yb4{bottom:282.200000pt;}
.y55{bottom:283.266667pt;}
.ye2{bottom:285.133333pt;}
.y107{bottom:286.200000pt;}
.y73{bottom:287.266667pt;}
.y26{bottom:291.040000pt;}
.yb3{bottom:303.306667pt;}
.y54{bottom:304.360000pt;}
.ye1{bottom:306.226667pt;}
.y72{bottom:307.293333pt;}
.y25{bottom:312.106667pt;}
.yb2{bottom:324.373333pt;}
.y71{bottom:325.440000pt;}
.y53{bottom:325.706667pt;}
.ye0{bottom:327.306667pt;}
.y106{bottom:328.360000pt;}
.y138{bottom:331.560000pt;}
.y24{bottom:341.173333pt;}
.yb1{bottom:345.706667pt;}
.y52{bottom:346.773333pt;}
.y70{bottom:347.293333pt;}
.y137{bottom:348.373333pt;}
.ydf{bottom:348.626667pt;}
.y7f{bottom:349.066667pt;}
.y105{bottom:349.706667pt;}
.yb0{bottom:361.173333pt;}
.y23{bottom:362.506667pt;}
.y136{bottom:365.440000pt;}
.y51{bottom:367.840000pt;}
.yde{bottom:369.706667pt;}
.y104{bottom:370.773333pt;}
.yaf{bottom:377.973333pt;}
.y135{bottom:382.240000pt;}
.y22{bottom:383.573333pt;}
.y50{bottom:389.173333pt;}
.ydd{bottom:390.773333pt;}
.y103{bottom:391.840000pt;}
.yad{bottom:395.560000pt;}
.y134{bottom:399.026667pt;}
.y21{bottom:404.640000pt;}
.y4f{bottom:410.226667pt;}
.ydc{bottom:412.106667pt;}
.yac{bottom:412.893333pt;}
.y102{bottom:413.173333pt;}
.y133{bottom:415.840000pt;}
.y20{bottom:425.973333pt;}
.yaa{bottom:429.693333pt;}
.y4e{bottom:431.333333pt;}
.y132{bottom:432.933333pt;}
.ydb{bottom:433.200000pt;}
.y101{bottom:434.266667pt;}
.y1f{bottom:447.066667pt;}
.y131{bottom:449.733333pt;}
.y4d{bottom:452.666667pt;}
.yda{bottom:454.266667pt;}
.y100{bottom:455.333333pt;}
.ya9{bottom:460.933333pt;}
.y130{bottom:466.533333pt;}
.y1e{bottom:468.133333pt;}
.yd9{bottom:475.600000pt;}
.yff{bottom:476.666667pt;}
.ya8{bottom:480.933333pt;}
.y4c{bottom:481.733333pt;}
.y12f{bottom:483.333333pt;}
.y1d{bottom:489.466667pt;}
.ya7{bottom:496.400000pt;}
.yd8{bottom:496.666667pt;}
.yfe{bottom:497.733333pt;}
.y12e{bottom:500.400000pt;}
.y4b{bottom:502.800000pt;}
.y1c{bottom:510.533333pt;}
.ya6{bottom:513.200000pt;}
.y12d{bottom:517.200000pt;}
.yd7{bottom:517.733333pt;}
.yfd{bottom:518.800000pt;}
.y4a{bottom:524.133333pt;}
.ya5{bottom:530.800000pt;}
.y1b{bottom:531.600000pt;}
.y12c{bottom:534.000000pt;}
.yd6{bottom:539.066667pt;}
.yfc{bottom:540.133333pt;}
.y49{bottom:545.200000pt;}
.ya4{bottom:548.133333pt;}
.y12b{bottom:550.800000pt;}
.y1a{bottom:552.933333pt;}
.yd5{bottom:560.133333pt;}
.yfb{bottom:561.200000pt;}
.ya3{bottom:564.933333pt;}
.y48{bottom:566.266667pt;}
.y12a{bottom:567.866667pt;}
.y6f{bottom:569.466667pt;}
.y19{bottom:574.040000pt;}
.yd4{bottom:581.506667pt;}
.yfa{bottom:582.306667pt;}
.y129{bottom:584.693333pt;}
.y47{bottom:587.640000pt;}
.y6e{bottom:590.573333pt;}
.y18{bottom:595.106667pt;}
.ya2{bottom:596.173333pt;}
.y128{bottom:601.506667pt;}
.yd3{bottom:602.573333pt;}
.yf9{bottom:603.626667pt;}
.y46{bottom:608.693333pt;}
.y6d{bottom:611.893333pt;}
.ya1{bottom:616.173333pt;}
.y17{bottom:616.440000pt;}
.y127{bottom:618.306667pt;}
.yd2{bottom:623.640000pt;}
.yf8{bottom:624.706667pt;}
.y45{bottom:629.773333pt;}
.ya0{bottom:631.640000pt;}
.y6c{bottom:632.973333pt;}
.y126{bottom:635.373333pt;}
.y16{bottom:637.506667pt;}
.yd1{bottom:644.973333pt;}
.yf7{bottom:645.773333pt;}
.y9f{bottom:648.426667pt;}
.y44{bottom:651.106667pt;}
.y125{bottom:652.173333pt;}
.y6b{bottom:652.960000pt;}
.y15{bottom:655.640000pt;}
.y9e{bottom:666.026667pt;}
.yf6{bottom:667.106667pt;}
.y124{bottom:668.973333pt;}
.y14{bottom:670.840000pt;}
.y6a{bottom:671.093333pt;}
.y43{bottom:672.173333pt;}
.yd0{bottom:674.026667pt;}
.y9c{bottom:683.373333pt;}
.y123{bottom:685.773333pt;}
.y13{bottom:688.173333pt;}
.y69{bottom:692.960000pt;}
.y78{bottom:693.066667pt;}
.ycf{bottom:695.093333pt;}
.y9b{bottom:700.173333pt;}
.y42{bottom:701.226667pt;}
.y122{bottom:702.840000pt;}
.y12{bottom:705.773333pt;}
.yf5{bottom:709.226667pt;}
.yce{bottom:710.866667pt;}
.y121{bottom:719.666667pt;}
.y41{bottom:722.600000pt;}
.y11{bottom:723.400000pt;}
.ycd{bottom:726.866667pt;}
.yf4{bottom:730.600000pt;}
.y9a{bottom:731.400000pt;}
.y10{bottom:735.933333pt;}
.y120{bottom:736.466667pt;}
.ycc{bottom:742.866667pt;}
.y40{bottom:743.666667pt;}
.y32{bottom:751.133333pt;}
.y99{bottom:751.400000pt;}
.yf3{bottom:751.666667pt;}
.y11f{bottom:753.266667pt;}
.ycb{bottom:758.866667pt;}
.y3f{bottom:764.733333pt;}
.y98{bottom:767.133333pt;}
.y11e{bottom:770.333333pt;}
.yf2{bottom:772.733333pt;}
.yc9{bottom:774.866667pt;}
.y97{bottom:783.933333pt;}
.y3e{bottom:786.066667pt;}
.y11d{bottom:787.133333pt;}
.yf1{bottom:794.066667pt;}
.y96{bottom:801.266667pt;}
.yf{bottom:803.400000pt;}
.y11c{bottom:803.933333pt;}
.y3d{bottom:815.133333pt;}
.y94{bottom:818.866667pt;}
.yc8{bottom:819.666667pt;}
.ye{bottom:820.200000pt;}
.y11b{bottom:820.733333pt;}
.yf0{bottom:823.133333pt;}
.y92{bottom:835.666667pt;}
.y3c{bottom:836.200000pt;}
.y11a{bottom:837.800000pt;}
.yc7{bottom:839.666667pt;}
.yd{bottom:840.200000pt;}
.yef{bottom:844.200000pt;}
.y119{bottom:854.626667pt;}
.yc6{bottom:855.426667pt;}
.yc{bottom:855.706667pt;}
.y3b{bottom:857.560000pt;}
.y68{bottom:863.173333pt;}
.yee{bottom:865.560000pt;}
.yb{bottom:866.106667pt;}
.y91{bottom:866.626667pt;}
.y118{bottom:871.440000pt;}
.yc5{bottom:873.040000pt;}
.y3a{bottom:878.626667pt;}
.y66{bottom:878.906667pt;}
.ya{bottom:881.293333pt;}
.y90{bottom:886.626667pt;}
.y117{bottom:888.226667pt;}
.yc4{bottom:889.573333pt;}
.y65{bottom:894.893333pt;}
.y39{bottom:899.706667pt;}
.y9{bottom:900.506667pt;}
.y116{bottom:905.293333pt;}
.yc3{bottom:907.173333pt;}
.y8f{bottom:907.706667pt;}
.y64{bottom:910.893333pt;}
.y8{bottom:916.773333pt;}
.y38{bottom:921.040000pt;}
.y115{bottom:922.106667pt;}
.yc2{bottom:924.773333pt;}
.y63{bottom:926.893333pt;}
.y8e{bottom:929.040000pt;}
.y7{bottom:938.373333pt;}
.y114{bottom:938.893333pt;}
.yc1{bottom:941.306667pt;}
.y37{bottom:942.106667pt;}
.y61{bottom:942.893333pt;}
.y8d{bottom:950.106667pt;}
.y113{bottom:955.706667pt;}
.y6{bottom:958.626667pt;}
.y36{bottom:971.173333pt;}
.y60{bottom:972.226667pt;}
.y112{bottom:972.506667pt;}
.y5{bottom:973.840000pt;}
.y3{bottom:990.373333pt;}
.y2{bottom:1007.200000pt;}
.y1{bottom:1024.533333pt;}
.h12{height:15.186667pt;}
.h11{height:15.200000pt;}
.h21{height:15.986667pt;}
.h1c{height:16.000000pt;}
.h1e{height:16.253333pt;}
.h1f{height:16.266667pt;}
.h20{height:16.533333pt;}
.h22{height:16.786667pt;}
.h1d{height:16.800000pt;}
.h1b{height:16.833333pt;}
.h7{height:24.578125pt;}
.hc{height:30.666667pt;}
.h3{height:37.239583pt;}
.h1{height:37.343750pt;}
.h4{height:37.630208pt;}
.h13{height:38.515625pt;}
.he{height:38.828125pt;}
.h24{height:40.963542pt;}
.h8{height:41.393229pt;}
.h23{height:42.710938pt;}
.hd{height:43.778125pt;}
.h6{height:44.089271pt;}
.hb{height:44.687500pt;}
.hf{height:44.812500pt;}
.ha{height:45.156250pt;}
.h9{height:46.218750pt;}
.h18{height:49.148438pt;}
.h1a{height:49.284961pt;}
.h5{height:52.682292pt;}
.h26{height:53.046875pt;}
.h10{height:54.325000pt;}
.h15{height:54.609375pt;}
.h17{height:54.745898pt;}
.h2{height:58.351562pt;}
.h19{height:157.333333pt;}
.h14{height:164.000000pt;}
.h25{height:175.240000pt;}
.h16{height:214.400000pt;}
.h0{height:1056.000000pt;}
.w6{width:70.666667pt;}
.we{width:72.800000pt;}
.w7{width:73.100000pt;}
.w11{width:73.866667pt;}
.w14{width:76.533333pt;}
.w1c{width:82.433333pt;}
.w19{width:82.700000pt;}
.w1e{width:84.566667pt;}
.w18{width:88.533333pt;}
.w16{width:88.833333pt;}
.w5{width:92.300000pt;}
.w4{width:94.166667pt;}
.wd{width:94.433333pt;}
.w10{width:95.766667pt;}
.w1d{width:99.200000pt;}
.w13{width:99.233333pt;}
.w1a{width:102.433333pt;}
.w22{width:103.500000pt;}
.w23{width:103.766667pt;}
.w3{width:104.566667pt;}
.w1f{width:104.833333pt;}
.w1b{width:110.966667pt;}
.w21{width:111.766667pt;}
.w20{width:113.633333pt;}
.w17{width:125.400000pt;}
.w15{width:138.160000pt;}
.w24{width:165.640000pt;}
.w12{width:168.600000pt;}
.wc{width:169.133333pt;}
.wf{width:171.266667pt;}
.w8{width:194.200000pt;}
.w9{width:328.533333pt;}
.wb{width:382.133333pt;}
.wa{width:499.466667pt;}
.w2{width:655.933333pt;}
.w25{width:716.506667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.666667pt;}
.x10{left:9.600000pt;}
.x36{left:14.400000pt;}
.x14{left:16.533333pt;}
.x1d{left:18.133333pt;}
.x45{left:19.200000pt;}
.x57{left:20.533333pt;}
.x4e{left:22.666667pt;}
.x1b{left:23.733333pt;}
.x37{left:25.093333pt;}
.x3c{left:26.120000pt;}
.x48{left:27.466667pt;}
.x1c{left:28.533333pt;}
.x47{left:29.866667pt;}
.x56{left:31.733333pt;}
.x4b{left:32.840000pt;}
.x5e{left:34.960000pt;}
.x5d{left:36.000000pt;}
.x43{left:37.906667pt;}
.x61{left:39.200000pt;}
.x38{left:40.533333pt;}
.x39{left:42.706667pt;}
.x3a{left:44.000000pt;}
.x46{left:45.626667pt;}
.x1{left:47.999988pt;}
.x4f{left:52.573333pt;}
.x50{left:54.173333pt;}
.x34{left:55.506667pt;}
.x1f{left:61.373333pt;}
.x64{left:67.733333pt;}
.x3b{left:69.373333pt;}
.x40{left:70.440000pt;}
.x65{left:72.033321pt;}
.x1e{left:85.373333pt;}
.x7{left:87.499988pt;}
.x13{left:91.766667pt;}
.x66{left:96.033321pt;}
.xa{left:97.366655pt;}
.x9{left:104.833321pt;}
.xf{left:110.433333pt;}
.x30{left:113.306667pt;}
.x2a{left:119.906667pt;}
.x31{left:121.266667pt;}
.xc{left:124.299988pt;}
.x4{left:125.633321pt;}
.xe{left:130.166655pt;}
.x2f{left:139.400000pt;}
.x2d{left:155.800000pt;}
.xd{left:158.199988pt;}
.x12{left:159.266655pt;}
.x58{left:163.266667pt;}
.x60{left:164.866667pt;}
.x6{left:168.866655pt;}
.x52{left:173.400000pt;}
.x27{left:180.133333pt;}
.x28{left:183.040000pt;}
.x29{left:185.706667pt;}
.x15{left:197.133333pt;}
.x5f{left:211.266655pt;}
.x2c{left:216.066667pt;}
.x2e{left:218.400000pt;}
.x4a{left:231.266667pt;}
.x42{left:235.266667pt;}
.x3e{left:237.133333pt;}
.x33{left:239.266667pt;}
.x26{left:242.933333pt;}
.x51{left:259.799988pt;}
.x8{left:261.933321pt;}
.x59{left:263.266667pt;}
.x2b{left:266.373333pt;}
.x23{left:269.973321pt;}
.x21{left:276.639988pt;}
.x25{left:285.959988pt;}
.x41{left:287.839988pt;}
.x3d{left:290.773321pt;}
.x17{left:291.840000pt;}
.x49{left:297.959988pt;}
.x32{left:304.893321pt;}
.x2{left:320.906655pt;}
.x5{left:323.306655pt;}
.x11{left:327.833333pt;}
.xb{left:344.093321pt;}
.x53{left:345.693333pt;}
.x5a{left:348.640000pt;}
.x4c{left:369.973333pt;}
.x62{left:381.466667pt;}
.x18{left:384.933333pt;}
.x44{left:404.666667pt;}
.x3{left:408.133321pt;}
.x54{left:448.666667pt;}
.x5b{left:454.266667pt;}
.x19{left:456.400000pt;}
.x4d{left:459.600000pt;}
.x63{left:485.773333pt;}
.x35{left:504.173333pt;}
.x3f{left:505.240000pt;}
.x1a{left:530.026667pt;}
.x55{left:560.440000pt;}
.x5c{left:568.440000pt;}
.x20{left:572.973321pt;}
.x24{left:599.133321pt;}
.x22{left:658.066655pt;}
}




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