
    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_1de5543e7c575636bade05e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_beb9c94f2ca2edbd28277b12.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_50e5fd986741a25811462198.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096680;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_63a5a0c55b8663b456d0b928.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_4a01c159e4cca28ea61adeaa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1c3789d966f5b5b51ab42f17.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1d00a7d38ce0a805976feff8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.119141;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_5ff475fb015a1e15f6799470.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.747559;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.027055px;}
.ls6{letter-spacing:0.054083px;}
.ls2{letter-spacing:0.358880px;}
.ls5{letter-spacing:0.370754px;}
.ls1{letter-spacing:0.376444px;}
.ls8{letter-spacing:0.376462px;}
.ls3{letter-spacing:5.765821px;}
.ls7{letter-spacing:847.445875px;}
.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;}
}
.ws6{word-spacing:-54.002250px;}
.ws5{word-spacing:-23.335351px;}
.ws4{word-spacing:-18.349228px;}
.ws0{word-spacing:-16.554143px;}
.ws1{word-spacing:-15.840595px;}
.ws2{word-spacing:-14.958623px;}
.ws3{word-spacing:0.000000px;}
._b{margin-left:-4.264597px;}
._8{margin-left:-3.180256px;}
._1{margin-left:-2.031196px;}
._4{margin-left:-1.030221px;}
._0{width:1.304731px;}
._2{width:2.445169px;}
._3{width:4.305026px;}
._7{width:5.316901px;}
._6{width:6.580857px;}
._5{width:7.828217px;}
._a{width:8.935604px;}
._9{width:10.228916px;}
._c{width:11.333351px;}
._d{width:13.086999px;}
._e{width:14.251662px;}
._10{width:24.037324px;}
._f{width:25.226012px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.002250px;}
.fs0{font-size:59.762250px;}
.fs5{font-size:66.242700px;}
.fs3{font-size:72.002705px;}
.fs4{font-size:84.243145px;}
.fs2{font-size:156.245841px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.980010px;}
.yb{bottom:24.120072px;}
.ya{bottom:66.960022px;}
.y14c{bottom:110.700028px;}
.y20c{bottom:115.560036px;}
.y96{bottom:117.360077px;}
.y18f{bottom:120.420043px;}
.yc5{bottom:123.480079px;}
.y14b{bottom:128.700096px;}
.y175{bottom:129.420043px;}
.y36{bottom:131.220085px;}
.y20b{bottom:132.120072px;}
.y106{bottom:132.480079px;}
.y95{bottom:135.360077px;}
.y18e{bottom:138.420043px;}
.y12e{bottom:139.140060px;}
.yc4{bottom:141.480079px;}
.y65{bottom:144.360077px;}
.y14a{bottom:146.700096px;}
.y174{bottom:147.420043px;}
.y35{bottom:147.780052px;}
.y1dd{bottom:150.120072px;}
.y105{bottom:150.480079px;}
.y94{bottom:153.360077px;}
.y20a{bottom:154.620072px;}
.y18d{bottom:156.420043px;}
.yc3{bottom:159.480079px;}
.y64{bottom:162.360077px;}
.y34{bottom:164.340088px;}
.y149{bottom:164.700096px;}
.y173{bottom:165.420043px;}
.y12d{bottom:166.140060px;}
.y209{bottom:171.000068px;}
.y93{bottom:171.360077px;}
.y1dc{bottom:172.620072px;}
.y18c{bottom:174.420043px;}
.yc2{bottom:177.480079px;}
.y104{bottom:177.840088px;}
.y63{bottom:180.360077px;}
.y33{bottom:180.720085px;}
.y148{bottom:182.700096px;}
.y172{bottom:183.420043px;}
.y12c{bottom:184.140060px;}
.y1db{bottom:189.000068px;}
.y92{bottom:189.360077px;}
.y18b{bottom:192.420043px;}
.y208{bottom:193.500068px;}
.yc1{bottom:195.480079px;}
.y32{bottom:197.280052px;}
.y12b{bottom:202.140060px;}
.y62{bottom:207.900055px;}
.y147{bottom:209.700096px;}
.y207{bottom:210.060036px;}
.y171{bottom:210.420043px;}
.y1da{bottom:211.500068px;}
.yc0{bottom:213.480079px;}
.y31{bottom:213.840088px;}
.y103{bottom:214.920043px;}
.y91{bottom:216.360077px;}
.y12a{bottom:220.140060px;}
.y206{bottom:226.620072px;}
.y146{bottom:227.700096px;}
.y1d9{bottom:228.060036px;}
.y170{bottom:228.420043px;}
.y30{bottom:230.220085px;}
.ybf{bottom:231.480079px;}
.y102{bottom:232.920043px;}
.y90{bottom:234.360077px;}
.y129{bottom:238.140060px;}
.y1a1{bottom:241.020058px;}
.y145{bottom:245.700096px;}
.y61{bottom:246.240074px;}
.y16f{bottom:246.420043px;}
.y205{bottom:249.120072px;}
.ye7{bottom:249.480079px;}
.y1d8{bottom:250.560036px;}
.y101{bottom:250.920043px;}
.y8f{bottom:252.360077px;}
.y2f{bottom:252.720085px;}
.y18a{bottom:255.420043px;}
.ybe{bottom:258.480079px;}
.y16e{bottom:264.420043px;}
.y128{bottom:265.140060px;}
.y1d7{bottom:267.120072px;}
.ye6{bottom:267.480079px;}
.y100{bottom:268.920043px;}
.y2e{bottom:269.280052px;}
.y8e{bottom:270.360077px;}
.y204{bottom:271.620072px;}
.y144{bottom:273.060036px;}
.y189{bottom:273.420043px;}
.ybd{bottom:276.480079px;}
.y16d{bottom:282.420043px;}
.y127{bottom:283.140060px;}
.ye5{bottom:285.480079px;}
.y2d{bottom:285.840088px;}
.y60{bottom:286.920043px;}
.y203{bottom:288.000068px;}
.y8d{bottom:288.360077px;}
.y1d6{bottom:289.620072px;}
.y188{bottom:291.420043px;}
.ybc{bottom:294.480079px;}
.y16c{bottom:300.420043px;}
.y126{bottom:301.140060px;}
.y2c{bottom:302.220085px;}
.ye4{bottom:303.480079px;}
.y1d5{bottom:306.000068px;}
.y8c{bottom:306.360077px;}
.y187{bottom:309.420043px;}
.y143{bottom:310.140060px;}
.y202{bottom:310.500068px;}
.ybb{bottom:312.480079px;}
.y5f{bottom:313.920043px;}
.y16b{bottom:318.420043px;}
.y2b{bottom:318.780052px;}
.y125{bottom:319.140060px;}
.ye3{bottom:321.480079px;}
.y115{bottom:324.360077px;}
.y186{bottom:327.420043px;}
.y142{bottom:328.140060px;}
.y1d4{bottom:328.500068px;}
.yba{bottom:330.480079px;}
.y5e{bottom:331.920043px;}
.y201{bottom:333.000068px;}
.y8b{bottom:333.900055px;}
.y2a{bottom:335.340088px;}
.y16a{bottom:336.420043px;}
.y124{bottom:337.140060px;}
.ye2{bottom:339.480079px;}
.y185{bottom:345.420043px;}
.y141{bottom:346.140060px;}
.yb9{bottom:348.480079px;}
.y5d{bottom:349.920043px;}
.y1d3{bottom:351.000068px;}
.y114{bottom:351.360077px;}
.y169{bottom:354.420043px;}
.y123{bottom:355.140060px;}
.y200{bottom:355.500068px;}
.y29{bottom:357.840088px;}
.y184{bottom:363.420043px;}
.y140{bottom:364.140060px;}
.yb8{bottom:366.480079px;}
.ye1{bottom:366.840088px;}
.y5c{bottom:367.920043px;}
.y113{bottom:369.360077px;}
.y8a{bottom:370.980079px;}
.y1d2{bottom:373.500068px;}
.y1ff{bottom:378.000068px;}
.y28{bottom:380.340088px;}
.y168{bottom:381.420043px;}
.y1c2{bottom:381.780052px;}
.y122{bottom:382.140060px;}
.yb7{bottom:384.480079px;}
.y5b{bottom:385.920043px;}
.y112{bottom:387.360077px;}
.y89{bottom:388.980079px;}
.y1d1{bottom:390.060036px;}
.y27{bottom:396.720085px;}
.y167{bottom:399.420043px;}
.y121{bottom:400.140060px;}
.y1fe{bottom:400.500068px;}
.yb6{bottom:402.480079px;}
.y5a{bottom:403.920043px;}
.y111{bottom:405.360077px;}
.y88{bottom:406.980079px;}
.y183{bottom:408.420043px;}
.y1d0{bottom:412.560036px;}
.y26{bottom:413.280052px;}
.y166{bottom:417.420043px;}
.y120{bottom:418.140060px;}
.y1c1{bottom:418.860077px;}
.yb5{bottom:420.480079px;}
.y59{bottom:421.920043px;}
.y1fd{bottom:423.000068px;}
.y110{bottom:423.360077px;}
.y87{bottom:424.980079px;}
.y182{bottom:426.420043px;}
.y1cf{bottom:429.120072px;}
.y25{bottom:429.840088px;}
.ye0{bottom:430.920043px;}
.y165{bottom:435.420043px;}
.y11f{bottom:436.140060px;}
.y1c0{bottom:436.860077px;}
.y1fc{bottom:439.560036px;}
.y58{bottom:439.920043px;}
.y86{bottom:442.980079px;}
.y181{bottom:444.420043px;}
.y24{bottom:446.220085px;}
.yb4{bottom:447.480079px;}
.y10f{bottom:450.360077px;}
.y1ce{bottom:451.620072px;}
.ydf{bottom:453.420043px;}
.y11e{bottom:454.140060px;}
.y1bf{bottom:454.860077px;}
.y57{bottom:457.920043px;}
.y1fb{bottom:462.060036px;}
.y180{bottom:462.420043px;}
.y23{bottom:462.780052px;}
.yb3{bottom:465.480079px;}
.y10e{bottom:468.360077px;}
.y85{bottom:469.980079px;}
.y164{bottom:471.420043px;}
.y1be{bottom:472.860077px;}
.y1cd{bottom:474.120072px;}
.yde{bottom:475.920043px;}
.y22{bottom:479.340088px;}
.y17f{bottom:480.420043px;}
.y11d{bottom:481.140060px;}
.y13f{bottom:482.400055px;}
.yb2{bottom:483.480079px;}
.y1fa{bottom:484.560036px;}
.y56{bottom:484.920043px;}
.y10d{bottom:486.360077px;}
.y84{bottom:487.980079px;}
.y1cc{bottom:490.500068px;}
.y1bd{bottom:490.860077px;}
.yff{bottom:493.920043px;}
.y21{bottom:495.720085px;}
.ydd{bottom:498.420043px;}
.y11c{bottom:499.140060px;}
.y1f9{bottom:501.120072px;}
.yb1{bottom:501.480079px;}
.y55{bottom:502.920043px;}
.y10c{bottom:504.360077px;}
.y83{bottom:505.980079px;}
.y17e{bottom:507.420043px;}
.y1bc{bottom:508.860077px;}
.y1cb{bottom:513.000068px;}
.ydc{bottom:516.420043px;}
.y11b{bottom:517.140060px;}
.y20{bottom:518.220085px;}
.yb0{bottom:519.480079px;}
.y54{bottom:520.920043px;}
.yfe{bottom:521.280052px;}
.y13e{bottom:523.080093px;}
.y1f8{bottom:523.620072px;}
.y82{bottom:523.980079px;}
.y17d{bottom:525.420043px;}
.y1bb{bottom:526.860077px;}
.y1ca{bottom:529.560036px;}
.y10b{bottom:531.360077px;}
.ydb{bottom:534.420043px;}
.y1f{bottom:534.780052px;}
.y11a{bottom:535.140060px;}
.yaf{bottom:537.480079px;}
.y1f7{bottom:540.000068px;}
.y17c{bottom:543.420043px;}
.y1ba{bottom:544.860077px;}
.y53{bottom:547.920043px;}
.y13d{bottom:550.080093px;}
.y81{bottom:550.980079px;}
.y1e{bottom:551.340088px;}
.y1c9{bottom:552.060036px;}
.yda{bottom:552.420043px;}
.yae{bottom:555.480079px;}
.yfd{bottom:558.360077px;}
.y17b{bottom:561.420043px;}
.y163{bottom:561.780052px;}
.y119{bottom:562.320099px;}
.y1f6{bottom:562.500068px;}
.y1b9{bottom:562.860077px;}
.y52{bottom:565.920043px;}
.y1d{bottom:567.720085px;}
.y13c{bottom:568.080093px;}
.y1c8{bottom:568.620072px;}
.y80{bottom:568.980079px;}
.yd9{bottom:570.420043px;}
.yad{bottom:573.480079px;}
.yfc{bottom:576.360077px;}
.y1a0{bottom:579.420043px;}
.y1b8{bottom:580.860077px;}
.y118{bottom:581.580093px;}
.y10a{bottom:581.760064px;}
.y51{bottom:583.920043px;}
.y1c{bottom:584.280052px;}
.y1f5{bottom:585.000068px;}
.y13b{bottom:586.080093px;}
.yd8{bottom:588.420043px;}
.y1c7{bottom:591.120072px;}
.yac{bottom:591.480079px;}
.yfb{bottom:594.360077px;}
.y7f{bottom:595.980079px;}
.y19f{bottom:597.420043px;}
.y162{bottom:598.860077px;}
.y1b{bottom:600.840088px;}
.y1f4{bottom:601.560036px;}
.y50{bottom:601.920043px;}
.y13a{bottom:604.080093px;}
.yd7{bottom:606.420043px;}
.y1c6{bottom:607.500068px;}
.y117{bottom:608.220085px;}
.yab{bottom:609.480079px;}
.y7e{bottom:613.980079px;}
.y19e{bottom:615.420043px;}
.y161{bottom:616.860077px;}
.y1a{bottom:617.220085px;}
.y4f{bottom:619.920043px;}
.yfa{bottom:621.360077px;}
.y139{bottom:622.080093px;}
.y116{bottom:622.260064px;}
.y1f3{bottom:624.060036px;}
.yd6{bottom:624.420043px;}
.y1b7{bottom:625.860077px;}
.yaa{bottom:627.480079px;}
.y1c5{bottom:630.000068px;}
.y7d{bottom:631.980079px;}
.y19d{bottom:633.420043px;}
.y160{bottom:634.860077px;}
.y4e{bottom:637.920043px;}
.yf9{bottom:639.360077px;}
.y19{bottom:639.720085px;}
.y138{bottom:640.080093px;}
.yd5{bottom:642.420043px;}
.y1b6{bottom:643.860077px;}
.y1f2{bottom:646.560036px;}
.y15f{bottom:652.860077px;}
.ya9{bottom:654.480079px;}
.yf8{bottom:657.360077px;}
.y7c{bottom:658.980079px;}
.yd4{bottom:660.420043px;}
.y1b5{bottom:661.860077px;}
.y18{bottom:662.940033px;}
.y1f1{bottom:663.120072px;}
.y1c4{bottom:664.560036px;}
.y4d{bottom:664.920043px;}
.y137{bottom:667.080093px;}
.ya8{bottom:672.480079px;}
.yf7{bottom:675.360077px;}
.y7b{bottom:676.980079px;}
.yd3{bottom:678.420043px;}
.y15e{bottom:679.860077px;}
.y17{bottom:682.560036px;}
.y4c{bottom:682.920043px;}
.y136{bottom:685.080093px;}
.y1f0{bottom:685.980079px;}
.y1c3{bottom:687.420078px;}
.ya7{bottom:690.480079px;}
.y7a{bottom:694.980079px;}
.yd2{bottom:696.420078px;}
.y15d{bottom:697.860077px;}
.y4b{bottom:700.920078px;}
.yf6{bottom:702.360077px;}
.y135{bottom:703.080059px;}
.y1ef{bottom:703.620072px;}
.y16{bottom:706.500068px;}
.ya6{bottom:708.480079px;}
.y79{bottom:712.980079px;}
.y19c{bottom:714.420078px;}
.y15c{bottom:715.860077px;}
.y4a{bottom:718.920078px;}
.y134{bottom:721.080059px;}
.yd1{bottom:723.420078px;}
.y17a{bottom:723.780052px;}
.y1b4{bottom:725.400055px;}
.y1ee{bottom:726.120072px;}
.ya5{bottom:726.480079px;}
.yf5{bottom:729.360077px;}
.y15{bottom:730.440067px;}
.y19b{bottom:732.420078px;}
.y15b{bottom:733.860077px;}
.y49{bottom:736.920078px;}
.y133{bottom:739.080059px;}
.y78{bottom:740.340054px;}
.yd0{bottom:741.420078px;}
.y1ed{bottom:742.500068px;}
.yf4{bottom:747.360077px;}
.y19a{bottom:750.420078px;}
.y15a{bottom:751.860077px;}
.ya4{bottom:753.840054px;}
.y132{bottom:757.080059px;}
.ycf{bottom:759.420078px;}
.y179{bottom:760.860077px;}
.y1b3{bottom:762.480079px;}
.y48{bottom:763.920078px;}
.y14{bottom:765.000068px;}
.yf3{bottom:765.360077px;}
.y199{bottom:768.420078px;}
.y159{bottom:769.860077px;}
.y131{bottom:775.080059px;}
.y77{bottom:777.420078px;}
.y178{bottom:778.860077px;}
.y1b2{bottom:780.480079px;}
.y1ec{bottom:781.560070px;}
.y47{bottom:781.920078px;}
.yf2{bottom:783.360077px;}
.y198{bottom:786.420078px;}
.y13{bottom:789.120072px;}
.ya3{bottom:790.920078px;}
.y76{bottom:795.420078px;}
.y158{bottom:796.860077px;}
.y1b1{bottom:798.480079px;}
.y46{bottom:799.920078px;}
.yf1{bottom:801.360077px;}
.y130{bottom:802.080059px;}
.y1eb{bottom:804.060070px;}
.y197{bottom:804.420078px;}
.ya2{bottom:808.920078px;}
.y12{bottom:813.060070px;}
.yce{bottom:813.420078px;}
.y157{bottom:814.860077px;}
.y1b0{bottom:816.480079px;}
.y45{bottom:817.920078px;}
.y109{bottom:819.360077px;}
.y1ea{bottom:820.620072px;}
.y75{bottom:822.420078px;}
.y213{bottom:826.560070px;}
.yf0{bottom:828.360077px;}
.y12f{bottom:828.720051px;}
.ycd{bottom:831.420078px;}
.y156{bottom:832.860077px;}
.y1af{bottom:834.480079px;}
.ya1{bottom:837.180073px;}
.y74{bottom:840.420078px;}
.y108{bottom:842.760064px;}
.y1e9{bottom:843.120072px;}
.y44{bottom:844.920078px;}
.yef{bottom:846.360077px;}
.y11{bottom:847.620072px;}
.y212{bottom:849.060070px;}
.ycc{bottom:849.420078px;}
.y155{bottom:850.860077px;}
.y1ae{bottom:852.480079px;}
.y73{bottom:858.420078px;}
.y1e8{bottom:859.500068px;}
.y43{bottom:862.920078px;}
.yee{bottom:864.360077px;}
.y211{bottom:865.620072px;}
.ycb{bottom:867.420078px;}
.y177{bottom:868.860077px;}
.y1ad{bottom:870.480079px;}
.y10{bottom:871.560070px;}
.y72{bottom:876.420078px;}
.ya0{bottom:877.860077px;}
.y42{bottom:880.920078px;}
.y1e7{bottom:882.000068px;}
.yca{bottom:885.420078px;}
.y176{bottom:886.860077px;}
.y210{bottom:888.120072px;}
.y1ac{bottom:888.480079px;}
.yed{bottom:891.360077px;}
.y71{bottom:894.420078px;}
.yf{bottom:895.320065px;}
.y154{bottom:895.860077px;}
.y41{bottom:898.920078px;}
.yc9{bottom:903.420078px;}
.y1e6{bottom:904.500068px;}
.y9f{bottom:904.860077px;}
.y1ab{bottom:906.480079px;}
.yec{bottom:909.360077px;}
.y70{bottom:912.420078px;}
.y153{bottom:913.860077px;}
.y40{bottom:916.920078px;}
.yc8{bottom:921.420078px;}
.y9e{bottom:922.860077px;}
.y1aa{bottom:924.480079px;}
.y1e5{bottom:927.000068px;}
.yeb{bottom:927.360077px;}
.y6f{bottom:930.420078px;}
.y152{bottom:931.860077px;}
.y3f{bottom:934.920078px;}
.y196{bottom:939.420078px;}
.y9d{bottom:940.860077px;}
.y1e4{bottom:943.560070px;}
.y6e{bottom:948.420078px;}
.yc7{bottom:948.780053px;}
.y151{bottom:949.860077px;}
.y1a9{bottom:951.480079px;}
.y3e{bottom:952.920078px;}
.yea{bottom:954.900055px;}
.ye{bottom:956.880066px;}
.y195{bottom:957.420078px;}
.y9c{bottom:958.860077px;}
.y1e3{bottom:966.060070px;}
.y6d{bottom:966.420078px;}
.y150{bottom:967.860077px;}
.y1a8{bottom:969.480079px;}
.y3d{bottom:970.920078px;}
.y194{bottom:975.420061px;}
.y9b{bottom:976.860060px;}
.y1e2{bottom:982.620072px;}
.y6c{bottom:984.420061px;}
.yc6{bottom:985.860060px;}
.y1a7{bottom:987.480063px;}
.y20f{bottom:988.560070px;}
.ye9{bottom:993.060070px;}
.yd{bottom:998.820065px;}
.y3c{bottom:999.180073px;}
.y6b{bottom:1002.420061px;}
.y9a{bottom:1003.860060px;}
.y1e1{bottom:1005.120072px;}
.y1a6{bottom:1005.480063px;}
.y20e{bottom:1011.060070px;}
.ye8{bottom:1017.180073px;}
.y6a{bottom:1020.420061px;}
.y99{bottom:1021.860060px;}
.y1e0{bottom:1027.620072px;}
.y14f{bottom:1030.860060px;}
.y1a5{bottom:1032.840070px;}
.y69{bottom:1038.420061px;}
.y3b{bottom:1039.860060px;}
.yc{bottom:1040.940067px;}
.y1df{bottom:1044.000068px;}
.y14e{bottom:1048.860060px;}
.y20d{bottom:1050.120072px;}
.y193{bottom:1056.420061px;}
.y98{bottom:1057.860060px;}
.y68{bottom:1065.780069px;}
.y3a{bottom:1066.500068px;}
.y14d{bottom:1066.860060px;}
.y1a4{bottom:1069.920061px;}
.y192{bottom:1074.420061px;}
.y107{bottom:1075.860060px;}
.y39{bottom:1083.060070px;}
.y97{bottom:1084.860060px;}
.y1a3{bottom:1087.920061px;}
.y1de{bottom:1089.000068px;}
.y191{bottom:1092.420061px;}
.y9{bottom:1098.720068px;}
.y67{bottom:1102.860060px;}
.y38{bottom:1105.560070px;}
.y7{bottom:1112.760064px;}
.y6{bottom:1116.000068px;}
.y1a2{bottom:1116.180073px;}
.y190{bottom:1119.780069px;}
.y66{bottom:1120.860068px;}
.y37{bottom:1122.120063px;}
.y1{bottom:1126.800067px;}
.y5{bottom:1133.280069px;}
.y4{bottom:1150.560070px;}
.y3{bottom:1167.840063px;}
.y2{bottom:1185.120063px;}
.h4{height:15.840001px;}
.h5{height:48.412173px;}
.h9{height:48.860434px;}
.h2{height:53.575923px;}
.h3{height:54.071997px;}
.hc{height:54.305443px;}
.h8{height:62.650791px;}
.h7{height:63.213312px;}
.hb{height:65.146978px;}
.ha{height:76.221948px;}
.h6{height:137.172862px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:3.420044px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:63.899999px;}
.xa{left:85.140000px;}
.x9{left:106.379998px;}
.x1{left:318.060001px;}
.xf{left:333.540012px;}
.x4{left:398.519989px;}
.x6{left:420.839985px;}
.xc{left:427.860008px;}
.x2{left:570.240006px;}
.x3{left:619.379998px;}
.x5{left:622.799973px;}
.xb{left:654.659981px;}
.xd{left:688.500000px;}
.xe{left:727.740006px;}
.x10{left:767.159981px;}
.x7{left:825.659981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024049pt;}
.ls6{letter-spacing:0.048074pt;}
.ls2{letter-spacing:0.319004pt;}
.ls5{letter-spacing:0.329559pt;}
.ls1{letter-spacing:0.334617pt;}
.ls8{letter-spacing:0.334633pt;}
.ls3{letter-spacing:5.125174pt;}
.ls7{letter-spacing:753.285222pt;}
.ws6{word-spacing:-48.002000pt;}
.ws5{word-spacing:-20.742534pt;}
.ws4{word-spacing:-16.310425pt;}
.ws0{word-spacing:-14.714794pt;}
.ws1{word-spacing:-14.080529pt;}
.ws2{word-spacing:-13.296554pt;}
.ws3{word-spacing:0.000000pt;}
._b{margin-left:-3.790753pt;}
._8{margin-left:-2.826894pt;}
._1{margin-left:-1.805507pt;}
._4{margin-left:-0.915752pt;}
._0{width:1.159761pt;}
._2{width:2.173483pt;}
._3{width:3.826690pt;}
._7{width:4.726134pt;}
._6{width:5.849651pt;}
._5{width:6.958415pt;}
._a{width:7.942759pt;}
._9{width:9.092370pt;}
._c{width:10.074089pt;}
._d{width:11.632888pt;}
._e{width:12.668144pt;}
._10{width:21.366510pt;}
._f{width:22.423122pt;}
.fs1{font-size:48.002000pt;}
.fs0{font-size:53.122000pt;}
.fs5{font-size:58.882400pt;}
.fs3{font-size:64.002404pt;}
.fs4{font-size:74.882796pt;}
.fs2{font-size:138.885192pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:1.760009pt;}
.yb{bottom:21.440064pt;}
.ya{bottom:59.520020pt;}
.y14c{bottom:98.400025pt;}
.y20c{bottom:102.720032pt;}
.y96{bottom:104.320069pt;}
.y18f{bottom:107.040039pt;}
.yc5{bottom:109.760071pt;}
.y14b{bottom:114.400086pt;}
.y175{bottom:115.040039pt;}
.y36{bottom:116.640076pt;}
.y20b{bottom:117.440064pt;}
.y106{bottom:117.760071pt;}
.y95{bottom:120.320069pt;}
.y18e{bottom:123.040039pt;}
.y12e{bottom:123.680054pt;}
.yc4{bottom:125.760071pt;}
.y65{bottom:128.320069pt;}
.y14a{bottom:130.400086pt;}
.y174{bottom:131.040039pt;}
.y35{bottom:131.360047pt;}
.y1dd{bottom:133.440064pt;}
.y105{bottom:133.760071pt;}
.y94{bottom:136.320069pt;}
.y20a{bottom:137.440064pt;}
.y18d{bottom:139.040039pt;}
.yc3{bottom:141.760071pt;}
.y64{bottom:144.320069pt;}
.y34{bottom:146.080079pt;}
.y149{bottom:146.400086pt;}
.y173{bottom:147.040039pt;}
.y12d{bottom:147.680054pt;}
.y209{bottom:152.000061pt;}
.y93{bottom:152.320069pt;}
.y1dc{bottom:153.440064pt;}
.y18c{bottom:155.040039pt;}
.yc2{bottom:157.760071pt;}
.y104{bottom:158.080079pt;}
.y63{bottom:160.320069pt;}
.y33{bottom:160.640076pt;}
.y148{bottom:162.400086pt;}
.y172{bottom:163.040039pt;}
.y12c{bottom:163.680054pt;}
.y1db{bottom:168.000061pt;}
.y92{bottom:168.320069pt;}
.y18b{bottom:171.040039pt;}
.y208{bottom:172.000061pt;}
.yc1{bottom:173.760071pt;}
.y32{bottom:175.360047pt;}
.y12b{bottom:179.680054pt;}
.y62{bottom:184.800049pt;}
.y147{bottom:186.400086pt;}
.y207{bottom:186.720032pt;}
.y171{bottom:187.040039pt;}
.y1da{bottom:188.000061pt;}
.yc0{bottom:189.760071pt;}
.y31{bottom:190.080079pt;}
.y103{bottom:191.040039pt;}
.y91{bottom:192.320069pt;}
.y12a{bottom:195.680054pt;}
.y206{bottom:201.440064pt;}
.y146{bottom:202.400086pt;}
.y1d9{bottom:202.720032pt;}
.y170{bottom:203.040039pt;}
.y30{bottom:204.640076pt;}
.ybf{bottom:205.760071pt;}
.y102{bottom:207.040039pt;}
.y90{bottom:208.320069pt;}
.y129{bottom:211.680054pt;}
.y1a1{bottom:214.240052pt;}
.y145{bottom:218.400086pt;}
.y61{bottom:218.880066pt;}
.y16f{bottom:219.040039pt;}
.y205{bottom:221.440064pt;}
.ye7{bottom:221.760071pt;}
.y1d8{bottom:222.720032pt;}
.y101{bottom:223.040039pt;}
.y8f{bottom:224.320069pt;}
.y2f{bottom:224.640076pt;}
.y18a{bottom:227.040039pt;}
.ybe{bottom:229.760071pt;}
.y16e{bottom:235.040039pt;}
.y128{bottom:235.680054pt;}
.y1d7{bottom:237.440064pt;}
.ye6{bottom:237.760071pt;}
.y100{bottom:239.040039pt;}
.y2e{bottom:239.360047pt;}
.y8e{bottom:240.320069pt;}
.y204{bottom:241.440064pt;}
.y144{bottom:242.720032pt;}
.y189{bottom:243.040039pt;}
.ybd{bottom:245.760071pt;}
.y16d{bottom:251.040039pt;}
.y127{bottom:251.680054pt;}
.ye5{bottom:253.760071pt;}
.y2d{bottom:254.080079pt;}
.y60{bottom:255.040039pt;}
.y203{bottom:256.000061pt;}
.y8d{bottom:256.320069pt;}
.y1d6{bottom:257.440064pt;}
.y188{bottom:259.040039pt;}
.ybc{bottom:261.760071pt;}
.y16c{bottom:267.040039pt;}
.y126{bottom:267.680054pt;}
.y2c{bottom:268.640076pt;}
.ye4{bottom:269.760071pt;}
.y1d5{bottom:272.000061pt;}
.y8c{bottom:272.320069pt;}
.y187{bottom:275.040039pt;}
.y143{bottom:275.680054pt;}
.y202{bottom:276.000061pt;}
.ybb{bottom:277.760071pt;}
.y5f{bottom:279.040039pt;}
.y16b{bottom:283.040039pt;}
.y2b{bottom:283.360047pt;}
.y125{bottom:283.680054pt;}
.ye3{bottom:285.760071pt;}
.y115{bottom:288.320069pt;}
.y186{bottom:291.040039pt;}
.y142{bottom:291.680054pt;}
.y1d4{bottom:292.000061pt;}
.yba{bottom:293.760071pt;}
.y5e{bottom:295.040039pt;}
.y201{bottom:296.000061pt;}
.y8b{bottom:296.800049pt;}
.y2a{bottom:298.080079pt;}
.y16a{bottom:299.040039pt;}
.y124{bottom:299.680054pt;}
.ye2{bottom:301.760071pt;}
.y185{bottom:307.040039pt;}
.y141{bottom:307.680054pt;}
.yb9{bottom:309.760071pt;}
.y5d{bottom:311.040039pt;}
.y1d3{bottom:312.000061pt;}
.y114{bottom:312.320069pt;}
.y169{bottom:315.040039pt;}
.y123{bottom:315.680054pt;}
.y200{bottom:316.000061pt;}
.y29{bottom:318.080079pt;}
.y184{bottom:323.040039pt;}
.y140{bottom:323.680054pt;}
.yb8{bottom:325.760071pt;}
.ye1{bottom:326.080079pt;}
.y5c{bottom:327.040039pt;}
.y113{bottom:328.320069pt;}
.y8a{bottom:329.760071pt;}
.y1d2{bottom:332.000061pt;}
.y1ff{bottom:336.000061pt;}
.y28{bottom:338.080079pt;}
.y168{bottom:339.040039pt;}
.y1c2{bottom:339.360047pt;}
.y122{bottom:339.680054pt;}
.yb7{bottom:341.760071pt;}
.y5b{bottom:343.040039pt;}
.y112{bottom:344.320069pt;}
.y89{bottom:345.760071pt;}
.y1d1{bottom:346.720032pt;}
.y27{bottom:352.640076pt;}
.y167{bottom:355.040039pt;}
.y121{bottom:355.680054pt;}
.y1fe{bottom:356.000061pt;}
.yb6{bottom:357.760071pt;}
.y5a{bottom:359.040039pt;}
.y111{bottom:360.320069pt;}
.y88{bottom:361.760071pt;}
.y183{bottom:363.040039pt;}
.y1d0{bottom:366.720032pt;}
.y26{bottom:367.360047pt;}
.y166{bottom:371.040039pt;}
.y120{bottom:371.680054pt;}
.y1c1{bottom:372.320069pt;}
.yb5{bottom:373.760071pt;}
.y59{bottom:375.040039pt;}
.y1fd{bottom:376.000061pt;}
.y110{bottom:376.320069pt;}
.y87{bottom:377.760071pt;}
.y182{bottom:379.040039pt;}
.y1cf{bottom:381.440064pt;}
.y25{bottom:382.080079pt;}
.ye0{bottom:383.040039pt;}
.y165{bottom:387.040039pt;}
.y11f{bottom:387.680054pt;}
.y1c0{bottom:388.320069pt;}
.y1fc{bottom:390.720032pt;}
.y58{bottom:391.040039pt;}
.y86{bottom:393.760071pt;}
.y181{bottom:395.040039pt;}
.y24{bottom:396.640076pt;}
.yb4{bottom:397.760071pt;}
.y10f{bottom:400.320069pt;}
.y1ce{bottom:401.440064pt;}
.ydf{bottom:403.040039pt;}
.y11e{bottom:403.680054pt;}
.y1bf{bottom:404.320069pt;}
.y57{bottom:407.040039pt;}
.y1fb{bottom:410.720032pt;}
.y180{bottom:411.040039pt;}
.y23{bottom:411.360047pt;}
.yb3{bottom:413.760071pt;}
.y10e{bottom:416.320069pt;}
.y85{bottom:417.760071pt;}
.y164{bottom:419.040039pt;}
.y1be{bottom:420.320069pt;}
.y1cd{bottom:421.440064pt;}
.yde{bottom:423.040039pt;}
.y22{bottom:426.080079pt;}
.y17f{bottom:427.040039pt;}
.y11d{bottom:427.680054pt;}
.y13f{bottom:428.800049pt;}
.yb2{bottom:429.760071pt;}
.y1fa{bottom:430.720032pt;}
.y56{bottom:431.040039pt;}
.y10d{bottom:432.320069pt;}
.y84{bottom:433.760071pt;}
.y1cc{bottom:436.000061pt;}
.y1bd{bottom:436.320069pt;}
.yff{bottom:439.040039pt;}
.y21{bottom:440.640076pt;}
.ydd{bottom:443.040039pt;}
.y11c{bottom:443.680054pt;}
.y1f9{bottom:445.440064pt;}
.yb1{bottom:445.760071pt;}
.y55{bottom:447.040039pt;}
.y10c{bottom:448.320069pt;}
.y83{bottom:449.760071pt;}
.y17e{bottom:451.040039pt;}
.y1bc{bottom:452.320069pt;}
.y1cb{bottom:456.000061pt;}
.ydc{bottom:459.040039pt;}
.y11b{bottom:459.680054pt;}
.y20{bottom:460.640076pt;}
.yb0{bottom:461.760071pt;}
.y54{bottom:463.040039pt;}
.yfe{bottom:463.360047pt;}
.y13e{bottom:464.960083pt;}
.y1f8{bottom:465.440064pt;}
.y82{bottom:465.760071pt;}
.y17d{bottom:467.040039pt;}
.y1bb{bottom:468.320069pt;}
.y1ca{bottom:470.720032pt;}
.y10b{bottom:472.320069pt;}
.ydb{bottom:475.040039pt;}
.y1f{bottom:475.360047pt;}
.y11a{bottom:475.680054pt;}
.yaf{bottom:477.760071pt;}
.y1f7{bottom:480.000061pt;}
.y17c{bottom:483.040039pt;}
.y1ba{bottom:484.320069pt;}
.y53{bottom:487.040039pt;}
.y13d{bottom:488.960083pt;}
.y81{bottom:489.760071pt;}
.y1e{bottom:490.080079pt;}
.y1c9{bottom:490.720032pt;}
.yda{bottom:491.040039pt;}
.yae{bottom:493.760071pt;}
.yfd{bottom:496.320069pt;}
.y17b{bottom:499.040039pt;}
.y163{bottom:499.360047pt;}
.y119{bottom:499.840088pt;}
.y1f6{bottom:500.000061pt;}
.y1b9{bottom:500.320069pt;}
.y52{bottom:503.040039pt;}
.y1d{bottom:504.640076pt;}
.y13c{bottom:504.960083pt;}
.y1c8{bottom:505.440064pt;}
.y80{bottom:505.760071pt;}
.yd9{bottom:507.040039pt;}
.yad{bottom:509.760071pt;}
.yfc{bottom:512.320069pt;}
.y1a0{bottom:515.040039pt;}
.y1b8{bottom:516.320069pt;}
.y118{bottom:516.960083pt;}
.y10a{bottom:517.120057pt;}
.y51{bottom:519.040039pt;}
.y1c{bottom:519.360047pt;}
.y1f5{bottom:520.000061pt;}
.y13b{bottom:520.960083pt;}
.yd8{bottom:523.040039pt;}
.y1c7{bottom:525.440064pt;}
.yac{bottom:525.760071pt;}
.yfb{bottom:528.320069pt;}
.y7f{bottom:529.760071pt;}
.y19f{bottom:531.040039pt;}
.y162{bottom:532.320069pt;}
.y1b{bottom:534.080079pt;}
.y1f4{bottom:534.720032pt;}
.y50{bottom:535.040039pt;}
.y13a{bottom:536.960083pt;}
.yd7{bottom:539.040039pt;}
.y1c6{bottom:540.000061pt;}
.y117{bottom:540.640076pt;}
.yab{bottom:541.760071pt;}
.y7e{bottom:545.760071pt;}
.y19e{bottom:547.040039pt;}
.y161{bottom:548.320069pt;}
.y1a{bottom:548.640076pt;}
.y4f{bottom:551.040039pt;}
.yfa{bottom:552.320069pt;}
.y139{bottom:552.960083pt;}
.y116{bottom:553.120057pt;}
.y1f3{bottom:554.720032pt;}
.yd6{bottom:555.040039pt;}
.y1b7{bottom:556.320069pt;}
.yaa{bottom:557.760071pt;}
.y1c5{bottom:560.000061pt;}
.y7d{bottom:561.760071pt;}
.y19d{bottom:563.040039pt;}
.y160{bottom:564.320069pt;}
.y4e{bottom:567.040039pt;}
.yf9{bottom:568.320069pt;}
.y19{bottom:568.640076pt;}
.y138{bottom:568.960083pt;}
.yd5{bottom:571.040039pt;}
.y1b6{bottom:572.320069pt;}
.y1f2{bottom:574.720032pt;}
.y15f{bottom:580.320069pt;}
.ya9{bottom:581.760071pt;}
.yf8{bottom:584.320069pt;}
.y7c{bottom:585.760071pt;}
.yd4{bottom:587.040039pt;}
.y1b5{bottom:588.320069pt;}
.y18{bottom:589.280030pt;}
.y1f1{bottom:589.440064pt;}
.y1c4{bottom:590.720032pt;}
.y4d{bottom:591.040039pt;}
.y137{bottom:592.960083pt;}
.ya8{bottom:597.760071pt;}
.yf7{bottom:600.320069pt;}
.y7b{bottom:601.760071pt;}
.yd3{bottom:603.040039pt;}
.y15e{bottom:604.320069pt;}
.y17{bottom:606.720032pt;}
.y4c{bottom:607.040039pt;}
.y136{bottom:608.960083pt;}
.y1f0{bottom:609.760071pt;}
.y1c3{bottom:611.040070pt;}
.ya7{bottom:613.760071pt;}
.y7a{bottom:617.760071pt;}
.yd2{bottom:619.040070pt;}
.y15d{bottom:620.320069pt;}
.y4b{bottom:623.040070pt;}
.yf6{bottom:624.320069pt;}
.y135{bottom:624.960053pt;}
.y1ef{bottom:625.440064pt;}
.y16{bottom:628.000061pt;}
.ya6{bottom:629.760071pt;}
.y79{bottom:633.760071pt;}
.y19c{bottom:635.040070pt;}
.y15c{bottom:636.320069pt;}
.y4a{bottom:639.040070pt;}
.y134{bottom:640.960053pt;}
.yd1{bottom:643.040070pt;}
.y17a{bottom:643.360047pt;}
.y1b4{bottom:644.800049pt;}
.y1ee{bottom:645.440064pt;}
.ya5{bottom:645.760071pt;}
.yf5{bottom:648.320069pt;}
.y15{bottom:649.280060pt;}
.y19b{bottom:651.040070pt;}
.y15b{bottom:652.320069pt;}
.y49{bottom:655.040070pt;}
.y133{bottom:656.960053pt;}
.y78{bottom:658.080048pt;}
.yd0{bottom:659.040070pt;}
.y1ed{bottom:660.000061pt;}
.yf4{bottom:664.320069pt;}
.y19a{bottom:667.040070pt;}
.y15a{bottom:668.320069pt;}
.ya4{bottom:670.080048pt;}
.y132{bottom:672.960053pt;}
.ycf{bottom:675.040070pt;}
.y179{bottom:676.320069pt;}
.y1b3{bottom:677.760071pt;}
.y48{bottom:679.040070pt;}
.y14{bottom:680.000061pt;}
.yf3{bottom:680.320069pt;}
.y199{bottom:683.040070pt;}
.y159{bottom:684.320069pt;}
.y131{bottom:688.960053pt;}
.y77{bottom:691.040070pt;}
.y178{bottom:692.320069pt;}
.y1b2{bottom:693.760071pt;}
.y1ec{bottom:694.720063pt;}
.y47{bottom:695.040070pt;}
.yf2{bottom:696.320069pt;}
.y198{bottom:699.040070pt;}
.y13{bottom:701.440064pt;}
.ya3{bottom:703.040070pt;}
.y76{bottom:707.040070pt;}
.y158{bottom:708.320069pt;}
.y1b1{bottom:709.760071pt;}
.y46{bottom:711.040070pt;}
.yf1{bottom:712.320069pt;}
.y130{bottom:712.960053pt;}
.y1eb{bottom:714.720063pt;}
.y197{bottom:715.040070pt;}
.ya2{bottom:719.040070pt;}
.y12{bottom:722.720063pt;}
.yce{bottom:723.040070pt;}
.y157{bottom:724.320069pt;}
.y1b0{bottom:725.760071pt;}
.y45{bottom:727.040070pt;}
.y109{bottom:728.320069pt;}
.y1ea{bottom:729.440064pt;}
.y75{bottom:731.040070pt;}
.y213{bottom:734.720063pt;}
.yf0{bottom:736.320069pt;}
.y12f{bottom:736.640046pt;}
.ycd{bottom:739.040070pt;}
.y156{bottom:740.320069pt;}
.y1af{bottom:741.760071pt;}
.ya1{bottom:744.160065pt;}
.y74{bottom:747.040070pt;}
.y108{bottom:749.120057pt;}
.y1e9{bottom:749.440064pt;}
.y44{bottom:751.040070pt;}
.yef{bottom:752.320069pt;}
.y11{bottom:753.440064pt;}
.y212{bottom:754.720063pt;}
.ycc{bottom:755.040070pt;}
.y155{bottom:756.320069pt;}
.y1ae{bottom:757.760071pt;}
.y73{bottom:763.040070pt;}
.y1e8{bottom:764.000061pt;}
.y43{bottom:767.040070pt;}
.yee{bottom:768.320069pt;}
.y211{bottom:769.440064pt;}
.ycb{bottom:771.040070pt;}
.y177{bottom:772.320069pt;}
.y1ad{bottom:773.760071pt;}
.y10{bottom:774.720063pt;}
.y72{bottom:779.040070pt;}
.ya0{bottom:780.320069pt;}
.y42{bottom:783.040070pt;}
.y1e7{bottom:784.000061pt;}
.yca{bottom:787.040070pt;}
.y176{bottom:788.320069pt;}
.y210{bottom:789.440064pt;}
.y1ac{bottom:789.760071pt;}
.yed{bottom:792.320069pt;}
.y71{bottom:795.040070pt;}
.yf{bottom:795.840058pt;}
.y154{bottom:796.320069pt;}
.y41{bottom:799.040070pt;}
.yc9{bottom:803.040070pt;}
.y1e6{bottom:804.000061pt;}
.y9f{bottom:804.320069pt;}
.y1ab{bottom:805.760071pt;}
.yec{bottom:808.320069pt;}
.y70{bottom:811.040070pt;}
.y153{bottom:812.320069pt;}
.y40{bottom:815.040070pt;}
.yc8{bottom:819.040070pt;}
.y9e{bottom:820.320069pt;}
.y1aa{bottom:821.760071pt;}
.y1e5{bottom:824.000061pt;}
.yeb{bottom:824.320069pt;}
.y6f{bottom:827.040070pt;}
.y152{bottom:828.320069pt;}
.y3f{bottom:831.040070pt;}
.y196{bottom:835.040070pt;}
.y9d{bottom:836.320069pt;}
.y1e4{bottom:838.720063pt;}
.y6e{bottom:843.040070pt;}
.yc7{bottom:843.360047pt;}
.y151{bottom:844.320069pt;}
.y1a9{bottom:845.760071pt;}
.y3e{bottom:847.040070pt;}
.yea{bottom:848.800049pt;}
.ye{bottom:850.560059pt;}
.y195{bottom:851.040070pt;}
.y9c{bottom:852.320069pt;}
.y1e3{bottom:858.720063pt;}
.y6d{bottom:859.040070pt;}
.y150{bottom:860.320069pt;}
.y1a8{bottom:861.760071pt;}
.y3d{bottom:863.040070pt;}
.y194{bottom:867.040055pt;}
.y9b{bottom:868.320054pt;}
.y1e2{bottom:873.440064pt;}
.y6c{bottom:875.040055pt;}
.yc6{bottom:876.320054pt;}
.y1a7{bottom:877.760056pt;}
.y20f{bottom:878.720063pt;}
.ye9{bottom:882.720063pt;}
.yd{bottom:887.840058pt;}
.y3c{bottom:888.160065pt;}
.y6b{bottom:891.040055pt;}
.y9a{bottom:892.320054pt;}
.y1e1{bottom:893.440064pt;}
.y1a6{bottom:893.760056pt;}
.y20e{bottom:898.720063pt;}
.ye8{bottom:904.160065pt;}
.y6a{bottom:907.040055pt;}
.y99{bottom:908.320054pt;}
.y1e0{bottom:913.440064pt;}
.y14f{bottom:916.320054pt;}
.y1a5{bottom:918.080063pt;}
.y69{bottom:923.040055pt;}
.y3b{bottom:924.320054pt;}
.yc{bottom:925.280060pt;}
.y1df{bottom:928.000061pt;}
.y14e{bottom:932.320054pt;}
.y20d{bottom:933.440064pt;}
.y193{bottom:939.040055pt;}
.y98{bottom:940.320054pt;}
.y68{bottom:947.360062pt;}
.y3a{bottom:948.000061pt;}
.y14d{bottom:948.320054pt;}
.y1a4{bottom:951.040055pt;}
.y192{bottom:955.040055pt;}
.y107{bottom:956.320054pt;}
.y39{bottom:962.720063pt;}
.y97{bottom:964.320054pt;}
.y1a3{bottom:967.040055pt;}
.y1de{bottom:968.000061pt;}
.y191{bottom:971.040055pt;}
.y9{bottom:976.640061pt;}
.y67{bottom:980.320054pt;}
.y38{bottom:982.720063pt;}
.y7{bottom:989.120057pt;}
.y6{bottom:992.000061pt;}
.y1a2{bottom:992.160065pt;}
.y190{bottom:995.360062pt;}
.y66{bottom:996.320061pt;}
.y37{bottom:997.440056pt;}
.y1{bottom:1001.600060pt;}
.y5{bottom:1007.360062pt;}
.y4{bottom:1022.720063pt;}
.y3{bottom:1038.080056pt;}
.y2{bottom:1053.440056pt;}
.h4{height:14.080001pt;}
.h5{height:43.033043pt;}
.h9{height:43.431497pt;}
.h2{height:47.623043pt;}
.h3{height:48.063997pt;}
.hc{height:48.271505pt;}
.h8{height:55.689592pt;}
.h7{height:56.189611pt;}
.hb{height:57.908425pt;}
.ha{height:67.752842pt;}
.h6{height:121.931433pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:3.040039pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:56.799999pt;}
.xa{left:75.680000pt;}
.x9{left:94.559998pt;}
.x1{left:282.720001pt;}
.xf{left:296.480011pt;}
.x4{left:354.239990pt;}
.x6{left:374.079987pt;}
.xc{left:380.320007pt;}
.x2{left:506.880005pt;}
.x3{left:550.559998pt;}
.x5{left:553.599976pt;}
.xb{left:581.919983pt;}
.xd{left:612.000000pt;}
.xe{left:646.880005pt;}
.x10{left:681.919983pt;}
.x7{left:733.919983pt;}
}




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