
    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_1a03377af2c07815228ecc20.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f0928a182cccdfcd2d1cf820.woff')format("woff");}.ff2{font-family:ff2;line-height:0.760254;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_6dc79fbbb83d33fd8543acb4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.810547;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_bdfe0f73fb8bc896084a8711.woff')format("woff");}.ff4{font-family:ff4;line-height:0.809570;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_9eaea260d360f132d54002f6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.142090;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_6284f82007e3578dd4728ae8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.142090;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_12e41c9ee4adf4a3940f6b8d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.200684;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_165a290395da8e77d4a2dd25.woff')format("woff");}.ff8{font-family:ff8;line-height:1.072266;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_80800c1e88ca44866d39cd99.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8ab44c7d70fd609d6320cb70.woff')format("woff");}.ffa{font-family:ffa;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c99f6410b622a6e4e100c601.woff')format("woff");}.ffb{font-family:ffb;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7c3a0ba956376f00580992dd.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v3{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.000000px;}
.v1{vertical-align:27.600000px;}
.lsb{letter-spacing:-0.900000px;}
.ls11{letter-spacing:-0.768000px;}
.lsc{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.546000px;}
.ls6{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.204000px;}
.ls13{letter-spacing:-0.048000px;}
.ls7{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.384000px;}
.ls12{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.528000px;}
.ls8{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.678000px;}
.lsd{letter-spacing:1.200000px;}
.lse{letter-spacing:4.800000px;}
.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;}
}
.ws11{word-spacing:-108.000000px;}
.ws0{word-spacing:-96.000000px;}
.ws1{word-spacing:-45.996000px;}
.ws7{word-spacing:-24.834000px;}
.wse{word-spacing:-18.024000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.976000px;}
.ws5{word-spacing:-17.568000px;}
.ws8{word-spacing:-17.400000px;}
.wsd{word-spacing:-12.237900px;}
.wsc{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.000000px;}
.ws9{word-spacing:-11.400000px;}
.wsb{word-spacing:-11.100000px;}
.ws10{word-spacing:-10.881900px;}
.wsf{word-spacing:-10.848000px;}
.wsa{word-spacing:-10.500000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-2.169600px;}
._1{margin-left:-1.128000px;}
._0{width:1.056000px;}
._2{width:2.742000px;}
._3{width:4.245600px;}
._a{width:5.804400px;}
._b{width:7.988400px;}
._5{width:9.256800px;}
._c{width:10.308000px;}
._6{width:11.359200px;}
._8{width:12.806400px;}
._7{width:13.932000px;}
._11{width:15.276000px;}
._9{width:16.290000px;}
._d{width:20.016000px;}
._10{width:25.200000px;}
._f{width:70.710000px;}
._e{width:107.292000px;}
.fc3{color:rgb(83,129,53);}
.fc2{color:transparent;}
.fc1{color:rgb(132,60,11);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:27.600000px;}
.fs12{font-size:36.000000px;}
.fs10{font-size:42.000000px;}
.fsd{font-size:45.600000px;}
.fsb{font-size:48.000000px;}
.fs13{font-size:48.150000px;}
.fs8{font-size:54.000000px;}
.fs11{font-size:54.150000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fsc{font-size:69.600000px;}
.fse{font-size:69.750000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:120.000000px;}
.fs6{font-size:156.000000px;}
.fs7{font-size:156.150000px;}
.fs3{font-size:168.000000px;}
.fs2{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:4.200000px;}
.y5d{bottom:5.115000px;}
.y153{bottom:5.925000px;}
.y176{bottom:9.300000px;}
.y5a{bottom:9.315000px;}
.y18a{bottom:9.450000px;}
.y100{bottom:9.525000px;}
.y4e{bottom:11.400000px;}
.yba{bottom:13.005000px;}
.yc3{bottom:13.080000px;}
.y149{bottom:13.170000px;}
.y52{bottom:14.100000px;}
.y56{bottom:14.385000px;}
.y156{bottom:20.775000px;}
.y185{bottom:24.555000px;}
.y13a{bottom:24.600000px;}
.yfb{bottom:24.630000px;}
.y5c{bottom:27.000000px;}
.y187{bottom:27.120000px;}
.yfd{bottom:27.195000px;}
.y14e{bottom:27.300000px;}
.y15a{bottom:27.780000px;}
.y18b{bottom:28.230000px;}
.y101{bottom:28.305000px;}
.y15b{bottom:28.350000px;}
.y186{bottom:28.875000px;}
.yfc{bottom:28.995000px;}
.yb9{bottom:29.505000px;}
.yc2{bottom:29.580000px;}
.y152{bottom:30.270000px;}
.y148{bottom:31.680000px;}
.y4d{bottom:32.130000px;}
.y18c{bottom:32.295000px;}
.y102{bottom:32.400000px;}
.y178{bottom:35.775000px;}
.y189{bottom:37.200000px;}
.yff{bottom:37.320000px;}
.y17a{bottom:38.775000px;}
.y13b{bottom:40.275000px;}
.y188{bottom:40.575000px;}
.yfe{bottom:40.695000px;}
.y159{bottom:41.895000px;}
.y154{bottom:42.705000px;}
.y109{bottom:43.500000px;}
.y55{bottom:45.330000px;}
.y139{bottom:47.505000px;}
.yb3{bottom:47.550000px;}
.ybd{bottom:47.625000px;}
.y104{bottom:51.075000px;}
.y184{bottom:51.375000px;}
.yfa{bottom:51.450000px;}
.y150{bottom:51.855000px;}
.y14d{bottom:52.530000px;}
.y4c{bottom:52.845000px;}
.y14b{bottom:53.070000px;}
.y14c{bottom:53.250000px;}
.y13f{bottom:55.125000px;}
.y2{bottom:56.437500px;}
.yc7{bottom:56.737500px;}
.y18d{bottom:57.495000px;}
.y103{bottom:57.600000px;}
.y183{bottom:58.200000px;}
.yf9{bottom:58.320000px;}
.yc4{bottom:59.475000px;}
.y157{bottom:60.645000px;}
.y151{bottom:60.825000px;}
.y172{bottom:61.275000px;}
.y12c{bottom:61.695000px;}
.y131{bottom:62.175000px;}
.y12f{bottom:62.730000px;}
.y14f{bottom:63.900000px;}
.y171{bottom:64.425000px;}
.y13e{bottom:64.605000px;}
.y12e{bottom:66.030000px;}
.y17b{bottom:66.330000px;}
.y15d{bottom:69.075000px;}
.y15c{bottom:72.300000px;}
.y179{bottom:72.450000px;}
.y155{bottom:73.500000px;}
.y1{bottom:73.537500px;}
.y10a{bottom:73.830000px;}
.yc6{bottom:73.837500px;}
.ybb{bottom:75.600000px;}
.y137{bottom:76.275000px;}
.y54{bottom:76.530000px;}
.y14a{bottom:76.650000px;}
.y16e{bottom:76.980000px;}
.y138{bottom:77.070000px;}
.y174{bottom:78.225000px;}
.y16f{bottom:78.405000px;}
.y17c{bottom:79.170000px;}
.y18e{bottom:79.305000px;}
.y173{bottom:81.375000px;}
.y158{bottom:81.600000px;}
.yb4{bottom:85.005000px;}
.y13c{bottom:86.250000px;}
.y12d{bottom:86.925000px;}
.y135{bottom:87.450000px;}
.y134{bottom:87.600000px;}
.y170{bottom:88.650000px;}
.y95{bottom:92.737500px;}
.y175{bottom:93.675000px;}
.ybe{bottom:94.455000px;}
.y17d{bottom:94.875000px;}
.y12b{bottom:94.980000px;}
.y136{bottom:95.205000px;}
.y177{bottom:95.370000px;}
.y130{bottom:98.280000px;}
.yc5{bottom:103.875000px;}
.y94{bottom:104.737500px;}
.y18{bottom:106.537500px;}
.y13d{bottom:106.680000px;}
.y132{bottom:107.895000px;}
.yde{bottom:108.037500px;}
.y93{bottom:108.637500px;}
.y141{bottom:109.230000px;}
.y133{bottom:111.000000px;}
.y12a{bottom:115.950000px;}
.y92{bottom:116.737500px;}
.yf4{bottom:120.795000px;}
.yb5{bottom:122.505000px;}
.y105{bottom:122.670000px;}
.y17{bottom:127.837500px;}
.y91{bottom:128.737500px;}
.y17e{bottom:131.355000px;}
.y169{bottom:133.050000px;}
.y142{bottom:135.000000px;}
.ydd{bottom:138.937500px;}
.y90{bottom:141.037500px;}
.ybf{bottom:141.300000px;}
.y124{bottom:143.625000px;}
.yf5{bottom:147.075000px;}
.y106{bottom:150.855000px;}
.y8f{bottom:153.045000px;}
.y16{bottom:156.630000px;}
.y140{bottom:158.325000px;}
.yb6{bottom:159.975000px;}
.y143{bottom:160.800000px;}
.y8e{bottom:165.030000px;}
.y16a{bottom:165.105000px;}
.y17f{bottom:167.880000px;}
.ydc{bottom:170.175000px;}
.yf6{bottom:173.400000px;}
.y8d{bottom:177.045000px;}
.y125{bottom:177.975000px;}
.y107{bottom:179.025000px;}
.y15{bottom:185.430000px;}
.y144{bottom:186.570000px;}
.yc0{bottom:188.130000px;}
.y8c{bottom:189.345000px;}
.y27{bottom:192.420000px;}
.y16b{bottom:197.130000px;}
.yb7{bottom:197.430000px;}
.yf7{bottom:199.725000px;}
.ydb{bottom:201.075000px;}
.y8b{bottom:201.375000px;}
.y180{bottom:204.420000px;}
.y108{bottom:207.225000px;}
.y126{bottom:212.355000px;}
.y8a{bottom:213.375000px;}
.y89{bottom:217.275000px;}
.y14{bottom:217.875000px;}
.y122{bottom:221.175000px;}
.y88{bottom:225.375000px;}
.yf8{bottom:226.005000px;}
.y16c{bottom:229.200000px;}
.yda{bottom:232.275000px;}
.yb8{bottom:234.900000px;}
.yc1{bottom:234.975000px;}
.y87{bottom:237.675000px;}
.y145{bottom:238.125000px;}
.y47{bottom:238.875000px;}
.y26{bottom:239.805000px;}
.y181{bottom:240.930000px;}
.y86{bottom:241.575000px;}
.y127{bottom:246.705000px;}
.y167{bottom:251.175000px;}
.y85{bottom:251.475000px;}
.y121{bottom:252.075000px;}
.y16d{bottom:261.255000px;}
.yd9{bottom:263.175000px;}
.y146{bottom:263.925000px;}
.y13{bottom:264.075000px;}
.y46{bottom:268.575000px;}
.y19{bottom:274.200000px;}
.yb1{bottom:276.075000px;}
.y182{bottom:277.425000px;}
.y128{bottom:281.100000px;}
.y120{bottom:283.275000px;}
.y25{bottom:287.250000px;}
.y147{bottom:289.695000px;}
.y84{bottom:292.275000px;}
.yd8{bottom:294.420000px;}
.y45{bottom:298.275000px;}
.yb0{bottom:306.975000px;}
.y166{bottom:309.375000px;}
.y12{bottom:310.275000px;}
.y11f{bottom:314.175000px;}
.y129{bottom:315.450000px;}
.y44{bottom:318.975000px;}
.y83{bottom:321.975000px;}
.yd7{bottom:325.320000px;}
.y24{bottom:334.650000px;}
.yaf{bottom:338.175000px;}
.y43{bottom:339.675000px;}
.y11e{bottom:345.375000px;}
.y82{bottom:351.675000px;}
.y11{bottom:356.475000px;}
.yd6{bottom:356.520000px;}
.y165{bottom:367.320000px;}
.yae{bottom:369.120000px;}
.y42{bottom:369.420000px;}
.y11d{bottom:376.320000px;}
.y81{bottom:381.405000px;}
.y23{bottom:382.050000px;}
.yd5{bottom:387.450000px;}
.y41{bottom:399.120000px;}
.yad{bottom:400.320000px;}
.y10{bottom:402.705000px;}
.y11c{bottom:407.505000px;}
.y80{bottom:411.405000px;}
.yd4{bottom:418.650000px;}
.y164{bottom:425.505000px;}
.y40{bottom:428.820000px;}
.y22{bottom:429.495000px;}
.yac{bottom:431.205000px;}
.y11b{bottom:438.405000px;}
.yf{bottom:448.905000px;}
.yd3{bottom:449.550000px;}
.y7f{bottom:450.120000px;}
.yf2{bottom:456.420000px;}
.y3f{bottom:458.505000px;}
.yab{bottom:462.405000px;}
.y11a{bottom:469.620000px;}
.y21{bottom:476.895000px;}
.y7e{bottom:479.820000px;}
.yd2{bottom:480.750000px;}
.y163{bottom:483.420000px;}
.yf1{bottom:487.620000px;}
.y3e{bottom:488.205000px;}
.yb2{bottom:488.400000px;}
.ybc{bottom:489.300000px;}
.yaa{bottom:493.320000px;}
.ye{bottom:495.105000px;}
.y119{bottom:500.505000px;}
.y7d{bottom:509.505000px;}
.yd1{bottom:511.695000px;}
.y123{bottom:511.800000px;}
.y162{bottom:514.620000px;}
.y3d{bottom:517.905000px;}
.y20{bottom:524.280000px;}
.ya9{bottom:524.505000px;}
.y118{bottom:531.750000px;}
.y7c{bottom:539.250000px;}
.y168{bottom:539.700000px;}
.yd0{bottom:542.895000px;}
.yd{bottom:544.050000px;}
.yf0{bottom:545.550000px;}
.y3c{bottom:547.650000px;}
.ya8{bottom:555.450000px;}
.y117{bottom:562.650000px;}
.y7b{bottom:568.950000px;}
.y1f{bottom:571.680000px;}
.y161{bottom:572.550000px;}
.ycf{bottom:573.795000px;}
.y3b{bottom:577.350000px;}
.ya7{bottom:586.650000px;}
.y116{bottom:593.850000px;}
.y7a{bottom:598.950000px;}
.yc{bottom:603.150000px;}
.yef{bottom:603.750000px;}
.yce{bottom:604.995000px;}
.y3a{bottom:607.050000px;}
.ya6{bottom:617.550000px;}
.y1e{bottom:619.125000px;}
.y115{bottom:624.750000px;}
.y79{bottom:628.650000px;}
.yee{bottom:634.650000px;}
.ycd{bottom:635.925000px;}
.y39{bottom:636.750000px;}
.y5f{bottom:647.850000px;}
.ya5{bottom:648.750000px;}
.yf3{bottom:652.500000px;}
.y78{bottom:658.350000px;}
.yb{bottom:662.550000px;}
.yed{bottom:665.850000px;}
.y38{bottom:666.450000px;}
.y1d{bottom:666.525000px;}
.ycc{bottom:667.125000px;}
.y5e{bottom:678.750000px;}
.ya4{bottom:679.650000px;}
.y114{bottom:682.950000px;}
.y77{bottom:688.050000px;}
.y5b{bottom:695.580000px;}
.y37{bottom:696.180000px;}
.yec{bottom:696.780000px;}
.ycb{bottom:698.025000px;}
.ya3{bottom:710.880000px;}
.y1c{bottom:713.925000px;}
.ya{bottom:721.995000px;}
.y36{bottom:725.880000px;}
.y75{bottom:726.780000px;}
.yeb{bottom:727.980000px;}
.yca{bottom:729.270000px;}
.ya2{bottom:731.580000px;}
.y76{bottom:732.780000px;}
.ydf{bottom:735.270000px;}
.y59{bottom:739.680000px;}
.y113{bottom:740.880000px;}
.y35{bottom:755.580000px;}
.y74{bottom:756.780000px;}
.yea{bottom:758.880000px;}
.yc9{bottom:760.170000px;}
.y1b{bottom:761.370000px;}
.ya1{bottom:762.495000px;}
.y9{bottom:781.380000px;}
.y58{bottom:784.980000px;}
.y34{bottom:785.295000px;}
.y73{bottom:786.480000px;}
.ye9{bottom:790.080000px;}
.yc8{bottom:791.370000px;}
.ya0{bottom:793.695000px;}
.y112{bottom:799.080000px;}
.y1a{bottom:808.755000px;}
.y33{bottom:814.995000px;}
.y57{bottom:815.880000px;}
.y72{bottom:816.195000px;}
.ye8{bottom:820.980000px;}
.y9f{bottom:824.580000px;}
.y53{bottom:832.695000px;}
.y8{bottom:840.795000px;}
.y32{bottom:844.695000px;}
.y71{bottom:845.880000px;}
.y160{bottom:847.980000px;}
.ye7{bottom:852.195000px;}
.y9e{bottom:855.795000px;}
.y111{bottom:856.980000px;}
.y31{bottom:874.425000px;}
.y15f{bottom:879.225000px;}
.y70{bottom:884.625000px;}
.y9d{bottom:886.725000px;}
.y110{bottom:888.225000px;}
.y66{bottom:893.025000px;}
.y7{bottom:901.725000px;}
.y30{bottom:904.125000px;}
.ye6{bottom:910.125000px;}
.y6f{bottom:914.325000px;}
.y9c{bottom:917.925000px;}
.y10f{bottom:919.125000px;}
.y65{bottom:924.225000px;}
.y51{bottom:926.025000px;}
.y2f{bottom:933.825000px;}
.ye5{bottom:941.325000px;}
.y6d{bottom:944.325000px;}
.y6e{bottom:950.325000px;}
.y64{bottom:955.125000px;}
.y50{bottom:960.825000px;}
.y6{bottom:962.625000px;}
.y2e{bottom:963.525000px;}
.ye4{bottom:972.225000px;}
.y6c{bottom:974.025000px;}
.y9b{bottom:975.825000px;}
.y63{bottom:986.325000px;}
.y4f{bottom:992.025000px;}
.y2d{bottom:993.225000px;}
.y15e{bottom:999.225000px;}
.y6a{bottom:1003.725000px;}
.y9a{bottom:1006.725000px;}
.y10e{bottom:1008.225000px;}
.y4b{bottom:1008.825000px;}
.y6b{bottom:1009.725000px;}
.y5{bottom:1012.425000px;}
.y62{bottom:1017.225000px;}
.y2c{bottom:1022.955000px;}
.ye3{bottom:1030.455000px;}
.y69{bottom:1033.455000px;}
.y99{bottom:1037.955000px;}
.y10d{bottom:1039.455000px;}
.y61{bottom:1048.455000px;}
.y2b{bottom:1057.755000px;}
.ye2{bottom:1061.355000px;}
.y68{bottom:1063.170000px;}
.y98{bottom:1068.855000px;}
.y10c{bottom:1070.370000px;}
.y60{bottom:1079.355000px;}
.y4{bottom:1082.955000px;}
.y4a{bottom:1089.570000px;}
.ye1{bottom:1092.255000px;}
.y67{bottom:1092.855000px;}
.y10b{bottom:1101.255000px;}
.y2a{bottom:1103.355000px;}
.y49{bottom:1110.255000px;}
.y97{bottom:1118.370000px;}
.y29{bottom:1138.455000px;}
.y3{bottom:1141.755000px;}
.y48{bottom:1142.070000px;}
.y96{bottom:1151.070000px;}
.y28{bottom:1165.755000px;}
.h25{height:12.900000px;}
.h1b{height:24.742969px;}
.h13{height:30.900000px;}
.h26{height:32.273438px;}
.h1c{height:37.652344px;}
.h18{height:40.879687px;}
.hb{height:43.057617px;}
.h16{height:44.100000px;}
.h3{height:45.000000px;}
.h1f{height:47.742188px;}
.h2a{height:47.891382px;}
.h20{height:53.709961px;}
.h1d{height:53.789062px;}
.h22{height:53.859155px;}
.h28{height:59.677734px;}
.hf{height:61.664062px;}
.h7{height:61.778320px;}
.h17{height:62.395312px;}
.h1a{height:62.529785px;}
.h2{height:64.546875px;}
.h19{height:64.879687px;}
.h10{height:70.631250px;}
.h15{height:73.722656px;}
.h12{height:76.837500px;}
.hc{height:86.115234px;}
.h6{height:89.859375px;}
.h14{height:93.322500px;}
.h11{height:101.091797px;}
.hd{height:112.324219px;}
.h5{height:133.957031px;}
.he{height:150.609375px;}
.h9{height:155.085938px;}
.ha{height:155.235059px;}
.h4{height:172.230469px;}
.h27{height:246.600000px;}
.h1e{height:255.000000px;}
.h21{height:255.300000px;}
.h2b{height:297.600000px;}
.h29{height:335.700000px;}
.h8{height:848.100000px;}
.h23{height:893.100000px;}
.h24{height:893.250000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w14{width:38.100000px;}
.w7{width:156.330000px;}
.w9{width:177.930000px;}
.w8{width:177.975000px;}
.w6{width:199.575000px;}
.w5{width:214.875000px;}
.wa{width:237.075000px;}
.wc{width:237.375000px;}
.wb{width:237.675000px;}
.w10{width:339.900000px;}
.wf{width:340.200000px;}
.w3{width:348.300000px;}
.w18{width:361.200000px;}
.w15{width:361.500000px;}
.w17{width:403.800000px;}
.w16{width:404.100000px;}
.w4{width:497.250000px;}
.wd{width:712.125000px;}
.we{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.w13{width:1262.699981px;}
.w11{width:1262.700000px;}
.w12{width:1263.000000px;}
.x0{left:0.000000px;}
.x17{left:7.800000px;}
.xb{left:10.950000px;}
.x67{left:14.625000px;}
.x45{left:20.175000px;}
.x53{left:22.387500px;}
.x6a{left:29.370000px;}
.x2d{left:31.837500px;}
.x50{left:33.600000px;}
.x3a{left:38.025000px;}
.x2a{left:39.937500px;}
.x69{left:41.505000px;}
.x52{left:45.000000px;}
.x29{left:46.005000px;}
.x34{left:48.375000px;}
.x51{left:51.945000px;}
.x30{left:56.445000px;}
.x39{left:58.545000px;}
.x49{left:60.345000px;}
.x7f{left:64.470000px;}
.x48{left:67.170000px;}
.x28{left:70.350000px;}
.x54{left:75.375000px;}
.x2f{left:80.805000px;}
.x6b{left:86.370000px;}
.x47{left:87.720000px;}
.x55{left:90.150000px;}
.x16{left:98.437500px;}
.x38{left:99.600000px;}
.x6c{left:102.075000px;}
.x3b{left:103.725000px;}
.x56{left:104.925000px;}
.x5{left:106.237487px;}
.x27{left:107.700000px;}
.x14{left:109.837487px;}
.x2b{left:111.600000px;}
.x31{left:114.600000px;}
.x78{left:116.520000px;}
.x6d{left:117.795000px;}
.x57{left:119.655000px;}
.x3c{left:126.975000px;}
.x80{left:129.600000px;}
.x58{left:134.430000px;}
.x4a{left:135.555000px;}
.xc{left:138.937487px;}
.x3{left:142.237487px;}
.x59{left:149.175000px;}
.x3d{left:150.270000px;}
.x81{left:152.820000px;}
.x79{left:153.870000px;}
.x26{left:160.244987px;}
.x4b{left:164.175000px;}
.x19{left:170.175000px;}
.x7a{left:172.500000px;}
.x3e{left:173.550000px;}
.x82{left:176.025000px;}
.x5a{left:178.725000px;}
.x6e{left:180.600000px;}
.x2c{left:188.670000px;}
.x7b{left:191.175000px;}
.x4c{left:192.750000px;}
.x32{left:193.920000px;}
.x3f{left:196.845000px;}
.x83{left:199.200000px;}
.x5b{left:208.245000px;}
.x1f{left:209.767500px;}
.x6f{left:212.025000px;}
.x40{left:220.095000px;}
.x4d{left:221.355000px;}
.x5c{left:222.975000px;}
.x70{left:227.730000px;}
.x5d{left:237.750000px;}
.x41{left:243.375000px;}
.x84{left:245.625000px;}
.x7c{left:247.170000px;}
.x4e{left:249.975000px;}
.x5e{left:252.495000px;}
.x21{left:256.874973px;}
.x71{left:259.125000px;}
.x22{left:262.574987px;}
.x33{left:265.275000px;}
.x42{left:266.670000px;}
.x85{left:268.800000px;}
.x72{left:274.830000px;}
.x4f{left:278.580000px;}
.x5f{left:282.045000px;}
.x7d{left:284.475000px;}
.x43{left:289.905000px;}
.x86{left:292.020000px;}
.x60{left:296.775000px;}
.x1a{left:298.020000px;}
.xf{left:301.319987px;}
.x20{left:303.719987px;}
.x73{left:306.255000px;}
.x15{left:307.904987px;}
.x61{left:311.550000px;}
.x44{left:313.200000px;}
.x87{left:315.225000px;}
.x25{left:322.319987px;}
.x62{left:326.280000px;}
.x1d{left:335.520000px;}
.x74{left:337.650000px;}
.x63{left:341.070000px;}
.x12{left:348.404987px;}
.x75{left:353.355000px;}
.x64{left:355.845000px;}
.x76{left:369.075000px;}
.x65{left:370.575000px;}
.x66{left:385.350000px;}
.xe{left:396.119987px;}
.x10{left:400.649987px;}
.xd{left:413.549987px;}
.x68{left:447.900000px;}
.x1b{left:454.350000px;}
.x2{left:457.049987px;}
.xa{left:459.000000px;}
.x2e{left:461.400000px;}
.x13{left:462.449987px;}
.x46{left:465.900000px;}
.x4{left:475.049987px;}
.x7e{left:479.100000px;}
.x11{left:484.049987px;}
.x6{left:521.879987px;}
.x9{left:523.094987px;}
.x7{left:564.494987px;}
.x1e{left:573.195000px;}
.x18{left:595.695000px;}
.x8{left:627.194987px;}
.x1c{left:632.625000px;}
.x36{left:642.149981px;}
.x23{left:697.424973px;}
.x24{left:703.124987px;}
.x77{left:789.869987px;}
.x1{left:798.869987px;}
.x37{left:1075.755000px;}
.x35{left:1169.069981px;}
@media print{
.v3{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.333333pt;}
.v1{vertical-align:24.533333pt;}
.lsb{letter-spacing:-0.800000pt;}
.ls11{letter-spacing:-0.682667pt;}
.lsc{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.485333pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.181333pt;}
.ls13{letter-spacing:-0.042667pt;}
.ls7{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.341333pt;}
.ls12{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.469333pt;}
.ls8{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.602667pt;}
.lsd{letter-spacing:1.066667pt;}
.lse{letter-spacing:4.266667pt;}
.ws11{word-spacing:-96.000000pt;}
.ws0{word-spacing:-85.333333pt;}
.ws1{word-spacing:-40.885333pt;}
.ws7{word-spacing:-22.074667pt;}
.wse{word-spacing:-16.021333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.978667pt;}
.ws5{word-spacing:-15.616000pt;}
.ws8{word-spacing:-15.466667pt;}
.wsd{word-spacing:-10.878133pt;}
.wsc{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws9{word-spacing:-10.133333pt;}
.wsb{word-spacing:-9.866667pt;}
.ws10{word-spacing:-9.672800pt;}
.wsf{word-spacing:-9.642667pt;}
.wsa{word-spacing:-9.333333pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-1.928533pt;}
._1{margin-left:-1.002667pt;}
._0{width:0.938667pt;}
._2{width:2.437333pt;}
._3{width:3.773867pt;}
._a{width:5.159467pt;}
._b{width:7.100800pt;}
._5{width:8.228267pt;}
._c{width:9.162667pt;}
._6{width:10.097067pt;}
._8{width:11.383467pt;}
._7{width:12.384000pt;}
._11{width:13.578667pt;}
._9{width:14.480000pt;}
._d{width:17.792000pt;}
._10{width:22.400000pt;}
._f{width:62.853333pt;}
._e{width:95.370667pt;}
.fsf{font-size:24.533333pt;}
.fs12{font-size:32.000000pt;}
.fs10{font-size:37.333333pt;}
.fsd{font-size:40.533333pt;}
.fsb{font-size:42.666667pt;}
.fs13{font-size:42.800000pt;}
.fs8{font-size:48.000000pt;}
.fs11{font-size:48.133333pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fsc{font-size:61.866667pt;}
.fse{font-size:62.000000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:106.666667pt;}
.fs6{font-size:138.666667pt;}
.fs7{font-size:138.800000pt;}
.fs3{font-size:149.333333pt;}
.fs2{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:3.733333pt;}
.y5d{bottom:4.546667pt;}
.y153{bottom:5.266667pt;}
.y176{bottom:8.266667pt;}
.y5a{bottom:8.280000pt;}
.y18a{bottom:8.400000pt;}
.y100{bottom:8.466667pt;}
.y4e{bottom:10.133333pt;}
.yba{bottom:11.560000pt;}
.yc3{bottom:11.626667pt;}
.y149{bottom:11.706667pt;}
.y52{bottom:12.533333pt;}
.y56{bottom:12.786667pt;}
.y156{bottom:18.466667pt;}
.y185{bottom:21.826667pt;}
.y13a{bottom:21.866667pt;}
.yfb{bottom:21.893333pt;}
.y5c{bottom:24.000000pt;}
.y187{bottom:24.106667pt;}
.yfd{bottom:24.173333pt;}
.y14e{bottom:24.266667pt;}
.y15a{bottom:24.693333pt;}
.y18b{bottom:25.093333pt;}
.y101{bottom:25.160000pt;}
.y15b{bottom:25.200000pt;}
.y186{bottom:25.666667pt;}
.yfc{bottom:25.773333pt;}
.yb9{bottom:26.226667pt;}
.yc2{bottom:26.293333pt;}
.y152{bottom:26.906667pt;}
.y148{bottom:28.160000pt;}
.y4d{bottom:28.560000pt;}
.y18c{bottom:28.706667pt;}
.y102{bottom:28.800000pt;}
.y178{bottom:31.800000pt;}
.y189{bottom:33.066667pt;}
.yff{bottom:33.173333pt;}
.y17a{bottom:34.466667pt;}
.y13b{bottom:35.800000pt;}
.y188{bottom:36.066667pt;}
.yfe{bottom:36.173333pt;}
.y159{bottom:37.240000pt;}
.y154{bottom:37.960000pt;}
.y109{bottom:38.666667pt;}
.y55{bottom:40.293333pt;}
.y139{bottom:42.226667pt;}
.yb3{bottom:42.266667pt;}
.ybd{bottom:42.333333pt;}
.y104{bottom:45.400000pt;}
.y184{bottom:45.666667pt;}
.yfa{bottom:45.733333pt;}
.y150{bottom:46.093333pt;}
.y14d{bottom:46.693333pt;}
.y4c{bottom:46.973333pt;}
.y14b{bottom:47.173333pt;}
.y14c{bottom:47.333333pt;}
.y13f{bottom:49.000000pt;}
.y2{bottom:50.166667pt;}
.yc7{bottom:50.433333pt;}
.y18d{bottom:51.106667pt;}
.y103{bottom:51.200000pt;}
.y183{bottom:51.733333pt;}
.yf9{bottom:51.840000pt;}
.yc4{bottom:52.866667pt;}
.y157{bottom:53.906667pt;}
.y151{bottom:54.066667pt;}
.y172{bottom:54.466667pt;}
.y12c{bottom:54.840000pt;}
.y131{bottom:55.266667pt;}
.y12f{bottom:55.760000pt;}
.y14f{bottom:56.800000pt;}
.y171{bottom:57.266667pt;}
.y13e{bottom:57.426667pt;}
.y12e{bottom:58.693333pt;}
.y17b{bottom:58.960000pt;}
.y15d{bottom:61.400000pt;}
.y15c{bottom:64.266667pt;}
.y179{bottom:64.400000pt;}
.y155{bottom:65.333333pt;}
.y1{bottom:65.366667pt;}
.y10a{bottom:65.626667pt;}
.yc6{bottom:65.633333pt;}
.ybb{bottom:67.200000pt;}
.y137{bottom:67.800000pt;}
.y54{bottom:68.026667pt;}
.y14a{bottom:68.133333pt;}
.y16e{bottom:68.426667pt;}
.y138{bottom:68.506667pt;}
.y174{bottom:69.533333pt;}
.y16f{bottom:69.693333pt;}
.y17c{bottom:70.373333pt;}
.y18e{bottom:70.493333pt;}
.y173{bottom:72.333333pt;}
.y158{bottom:72.533333pt;}
.yb4{bottom:75.560000pt;}
.y13c{bottom:76.666667pt;}
.y12d{bottom:77.266667pt;}
.y135{bottom:77.733333pt;}
.y134{bottom:77.866667pt;}
.y170{bottom:78.800000pt;}
.y95{bottom:82.433333pt;}
.y175{bottom:83.266667pt;}
.ybe{bottom:83.960000pt;}
.y17d{bottom:84.333333pt;}
.y12b{bottom:84.426667pt;}
.y136{bottom:84.626667pt;}
.y177{bottom:84.773333pt;}
.y130{bottom:87.360000pt;}
.yc5{bottom:92.333333pt;}
.y94{bottom:93.100000pt;}
.y18{bottom:94.700000pt;}
.y13d{bottom:94.826667pt;}
.y132{bottom:95.906667pt;}
.yde{bottom:96.033333pt;}
.y93{bottom:96.566667pt;}
.y141{bottom:97.093333pt;}
.y133{bottom:98.666667pt;}
.y12a{bottom:103.066667pt;}
.y92{bottom:103.766667pt;}
.yf4{bottom:107.373333pt;}
.yb5{bottom:108.893333pt;}
.y105{bottom:109.040000pt;}
.y17{bottom:113.633333pt;}
.y91{bottom:114.433333pt;}
.y17e{bottom:116.760000pt;}
.y169{bottom:118.266667pt;}
.y142{bottom:120.000000pt;}
.ydd{bottom:123.500000pt;}
.y90{bottom:125.366667pt;}
.ybf{bottom:125.600000pt;}
.y124{bottom:127.666667pt;}
.yf5{bottom:130.733333pt;}
.y106{bottom:134.093333pt;}
.y8f{bottom:136.040000pt;}
.y16{bottom:139.226667pt;}
.y140{bottom:140.733333pt;}
.yb6{bottom:142.200000pt;}
.y143{bottom:142.933333pt;}
.y8e{bottom:146.693333pt;}
.y16a{bottom:146.760000pt;}
.y17f{bottom:149.226667pt;}
.ydc{bottom:151.266667pt;}
.yf6{bottom:154.133333pt;}
.y8d{bottom:157.373333pt;}
.y125{bottom:158.200000pt;}
.y107{bottom:159.133333pt;}
.y15{bottom:164.826667pt;}
.y144{bottom:165.840000pt;}
.yc0{bottom:167.226667pt;}
.y8c{bottom:168.306667pt;}
.y27{bottom:171.040000pt;}
.y16b{bottom:175.226667pt;}
.yb7{bottom:175.493333pt;}
.yf7{bottom:177.533333pt;}
.ydb{bottom:178.733333pt;}
.y8b{bottom:179.000000pt;}
.y180{bottom:181.706667pt;}
.y108{bottom:184.200000pt;}
.y126{bottom:188.760000pt;}
.y8a{bottom:189.666667pt;}
.y89{bottom:193.133333pt;}
.y14{bottom:193.666667pt;}
.y122{bottom:196.600000pt;}
.y88{bottom:200.333333pt;}
.yf8{bottom:200.893333pt;}
.y16c{bottom:203.733333pt;}
.yda{bottom:206.466667pt;}
.yb8{bottom:208.800000pt;}
.yc1{bottom:208.866667pt;}
.y87{bottom:211.266667pt;}
.y145{bottom:211.666667pt;}
.y47{bottom:212.333333pt;}
.y26{bottom:213.160000pt;}
.y181{bottom:214.160000pt;}
.y86{bottom:214.733333pt;}
.y127{bottom:219.293333pt;}
.y167{bottom:223.266667pt;}
.y85{bottom:223.533333pt;}
.y121{bottom:224.066667pt;}
.y16d{bottom:232.226667pt;}
.yd9{bottom:233.933333pt;}
.y146{bottom:234.600000pt;}
.y13{bottom:234.733333pt;}
.y46{bottom:238.733333pt;}
.y19{bottom:243.733333pt;}
.yb1{bottom:245.400000pt;}
.y182{bottom:246.600000pt;}
.y128{bottom:249.866667pt;}
.y120{bottom:251.800000pt;}
.y25{bottom:255.333333pt;}
.y147{bottom:257.506667pt;}
.y84{bottom:259.800000pt;}
.yd8{bottom:261.706667pt;}
.y45{bottom:265.133333pt;}
.yb0{bottom:272.866667pt;}
.y166{bottom:275.000000pt;}
.y12{bottom:275.800000pt;}
.y11f{bottom:279.266667pt;}
.y129{bottom:280.400000pt;}
.y44{bottom:283.533333pt;}
.y83{bottom:286.200000pt;}
.yd7{bottom:289.173333pt;}
.y24{bottom:297.466667pt;}
.yaf{bottom:300.600000pt;}
.y43{bottom:301.933333pt;}
.y11e{bottom:307.000000pt;}
.y82{bottom:312.600000pt;}
.y11{bottom:316.866667pt;}
.yd6{bottom:316.906667pt;}
.y165{bottom:326.506667pt;}
.yae{bottom:328.106667pt;}
.y42{bottom:328.373333pt;}
.y11d{bottom:334.506667pt;}
.y81{bottom:339.026667pt;}
.y23{bottom:339.600000pt;}
.yd5{bottom:344.400000pt;}
.y41{bottom:354.773333pt;}
.yad{bottom:355.840000pt;}
.y10{bottom:357.960000pt;}
.y11c{bottom:362.226667pt;}
.y80{bottom:365.693333pt;}
.yd4{bottom:372.133333pt;}
.y164{bottom:378.226667pt;}
.y40{bottom:381.173333pt;}
.y22{bottom:381.773333pt;}
.yac{bottom:383.293333pt;}
.y11b{bottom:389.693333pt;}
.yf{bottom:399.026667pt;}
.yd3{bottom:399.600000pt;}
.y7f{bottom:400.106667pt;}
.yf2{bottom:405.706667pt;}
.y3f{bottom:407.560000pt;}
.yab{bottom:411.026667pt;}
.y11a{bottom:417.440000pt;}
.y21{bottom:423.906667pt;}
.y7e{bottom:426.506667pt;}
.yd2{bottom:427.333333pt;}
.y163{bottom:429.706667pt;}
.yf1{bottom:433.440000pt;}
.y3e{bottom:433.960000pt;}
.yb2{bottom:434.133333pt;}
.ybc{bottom:434.933333pt;}
.yaa{bottom:438.506667pt;}
.ye{bottom:440.093333pt;}
.y119{bottom:444.893333pt;}
.y7d{bottom:452.893333pt;}
.yd1{bottom:454.840000pt;}
.y123{bottom:454.933333pt;}
.y162{bottom:457.440000pt;}
.y3d{bottom:460.360000pt;}
.y20{bottom:466.026667pt;}
.ya9{bottom:466.226667pt;}
.y118{bottom:472.666667pt;}
.y7c{bottom:479.333333pt;}
.y168{bottom:479.733333pt;}
.yd0{bottom:482.573333pt;}
.yd{bottom:483.600000pt;}
.yf0{bottom:484.933333pt;}
.y3c{bottom:486.800000pt;}
.ya8{bottom:493.733333pt;}
.y117{bottom:500.133333pt;}
.y7b{bottom:505.733333pt;}
.y1f{bottom:508.160000pt;}
.y161{bottom:508.933333pt;}
.ycf{bottom:510.040000pt;}
.y3b{bottom:513.200000pt;}
.ya7{bottom:521.466667pt;}
.y116{bottom:527.866667pt;}
.y7a{bottom:532.400000pt;}
.yc{bottom:536.133333pt;}
.yef{bottom:536.666667pt;}
.yce{bottom:537.773333pt;}
.y3a{bottom:539.600000pt;}
.ya6{bottom:548.933333pt;}
.y1e{bottom:550.333333pt;}
.y115{bottom:555.333333pt;}
.y79{bottom:558.800000pt;}
.yee{bottom:564.133333pt;}
.ycd{bottom:565.266667pt;}
.y39{bottom:566.000000pt;}
.y5f{bottom:575.866667pt;}
.ya5{bottom:576.666667pt;}
.yf3{bottom:580.000000pt;}
.y78{bottom:585.200000pt;}
.yb{bottom:588.933333pt;}
.yed{bottom:591.866667pt;}
.y38{bottom:592.400000pt;}
.y1d{bottom:592.466667pt;}
.ycc{bottom:593.000000pt;}
.y5e{bottom:603.333333pt;}
.ya4{bottom:604.133333pt;}
.y114{bottom:607.066667pt;}
.y77{bottom:611.600000pt;}
.y5b{bottom:618.293333pt;}
.y37{bottom:618.826667pt;}
.yec{bottom:619.360000pt;}
.ycb{bottom:620.466667pt;}
.ya3{bottom:631.893333pt;}
.y1c{bottom:634.600000pt;}
.ya{bottom:641.773333pt;}
.y36{bottom:645.226667pt;}
.y75{bottom:646.026667pt;}
.yeb{bottom:647.093333pt;}
.yca{bottom:648.240000pt;}
.ya2{bottom:650.293333pt;}
.y76{bottom:651.360000pt;}
.ydf{bottom:653.573333pt;}
.y59{bottom:657.493333pt;}
.y113{bottom:658.560000pt;}
.y35{bottom:671.626667pt;}
.y74{bottom:672.693333pt;}
.yea{bottom:674.560000pt;}
.yc9{bottom:675.706667pt;}
.y1b{bottom:676.773333pt;}
.ya1{bottom:677.773333pt;}
.y9{bottom:694.560000pt;}
.y58{bottom:697.760000pt;}
.y34{bottom:698.040000pt;}
.y73{bottom:699.093333pt;}
.ye9{bottom:702.293333pt;}
.yc8{bottom:703.440000pt;}
.ya0{bottom:705.506667pt;}
.y112{bottom:710.293333pt;}
.y1a{bottom:718.893333pt;}
.y33{bottom:724.440000pt;}
.y57{bottom:725.226667pt;}
.y72{bottom:725.506667pt;}
.ye8{bottom:729.760000pt;}
.y9f{bottom:732.960000pt;}
.y53{bottom:740.173333pt;}
.y8{bottom:747.373333pt;}
.y32{bottom:750.840000pt;}
.y71{bottom:751.893333pt;}
.y160{bottom:753.760000pt;}
.ye7{bottom:757.506667pt;}
.y9e{bottom:760.706667pt;}
.y111{bottom:761.760000pt;}
.y31{bottom:777.266667pt;}
.y15f{bottom:781.533333pt;}
.y70{bottom:786.333333pt;}
.y9d{bottom:788.200000pt;}
.y110{bottom:789.533333pt;}
.y66{bottom:793.800000pt;}
.y7{bottom:801.533333pt;}
.y30{bottom:803.666667pt;}
.ye6{bottom:809.000000pt;}
.y6f{bottom:812.733333pt;}
.y9c{bottom:815.933333pt;}
.y10f{bottom:817.000000pt;}
.y65{bottom:821.533333pt;}
.y51{bottom:823.133333pt;}
.y2f{bottom:830.066667pt;}
.ye5{bottom:836.733333pt;}
.y6d{bottom:839.400000pt;}
.y6e{bottom:844.733333pt;}
.y64{bottom:849.000000pt;}
.y50{bottom:854.066667pt;}
.y6{bottom:855.666667pt;}
.y2e{bottom:856.466667pt;}
.ye4{bottom:864.200000pt;}
.y6c{bottom:865.800000pt;}
.y9b{bottom:867.400000pt;}
.y63{bottom:876.733333pt;}
.y4f{bottom:881.800000pt;}
.y2d{bottom:882.866667pt;}
.y15e{bottom:888.200000pt;}
.y6a{bottom:892.200000pt;}
.y9a{bottom:894.866667pt;}
.y10e{bottom:896.200000pt;}
.y4b{bottom:896.733333pt;}
.y6b{bottom:897.533333pt;}
.y5{bottom:899.933333pt;}
.y62{bottom:904.200000pt;}
.y2c{bottom:909.293333pt;}
.ye3{bottom:915.960000pt;}
.y69{bottom:918.626667pt;}
.y99{bottom:922.626667pt;}
.y10d{bottom:923.960000pt;}
.y61{bottom:931.960000pt;}
.y2b{bottom:940.226667pt;}
.ye2{bottom:943.426667pt;}
.y68{bottom:945.040000pt;}
.y98{bottom:950.093333pt;}
.y10c{bottom:951.440000pt;}
.y60{bottom:959.426667pt;}
.y4{bottom:962.626667pt;}
.y4a{bottom:968.506667pt;}
.ye1{bottom:970.893333pt;}
.y67{bottom:971.426667pt;}
.y10b{bottom:978.893333pt;}
.y2a{bottom:980.760000pt;}
.y49{bottom:986.893333pt;}
.y97{bottom:994.106667pt;}
.y29{bottom:1011.960000pt;}
.y3{bottom:1014.893333pt;}
.y48{bottom:1015.173333pt;}
.y96{bottom:1023.173333pt;}
.y28{bottom:1036.226667pt;}
.h25{height:11.466667pt;}
.h1b{height:21.993750pt;}
.h13{height:27.466667pt;}
.h26{height:28.687500pt;}
.h1c{height:33.468750pt;}
.h18{height:36.337500pt;}
.hb{height:38.273438pt;}
.h16{height:39.200000pt;}
.h3{height:40.000000pt;}
.h1f{height:42.437500pt;}
.h2a{height:42.570117pt;}
.h20{height:47.742188pt;}
.h1d{height:47.812500pt;}
.h22{height:47.874805pt;}
.h28{height:53.046875pt;}
.hf{height:54.812500pt;}
.h7{height:54.914062pt;}
.h17{height:55.462500pt;}
.h1a{height:55.582031pt;}
.h2{height:57.375000pt;}
.h19{height:57.670833pt;}
.h10{height:62.783333pt;}
.h15{height:65.531250pt;}
.h12{height:68.300000pt;}
.hc{height:76.546875pt;}
.h6{height:79.875000pt;}
.h14{height:82.953333pt;}
.h11{height:89.859375pt;}
.hd{height:99.843750pt;}
.h5{height:119.072917pt;}
.he{height:133.875000pt;}
.h9{height:137.854167pt;}
.ha{height:137.986719pt;}
.h4{height:153.093750pt;}
.h27{height:219.200000pt;}
.h1e{height:226.666667pt;}
.h21{height:226.933333pt;}
.h2b{height:264.533333pt;}
.h29{height:298.400000pt;}
.h8{height:753.866667pt;}
.h23{height:793.866667pt;}
.h24{height:794.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w14{width:33.866667pt;}
.w7{width:138.960000pt;}
.w9{width:158.160000pt;}
.w8{width:158.200000pt;}
.w6{width:177.400000pt;}
.w5{width:191.000000pt;}
.wa{width:210.733333pt;}
.wc{width:211.000000pt;}
.wb{width:211.266667pt;}
.w10{width:302.133333pt;}
.wf{width:302.400000pt;}
.w3{width:309.600000pt;}
.w18{width:321.066667pt;}
.w15{width:321.333333pt;}
.w17{width:358.933333pt;}
.w16{width:359.200000pt;}
.w4{width:442.000000pt;}
.wd{width:633.000000pt;}
.we{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.w13{width:1122.399983pt;}
.w11{width:1122.400000pt;}
.w12{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x17{left:6.933333pt;}
.xb{left:9.733333pt;}
.x67{left:13.000000pt;}
.x45{left:17.933333pt;}
.x53{left:19.900000pt;}
.x6a{left:26.106667pt;}
.x2d{left:28.300000pt;}
.x50{left:29.866667pt;}
.x3a{left:33.800000pt;}
.x2a{left:35.500000pt;}
.x69{left:36.893333pt;}
.x52{left:40.000000pt;}
.x29{left:40.893333pt;}
.x34{left:43.000000pt;}
.x51{left:46.173333pt;}
.x30{left:50.173333pt;}
.x39{left:52.040000pt;}
.x49{left:53.640000pt;}
.x7f{left:57.306667pt;}
.x48{left:59.706667pt;}
.x28{left:62.533333pt;}
.x54{left:67.000000pt;}
.x2f{left:71.826667pt;}
.x6b{left:76.773333pt;}
.x47{left:77.973333pt;}
.x55{left:80.133333pt;}
.x16{left:87.500000pt;}
.x38{left:88.533333pt;}
.x6c{left:90.733333pt;}
.x3b{left:92.200000pt;}
.x56{left:93.266667pt;}
.x5{left:94.433322pt;}
.x27{left:95.733333pt;}
.x14{left:97.633322pt;}
.x2b{left:99.200000pt;}
.x31{left:101.866667pt;}
.x78{left:103.573333pt;}
.x6d{left:104.706667pt;}
.x57{left:106.360000pt;}
.x3c{left:112.866667pt;}
.x80{left:115.200000pt;}
.x58{left:119.493333pt;}
.x4a{left:120.493333pt;}
.xc{left:123.499988pt;}
.x3{left:126.433322pt;}
.x59{left:132.600000pt;}
.x3d{left:133.573333pt;}
.x81{left:135.840000pt;}
.x79{left:136.773333pt;}
.x26{left:142.439988pt;}
.x4b{left:145.933333pt;}
.x19{left:151.266667pt;}
.x7a{left:153.333333pt;}
.x3e{left:154.266667pt;}
.x82{left:156.466667pt;}
.x5a{left:158.866667pt;}
.x6e{left:160.533333pt;}
.x2c{left:167.706667pt;}
.x7b{left:169.933333pt;}
.x4c{left:171.333333pt;}
.x32{left:172.373333pt;}
.x3f{left:174.973333pt;}
.x83{left:177.066667pt;}
.x5b{left:185.106667pt;}
.x1f{left:186.460000pt;}
.x6f{left:188.466667pt;}
.x40{left:195.640000pt;}
.x4d{left:196.760000pt;}
.x5c{left:198.200000pt;}
.x70{left:202.426667pt;}
.x5d{left:211.333333pt;}
.x41{left:216.333333pt;}
.x84{left:218.333333pt;}
.x7c{left:219.706667pt;}
.x4e{left:222.200000pt;}
.x5e{left:224.440000pt;}
.x21{left:228.333310pt;}
.x71{left:230.333333pt;}
.x22{left:233.399988pt;}
.x33{left:235.800000pt;}
.x42{left:237.040000pt;}
.x85{left:238.933333pt;}
.x72{left:244.293333pt;}
.x4f{left:247.626667pt;}
.x5f{left:250.706667pt;}
.x7d{left:252.866667pt;}
.x43{left:257.693333pt;}
.x86{left:259.573333pt;}
.x60{left:263.800000pt;}
.x1a{left:264.906667pt;}
.xf{left:267.839988pt;}
.x20{left:269.973322pt;}
.x73{left:272.226667pt;}
.x15{left:273.693322pt;}
.x61{left:276.933333pt;}
.x44{left:278.400000pt;}
.x87{left:280.200000pt;}
.x25{left:286.506655pt;}
.x62{left:290.026667pt;}
.x1d{left:298.240000pt;}
.x74{left:300.133333pt;}
.x63{left:303.173333pt;}
.x12{left:309.693322pt;}
.x75{left:314.093333pt;}
.x64{left:316.306667pt;}
.x76{left:328.066667pt;}
.x65{left:329.400000pt;}
.x66{left:342.533333pt;}
.xe{left:352.106655pt;}
.x10{left:356.133322pt;}
.xd{left:367.599988pt;}
.x68{left:398.133333pt;}
.x1b{left:403.866667pt;}
.x2{left:406.266655pt;}
.xa{left:408.000000pt;}
.x2e{left:410.133333pt;}
.x13{left:411.066655pt;}
.x46{left:414.133333pt;}
.x4{left:422.266655pt;}
.x7e{left:425.866667pt;}
.x11{left:430.266655pt;}
.x6{left:463.893322pt;}
.x9{left:464.973322pt;}
.x7{left:501.773322pt;}
.x1e{left:509.506667pt;}
.x18{left:529.506667pt;}
.x8{left:557.506655pt;}
.x1c{left:562.333333pt;}
.x36{left:570.799983pt;}
.x23{left:619.933310pt;}
.x24{left:624.999988pt;}
.x77{left:702.106655pt;}
.x1{left:710.106655pt;}
.x37{left:956.226667pt;}
.x35{left:1039.173317pt;}
}




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